-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "jupyterlab_mutableai_optin",
"version": "0.1.0",
"description": "A JupyterLab extension to opt in to using MutableAI",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/orchest/jupyterlab_mutableai_optin",
"bugs": {
"url": "https://github.com/orchest/jupyterlab_mutableai_optin/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "R. Lamers",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/orchest/jupyterlab_mutableai_optin.git"
},
"scripts": {
"build": "jlpm run build:labextension:dev",
"build:prod": "jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"clean:labextension": "rimraf jupyterlab_mutableai_optin/labextension",
"clean:all": "jlpm run clean:labextension",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run build:prod",
"watch": "jlpm watch:labextension",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/apputils": "^3.4.3",
"@jupyterlab/statedb": "^3.4.3",
"html-react-parser": "^3.0.0",
"jupyterlab_mutableai": "^0.1.15"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"rimraf": "^3.0.2"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_mutableai_optin/labextension",
"sharedPackages": {
"jupyterlab_mutableai" : {
"bundled": false,
"singleton": true
}
}
},
"jupyter-releaser": {
"hooks": {
"before-build-npm": [
"python -m pip install jupyterlab~=3.1",
"jlpm"
]
}
}
}