forked from AllanChain/jupyterlab-theme-solarized-dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "jupyterlab-theme-solarized-dark",
"version": "1.0.0-rc.0",
"description": "JupyterLab 2.x Solarized Dark extension.",
"contributors": [
"Jae Hee Lee (http://jaeheelee.info/)",
"Allan Chain <[email protected]>"
],
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"jupyterlab-theme"
],
"license": "BSD-3-Clause",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"style/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "tsc",
"build:webpack": "webpack",
"clean": "rimraf lib && rimraf static && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"watch:webpack": "webpack --watch"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0"
},
"devDependencies": {
"css-loader": "^3.4.2",
"mini-css-extract-plugin": "~0.4.4",
"rimraf": "~2.6.2",
"svg-url-loader": "~2.3.1",
"svgo": "^1.3.2",
"svgo-loader": "~2.1.0",
"typedoc": "^0.17.3",
"typescript": "~3.7.1",
"url-loader": "~1.0.1",
"watch": "~1.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.0.3"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"themePath": "style/index.css"
},
"homepage": "https://github.com/AllanChain/jupyterlab-theme-solarized-dark",
"bugs": {
"url": "https://github.com/AllanChain/jupyterlab-theme-solarized-dark/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AllanChain/jupyterlab-theme-solarized-dark"
}
}