12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@jupyterlab/vdom",
- "version": "2.1.0",
- "description": "A viewer for VDOM documents.",
- "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",
- "lib/*.js",
- "style/*"
- ],
- "sideEffects": [
- "style/**/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib",
- "docs": "typedoc src",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^2.1.0",
- "@jupyterlab/docregistry": "^2.1.0",
- "@jupyterlab/rendermime-interfaces": "^2.1.0",
- "@jupyterlab/services": "^5.1.0",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/messaging": "^1.3.3",
- "@lumino/widgets": "^1.11.1",
- "@nteract/transform-vdom": "^4.0.3",
- "react": "~16.9.0",
- "react-dom": "~16.9.0"
- },
- "devDependencies": {
- "@types/react": "~16.9.16",
- "@types/react-dom": "~16.9.4",
- "rimraf": "~3.0.0",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|