package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@univerjs/data-validation",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "Data validation library for Univer",
  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. "univer"
  22. ],
  23. "exports": {
  24. ".": {
  25. "import": "./lib/es/index.js",
  26. "require": "./lib/cjs/index.js",
  27. "types": "./lib/types/index.d.ts"
  28. },
  29. "./*": {
  30. "import": "./lib/es/*",
  31. "require": "./lib/cjs/*",
  32. "types": "./lib/types/index.d.ts"
  33. },
  34. "./lib/*": "./lib/*"
  35. },
  36. "main": "./lib/es/index.js",
  37. "types": "./lib/types/index.d.ts",
  38. "publishConfig": {
  39. "access": "public"
  40. },
  41. "directories": {
  42. "lib": "lib"
  43. },
  44. "files": [
  45. "lib"
  46. ],
  47. "peerDependencies": {
  48. "rxjs": ">=7.0.0"
  49. },
  50. "dependencies": {
  51. "@univerjs/core": "0.5.5"
  52. },
  53. "devDependencies": {
  54. "@univerjs/protocol": "0.1.40",
  55. "rxjs": "^7.8.1",
  56. "typescript": "^5.7.2",
  57. "vite": "^6.0.7",
  58. "vitest": "^2.1.8",
  59. "@univerjs/core": "0.5.5",
  60. "@univerjs/sheets": "0.5.5",
  61. "@univerjs-infra/shared": "0.5.5"
  62. },
  63. "scripts": {
  64. "dev": "vite",
  65. "test": "vitest run",
  66. "test:watch": "vitest",
  67. "coverage": "vitest run --coverage",
  68. "build": "univer-cli build"
  69. },
  70. "module": "./lib/es/index.js"
  71. }