package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@univerjs-pro/sheets-pivot-ui",
  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. "exports": {
  21. ".": {
  22. "import": "./lib/es/index.js",
  23. "require": "./lib/cjs/index.js",
  24. "types": "./lib/types/index.d.ts"
  25. },
  26. "./*": {
  27. "import": "./lib/es/*",
  28. "require": "./lib/cjs/*",
  29. "types": "./lib/types/index.d.ts"
  30. },
  31. "./locale/*": {
  32. "import": "./lib/es/locale/*.js",
  33. "require": "./lib/cjs/locale/*.js",
  34. "types": "./lib/types/locale/*.d.ts"
  35. },
  36. "./lib/*": "./lib/*"
  37. },
  38. "main": "./lib/es/index.js",
  39. "types": "./lib/types/index.d.ts",
  40. "publishConfig": {
  41. "access": "public"
  42. },
  43. "directories": {
  44. "lib": "lib"
  45. },
  46. "files": [
  47. "lib"
  48. ],
  49. "peerDependencies": {
  50. "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
  51. "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0",
  52. "rxjs": ">=7.0.0"
  53. },
  54. "dependencies": {
  55. "@univerjs/icons": "^0.2.12",
  56. "clsx": "^2.1.1",
  57. "react-beautiful-dnd": "^13.1.1",
  58. "@univerjs-pro/engine-pivot": "0.5.5",
  59. "@univerjs/core": "0.5.5",
  60. "@univerjs/design": "0.5.5",
  61. "@univerjs-pro/sheets-pivot": "0.5.5",
  62. "@univerjs/docs-ui": "0.5.5",
  63. "@univerjs/engine-render": "0.5.5",
  64. "@univerjs/engine-formula": "0.5.5",
  65. "@univerjs/sheets": "0.5.5",
  66. "@univerjs/sheets-formula-ui": "0.5.5",
  67. "@univerjs/sheets-ui": "0.5.5",
  68. "@univerjs/ui": "0.5.5"
  69. },
  70. "devDependencies": {
  71. "@types/react-beautiful-dnd": "^13.1.8",
  72. "less": "^4.2.1",
  73. "postcss": "^8.4.49",
  74. "react": "^18.3.1",
  75. "react-dom": "^18.3.1",
  76. "rxjs": "^7.8.1",
  77. "tailwindcss": "^3.4.17",
  78. "typescript": "^5.7.2",
  79. "vite": "^6.0.7",
  80. "vitest": "^2.1.8",
  81. "@univerjs-infra/shared": "0.5.5"
  82. },
  83. "scripts": {
  84. "test": "vitest run",
  85. "test:watch": "vitest",
  86. "coverage": "vitest run --coverage",
  87. "lint:types": "tsc --noEmit",
  88. "build": "univer-cli build"
  89. },
  90. "module": "./lib/es/index.js"
  91. }