├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .flake8 ├── .github ├── issue_template.md └── workflows │ ├── binder-on-pr.yml │ ├── build.yml │ ├── pr-rtd-link.yml │ ├── publish.yml │ ├── pypi-publish.yml │ └── test-pypi-publish.yml ├── .gitignore ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── .readthedocs.yaml ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── binder ├── environment.yml ├── jupyter_notebook_config.py ├── postBuild └── workspace.json ├── docs ├── Makefile ├── make.bat └── source │ ├── api │ └── index.md │ ├── changelog.md │ ├── conf.py │ ├── getting-started.md │ ├── index.md │ └── user-guide │ └── index.md ├── install.json ├── jupyter-config ├── jupyter_notebook_config.d │ └── mamba_gator.json └── jupyter_server_config.d │ └── mamba_gator.json ├── lerna.json ├── mamba_gator ├── __init__.py ├── __main__.py ├── envmanager.py ├── handlers.py ├── log.py ├── navigator │ ├── README.md │ ├── __init__.py │ ├── index.html │ ├── main.py │ ├── static │ │ └── favicon.svg │ └── templates │ │ ├── error.html │ │ └── index.html ├── rest_api.yml └── tests │ ├── __init__.py │ ├── test_actionsstack.py │ ├── test_api.py │ ├── test_manager.py │ ├── test_utils.py │ └── utils.py ├── package.json ├── packages ├── common │ ├── README.md │ ├── babel.config.js │ ├── jest.config.js │ ├── jest.setup.js │ ├── package.json │ ├── src │ │ ├── CondaEnvWidget.tsx │ │ ├── __tests__ │ │ │ └── services.spec.ts │ │ ├── commands │ │ │ ├── registerEnvCommands.ts │ │ │ └── registerPkgCommands.ts │ │ ├── components │ │ │ ├── CondaEnvItem.tsx │ │ │ ├── CondaEnvList.tsx │ │ │ ├── CondaEnvToolBar.tsx │ │ │ ├── CondaPkgDrawer.tsx │ │ │ ├── CondaPkgList.tsx │ │ │ ├── CondaPkgPanel.tsx │ │ │ ├── CondaPkgToolBar.tsx │ │ │ ├── CreateEnvButton.tsx │ │ │ ├── CreateEnvDialog.tsx │ │ │ ├── CreateEnvDrawer.tsx │ │ │ ├── NbConda.tsx │ │ │ ├── PkgGraph.tsx │ │ │ └── globalStyles.ts │ │ ├── constants.ts │ │ ├── environmentActions.ts │ │ ├── icon.ts │ │ ├── index.ts │ │ ├── packageActions.ts │ │ ├── services.ts │ │ ├── svg.d.ts │ │ ├── tokens.ts │ │ └── utils.ts │ ├── style │ │ ├── cart-arrow-down.svg │ │ ├── clone.svg │ │ ├── conda.svg │ │ ├── ellipsis-vertical.svg │ │ ├── external-link.svg │ │ ├── index.css │ │ ├── sync-alt.svg │ │ └── undo.svg │ ├── tsconfig.json │ └── tsconfig.test.json ├── labextension │ ├── README.md │ ├── babel.config.js │ ├── build-with-fake-jlpm.js │ ├── jest.config.js │ ├── jest.setup.js │ ├── jupyterlab_conda.gif │ ├── package.json │ ├── schema │ │ └── plugin.json │ ├── src │ │ ├── __tests__ │ │ │ └── kernelspec.spec.ts │ │ ├── index.ts │ │ ├── tour.tsx │ │ └── validator.ts │ ├── style │ │ └── index.css │ └── tsconfig.json └── navigator │ ├── .gitignore │ ├── README.md │ ├── navigator_as_service.png │ ├── package.json │ ├── src │ ├── app │ │ ├── app.ts │ │ └── shell.ts │ ├── icons.ts │ ├── index.ts │ ├── plugins │ │ ├── navigator │ │ │ └── index.ts │ │ ├── paths │ │ │ └── index.ts │ │ └── top │ │ │ ├── help.ts │ │ │ ├── index.tsx │ │ │ ├── menu.ts │ │ │ └── tokens.ts │ └── svg.d.ts │ ├── style │ ├── base.css │ ├── index.css │ └── mamba.svg │ ├── tsconfig.json │ └── webpack.config.js ├── pyproject.toml ├── setup.py ├── tsconfig-base.json ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | select = B950 3 | 4 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/binder-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/workflows/binder-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-rtd-link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/workflows/pr-rtd-link.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.github/workflows/test-pypi-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.prettierrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/RELEASE.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/binder/jupyter_notebook_config.py -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/binder/postBuild -------------------------------------------------------------------------------- /binder/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/binder/workspace.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/source/api/index.md -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/source/changelog.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/source/getting-started.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/docs/source/user-guide/index.md -------------------------------------------------------------------------------- /install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/install.json -------------------------------------------------------------------------------- /jupyter-config/jupyter_notebook_config.d/mamba_gator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/jupyter-config/jupyter_notebook_config.d/mamba_gator.json -------------------------------------------------------------------------------- /jupyter-config/jupyter_server_config.d/mamba_gator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/jupyter-config/jupyter_server_config.d/mamba_gator.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/lerna.json -------------------------------------------------------------------------------- /mamba_gator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/__init__.py -------------------------------------------------------------------------------- /mamba_gator/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/__main__.py -------------------------------------------------------------------------------- /mamba_gator/envmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/envmanager.py -------------------------------------------------------------------------------- /mamba_gator/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/handlers.py -------------------------------------------------------------------------------- /mamba_gator/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/log.py -------------------------------------------------------------------------------- /mamba_gator/navigator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/navigator/README.md -------------------------------------------------------------------------------- /mamba_gator/navigator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamba_gator/navigator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/navigator/index.html -------------------------------------------------------------------------------- /mamba_gator/navigator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/navigator/main.py -------------------------------------------------------------------------------- /mamba_gator/navigator/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/navigator/static/favicon.svg -------------------------------------------------------------------------------- /mamba_gator/navigator/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/navigator/templates/error.html -------------------------------------------------------------------------------- /mamba_gator/navigator/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/navigator/templates/index.html -------------------------------------------------------------------------------- /mamba_gator/rest_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/rest_api.yml -------------------------------------------------------------------------------- /mamba_gator/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mamba_gator/tests/test_actionsstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/tests/test_actionsstack.py -------------------------------------------------------------------------------- /mamba_gator/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/tests/test_api.py -------------------------------------------------------------------------------- /mamba_gator/tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/tests/test_manager.py -------------------------------------------------------------------------------- /mamba_gator/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/tests/test_utils.py -------------------------------------------------------------------------------- /mamba_gator/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/mamba_gator/tests/utils.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/package.json -------------------------------------------------------------------------------- /packages/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/README.md -------------------------------------------------------------------------------- /packages/common/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/common/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/jest.config.js -------------------------------------------------------------------------------- /packages/common/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/jest.setup.js -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/src/CondaEnvWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/CondaEnvWidget.tsx -------------------------------------------------------------------------------- /packages/common/src/__tests__/services.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/__tests__/services.spec.ts -------------------------------------------------------------------------------- /packages/common/src/commands/registerEnvCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/commands/registerEnvCommands.ts -------------------------------------------------------------------------------- /packages/common/src/commands/registerPkgCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/commands/registerPkgCommands.ts -------------------------------------------------------------------------------- /packages/common/src/components/CondaEnvItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaEnvItem.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CondaEnvList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaEnvList.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CondaEnvToolBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaEnvToolBar.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CondaPkgDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaPkgDrawer.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CondaPkgList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaPkgList.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CondaPkgPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaPkgPanel.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CondaPkgToolBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CondaPkgToolBar.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CreateEnvButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CreateEnvButton.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CreateEnvDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CreateEnvDialog.tsx -------------------------------------------------------------------------------- /packages/common/src/components/CreateEnvDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/CreateEnvDrawer.tsx -------------------------------------------------------------------------------- /packages/common/src/components/NbConda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/NbConda.tsx -------------------------------------------------------------------------------- /packages/common/src/components/PkgGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/PkgGraph.tsx -------------------------------------------------------------------------------- /packages/common/src/components/globalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/components/globalStyles.ts -------------------------------------------------------------------------------- /packages/common/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/constants.ts -------------------------------------------------------------------------------- /packages/common/src/environmentActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/environmentActions.ts -------------------------------------------------------------------------------- /packages/common/src/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/icon.ts -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/index.ts -------------------------------------------------------------------------------- /packages/common/src/packageActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/packageActions.ts -------------------------------------------------------------------------------- /packages/common/src/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/services.ts -------------------------------------------------------------------------------- /packages/common/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/svg.d.ts -------------------------------------------------------------------------------- /packages/common/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/tokens.ts -------------------------------------------------------------------------------- /packages/common/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/src/utils.ts -------------------------------------------------------------------------------- /packages/common/style/cart-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/cart-arrow-down.svg -------------------------------------------------------------------------------- /packages/common/style/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/clone.svg -------------------------------------------------------------------------------- /packages/common/style/conda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/conda.svg -------------------------------------------------------------------------------- /packages/common/style/ellipsis-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/ellipsis-vertical.svg -------------------------------------------------------------------------------- /packages/common/style/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/external-link.svg -------------------------------------------------------------------------------- /packages/common/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/index.css -------------------------------------------------------------------------------- /packages/common/style/sync-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/sync-alt.svg -------------------------------------------------------------------------------- /packages/common/style/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/style/undo.svg -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/common/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/common/tsconfig.test.json -------------------------------------------------------------------------------- /packages/labextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/README.md -------------------------------------------------------------------------------- /packages/labextension/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /packages/labextension/build-with-fake-jlpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/build-with-fake-jlpm.js -------------------------------------------------------------------------------- /packages/labextension/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/jest.config.js -------------------------------------------------------------------------------- /packages/labextension/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/jest.setup.js -------------------------------------------------------------------------------- /packages/labextension/jupyterlab_conda.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/jupyterlab_conda.gif -------------------------------------------------------------------------------- /packages/labextension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/package.json -------------------------------------------------------------------------------- /packages/labextension/schema/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/schema/plugin.json -------------------------------------------------------------------------------- /packages/labextension/src/__tests__/kernelspec.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/src/__tests__/kernelspec.spec.ts -------------------------------------------------------------------------------- /packages/labextension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/src/index.ts -------------------------------------------------------------------------------- /packages/labextension/src/tour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/src/tour.tsx -------------------------------------------------------------------------------- /packages/labextension/src/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/src/validator.ts -------------------------------------------------------------------------------- /packages/labextension/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('~@mamba-org/gator-common/style/index.css'); 2 | -------------------------------------------------------------------------------- /packages/labextension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/labextension/tsconfig.json -------------------------------------------------------------------------------- /packages/navigator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/.gitignore -------------------------------------------------------------------------------- /packages/navigator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/README.md -------------------------------------------------------------------------------- /packages/navigator/navigator_as_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/navigator_as_service.png -------------------------------------------------------------------------------- /packages/navigator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/package.json -------------------------------------------------------------------------------- /packages/navigator/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/app/app.ts -------------------------------------------------------------------------------- /packages/navigator/src/app/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/app/shell.ts -------------------------------------------------------------------------------- /packages/navigator/src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/icons.ts -------------------------------------------------------------------------------- /packages/navigator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/index.ts -------------------------------------------------------------------------------- /packages/navigator/src/plugins/navigator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/plugins/navigator/index.ts -------------------------------------------------------------------------------- /packages/navigator/src/plugins/paths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/plugins/paths/index.ts -------------------------------------------------------------------------------- /packages/navigator/src/plugins/top/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/plugins/top/help.ts -------------------------------------------------------------------------------- /packages/navigator/src/plugins/top/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/plugins/top/index.tsx -------------------------------------------------------------------------------- /packages/navigator/src/plugins/top/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/plugins/top/menu.ts -------------------------------------------------------------------------------- /packages/navigator/src/plugins/top/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/plugins/top/tokens.ts -------------------------------------------------------------------------------- /packages/navigator/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/src/svg.d.ts -------------------------------------------------------------------------------- /packages/navigator/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/style/base.css -------------------------------------------------------------------------------- /packages/navigator/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/style/index.css -------------------------------------------------------------------------------- /packages/navigator/style/mamba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/style/mamba.svg -------------------------------------------------------------------------------- /packages/navigator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/tsconfig.json -------------------------------------------------------------------------------- /packages/navigator/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/packages/navigator/webpack.config.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/setup.py -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/gator/HEAD/yarn.lock --------------------------------------------------------------------------------