package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "@univerjs/ui",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "UniverSheet normal plugin UI manager",
  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. "./facade": {
  40. "import": "./lib/es/facade.js",
  41. "require": "./lib/cjs/facade.js",
  42. "types": "./lib/types/facade/index.d.ts"
  43. },
  44. "./lib/*": "./lib/*"
  45. },
  46. "main": "./lib/es/index.js",
  47. "types": "./lib/types/index.d.ts",
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "directories": {
  52. "lib": "lib"
  53. },
  54. "files": [
  55. "lib"
  56. ],
  57. "peerDependencies": {
  58. "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
  59. "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0",
  60. "rxjs": ">=7.0.0"
  61. },
  62. "dependencies": {
  63. "@univerjs/icons": "^0.2.12",
  64. "clsx": "^2.1.1",
  65. "localforage": "^1.10.0",
  66. "rc-notification": "^5.6.2",
  67. "rc-util": "^5.43.0",
  68. "@univerjs/design": "0.5.5",
  69. "@univerjs/core": "0.5.5",
  70. "@univerjs/engine-render": "0.5.5"
  71. },
  72. "optionalDependencies": {
  73. "vue": ">=3.0.0"
  74. },
  75. "devDependencies": {
  76. "@testing-library/react": "^16.1.0",
  77. "less": "^4.2.1",
  78. "postcss": "^8.4.49",
  79. "react": "18.3.1",
  80. "react-dom": "18.3.1",
  81. "rxjs": "^7.8.1",
  82. "tailwindcss": "^3.4.17",
  83. "typescript": "^5.7.2",
  84. "vite": "^6.0.7",
  85. "vitest": "^2.1.8",
  86. "vue": "^3.5.12",
  87. "@univerjs-infra/shared": "0.5.5"
  88. },
  89. "scripts": {
  90. "test": "vitest run",
  91. "test:watch": "vitest",
  92. "coverage": "vitest run --coverage",
  93. "lint:types": "tsc --noEmit",
  94. "build": "univer-cli build"
  95. },
  96. "module": "./lib/es/index.js"
  97. }