package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/json-extension",
  3. "version": "0.18.1",
  4. "description": "JupyterLab - JSON Renderer",
  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",
  14. "style/*"
  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": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  29. "prepublishOnly": "npm run build",
  30. "watch": "tsc -b --watch"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/rendermime-interfaces": "^1.2.1",
  34. "@jupyterlab/ui-components": "^0.0.1",
  35. "@phosphor/coreutils": "^1.3.0",
  36. "@phosphor/messaging": "^1.2.2",
  37. "@phosphor/widgets": "^1.6.0",
  38. "react": "~16.4.2",
  39. "react-dom": "~16.4.2",
  40. "react-highlighter": "^0.4.0",
  41. "react-json-tree": "^0.11.0"
  42. },
  43. "devDependencies": {
  44. "@types/react": "~16.4.13",
  45. "@types/react-dom": "~16.0.7",
  46. "@types/react-highlighter": "^0.3.1",
  47. "@types/react-json-tree": "^0.6.3",
  48. "rimraf": "~2.6.2",
  49. "typedoc": "~0.12.0",
  50. "typescript": "~3.1.1"
  51. },
  52. "publishConfig": {
  53. "access": "public"
  54. },
  55. "jupyterlab": {
  56. "mimeExtension": true
  57. }
  58. }