mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-30 12:11:32 +08:00
72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"name": "@jupyterlab-classic/lab-extension",
|
|
"version": "0.1.4",
|
|
"description": "JupyterLab Classic - Lab 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/index.js"
|
|
],
|
|
"scripts": {
|
|
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
|
|
"build:labextension": "jupyter labextension build .",
|
|
"build:labextension:dev": "jupyter labextension build --development True .",
|
|
"build:lib": "tsc",
|
|
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
|
|
"clean": "jlpm run clean:lib",
|
|
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
|
|
"clean:labextension": "rimraf ../../jupyterlab_classic/labextension",
|
|
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
"prepare": "jlpm run clean && jlpm run build:prod",
|
|
"watch": "run-p watch:src watch:labextension",
|
|
"watch:labextension": "jupyter labextension watch .",
|
|
"watch:src": "tsc -w"
|
|
},
|
|
"dependencies": {
|
|
"@jupyterlab-classic/ui-components": "^0.1.4",
|
|
"@jupyterlab/application": "^3.0.0",
|
|
"@jupyterlab/apputils": "^3.0.0",
|
|
"@jupyterlab/coreutils": "^5.0.0",
|
|
"@jupyterlab/docregistry": "^3.0.0",
|
|
"@jupyterlab/mainmenu": "^3.0.0",
|
|
"@jupyterlab/notebook": "^3.0.0",
|
|
"@lumino/commands": "^1.11.4",
|
|
"@lumino/disposable": "^1.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@jupyterlab/builder": "^3.0.0",
|
|
"rimraf": "~3.0.0",
|
|
"typescript": "~4.1.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"jupyterlab": {
|
|
"extension": true,
|
|
"outputDir": "../../jupyterlab_classic/labextension"
|
|
}
|
|
}
|