package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "@jupyterlab/metapackage",
  3. "version": "0.19.1",
  4. "description": "JupyterLab - Meta Package. All of the packages used by the core JupyterLab application",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js"
  15. ],
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/jupyterlab/jupyterlab.git"
  24. },
  25. "scripts": {
  26. "build": "tsc -b",
  27. "clean": "rimraf lib",
  28. "docs": "node build-doc-index.js",
  29. "prepublishOnly": "npm run build",
  30. "watch": "tsc -b --watch"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/application": "^0.19.1",
  34. "@jupyterlab/application-extension": "^0.19.1",
  35. "@jupyterlab/apputils": "^0.19.1",
  36. "@jupyterlab/apputils-extension": "^0.19.1",
  37. "@jupyterlab/attachments": "^0.19.1",
  38. "@jupyterlab/cells": "^0.19.1",
  39. "@jupyterlab/codeeditor": "^0.19.1",
  40. "@jupyterlab/codemirror": "^0.19.1",
  41. "@jupyterlab/codemirror-extension": "^0.19.1",
  42. "@jupyterlab/completer": "^0.19.1",
  43. "@jupyterlab/completer-extension": "^0.19.1",
  44. "@jupyterlab/console": "^0.19.1",
  45. "@jupyterlab/console-extension": "^0.19.1",
  46. "@jupyterlab/coreutils": "^2.2.1",
  47. "@jupyterlab/csvviewer": "^0.19.1",
  48. "@jupyterlab/csvviewer-extension": "^0.19.1",
  49. "@jupyterlab/docmanager": "^0.19.1",
  50. "@jupyterlab/docmanager-extension": "^0.19.1",
  51. "@jupyterlab/docregistry": "^0.19.1",
  52. "@jupyterlab/extensionmanager": "^0.19.1",
  53. "@jupyterlab/extensionmanager-extension": "^0.19.1",
  54. "@jupyterlab/faq-extension": "^0.19.1",
  55. "@jupyterlab/filebrowser": "^0.19.3",
  56. "@jupyterlab/filebrowser-extension": "^0.19.2",
  57. "@jupyterlab/fileeditor": "^0.19.1",
  58. "@jupyterlab/fileeditor-extension": "^0.19.1",
  59. "@jupyterlab/help-extension": "^0.19.1",
  60. "@jupyterlab/imageviewer": "^0.19.1",
  61. "@jupyterlab/imageviewer-extension": "^0.19.1",
  62. "@jupyterlab/inspector": "^0.19.1",
  63. "@jupyterlab/inspector-extension": "^0.19.1",
  64. "@jupyterlab/javascript-extension": "^0.19.1",
  65. "@jupyterlab/json-extension": "^0.18.1",
  66. "@jupyterlab/launcher": "^0.19.1",
  67. "@jupyterlab/launcher-extension": "^0.19.1",
  68. "@jupyterlab/mainmenu": "^0.8.1",
  69. "@jupyterlab/mainmenu-extension": "^0.8.1",
  70. "@jupyterlab/markdownviewer-extension": "^0.19.1",
  71. "@jupyterlab/mathjax2": "^0.7.1",
  72. "@jupyterlab/mathjax2-extension": "^0.7.1",
  73. "@jupyterlab/notebook": "^0.19.2",
  74. "@jupyterlab/notebook-extension": "^0.19.1",
  75. "@jupyterlab/observables": "^2.1.1",
  76. "@jupyterlab/outputarea": "^0.19.1",
  77. "@jupyterlab/pdf-extension": "^0.10.1",
  78. "@jupyterlab/rendermime": "^0.19.1",
  79. "@jupyterlab/rendermime-extension": "^0.13.1",
  80. "@jupyterlab/rendermime-interfaces": "^1.2.1",
  81. "@jupyterlab/running": "^0.19.1",
  82. "@jupyterlab/running-extension": "^0.19.1",
  83. "@jupyterlab/services": "^3.2.1",
  84. "@jupyterlab/settingeditor": "^0.8.1",
  85. "@jupyterlab/settingeditor-extension": "^0.14.1",
  86. "@jupyterlab/shortcuts-extension": "^0.19.6",
  87. "@jupyterlab/tabmanager-extension": "^0.19.1",
  88. "@jupyterlab/terminal": "^0.19.1",
  89. "@jupyterlab/terminal-extension": "^0.19.1",
  90. "@jupyterlab/theme-dark-extension": "^0.19.1",
  91. "@jupyterlab/theme-light-extension": "^0.19.1",
  92. "@jupyterlab/tooltip": "^0.19.1",
  93. "@jupyterlab/tooltip-extension": "^0.19.1",
  94. "@jupyterlab/vdom-extension": "^0.18.1",
  95. "@jupyterlab/vega4-extension": "^0.18.1"
  96. },
  97. "devDependencies": {
  98. "fs-extra": "~4.0.2",
  99. "rimraf": "~2.6.2",
  100. "typedoc": "~0.12.0",
  101. "typescript": "~3.1.1"
  102. },
  103. "publishConfig": {
  104. "access": "public"
  105. }
  106. }