package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "@univerjs/sheets-data-validation-ui",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "Data validation UI 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. "./locale/*": {
  35. "import": "./lib/es/locale/*.js",
  36. "require": "./lib/cjs/locale/*.js",
  37. "types": "./lib/types/locale/*.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. "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
  54. "rxjs": ">=7.0.0"
  55. },
  56. "dependencies": {
  57. "@flatten-js/interval-tree": "^1.1.3",
  58. "@univerjs/icons": "^0.2.12",
  59. "clsx": "^2.1.1",
  60. "@univerjs/core": "0.5.5",
  61. "@univerjs/design": "0.5.5",
  62. "@univerjs/docs": "0.5.5",
  63. "@univerjs/engine-render": "0.5.5",
  64. "@univerjs/data-validation": "0.5.5",
  65. "@univerjs/engine-formula": "0.5.5",
  66. "@univerjs/sheets-data-validation": "0.5.5",
  67. "@univerjs/sheets": "0.5.5",
  68. "@univerjs/sheets-formula-ui": "0.5.5",
  69. "@univerjs/sheets-ui": "0.5.5",
  70. "@univerjs/ui": "0.5.5",
  71. "@univerjs/sheets-numfmt": "0.5.5"
  72. },
  73. "devDependencies": {
  74. "less": "^4.2.1",
  75. "postcss": "^8.4.49",
  76. "react": "18.3.1",
  77. "rxjs": "^7.8.1",
  78. "tailwindcss": "^3.4.17",
  79. "typescript": "^5.7.2",
  80. "vite": "^6.0.7",
  81. "vitest": "^2.1.8",
  82. "@univerjs-infra/shared": "0.5.5"
  83. },
  84. "scripts": {
  85. "dev": "vite",
  86. "test": "vitest run",
  87. "test:watch": "vitest",
  88. "coverage": "vitest run --coverage",
  89. "build": "univer-cli build",
  90. "lint:types": "tsc --noEmit"
  91. },
  92. "module": "./lib/es/index.js"
  93. }