package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@univerjs/thread-comment",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "Univer thread comment core plugin",
  6. "author": "DreamNum <developer@univer.ai>",
  7. "license": "Apache-2.0",
  8. "funding": {
  9. "type": "opencollective",
  10. "url": "https://opencollective.com/univer"
  11. },
  12. "homepage": "https://univer.ai",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/dream-num/univer"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/dream-num/univer/issues"
  19. },
  20. "keywords": [],
  21. "exports": {
  22. ".": {
  23. "import": "./lib/es/index.js",
  24. "require": "./lib/cjs/index.js",
  25. "types": "./lib/types/index.d.ts"
  26. },
  27. "./*": {
  28. "import": "./lib/es/*",
  29. "require": "./lib/cjs/*",
  30. "types": "./lib/types/index.d.ts"
  31. },
  32. "./lib/*": "./lib/*"
  33. },
  34. "main": "./lib/es/index.js",
  35. "types": "./lib/types/index.d.ts",
  36. "publishConfig": {
  37. "access": "public"
  38. },
  39. "directories": {
  40. "lib": "lib"
  41. },
  42. "files": [
  43. "lib"
  44. ],
  45. "peerDependencies": {
  46. "rxjs": ">=7.0.0"
  47. },
  48. "dependencies": {
  49. "@univerjs/protocol": "0.1.40",
  50. "@univerjs/core": "0.5.5"
  51. },
  52. "devDependencies": {
  53. "rxjs": "^7.8.1",
  54. "typescript": "^5.7.2",
  55. "vite": "^6.0.7",
  56. "vitest": "^2.1.8",
  57. "@univerjs-infra/shared": "0.5.5"
  58. },
  59. "scripts": {
  60. "test": "vitest run",
  61. "test:watch": "vitest",
  62. "coverage": "vitest run --coverage",
  63. "lint:types": "tsc --noEmit",
  64. "build": "univer-cli build"
  65. },
  66. "module": "./lib/es/index.js"
  67. }