├── .binder ├── environment.yml ├── jupyterlite-proxy.json └── postBuild ├── .eslintignore ├── .eslintrc.js ├── .github ├── actions │ └── build-dist │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── check-release.yml │ ├── enforce-labels.yml │ ├── playwright-update.yml │ ├── prep-release.yml │ ├── publish-release.yml │ ├── rtd-preview.yml │ ├── ui-tests.yml │ └── win-dev.yml ├── .gitignore ├── .gitpod.yml ├── .pre-commit-config.yaml ├── .prettierignore ├── .readthedocs.yml ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── app ├── .npmignore ├── bootstrap.js ├── config-utils.js ├── consoles │ ├── favicon.ico │ ├── jupyter-lite.ipynb │ ├── jupyter-lite.json │ └── package.json ├── doc │ ├── tree │ │ └── index.html │ └── workspaces │ │ └── index.html ├── edit │ ├── favicon.ico │ ├── jupyter-lite.ipynb │ ├── jupyter-lite.json │ └── package.json ├── icon-120x120.png ├── icon-512x512.png ├── index.html ├── index.template.html ├── index.template.js ├── jupyter-lite.ipynb ├── jupyter-lite.json ├── jupyterlite.schema.v0.json ├── lab │ ├── favicon.ico │ ├── jupyter-lite.ipynb │ ├── jupyter-lite.json │ ├── package.json │ ├── tree │ │ └── index.html │ └── workspaces │ │ └── index.html ├── manifest.webmanifest ├── notebooks │ ├── favicon.ico │ ├── jupyter-lite.ipynb │ ├── jupyter-lite.json │ └── package.json ├── package.json ├── publicpath.js ├── repl │ ├── jupyter-lite.ipynb │ ├── jupyter-lite.json │ └── package.json ├── tree │ ├── favicon.ico │ ├── jupyter-lite.ipynb │ ├── jupyter-lite.json │ └── package.json ├── webpack.config.js └── webpack.config.watch.js ├── docs ├── _static │ ├── badge-launch.svg │ ├── badge.svg │ ├── icon-off.svg │ ├── icon.svg │ ├── switcher.json │ ├── theme.css │ ├── wordmark-dark.svg │ ├── wordmark-full.svg │ └── wordmark.svg ├── _templates │ └── launch.html ├── changelog.md ├── changelog_assets │ ├── 0.6-jupyterlite-clear-browser-data.png │ ├── 0.6-jupyterlite-kernel-status.png │ ├── 0.6-jupyterlite-loading-indicator.png │ ├── 0.6-jupyterlite-plugin-manager.png │ ├── 0.6-jupyterlite-settings-import-export.png │ ├── 0.6-jupyterlite-single-cell.png │ ├── 0.6-jupyterlite-stdin.png │ ├── 0.7-jupyterlite-audio-video.png │ ├── 0.7-jupyterlite-basic-interrupt.png │ ├── 0.7-jupyterlite-basic-notebook-export.png │ ├── 0.7-jupyterlite-filemenu-download.png │ └── 0.7-jupyterlite-workspaces.png ├── conf.py ├── contributing.md ├── environment.yml ├── howto │ ├── configure │ │ ├── advanced │ │ │ ├── extensions.md │ │ │ ├── hard.md │ │ │ ├── iframe.md │ │ │ ├── offline.md │ │ │ ├── optimizations.md │ │ │ └── service-worker.md │ │ ├── config_files.md │ │ ├── interface_switcher.md │ │ ├── kernels.md │ │ ├── loading_indicator.md │ │ ├── rtc.md │ │ ├── settings.md │ │ ├── simple_extensions.md │ │ ├── storage.md │ │ ├── translation.md │ │ ├── urls.md │ │ └── workspaces.md │ ├── content │ │ ├── files.md │ │ ├── filesystem-access.md │ │ ├── open-url-parameter.md │ │ ├── python.md │ │ └── share.md │ ├── deployment │ │ ├── binder.md │ │ ├── github-pages.md │ │ ├── gitlab.md │ │ ├── sphinx.md │ │ └── vercel-netlify.md │ ├── extensions │ │ ├── cli-addons.md │ │ ├── custom-exporters.md │ │ ├── frontend.md │ │ └── kernel.md │ ├── index.md │ ├── pyodide │ │ ├── packages.md │ │ ├── pyodide.md │ │ └── wheels.md │ ├── xeus-python │ │ └── preinstalled_packages.md │ └── xeus-r │ │ └── preinstalled_packages.md ├── index.md ├── migration.md ├── overrides.json ├── quickstart │ ├── configure.md │ ├── deploy.md │ ├── embed-repl.md │ ├── index.md │ ├── standalone.md │ └── using.md ├── reference │ ├── api │ │ ├── index.md │ │ └── py │ │ │ └── jupyterlite-core.md │ ├── architecture.md │ ├── cli.ipynb │ ├── config.md │ ├── contents.md │ ├── demo.md │ ├── doit.ipynb │ ├── index.md │ ├── schema-v0.rst │ └── schema.md └── troubleshooting.md ├── dodo.py ├── examples ├── README.md ├── data │ ├── Museums_in_DC.geojson │ ├── bar.vl.json │ ├── card.vue │ ├── fasta-example.fasta │ ├── fruit-selector.vue │ ├── iris.csv │ ├── matplotlib.png │ ├── more-requirements.txt │ └── plot.pdf ├── intro.ipynb ├── javascript.ipynb ├── jupyter-lite.json ├── jupyter_lite_config.json ├── overrides.json ├── p5.ipynb ├── pyodide │ ├── altair.ipynb │ ├── bqplot.ipynb │ ├── data │ │ ├── countries.geo.json │ │ ├── nations.json │ │ ├── northwind.sqlite3 │ │ └── requirements.txt │ ├── folium.ipynb │ ├── images.ipynb │ ├── interactive-widgets.ipynb │ ├── ipycanvas.ipynb │ ├── ipycytoscape.ipynb │ ├── ipyleaflet.ipynb │ ├── ipympl.ipynb │ ├── ipyvuetify.ipynb │ ├── matplotlib.ipynb │ ├── plotly.ipynb │ ├── python-packages.ipynb │ ├── renderers.ipynb │ ├── seaborn.ipynb │ └── virtual_drive.ipynb ├── python.ipynb ├── repl │ └── jupyter-lite.json └── workspaces │ └── default.jupyterlab-workspace ├── lerna.json ├── package.json ├── packages ├── _metapackage │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── application-extension │ ├── package.json │ ├── schema │ │ ├── clear-browser-data.json │ │ └── download.json │ ├── src │ │ ├── clear-data-dialog.tsx │ │ └── index.tsx │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── application │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── router.ts │ │ ├── singleWidgetApp.ts │ │ └── singleWidgetShell.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── test │ │ └── shell.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── apputils-extension │ ├── package.json │ ├── schema │ │ └── kernel-status.json │ ├── src │ │ ├── index.tsx │ │ ├── kernelstatus.tsx │ │ └── urlresolver.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── apputils │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── licenses.ts │ │ ├── pluginmanager.ts │ │ ├── service-worker-manager.ts │ │ ├── service-worker.ts │ │ ├── statedb.ts │ │ ├── tokens.ts │ │ ├── translation.ts │ │ ├── typings.d.ts │ │ ├── workspace-router.ts │ │ └── workspaces.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── contents │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── test │ │ └── contents.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── iframe-extension │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── kernel │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── test │ │ └── kernel.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── localforage │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── memory.ts │ │ ├── tokens.ts │ │ └── typings.d.ts │ └── tsconfig.json ├── notebook-application-extension │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── repl-extension │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── schema │ │ └── buttons.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── server │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── test │ │ └── server.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── services-extension │ ├── package.json │ ├── src │ │ ├── configsection.ts │ │ ├── event.ts │ │ └── index.ts │ └── tsconfig.json ├── services │ ├── package.json │ ├── src │ │ ├── contents │ │ │ ├── drive.ts │ │ │ ├── drivecontents.ts │ │ │ ├── drivefs.ts │ │ │ ├── emscripten.ts │ │ │ ├── index.ts │ │ │ └── tokens.ts │ │ ├── index.ts │ │ ├── kernel │ │ │ ├── base.ts │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── kernelspecclient.ts │ │ │ ├── kernelspecs.ts │ │ │ └── tokens.ts │ │ ├── nbconvert │ │ │ ├── exporters.ts │ │ │ ├── index.ts │ │ │ ├── manager.ts │ │ │ └── tokens.ts │ │ ├── session │ │ │ ├── client.ts │ │ │ └── index.ts │ │ └── settings │ │ │ ├── index.ts │ │ │ └── settings.ts │ ├── style │ │ ├── index.css │ │ └── index.js │ ├── tsconfig.json │ └── tsconfig.test.json ├── session │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── test │ │ └── session.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── settings │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── test │ │ └── settings.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── types │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── tokens.ts │ └── tsconfig.json └── ui-components │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── icon │ │ ├── iconimports.ts │ │ └── index.ts │ ├── index.ts │ └── svg.d.ts │ ├── style │ ├── base.css │ ├── icons │ │ ├── liteIcon.svg │ │ └── liteWordmark.svg │ ├── index.css │ └── index.js │ ├── test │ └── foo.spec.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── py ├── jupyterlite-core │ ├── LICENSE │ ├── README.md │ ├── jupyterlite_core │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── addons │ │ │ ├── __init__.py │ │ │ ├── archive.py │ │ │ ├── base.py │ │ │ ├── contents.py │ │ │ ├── federated_extensions.py │ │ │ ├── icons.py │ │ │ ├── lite.py │ │ │ ├── mimetypes.py │ │ │ ├── report.py │ │ │ ├── serve.py │ │ │ ├── serviceworker.py │ │ │ ├── settings.py │ │ │ ├── static.py │ │ │ ├── translation.py │ │ │ └── workspaces.py │ │ ├── app.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── manager.py │ │ ├── optional.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── fixtures │ │ │ │ ├── the-smallest-extension-0.1.0-py_0.conda │ │ │ │ ├── the-smallest-extension-0.1.0-py_0.tar.bz2 │ │ │ │ └── the_smallest_extension-0.1.0-py3-none-any.whl │ │ │ ├── test_archive.py │ │ │ ├── test_cli.py │ │ │ ├── test_cli_aliases_flags.py │ │ │ ├── test_contents.py │ │ │ ├── test_extend_addon.py │ │ │ ├── test_federated.py │ │ │ ├── test_meta.py │ │ │ └── test_serve.py │ │ └── trait_types.py │ ├── pyproject.toml │ └── setup.py └── jupyterlite │ ├── LICENSE │ ├── README.md │ ├── jupyterlite │ ├── __init__.py │ ├── __main__.py │ ├── addons │ │ └── base.py │ └── constants.py │ ├── pyproject.toml │ └── setup.py ├── pyproject.toml ├── requirements-build.txt ├── requirements-docs.txt ├── requirements-editable.txt ├── requirements-lint.txt ├── requirements-test.txt ├── scripts ├── bump-version.py └── serve.js ├── tsconfig.eslint.json ├── tsconfig.test.json ├── tsconfig.typedoc.json ├── tsconfigbase.json ├── tsconfigbase.test.json ├── typedoc.json ├── ui-tests ├── .yarnrc.yml ├── build.py ├── contents │ ├── empty.ipynb │ ├── file-access-1.ipynb │ ├── file-access-2.ipynb │ ├── file-access-3.ipynb │ ├── file-access-4.ipynb │ ├── file-access.ipynb │ ├── runall-error.ipynb │ ├── runall-interrupt.ipynb │ ├── stdin.ipynb │ └── test.customfile ├── embed │ └── index.html ├── jupyter-lite.json ├── jupyter_lite_config.json ├── overrides.json ├── package.json ├── playwright.config.js ├── requirements.txt ├── test │ ├── contents.spec.ts │ ├── embed.spec.ts │ ├── embed.spec.ts-snapshots │ │ ├── embed-repl-chromium-linux.png │ │ └── embed-repl-firefox-linux.png │ ├── exporters.spec.ts │ ├── general.spec.ts │ ├── general.spec.ts-snapshots │ │ ├── dark-theme-chromium-linux.png │ │ ├── dark-theme-firefox-linux.png │ │ ├── launch-chromium-linux.png │ │ ├── launch-firefox-linux.png │ │ ├── simple-mode-chromium-linux.png │ │ └── simple-mode-firefox-linux.png │ ├── kernels.spec.ts │ ├── kernels.spec.ts-snapshots │ │ ├── default-kernel-name-chromium-linux.png │ │ └── default-kernel-name-firefox-linux.png │ ├── nojs.spec.ts │ ├── notebook.spec.ts │ ├── notebook.spec.ts-snapshots │ │ ├── csvviewer-chromium-linux.png │ │ ├── csvviewer-firefox-linux.png │ │ ├── dark-theme-chromium-linux.png │ │ ├── dark-theme-firefox-linux.png │ │ ├── imageviewer-chromium-linux.png │ │ ├── imageviewer-firefox-linux.png │ │ ├── notebook-as-json-chromium-linux.png │ │ ├── notebook-as-json-firefox-linux.png │ │ ├── tree-chromium-linux.png │ │ └── tree-firefox-linux.png │ ├── page.spec.ts │ ├── renderers.spec.ts │ ├── renderers.spec.ts-snapshots │ │ ├── image-in-markdown-chromium-linux.png │ │ ├── image-in-markdown-firefox-linux.png │ │ ├── latex-chromium-linux.png │ │ └── latex-firefox-linux.png │ ├── repl.spec.ts │ ├── repl.spec.ts-snapshots │ │ ├── dark-theme-chromium-linux.png │ │ ├── dark-theme-firefox-linux.png │ │ ├── page-chromium-linux.png │ │ ├── page-firefox-linux.png │ │ ├── populate-prompt-chromium-linux.png │ │ └── populate-prompt-firefox-linux.png │ ├── service-worker.spec.ts │ ├── translations.spec.ts │ ├── utils.ts │ └── workspace.spec.ts └── yarn.lock └── yarn.lock /.binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.binder/environment.yml -------------------------------------------------------------------------------- /.binder/jupyterlite-proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.binder/jupyterlite-proxy.json -------------------------------------------------------------------------------- /.binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.binder/postBuild -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/actions/build-dist/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/actions/build-dist/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/enforce-labels.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/playwright-update.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/rtd-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/rtd-preview.yml -------------------------------------------------------------------------------- /.github/workflows/ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/ui-tests.yml -------------------------------------------------------------------------------- /.github/workflows/win-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.github/workflows/win-dev.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.prettierignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/RELEASE.md -------------------------------------------------------------------------------- /app/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/.npmignore -------------------------------------------------------------------------------- /app/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/bootstrap.js -------------------------------------------------------------------------------- /app/config-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/config-utils.js -------------------------------------------------------------------------------- /app/consoles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/consoles/favicon.ico -------------------------------------------------------------------------------- /app/consoles/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/consoles/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/consoles/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/consoles/jupyter-lite.json -------------------------------------------------------------------------------- /app/consoles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/consoles/package.json -------------------------------------------------------------------------------- /app/doc/tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/doc/tree/index.html -------------------------------------------------------------------------------- /app/doc/workspaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/doc/workspaces/index.html -------------------------------------------------------------------------------- /app/edit/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/edit/favicon.ico -------------------------------------------------------------------------------- /app/edit/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/edit/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/edit/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/edit/jupyter-lite.json -------------------------------------------------------------------------------- /app/edit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/edit/package.json -------------------------------------------------------------------------------- /app/icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/icon-120x120.png -------------------------------------------------------------------------------- /app/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/icon-512x512.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/index.template.html -------------------------------------------------------------------------------- /app/index.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/index.template.js -------------------------------------------------------------------------------- /app/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/jupyter-lite.json -------------------------------------------------------------------------------- /app/jupyterlite.schema.v0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/jupyterlite.schema.v0.json -------------------------------------------------------------------------------- /app/lab/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/lab/favicon.ico -------------------------------------------------------------------------------- /app/lab/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/lab/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/lab/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/lab/jupyter-lite.json -------------------------------------------------------------------------------- /app/lab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/lab/package.json -------------------------------------------------------------------------------- /app/lab/tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/lab/tree/index.html -------------------------------------------------------------------------------- /app/lab/workspaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/lab/workspaces/index.html -------------------------------------------------------------------------------- /app/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/manifest.webmanifest -------------------------------------------------------------------------------- /app/notebooks/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/notebooks/favicon.ico -------------------------------------------------------------------------------- /app/notebooks/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/notebooks/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/notebooks/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/notebooks/jupyter-lite.json -------------------------------------------------------------------------------- /app/notebooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/notebooks/package.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/package.json -------------------------------------------------------------------------------- /app/publicpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/publicpath.js -------------------------------------------------------------------------------- /app/repl/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/repl/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/repl/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/repl/jupyter-lite.json -------------------------------------------------------------------------------- /app/repl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/repl/package.json -------------------------------------------------------------------------------- /app/tree/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/tree/favicon.ico -------------------------------------------------------------------------------- /app/tree/jupyter-lite.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/tree/jupyter-lite.ipynb -------------------------------------------------------------------------------- /app/tree/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/tree/jupyter-lite.json -------------------------------------------------------------------------------- /app/tree/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/tree/package.json -------------------------------------------------------------------------------- /app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/webpack.config.js -------------------------------------------------------------------------------- /app/webpack.config.watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/app/webpack.config.watch.js -------------------------------------------------------------------------------- /docs/_static/badge-launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/badge-launch.svg -------------------------------------------------------------------------------- /docs/_static/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/badge.svg -------------------------------------------------------------------------------- /docs/_static/icon-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/icon-off.svg -------------------------------------------------------------------------------- /docs/_static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/icon.svg -------------------------------------------------------------------------------- /docs/_static/switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/switcher.json -------------------------------------------------------------------------------- /docs/_static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/theme.css -------------------------------------------------------------------------------- /docs/_static/wordmark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/wordmark-dark.svg -------------------------------------------------------------------------------- /docs/_static/wordmark-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/wordmark-full.svg -------------------------------------------------------------------------------- /docs/_static/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_static/wordmark.svg -------------------------------------------------------------------------------- /docs/_templates/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/_templates/launch.html -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-clear-browser-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-clear-browser-data.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-kernel-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-kernel-status.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-loading-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-loading-indicator.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-plugin-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-plugin-manager.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-settings-import-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-settings-import-export.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-single-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-single-cell.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.6-jupyterlite-stdin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.6-jupyterlite-stdin.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.7-jupyterlite-audio-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.7-jupyterlite-audio-video.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.7-jupyterlite-basic-interrupt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.7-jupyterlite-basic-interrupt.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.7-jupyterlite-basic-notebook-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.7-jupyterlite-basic-notebook-export.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.7-jupyterlite-filemenu-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.7-jupyterlite-filemenu-download.png -------------------------------------------------------------------------------- /docs/changelog_assets/0.7-jupyterlite-workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/changelog_assets/0.7-jupyterlite-workspaces.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CONTRIBUTING.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/howto/configure/advanced/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/advanced/extensions.md -------------------------------------------------------------------------------- /docs/howto/configure/advanced/hard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/advanced/hard.md -------------------------------------------------------------------------------- /docs/howto/configure/advanced/iframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/advanced/iframe.md -------------------------------------------------------------------------------- /docs/howto/configure/advanced/offline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/advanced/offline.md -------------------------------------------------------------------------------- /docs/howto/configure/advanced/optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/advanced/optimizations.md -------------------------------------------------------------------------------- /docs/howto/configure/advanced/service-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/advanced/service-worker.md -------------------------------------------------------------------------------- /docs/howto/configure/config_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/config_files.md -------------------------------------------------------------------------------- /docs/howto/configure/interface_switcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/interface_switcher.md -------------------------------------------------------------------------------- /docs/howto/configure/kernels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/kernels.md -------------------------------------------------------------------------------- /docs/howto/configure/loading_indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/loading_indicator.md -------------------------------------------------------------------------------- /docs/howto/configure/rtc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/rtc.md -------------------------------------------------------------------------------- /docs/howto/configure/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/settings.md -------------------------------------------------------------------------------- /docs/howto/configure/simple_extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/simple_extensions.md -------------------------------------------------------------------------------- /docs/howto/configure/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/storage.md -------------------------------------------------------------------------------- /docs/howto/configure/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/translation.md -------------------------------------------------------------------------------- /docs/howto/configure/urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/urls.md -------------------------------------------------------------------------------- /docs/howto/configure/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/configure/workspaces.md -------------------------------------------------------------------------------- /docs/howto/content/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/content/files.md -------------------------------------------------------------------------------- /docs/howto/content/filesystem-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/content/filesystem-access.md -------------------------------------------------------------------------------- /docs/howto/content/open-url-parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/content/open-url-parameter.md -------------------------------------------------------------------------------- /docs/howto/content/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/content/python.md -------------------------------------------------------------------------------- /docs/howto/content/share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/content/share.md -------------------------------------------------------------------------------- /docs/howto/deployment/binder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/deployment/binder.md -------------------------------------------------------------------------------- /docs/howto/deployment/github-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/deployment/github-pages.md -------------------------------------------------------------------------------- /docs/howto/deployment/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/deployment/gitlab.md -------------------------------------------------------------------------------- /docs/howto/deployment/sphinx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/deployment/sphinx.md -------------------------------------------------------------------------------- /docs/howto/deployment/vercel-netlify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/deployment/vercel-netlify.md -------------------------------------------------------------------------------- /docs/howto/extensions/cli-addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/extensions/cli-addons.md -------------------------------------------------------------------------------- /docs/howto/extensions/custom-exporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/extensions/custom-exporters.md -------------------------------------------------------------------------------- /docs/howto/extensions/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/extensions/frontend.md -------------------------------------------------------------------------------- /docs/howto/extensions/kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/extensions/kernel.md -------------------------------------------------------------------------------- /docs/howto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/index.md -------------------------------------------------------------------------------- /docs/howto/pyodide/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/pyodide/packages.md -------------------------------------------------------------------------------- /docs/howto/pyodide/pyodide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/pyodide/pyodide.md -------------------------------------------------------------------------------- /docs/howto/pyodide/wheels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/pyodide/wheels.md -------------------------------------------------------------------------------- /docs/howto/xeus-python/preinstalled_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/xeus-python/preinstalled_packages.md -------------------------------------------------------------------------------- /docs/howto/xeus-r/preinstalled_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/howto/xeus-r/preinstalled_packages.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/overrides.json -------------------------------------------------------------------------------- /docs/quickstart/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/quickstart/configure.md -------------------------------------------------------------------------------- /docs/quickstart/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/quickstart/deploy.md -------------------------------------------------------------------------------- /docs/quickstart/embed-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/quickstart/embed-repl.md -------------------------------------------------------------------------------- /docs/quickstart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/quickstart/index.md -------------------------------------------------------------------------------- /docs/quickstart/standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/quickstart/standalone.md -------------------------------------------------------------------------------- /docs/quickstart/using.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/quickstart/using.md -------------------------------------------------------------------------------- /docs/reference/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/api/index.md -------------------------------------------------------------------------------- /docs/reference/api/py/jupyterlite-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/api/py/jupyterlite-core.md -------------------------------------------------------------------------------- /docs/reference/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/architecture.md -------------------------------------------------------------------------------- /docs/reference/cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/cli.ipynb -------------------------------------------------------------------------------- /docs/reference/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/config.md -------------------------------------------------------------------------------- /docs/reference/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/contents.md -------------------------------------------------------------------------------- /docs/reference/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/demo.md -------------------------------------------------------------------------------- /docs/reference/doit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/doit.ipynb -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/schema-v0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/schema-v0.rst -------------------------------------------------------------------------------- /docs/reference/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/reference/schema.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /dodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/dodo.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/data/Museums_in_DC.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/Museums_in_DC.geojson -------------------------------------------------------------------------------- /examples/data/bar.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/bar.vl.json -------------------------------------------------------------------------------- /examples/data/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/card.vue -------------------------------------------------------------------------------- /examples/data/fasta-example.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/fasta-example.fasta -------------------------------------------------------------------------------- /examples/data/fruit-selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/fruit-selector.vue -------------------------------------------------------------------------------- /examples/data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/iris.csv -------------------------------------------------------------------------------- /examples/data/matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/matplotlib.png -------------------------------------------------------------------------------- /examples/data/more-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/more-requirements.txt -------------------------------------------------------------------------------- /examples/data/plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/data/plot.pdf -------------------------------------------------------------------------------- /examples/intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/intro.ipynb -------------------------------------------------------------------------------- /examples/javascript.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/javascript.ipynb -------------------------------------------------------------------------------- /examples/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/jupyter-lite.json -------------------------------------------------------------------------------- /examples/jupyter_lite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/jupyter_lite_config.json -------------------------------------------------------------------------------- /examples/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/overrides.json -------------------------------------------------------------------------------- /examples/p5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/p5.ipynb -------------------------------------------------------------------------------- /examples/pyodide/altair.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/altair.ipynb -------------------------------------------------------------------------------- /examples/pyodide/bqplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/bqplot.ipynb -------------------------------------------------------------------------------- /examples/pyodide/data/countries.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/data/countries.geo.json -------------------------------------------------------------------------------- /examples/pyodide/data/nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/data/nations.json -------------------------------------------------------------------------------- /examples/pyodide/data/northwind.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/data/northwind.sqlite3 -------------------------------------------------------------------------------- /examples/pyodide/data/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/data/requirements.txt -------------------------------------------------------------------------------- /examples/pyodide/folium.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/folium.ipynb -------------------------------------------------------------------------------- /examples/pyodide/images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/images.ipynb -------------------------------------------------------------------------------- /examples/pyodide/interactive-widgets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/interactive-widgets.ipynb -------------------------------------------------------------------------------- /examples/pyodide/ipycanvas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/ipycanvas.ipynb -------------------------------------------------------------------------------- /examples/pyodide/ipycytoscape.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/ipycytoscape.ipynb -------------------------------------------------------------------------------- /examples/pyodide/ipyleaflet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/ipyleaflet.ipynb -------------------------------------------------------------------------------- /examples/pyodide/ipympl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/ipympl.ipynb -------------------------------------------------------------------------------- /examples/pyodide/ipyvuetify.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/ipyvuetify.ipynb -------------------------------------------------------------------------------- /examples/pyodide/matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/matplotlib.ipynb -------------------------------------------------------------------------------- /examples/pyodide/plotly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/plotly.ipynb -------------------------------------------------------------------------------- /examples/pyodide/python-packages.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/python-packages.ipynb -------------------------------------------------------------------------------- /examples/pyodide/renderers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/renderers.ipynb -------------------------------------------------------------------------------- /examples/pyodide/seaborn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/seaborn.ipynb -------------------------------------------------------------------------------- /examples/pyodide/virtual_drive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/pyodide/virtual_drive.ipynb -------------------------------------------------------------------------------- /examples/python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/python.ipynb -------------------------------------------------------------------------------- /examples/repl/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/repl/jupyter-lite.json -------------------------------------------------------------------------------- /examples/workspaces/default.jupyterlab-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/examples/workspaces/default.jupyterlab-workspace -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/package.json -------------------------------------------------------------------------------- /packages/_metapackage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/_metapackage/package.json -------------------------------------------------------------------------------- /packages/_metapackage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/_metapackage/src/index.ts -------------------------------------------------------------------------------- /packages/_metapackage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/_metapackage/tsconfig.json -------------------------------------------------------------------------------- /packages/application-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/package.json -------------------------------------------------------------------------------- /packages/application-extension/schema/clear-browser-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/schema/clear-browser-data.json -------------------------------------------------------------------------------- /packages/application-extension/schema/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/schema/download.json -------------------------------------------------------------------------------- /packages/application-extension/src/clear-data-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/src/clear-data-dialog.tsx -------------------------------------------------------------------------------- /packages/application-extension/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/src/index.tsx -------------------------------------------------------------------------------- /packages/application-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/style/base.css -------------------------------------------------------------------------------- /packages/application-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/style/index.css -------------------------------------------------------------------------------- /packages/application-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/style/index.js -------------------------------------------------------------------------------- /packages/application-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/application/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/jest.config.js -------------------------------------------------------------------------------- /packages/application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/package.json -------------------------------------------------------------------------------- /packages/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/src/index.ts -------------------------------------------------------------------------------- /packages/application/src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/src/router.ts -------------------------------------------------------------------------------- /packages/application/src/singleWidgetApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/src/singleWidgetApp.ts -------------------------------------------------------------------------------- /packages/application/src/singleWidgetShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/src/singleWidgetShell.ts -------------------------------------------------------------------------------- /packages/application/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/style/base.css -------------------------------------------------------------------------------- /packages/application/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/style/index.css -------------------------------------------------------------------------------- /packages/application/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/style/index.js -------------------------------------------------------------------------------- /packages/application/test/shell.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/test/shell.spec.ts -------------------------------------------------------------------------------- /packages/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/tsconfig.json -------------------------------------------------------------------------------- /packages/application/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/application/tsconfig.test.json -------------------------------------------------------------------------------- /packages/apputils-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/package.json -------------------------------------------------------------------------------- /packages/apputils-extension/schema/kernel-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/schema/kernel-status.json -------------------------------------------------------------------------------- /packages/apputils-extension/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/src/index.tsx -------------------------------------------------------------------------------- /packages/apputils-extension/src/kernelstatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/src/kernelstatus.tsx -------------------------------------------------------------------------------- /packages/apputils-extension/src/urlresolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/src/urlresolver.ts -------------------------------------------------------------------------------- /packages/apputils-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/style/base.css -------------------------------------------------------------------------------- /packages/apputils-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/style/index.css -------------------------------------------------------------------------------- /packages/apputils-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/style/index.js -------------------------------------------------------------------------------- /packages/apputils-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/apputils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/package.json -------------------------------------------------------------------------------- /packages/apputils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/index.ts -------------------------------------------------------------------------------- /packages/apputils/src/licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/licenses.ts -------------------------------------------------------------------------------- /packages/apputils/src/pluginmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/pluginmanager.ts -------------------------------------------------------------------------------- /packages/apputils/src/service-worker-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/service-worker-manager.ts -------------------------------------------------------------------------------- /packages/apputils/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/service-worker.ts -------------------------------------------------------------------------------- /packages/apputils/src/statedb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/statedb.ts -------------------------------------------------------------------------------- /packages/apputils/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/tokens.ts -------------------------------------------------------------------------------- /packages/apputils/src/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/translation.ts -------------------------------------------------------------------------------- /packages/apputils/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/typings.d.ts -------------------------------------------------------------------------------- /packages/apputils/src/workspace-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/workspace-router.ts -------------------------------------------------------------------------------- /packages/apputils/src/workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/src/workspaces.ts -------------------------------------------------------------------------------- /packages/apputils/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/style/base.css -------------------------------------------------------------------------------- /packages/apputils/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/style/index.css -------------------------------------------------------------------------------- /packages/apputils/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/style/index.js -------------------------------------------------------------------------------- /packages/apputils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/apputils/tsconfig.json -------------------------------------------------------------------------------- /packages/contents/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/contents/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/jest.config.js -------------------------------------------------------------------------------- /packages/contents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/package.json -------------------------------------------------------------------------------- /packages/contents/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/src/index.ts -------------------------------------------------------------------------------- /packages/contents/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/style/base.css -------------------------------------------------------------------------------- /packages/contents/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/style/index.css -------------------------------------------------------------------------------- /packages/contents/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/style/index.js -------------------------------------------------------------------------------- /packages/contents/test/contents.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/test/contents.spec.ts -------------------------------------------------------------------------------- /packages/contents/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/tsconfig.json -------------------------------------------------------------------------------- /packages/contents/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/contents/tsconfig.test.json -------------------------------------------------------------------------------- /packages/iframe-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/iframe-extension/package.json -------------------------------------------------------------------------------- /packages/iframe-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/iframe-extension/src/index.ts -------------------------------------------------------------------------------- /packages/iframe-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/iframe-extension/style/base.css -------------------------------------------------------------------------------- /packages/iframe-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/iframe-extension/style/index.css -------------------------------------------------------------------------------- /packages/iframe-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/iframe-extension/style/index.js -------------------------------------------------------------------------------- /packages/iframe-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/iframe-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/kernel/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/kernel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/jest.config.js -------------------------------------------------------------------------------- /packages/kernel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/package.json -------------------------------------------------------------------------------- /packages/kernel/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/src/index.ts -------------------------------------------------------------------------------- /packages/kernel/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/style/base.css -------------------------------------------------------------------------------- /packages/kernel/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/style/index.css -------------------------------------------------------------------------------- /packages/kernel/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/style/index.js -------------------------------------------------------------------------------- /packages/kernel/test/kernel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/test/kernel.spec.ts -------------------------------------------------------------------------------- /packages/kernel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/tsconfig.json -------------------------------------------------------------------------------- /packages/kernel/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/kernel/tsconfig.test.json -------------------------------------------------------------------------------- /packages/localforage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/localforage/package.json -------------------------------------------------------------------------------- /packages/localforage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/localforage/src/index.ts -------------------------------------------------------------------------------- /packages/localforage/src/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/localforage/src/memory.ts -------------------------------------------------------------------------------- /packages/localforage/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/localforage/src/tokens.ts -------------------------------------------------------------------------------- /packages/localforage/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/localforage/src/typings.d.ts -------------------------------------------------------------------------------- /packages/localforage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/localforage/tsconfig.json -------------------------------------------------------------------------------- /packages/notebook-application-extension/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/notebook-application-extension/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/jest.config.js -------------------------------------------------------------------------------- /packages/notebook-application-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/package.json -------------------------------------------------------------------------------- /packages/notebook-application-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/src/index.ts -------------------------------------------------------------------------------- /packages/notebook-application-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/style/base.css -------------------------------------------------------------------------------- /packages/notebook-application-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/style/index.css -------------------------------------------------------------------------------- /packages/notebook-application-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/style/index.js -------------------------------------------------------------------------------- /packages/notebook-application-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/notebook-application-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/repl-extension/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/repl-extension/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/jest.config.js -------------------------------------------------------------------------------- /packages/repl-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/package.json -------------------------------------------------------------------------------- /packages/repl-extension/schema/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/schema/buttons.json -------------------------------------------------------------------------------- /packages/repl-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/src/index.ts -------------------------------------------------------------------------------- /packages/repl-extension/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/style/base.css -------------------------------------------------------------------------------- /packages/repl-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/style/index.css -------------------------------------------------------------------------------- /packages/repl-extension/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/style/index.js -------------------------------------------------------------------------------- /packages/repl-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/repl-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/server/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/jest.config.js -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/package.json -------------------------------------------------------------------------------- /packages/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/src/index.ts -------------------------------------------------------------------------------- /packages/server/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/style/base.css -------------------------------------------------------------------------------- /packages/server/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/style/index.css -------------------------------------------------------------------------------- /packages/server/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/style/index.js -------------------------------------------------------------------------------- /packages/server/test/server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/test/server.spec.ts -------------------------------------------------------------------------------- /packages/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/tsconfig.json -------------------------------------------------------------------------------- /packages/server/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/server/tsconfig.test.json -------------------------------------------------------------------------------- /packages/services-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services-extension/package.json -------------------------------------------------------------------------------- /packages/services-extension/src/configsection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services-extension/src/configsection.ts -------------------------------------------------------------------------------- /packages/services-extension/src/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services-extension/src/event.ts -------------------------------------------------------------------------------- /packages/services-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services-extension/src/index.ts -------------------------------------------------------------------------------- /packages/services-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services-extension/tsconfig.json -------------------------------------------------------------------------------- /packages/services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/package.json -------------------------------------------------------------------------------- /packages/services/src/contents/drive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/contents/drive.ts -------------------------------------------------------------------------------- /packages/services/src/contents/drivecontents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/contents/drivecontents.ts -------------------------------------------------------------------------------- /packages/services/src/contents/drivefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/contents/drivefs.ts -------------------------------------------------------------------------------- /packages/services/src/contents/emscripten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/contents/emscripten.ts -------------------------------------------------------------------------------- /packages/services/src/contents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/contents/index.ts -------------------------------------------------------------------------------- /packages/services/src/contents/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/contents/tokens.ts -------------------------------------------------------------------------------- /packages/services/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/index.ts -------------------------------------------------------------------------------- /packages/services/src/kernel/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/kernel/base.ts -------------------------------------------------------------------------------- /packages/services/src/kernel/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/kernel/client.ts -------------------------------------------------------------------------------- /packages/services/src/kernel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/kernel/index.ts -------------------------------------------------------------------------------- /packages/services/src/kernel/kernelspecclient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/kernel/kernelspecclient.ts -------------------------------------------------------------------------------- /packages/services/src/kernel/kernelspecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/kernel/kernelspecs.ts -------------------------------------------------------------------------------- /packages/services/src/kernel/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/kernel/tokens.ts -------------------------------------------------------------------------------- /packages/services/src/nbconvert/exporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/nbconvert/exporters.ts -------------------------------------------------------------------------------- /packages/services/src/nbconvert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/nbconvert/index.ts -------------------------------------------------------------------------------- /packages/services/src/nbconvert/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/nbconvert/manager.ts -------------------------------------------------------------------------------- /packages/services/src/nbconvert/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/nbconvert/tokens.ts -------------------------------------------------------------------------------- /packages/services/src/session/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/session/client.ts -------------------------------------------------------------------------------- /packages/services/src/session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/session/index.ts -------------------------------------------------------------------------------- /packages/services/src/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/settings/index.ts -------------------------------------------------------------------------------- /packages/services/src/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/src/settings/settings.ts -------------------------------------------------------------------------------- /packages/services/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/style/index.css -------------------------------------------------------------------------------- /packages/services/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/style/index.js -------------------------------------------------------------------------------- /packages/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/tsconfig.json -------------------------------------------------------------------------------- /packages/services/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/services/tsconfig.test.json -------------------------------------------------------------------------------- /packages/session/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/session/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/jest.config.js -------------------------------------------------------------------------------- /packages/session/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/package.json -------------------------------------------------------------------------------- /packages/session/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/src/index.ts -------------------------------------------------------------------------------- /packages/session/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/style/base.css -------------------------------------------------------------------------------- /packages/session/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/style/index.css -------------------------------------------------------------------------------- /packages/session/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/style/index.js -------------------------------------------------------------------------------- /packages/session/test/session.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/test/session.spec.ts -------------------------------------------------------------------------------- /packages/session/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/tsconfig.json -------------------------------------------------------------------------------- /packages/session/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/session/tsconfig.test.json -------------------------------------------------------------------------------- /packages/settings/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/settings/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/jest.config.js -------------------------------------------------------------------------------- /packages/settings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/package.json -------------------------------------------------------------------------------- /packages/settings/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/src/index.ts -------------------------------------------------------------------------------- /packages/settings/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/style/base.css -------------------------------------------------------------------------------- /packages/settings/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/style/index.css -------------------------------------------------------------------------------- /packages/settings/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/style/index.js -------------------------------------------------------------------------------- /packages/settings/test/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/test/settings.spec.ts -------------------------------------------------------------------------------- /packages/settings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/tsconfig.json -------------------------------------------------------------------------------- /packages/settings/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/settings/tsconfig.test.json -------------------------------------------------------------------------------- /packages/types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/types/package.json -------------------------------------------------------------------------------- /packages/types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/types/src/index.ts -------------------------------------------------------------------------------- /packages/types/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/types/src/tokens.ts -------------------------------------------------------------------------------- /packages/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/types/tsconfig.json -------------------------------------------------------------------------------- /packages/ui-components/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/ui-components/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/jest.config.js -------------------------------------------------------------------------------- /packages/ui-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/package.json -------------------------------------------------------------------------------- /packages/ui-components/src/icon/iconimports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/src/icon/iconimports.ts -------------------------------------------------------------------------------- /packages/ui-components/src/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/src/icon/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/src/index.ts -------------------------------------------------------------------------------- /packages/ui-components/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/src/svg.d.ts -------------------------------------------------------------------------------- /packages/ui-components/style/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ui-components/style/icons/liteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/style/icons/liteIcon.svg -------------------------------------------------------------------------------- /packages/ui-components/style/icons/liteWordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/style/icons/liteWordmark.svg -------------------------------------------------------------------------------- /packages/ui-components/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/style/index.css -------------------------------------------------------------------------------- /packages/ui-components/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/style/index.js -------------------------------------------------------------------------------- /packages/ui-components/test/foo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/test/foo.spec.ts -------------------------------------------------------------------------------- /packages/ui-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/tsconfig.json -------------------------------------------------------------------------------- /packages/ui-components/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/packages/ui-components/tsconfig.test.json -------------------------------------------------------------------------------- /py/jupyterlite-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/LICENSE -------------------------------------------------------------------------------- /py/jupyterlite-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/README.md -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/__init__.py: -------------------------------------------------------------------------------- 1 | """tools for building JupyterLite sites""" 2 | 3 | __version__ = "0.7.0" 4 | -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/__main__.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/__init__.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/archive.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/base.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/contents.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/federated_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/federated_extensions.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/icons.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/lite.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/mimetypes.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/report.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/serve.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/serviceworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/serviceworker.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/settings.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/static.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/translation.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/addons/workspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/addons/workspaces.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/app.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/config.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/constants.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/manager.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/optional.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """tests of jupyterlite-core""" 2 | -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/conftest.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/fixtures/the-smallest-extension-0.1.0-py_0.conda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/fixtures/the-smallest-extension-0.1.0-py_0.conda -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/fixtures/the-smallest-extension-0.1.0-py_0.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/fixtures/the-smallest-extension-0.1.0-py_0.tar.bz2 -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/fixtures/the_smallest_extension-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/fixtures/the_smallest_extension-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_archive.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_cli.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_cli_aliases_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_cli_aliases_flags.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_contents.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_extend_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_extend_addon.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_federated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_federated.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_meta.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/tests/test_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/tests/test_serve.py -------------------------------------------------------------------------------- /py/jupyterlite-core/jupyterlite_core/trait_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/jupyterlite_core/trait_types.py -------------------------------------------------------------------------------- /py/jupyterlite-core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/pyproject.toml -------------------------------------------------------------------------------- /py/jupyterlite-core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite-core/setup.py -------------------------------------------------------------------------------- /py/jupyterlite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/LICENSE -------------------------------------------------------------------------------- /py/jupyterlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/README.md -------------------------------------------------------------------------------- /py/jupyterlite/jupyterlite/__init__.py: -------------------------------------------------------------------------------- 1 | """JupyterLite metapackage""" 2 | 3 | __version__ = "0.7.0" 4 | -------------------------------------------------------------------------------- /py/jupyterlite/jupyterlite/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/jupyterlite/__main__.py -------------------------------------------------------------------------------- /py/jupyterlite/jupyterlite/addons/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/jupyterlite/addons/base.py -------------------------------------------------------------------------------- /py/jupyterlite/jupyterlite/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/jupyterlite/constants.py -------------------------------------------------------------------------------- /py/jupyterlite/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/pyproject.toml -------------------------------------------------------------------------------- /py/jupyterlite/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/py/jupyterlite/setup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/requirements-build.txt -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements-editable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/requirements-editable.txt -------------------------------------------------------------------------------- /requirements-lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/requirements-lint.txt -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/scripts/bump-version.py -------------------------------------------------------------------------------- /scripts/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/scripts/serve.js -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tsconfig.typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/tsconfig.typedoc.json -------------------------------------------------------------------------------- /tsconfigbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/tsconfigbase.json -------------------------------------------------------------------------------- /tsconfigbase.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/tsconfigbase.test.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/typedoc.json -------------------------------------------------------------------------------- /ui-tests/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/.yarnrc.yml -------------------------------------------------------------------------------- /ui-tests/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/build.py -------------------------------------------------------------------------------- /ui-tests/contents/empty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/empty.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/file-access-1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/file-access-1.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/file-access-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/file-access-2.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/file-access-3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/file-access-3.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/file-access-4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/file-access-4.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/file-access.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/file-access.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/runall-error.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/runall-error.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/runall-interrupt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/runall-interrupt.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/stdin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/stdin.ipynb -------------------------------------------------------------------------------- /ui-tests/contents/test.customfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/contents/test.customfile -------------------------------------------------------------------------------- /ui-tests/embed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/embed/index.html -------------------------------------------------------------------------------- /ui-tests/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/jupyter-lite.json -------------------------------------------------------------------------------- /ui-tests/jupyter_lite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/jupyter_lite_config.json -------------------------------------------------------------------------------- /ui-tests/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/overrides.json -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/requirements.txt -------------------------------------------------------------------------------- /ui-tests/test/contents.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/contents.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/embed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/embed.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/embed.spec.ts-snapshots/embed-repl-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/embed.spec.ts-snapshots/embed-repl-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/embed.spec.ts-snapshots/embed-repl-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/embed.spec.ts-snapshots/embed-repl-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/exporters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/exporters.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/dark-theme-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts-snapshots/dark-theme-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/dark-theme-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts-snapshots/dark-theme-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/launch-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts-snapshots/launch-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/launch-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts-snapshots/launch-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/simple-mode-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts-snapshots/simple-mode-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/general.spec.ts-snapshots/simple-mode-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/general.spec.ts-snapshots/simple-mode-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/kernels.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/kernels.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/kernels.spec.ts-snapshots/default-kernel-name-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/kernels.spec.ts-snapshots/default-kernel-name-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/kernels.spec.ts-snapshots/default-kernel-name-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/kernels.spec.ts-snapshots/default-kernel-name-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/nojs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/nojs.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/csvviewer-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/csvviewer-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/csvviewer-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/csvviewer-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/dark-theme-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/dark-theme-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/dark-theme-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/dark-theme-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/imageviewer-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/imageviewer-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/imageviewer-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/imageviewer-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/notebook-as-json-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/notebook-as-json-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/notebook-as-json-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/notebook-as-json-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/tree-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/tree-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/notebook.spec.ts-snapshots/tree-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/notebook.spec.ts-snapshots/tree-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/page.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/renderers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/renderers.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/renderers.spec.ts-snapshots/image-in-markdown-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/renderers.spec.ts-snapshots/image-in-markdown-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/renderers.spec.ts-snapshots/image-in-markdown-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/renderers.spec.ts-snapshots/image-in-markdown-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/renderers.spec.ts-snapshots/latex-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/renderers.spec.ts-snapshots/latex-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/renderers.spec.ts-snapshots/latex-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/renderers.spec.ts-snapshots/latex-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts-snapshots/dark-theme-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts-snapshots/dark-theme-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts-snapshots/dark-theme-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts-snapshots/dark-theme-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts-snapshots/page-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts-snapshots/page-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts-snapshots/page-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts-snapshots/page-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts-snapshots/populate-prompt-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts-snapshots/populate-prompt-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/test/repl.spec.ts-snapshots/populate-prompt-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/repl.spec.ts-snapshots/populate-prompt-firefox-linux.png -------------------------------------------------------------------------------- /ui-tests/test/service-worker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/service-worker.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/translations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/translations.spec.ts -------------------------------------------------------------------------------- /ui-tests/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/utils.ts -------------------------------------------------------------------------------- /ui-tests/test/workspace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/test/workspace.spec.ts -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtpio/jupyterlite/HEAD/yarn.lock --------------------------------------------------------------------------------