Spaces:
Paused
Paused
| { | |
| "name": "jupyterlab-plotly", | |
| "version": "5.22.0", | |
| "description": "The plotly Jupyter extension", | |
| "author": "The plotly.py team", | |
| "license": "MIT", | |
| "main": "lib/index.js", | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/plotly/plotly.py" | |
| }, | |
| "keywords": [ | |
| "jupyter", | |
| "widgets", | |
| "ipython", | |
| "ipywidgets", | |
| "plotly" | |
| ], | |
| "files": [ | |
| "lib/**/*.js", | |
| "dist/*.js", | |
| "style/*.*" | |
| ], | |
| "scripts": { | |
| "build:dev": "npm run build:lib && npm run build:nbextension && npm run build:labextension:dev", | |
| "build:prod": "npm run build:lib && npm run build:nbextension && npm run build:labextension", | |
| "build:labextension": "jupyter labextension build .", | |
| "build:labextension:dev": "jupyter labextension build --development True .", | |
| "build:lib": "tsc", | |
| "build:nbextension": "webpack --mode=production", | |
| "clean": "npm run clean:lib && npm run clean:nbextension && npm run clean:labextension", | |
| "clean:lib": "rimraf lib", | |
| "clean:labextension": "rimraf ../../python/plotly/jupyterlab_plotly/labextension", | |
| "clean:nbextension": "rimraf ../../python/plotly/jupyterlab_plotly/nbextension/index.js*", | |
| "lint": "eslint . --ext .ts,.tsx --fix", | |
| "lint:check": "eslint . --ext .ts,.tsx", | |
| "prepack": "npm run build:lib", | |
| "test": "echo \"Error: no test specified\" && exit 1", | |
| "watch": "npm-run-all -p watch:*", | |
| "watch:lib": "tsc -w", | |
| "watch:nbextension": "webpack --watch" | |
| }, | |
| "devDependencies": { | |
| "@jupyterlab/builder": "^3.0.0", | |
| "@lumino/application": "^1.6.0", | |
| "@types/plotly.js": "^1.54.10", | |
| "@types/webpack-env": "^1.13.6", | |
| "acorn": "^7.2.0", | |
| "css-loader": "^5.2.6", | |
| "fs-extra": "^7.0.0", | |
| "mkdirp": "^0.5.1", | |
| "npm-run-all": "^4.1.3", | |
| "prettier": "^2.0.5", | |
| "rimraf": "^2.6.2", | |
| "source-map-loader": "^1.1.3", | |
| "style-loader": "^1.0.0", | |
| "ts-loader": "^8.0.0", | |
| "typescript": "~4.1.3", | |
| "webpack": "^5.0.0", | |
| "webpack-cli": "^4.0.0" | |
| }, | |
| "dependencies": { | |
| "@jupyter-widgets/base": ">=2.0.0 <7.0.0", | |
| "@jupyterlab/rendermime-interfaces": "^1.3.0 || ^2.0.0 || ^3.0.0", | |
| "@lumino/messaging": "^1.2.3", | |
| "@lumino/widgets": "^1.8.1", | |
| "lodash": "^4.17.4", | |
| "plotly.js": "^2.32.0" | |
| }, | |
| "jupyterlab": { | |
| "extension": "lib/jupyterlab-plugin", | |
| "mimeExtension": "lib/plotly-renderer", | |
| "outputDir": "../../python/plotly/jupyterlab_plotly/labextension", | |
| "sharedPackages": { | |
| "@jupyter-widgets/base": { | |
| "bundled": false, | |
| "singleton": true | |
| } | |
| }, | |
| "_build": { | |
| "load": "static/remoteEntry.36690a2bfa9ee0dd7bc8.js", | |
| "extension": "./extension", | |
| "mimeExtension": "./mimeExtension" | |
| } | |
| } | |
| } | |