forked from jupyter-widgets/pythreejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "jupyter-threejs",
"version": "2.3.0",
"description": "jupyter - threejs bridge",
"keywords": [
"jupyterlab",
"extension",
"jupyterlab-extension",
"notebook",
"jupyter",
"widgets",
"three"
],
"repository": {
"type": "git",
"url": "https://github.com/jupyter-widgets/pythreejs.git"
},
"license": "BSD-3-Clause",
"author": "Jupyter-Threejs development team",
"main": "dist/index.js",
"scripts": {
"autogen": "npm run autogen:shaders && npm run autogen:wrappers",
"autogen:enums": "node ./scripts/generate-enums.js",
"autogen:shaders": "node ./scripts/generate-shader-utils.js",
"autogen:wrappers": "node ./scripts/generate-wrappers.js",
"build:all": "npm run build:labextension",
"build:bundles": "webpack -d && node ./scripts/post-build.js --debug",
"build:bundles-prod": "webpack -p && node ./scripts/post-build.js",
"build:labextension": "rimraf lab-dist && mkdirp lab-dist && cd lab-dist && npm pack .. && cd .. && jupyter labextension build .",
"clean": "rimraf dist && rimraf ../pythreejs/static && rimraf lab-dist && node ./scripts/clean-generated-files.js",
"prepack": "npm run build:bundles-prod",
"prepare": "npm run autogen",
"update:deps": "update-dependency --minimal --regex \"^(?!@jupyter-widgets|three)\"",
"watch": "webpack -d -w"
},
"dependencies": {
"@jupyter-widgets/base": "^1.2.5 || ^2.0.0 || ^3.0.0 || ^4.0.0",
"bluebird": "^3.5.5",
"jupyter-dataserializers": "^2.2.0",
"three": "^0.112.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@jupyterlab/buildutils": "^2.0.2",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"handlebars": "^4.1.2",
"mkdirp": "^1.0.3",
"rimraf": "^3.0.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"jupyterlab": {
"extension": "src/jupyterlab-plugin",
"outputDir": "../pythreejs/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
},
"discovery": {
"kernel": [
{
"kernel_spec": {
"language": "^python"
},
"base": {
"name": "pythreejs"
},
"managers": [
"pip",
"conda"
]
}
]
}
}
}