package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "@univerjs-pro/sheets-pivot",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "Univer Sheets Pivot Table",
  6. "author": "DreamNum <developer@univer.ai>",
  7. "funding": {
  8. "type": "opencollective",
  9. "url": "https://opencollective.com/univer"
  10. },
  11. "homepage": "https://univer.ai",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/dream-num/univer"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/dream-num/univer/issues"
  18. },
  19. "keywords": [
  20. "univer",
  21. "pivot",
  22. "table",
  23. "pivot table"
  24. ],
  25. "exports": {
  26. ".": {
  27. "import": "./lib/es/index.js",
  28. "require": "./lib/cjs/index.js",
  29. "types": "./lib/types/index.d.ts"
  30. },
  31. "./*": {
  32. "import": "./lib/es/*",
  33. "require": "./lib/cjs/*",
  34. "types": "./lib/types/index.d.ts"
  35. },
  36. "./locale/*": {
  37. "import": "./lib/es/locale/*.js",
  38. "require": "./lib/cjs/locale/*.js",
  39. "types": "./lib/types/locale/*.d.ts"
  40. },
  41. "./facade": {
  42. "import": "./lib/es/facade.js",
  43. "require": "./lib/cjs/facade.js",
  44. "types": "./lib/types/facade/index.d.ts"
  45. },
  46. "./lib/*": "./lib/*"
  47. },
  48. "main": "./lib/es/index.js",
  49. "types": "./lib/types/index.d.ts",
  50. "publishConfig": {
  51. "access": "public"
  52. },
  53. "directories": {
  54. "lib": "lib"
  55. },
  56. "files": [
  57. "lib"
  58. ],
  59. "peerDependencies": {
  60. "rxjs": ">=7.0.0"
  61. },
  62. "dependencies": {
  63. "@univerjs-pro/engine-pivot": "0.5.5",
  64. "@univerjs/engine-formula": "0.5.5",
  65. "@univerjs/core": "0.5.5",
  66. "@univerjs-pro/license": "0.5.5",
  67. "@univerjs/rpc": "0.5.5",
  68. "@univerjs/engine-render": "0.5.5",
  69. "@univerjs/sheets": "0.5.5",
  70. "@univerjs/sheets-filter": "0.5.5"
  71. },
  72. "devDependencies": {
  73. "rxjs": "^7.8.1",
  74. "typescript": "^5.7.2",
  75. "vite": "^6.0.7",
  76. "vitest": "^2.1.8",
  77. "@univerjs-infra/shared": "0.5.5"
  78. },
  79. "scripts": {
  80. "test": "vitest run",
  81. "test:watch": "vitest",
  82. "coverage": "vitest run --coverage",
  83. "lint:types": "tsc --noEmit",
  84. "build": "univer-cli build"
  85. },
  86. "module": "./lib/es/index.js"
  87. }