98 lines
3.4 KiB
JSON
98 lines
3.4 KiB
JSON
|
{
|
||
|
"name": "jupyterlab_sandbox_theme",
|
||
|
"version": "0.1.0",
|
||
|
"description": "Sandbox Theme",
|
||
|
"keywords": [
|
||
|
"jupyter",
|
||
|
"jupyterlab",
|
||
|
"jupyterlab-extension"
|
||
|
],
|
||
|
"homepage": "https://git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab_sandbox_theme",
|
||
|
"bugs": {
|
||
|
"url": "https://git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab_sandbox_theme/issues"
|
||
|
},
|
||
|
"license": "BSD-3-Clause",
|
||
|
"author": {
|
||
|
"name": "Malte Grosse",
|
||
|
"email": "grosse@hdm-stuttgart.de"
|
||
|
},
|
||
|
"files": [
|
||
|
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
||
|
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
||
|
"style/images/**/*.{jpg,svg,png}"
|
||
|
],
|
||
|
"main": "lib/index.js",
|
||
|
"types": "lib/index.d.ts",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab_sandbox_theme.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "jlpm build:lib && jlpm build:labextension:dev",
|
||
|
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
|
||
|
"build:labextension": "jupyter labextension build .",
|
||
|
"build:labextension:dev": "jupyter labextension build --development True .",
|
||
|
"build:lib": "tsc --sourceMap",
|
||
|
"build:lib:prod": "tsc",
|
||
|
"clean": "jlpm clean:lib",
|
||
|
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
||
|
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
||
|
"clean:labextension": "rimraf jupyterlab_sandbox_theme/labextension jupyterlab_sandbox_theme/_version.py",
|
||
|
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
||
|
"eslint": "jlpm eslint:check --fix",
|
||
|
"eslint:check": "eslint . --cache --ext .ts,.tsx",
|
||
|
"install:extension": "jlpm build",
|
||
|
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
|
||
|
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
|
||
|
"prettier": "jlpm prettier:base --write --list-different",
|
||
|
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
||
|
"prettier:check": "jlpm prettier:base --check",
|
||
|
"stylelint": "jlpm stylelint:check --fix",
|
||
|
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
|
||
|
"test": "jest --coverage",
|
||
|
"watch": "run-p watch:src watch:labextension",
|
||
|
"watch:src": "tsc -w",
|
||
|
"watch:labextension": "jupyter labextension watch ."
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@jupyterlab/application": "^3.5.2",
|
||
|
"@jupyterlab/apputils": "^3.5.2",
|
||
|
"@jupyterlab/ui-components": "^3.5.2"
|
||
|
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.0.0",
|
||
|
"@babel/preset-env": "^7.0.0",
|
||
|
"@jupyterlab/builder": "^3.1.0",
|
||
|
"@jupyterlab/testutils": "^3.0.0",
|
||
|
"@types/jest": "^26.0.0",
|
||
|
"@typescript-eslint/eslint-plugin": "^4.8.1",
|
||
|
"@typescript-eslint/parser": "^4.8.1",
|
||
|
"eslint": "^7.14.0",
|
||
|
"eslint-config-prettier": "^6.15.0",
|
||
|
"eslint-plugin-prettier": "^3.1.4",
|
||
|
"jest": "^26.0.0",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"prettier": "^2.1.1",
|
||
|
"rimraf": "^3.0.2",
|
||
|
"stylelint": "^14.3.0",
|
||
|
"stylelint-config-prettier": "^9.0.4",
|
||
|
"stylelint-config-recommended": "^6.0.0",
|
||
|
"stylelint-config-standard": "~24.0.0",
|
||
|
"stylelint-prettier": "^2.0.0",
|
||
|
"ts-jest": "^26.0.0",
|
||
|
"typescript": "~4.1.3"
|
||
|
},
|
||
|
"sideEffects": [
|
||
|
"style/*.css"
|
||
|
],
|
||
|
"publishConfig": {
|
||
|
"access": "public"
|
||
|
},
|
||
|
"jupyterlab": {
|
||
|
"extension": true,
|
||
|
"outputDir": "jupyterlab_sandbox_theme/labextension",
|
||
|
"themePath": "style/index.css"
|
||
|
}
|
||
|
}
|