123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "name": "@jupyterlab/codemirror",
- "version": "2.0.0-alpha.1",
- "description": "JupyterLab - CodeMirror Editor Provider",
- "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",
- "lib/*.js.map",
- "lib/*.js",
- "style/*.css"
- ],
- "sideEffects": true,
- "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/apputils": "^2.0.0-alpha.1",
- "@jupyterlab/codeeditor": "^2.0.0-alpha.1",
- "@jupyterlab/coreutils": "^4.0.0-alpha.1",
- "@jupyterlab/observables": "^3.0.0-alpha.1",
- "@jupyterlab/statusbar": "^2.0.0-alpha.1",
- "@lumino/algorithm": "^1.2.0",
- "@lumino/commands": "^1.7.0",
- "@lumino/coreutils": "^1.3.1",
- "@lumino/disposable": "^1.3.0",
- "@lumino/signaling": "^1.3.0",
- "@lumino/widgets": "^1.9.0",
- "codemirror": "~5.47.0",
- "react": "~16.8.4"
- },
- "devDependencies": {
- "@types/codemirror": "^0.0.74",
- "rimraf": "~2.6.2",
- "typedoc": "^0.15.2",
- "typescript": "~3.7.2"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extraStyles": {
- "codemirror": [
- "lib/codemirror.css",
- "addon/dialog/dialog.css",
- "addon/fold/foldgutter.css",
- "theme/material.css",
- "theme/zenburn.css",
- "theme/abcdef.css",
- "theme/base16-light.css",
- "theme/base16-dark.css",
- "theme/dracula.css",
- "theme/hopscotch.css",
- "theme/mbo.css",
- "theme/mdn-like.css",
- "theme/seti.css",
- "theme/solarized.css",
- "theme/the-matrix.css",
- "theme/xq-light.css"
- ]
- }
- }
- }
|