forked from chesterli29/jupyterlab_tensorboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "jupyterlab_tensorboard",
"version": "0.1.5",
"description": "A JupyterLab extension for tensorboard.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/chaoleili/jupyterlab_tensorboard",
"bugs": {
"url": "https://github.com/chaoleili/jupyterlab_tensorboard/issues"
},
"license": "MIT",
"author": "Chaolei Li",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/chaoleili/jupyterlab_tensorboard.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"@jupyterlab/application": "^0.19.1",
"@jupyterlab/apputils": "^0.19.1",
"@jupyterlab/coreutils": "^2.1.2",
"@jupyterlab/launcher": "^0.19.1",
"@jupyterlab/services": "^3.1.2",
"@phosphor/algorithm": "^1.1.2",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/disposable": "^1.1.2",
"@phosphor/domutils": "^1.1.2",
"@phosphor/messaging": "^1.2.2",
"@phosphor/signaling": "^1.2.2",
"@phosphor/widgets": "^1.6.0"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~2.9.2"
},
"jupyterlab": {
"extension": true
}
}