123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "name": "@jupyterlab/terminal",
- "version": "2.1.0",
- "description": "JupyterLab - Terminal Emulator Widget",
- "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",
- "lib/*.js.map",
- "lib/*.js",
- "style/*.css"
- ],
- "sideEffects": [
- "style/*.css"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "prepublishOnly": "npm run build",
- "test": "jest",
- "test:cov": "jest --collect-coverage",
- "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
- "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^2.1.0",
- "@jupyterlab/services": "^5.1.0",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/domutils": "^1.1.7",
- "@lumino/messaging": "^1.3.3",
- "@lumino/widgets": "^1.11.1",
- "xterm": "~4.2.0",
- "xterm-addon-fit": "~0.3.0"
- },
- "devDependencies": {
- "@jupyterlab/testutils": "^2.1.0",
- "@types/jest": "^24.0.23",
- "canvas": "^2.6.1",
- "jest": "^25.2.3",
- "rimraf": "~3.0.0",
- "ts-jest": "^25.2.1",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extraStyles": {
- "xterm": [
- "css/xterm.css"
- ]
- }
- }
- }
|