123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@jupyterlab/codemirror",
- "version": "1.0.0-alpha.6",
- "description": "JupyterLab - CodeMirror Editor Provider",
- "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 -b",
- "clean": "rimraf lib",
- "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^1.0.0-alpha.6",
- "@jupyterlab/codeeditor": "^1.0.0-alpha.6",
- "@jupyterlab/coreutils": "^3.0.0-alpha.6",
- "@jupyterlab/observables": "^2.2.0-alpha.6",
- "@jupyterlab/statusbar": "^1.0.0-alpha.6",
- "@phosphor/algorithm": "^1.1.2",
- "@phosphor/commands": "^1.6.1",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/disposable": "^1.1.2",
- "@phosphor/signaling": "^1.2.2",
- "@phosphor/widgets": "^1.6.0",
- "codemirror": "~5.46.0",
- "react": "~16.8.4"
- },
- "devDependencies": {
- "@types/codemirror": "~0.0.74",
- "rimraf": "~2.6.2",
- "typedoc": "^0.14.2",
- "typescript": "~3.4.3"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|