package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@univerjs/engine-formula",
  3. "version": "0.5.5",
  4. "private": false,
  5. "description": "UniverSheet normal base-formula-engine",
  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. "./facade": {
  35. "import": "./lib/es/facade.js",
  36. "require": "./lib/cjs/facade.js",
  37. "types": "./lib/types/facade/index.d.ts"
  38. },
  39. "./lib/*": "./lib/*"
  40. },
  41. "main": "./lib/es/index.js",
  42. "types": "./lib/types/index.d.ts",
  43. "publishConfig": {
  44. "access": "public"
  45. },
  46. "directories": {
  47. "lib": "lib"
  48. },
  49. "files": [
  50. "lib"
  51. ],
  52. "peerDependencies": {
  53. "rxjs": ">=7.0.0"
  54. },
  55. "dependencies": {
  56. "@flatten-js/interval-tree": "^1.1.3",
  57. "decimal.js": "^10.4.3",
  58. "numfmt": "^2.5.2",
  59. "@univerjs/rpc": "0.5.5",
  60. "@univerjs/core": "0.5.5"
  61. },
  62. "devDependencies": {
  63. "rxjs": "^7.8.1",
  64. "typescript": "^5.7.2",
  65. "vite": "^6.0.7",
  66. "vitest": "^2.1.8",
  67. "@univerjs-infra/shared": "0.5.5"
  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. }