mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +08:00
2047e3a5e4
* Rename text to RetroLab * More renaming * More renaming * Rename files * Update deps * Update logo * Lint * Update README.md * Minor CSS fix * Update tour * Update screencasts in README.md
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "@retrolab/application-extension",
|
|
"version": "0.1.10",
|
|
"description": "RetroLab - Application Extension",
|
|
"homepage": "https://github.com/jtpio/retrolab",
|
|
"bugs": {
|
|
"url": "https://github.com/jtpio/retrolab/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jtpio/retrolab.git"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"author": "Project Jupyter",
|
|
"sideEffects": [
|
|
"style/**/*.css",
|
|
"style/index.js"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"style": "style/index.css",
|
|
"styleModule": "style/index.js",
|
|
"directories": {
|
|
"lib": "lib/"
|
|
},
|
|
"files": [
|
|
"lib/*.d.ts",
|
|
"lib/*.js.map",
|
|
"lib/*.js",
|
|
"schema/*.json",
|
|
"style/**/*.css",
|
|
"style/index.js"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
|
|
"docs": "typedoc src",
|
|
"prepublishOnly": "npm run build",
|
|
"watch": "tsc -b --watch"
|
|
},
|
|
"dependencies": {
|
|
"@retrolab/application": "^0.1.10",
|
|
"@retrolab/ui-components": "^0.1.10",
|
|
"@jupyterlab/application": "^3.0.0",
|
|
"@jupyterlab/apputils": "^3.0.0",
|
|
"@jupyterlab/celltags": "^3.0.0",
|
|
"@jupyterlab/codeeditor": "^3.0.0",
|
|
"@jupyterlab/codemirror": "^3.0.0",
|
|
"@jupyterlab/coreutils": "^5.0.0",
|
|
"@jupyterlab/docmanager": "^3.0.0",
|
|
"@jupyterlab/docregistry": "^3.0.0",
|
|
"@jupyterlab/mainmenu": "^3.0.0",
|
|
"@jupyterlab/settingregistry": "^3.0.0",
|
|
"@jupyterlab/translation": "^3.0.0",
|
|
"@lumino/widgets": "^1.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "~3.0.0",
|
|
"typescript": "~4.1.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"jupyterlab": {
|
|
"extension": true
|
|
}
|
|
}
|