12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "@jupyterlab/pdf-extension",
- "version": "0.6.1",
- "description": "JupyterLab - PDF Viewer",
- "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",
- "style/*.css"
- ],
- "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": {
- "@jupyterlab/rendermime-interfaces": "^1.0.1",
- "@phosphor/widgets": "^1.5.0"
- },
- "devDependencies": {
- "rimraf": "~2.6.2",
- "typescript": "~2.6.2"
- },
- "jupyterlab": {
- "mimeExtension": true
- }
- }
|