-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
36 lines (35 loc) · 1.29 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
{
"name": "jupyterlab-plotly",
"main": "lib/mimeExtension.js",
"version": "6.0.1",
"repository": {
"type": "git",
"url": "https://github.com/plotly/plotly.py"
},
"description": "The plotly Jupyter extension",
"author": "The plotly.py team",
"license": "MIT",
"scripts": {
"build:widget": "esbuild --bundle --alias:plotly.js=plotly.js/dist/plotly --format=esm --minify --outfile=../plotly/package_data/widgetbundle.js src/widget.ts",
"build:mimerenderer": "esbuild --bundle --alias:plotly.js=plotly.js/dist/plotly --format=esm --minify --outfile=lib/mimeExtension.js src/mimeExtension.ts",
"build:labextension": "jupyter labextension build .",
"build": "npm run build:widget && npm run build:mimerenderer && npm run build:labextension",
"watch": "npm run build -- --watch --sourcemap=inline",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"lodash-es": "^4.17.21",
"plotly.js": "3.0.1",
"@lumino/widgets": "~2.4.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.3.6 || ^3.6.8",
"@types/plotly.js": "^2.33.4",
"esbuild": "^0.23.1",
"typescript": "^5.6.2"
},
"jupyterlab": {
"mimeExtension": true,
"outputDir": "../plotly/labextension"
}
}