Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit da3a21b

Browse files
committed
Commit JupyterLab extension so that installing from source does not rely on nodejs
1 parent e38f383 commit da3a21b

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
/dist
66
/build/
77
/extensions/jupyterlab/dist/
8-
/jupyter_dash/labextension/dist/
9-
/jupyter_dash/labextension/package.json
108
.ipynb_checkpoints
119
/extensions/jupyterlab/README.md
3.19 KB
Binary file not shown.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "jupyterlab-dash",
3+
"version": "0.2.0",
4+
"description": "A JupyterLab extensions for rendering Plotly Dash apps",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/plotly/jupyter-dash",
11+
"bugs": {
12+
"url": "https://github.com/plotly/jupyter-dash/issues"
13+
},
14+
"license": "MIT",
15+
"author": "Plotly",
16+
"files": [
17+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
18+
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
19+
],
20+
"main": "lib/index.js",
21+
"types": "lib/index.d.ts",
22+
"repository": {
23+
"type": "git",
24+
"url": "git+https://github.com/plotly/jupyter-dash.git"
25+
},
26+
"scripts": {
27+
"build": "tsc",
28+
"clean": "rimraf lib",
29+
"prepare": "npm run clean && npm run build",
30+
"prettier": "prettier --write '{!(package),src/**,!(lib)/**}{.js,.jsx,.ts,.tsx,.css,.json,.md}'",
31+
"watch": "tsc -w"
32+
},
33+
"dependencies": {
34+
"@jupyterlab/application": "^2.0.0",
35+
"@jupyterlab/notebook": "^2.0.0",
36+
"@jupyterlab/console": "^2.0.0"
37+
},
38+
"devDependencies": {
39+
"prettier": "2.0.5",
40+
"rimraf": "3.0.2",
41+
"typescript": "3.9.3"
42+
},
43+
"jupyterlab": {
44+
"extension": true
45+
}
46+
}

0 commit comments

Comments
 (0)