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.

.yarn-metadata.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "manifest": {
  3. "name": "@jupyterlab/json-extension",
  4. "version": "3.2.8",
  5. "description": "JupyterLab - JSON Renderer",
  6. "homepage": "https://github.com/jupyterlab/jupyterlab",
  7. "bugs": {
  8. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/jupyterlab/jupyterlab.git"
  13. },
  14. "license": "BSD-3-Clause",
  15. "author": {
  16. "name": "Project Jupyter"
  17. },
  18. "sideEffects": [
  19. "style/*"
  20. ],
  21. "main": "lib/index.js",
  22. "types": "lib/index.d.ts",
  23. "style": "style/index.css",
  24. "files": [
  25. "lib/*.{d.ts,js,js.map}",
  26. "style/*"
  27. ],
  28. "scripts": {
  29. "build": "tsc -b",
  30. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  31. "docs": "typedoc src",
  32. "watch": "tsc -b --watch"
  33. },
  34. "dependencies": {
  35. "@jupyterlab/apputils": "^3.2.8",
  36. "@jupyterlab/rendermime-interfaces": "^3.2.8",
  37. "@jupyterlab/translation": "^3.2.8",
  38. "@jupyterlab/ui-components": "^3.2.8",
  39. "@lumino/coreutils": "^1.5.3",
  40. "@lumino/messaging": "^1.4.3",
  41. "@lumino/widgets": "^1.19.0",
  42. "react": "^17.0.1",
  43. "react-dom": "^17.0.1",
  44. "react-highlighter": "^0.4.3",
  45. "react-json-tree": "^0.15.0"
  46. },
  47. "devDependencies": {
  48. "@types/react": "^17.0.0",
  49. "@types/react-dom": "^17.0.0",
  50. "@types/react-highlighter": "^0.3.4",
  51. "@types/react-json-tree": "^0.6.11",
  52. "rimraf": "~3.0.0",
  53. "typedoc": "~0.21.2",
  54. "typescript": "~4.1.3"
  55. },
  56. "publishConfig": {
  57. "access": "public"
  58. },
  59. "jupyterlab": {
  60. "mimeExtension": true
  61. },
  62. "styleModule": "style/index.js",
  63. "_registry": "npm",
  64. "_loc": "/home/jovyan/.cache/yarn/v6/npm-@jupyterlab-json-extension-3.2.8-91df7fea4afa1a9edd5e2e39253fec75197c08c8-integrity/node_modules/@jupyterlab/json-extension/package.json",
  65. "readmeFilename": "README.md",
  66. "readme": "# json-extension\n\nA JupyterLab extension for rendering JSON as a tree\n\n![demo](http://g.recordit.co/mqve0QPqyM.gif)\n\n## Prerequisites\n\n- JupyterLab ^0.27.0\n\n## Usage\n\nTo render [JSON-able dict or list](https://ipython.org/ipython-doc/3/api/generated/IPython.display.html#IPython.display.JSON) in IPython:\n\n```python\nfrom IPython.display import JSON\n\nJSON({\n \"string\": \"string\",\n \"array\": [1, 2, 3],\n \"bool\": True,\n \"object\": {\n \"foo\": \"bar\"\n }\n})\n```\n\nTo render a fully expanded tree:\n\n```python\nJSON({\n \"string\": \"string\",\n \"array\": [1, 2, 3],\n \"bool\": True,\n \"object\": {\n \"foo\": \"bar\"\n }\n}, expanded=True)\n```\n\nTo render a `.json` file, simply open it:\n\n## Development\n\nSee the [JupyterLab Contributor Documentation](https://github.com/jupyterlab/jupyterlab/blob/3.2.x/CONTRIBUTING.md).\n"
  67. },
  68. "artifacts": [],
  69. "remote": {
  70. "resolved": "https://registry.yarnpkg.com/@jupyterlab%2fjson-extension/-/json-extension-3.2.8.tgz#91df7fea4afa1a9edd5e2e39253fec75197c08c8",
  71. "type": "tarball",
  72. "reference": "https://registry.yarnpkg.com/@jupyterlab%2fjson-extension/-/json-extension-3.2.8.tgz",
  73. "hash": "91df7fea4afa1a9edd5e2e39253fec75197c08c8",
  74. "integrity": "sha512-TxoLEKwO64NTJ50zY3J/CBCX/CnDWcaJ5vLiQELDofrRRr5ouidqSqczcGHSCSkwYUMkVRwRGGYwUBnRLaEkJg==",
  75. "registry": "npm",
  76. "packageName": "@jupyterlab/json-extension",
  77. "cacheIntegrity": "sha512-TxoLEKwO64NTJ50zY3J/CBCX/CnDWcaJ5vLiQELDofrRRr5ouidqSqczcGHSCSkwYUMkVRwRGGYwUBnRLaEkJg== sha1-kd9/6kr6Gp7dXi45JT/sdRl8CMg="
  78. },
  79. "registry": "npm",
  80. "hash": "91df7fea4afa1a9edd5e2e39253fec75197c08c8"
  81. }