package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@univerjs/sheets-hyper-link",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "",
  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. "./facade": {
  33. "import": "./lib/es/facade.js",
  34. "require": "./lib/cjs/facade.js",
  35. "types": "./lib/types/facade/index.d.ts"
  36. },
  37. "./lib/*": "./lib/*"
  38. },
  39. "main": "./lib/es/index.js",
  40. "types": "./lib/types/index.d.ts",
  41. "publishConfig": {
  42. "access": "public"
  43. },
  44. "directories": {
  45. "lib": "lib"
  46. },
  47. "files": [
  48. "lib"
  49. ],
  50. "peerDependencies": {
  51. "rxjs": ">=7.0.0"
  52. },
  53. "dependencies": {
  54. "@univerjs/protocol": "0.1.40",
  55. "@univerjs/core": "0.5.5",
  56. "@univerjs/docs": "0.5.5",
  57. "@univerjs/engine-formula": "0.5.5",
  58. "@univerjs/sheets": "0.5.5"
  59. },
  60. "devDependencies": {
  61. "rxjs": "^7.8.1",
  62. "typescript": "^5.7.2",
  63. "vite": "^6.0.7",
  64. "vitest": "^2.1.8",
  65. "@univerjs-infra/shared": "0.5.5"
  66. },
  67. "scripts": {
  68. "test": "vitest run",
  69. "test:watch": "vitest",
  70. "coverage": "vitest run --coverage",
  71. "lint:types": "tsc --noEmit",
  72. "build": "univer-cli build"
  73. },
  74. "module": "./lib/es/index.js"
  75. }