package.json.orig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@jupyterlab/apputils-extension",
  3. "version": "4.5.6",
  4. "description": "JupyterLab - Application Utilities 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/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/*.d.ts",
  26. "lib/*.js.map",
  27. "lib/*.js",
  28. "style/*.css",
  29. "style/images/*.svg",
  30. "schema/*.json",
  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/docregistry": "^4.5.6",
  44. "@jupyterlab/mainmenu": "^4.5.6",
  45. "@jupyterlab/rendermime-interfaces": "^3.13.6",
  46. "@jupyterlab/services": "^7.5.6",
  47. "@jupyterlab/settingregistry": "^4.5.6",
  48. "@jupyterlab/statedb": "^4.5.6",
  49. "@jupyterlab/statusbar": "^4.5.6",
  50. "@jupyterlab/translation": "^4.5.6",
  51. "@jupyterlab/ui-components": "^4.5.6",
  52. "@jupyterlab/workspaces": "^4.5.6",
  53. "@lumino/algorithm": "^2.0.4",
  54. "@lumino/commands": "^2.3.3",
  55. "@lumino/coreutils": "^2.2.2",
  56. "@lumino/disposable": "^2.1.5",
  57. "@lumino/domutils": "^2.0.4",
  58. "@lumino/polling": "^2.1.5",
  59. "@lumino/widgets": "^2.7.5",
  60. "react": "^18.2.0",
  61. "react-dom": "^18.2.0",
  62. "react-toastify": "^9.0.8"
  63. },
  64. "devDependencies": {
  65. "rimraf": "~5.0.5",
  66. "typescript": "~5.5.4"
  67. },
  68. "publishConfig": {
  69. "access": "public"
  70. },
  71. "jupyterlab": {
  72. "extension": true,
  73. "schemaDir": "schema"
  74. },
  75. "styleModule": "style/index.js"
  76. }