123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {
- "name": "@jupyterlab/debugger",
- "version": "3.4.3",
- "description": "JupyterLab - Debugger Extension",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-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",
- "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",
- "schema/*.json",
- "style/**/*.css",
- "style/**/*.svg",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
- "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
- "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/application": "^3.4.3",
- "@jupyterlab/apputils": "^3.4.3",
- "@jupyterlab/cells": "^3.4.3",
- "@jupyterlab/codeeditor": "^3.4.3",
- "@jupyterlab/codemirror": "^3.4.3",
- "@jupyterlab/console": "^3.4.3",
- "@jupyterlab/coreutils": "^5.4.3",
- "@jupyterlab/docregistry": "^3.4.3",
- "@jupyterlab/fileeditor": "^3.4.3",
- "@jupyterlab/notebook": "^3.4.3",
- "@jupyterlab/observables": "^4.4.3",
- "@jupyterlab/rendermime": "^3.4.3",
- "@jupyterlab/services": "^6.4.3",
- "@jupyterlab/translation": "^3.4.3",
- "@jupyterlab/ui-components": "^3.4.3",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/datagrid": "^0.34.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.30.0",
- "@vscode/debugprotocol": "^1.51.0",
- "codemirror": "~5.61.0",
- "react": "^17.0.1"
- },
- "devDependencies": {
- "@babel/core": "^7.10.2",
- "@babel/preset-env": "^7.10.2",
- "@jupyterlab/testutils": "^3.4.3",
- "@types/codemirror": "^0.0.109",
- "@types/jest": "^26.0.10",
- "@types/react-dom": "^17.0.0",
- "@types/text-encoding": "^0.0.35",
- "canvas": "^2.6.1",
- "jest": "^26.4.2",
- "jest-junit": "^11.1.0",
- "jest-raw-loader": "^1.0.1",
- "jest-summary-reporter": "^0.0.2",
- "rimraf": "~3.0.0",
- "shell-quote": "^1.7.2",
- "text-encoding": "^0.7.0",
- "ts-jest": "^26.3.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "styleModule": "style/index.js"
- }
|