12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@jupyterlab/json-extension",
- "version": "0.18.1",
- "description": "JupyterLab - JSON Renderer",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/*.d.ts",
- "lib/*.js",
- "style/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib",
- "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/rendermime-interfaces": "^1.2.1",
- "@jupyterlab/ui-components": "^0.0.1",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/messaging": "^1.2.2",
- "@phosphor/widgets": "^1.6.0",
- "react": "~16.4.2",
- "react-dom": "~16.4.2",
- "react-highlighter": "^0.4.0",
- "react-json-tree": "^0.11.0"
- },
- "devDependencies": {
- "@types/react": "~16.4.13",
- "@types/react-dom": "~16.0.7",
- "@types/react-highlighter": "^0.3.1",
- "@types/react-json-tree": "^0.6.3",
- "rimraf": "~2.6.2",
- "typedoc": "~0.12.0",
- "typescript": "~3.1.1"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "mimeExtension": true
- }
- }
|