123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@jupyterlab/settingeditor",
- "version": "2.1.0",
- "description": "The JupyterLab default setting editor interface",
- "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",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "style/*.css"
- ],
- "sideEffects": [
- "style/*.css"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^2.1.0",
- "@jupyterlab/codeeditor": "^2.1.0",
- "@jupyterlab/inspector": "^2.1.0",
- "@jupyterlab/rendermime": "^2.1.0",
- "@jupyterlab/settingregistry": "^2.1.0",
- "@jupyterlab/statedb": "^2.1.0",
- "@jupyterlab/ui-components": "^2.1.0",
- "@lumino/commands": "^1.10.1",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/messaging": "^1.3.3",
- "@lumino/signaling": "^1.3.5",
- "@lumino/widgets": "^1.11.1",
- "react": "~16.9.0",
- "react-dom": "~16.9.0"
- },
- "devDependencies": {
- "@types/react": "~16.9.16",
- "@types/react-dom": "~16.9.4",
- "rimraf": "~3.0.0",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|