package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/vdom",
  3. "version": "2.1.0",
  4. "description": "A viewer for VDOM documents.",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js",
  18. "style/*"
  19. ],
  20. "sideEffects": [
  21. "style/**/*"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "style": "style/index.css",
  26. "directories": {
  27. "lib": "lib/"
  28. },
  29. "scripts": {
  30. "build": "tsc -b",
  31. "clean": "rimraf lib",
  32. "docs": "typedoc src",
  33. "prepublishOnly": "npm run build",
  34. "watch": "tsc -b --watch"
  35. },
  36. "dependencies": {
  37. "@jupyterlab/apputils": "^2.1.0",
  38. "@jupyterlab/docregistry": "^2.1.0",
  39. "@jupyterlab/rendermime-interfaces": "^2.1.0",
  40. "@jupyterlab/services": "^5.1.0",
  41. "@lumino/coreutils": "^1.4.2",
  42. "@lumino/messaging": "^1.3.3",
  43. "@lumino/widgets": "^1.11.1",
  44. "@nteract/transform-vdom": "^4.0.3",
  45. "react": "~16.9.0",
  46. "react-dom": "~16.9.0"
  47. },
  48. "devDependencies": {
  49. "@types/react": "~16.9.16",
  50. "@types/react-dom": "~16.9.4",
  51. "rimraf": "~3.0.0",
  52. "typedoc": "^0.15.4",
  53. "typescript": "~3.7.3"
  54. },
  55. "publishConfig": {
  56. "access": "public"
  57. }
  58. }