forked from jupyterlab/jupyter-renderers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "@jupyterlab/vega4-extension",
"version": "1.0.1",
"description": "JupyterLab - Vega 4 and Vega-Lite 2 Mime Renderer Extension",
"homepage": "https://github.com/jupyterlab/jupyter-renderers",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-renderers/issues"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"files": [
"lib/*.d.ts",
"lib/*.js",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-renderers.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepack": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/widgets": "^1.8.0",
"vega": "^4.4.0",
"vega-embed": "^4.2.0",
"vega-lite": "^2.6.0"
},
"devDependencies": {
"@types/json-stable-stringify": "^1.0.32",
"@types/webpack-env": "~1.13.6",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
"typescript": "~3.5.1"
},
"jupyterlab": {
"mimeExtension": true
}
}