-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.29 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
109
110
{
"name": "bqplot-gl",
"version": "0.1.0-alpha.0",
"description": "Plugin to bqplot powered by WebGL.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/bqplot/bqplot-gl",
"bugs": {
"url": "https://github.com/bqplot/bqplot-gl/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "The bqplot Development Team",
"email": ""
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bqplot/bqplot-gl"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:nbextension && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:nbextension && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:nbextension": "webpack",
"clean": "jlpm run clean:lib && jlpm run clean:nbextension && jlpm run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf bqplot-gl/labextension",
"clean:nbextension": "rimraf bqplot-gl/nbextension/static/index.js",
"prepack": "jlpm run build:lib",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch --mode=development",
"watch:labextension": "jupyter labextension watch .",
"prettier:check": "prettier src --check",
"prettier:fix": "prettier src --write",
"eslint:check": "eslint src --ext .ts",
"eslint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6",
"@lumino/application": "^1 || ^2",
"@lumino/widgets": "^1 || ^2",
"@types/underscore": "^1.11.5",
"bqplot": "^0.6.0-alpha.0",
"bqscales": "^0.3.2",
"d3": "^5.7.0",
"is-typedarray": "^1.0.0",
"lodash": "^4.17.21",
"three": "^0.91.0",
"underscore": "^1.13.6"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-typescript": "^7.15.0",
"@jupyter-widgets/base-manager": "^1.0.0",
"@jupyter-widgets/controls": "^5",
"@jupyterlab/builder": "^4",
"@types/d3": "^5.7.2",
"@types/node": "^13.13.2",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"css-loader": "^3.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"npm-run-all": "^4.1.3",
"prettier": "^2.0.5",
"raw-loader": "~4.0.1",
"rimraf": "^2.6.2",
"source-map-loader": "^1.1.3",
"style-loader": "^1.0.0",
"ts-loader": "^8.0.0",
"typescript": "~4.1.3",
"webpack": "^5.61.0",
"webpack-cli": "^4.0.0"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "bqplot_gl/labextension/",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
},
"bqplot": {
"bundled": false,
"singleton": true
},
"bqscales": {
"bundled": false,
"singleton": true
}
}
}
}