You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.1 KiB
73 lines
2.1 KiB
{
|
|
"name": "@retrolab/lab-extension",
|
|
"version": "0.3.13",
|
|
"description": "RetroLab - Lab 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/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 && jlpm run clean:labextension",
|
|
"clean:labextension": "rimraf ../../retrolab/labextension",
|
|
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
"watch": "run-p watch:src watch:labextension",
|
|
"watch:labextension": "jupyter labextension watch .",
|
|
"watch:src": "tsc -w"
|
|
},
|
|
"dependencies": {
|
|
"@jupyterlab/application": "^3.2.0",
|
|
"@jupyterlab/apputils": "^3.2.0",
|
|
"@jupyterlab/coreutils": "^5.2.0",
|
|
"@jupyterlab/docregistry": "^3.2.0",
|
|
"@jupyterlab/mainmenu": "^3.2.0",
|
|
"@jupyterlab/notebook": "^3.2.0",
|
|
"@jupyterlab/translation": "^3.2.0",
|
|
"@jupyterlab/ui-components": "^3.2.0",
|
|
"@lumino/commands": "^1.15.0",
|
|
"@lumino/disposable": "^1.7.0",
|
|
"@retrolab/application": "^0.3.13",
|
|
"@retrolab/ui-components": "^0.3.13"
|
|
},
|
|
"devDependencies": {
|
|
"@jupyterlab/builder": "^3.2.0",
|
|
"rimraf": "~3.0.0",
|
|
"typescript": "~4.1.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"jupyterlab": {
|
|
"extension": true,
|
|
"outputDir": "../../retrolab/labextension"
|
|
},
|
|
"styleModule": "style/index.js"
|
|
}
|