package.json 478 Bytes
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "name": "nni-jupyter-extension",
    "version": "999.0.0-developing",
    "license": "MIT",
    "scripts": {
        "build": "tsc && jupyter labextension build ."
    },
    "dependencies": {
        "@jupyterlab/application": "^3.0.11",
        "@jupyterlab/launcher": "^3.0.9"
    },
    "devDependencies": {
        "@jupyterlab/builder": "^3.0.9"
    },
    "jupyterlab": {
        "extension": true,
        "outputDir": "dist"
    },
    "main": "build/index.js"
}