package.json 1.9 KB

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