This repository was archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "vispy",
"version": "0.3.0",
"description": "A Custom Jupyter Widget Library using WebGL for the VisPy Python Library",
"author": "Vispy Development Team",
"license": "BSD-3-Clause",
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/vispy/vispy.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vispy/vispy.git"
},
"homepage": "https://github.com/vispy/vispy",
"keywords": [
"jupyter",
"widgets",
"ipython",
"ipywidgets",
"jupyterlab-extension",
"vispy",
"webgl",
"opengl"
],
"files": [
"lib/**/*.js",
"dist/*.js"
],
"scripts": {
"clean": "rimraf dist/",
"prepare": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm-run-all -p watch:*",
"watch:nbextension": "webpack --watch --mode=development"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"raw-loader": "^2.0.0",
"rimraf": "^2.7.1",
"source-map-loader": "^0.2.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@jupyter-widgets/base": "^1 || ^2 || ^3",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1",
"lodash": "^4.17.19",
"screenfull": "^4.2.1"
},
"jupyterlab": {
"extension": "lib/labplugin"
}
}