package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "@jupyterlab/debugger",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Debugger Extension",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/jupyterlab/jupyterlab",
  11. "bugs": {
  12. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jupyterlab/jupyterlab.git"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "sideEffects": [
  21. "style/**/*.css",
  22. "style/index.js"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "files": [
  31. "lib/**/*.d.ts",
  32. "lib/**/*.js.map",
  33. "lib/**/*.js",
  34. "schema/*.json",
  35. "style/**/*.css",
  36. "style/**/*.svg",
  37. "style/index.js"
  38. ],
  39. "scripts": {
  40. "build": "tsc -b",
  41. "build:test": "tsc --build tsconfig.test.json",
  42. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
  43. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  44. "test": "jest",
  45. "test:cov": "jest --collect-coverage",
  46. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  47. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  48. "watch": "tsc -b --watch"
  49. },
  50. "dependencies": {
  51. "@jupyterlab/application": "^3.4.3",
  52. "@jupyterlab/apputils": "^3.4.3",
  53. "@jupyterlab/cells": "^3.4.3",
  54. "@jupyterlab/codeeditor": "^3.4.3",
  55. "@jupyterlab/codemirror": "^3.4.3",
  56. "@jupyterlab/console": "^3.4.3",
  57. "@jupyterlab/coreutils": "^5.4.3",
  58. "@jupyterlab/docregistry": "^3.4.3",
  59. "@jupyterlab/fileeditor": "^3.4.3",
  60. "@jupyterlab/notebook": "^3.4.3",
  61. "@jupyterlab/observables": "^4.4.3",
  62. "@jupyterlab/rendermime": "^3.4.3",
  63. "@jupyterlab/services": "^6.4.3",
  64. "@jupyterlab/translation": "^3.4.3",
  65. "@jupyterlab/ui-components": "^3.4.3",
  66. "@lumino/algorithm": "^1.9.0",
  67. "@lumino/commands": "^1.19.0",
  68. "@lumino/coreutils": "^1.11.0",
  69. "@lumino/datagrid": "^0.34.0",
  70. "@lumino/disposable": "^1.10.0",
  71. "@lumino/messaging": "^1.10.0",
  72. "@lumino/polling": "^1.9.0",
  73. "@lumino/signaling": "^1.10.0",
  74. "@lumino/widgets": "^1.30.0",
  75. "@vscode/debugprotocol": "^1.51.0",
  76. "codemirror": "~5.61.0",
  77. "react": "^17.0.1"
  78. },
  79. "devDependencies": {
  80. "@babel/core": "^7.10.2",
  81. "@babel/preset-env": "^7.10.2",
  82. "@jupyterlab/testutils": "^3.4.3",
  83. "@types/codemirror": "^0.0.109",
  84. "@types/jest": "^26.0.10",
  85. "@types/react-dom": "^17.0.0",
  86. "@types/text-encoding": "^0.0.35",
  87. "canvas": "^2.6.1",
  88. "jest": "^26.4.2",
  89. "jest-junit": "^11.1.0",
  90. "jest-raw-loader": "^1.0.1",
  91. "jest-summary-reporter": "^0.0.2",
  92. "rimraf": "~3.0.0",
  93. "shell-quote": "^1.7.2",
  94. "text-encoding": "^0.7.0",
  95. "ts-jest": "^26.3.0",
  96. "typedoc": "~0.21.2",
  97. "typescript": "~4.1.3"
  98. },
  99. "publishConfig": {
  100. "access": "public"
  101. },
  102. "styleModule": "style/index.js"
  103. }