package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "@univerjs/docs-drawing-ui",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "",
  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. "exports": {
  22. ".": {
  23. "import": "./lib/es/index.js",
  24. "require": "./lib/cjs/index.js",
  25. "types": "./lib/types/index.d.ts"
  26. },
  27. "./*": {
  28. "import": "./lib/es/*",
  29. "require": "./lib/cjs/*",
  30. "types": "./lib/types/index.d.ts"
  31. },
  32. "./locale/*": {
  33. "import": "./lib/es/locale/*.js",
  34. "require": "./lib/cjs/locale/*.js",
  35. "types": "./lib/types/locale/*.d.ts"
  36. },
  37. "./lib/*": "./lib/*"
  38. },
  39. "main": "./lib/es/index.js",
  40. "types": "./lib/types/index.d.ts",
  41. "publishConfig": {
  42. "access": "public"
  43. },
  44. "directories": {
  45. "lib": "lib"
  46. },
  47. "files": [
  48. "lib"
  49. ],
  50. "peerDependencies": {
  51. "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
  52. "rxjs": ">=7.0.0"
  53. },
  54. "dependencies": {
  55. "@univerjs/icons": "^0.2.12",
  56. "clsx": "^2.1.1",
  57. "@univerjs/core": "0.5.5",
  58. "@univerjs/design": "0.5.5",
  59. "@univerjs/docs-drawing": "0.5.5",
  60. "@univerjs/docs": "0.5.5",
  61. "@univerjs/docs-ui": "0.5.5",
  62. "@univerjs/drawing": "0.5.5",
  63. "@univerjs/drawing-ui": "0.5.5",
  64. "@univerjs/engine-render": "0.5.5",
  65. "@univerjs/ui": "0.5.5"
  66. },
  67. "devDependencies": {
  68. "less": "^4.2.1",
  69. "postcss": "^8.4.49",
  70. "react": "18.3.1",
  71. "rxjs": "^7.8.1",
  72. "tailwindcss": "^3.4.17",
  73. "typescript": "^5.7.2",
  74. "vite": "^6.0.7",
  75. "vitest": "^2.1.8",
  76. "@univerjs-infra/shared": "0.5.5"
  77. },
  78. "scripts": {
  79. "test": "vitest run",
  80. "test:watch": "vitest",
  81. "coverage": "vitest run --coverage",
  82. "lint:types": "tsc --noEmit",
  83. "build": "univer-cli build"
  84. },
  85. "module": "./lib/es/index.js"
  86. }