12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@jupyterlab/extensionmanager",
- "version": "3.4.3",
- "description": "JupyterLab - Extension Manager",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "style/*.css",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.4.3",
- "@jupyterlab/apputils": "^3.4.3",
- "@jupyterlab/coreutils": "^5.4.3",
- "@jupyterlab/services": "^6.4.3",
- "@jupyterlab/settingregistry": "^3.4.3",
- "@jupyterlab/translation": "^3.4.3",
- "@jupyterlab/ui-components": "^3.4.3",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "react": "^17.0.1",
- "react-paginate": "^6.3.2",
- "semver": "^7.3.2"
- },
- "devDependencies": {
- "@types/react-paginate": "^6.2.1",
- "@types/semver": "^7.3.3",
- "rimraf": "~3.0.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "styleModule": "style/index.js"
- }
|