-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
50 lines (50 loc) · 1.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
{
"name": "jupyter-vega",
"version": "3.6.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-widgets/base": "4.0.0",
"jupyter-tablewidgets": "^0.2.3",
"vega": "5.21.0",
"vega-embed": "^6.20.6",
"vega-lite": "4.17.0"
},
"devDependencies": {
"@types/webpack-env": "*",
"@types/ndarray": "^1.0.11",
"filemanager-webpack-plugin": "^6.1.7",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"files": [
"dist",
"src",
"package.json",
"tsconfig.json",
"webpack.config.js",
"yarn.lock",
"vega/static/"
],
"jupyterlab": {
"extension": "vega/static/labplugin"
}
}