12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@jupyterlab/logconsole-extension",
- "version": "2.1.0",
- "description": "JupyterLab - Log Console 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",
- "files": [
- "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
- "schema/*.json"
- ],
- "sideEffects": [
- "style/**/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w --listEmittedFiles"
- },
- "dependencies": {
- "@jupyterlab/application": "^2.1.0",
- "@jupyterlab/apputils": "^2.1.0",
- "@jupyterlab/coreutils": "^4.1.0",
- "@jupyterlab/logconsole": "^2.1.0",
- "@jupyterlab/mainmenu": "^2.1.0",
- "@jupyterlab/nbformat": "^2.1.0",
- "@jupyterlab/notebook": "^2.1.0",
- "@jupyterlab/rendermime": "^2.1.0",
- "@jupyterlab/services": "^5.1.0",
- "@jupyterlab/settingregistry": "^2.1.0",
- "@jupyterlab/statusbar": "^2.1.0",
- "@jupyterlab/ui-components": "^2.1.0",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/signaling": "^1.3.5",
- "@lumino/widgets": "^1.11.1",
- "react": "~16.9.0"
- },
- "devDependencies": {
- "rimraf": "~3.0.0",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema"
- }
- }
|