package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "@univerjs/sheets-formula-ui",
  3. "version": "0.5.5",
  4. "private": false,
  5. "author": "DreamNum <developer@univer.ai>",
  6. "license": "Apache-2.0",
  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. "univer"
  21. ],
  22. "sideEffects": [
  23. "**/*.css"
  24. ],
  25. "exports": {
  26. ".": {
  27. "import": "./lib/es/index.js",
  28. "require": "./lib/cjs/index.js",
  29. "types": "./lib/types/index.d.ts"
  30. },
  31. "./*": {
  32. "import": "./lib/es/*",
  33. "require": "./lib/cjs/*",
  34. "types": "./lib/types/index.d.ts"
  35. },
  36. "./locale/*": {
  37. "import": "./lib/es/locale/*.js",
  38. "require": "./lib/cjs/locale/*.js",
  39. "types": "./lib/types/locale/*.d.ts"
  40. },
  41. "./lib/*": "./lib/*"
  42. },
  43. "main": "./lib/es/index.js",
  44. "types": "./lib/types/index.d.ts",
  45. "publishConfig": {
  46. "access": "public"
  47. },
  48. "directories": {
  49. "lib": "lib"
  50. },
  51. "files": [
  52. "lib"
  53. ],
  54. "peerDependencies": {
  55. "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
  56. "rxjs": ">=7.0.0"
  57. },
  58. "dependencies": {
  59. "@univerjs/icons": "^0.2.12",
  60. "clsx": "^2.1.1",
  61. "@univerjs/core": "0.5.5",
  62. "@univerjs/design": "0.5.5",
  63. "@univerjs/docs": "0.5.5",
  64. "@univerjs/docs-ui": "0.5.5",
  65. "@univerjs/engine-formula": "0.5.5",
  66. "@univerjs/sheets": "0.5.5",
  67. "@univerjs/sheets-formula": "0.5.5",
  68. "@univerjs/ui": "0.5.5",
  69. "@univerjs/engine-render": "0.5.5",
  70. "@univerjs/sheets-ui": "0.5.5"
  71. },
  72. "devDependencies": {
  73. "less": "^4.2.1",
  74. "postcss": "^8.4.49",
  75. "react": "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. "sync:cnpm": "cnpm sync"
  90. },
  91. "module": "./lib/es/index.js"
  92. }