package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@univerjs/engine-render",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "UniverSheet normal base-render",
  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. "./lib/*": "./lib/*"
  35. },
  36. "main": "./lib/es/index.js",
  37. "types": "./lib/types/index.d.ts",
  38. "publishConfig": {
  39. "access": "public"
  40. },
  41. "directories": {
  42. "lib": "lib"
  43. },
  44. "files": [
  45. "lib"
  46. ],
  47. "peerDependencies": {
  48. "rxjs": ">=7.0.0"
  49. },
  50. "dependencies": {
  51. "@floating-ui/dom": "^1.6.11",
  52. "@floating-ui/utils": "^0.2.8",
  53. "cjk-regex": "^3.1.0",
  54. "franc-min": "^6.2.0",
  55. "opentype.js": "^1.3.4",
  56. "@univerjs/core": "0.5.5"
  57. },
  58. "devDependencies": {
  59. "@types/opentype.js": "^1.3.8",
  60. "rxjs": "^7.8.1",
  61. "typescript": "^5.7.2",
  62. "vite": "^6.0.7",
  63. "vitest": "^2.1.8",
  64. "@univerjs-infra/shared": "0.5.5"
  65. },
  66. "browser": {
  67. "fs": false
  68. },
  69. "scripts": {
  70. "test": "vitest run",
  71. "test:watch": "vitest",
  72. "coverage": "vitest run --coverage",
  73. "lint:types": "tsc --noEmit",
  74. "build": "univer-cli build"
  75. },
  76. "module": "./lib/es/index.js"
  77. }