forked from AllanChain/jupyterlab-theme-solarized-dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.75 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jupyterlab-theme-solarized-dark",
"version": "2.0.1",
"description": "JupyterLab 2/3 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": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:webpack": "webpack",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab_theme_solarized_lll/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w",
"watch:webpack": "webpack --watch"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0 || ^3.0.0",
"@jupyterlab/apputils": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"css-loader": "^3.4.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"mini-css-extract-plugin": "~0.4.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"svg-url-loader": "~2.3.1",
"svgo": "^1.3.2",
"svgo-loader": "~2.1.0",
"typedoc": "^0.17.3",
"typescript": "~4.1.3",
"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",
"outputDir": "jupyterlab_theme_solarized_lll/labextension"
},
"homepage": "https://github.com/liululu4497/jupyterlab-theme-solarized-dark",
"bugs": {
"url": "https://github.com/liululu4497/jupyterlab-theme-solarized-dark/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/liululu4497/jupyterlab-theme-solarized-dark"
}
}