-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "@kenshohara/theme-nord-extension",
"version": "2.2.5",
"description": "JupyterLab - Nord Theme",
"homepage": "https://github.com/kenshohara/theme-nord-extension",
"bugs": {
"url": "https://github.com/kenshohara/theme-nord-extension/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kenshohara/theme-nord-extension.git"
},
"license": "BSD-3-Clause",
"author": "Kensho Hara",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"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 && rimraf tsconfig.tsbuildinfo",
"prepublishOnly": "npm run build",
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/application": "^2.2.5",
"@jupyterlab/apputils": "^2.2.5"
},
"devDependencies": {
"rimraf": "~3.0.0",
"typedoc": "^0.15.4",
"typescript": "~3.7.3"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"themePath": "style/index.css"
}
}