-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
57 lines (57 loc) · 1.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
{
"name": "jupyter-vega",
"version": "4.1.0",
"description": "IPython/Jupyter notebook module for [Vega](https://vega.github.io/vega), and [Vega-Lite](https://vega.github.io/vega-lite).",
"repository": {
"type": "git",
"url": "git+https://github.com/vega/ipyvega.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/vega/ipyvega/issues"
},
"homepage": "https://github.com/vega/ipyvega#readme",
"scripts": {
"format": "prettier --write 'src/*.ts'",
"lint": "prettier --check 'src/*.ts'",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"jupyter-tablewidgets": "^0.3.0",
"vega": "5.30.0",
"vega-lite": "4.17.0",
"vega-embed": "^6.26.0",
"@jupyter-widgets/base": "6.0.10",
"@types/webpack-env": "*"
},
"devDependencies": {
"@types/webpack-env": "*",
"@types/ndarray": "^1.0.14",
"filemanager-webpack-plugin": "^8.0.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.0.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"files": [
"dist",
"src",
"package.json",
"tsconfig.json",
"webpack.config.js",
"yarn.lock",
"vega/static/"
],
"jupyterlab": {
"extension": "vega/static/labplugin",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}