package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/terminal-extension",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Terminal Emulator Extension",
  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. "schema/*.json",
  30. "style/**/*.css",
  31. "style/index.js"
  32. ],
  33. "scripts": {
  34. "build": "tsc -b",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "docs": "typedoc src",
  37. "watch": "tsc -b --watch"
  38. },
  39. "dependencies": {
  40. "@jupyterlab/application": "^3.4.3",
  41. "@jupyterlab/apputils": "^3.4.3",
  42. "@jupyterlab/launcher": "^3.4.3",
  43. "@jupyterlab/mainmenu": "^3.4.3",
  44. "@jupyterlab/running": "^3.4.3",
  45. "@jupyterlab/services": "^6.4.3",
  46. "@jupyterlab/settingregistry": "^3.4.3",
  47. "@jupyterlab/terminal": "^3.4.3",
  48. "@jupyterlab/translation": "^3.4.3",
  49. "@jupyterlab/ui-components": "^3.4.3",
  50. "@lumino/algorithm": "^1.9.0",
  51. "@lumino/widgets": "^1.30.0"
  52. },
  53. "devDependencies": {
  54. "@types/webpack-env": "^1.14.1",
  55. "rimraf": "~3.0.0",
  56. "typedoc": "~0.21.2",
  57. "typescript": "~4.1.3"
  58. },
  59. "publishConfig": {
  60. "access": "public"
  61. },
  62. "jupyterlab": {
  63. "extension": true,
  64. "schemaDir": "schema"
  65. },
  66. "styleModule": "style/index.js"
  67. }