package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@jupyterlab/extensionmanager",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Extension Manager",
  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. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/application": "^3.4.3",
  40. "@jupyterlab/apputils": "^3.4.3",
  41. "@jupyterlab/coreutils": "^5.4.3",
  42. "@jupyterlab/services": "^6.4.3",
  43. "@jupyterlab/settingregistry": "^3.4.3",
  44. "@jupyterlab/translation": "^3.4.3",
  45. "@jupyterlab/ui-components": "^3.4.3",
  46. "@lumino/messaging": "^1.10.0",
  47. "@lumino/polling": "^1.9.0",
  48. "@lumino/signaling": "^1.10.0",
  49. "react": "^17.0.1",
  50. "react-paginate": "^6.3.2",
  51. "semver": "^7.3.2"
  52. },
  53. "devDependencies": {
  54. "@types/react-paginate": "^6.2.1",
  55. "@types/semver": "^7.3.3",
  56. "rimraf": "~3.0.0",
  57. "typedoc": "~0.21.2",
  58. "typescript": "~4.1.3"
  59. },
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "styleModule": "style/index.js"
  64. }