mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +08:00
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "@jupyterlab-classic/application-extension",
|
|
"version": "0.1.6",
|
|
"description": "JupyterLab Classic - Application Extension",
|
|
"homepage": "https://github.com/jtpio/jupyterlab-classic",
|
|
"bugs": {
|
|
"url": "https://github.com/jtpio/jupyterlab-classic/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jtpio/jupyterlab-classic.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": {
|
|
"@jupyterlab-classic/application": "^0.1.6",
|
|
"@jupyterlab-classic/ui-components": "^0.1.6",
|
|
"@jupyterlab/application": "^3.0.0",
|
|
"@jupyterlab/apputils": "^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
|
|
}
|
|
}
|