package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@jupyterlab/terminal",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Terminal Emulator Widget",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "sideEffects": [
  16. "style/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/*.d.ts",
  27. "lib/*.js.map",
  28. "lib/*.js",
  29. "style/*.css",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "build:test": "tsc --build tsconfig.test.json",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "docs": "typedoc src",
  37. "test": "jest",
  38. "test:cov": "jest --collect-coverage",
  39. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  40. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  41. "watch": "tsc -b --watch"
  42. },
  43. "dependencies": {
  44. "@jupyterlab/apputils": "^3.4.3",
  45. "@jupyterlab/services": "^6.4.3",
  46. "@jupyterlab/translation": "^3.4.3",
  47. "@lumino/coreutils": "^1.11.0",
  48. "@lumino/domutils": "^1.8.0",
  49. "@lumino/messaging": "^1.10.0",
  50. "@lumino/widgets": "^1.30.0",
  51. "xterm": "~4.8.1",
  52. "xterm-addon-fit": "~0.4.0"
  53. },
  54. "devDependencies": {
  55. "@jupyterlab/testutils": "^3.4.3",
  56. "@types/jest": "^26.0.10",
  57. "canvas": "^2.6.1",
  58. "jest": "^26.4.2",
  59. "rimraf": "~3.0.0",
  60. "ts-jest": "^26.3.0",
  61. "typedoc": "~0.21.2",
  62. "typescript": "~4.1.3"
  63. },
  64. "publishConfig": {
  65. "access": "public"
  66. },
  67. "jupyterlab": {
  68. "extraStyles": {
  69. "xterm": [
  70. "css/xterm.css"
  71. ]
  72. }
  73. },
  74. "styleModule": "style/index.js"
  75. }