package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@jupyterlab/docmanager",
  3. "version": "2.0.2",
  4. "description": "JupyterLab - Document Manager",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "style/**/*.css"
  20. ],
  21. "sideEffects": [
  22. "style/**/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc -b",
  32. "clean": "rimraf lib",
  33. "docs": "typedoc src",
  34. "prepublishOnly": "npm run build",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/apputils": "^2.0.2",
  39. "@jupyterlab/coreutils": "^4.0.2",
  40. "@jupyterlab/docregistry": "^2.0.2",
  41. "@jupyterlab/services": "^5.0.2",
  42. "@jupyterlab/statusbar": "^2.0.2",
  43. "@lumino/algorithm": "^1.2.3",
  44. "@lumino/coreutils": "^1.4.2",
  45. "@lumino/disposable": "^1.3.5",
  46. "@lumino/messaging": "^1.3.3",
  47. "@lumino/properties": "^1.1.6",
  48. "@lumino/signaling": "^1.3.5",
  49. "@lumino/widgets": "^1.11.1",
  50. "react": "~16.9.0"
  51. },
  52. "devDependencies": {
  53. "rimraf": "~3.0.0",
  54. "typedoc": "^0.15.4",
  55. "typescript": "~3.7.3"
  56. },
  57. "publishConfig": {
  58. "access": "public"
  59. }
  60. }