Skip to content

Commit dc3c4a5

Browse files
committed
Add more stuff for debugger-restarts
1 parent 7dda651 commit dc3c4a5

17 files changed

+657
-0
lines changed

debugger-restarts/package.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"name": "debugger-restarts-clj",
3+
"version": "0.4.0",
4+
"description": "Common Lisp restart functionality for the JupyterLab debugger",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/yitzchak/common-lisp-jupyter",
11+
"bugs": {
12+
"url": "https://github.com/yitzchak/common-lisp-jupyter/issues"
13+
},
14+
"license": "MIT",
15+
"author": {
16+
"name": "Tarn W. Burton",
17+
"email": "twburton@gmail.com"
18+
},
19+
"files": [
20+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
21+
"style/*.css",
22+
"LICENSE.md"
23+
],
24+
"main": "lib/index.js",
25+
"style": "style/index.css",
26+
"types": "lib/index.d.ts",
27+
"repository": {
28+
"type": "git",
29+
"url": "https://github.com/yitzchak/common-lisp-jupyter.git"
30+
},
31+
"scripts": {
32+
"build": "tsc && jupyter-labextension build",
33+
"lint": "eslint . --ext .ts --fix",
34+
"lint-check": "eslint . --ext .ts",
35+
"prepack": "yarn run build"
36+
},
37+
"dependencies": {
38+
"@jupyterlab/application": "^4.0.1",
39+
"@jupyterlab/debugger": "^4.0.1",
40+
"react": "^18.2.0"
41+
},
42+
"devDependencies": {
43+
"@jupyterlab/builder": "^4.0.1",
44+
"@typescript-eslint/eslint-plugin": "^4.8.1",
45+
"@typescript-eslint/parser": "^4.8.1",
46+
"eslint": "^8.26.0",
47+
"eslint-config-prettier": "^6.15.0",
48+
"eslint-plugin-prettier": "^4.2.1",
49+
"npm-run-all": "^4.1.5",
50+
"prettier": "^2.1.1",
51+
"rimraf": "^3.0.2",
52+
"typescript": "~5.1.3"
53+
},
54+
"jupyterlab": {
55+
"extension": true,
56+
"outputDir": "prebuilt"
57+
}
58+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "debugger-restarts-clj",
3+
"version": "0.4.0",
4+
"description": "Common Lisp restart functionality for the JupyterLab debugger",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/yitzchak/common-lisp-jupyter",
11+
"bugs": {
12+
"url": "https://github.com/yitzchak/common-lisp-jupyter/issues"
13+
},
14+
"license": "MIT",
15+
"author": {
16+
"name": "Tarn W. Burton",
17+
"email": "twburton@gmail.com"
18+
},
19+
"files": [
20+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
21+
"style/*.css",
22+
"LICENSE.md"
23+
],
24+
"main": "lib/index.js",
25+
"style": "style/index.css",
26+
"types": "lib/index.d.ts",
27+
"repository": {
28+
"type": "git",
29+
"url": "https://github.com/yitzchak/common-lisp-jupyter.git"
30+
},
31+
"scripts": {
32+
"build": "tsc && jupyter-labextension build",
33+
"lint": "eslint . --ext .ts --fix",
34+
"lint-check": "eslint . --ext .ts",
35+
"prepack": "yarn run build"
36+
},
37+
"dependencies": {
38+
"@jupyterlab/application": "^4.0.1",
39+
"@jupyterlab/debugger": "^4.0.1",
40+
"react": "^18.2.0"
41+
},
42+
"devDependencies": {
43+
"@jupyterlab/builder": "^4.0.1",
44+
"@typescript-eslint/eslint-plugin": "^4.8.1",
45+
"@typescript-eslint/parser": "^4.8.1",
46+
"eslint": "^8.26.0",
47+
"eslint-config-prettier": "^6.15.0",
48+
"eslint-plugin-prettier": "^4.2.1",
49+
"npm-run-all": "^4.1.5",
50+
"prettier": "^2.1.1",
51+
"rimraf": "^3.0.2",
52+
"typescript": "~5.1.3"
53+
},
54+
"jupyterlab": {
55+
"extension": true,
56+
"outputDir": "prebuilt",
57+
"_build": {
58+
"load": "static/remoteEntry.392b95aa74b3661bc1b4.js",
59+
"extension": "./extension",
60+
"style": "./style"
61+
}
62+
}
63+
}

debugger-restarts/prebuilt/static/149.2a11f31fe3ceeaff1760.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debugger-restarts/prebuilt/static/549.48a98a468a9c4092a413.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debugger-restarts/prebuilt/static/remoteEntry.392b95aa74b3661bc1b4.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* This is a generated file of CSS imports */
2+
/* It was generated by @jupyterlab/builder in Build.ensureAssets() */
3+
4+
import 'debugger-restarts-clj/style/index.css';
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"packages": [
3+
{
4+
"name": "css-loader",
5+
"versionInfo": "6.8.1",
6+
"licenseId": "MIT",
7+
"extractedText": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
8+
},
9+
{
10+
"name": "style-loader",
11+
"versionInfo": "3.3.3",
12+
"licenseId": "MIT",
13+
"extractedText": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)