-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@quantrocket/jupyterlab_quantrocket_ibgui",
"version": "0.1.2",
"description": "Load IB Gateway GUI in Jupyter Lab",
"keywords": [
"extension",
"jupyter",
"jupyterlab"
],
"homepage": "https://www.quantrocket.com",
"license": "BSD-3-Clause",
"author": "QuantRocket LLC",
"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/quantrocket-llc/jupyterlab_quantrocket_ibgui.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.16.0",
"@jupyterlab/apputils": "^0.16.0",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/virtualdom": "^1.1.2",
"@phosphor/widgets": "^1.5.0"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~2.6.2"
},
"jupyterlab": {
"extension": true
}
}