-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
{
"name": "@g2nb/jupyterlab-theme",
"version": "0.3.1",
"description": "A theme extension for JupyterLab with the g2nb logo and colors",
"author": {
"name": "Thorin Tabor",
"email": "[email protected]"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"jupyterlab-theme"
],
"license": "BSD-3-Clause",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"style/*"
],
"sideEffects": true,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib",
"prepublishOnly": "npm run build",
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/application": "^3.0.4",
"@jupyterlab/apputils": "^3.0.3",
"@jupyterlab/ui-components": "^3.0.3"
},
"devDependencies": {
"rimraf": "~3.0.2",
"typescript": "~4.1.3"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": "lib/index",
"themePath": "style/index.css",
"disabledExtensions": ["@jupyterlab/application-extension:logo"]
},
"homepage": "https://github.com/g2nb/jupyterlab-theme",
"bugs": {
"url": "https://github.com/g2nb/jupyterlab-theme/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/g2nb/jupyterlab-theme.git"
}
}