Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@jupyterlab/rendermime-interfaces",
  3. "version": "3.2.8",
  4. "description": "JupyterLab - Interfaces for Mime Renderers",
  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": false,
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "files": [
  22. "lib/*.d.ts",
  23. "lib/*.js.map",
  24. "lib/*.js"
  25. ],
  26. "scripts": {
  27. "build": "tsc -b",
  28. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  29. "docs": "typedoc src",
  30. "watch": "tsc -b --watch"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/translation": "^3.2.8",
  34. "@lumino/coreutils": "^1.5.3",
  35. "@lumino/widgets": "^1.19.0"
  36. },
  37. "devDependencies": {
  38. "rimraf": "~3.0.0",
  39. "typedoc": "~0.21.2",
  40. "typescript": "~4.1.3"
  41. },
  42. "publishConfig": {
  43. "access": "public"
  44. }
  45. }