package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@jupyterlab/json-extension",
  3. "version": "3.0.0-rc.15",
  4. "description": "JupyterLab - JSON Renderer",
  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": [
  16. "style/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/*.d.ts",
  26. "lib/*.js",
  27. "style/*"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "docs": "typedoc src",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -b --watch"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/apputils": "^3.0.0-rc.15",
  38. "@jupyterlab/rendermime-interfaces": "^3.0.0-rc.15",
  39. "@jupyterlab/translation": "^3.0.0-rc.15",
  40. "@jupyterlab/ui-components": "^3.0.0-rc.15",
  41. "@lumino/coreutils": "^1.5.3",
  42. "@lumino/messaging": "^1.4.3",
  43. "@lumino/widgets": "^1.16.1",
  44. "react": "^17.0.1",
  45. "react-dom": "^17.0.1",
  46. "react-highlighter": "^0.4.3",
  47. "react-json-tree": "^0.12.1"
  48. },
  49. "devDependencies": {
  50. "@types/react": "^17.0.0",
  51. "@types/react-dom": "^17.0.0",
  52. "@types/react-highlighter": "^0.3.4",
  53. "@types/react-json-tree": "^0.6.11",
  54. "rimraf": "~3.0.0",
  55. "typedoc": "~0.20.0-beta.27",
  56. "typescript": "~4.1.3"
  57. },
  58. "publishConfig": {
  59. "access": "public"
  60. },
  61. "jupyterlab": {
  62. "mimeExtension": true
  63. },
  64. "styleModule": "style/index.js"
  65. }