gitextract_jjcr1hib/ ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── juvio/ │ ├── __init__.py │ ├── content_manager.py │ ├── converter.py │ ├── kernel_launcher.py │ ├── kernelspec/ │ │ └── kernel.json │ ├── labextension/ │ │ ├── package.json │ │ └── static/ │ │ ├── 509.8b21d569ebbb8f039bdd.js │ │ ├── 728.864a8d7732d3e14d284a.js │ │ ├── remoteEntry.cb75fcc929fa00484f36.js │ │ ├── style.js │ │ └── third-party-licenses.json │ ├── server_extension.py │ └── shared.py ├── juvio_frontend/ │ ├── .gitignore │ ├── .prettierignore │ ├── .yarnrc.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RELEASE.md │ ├── babel.config.js │ ├── install.json │ ├── jest.config.js │ ├── package.json │ ├── pyproject.toml │ ├── setup.py │ ├── src/ │ │ ├── __tests__/ │ │ │ └── juvio_frontend.spec.ts │ │ └── index.ts │ ├── style/ │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── ui-tests/ │ ├── README.md │ ├── jupyter_server_test_config.py │ ├── package.json │ ├── playwright.config.js │ └── tests/ │ └── juvio_frontend.spec.ts └── pyproject.toml