-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
86 lines (86 loc) · 2.44 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
{
"name": "ipygany",
"version": "0.5.0",
"description": "Scientific Visualization in Jupyter",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/jupyter-widgets-contrib/ipygany",
"bugs": {
"url": "https://github.com/jupyter-widgets-contrib/ipygany/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Martin Renou",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jupyter-widgets-contrib/ipygany"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:nbextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:extensions": "yarn run build && yarn run build:labextension",
"build:lib": "tsc",
"build:nbextension": "webpack",
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf ipygany/labextension",
"clean:nbextension": "rimraf ipygany/nbextension/static/index.js",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"prepack": "yarn run build:lib",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4.0.0",
"binary-search-tree": "^0.2.6",
"ganyjs": "^0.7.1",
"three": "^0.118.0",
"util": "^0.12.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@lumino/application": "^1.6.0",
"@lumino/widgets": "^1.6.0",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.6",
"@types/webpack-env": "^1.13.6",
"css-loader": "^3.2.0",
"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.0.0",
"ts-loader": "^8",
"typescript": "^4",
"webpack": "^5",
"webpack-cli": "^4"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "ipygany/labextension/",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}