-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
111 lines (111 loc) · 3.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@jupyterlab/plugin-playground",
"version": "0.4.0",
"description": "A JupyterLab Plugin Playground.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-plugin-playground",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-plugin-playground/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Project Jupyter Contributors",
"email": ""
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-plugin-playground.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab_plugin_playground/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"lint": "jlpm prettier && jlpm eslint",
"lint:check": "jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"install:extension": "jlpm run build",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-widgets/base": "^4.0.0",
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/fileeditor": "^3.0.0",
"@jupyterlab/settingregistry": "^3.0.0",
"raw-loader": "^4.0.2",
"requirejs": "^2.3.6",
"typescript": "~4.1.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@jupyterlab/cell-toolbar": "^3.4.0",
"@jupyterlab/collaboration": "^3.5.0-beta.0",
"@jupyterlab/completer": "^3.2.5",
"@jupyterlab/console": "^3.2.5",
"@jupyterlab/debugger": "^3.2.5",
"@jupyterlab/docmanager": "^3.2.5",
"@jupyterlab/documentsearch": "^3.2.5",
"@jupyterlab/extensionmanager": "^3.2.5",
"@jupyterlab/filebrowser": "^3.2.5",
"@jupyterlab/imageviewer": "^3.2.5",
"@jupyterlab/inspector": "^3.2.5",
"@jupyterlab/launcher": "^3.2.5",
"@jupyterlab/logconsole": "^3.2.5",
"@jupyterlab/mainmenu": "^3.2.5",
"@jupyterlab/markdownviewer": "^3.2.5",
"@jupyterlab/notebook": "^3.2.5",
"@jupyterlab/settingeditor": "^3.2.5",
"@jupyterlab/terminal": "^3.2.5",
"@jupyterlab/toc": "^5.2.5",
"@jupyterlab/tooltip": "^3.2.5",
"@lumino/datagrid": "^0.34.1",
"@types/codemirror": "^5.6.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/requirejs": "^2.1.34",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"webpackConfig": "./webpack.config.js",
"extension": true,
"outputDir": "jupyterlab_plugin_playground/labextension",
"schemaDir": "schema"
}
}