forked from gt-coar/jupyterlab-gt-coar-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.17 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
{
"name": "@gt-coar/jupyterlab-theme",
"version": "0.1.0",
"description": "an unofficial Georgia Tech theme for JupyterLab",
"dependencies": {
"@fontsource/roboto": "~4.1.0",
"@fontsource/roboto-slab": "~4.1.1",
"@jupyterlab/application": "3"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"georgia-tech"
],
"homepage": "https://github.com/gt-coar/jupyterlab-gt-coar-theme",
"bugs": {
"url": "https://github.com/gt-coar/jupyterlab-gt-coar-theme/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "jupyterlab-gt-coar-theme contributors",
"email": "[email protected]"
},
"devDependencies": {
"@fontsource/roboto-mono": "^4.1.1",
"@jupyterlab/builder": "^3.0.2",
"base64-inline-loader": "^1.1.1",
"prettier": "^2.2.1",
"typescript": "~4.1.3"
},
"files": [
"{lib,style,src}/**/*.{.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,css}",
"LICENSE.txt"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/gt-coar/jupyterlab-gt-coar-theme"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"printWidth": 88
},
"scripts": {
"bootstrap": "jlpm --prefer-offline --ignore-optional --ignore-scripts && jlpm clean && jlpm lint && jlpm build",
"build": "jlpm build:lib && jlpm build:ext",
"build:lib": "tsc -b",
"build:ext": "jupyter labextension build .",
"clean": "rimraf ./lib ./py_src/jupyterlab_gt_coar_theme/labextension",
"watch:lib": "jlpm build:lib --watch --preserveWatchOutput",
"lint": "jlpm lint:prettier",
"lint:prettier": "prettier --write --list-different \"*.{json,yml,md}\" \"{py_src,src,.github,style}/**/*.{ts,tsx,js,jsx,css,json,md,yml}\""
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"themePath": "style/index.css",
"extension": "lib/index.js",
"discovery": {
"server": {
"base": {
"name": "jupyterlab-gt-coar-theme"
},
"managers": [
"pip"
]
}
},
"outputDir": "py_src/jupyterlab_gt_coar_theme/labextension"
}
}