1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@jupyterlab/running",
- "version": "3.4.3",
- "description": "JupyterLab - Running Sessions Panel",
- "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",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "style/*.css",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^3.4.3",
- "@jupyterlab/translation": "^3.4.3",
- "@jupyterlab/ui-components": "^3.4.3",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "react": "^17.0.1"
- },
- "devDependencies": {
- "rimraf": "~3.0.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "styleModule": "style/index.js"
- }
|