1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "@jupyterlab/fileeditor-extension",
- "version": "0.14.1",
- "description": "JupyterLab - Editor Widget Extension",
- "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",
- "schema/*.json"
- ],
- "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/application": "^0.14.1",
- "@jupyterlab/apputils": "^0.14.1",
- "@jupyterlab/codeeditor": "^0.14.1",
- "@jupyterlab/console": "^0.14.1",
- "@jupyterlab/coreutils": "^1.0.1",
- "@jupyterlab/filebrowser": "^0.14.1",
- "@jupyterlab/fileeditor": "^0.14.1",
- "@jupyterlab/launcher": "^0.14.1",
- "@jupyterlab/mainmenu": "^0.3.1",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/widgets": "^1.5.0"
- },
- "devDependencies": {
- "rimraf": "~2.6.2",
- "typescript": "~2.6.2"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema"
- }
- }
|