1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "@jupyterlab/statusbar-extension",
- "version": "3.4.3",
- "description": "JupyterLab - Statusbar Extension",
- "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, Richa Gadgil, Takahiro Shimokobe, Declan Kelly",
- "sideEffects": [
- "style/**/*"
- ],
- "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,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
- "schema/*.json",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.4.3",
- "@jupyterlab/apputils": "^3.4.3",
- "@jupyterlab/cells": "^3.4.3",
- "@jupyterlab/console": "^3.4.3",
- "@jupyterlab/docregistry": "^3.4.3",
- "@jupyterlab/fileeditor": "^3.4.3",
- "@jupyterlab/notebook": "^3.4.3",
- "@jupyterlab/settingregistry": "^3.4.3",
- "@jupyterlab/statusbar": "^3.4.3",
- "@jupyterlab/translation": "^3.4.3",
- "@jupyterlab/ui-components": "^3.4.3",
- "@lumino/commands": "^1.19.0",
- "@lumino/widgets": "^1.30.0"
- },
- "devDependencies": {
- "@types/react": "^17.0.0",
- "@types/react-dom": "^17.0.0",
- "rimraf": "~3.0.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema"
- },
- "styleModule": "style/index.js"
- }
|