123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "@jupyterlab/toc-extension",
- "version": "5.0.0-alpha.4",
- "description": "JupyterLab - Table of Contents widget extension",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-extension"
- ],
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
- ],
- "sideEffects": [
- "style/*.css"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib",
- "precommit": "lint-staged",
- "prepublishOnly": "npm run build",
- "prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
- "watch": "tsc -w"
- },
- "lint-staged": {
- "**/*{.ts,.tsx,.css,.json,.md}": [
- "prettier --write",
- "git add"
- ]
- },
- "dependencies": {
- "@jupyterlab/application": "^3.0.0-alpha.4",
- "@jupyterlab/docmanager": "^3.0.0-alpha.4",
- "@jupyterlab/fileeditor": "^3.0.0-alpha.4",
- "@jupyterlab/markdownviewer": "^3.0.0-alpha.4",
- "@jupyterlab/notebook": "^3.0.0-alpha.4",
- "@jupyterlab/rendermime": "^3.0.0-alpha.4",
- "@jupyterlab/toc": "^5.0.0-alpha.4",
- "@jupyterlab/ui-components": "^3.0.0-alpha.4"
- },
- "devDependencies": {
- "lint-staged": "^8.2.1",
- "prettier": "^1.19.1",
- "rimraf": "~3.0.0",
- "tslint": "^5.20.1",
- "tslint-config-prettier": "^1.18.0",
- "tslint-plugin-prettier": "^2.1.0",
- "typescript": "~3.9.2"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true
- }
- }
|