forked from jupyterlab/jupyter-renderers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.06 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
{
"name": "@jupyterlab/vega3-extension",
"version": "1.0.0",
"description": "JupyterLab - Vega 3 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.map",
"lib/*.js",
"style/*.css"
],
"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-embed": "3.9.2"
},
"devDependencies": {
"rimraf": "~2.6.2",
"typescript": "~3.5.1"
},
"jupyterlab": {
"mimeExtension": true
}
}