package.json.orig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@jupyterlab/application-extension",
  3. "version": "4.5.6",
  4. "description": "JupyterLab - Application 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. "src/**/*.{ts,tsx}"
  33. ],
  34. "scripts": {
  35. "build": "tsc -b",
  36. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  37. "watch": "tsc -b --watch"
  38. },
  39. "dependencies": {
  40. "@jupyterlab/application": "^4.5.6",
  41. "@jupyterlab/apputils": "^4.6.6",
  42. "@jupyterlab/coreutils": "^6.5.6",
  43. "@jupyterlab/property-inspector": "^4.5.6",
  44. "@jupyterlab/settingregistry": "^4.5.6",
  45. "@jupyterlab/statedb": "^4.5.6",
  46. "@jupyterlab/statusbar": "^4.5.6",
  47. "@jupyterlab/translation": "^4.5.6",
  48. "@jupyterlab/ui-components": "^4.5.6",
  49. "@lumino/algorithm": "^2.0.4",
  50. "@lumino/commands": "^2.3.3",
  51. "@lumino/coreutils": "^2.2.2",
  52. "@lumino/disposable": "^2.1.5",
  53. "@lumino/widgets": "^2.7.5",
  54. "react": "^18.2.0"
  55. },
  56. "devDependencies": {
  57. "rimraf": "~5.0.5",
  58. "typescript": "~5.5.4"
  59. },
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "jupyterlab": {
  64. "extension": true,
  65. "schemaDir": "schema"
  66. },
  67. "styleModule": "style/index.js"
  68. }