-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 3.35 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
90
91
92
93
94
95
96
97
98
{
"name": "jupyter-offlinenotebook",
"version": "0.3.1",
"description": "JupyterLab offline-notebook extension.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/manics/jupyter-offlinenotebook",
"bugs": {
"url": "https://github.com/manics/jupyter-offlinenotebook/issues"
},
"license": "BSD-3-Clause",
"author": "Simon Li",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/manics/jupyter-offlinenotebook.git"
},
"//": "Dependency versions are based on https://github.com/jupyterlab/jupyterlab/blob/v3.6.1/examples/notebook/package.json",
"scripts": {
"build": "jlpm run build:lib",
"build:all": "jlpm run build:lib && jlpm run build:notebook && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:notebook": "webpack",
"clean": "jlpm run clean:lib && jlpm run clean:notebook && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyter_offlinenotebook/static/lab",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:notebook": "rimraf jupyter_offlinenotebook/static/jslib",
"default": "jlpm run clean && jlpm run build:all",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"format": "jlpm run eslint && jlpm run prettier",
"format:check": "jlpm run eslint:check && jlpm run prettier:check",
"install:extension": "jupyter labextension develop --overwrite .",
"npm-check-updates": "npm-check-updates -u",
"prepare": "jlpm run clean && jlpm run build",
"prettier": "prettier --write .",
"prettier:check": "prettier --list-different .",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0 || ^4.0.0",
"@jupyterlab/apputils": "^3.0.0 || ^4.0.0",
"@jupyterlab/coreutils": "^5.0.0 || ^6.0.0",
"@jupyterlab/docregistry": "^3.0.0 || ^4.0.0",
"@jupyterlab/notebook": "^3.0.0 || ^4.0.0",
"@lumino/disposable": "^1.4.3 || ^2.0.0",
"@lumino/widgets": "^1.17.0 || ^2.0.0",
"@types/jquery": "^3",
"dexie": "^4.0.8",
"jquery": "^3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0 || ^4.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mkdirp": "^3.0.1",
"npm-check-updates": "^17.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyter-offlinenotebook"
}
}
},
"extension": true,
"outputDir": "jupyter_offlinenotebook/static/lab"
}
}