1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "@jupyterlab/fileeditor",
- "version": "0.10.0",
- "description": "JupyterLab - Editor Widget",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/*.d.ts",
- "lib/*.js",
- "style/*.css"
- ],
- "directories": {
- "lib": "lib/"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^0.10.0",
- "@jupyterlab/codeeditor": "^0.10.0",
- "@jupyterlab/coreutils": "^0.10.0",
- "@jupyterlab/docregistry": "^0.10.0",
- "@phosphor/coreutils": "^1.2.0"
- },
- "devDependencies": {
- "rimraf": "^2.5.2",
- "typescript": "~2.4.1"
- },
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib",
- "watch": "tsc -w"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "author": "Project Jupyter",
- "license": "BSD-3-Clause",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "homepage": "https://github.com/jupyterlab/jupyterlab"
- }
|