1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@jupyterlab/settingregistry",
- "version": "2.1.0",
- "description": "Settings registry for Jupyterlab",
- "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}",
- "schema/*.json",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
- ],
- "sideEffects": false,
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src --tsconfig typedoc-tsconfig.json",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b -w --listEmittedFiles"
- },
- "dependencies": {
- "@jupyterlab/statedb": "^2.1.0",
- "@lumino/commands": "^1.10.1",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/disposable": "^1.3.5",
- "@lumino/signaling": "^1.3.5",
- "ajv": "^6.10.2",
- "json5": "^2.1.1"
- },
- "devDependencies": {
- "@types/json5": "^0.0.30",
- "rimraf": "~3.0.0",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|