|
@@ -0,0 +1,69 @@
|
|
|
+{
|
|
|
+ "name": "@jupyterlab/toc-extension",
|
|
|
+ "version": "4.0.0",
|
|
|
+ "private": false,
|
|
|
+ "description": "Table of Contents extension for JupyterLab",
|
|
|
+ "keywords": [
|
|
|
+ "jupyter",
|
|
|
+ "jupyterlab",
|
|
|
+ "jupyterlab-extension"
|
|
|
+ ],
|
|
|
+ "homepage": "https://github.com/jupyterlab/jupyterlab-toc",
|
|
|
+ "bugs": {
|
|
|
+ "url": "https://github.com/jupyterlab/jupyterlab-toc/issues"
|
|
|
+ },
|
|
|
+ "repository": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/jupyterlab/jupyterlab-toc.git"
|
|
|
+ },
|
|
|
+ "license": "BSD-3-Clause",
|
|
|
+ "author": "Project Jupyter",
|
|
|
+ "files": [
|
|
|
+ "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
|
|
+ "schema/*.json",
|
|
|
+ "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
|
|
|
+ ],
|
|
|
+ "main": "lib/index.js",
|
|
|
+ "types": "lib/index.d.ts",
|
|
|
+ "scripts": {
|
|
|
+ "build": "tsc",
|
|
|
+ "clean": "rimraf lib",
|
|
|
+ "precommit": "lint-staged",
|
|
|
+ "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": "^2.0.0",
|
|
|
+ "@jupyterlab/apputils": "^2.0.0",
|
|
|
+ "@jupyterlab/docmanager": "^2.0.0",
|
|
|
+ "@jupyterlab/fileeditor": "^2.0.0",
|
|
|
+ "@jupyterlab/markdownviewer": "^2.0.0",
|
|
|
+ "@jupyterlab/notebook": "^2.0.0",
|
|
|
+ "@jupyterlab/rendermime": "^2.0.0",
|
|
|
+ "@jupyterlab/toc": "^4.0.0",
|
|
|
+ "@lumino/widgets": "^1.11.1"
|
|
|
+ },
|
|
|
+ "devDependencies": {
|
|
|
+ "husky": "^2.7.0",
|
|
|
+ "lint-staged": "^8.2.1",
|
|
|
+ "prettier": "^1.19.1",
|
|
|
+ "rimraf": "^2.7.1",
|
|
|
+ "tslint": "^5.20.1",
|
|
|
+ "tslint-config-prettier": "^1.18.0",
|
|
|
+ "tslint-plugin-prettier": "^2.1.0",
|
|
|
+ "typescript": "^3.5.2"
|
|
|
+ },
|
|
|
+ "publishConfig": {
|
|
|
+ "access": "public"
|
|
|
+ },
|
|
|
+ "jupyterlab": {
|
|
|
+ "extension": "true",
|
|
|
+ "schemaDir": "schema"
|
|
|
+ }
|
|
|
+}
|