12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@jupyterlab/filebrowser-extension",
- "version": "0.19.2",
- "description": "JupyterLab - Filebrowser 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"
- ],
- "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/application": "^0.19.1",
- "@jupyterlab/apputils": "^0.19.1",
- "@jupyterlab/coreutils": "^2.2.1",
- "@jupyterlab/docmanager": "^0.19.1",
- "@jupyterlab/filebrowser": "^0.19.3",
- "@jupyterlab/launcher": "^0.19.1",
- "@jupyterlab/services": "^3.2.1",
- "@jupyterlab/statusbar": "^0.7.1",
- "@phosphor/algorithm": "^1.1.2",
- "@phosphor/commands": "^1.6.1",
- "@phosphor/messaging": "^1.2.2",
- "@phosphor/widgets": "^1.6.0"
- },
- "devDependencies": {
- "rimraf": "~2.6.2",
- "typedoc": "~0.12.0",
- "typescript": "~3.1.1"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema"
- }
- }
|