This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "jupyterlab-debugger-restarts",
"version": "0.2.0",
"description": "Common Lisp restart functionality for the JupyterLab debugger",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/yitzchak/jupyterlab-debugger-restarts",
"bugs": {
"url": "https://github.com/yitzchak/jupyterlab-debugger-restarts/issues"
},
"license": "MIT",
"author": {
"name": "Tarn W. Burton",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/*.css",
"LICENSE.md"
],
"main": "lib/index.js",
"style": "style/index.css",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/yitzchak/jupyterlab-debugger-restarts.git"
},
"scripts": {
"build": "tsc",
"lab-install": "yarn pack -f jupyterlab-debugger-restarts.tgz && jupyter-labextension install --no-build jupyterlab-debugger-restarts.tgz && sleep 5 && jupyter-lab build --dev-build",
"lint": "eslint . --ext .ts --fix",
"lint-check": "eslint . --ext .ts",
"prepack": "yarn run build"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/debugger": "^3.0.12",
"react": "^18.2.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^5.0.0",
"typescript": "~4.9.3"
},
"jupyterlab": {
"extension": true
}
}