-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
91 lines (91 loc) · 2.46 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
{
"name": "k3d",
"version": "2.17.0",
"description": "3D visualization library",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"homepage": "https://github.com/K3D-tools/K3D-jupyter.git",
"bugs": {
"url": "https://github.com/K3D-tools/K3D-jupyter.git/issues"
},
"license": "MIT",
"author": {
"name": "k3d team",
"email": "artur.trzesiok@gmail.com"
},
"files": [
"js/src/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
],
"main": "js/src/labplugin.js",
"repository": {
"type": "git",
"url": "https://github.com/K3D-tools/K3D-jupyter"
},
"scripts": {
"build": "jlpm run build:nbextension && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:labextension && jlpm run build:nbextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:nbextension": "cd js && jlpm install && jlpm build",
"clean:labextension": "rimraf k3d/labextension",
"clean:all": "jlpm run clean:labextension",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run build:prod",
"prettier": "prettier --write \"**/*{.js,.jsx,.css,.json,.md}\"",
"watch": "watch:labextension",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-widgets/base": "^4 || ^5 || ^6",
"fflate": "^0.7.3",
"file-saver": "^2.0.5",
"katex": "^0.15.6",
"lil-gui": "^0.16.1",
"lodash": "^4.17.21",
"msgpack-lite": "^0.1.26",
"rasterizehtml": "^1.3.1",
"requirejs": "^2.3.6",
"screenfull": "^6.0.1",
"stats.js": "^0.17.0",
"three": "^0.140.2",
"three-mesh-bvh": "^0.5.11",
"copy-webpack-plugin": "^11.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.4.2",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1"
},
"jupyterlab": {
"extension": true,
"outputDir": "k3d/labextension",
"webpackConfig": "./lab-webpack.config.js",
"discovery": {
"kernel": [
{
"kernel_spec": {
"language": "^python"
},
"base": {
"name": "k3d"
},
"managers": [
"pip",
"conda"
]
}
]
},
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}