-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "@g2nb/g2nb",
"version": "23.7.1",
"description": "Meta-package for installing all the g2nb tools",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"homepage": "https://github.com/g2nb/g2nb",
"bugs": {
"url": "https://github.com/g2nb/g2nb/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Thorin Tabor",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/g2nb/g2nb"
},
"scripts": {
"install:all": "jlpm run install:wysiwyg && jlpm run install:theme && jlpm run install:cytoscape",
"install:wysiwyg": "jupyter labextension install @g2nb/jupyter-wysiwyg",
"install:theme": "jupyter labextension install @g2nb/jupyterlab-theme",
"install:cytoscape": "jupyter labextension install @g2nb/cy-jupyterlab"
},
"dependencies": {
"@jupyterlab/application": "^3.0.4"
},
"jupyterlab": {
"discovery": {
"kernel": [
{
"kernel_spec": {
"language": "^python"
},
"base": {
"name": "g2nb"
},
"managers": [
"pip",
"conda"
]
}
]
}
}
}