-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 5.48 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 5.48 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@jupyterlab/plugin-playground",
"version": "1.0.0-b0",
"description": "A JupyterLab Plugin Playground.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/plugin-playground",
"bugs": {
"url": "https://github.com/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/plugin-playground.git"
},
"packageManager": "yarn@3.5.0",
"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",
"eslint:files": "eslint --fix --no-cache",
"lint": "jlpm prettier && jlpm eslint",
"lint:check": "jlpm prettier:check && jlpm eslint:check",
"check:extension-examples": "node scripts/check-extension-examples.js",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"prettier:files": "prettier --write",
"install:extension": "jlpm run build",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"test:integration": "cd ui-tests && jlpm test",
"test:integration:update": "cd ui-tests && jlpm test:update",
"docs:screenshots": "cd ui-tests && jlpm test:docs-screenshots"
},
"dependencies": {
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.16",
"@jupyter-widgets/base": "^6.0.0",
"@jupyter/chat": "^0.21.0",
"@jupyterlab/application": "^4.5.5",
"@jupyterlab/apputils": "^4.6.5",
"@jupyterlab/codemirror": "^4.5.5",
"@jupyterlab/completer": "^4.5.5",
"@jupyterlab/filebrowser": "^4.5.5",
"@jupyterlab/fileeditor": "^4.5.5",
"@jupyterlab/settingregistry": "^4.5.5",
"jupyterlab-js-logs": "^1.1.0",
"raw-loader": "^4.0.2",
"requirejs": "^2.3.6",
"typescript": "~5.5.4"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@jupyter-notebook/application": "^7.0.0",
"@jupyter/collaborative-drive": "^4.2.1",
"@jupyter/docprovider": "^4.1.1",
"@jupyter/eslint-plugin": "^0.0.1",
"@jupyterlab/builder": "^4.5.5",
"@jupyterlab/cell-toolbar": "^4.5.5",
"@jupyterlab/console": "^4.5.5",
"@jupyterlab/csvviewer": "^4.5.5",
"@jupyterlab/debugger": "^4.5.5",
"@jupyterlab/docmanager": "^4.5.5",
"@jupyterlab/documentsearch": "^4.5.5",
"@jupyterlab/extensionmanager": "^4.5.5",
"@jupyterlab/htmlviewer": "^4.5.5",
"@jupyterlab/imageviewer": "^4.5.5",
"@jupyterlab/inspector": "^4.5.5",
"@jupyterlab/launcher": "^4.5.5",
"@jupyterlab/logconsole": "^4.5.5",
"@jupyterlab/mainmenu": "^4.5.5",
"@jupyterlab/markdownviewer": "^4.5.5",
"@jupyterlab/metadataform": "^4.5.5",
"@jupyterlab/nbconvert-css": "^4.5.5",
"@jupyterlab/notebook": "^4.5.5",
"@jupyterlab/pluginmanager": "^4.5.5",
"@jupyterlab/property-inspector": "^4.5.5",
"@jupyterlab/running": "^4.5.5",
"@jupyterlab/settingeditor": "^4.5.5",
"@jupyterlab/terminal": "^4.5.5",
"@jupyterlab/toc": "^6.5.5",
"@jupyterlab/tooltip": "^4.5.5",
"@jupyterlab/workspaces": "^4.5.5",
"@lumino/datagrid": "^2.0.0",
"@rjsf/utils": "^5.13.4",
"@types/codemirror": "^5.6.20",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/requirejs": "^2.1.34",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"typescript": "~5.5.4",
"yjs": "^13.5.40"
},
"resolutions": {
"globals": "13.24.0",
"lib0": "0.2.111"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"webpackConfig": "./webpack.config.js",
"extension": true,
"outputDir": "jupyterlab_plugin_playground/labextension",
"schemaDir": "schema",
"disabledExtensions": [
"jupyterlab-tour:default-tours"
]
}
}