package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@jupyterlab/apputils-extension",
  3. "version": "3.4.3",
  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. ],
  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/coreutils": "^5.4.3",
  43. "@jupyterlab/docregistry": "^3.4.3",
  44. "@jupyterlab/filebrowser": "^3.4.3",
  45. "@jupyterlab/mainmenu": "^3.4.3",
  46. "@jupyterlab/services": "^6.4.3",
  47. "@jupyterlab/settingregistry": "^3.4.3",
  48. "@jupyterlab/statedb": "^3.4.3",
  49. "@jupyterlab/translation": "^3.4.3",
  50. "@jupyterlab/ui-components": "^3.4.3",
  51. "@lumino/algorithm": "^1.9.0",
  52. "@lumino/commands": "^1.19.0",
  53. "@lumino/coreutils": "^1.11.0",
  54. "@lumino/disposable": "^1.10.0",
  55. "@lumino/polling": "^1.9.0",
  56. "@lumino/widgets": "^1.30.0",
  57. "es6-promise": "~4.2.8"
  58. },
  59. "devDependencies": {
  60. "rimraf": "~3.0.0",
  61. "typedoc": "~0.21.2",
  62. "typescript": "~4.1.3"
  63. },
  64. "publishConfig": {
  65. "access": "public"
  66. },
  67. "jupyterlab": {
  68. "extension": true,
  69. "schemaDir": "schema"
  70. },
  71. "styleModule": "style/index.js"
  72. }