-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "@nfultz/jupyterlab-theme-simple-extension",
"version": "0.19.2",
"description": "JupyterLab - Default simple Theme",
"homepage": "https://github.com/nfultz/jupyterlab-theme-simple-extension",
"bugs": {
"url": "https://github.com/nfultz/jupyterlab-theme-simple-extension"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter, Neal Fultz",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"static/*.css",
"static/*.ttf",
"static/*.eot",
"static/*.woff",
"static/*.woff2"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfultz/jupyterlab-theme-simple-extension.git"
},
"scripts": {
"build": "tsc -b",
"build:src": "tsc -b src",
"build:webpack": "webpack",
"clean": "rimraf lib && rimraf static",
"prepublishOnly": "npm run build",
"watch": "tsc -b --watch",
"watch:src": "tsc -b src --watch",
"watch:webpack": "webpack --watch"
},
"dependencies": {
"@jupyterlab/application": ">0.19.1",
"@jupyterlab/apputils": ">0.19.1",
"font-awesome": "~4.7.0"
},
"devDependencies": {
"css-loader": "~0.28.7",
"mini-css-extract-plugin": "^0.4.0",
"npm-run-all": "~4.1.1",
"rimraf": "~2.6.2",
"svg-url-loader": "~2.3.1",
"svgo": "~1.0.4",
"svgo-loader": "~2.1.0",
"typedoc": "~0.12.0",
"typescript": "^3.9.7",
"url-loader": "~1.0.1",
"webpack": "~4.12.0",
"webpack-cli": "^3.0.3"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"themePath": "static/index.css"
},
"keywords": [
"jupyterlab",
"theme"
]
}