123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "@jupyterlab/rendermime-extension",
- "version": "2.1.0",
- "description": "A rendermime extension 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}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
- ],
- "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/application": "^2.1.0",
- "@jupyterlab/docmanager": "^2.1.0",
- "@jupyterlab/rendermime": "^2.1.0"
- },
- "devDependencies": {
- "rimraf": "~3.0.0",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true
- }
- }
|