package.json.orig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@jupyterlab/extensionmanager-extension",
  3. "version": "4.5.6",
  4. "description": "JupyterLab - Extension Manager 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. "listing/*.json",
  31. "style/*.css",
  32. "style/index.js",
  33. "src/**/*.{ts,tsx}"
  34. ],
  35. "scripts": {
  36. "build": "tsc -b",
  37. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  38. "watch": "tsc -b --watch"
  39. },
  40. "dependencies": {
  41. "@jupyterlab/application": "^4.5.6",
  42. "@jupyterlab/apputils": "^4.6.6",
  43. "@jupyterlab/extensionmanager": "^4.5.6",
  44. "@jupyterlab/settingregistry": "^4.5.6",
  45. "@jupyterlab/translation": "^4.5.6",
  46. "@jupyterlab/ui-components": "^4.5.6"
  47. },
  48. "devDependencies": {
  49. "rimraf": "~5.0.5",
  50. "typescript": "~5.5.4"
  51. },
  52. "publishConfig": {
  53. "access": "public"
  54. },
  55. "jupyterlab": {
  56. "extension": true,
  57. "schemaDir": "schema"
  58. },
  59. "styleModule": "style/index.js"
  60. }