package.json.orig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "@jupyterlab/debugger-extension",
  3. "version": "4.5.6",
  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. "src/**/*.{ts,tsx}"
  39. ],
  40. "scripts": {
  41. "build": "tsc -b",
  42. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
  43. "watch": "tsc -b --watch"
  44. },
  45. "dependencies": {
  46. "@jupyterlab/application": "^4.5.6",
  47. "@jupyterlab/apputils": "^4.6.6",
  48. "@jupyterlab/cells": "^4.5.6",
  49. "@jupyterlab/codeeditor": "^4.5.6",
  50. "@jupyterlab/completer": "^4.5.6",
  51. "@jupyterlab/console": "^4.5.6",
  52. "@jupyterlab/coreutils": "^6.5.6",
  53. "@jupyterlab/debugger": "^4.5.6",
  54. "@jupyterlab/docregistry": "^4.5.6",
  55. "@jupyterlab/fileeditor": "^4.5.6",
  56. "@jupyterlab/nbformat": "^4.5.6",
  57. "@jupyterlab/notebook": "^4.5.6",
  58. "@jupyterlab/rendermime": "^4.5.6",
  59. "@jupyterlab/services": "^7.5.6",
  60. "@jupyterlab/settingregistry": "^4.5.6",
  61. "@jupyterlab/translation": "^4.5.6",
  62. "@lumino/commands": "^2.3.3"
  63. },
  64. "devDependencies": {
  65. "@jupyterlab/testing": "^4.5.6",
  66. "@types/jest": "^29.2.0",
  67. "@types/react-dom": "^18.0.9",
  68. "rimraf": "~5.0.5",
  69. "typescript": "~5.5.4"
  70. },
  71. "publishConfig": {
  72. "access": "public"
  73. },
  74. "jupyterlab": {
  75. "extension": true,
  76. "schemaDir": "schema"
  77. },
  78. "styleModule": "style/index.js"
  79. }