mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +08:00
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "@retrolab/application-extension",
|
|
"version": "0.3.0-alpha.2",
|
|
"description": "RetroLab - Application Extension",
|
|
"homepage": "https://github.com/jupyterlab/retrolab",
|
|
"bugs": {
|
|
"url": "https://github.com/jupyterlab/retrolab/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jupyterlab/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",
|
|
"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": {
|
|
"@jupyterlab/application": "^3.1.0-alpha.13",
|
|
"@jupyterlab/apputils": "^3.1.0-alpha.13",
|
|
"@jupyterlab/celltags": "^3.1.0-alpha.13",
|
|
"@jupyterlab/codeeditor": "^3.1.0-alpha.13",
|
|
"@jupyterlab/codemirror": "^3.1.0-alpha.13",
|
|
"@jupyterlab/coreutils": "^5.1.0-alpha.13",
|
|
"@jupyterlab/docmanager": "^3.1.0-alpha.13",
|
|
"@jupyterlab/docregistry": "^3.1.0-alpha.13",
|
|
"@jupyterlab/mainmenu": "^3.1.0-alpha.13",
|
|
"@jupyterlab/settingregistry": "^3.1.0-alpha.13",
|
|
"@jupyterlab/translation": "^3.1.0-alpha.13",
|
|
"@lumino/widgets": "^1.23.0",
|
|
"@retrolab/application": "^0.3.0-alpha.2",
|
|
"@retrolab/ui-components": "^0.3.0-alpha.2"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "~3.0.0",
|
|
"typescript": "~4.1.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"jupyterlab": {
|
|
"extension": true
|
|
},
|
|
"styleModule": "style/index.js"
|
|
}
|