123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "manifest": {
- "name": "@jupyterlab/json-extension",
- "version": "3.2.8",
- "description": "JupyterLab - JSON Renderer",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": {
- "name": "Project Jupyter"
- },
- "sideEffects": [
- "style/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "files": [
- "lib/*.{d.ts,js,js.map}",
- "style/*"
- ],
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^3.2.8",
- "@jupyterlab/rendermime-interfaces": "^3.2.8",
- "@jupyterlab/translation": "^3.2.8",
- "@jupyterlab/ui-components": "^3.2.8",
- "@lumino/coreutils": "^1.5.3",
- "@lumino/messaging": "^1.4.3",
- "@lumino/widgets": "^1.19.0",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-highlighter": "^0.4.3",
- "react-json-tree": "^0.15.0"
- },
- "devDependencies": {
- "@types/react": "^17.0.0",
- "@types/react-dom": "^17.0.0",
- "@types/react-highlighter": "^0.3.4",
- "@types/react-json-tree": "^0.6.11",
- "rimraf": "~3.0.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "mimeExtension": true
- },
- "styleModule": "style/index.js",
- "_registry": "npm",
- "_loc": "/home/jovyan/.cache/yarn/v6/npm-@jupyterlab-json-extension-3.2.8-91df7fea4afa1a9edd5e2e39253fec75197c08c8-integrity/node_modules/@jupyterlab/json-extension/package.json",
- "readmeFilename": "README.md",
- "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"
- },
- "artifacts": [],
- "remote": {
- "resolved": "https://registry.yarnpkg.com/@jupyterlab%2fjson-extension/-/json-extension-3.2.8.tgz#91df7fea4afa1a9edd5e2e39253fec75197c08c8",
- "type": "tarball",
- "reference": "https://registry.yarnpkg.com/@jupyterlab%2fjson-extension/-/json-extension-3.2.8.tgz",
- "hash": "91df7fea4afa1a9edd5e2e39253fec75197c08c8",
- "integrity": "sha512-TxoLEKwO64NTJ50zY3J/CBCX/CnDWcaJ5vLiQELDofrRRr5ouidqSqczcGHSCSkwYUMkVRwRGGYwUBnRLaEkJg==",
- "registry": "npm",
- "packageName": "@jupyterlab/json-extension",
- "cacheIntegrity": "sha512-TxoLEKwO64NTJ50zY3J/CBCX/CnDWcaJ5vLiQELDofrRRr5ouidqSqczcGHSCSkwYUMkVRwRGGYwUBnRLaEkJg== sha1-kd9/6kr6Gp7dXi45JT/sdRl8CMg="
- },
- "registry": "npm",
- "hash": "91df7fea4afa1a9edd5e2e39253fec75197c08c8"
- }
|