-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "rsjupyterlab",
"version": "0.1.0",
"description": "A JupyterLab extension.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/github_username/rsjupyterlab",
"bugs": {
"url": "https://github.com/github_username/rsjupyterlab/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "gurhar khalsa",
"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/github_username/rsjupyterlab.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 rsjupyterlab/labextension",
"clean:all": "jlpm run clean:labextension",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run build:prod",
"prettier": "prettier --write \"**/*{.js,.jsx,.css,.json,.md}\"",
"watch": "jlpm run watch:labextension",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^3.1.0",
"@jupyterlab/apputils": "^3.1.0",
"@jupyterlab/launcher": ">=3.1.13 <3.2.0",
"@jupyterlab/ui-components": ">=3.1.13 <3.2.0",
"@lumino/widgets": "^1.31.1"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"extension": true,
"outputDir": "rsjupyterlab/labextension"
}
}