-
- Downloads
init
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- README.md 32 additions, 1 deletionREADME.md
- doc/screenshot.png 0 additions, 0 deletionsdoc/screenshot.png
- package.json 44 additions, 0 deletionspackage.json
- src/index.ts 35 additions, 0 deletionssrc/index.ts
- style/index.css 0 additions, 0 deletionsstyle/index.css
- tsconfig.json 21 additions, 0 deletionstsconfig.json
.gitignore
0 → 100644
doc/screenshot.png
0 → 100644
9.03 KiB
package.json
0 → 100644
{ | ||
"name": "jupyterlab-controlpanel", | ||
"version": "0.4.0", | ||
"description": "ControlPanel Button for JupyterLab", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/jtpio/jupyterlab-topbar", | ||
"bugs": { | ||
"url": "https://github.com/jtpio/jupyterlab-topbar/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": "Jeremy Tuloup", | ||
"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", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jtpio/jupyterlab-topbar.git" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo", | ||
"prepare": "npm run clean && npm run build", | ||
"watch": "tsc -w" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/application": "^1.0.0", | ||
"@phosphor/widgets": "^1.6.0", | ||
"jupyterlab-topbar": "^0.4.0" | ||
}, | ||
"devDependencies": { | ||
"rimraf": "^2.6.1", | ||
"typescript": "~3.5.1" | ||
}, | ||
"jupyterlab": { | ||
"extension": true | ||
} | ||
} |
src/index.ts
0 → 100644
style/index.css
0 → 100644
tsconfig.json
0 → 100644