123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "@jupyterlab/rendermime-interfaces",
- "version": "1.0.1",
- "description": "JupyterLab - Interfaces for Mime Renderers",
- "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.map",
- "lib/*.js"
- ],
- "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",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w"
- },
- "dependencies": {
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/widgets": "^1.5.0"
- },
- "devDependencies": {
- "rimraf": "~2.6.2",
- "typescript": "~2.6.2"
- }
- }
|