12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "@jupyterlab/toc-extension",
- "version": "5.0.0-rc.15",
- "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",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "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}",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib",
- "precommit": "lint-staged",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.0.0-rc.15",
- "@jupyterlab/docmanager": "^3.0.0-rc.15",
- "@jupyterlab/fileeditor": "^3.0.0-rc.15",
- "@jupyterlab/markdownviewer": "^3.0.0-rc.15",
- "@jupyterlab/notebook": "^3.0.0-rc.15",
- "@jupyterlab/rendermime": "^3.0.0-rc.15",
- "@jupyterlab/toc": "^5.0.0-rc.15",
- "@jupyterlab/translation": "^3.0.0-rc.15",
- "@jupyterlab/ui-components": "^3.0.0-rc.15"
- },
- "devDependencies": {
- "rimraf": "~3.0.0",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true
- },
- "styleModule": "style/index.js"
- }
|