package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@univerjs/docs",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "UniverSheet normal base-docs",
  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. "@univerjs/engine-render": "0.5.5",
  52. "@univerjs/core": "0.5.5"
  53. },
  54. "devDependencies": {
  55. "rxjs": "^7.8.1",
  56. "typescript": "^5.7.2",
  57. "vite": "^6.0.7",
  58. "vitest": "^2.1.8",
  59. "@univerjs-infra/shared": "0.5.5"
  60. },
  61. "scripts": {
  62. "test": "vitest run",
  63. "test:watch": "vitest",
  64. "coverage": "vitest run --coverage",
  65. "lint:types": "tsc --noEmit",
  66. "build": "univer-cli build"
  67. },
  68. "module": "./lib/es/index.js"
  69. }