package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@univerjs-pro/engine-pivot",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "",
  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. "./lib/*": "./lib/*"
  32. },
  33. "main": "./lib/es/index.js",
  34. "types": "./lib/types/index.d.ts",
  35. "publishConfig": {
  36. "access": "public"
  37. },
  38. "directories": {
  39. "lib": "lib"
  40. },
  41. "files": [
  42. "lib"
  43. ],
  44. "devDependencies": {
  45. "typescript": "^5.7.2",
  46. "vite": "^6.0.7",
  47. "vitest": "^2.1.8"
  48. },
  49. "scripts": {
  50. "test": "vitest run",
  51. "test:watch": "vitest",
  52. "coverage": "vitest run --coverage",
  53. "lint:types": "tsc --noEmit",
  54. "build": "univer-cli build"
  55. },
  56. "module": "./lib/es/index.js"
  57. }