package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "@jupyterlab/apputils",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Application Utilities",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/jupyterlab/jupyterlab",
  11. "bugs": {
  12. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jupyterlab/jupyterlab.git"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "sideEffects": [
  21. "style/*.css",
  22. "style/index.js"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "files": [
  31. "lib/**/*.{d.ts,js,js.map}",
  32. "style/*.css",
  33. "style/index.js"
  34. ],
  35. "scripts": {
  36. "build": "tsc -b",
  37. "build:test": "tsc --build tsconfig.test.json",
  38. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  39. "docs": "typedoc src",
  40. "test": "jest",
  41. "test:cov": "jest --collect-coverage",
  42. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  43. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  44. "watch": "tsc -b --watch"
  45. },
  46. "dependencies": {
  47. "@jupyterlab/coreutils": "^5.4.3",
  48. "@jupyterlab/observables": "^4.4.3",
  49. "@jupyterlab/services": "^6.4.3",
  50. "@jupyterlab/settingregistry": "^3.4.3",
  51. "@jupyterlab/statedb": "^3.4.3",
  52. "@jupyterlab/translation": "^3.4.3",
  53. "@jupyterlab/ui-components": "^3.4.3",
  54. "@lumino/algorithm": "^1.9.0",
  55. "@lumino/commands": "^1.19.0",
  56. "@lumino/coreutils": "^1.11.0",
  57. "@lumino/disposable": "^1.10.0",
  58. "@lumino/domutils": "^1.8.0",
  59. "@lumino/messaging": "^1.10.0",
  60. "@lumino/polling": "^1.9.0",
  61. "@lumino/properties": "^1.8.0",
  62. "@lumino/signaling": "^1.10.0",
  63. "@lumino/virtualdom": "^1.14.0",
  64. "@lumino/widgets": "^1.30.0",
  65. "@types/react": "^17.0.0",
  66. "react": "^17.0.1",
  67. "react-dom": "^17.0.1",
  68. "sanitize-html": "~2.5.3",
  69. "url": "^0.11.0"
  70. },
  71. "devDependencies": {
  72. "@jupyterlab/testutils": "^3.4.3",
  73. "@types/jest": "^26.0.10",
  74. "@types/react-dom": "^17.0.0",
  75. "@types/sanitize-html": "^2.3.1",
  76. "jest": "^26.4.2",
  77. "rimraf": "~3.0.0",
  78. "ts-jest": "^26.3.0",
  79. "typedoc": "~0.21.2",
  80. "typescript": "~4.1.3"
  81. },
  82. "publishConfig": {
  83. "access": "public"
  84. },
  85. "styleModule": "style/index.js"
  86. }