-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.41 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
{
"name": "pgljupyter",
"version": "2.0.0",
"description": "PlantGL and L-Py Jupyter widgets",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets",
"FSPM",
"PlantGL",
"L-Py"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/fredboudon/plantgl-jupyter",
"bugs": {
"url": "https://github.com/fredboudon/plantgl-jupyter/issues"
},
"license": "CeCILL",
"repository": {
"type": "git",
"url": "https://github.com/fredboudon/plantgl-jupyter.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev && jlpm build:nbextension",
"build:prod": "jlpm clean:all && npm run build:pgljs && jlpm build:lib && jlpm build:nbextension && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jlpm build:lib && jupyter labextension build --development True .",
"build:nbextension": "webpack",
"build:lib": "tsc",
"build:pgljs": "cd src/pgljs && npm run build && mkdir -p ../../lib/pgljs && cp -a dist ../../lib/pgljs",
"build:all": "npm run build:pgljs && npm run build",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf pgljupyter/labextension",
"clean:nbextension": "rimraf pgljupyter/nbextension/static/index.js",
"clean:all": "rimraf dist && jlpm clean:lib && jlpm clean:labextension && jlpm clean:nbextension && jlpm clean:lintcache",
"install:extension": "jlpm build"
},
"dependencies": {
"@jupyter-widgets/base": "^4.1.0",
"@jupyter-widgets/controls": "^3.1.0",
"@jupyterlab/application": "^3.4.2",
"@jupyterlab/codemirror": "^3.4.2",
"@jupyterlab/docregistry": "^3.4.2",
"@jupyterlab/rendermime": "^3.4.2",
"@jupyterlab/rendermime-interfaces": "^3.4.2",
"@jupyterlab/ui-components": "^3.4.2",
"@material/mwc-circular-progress": "^0.26.1",
"@material/mwc-formfield": "^0.26.1",
"@material/mwc-icon-button": "^0.26.1",
"@material/mwc-icon-button-toggle": "^0.26.1",
"@material/mwc-linear-progress": "^0.26.1",
"@material/mwc-switch": "^0.26.1",
"d3": "^7.4.4",
"lit-html": "^2.2.4",
"nurbs": "^1.1.1",
"three": "^0.140.2"
},
"devDependencies": {
"@jupyterlab/builder": "^3.4.2",
"@lumino/widgets": "^1.32.0",
"@types/d3": "^5.16.4",
"@types/expect.js": "^0.3.29",
"@types/node": "^10.17.56",
"@types/webpack-env": "^1.16.0",
"css-loader": "^5.0.1",
"expect.js": "^0.3.1",
"fs-extra": "^7.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.3.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^3.1.0",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": "lib/labplugin",
"outputDir": "pgljupyter/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false
},
"@jupyter-widgets/controls": {
"bundled": false
},
"@lumino/widgets": {
"bundled": false
}
}
}
}