@coze-arch/cli 0.0.1-alpha.3002ee → 0.0.1-alpha.3260db

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (554) hide show
  1. package/lib/__templates__/expo/.coze +7 -2
  2. package/lib/__templates__/expo/.cozeproj/scripts/dev_build.sh +46 -0
  3. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +229 -0
  4. package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +47 -0
  5. package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +34 -0
  6. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +46 -0
  7. package/lib/__templates__/expo/README.md +64 -7
  8. package/lib/__templates__/expo/_gitignore +1 -1
  9. package/lib/__templates__/expo/_npmrc +3 -5
  10. package/lib/__templates__/expo/client/app/+not-found.tsx +8 -72
  11. package/lib/__templates__/expo/client/app/_layout.tsx +17 -12
  12. package/lib/__templates__/expo/client/app/index.tsx +1 -0
  13. package/lib/__templates__/expo/client/app.config.ts +76 -0
  14. package/lib/__templates__/expo/client/components/Screen.tsx +5 -18
  15. package/lib/__templates__/expo/client/components/ThemedText.tsx +33 -0
  16. package/lib/__templates__/expo/client/components/ThemedView.tsx +37 -0
  17. package/lib/__templates__/expo/client/contexts/AuthContext.tsx +14 -107
  18. package/lib/__templates__/expo/client/declarations.d.ts +5 -0
  19. package/lib/__templates__/expo/{eslint.config.mjs → client/eslint.config.mjs} +33 -10
  20. package/lib/__templates__/expo/client/global.css +6 -0
  21. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.animation.ts +178 -0
  22. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.constants.ts +62 -0
  23. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.md +437 -0
  24. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.styles.ts +95 -0
  25. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.tsx +340 -0
  26. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.types.ts +267 -0
  27. package/lib/__templates__/expo/client/heroui/components/accordion/index.ts +17 -0
  28. package/lib/__templates__/expo/client/heroui/components/alert/alert.constants.ts +13 -0
  29. package/lib/__templates__/expo/client/heroui/components/alert/alert.hooks.ts +28 -0
  30. package/lib/__templates__/expo/client/heroui/components/alert/alert.md +263 -0
  31. package/lib/__templates__/expo/client/heroui/components/alert/alert.styles.ts +65 -0
  32. package/lib/__templates__/expo/client/heroui/components/alert/alert.tsx +181 -0
  33. package/lib/__templates__/expo/client/heroui/components/alert/alert.types.ts +99 -0
  34. package/lib/__templates__/expo/client/heroui/components/alert/alert.utils.tsx +25 -0
  35. package/lib/__templates__/expo/client/heroui/components/alert/default-icon.tsx +28 -0
  36. package/lib/__templates__/expo/client/heroui/components/alert/index.ts +15 -0
  37. package/lib/__templates__/expo/client/heroui/components/alert/success-icon.tsx +28 -0
  38. package/lib/__templates__/expo/client/heroui/components/alert/warning-icon.tsx +28 -0
  39. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.animation.ts +123 -0
  40. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.constants.ts +19 -0
  41. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.context.ts +11 -0
  42. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.md +386 -0
  43. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.styles.ts +145 -0
  44. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.tsx +307 -0
  45. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.types.ts +239 -0
  46. package/lib/__templates__/expo/client/heroui/components/avatar/index.ts +13 -0
  47. package/lib/__templates__/expo/client/heroui/components/avatar/person-icon.tsx +23 -0
  48. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.animation.ts +42 -0
  49. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.constants.ts +13 -0
  50. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.md +349 -0
  51. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.styles.ts +66 -0
  52. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.tsx +351 -0
  53. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.types.ts +150 -0
  54. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/index.ts +16 -0
  55. package/lib/__templates__/expo/client/heroui/components/button/button.constants.ts +7 -0
  56. package/lib/__templates__/expo/client/heroui/components/button/button.md +381 -0
  57. package/lib/__templates__/expo/client/heroui/components/button/button.styles.ts +89 -0
  58. package/lib/__templates__/expo/client/heroui/components/button/button.tsx +284 -0
  59. package/lib/__templates__/expo/client/heroui/components/button/button.types.ts +175 -0
  60. package/lib/__templates__/expo/client/heroui/components/button/button.utils.ts +34 -0
  61. package/lib/__templates__/expo/client/heroui/components/button/index.ts +9 -0
  62. package/lib/__templates__/expo/client/heroui/components/card/card.constants.ts +11 -0
  63. package/lib/__templates__/expo/client/heroui/components/card/card.md +186 -0
  64. package/lib/__templates__/expo/client/heroui/components/card/card.styles.ts +35 -0
  65. package/lib/__templates__/expo/client/heroui/components/card/card.tsx +153 -0
  66. package/lib/__templates__/expo/client/heroui/components/card/card.types.ts +77 -0
  67. package/lib/__templates__/expo/client/heroui/components/card/index.ts +10 -0
  68. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.animation.ts +202 -0
  69. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.constants.ts +6 -0
  70. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.md +311 -0
  71. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.styles.ts +105 -0
  72. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.tsx +251 -0
  73. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.types.ts +216 -0
  74. package/lib/__templates__/expo/client/heroui/components/checkbox/index.ts +3 -0
  75. package/lib/__templates__/expo/client/heroui/components/chip/chip.animation.ts +18 -0
  76. package/lib/__templates__/expo/client/heroui/components/chip/chip.constants.ts +7 -0
  77. package/lib/__templates__/expo/client/heroui/components/chip/chip.md +190 -0
  78. package/lib/__templates__/expo/client/heroui/components/chip/chip.styles.ts +234 -0
  79. package/lib/__templates__/expo/client/heroui/components/chip/chip.tsx +125 -0
  80. package/lib/__templates__/expo/client/heroui/components/chip/chip.types.ts +69 -0
  81. package/lib/__templates__/expo/client/heroui/components/chip/index.ts +3 -0
  82. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.constants.ts +6 -0
  83. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.md +109 -0
  84. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.styles.ts +13 -0
  85. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.tsx +57 -0
  86. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.types.ts +30 -0
  87. package/lib/__templates__/expo/client/heroui/components/close-button/index.ts +6 -0
  88. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.animation.ts +18 -0
  89. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.constants.ts +7 -0
  90. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.context.ts +14 -0
  91. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.md +241 -0
  92. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.styles.ts +15 -0
  93. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.tsx +245 -0
  94. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.types.ts +67 -0
  95. package/lib/__templates__/expo/client/heroui/components/control-field/index.ts +6 -0
  96. package/lib/__templates__/expo/client/heroui/components/description/description.animation.ts +53 -0
  97. package/lib/__templates__/expo/client/heroui/components/description/description.constants.ts +30 -0
  98. package/lib/__templates__/expo/client/heroui/components/description/description.md +129 -0
  99. package/lib/__templates__/expo/client/heroui/components/description/description.styles.ts +25 -0
  100. package/lib/__templates__/expo/client/heroui/components/description/description.tsx +81 -0
  101. package/lib/__templates__/expo/client/heroui/components/description/description.types.ts +77 -0
  102. package/lib/__templates__/expo/client/heroui/components/description/index.ts +3 -0
  103. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.animation.ts +9 -0
  104. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.constants.ts +13 -0
  105. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.md +288 -0
  106. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.styles.ts +77 -0
  107. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.tsx +379 -0
  108. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.types.ts +199 -0
  109. package/lib/__templates__/expo/client/heroui/components/dialog/index.ts +12 -0
  110. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.animation.ts +50 -0
  111. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.constants.ts +31 -0
  112. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.md +204 -0
  113. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.styles.ts +23 -0
  114. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.tsx +91 -0
  115. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.types.ts +79 -0
  116. package/lib/__templates__/expo/client/heroui/components/field-error/index.ts +3 -0
  117. package/lib/__templates__/expo/client/heroui/components/input/index.ts +3 -0
  118. package/lib/__templates__/expo/client/heroui/components/input/input.constants.ts +6 -0
  119. package/lib/__templates__/expo/client/heroui/components/input/input.md +193 -0
  120. package/lib/__templates__/expo/client/heroui/components/input/input.styles.ts +51 -0
  121. package/lib/__templates__/expo/client/heroui/components/input/input.tsx +96 -0
  122. package/lib/__templates__/expo/client/heroui/components/input/input.types.ts +44 -0
  123. package/lib/__templates__/expo/client/heroui/components/input-group/index.ts +9 -0
  124. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.animation.ts +14 -0
  125. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.constants.ts +6 -0
  126. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.md +197 -0
  127. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.styles.ts +31 -0
  128. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.tsx +239 -0
  129. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.types.ts +98 -0
  130. package/lib/__templates__/expo/client/heroui/components/input-otp/index.ts +9 -0
  131. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.animation.ts +199 -0
  132. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.constants.ts +12 -0
  133. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.md +376 -0
  134. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.styles.ts +68 -0
  135. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.tsx +414 -0
  136. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.types.ts +275 -0
  137. package/lib/__templates__/expo/client/heroui/components/label/index.ts +3 -0
  138. package/lib/__templates__/expo/client/heroui/components/label/label.animation.ts +18 -0
  139. package/lib/__templates__/expo/client/heroui/components/label/label.constants.ts +7 -0
  140. package/lib/__templates__/expo/client/heroui/components/label/label.md +187 -0
  141. package/lib/__templates__/expo/client/heroui/components/label/label.styles.ts +44 -0
  142. package/lib/__templates__/expo/client/heroui/components/label/label.tsx +172 -0
  143. package/lib/__templates__/expo/client/heroui/components/label/label.types.ts +86 -0
  144. package/lib/__templates__/expo/client/heroui/components/list-group/index.ts +17 -0
  145. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.constants.ts +17 -0
  146. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.md +387 -0
  147. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.styles.ts +40 -0
  148. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.tsx +206 -0
  149. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.types.ts +132 -0
  150. package/lib/__templates__/expo/client/heroui/components/menu/index.ts +38 -0
  151. package/lib/__templates__/expo/client/heroui/components/menu/menu.animation.ts +121 -0
  152. package/lib/__templates__/expo/client/heroui/components/menu/menu.constants.ts +37 -0
  153. package/lib/__templates__/expo/client/heroui/components/menu/menu.md +620 -0
  154. package/lib/__templates__/expo/client/heroui/components/menu/menu.styles.ts +107 -0
  155. package/lib/__templates__/expo/client/heroui/components/menu/menu.tsx +664 -0
  156. package/lib/__templates__/expo/client/heroui/components/menu/menu.types.ts +394 -0
  157. package/lib/__templates__/expo/client/heroui/components/popover/arrow-svg.tsx +180 -0
  158. package/lib/__templates__/expo/client/heroui/components/popover/index.ts +18 -0
  159. package/lib/__templates__/expo/client/heroui/components/popover/popover.animation.ts +9 -0
  160. package/lib/__templates__/expo/client/heroui/components/popover/popover.constants.ts +34 -0
  161. package/lib/__templates__/expo/client/heroui/components/popover/popover.md +508 -0
  162. package/lib/__templates__/expo/client/heroui/components/popover/popover.styles.ts +98 -0
  163. package/lib/__templates__/expo/client/heroui/components/popover/popover.tsx +624 -0
  164. package/lib/__templates__/expo/client/heroui/components/popover/popover.types.ts +290 -0
  165. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/index.ts +4 -0
  166. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.animation.ts +449 -0
  167. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.constants.ts +12 -0
  168. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.md +328 -0
  169. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.styles.ts +85 -0
  170. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.tsx +330 -0
  171. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.types.ts +386 -0
  172. package/lib/__templates__/expo/client/heroui/components/radio/index.ts +9 -0
  173. package/lib/__templates__/expo/client/heroui/components/radio/radio.animation.ts +92 -0
  174. package/lib/__templates__/expo/client/heroui/components/radio/radio.constants.ts +11 -0
  175. package/lib/__templates__/expo/client/heroui/components/radio/radio.md +339 -0
  176. package/lib/__templates__/expo/client/heroui/components/radio/radio.styles.ts +80 -0
  177. package/lib/__templates__/expo/client/heroui/components/radio/radio.tsx +217 -0
  178. package/lib/__templates__/expo/client/heroui/components/radio/radio.types.ts +106 -0
  179. package/lib/__templates__/expo/client/heroui/components/radio-group/index.ts +9 -0
  180. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.animation.ts +20 -0
  181. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.constants.ts +7 -0
  182. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.context.ts +14 -0
  183. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.md +273 -0
  184. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.styles.ts +15 -0
  185. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.tsx +220 -0
  186. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.types.ts +64 -0
  187. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/index.ts +7 -0
  188. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.animation.ts +132 -0
  189. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.constants.ts +21 -0
  190. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.md +206 -0
  191. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.styles.ts +52 -0
  192. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.tsx +262 -0
  193. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.types.ts +121 -0
  194. package/lib/__templates__/expo/client/heroui/components/search-field/index.ts +17 -0
  195. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.animation.ts +18 -0
  196. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.constants.ts +10 -0
  197. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.md +231 -0
  198. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.styles.ts +35 -0
  199. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.tsx +253 -0
  200. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.types.ts +160 -0
  201. package/lib/__templates__/expo/client/heroui/components/search-field/search-icon.tsx +37 -0
  202. package/lib/__templates__/expo/client/heroui/components/select/index.ts +28 -0
  203. package/lib/__templates__/expo/client/heroui/components/select/select.animation.ts +92 -0
  204. package/lib/__templates__/expo/client/heroui/components/select/select.constants.ts +53 -0
  205. package/lib/__templates__/expo/client/heroui/components/select/select.md +796 -0
  206. package/lib/__templates__/expo/client/heroui/components/select/select.styles.ts +149 -0
  207. package/lib/__templates__/expo/client/heroui/components/select/select.tsx +828 -0
  208. package/lib/__templates__/expo/client/heroui/components/select/select.types.ts +438 -0
  209. package/lib/__templates__/expo/client/heroui/components/separator/index.ts +7 -0
  210. package/lib/__templates__/expo/client/heroui/components/separator/separator.constants.ts +6 -0
  211. package/lib/__templates__/expo/client/heroui/components/separator/separator.md +106 -0
  212. package/lib/__templates__/expo/client/heroui/components/separator/separator.styles.ts +50 -0
  213. package/lib/__templates__/expo/client/heroui/components/separator/separator.tsx +62 -0
  214. package/lib/__templates__/expo/client/heroui/components/separator/separator.types.ts +40 -0
  215. package/lib/__templates__/expo/client/heroui/components/skeleton/index.ts +7 -0
  216. package/lib/__templates__/expo/client/heroui/components/skeleton/linear-gradient.tsx +45 -0
  217. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.animation.ts +350 -0
  218. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.constants.ts +39 -0
  219. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.md +208 -0
  220. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.styles.ts +49 -0
  221. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.tsx +183 -0
  222. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.types.ts +191 -0
  223. package/lib/__templates__/expo/client/heroui/components/skeleton-group/index.ts +7 -0
  224. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.constants.ts +7 -0
  225. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.md +247 -0
  226. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.styles.ts +10 -0
  227. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.tsx +94 -0
  228. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.types.ts +28 -0
  229. package/lib/__templates__/expo/client/heroui/components/slider/index.ts +23 -0
  230. package/lib/__templates__/expo/client/heroui/components/slider/slider.animation.ts +87 -0
  231. package/lib/__templates__/expo/client/heroui/components/slider/slider.constants.ts +24 -0
  232. package/lib/__templates__/expo/client/heroui/components/slider/slider.md +348 -0
  233. package/lib/__templates__/expo/client/heroui/components/slider/slider.styles.ts +85 -0
  234. package/lib/__templates__/expo/client/heroui/components/slider/slider.tsx +413 -0
  235. package/lib/__templates__/expo/client/heroui/components/slider/slider.types.ts +120 -0
  236. package/lib/__templates__/expo/client/heroui/components/spinner/index.ts +10 -0
  237. package/lib/__templates__/expo/client/heroui/components/spinner/spinner-icon.tsx +49 -0
  238. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.animation.ts +150 -0
  239. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.constants.ts +36 -0
  240. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.md +199 -0
  241. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.styles.ts +44 -0
  242. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.tsx +198 -0
  243. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.types.ts +158 -0
  244. package/lib/__templates__/expo/client/heroui/components/surface/index.ts +3 -0
  245. package/lib/__templates__/expo/client/heroui/components/surface/surface.animation.ts +18 -0
  246. package/lib/__templates__/expo/client/heroui/components/surface/surface.constants.ts +6 -0
  247. package/lib/__templates__/expo/client/heroui/components/surface/surface.md +136 -0
  248. package/lib/__templates__/expo/client/heroui/components/surface/surface.styles.ts +28 -0
  249. package/lib/__templates__/expo/client/heroui/components/surface/surface.tsx +66 -0
  250. package/lib/__templates__/expo/client/heroui/components/surface/surface.types.ts +46 -0
  251. package/lib/__templates__/expo/client/heroui/components/switch/index.ts +3 -0
  252. package/lib/__templates__/expo/client/heroui/components/switch/switch.animation.ts +243 -0
  253. package/lib/__templates__/expo/client/heroui/components/switch/switch.constants.ts +26 -0
  254. package/lib/__templates__/expo/client/heroui/components/switch/switch.md +334 -0
  255. package/lib/__templates__/expo/client/heroui/components/switch/switch.styles.ts +83 -0
  256. package/lib/__templates__/expo/client/heroui/components/switch/switch.tsx +280 -0
  257. package/lib/__templates__/expo/client/heroui/components/switch/switch.types.ts +208 -0
  258. package/lib/__templates__/expo/client/heroui/components/tabs/index.ts +8 -0
  259. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.animation.ts +246 -0
  260. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.constants.ts +17 -0
  261. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.context.ts +28 -0
  262. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.md +565 -0
  263. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.styles.ts +168 -0
  264. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.tsx +445 -0
  265. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.types.ts +341 -0
  266. package/lib/__templates__/expo/client/heroui/components/tag-group/index.ts +15 -0
  267. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.animation.ts +17 -0
  268. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.constants.ts +10 -0
  269. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.md +404 -0
  270. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.styles.ts +74 -0
  271. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.tsx +325 -0
  272. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.types.ts +125 -0
  273. package/lib/__templates__/expo/client/heroui/components/text-area/index.ts +3 -0
  274. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.constants.ts +6 -0
  275. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.md +133 -0
  276. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.styles.ts +10 -0
  277. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.tsx +44 -0
  278. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.types.ts +6 -0
  279. package/lib/__templates__/expo/client/heroui/components/text-field/index.ts +3 -0
  280. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.animation.ts +20 -0
  281. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.constants.ts +6 -0
  282. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.md +256 -0
  283. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.styles.ts +10 -0
  284. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.tsx +82 -0
  285. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.types.ts +56 -0
  286. package/lib/__templates__/expo/client/heroui/components/toast/index.ts +4 -0
  287. package/lib/__templates__/expo/client/heroui/components/toast/toast.animation.ts +381 -0
  288. package/lib/__templates__/expo/client/heroui/components/toast/toast.constants.ts +10 -0
  289. package/lib/__templates__/expo/client/heroui/components/toast/toast.hooks.ts +73 -0
  290. package/lib/__templates__/expo/client/heroui/components/toast/toast.md +420 -0
  291. package/lib/__templates__/expo/client/heroui/components/toast/toast.styles.ts +89 -0
  292. package/lib/__templates__/expo/client/heroui/components/toast/toast.tsx +472 -0
  293. package/lib/__templates__/expo/client/heroui/components/toast/toast.types.ts +320 -0
  294. package/lib/__templates__/expo/client/heroui/docs.md +54 -0
  295. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/index.ts +3 -0
  296. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/use-is-on-surface.ts +8 -0
  297. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/use-theme-color.ts +137 -0
  298. package/lib/__templates__/expo/client/heroui/helpers/external/utils/cn.ts +12 -0
  299. package/lib/__templates__/expo/client/heroui/helpers/external/utils/color-kit/index.ts +2392 -0
  300. package/lib/__templates__/expo/client/heroui/helpers/external/utils/color-kit/types.ts +212 -0
  301. package/lib/__templates__/expo/client/heroui/helpers/external/utils/index.ts +2 -0
  302. package/lib/__templates__/expo/client/heroui/helpers/internal/components/animated-check-icon.tsx +78 -0
  303. package/lib/__templates__/expo/client/heroui/helpers/internal/components/bottom-sheet-content-container.tsx +97 -0
  304. package/lib/__templates__/expo/client/heroui/helpers/internal/components/bottom-sheet-content.tsx +158 -0
  305. package/lib/__templates__/expo/client/heroui/helpers/internal/components/check-icon.tsx +28 -0
  306. package/lib/__templates__/expo/client/heroui/helpers/internal/components/chevron-down-icon.tsx +28 -0
  307. package/lib/__templates__/expo/client/heroui/helpers/internal/components/chevron-right-icon.tsx +29 -0
  308. package/lib/__templates__/expo/client/heroui/helpers/internal/components/close-icon.tsx +29 -0
  309. package/lib/__templates__/expo/client/heroui/helpers/internal/components/full-window-overlay.tsx +48 -0
  310. package/lib/__templates__/expo/client/heroui/helpers/internal/components/hero-text.tsx +71 -0
  311. package/lib/__templates__/expo/client/heroui/helpers/internal/components/index.ts +9 -0
  312. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/animation-settings-context.ts +19 -0
  313. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/bottom-sheet-is-dragging-context.ts +11 -0
  314. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/form-field-context.ts +36 -0
  315. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/index.ts +3 -0
  316. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/index.ts +14 -0
  317. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-augmented-ref.ts +32 -0
  318. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-bottom-sheet-aware-handlers.ts +94 -0
  319. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-bottom-sheet-gesture-handlers.ts +52 -0
  320. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-combined-animation-disabled-state.ts +49 -0
  321. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-controllable-state.ts +124 -0
  322. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-dev-info.ts +38 -0
  323. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-keyboard-status.ts +22 -0
  324. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-bottom-sheet-content-animation.ts +67 -0
  325. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-dialog-content-animation.ts +296 -0
  326. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-overlay-animation.ts +91 -0
  327. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-popover-content-animation.ts +199 -0
  328. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-root-animation.ts +26 -0
  329. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-relative-position.ts +353 -0
  330. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-resolved-style-property.ts +118 -0
  331. package/lib/__templates__/expo/client/heroui/helpers/internal/types/animation.ts +131 -0
  332. package/lib/__templates__/expo/client/heroui/helpers/internal/types/bottom-sheet.ts +99 -0
  333. package/lib/__templates__/expo/client/heroui/helpers/internal/types/index.ts +5 -0
  334. package/lib/__templates__/expo/client/heroui/helpers/internal/types/misc.ts +10 -0
  335. package/lib/__templates__/expo/client/heroui/helpers/internal/types/primitives.ts +146 -0
  336. package/lib/__templates__/expo/client/heroui/helpers/internal/types/theme.ts +18 -0
  337. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/animation.ts +266 -0
  338. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/children-to-string.ts +117 -0
  339. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/combine-styles.ts +17 -0
  340. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/create-context.ts +60 -0
  341. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/ease-gradient/create-interpolation.ts +35 -0
  342. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/ease-gradient/index.ts +97 -0
  343. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/get-element-by-display-name.ts +15 -0
  344. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/get-element-with-default.ts +17 -0
  345. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/has-prop.ts +18 -0
  346. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/index.ts +8 -0
  347. package/lib/__templates__/expo/client/heroui/index.tsx +51 -0
  348. package/lib/__templates__/expo/client/heroui/primitives/README.md +27 -0
  349. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.tsx +270 -0
  350. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.types.ts +117 -0
  351. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.utils.ts +12 -0
  352. package/lib/__templates__/expo/client/heroui/primitives/accordion/index.ts +2 -0
  353. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/activity-indicator.tsx +50 -0
  354. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/activity-indicator.types.ts +24 -0
  355. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/index.ts +2 -0
  356. package/lib/__templates__/expo/client/heroui/primitives/alert/alert.tsx +124 -0
  357. package/lib/__templates__/expo/client/heroui/primitives/alert/alert.types.ts +87 -0
  358. package/lib/__templates__/expo/client/heroui/primitives/alert/index.ts +2 -0
  359. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.tsx +171 -0
  360. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.types.ts +62 -0
  361. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.utils.ts +102 -0
  362. package/lib/__templates__/expo/client/heroui/primitives/avatar/index.ts +2 -0
  363. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/bottom-sheet.tsx +235 -0
  364. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/bottom-sheet.types.ts +127 -0
  365. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/index.ts +2 -0
  366. package/lib/__templates__/expo/client/heroui/primitives/checkbox/checkbox.tsx +119 -0
  367. package/lib/__templates__/expo/client/heroui/primitives/checkbox/checkbox.types.ts +37 -0
  368. package/lib/__templates__/expo/client/heroui/primitives/checkbox/index.ts +2 -0
  369. package/lib/__templates__/expo/client/heroui/primitives/dialog/dialog.tsx +274 -0
  370. package/lib/__templates__/expo/client/heroui/primitives/dialog/dialog.types.ts +129 -0
  371. package/lib/__templates__/expo/client/heroui/primitives/dialog/index.ts +2 -0
  372. package/lib/__templates__/expo/client/heroui/primitives/input-otp/index.ts +3 -0
  373. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.tsx +431 -0
  374. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.types.ts +169 -0
  375. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.utils.ts +31 -0
  376. package/lib/__templates__/expo/client/heroui/primitives/label/index.ts +2 -0
  377. package/lib/__templates__/expo/client/heroui/primitives/label/label.tsx +24 -0
  378. package/lib/__templates__/expo/client/heroui/primitives/label/label.types.ts +39 -0
  379. package/lib/__templates__/expo/client/heroui/primitives/menu/index.ts +2 -0
  380. package/lib/__templates__/expo/client/heroui/primitives/menu/menu.tsx +765 -0
  381. package/lib/__templates__/expo/client/heroui/primitives/menu/menu.types.ts +401 -0
  382. package/lib/__templates__/expo/client/heroui/primitives/popover/index.ts +2 -0
  383. package/lib/__templates__/expo/client/heroui/primitives/popover/popover.tsx +382 -0
  384. package/lib/__templates__/expo/client/heroui/primitives/popover/popover.types.ts +201 -0
  385. package/lib/__templates__/expo/client/heroui/primitives/portal/index.ts +1 -0
  386. package/lib/__templates__/expo/client/heroui/primitives/portal/portal.tsx +126 -0
  387. package/lib/__templates__/expo/client/heroui/primitives/radio/index.ts +2 -0
  388. package/lib/__templates__/expo/client/heroui/primitives/radio/radio.tsx +133 -0
  389. package/lib/__templates__/expo/client/heroui/primitives/radio/radio.types.ts +47 -0
  390. package/lib/__templates__/expo/client/heroui/primitives/radio-group/index.ts +2 -0
  391. package/lib/__templates__/expo/client/heroui/primitives/radio-group/radio-group.tsx +114 -0
  392. package/lib/__templates__/expo/client/heroui/primitives/radio-group/radio-group.types.ts +65 -0
  393. package/lib/__templates__/expo/client/heroui/primitives/select/index.ts +2 -0
  394. package/lib/__templates__/expo/client/heroui/primitives/select/select.tsx +705 -0
  395. package/lib/__templates__/expo/client/heroui/primitives/select/select.types.ts +409 -0
  396. package/lib/__templates__/expo/client/heroui/primitives/select/select.utils.ts +35 -0
  397. package/lib/__templates__/expo/client/heroui/primitives/slider/index.ts +3 -0
  398. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.tsx +463 -0
  399. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.types.ts +208 -0
  400. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.utils.ts +93 -0
  401. package/lib/__templates__/expo/client/heroui/primitives/slot/index.ts +1 -0
  402. package/lib/__templates__/expo/client/heroui/primitives/slot/slot.tsx +121 -0
  403. package/lib/__templates__/expo/client/heroui/primitives/slot/types.ts +19 -0
  404. package/lib/__templates__/expo/client/heroui/primitives/slot/utils.ts +96 -0
  405. package/lib/__templates__/expo/client/heroui/primitives/switch/index.ts +2 -0
  406. package/lib/__templates__/expo/client/heroui/primitives/switch/switch.tsx +61 -0
  407. package/lib/__templates__/expo/client/heroui/primitives/switch/switch.types.ts +55 -0
  408. package/lib/__templates__/expo/client/heroui/primitives/tabs/index.ts +2 -0
  409. package/lib/__templates__/expo/client/heroui/primitives/tabs/tabs.tsx +202 -0
  410. package/lib/__templates__/expo/client/heroui/primitives/tabs/tabs.types.ts +77 -0
  411. package/lib/__templates__/expo/client/heroui/primitives/tag-group/index.ts +2 -0
  412. package/lib/__templates__/expo/client/heroui/primitives/tag-group/tag-group.tsx +324 -0
  413. package/lib/__templates__/expo/client/heroui/primitives/tag-group/tag-group.types.ts +119 -0
  414. package/lib/__templates__/expo/client/heroui/primitives/toast/index.ts +2 -0
  415. package/lib/__templates__/expo/client/heroui/primitives/toast/toast.tsx +138 -0
  416. package/lib/__templates__/expo/client/heroui/primitives/toast/toast.types.ts +86 -0
  417. package/lib/__templates__/expo/client/heroui/providers/animation-settings/index.ts +8 -0
  418. package/lib/__templates__/expo/client/heroui/providers/animation-settings/provider.tsx +47 -0
  419. package/lib/__templates__/expo/client/heroui/providers/animation-settings/types.ts +27 -0
  420. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/index.ts +2 -0
  421. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/provider.tsx +67 -0
  422. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/types.ts +114 -0
  423. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/index.ts +2 -0
  424. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/provider.tsx +50 -0
  425. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/types.ts +39 -0
  426. package/lib/__templates__/expo/client/heroui/providers/text-component/index.ts +2 -0
  427. package/lib/__templates__/expo/client/heroui/providers/text-component/provider.tsx +9 -0
  428. package/lib/__templates__/expo/client/heroui/providers/text-component/types.ts +52 -0
  429. package/lib/__templates__/expo/client/heroui/providers/toast/index.ts +3 -0
  430. package/lib/__templates__/expo/client/heroui/providers/toast/insets-container.tsx +87 -0
  431. package/lib/__templates__/expo/client/heroui/providers/toast/provider.tsx +431 -0
  432. package/lib/__templates__/expo/client/heroui/providers/toast/reducer.ts +34 -0
  433. package/lib/__templates__/expo/client/heroui/providers/toast/toast-config.context.ts +27 -0
  434. package/lib/__templates__/expo/client/heroui/providers/toast/toast-item-renderer.tsx +45 -0
  435. package/lib/__templates__/expo/client/heroui/providers/toast/types.ts +373 -0
  436. package/lib/__templates__/expo/client/heroui/styles/index.css +3 -0
  437. package/lib/__templates__/expo/client/heroui/styles/theme.css +112 -0
  438. package/lib/__templates__/expo/client/heroui/styles/utilities.css +8 -0
  439. package/lib/__templates__/expo/client/heroui/styles/variables.css +146 -0
  440. package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
  441. package/lib/__templates__/expo/client/metro.config.js +128 -0
  442. package/lib/__templates__/expo/client/package.json +100 -0
  443. package/lib/__templates__/expo/client/screens/demo/index.tsx +19 -0
  444. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +1 -0
  445. package/lib/__templates__/expo/client/theme.css +263 -0
  446. package/lib/__templates__/expo/client/tsconfig.json +24 -0
  447. package/lib/__templates__/expo/client/uniwind-types.d.ts +10 -0
  448. package/lib/__templates__/expo/client/utils/index.ts +23 -2
  449. package/lib/__templates__/expo/eslint-plugins/fontawesome6/index.js +9 -0
  450. package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +1889 -0
  451. package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +174 -0
  452. package/lib/__templates__/expo/eslint-plugins/fontawesome6/v5-only-names.js +388 -0
  453. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  454. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  455. package/lib/__templates__/expo/eslint-plugins/reanimated/index.js +9 -0
  456. package/lib/__templates__/expo/eslint-plugins/reanimated/rule.js +88 -0
  457. package/lib/__templates__/expo/package.json +16 -103
  458. package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
  459. package/lib/__templates__/expo/pnpm-lock.yaml +1622 -3274
  460. package/lib/__templates__/expo/pnpm-workspace.yaml +3 -0
  461. package/lib/__templates__/expo/server/build.js +21 -0
  462. package/lib/__templates__/expo/server/package.json +34 -0
  463. package/lib/__templates__/expo/server/src/index.ts +20 -0
  464. package/lib/__templates__/expo/server/tsconfig.json +24 -0
  465. package/lib/__templates__/expo/template.config.js +58 -1
  466. package/lib/__templates__/expo/tsconfig.json +1 -24
  467. package/lib/__templates__/nextjs/.coze +4 -3
  468. package/lib/__templates__/nextjs/_npmrc +2 -1
  469. package/lib/__templates__/nextjs/next.config.ts +12 -0
  470. package/lib/__templates__/nextjs/package.json +17 -1
  471. package/lib/__templates__/nextjs/pnpm-lock.yaml +3352 -1083
  472. package/lib/__templates__/nextjs/scripts/dev.sh +8 -27
  473. package/lib/__templates__/nextjs/scripts/prepare.sh +9 -0
  474. package/lib/__templates__/nextjs/src/app/globals.css +109 -89
  475. package/lib/__templates__/nextjs/src/app/layout.tsx +19 -32
  476. package/lib/__templates__/nextjs/src/app/page.tsx +18 -48
  477. package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +29 -22
  478. package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +228 -230
  479. package/lib/__templates__/nextjs/template.config.js +68 -3
  480. package/lib/__templates__/taro/.coze +14 -0
  481. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
  482. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
  483. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
  484. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +80 -0
  485. package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
  486. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +1 -0
  487. package/lib/__templates__/taro/README.md +747 -0
  488. package/lib/__templates__/taro/_gitignore +40 -0
  489. package/lib/__templates__/taro/_npmrc +18 -0
  490. package/lib/__templates__/taro/babel.config.js +12 -0
  491. package/lib/__templates__/taro/config/dev.ts +9 -0
  492. package/lib/__templates__/taro/config/index.ts +173 -0
  493. package/lib/__templates__/taro/config/prod.ts +35 -0
  494. package/lib/__templates__/taro/eslint.config.mjs +57 -0
  495. package/lib/__templates__/taro/key/private.appid.key +0 -0
  496. package/lib/__templates__/taro/package.json +97 -0
  497. package/lib/__templates__/taro/pnpm-lock.yaml +22708 -0
  498. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  499. package/lib/__templates__/taro/project.config.json +15 -0
  500. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  501. package/lib/__templates__/taro/server/package.json +41 -0
  502. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  503. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  504. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  505. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  506. package/lib/__templates__/taro/server/src/main.ts +49 -0
  507. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  508. package/lib/__templates__/taro/src/app.config.ts +11 -0
  509. package/lib/__templates__/taro/src/app.css +52 -0
  510. package/lib/__templates__/taro/src/app.ts +14 -0
  511. package/lib/__templates__/taro/src/index.html +39 -0
  512. package/lib/__templates__/taro/src/network.ts +39 -0
  513. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  514. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  515. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  516. package/lib/__templates__/taro/src/utils/h5-styles.ts +33 -0
  517. package/lib/__templates__/taro/src/utils/wx-debug.ts +23 -0
  518. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  519. package/lib/__templates__/taro/template.config.js +68 -0
  520. package/lib/__templates__/taro/tsconfig.json +29 -0
  521. package/lib/__templates__/taro/types/global.d.ts +32 -0
  522. package/lib/__templates__/templates.json +93 -36
  523. package/lib/__templates__/vite/.coze +4 -3
  524. package/lib/__templates__/vite/README.md +204 -26
  525. package/lib/__templates__/vite/_npmrc +2 -1
  526. package/lib/__templates__/vite/eslint.config.mjs +9 -0
  527. package/lib/__templates__/vite/package.json +15 -2
  528. package/lib/__templates__/vite/pnpm-lock.yaml +1697 -221
  529. package/lib/__templates__/vite/scripts/dev.sh +7 -26
  530. package/lib/__templates__/vite/scripts/prepare.sh +9 -0
  531. package/lib/__templates__/vite/src/main.ts +17 -48
  532. package/lib/__templates__/vite/template.config.js +77 -7
  533. package/lib/__templates__/vite/vite.config.ts +3 -3
  534. package/lib/cli.js +1510 -512
  535. package/package.json +10 -4
  536. package/lib/__templates__/expo/.cozeproj/scripts/deploy_build.sh +0 -115
  537. package/lib/__templates__/expo/.cozeproj/scripts/deploy_run.sh +0 -271
  538. package/lib/__templates__/expo/app.json +0 -63
  539. package/lib/__templates__/expo/babel.config.js +0 -9
  540. package/lib/__templates__/expo/client/app/(tabs)/_layout.tsx +0 -43
  541. package/lib/__templates__/expo/client/app/(tabs)/home.tsx +0 -1
  542. package/lib/__templates__/expo/client/app/(tabs)/index.tsx +0 -7
  543. package/lib/__templates__/expo/client/constants/theme.ts +0 -118
  544. package/lib/__templates__/expo/client/hooks/useColorScheme.ts +0 -1
  545. package/lib/__templates__/expo/client/hooks/useTheme.ts +0 -13
  546. package/lib/__templates__/expo/client/index.js +0 -12
  547. package/lib/__templates__/expo/client/screens/home/index.tsx +0 -54
  548. package/lib/__templates__/expo/client/screens/home/styles.ts +0 -332
  549. package/lib/__templates__/expo/metro.config.js +0 -53
  550. package/lib/__templates__/expo/src/index.ts +0 -12
  551. package/lib/__templates__/nextjs/.vscode/settings.json +0 -121
  552. package/lib/__templates__/nextjs/server.mjs +0 -50
  553. package/lib/__templates__/vite/.vscode/settings.json +0 -7
  554. /package/lib/__templates__/expo/{eslint-formatter-simple.mjs → client/eslint-formatter-simple.mjs} +0 -0
@@ -4,13 +4,29 @@ settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
+ overrides:
8
+ esbuild: ^0.27.2
9
+
7
10
  importers:
8
11
 
9
12
  .:
13
+ dependencies:
14
+ '@supabase/supabase-js':
15
+ specifier: 2.95.3
16
+ version: 2.95.3
17
+ dotenv:
18
+ specifier: ^17.2.3
19
+ version: 17.2.4
10
20
  devDependencies:
11
21
  autoprefixer:
12
22
  specifier: ^10.4.20
13
23
  version: 10.4.23(postcss@8.5.6)
24
+ coze-coding-dev-sdk:
25
+ specifier: ^0.7.16
26
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
27
+ eslint:
28
+ specifier: ^9
29
+ version: 9.39.2(jiti@1.21.7)
14
30
  only-allow:
15
31
  specifier: ^1.2.2
16
32
  version: 1.2.2
@@ -23,9 +39,12 @@ importers:
23
39
  typescript:
24
40
  specifier: ^5.6.0
25
41
  version: 5.9.3
42
+ typescript-eslint:
43
+ specifier: ^8
44
+ version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
26
45
  vite:
27
- specifier: ^6.0.0
28
- version: 6.4.1(jiti@1.21.7)
46
+ specifier: ^7.2.4
47
+ version: 7.3.1(@types/node@25.2.3)(jiti@1.21.7)
29
48
 
30
49
  packages:
31
50
 
@@ -33,162 +52,219 @@ packages:
33
52
  resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
34
53
  engines: {node: '>=10'}
35
54
 
36
- '@esbuild/aix-ppc64@0.25.12':
37
- resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
55
+ '@cfworker/json-schema@4.1.1':
56
+ resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
57
+
58
+ '@esbuild/aix-ppc64@0.27.2':
59
+ resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
38
60
  engines: {node: '>=18'}
39
61
  cpu: [ppc64]
40
62
  os: [aix]
41
63
 
42
- '@esbuild/android-arm64@0.25.12':
43
- resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
64
+ '@esbuild/android-arm64@0.27.2':
65
+ resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
44
66
  engines: {node: '>=18'}
45
67
  cpu: [arm64]
46
68
  os: [android]
47
69
 
48
- '@esbuild/android-arm@0.25.12':
49
- resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
70
+ '@esbuild/android-arm@0.27.2':
71
+ resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
50
72
  engines: {node: '>=18'}
51
73
  cpu: [arm]
52
74
  os: [android]
53
75
 
54
- '@esbuild/android-x64@0.25.12':
55
- resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
76
+ '@esbuild/android-x64@0.27.2':
77
+ resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
56
78
  engines: {node: '>=18'}
57
79
  cpu: [x64]
58
80
  os: [android]
59
81
 
60
- '@esbuild/darwin-arm64@0.25.12':
61
- resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
82
+ '@esbuild/darwin-arm64@0.27.2':
83
+ resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
62
84
  engines: {node: '>=18'}
63
85
  cpu: [arm64]
64
86
  os: [darwin]
65
87
 
66
- '@esbuild/darwin-x64@0.25.12':
67
- resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
88
+ '@esbuild/darwin-x64@0.27.2':
89
+ resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
68
90
  engines: {node: '>=18'}
69
91
  cpu: [x64]
70
92
  os: [darwin]
71
93
 
72
- '@esbuild/freebsd-arm64@0.25.12':
73
- resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
94
+ '@esbuild/freebsd-arm64@0.27.2':
95
+ resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
74
96
  engines: {node: '>=18'}
75
97
  cpu: [arm64]
76
98
  os: [freebsd]
77
99
 
78
- '@esbuild/freebsd-x64@0.25.12':
79
- resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
100
+ '@esbuild/freebsd-x64@0.27.2':
101
+ resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
80
102
  engines: {node: '>=18'}
81
103
  cpu: [x64]
82
104
  os: [freebsd]
83
105
 
84
- '@esbuild/linux-arm64@0.25.12':
85
- resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
106
+ '@esbuild/linux-arm64@0.27.2':
107
+ resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
86
108
  engines: {node: '>=18'}
87
109
  cpu: [arm64]
88
110
  os: [linux]
89
111
 
90
- '@esbuild/linux-arm@0.25.12':
91
- resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
112
+ '@esbuild/linux-arm@0.27.2':
113
+ resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
92
114
  engines: {node: '>=18'}
93
115
  cpu: [arm]
94
116
  os: [linux]
95
117
 
96
- '@esbuild/linux-ia32@0.25.12':
97
- resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
118
+ '@esbuild/linux-ia32@0.27.2':
119
+ resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
98
120
  engines: {node: '>=18'}
99
121
  cpu: [ia32]
100
122
  os: [linux]
101
123
 
102
- '@esbuild/linux-loong64@0.25.12':
103
- resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
124
+ '@esbuild/linux-loong64@0.27.2':
125
+ resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
104
126
  engines: {node: '>=18'}
105
127
  cpu: [loong64]
106
128
  os: [linux]
107
129
 
108
- '@esbuild/linux-mips64el@0.25.12':
109
- resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
130
+ '@esbuild/linux-mips64el@0.27.2':
131
+ resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
110
132
  engines: {node: '>=18'}
111
133
  cpu: [mips64el]
112
134
  os: [linux]
113
135
 
114
- '@esbuild/linux-ppc64@0.25.12':
115
- resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
136
+ '@esbuild/linux-ppc64@0.27.2':
137
+ resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
116
138
  engines: {node: '>=18'}
117
139
  cpu: [ppc64]
118
140
  os: [linux]
119
141
 
120
- '@esbuild/linux-riscv64@0.25.12':
121
- resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
142
+ '@esbuild/linux-riscv64@0.27.2':
143
+ resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
122
144
  engines: {node: '>=18'}
123
145
  cpu: [riscv64]
124
146
  os: [linux]
125
147
 
126
- '@esbuild/linux-s390x@0.25.12':
127
- resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
148
+ '@esbuild/linux-s390x@0.27.2':
149
+ resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
128
150
  engines: {node: '>=18'}
129
151
  cpu: [s390x]
130
152
  os: [linux]
131
153
 
132
- '@esbuild/linux-x64@0.25.12':
133
- resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
154
+ '@esbuild/linux-x64@0.27.2':
155
+ resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
134
156
  engines: {node: '>=18'}
135
157
  cpu: [x64]
136
158
  os: [linux]
137
159
 
138
- '@esbuild/netbsd-arm64@0.25.12':
139
- resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
160
+ '@esbuild/netbsd-arm64@0.27.2':
161
+ resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
140
162
  engines: {node: '>=18'}
141
163
  cpu: [arm64]
142
164
  os: [netbsd]
143
165
 
144
- '@esbuild/netbsd-x64@0.25.12':
145
- resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
166
+ '@esbuild/netbsd-x64@0.27.2':
167
+ resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
146
168
  engines: {node: '>=18'}
147
169
  cpu: [x64]
148
170
  os: [netbsd]
149
171
 
150
- '@esbuild/openbsd-arm64@0.25.12':
151
- resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
172
+ '@esbuild/openbsd-arm64@0.27.2':
173
+ resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
152
174
  engines: {node: '>=18'}
153
175
  cpu: [arm64]
154
176
  os: [openbsd]
155
177
 
156
- '@esbuild/openbsd-x64@0.25.12':
157
- resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
178
+ '@esbuild/openbsd-x64@0.27.2':
179
+ resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
158
180
  engines: {node: '>=18'}
159
181
  cpu: [x64]
160
182
  os: [openbsd]
161
183
 
162
- '@esbuild/openharmony-arm64@0.25.12':
163
- resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
184
+ '@esbuild/openharmony-arm64@0.27.2':
185
+ resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
164
186
  engines: {node: '>=18'}
165
187
  cpu: [arm64]
166
188
  os: [openharmony]
167
189
 
168
- '@esbuild/sunos-x64@0.25.12':
169
- resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
190
+ '@esbuild/sunos-x64@0.27.2':
191
+ resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
170
192
  engines: {node: '>=18'}
171
193
  cpu: [x64]
172
194
  os: [sunos]
173
195
 
174
- '@esbuild/win32-arm64@0.25.12':
175
- resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
196
+ '@esbuild/win32-arm64@0.27.2':
197
+ resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
176
198
  engines: {node: '>=18'}
177
199
  cpu: [arm64]
178
200
  os: [win32]
179
201
 
180
- '@esbuild/win32-ia32@0.25.12':
181
- resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
202
+ '@esbuild/win32-ia32@0.27.2':
203
+ resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
182
204
  engines: {node: '>=18'}
183
205
  cpu: [ia32]
184
206
  os: [win32]
185
207
 
186
- '@esbuild/win32-x64@0.25.12':
187
- resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
208
+ '@esbuild/win32-x64@0.27.2':
209
+ resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
188
210
  engines: {node: '>=18'}
189
211
  cpu: [x64]
190
212
  os: [win32]
191
213
 
214
+ '@eslint-community/eslint-utils@4.9.1':
215
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
216
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
217
+ peerDependencies:
218
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
219
+
220
+ '@eslint-community/regexpp@4.12.2':
221
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
222
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
223
+
224
+ '@eslint/config-array@0.21.1':
225
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
226
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
227
+
228
+ '@eslint/config-helpers@0.4.2':
229
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
230
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
231
+
232
+ '@eslint/core@0.17.0':
233
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
234
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
235
+
236
+ '@eslint/eslintrc@3.3.3':
237
+ resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
238
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
239
+
240
+ '@eslint/js@9.39.2':
241
+ resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
242
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
243
+
244
+ '@eslint/object-schema@2.1.7':
245
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
246
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
247
+
248
+ '@eslint/plugin-kit@0.4.1':
249
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
250
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
251
+
252
+ '@humanfs/core@0.19.1':
253
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
254
+ engines: {node: '>=18.18.0'}
255
+
256
+ '@humanfs/node@0.16.7':
257
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
258
+ engines: {node: '>=18.18.0'}
259
+
260
+ '@humanwhocodes/module-importer@1.0.1':
261
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
262
+ engines: {node: '>=12.22'}
263
+
264
+ '@humanwhocodes/retry@0.4.3':
265
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
266
+ engines: {node: '>=18.18'}
267
+
192
268
  '@jridgewell/gen-mapping@0.3.13':
193
269
  resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
194
270
 
@@ -202,6 +278,16 @@ packages:
202
278
  '@jridgewell/trace-mapping@0.3.31':
203
279
  resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
204
280
 
281
+ '@langchain/core@1.1.16':
282
+ resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
283
+ engines: {node: '>=20'}
284
+
285
+ '@langchain/openai@1.2.3':
286
+ resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
287
+ engines: {node: '>=20'}
288
+ peerDependencies:
289
+ '@langchain/core': ^1.0.0
290
+
205
291
  '@nodelib/fs.scandir@2.1.5':
206
292
  resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
207
293
  engines: {node: '>= 8'}
@@ -214,130 +300,266 @@ packages:
214
300
  resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
215
301
  engines: {node: '>= 8'}
216
302
 
217
- '@rollup/rollup-android-arm-eabi@4.54.0':
218
- resolution: {integrity: sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==}
303
+ '@rollup/rollup-android-arm-eabi@4.55.3':
304
+ resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
219
305
  cpu: [arm]
220
306
  os: [android]
221
307
 
222
- '@rollup/rollup-android-arm64@4.54.0':
223
- resolution: {integrity: sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==}
308
+ '@rollup/rollup-android-arm64@4.55.3':
309
+ resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
224
310
  cpu: [arm64]
225
311
  os: [android]
226
312
 
227
- '@rollup/rollup-darwin-arm64@4.54.0':
228
- resolution: {integrity: sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==}
313
+ '@rollup/rollup-darwin-arm64@4.55.3':
314
+ resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
229
315
  cpu: [arm64]
230
316
  os: [darwin]
231
317
 
232
- '@rollup/rollup-darwin-x64@4.54.0':
233
- resolution: {integrity: sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==}
318
+ '@rollup/rollup-darwin-x64@4.55.3':
319
+ resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
234
320
  cpu: [x64]
235
321
  os: [darwin]
236
322
 
237
- '@rollup/rollup-freebsd-arm64@4.54.0':
238
- resolution: {integrity: sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==}
323
+ '@rollup/rollup-freebsd-arm64@4.55.3':
324
+ resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
239
325
  cpu: [arm64]
240
326
  os: [freebsd]
241
327
 
242
- '@rollup/rollup-freebsd-x64@4.54.0':
243
- resolution: {integrity: sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==}
328
+ '@rollup/rollup-freebsd-x64@4.55.3':
329
+ resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
244
330
  cpu: [x64]
245
331
  os: [freebsd]
246
332
 
247
- '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
248
- resolution: {integrity: sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==}
333
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
334
+ resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
249
335
  cpu: [arm]
250
336
  os: [linux]
251
337
  libc: [glibc]
252
338
 
253
- '@rollup/rollup-linux-arm-musleabihf@4.54.0':
254
- resolution: {integrity: sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==}
339
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
340
+ resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
255
341
  cpu: [arm]
256
342
  os: [linux]
257
343
  libc: [musl]
258
344
 
259
- '@rollup/rollup-linux-arm64-gnu@4.54.0':
260
- resolution: {integrity: sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==}
345
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
346
+ resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
261
347
  cpu: [arm64]
262
348
  os: [linux]
263
349
  libc: [glibc]
264
350
 
265
- '@rollup/rollup-linux-arm64-musl@4.54.0':
266
- resolution: {integrity: sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==}
351
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
352
+ resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
267
353
  cpu: [arm64]
268
354
  os: [linux]
269
355
  libc: [musl]
270
356
 
271
- '@rollup/rollup-linux-loong64-gnu@4.54.0':
272
- resolution: {integrity: sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==}
357
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
358
+ resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
273
359
  cpu: [loong64]
274
360
  os: [linux]
275
361
  libc: [glibc]
276
362
 
277
- '@rollup/rollup-linux-ppc64-gnu@4.54.0':
278
- resolution: {integrity: sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==}
363
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
364
+ resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
365
+ cpu: [loong64]
366
+ os: [linux]
367
+ libc: [musl]
368
+
369
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
370
+ resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
279
371
  cpu: [ppc64]
280
372
  os: [linux]
281
373
  libc: [glibc]
282
374
 
283
- '@rollup/rollup-linux-riscv64-gnu@4.54.0':
284
- resolution: {integrity: sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==}
375
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
376
+ resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
377
+ cpu: [ppc64]
378
+ os: [linux]
379
+ libc: [musl]
380
+
381
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
382
+ resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
285
383
  cpu: [riscv64]
286
384
  os: [linux]
287
385
  libc: [glibc]
288
386
 
289
- '@rollup/rollup-linux-riscv64-musl@4.54.0':
290
- resolution: {integrity: sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==}
387
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
388
+ resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
291
389
  cpu: [riscv64]
292
390
  os: [linux]
293
391
  libc: [musl]
294
392
 
295
- '@rollup/rollup-linux-s390x-gnu@4.54.0':
296
- resolution: {integrity: sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==}
393
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
394
+ resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
297
395
  cpu: [s390x]
298
396
  os: [linux]
299
397
  libc: [glibc]
300
398
 
301
- '@rollup/rollup-linux-x64-gnu@4.54.0':
302
- resolution: {integrity: sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==}
399
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
400
+ resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
303
401
  cpu: [x64]
304
402
  os: [linux]
305
403
  libc: [glibc]
306
404
 
307
- '@rollup/rollup-linux-x64-musl@4.54.0':
308
- resolution: {integrity: sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==}
405
+ '@rollup/rollup-linux-x64-musl@4.55.3':
406
+ resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
309
407
  cpu: [x64]
310
408
  os: [linux]
311
409
  libc: [musl]
312
410
 
313
- '@rollup/rollup-openharmony-arm64@4.54.0':
314
- resolution: {integrity: sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==}
411
+ '@rollup/rollup-openbsd-x64@4.55.3':
412
+ resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
413
+ cpu: [x64]
414
+ os: [openbsd]
415
+
416
+ '@rollup/rollup-openharmony-arm64@4.55.3':
417
+ resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
315
418
  cpu: [arm64]
316
419
  os: [openharmony]
317
420
 
318
- '@rollup/rollup-win32-arm64-msvc@4.54.0':
319
- resolution: {integrity: sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==}
421
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
422
+ resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
320
423
  cpu: [arm64]
321
424
  os: [win32]
322
425
 
323
- '@rollup/rollup-win32-ia32-msvc@4.54.0':
324
- resolution: {integrity: sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==}
426
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
427
+ resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
325
428
  cpu: [ia32]
326
429
  os: [win32]
327
430
 
328
- '@rollup/rollup-win32-x64-gnu@4.54.0':
329
- resolution: {integrity: sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==}
431
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
432
+ resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
330
433
  cpu: [x64]
331
434
  os: [win32]
332
435
 
333
- '@rollup/rollup-win32-x64-msvc@4.54.0':
334
- resolution: {integrity: sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==}
436
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
437
+ resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
335
438
  cpu: [x64]
336
439
  os: [win32]
337
440
 
441
+ '@supabase/auth-js@2.95.3':
442
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
443
+ engines: {node: '>=20.0.0'}
444
+
445
+ '@supabase/functions-js@2.95.3':
446
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
447
+ engines: {node: '>=20.0.0'}
448
+
449
+ '@supabase/postgrest-js@2.95.3':
450
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
451
+ engines: {node: '>=20.0.0'}
452
+
453
+ '@supabase/realtime-js@2.95.3':
454
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
455
+ engines: {node: '>=20.0.0'}
456
+
457
+ '@supabase/storage-js@2.95.3':
458
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
459
+ engines: {node: '>=20.0.0'}
460
+
461
+ '@supabase/supabase-js@2.95.3':
462
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
463
+ engines: {node: '>=20.0.0'}
464
+
338
465
  '@types/estree@1.0.8':
339
466
  resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
340
467
 
468
+ '@types/json-schema@7.0.15':
469
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
470
+
471
+ '@types/node@25.2.3':
472
+ resolution: {integrity: sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==}
473
+
474
+ '@types/phoenix@1.6.7':
475
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
476
+
477
+ '@types/uuid@10.0.0':
478
+ resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
479
+
480
+ '@types/ws@8.18.1':
481
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
482
+
483
+ '@typescript-eslint/eslint-plugin@8.53.1':
484
+ resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
485
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
486
+ peerDependencies:
487
+ '@typescript-eslint/parser': ^8.53.1
488
+ eslint: ^8.57.0 || ^9.0.0
489
+ typescript: '>=4.8.4 <6.0.0'
490
+
491
+ '@typescript-eslint/parser@8.53.1':
492
+ resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
493
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
494
+ peerDependencies:
495
+ eslint: ^8.57.0 || ^9.0.0
496
+ typescript: '>=4.8.4 <6.0.0'
497
+
498
+ '@typescript-eslint/project-service@8.53.1':
499
+ resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
500
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
501
+ peerDependencies:
502
+ typescript: '>=4.8.4 <6.0.0'
503
+
504
+ '@typescript-eslint/scope-manager@8.53.1':
505
+ resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
506
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
507
+
508
+ '@typescript-eslint/tsconfig-utils@8.53.1':
509
+ resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
510
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
511
+ peerDependencies:
512
+ typescript: '>=4.8.4 <6.0.0'
513
+
514
+ '@typescript-eslint/type-utils@8.53.1':
515
+ resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
516
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
517
+ peerDependencies:
518
+ eslint: ^8.57.0 || ^9.0.0
519
+ typescript: '>=4.8.4 <6.0.0'
520
+
521
+ '@typescript-eslint/types@8.53.1':
522
+ resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
523
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
524
+
525
+ '@typescript-eslint/typescript-estree@8.53.1':
526
+ resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
527
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
528
+ peerDependencies:
529
+ typescript: '>=4.8.4 <6.0.0'
530
+
531
+ '@typescript-eslint/utils@8.53.1':
532
+ resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
533
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
534
+ peerDependencies:
535
+ eslint: ^8.57.0 || ^9.0.0
536
+ typescript: '>=4.8.4 <6.0.0'
537
+
538
+ '@typescript-eslint/visitor-keys@8.53.1':
539
+ resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
540
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
541
+
542
+ acorn-jsx@5.3.2:
543
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
544
+ peerDependencies:
545
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
546
+
547
+ acorn@8.15.0:
548
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
549
+ engines: {node: '>=0.4.0'}
550
+ hasBin: true
551
+
552
+ ajv@6.12.6:
553
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
554
+
555
+ ansi-styles@4.3.0:
556
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
557
+ engines: {node: '>=8'}
558
+
559
+ ansi-styles@5.2.0:
560
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
561
+ engines: {node: '>=10'}
562
+
341
563
  any-promise@1.3.0:
342
564
  resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
343
565
 
@@ -348,6 +570,12 @@ packages:
348
570
  arg@5.0.2:
349
571
  resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
350
572
 
573
+ argparse@2.0.1:
574
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
575
+
576
+ asynckit@0.4.0:
577
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
578
+
351
579
  autoprefixer@10.4.23:
352
580
  resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
353
581
  engines: {node: ^10 || ^12 || >=14}
@@ -355,14 +583,29 @@ packages:
355
583
  peerDependencies:
356
584
  postcss: ^8.1.0
357
585
 
358
- baseline-browser-mapping@2.9.11:
359
- resolution: {integrity: sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==}
586
+ axios@1.13.2:
587
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
588
+
589
+ balanced-match@1.0.2:
590
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
591
+
592
+ base64-js@1.5.1:
593
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
594
+
595
+ baseline-browser-mapping@2.9.16:
596
+ resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
360
597
  hasBin: true
361
598
 
362
599
  binary-extensions@2.3.0:
363
600
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
364
601
  engines: {node: '>=8'}
365
602
 
603
+ brace-expansion@1.1.12:
604
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
605
+
606
+ brace-expansion@2.0.2:
607
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
608
+
366
609
  braces@3.0.3:
367
610
  resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
368
611
  engines: {node: '>=8'}
@@ -372,37 +615,123 @@ packages:
372
615
  engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
373
616
  hasBin: true
374
617
 
618
+ call-bind-apply-helpers@1.0.2:
619
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
620
+ engines: {node: '>= 0.4'}
621
+
622
+ callsites@3.1.0:
623
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
624
+ engines: {node: '>=6'}
625
+
375
626
  camelcase-css@2.0.1:
376
627
  resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
377
628
  engines: {node: '>= 6'}
378
629
 
379
- caniuse-lite@1.0.30001762:
380
- resolution: {integrity: sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==}
630
+ camelcase@6.3.0:
631
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
632
+ engines: {node: '>=10'}
633
+
634
+ caniuse-lite@1.0.30001765:
635
+ resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
636
+
637
+ chalk@4.1.2:
638
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
639
+ engines: {node: '>=10'}
381
640
 
382
641
  chokidar@3.6.0:
383
642
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
384
643
  engines: {node: '>= 8.10.0'}
385
644
 
645
+ color-convert@2.0.1:
646
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
647
+ engines: {node: '>=7.0.0'}
648
+
649
+ color-name@1.1.4:
650
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
651
+
652
+ combined-stream@1.0.8:
653
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
654
+ engines: {node: '>= 0.8'}
655
+
386
656
  commander@4.1.1:
387
657
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
388
658
  engines: {node: '>= 6'}
389
659
 
660
+ concat-map@0.0.1:
661
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
662
+
663
+ console-table-printer@2.15.0:
664
+ resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
665
+
666
+ coze-coding-dev-sdk@0.7.16:
667
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
668
+ engines: {node: '>=18.0.0'}
669
+ hasBin: true
670
+
671
+ cross-spawn@7.0.6:
672
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
673
+ engines: {node: '>= 8'}
674
+
390
675
  cssesc@3.0.0:
391
676
  resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
392
677
  engines: {node: '>=4'}
393
678
  hasBin: true
394
679
 
680
+ debug@4.4.3:
681
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
682
+ engines: {node: '>=6.0'}
683
+ peerDependencies:
684
+ supports-color: '*'
685
+ peerDependenciesMeta:
686
+ supports-color:
687
+ optional: true
688
+
689
+ decamelize@1.2.0:
690
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
691
+ engines: {node: '>=0.10.0'}
692
+
693
+ deep-is@0.1.4:
694
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
695
+
696
+ delayed-stream@1.0.0:
697
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
698
+ engines: {node: '>=0.4.0'}
699
+
395
700
  didyoumean@1.2.2:
396
701
  resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
397
702
 
398
703
  dlv@1.1.3:
399
704
  resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
400
705
 
706
+ dotenv@17.2.4:
707
+ resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
708
+ engines: {node: '>=12'}
709
+
710
+ dunder-proto@1.0.1:
711
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
712
+ engines: {node: '>= 0.4'}
713
+
401
714
  electron-to-chromium@1.5.267:
402
715
  resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
403
716
 
404
- esbuild@0.25.12:
405
- resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
717
+ es-define-property@1.0.1:
718
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
719
+ engines: {node: '>= 0.4'}
720
+
721
+ es-errors@1.3.0:
722
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
723
+ engines: {node: '>= 0.4'}
724
+
725
+ es-object-atoms@1.1.1:
726
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
727
+ engines: {node: '>= 0.4'}
728
+
729
+ es-set-tostringtag@2.1.0:
730
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
731
+ engines: {node: '>= 0.4'}
732
+
733
+ esbuild@0.27.2:
734
+ resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
406
735
  engines: {node: '>=18'}
407
736
  hasBin: true
408
737
 
@@ -410,10 +739,68 @@ packages:
410
739
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
411
740
  engines: {node: '>=6'}
412
741
 
742
+ escape-string-regexp@4.0.0:
743
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
744
+ engines: {node: '>=10'}
745
+
746
+ eslint-scope@8.4.0:
747
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
748
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
749
+
750
+ eslint-visitor-keys@3.4.3:
751
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
752
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
753
+
754
+ eslint-visitor-keys@4.2.1:
755
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
756
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
757
+
758
+ eslint@9.39.2:
759
+ resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
760
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
761
+ hasBin: true
762
+ peerDependencies:
763
+ jiti: '*'
764
+ peerDependenciesMeta:
765
+ jiti:
766
+ optional: true
767
+
768
+ espree@10.4.0:
769
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
770
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
771
+
772
+ esquery@1.7.0:
773
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
774
+ engines: {node: '>=0.10'}
775
+
776
+ esrecurse@4.3.0:
777
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
778
+ engines: {node: '>=4.0'}
779
+
780
+ estraverse@5.3.0:
781
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
782
+ engines: {node: '>=4.0'}
783
+
784
+ esutils@2.0.3:
785
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
786
+ engines: {node: '>=0.10.0'}
787
+
788
+ eventemitter3@4.0.7:
789
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
790
+
791
+ fast-deep-equal@3.1.3:
792
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
793
+
413
794
  fast-glob@3.3.3:
414
795
  resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
415
796
  engines: {node: '>=8.6.0'}
416
797
 
798
+ fast-json-stable-stringify@2.1.0:
799
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
800
+
801
+ fast-levenshtein@2.0.6:
802
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
803
+
417
804
  fastq@1.20.1:
418
805
  resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
419
806
 
@@ -426,10 +813,38 @@ packages:
426
813
  picomatch:
427
814
  optional: true
428
815
 
816
+ file-entry-cache@8.0.0:
817
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
818
+ engines: {node: '>=16.0.0'}
819
+
429
820
  fill-range@7.1.1:
430
821
  resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
431
822
  engines: {node: '>=8'}
432
823
 
824
+ find-up@5.0.0:
825
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
826
+ engines: {node: '>=10'}
827
+
828
+ flat-cache@4.0.1:
829
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
830
+ engines: {node: '>=16'}
831
+
832
+ flatted@3.3.3:
833
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
834
+
835
+ follow-redirects@1.15.11:
836
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
837
+ engines: {node: '>=4.0'}
838
+ peerDependencies:
839
+ debug: '*'
840
+ peerDependenciesMeta:
841
+ debug:
842
+ optional: true
843
+
844
+ form-data@4.0.5:
845
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
846
+ engines: {node: '>= 6'}
847
+
433
848
  fraction.js@5.3.4:
434
849
  resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
435
850
 
@@ -441,6 +856,14 @@ packages:
441
856
  function-bind@1.1.2:
442
857
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
443
858
 
859
+ get-intrinsic@1.3.0:
860
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
861
+ engines: {node: '>= 0.4'}
862
+
863
+ get-proto@1.0.1:
864
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
865
+ engines: {node: '>= 0.4'}
866
+
444
867
  glob-parent@5.1.2:
445
868
  resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
446
869
  engines: {node: '>= 6'}
@@ -449,10 +872,50 @@ packages:
449
872
  resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
450
873
  engines: {node: '>=10.13.0'}
451
874
 
875
+ globals@14.0.0:
876
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
877
+ engines: {node: '>=18'}
878
+
879
+ gopd@1.2.0:
880
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
881
+ engines: {node: '>= 0.4'}
882
+
883
+ has-flag@4.0.0:
884
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
885
+ engines: {node: '>=8'}
886
+
887
+ has-symbols@1.1.0:
888
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
889
+ engines: {node: '>= 0.4'}
890
+
891
+ has-tostringtag@1.0.2:
892
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
893
+ engines: {node: '>= 0.4'}
894
+
452
895
  hasown@2.0.2:
453
896
  resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
454
897
  engines: {node: '>= 0.4'}
455
898
 
899
+ iceberg-js@0.8.1:
900
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
901
+ engines: {node: '>=20.0.0'}
902
+
903
+ ignore@5.3.2:
904
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
905
+ engines: {node: '>= 4'}
906
+
907
+ ignore@7.0.5:
908
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
909
+ engines: {node: '>= 4'}
910
+
911
+ import-fresh@3.3.1:
912
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
913
+ engines: {node: '>=6'}
914
+
915
+ imurmurhash@0.1.4:
916
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
917
+ engines: {node: '>=0.8.19'}
918
+
456
919
  is-binary-path@2.1.0:
457
920
  resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
458
921
  engines: {node: '>=8'}
@@ -473,10 +936,53 @@ packages:
473
936
  resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
474
937
  engines: {node: '>=0.12.0'}
475
938
 
939
+ isexe@2.0.0:
940
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
941
+
476
942
  jiti@1.21.7:
477
943
  resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
478
944
  hasBin: true
479
945
 
946
+ js-tiktoken@1.0.21:
947
+ resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
948
+
949
+ js-yaml@4.1.1:
950
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
951
+ hasBin: true
952
+
953
+ json-buffer@3.0.1:
954
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
955
+
956
+ json-schema-traverse@0.4.1:
957
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
958
+
959
+ json-stable-stringify-without-jsonify@1.0.1:
960
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
961
+
962
+ keyv@4.5.4:
963
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
964
+
965
+ langsmith@0.4.7:
966
+ resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
967
+ peerDependencies:
968
+ '@opentelemetry/api': '*'
969
+ '@opentelemetry/exporter-trace-otlp-proto': '*'
970
+ '@opentelemetry/sdk-trace-base': '*'
971
+ openai: '*'
972
+ peerDependenciesMeta:
973
+ '@opentelemetry/api':
974
+ optional: true
975
+ '@opentelemetry/exporter-trace-otlp-proto':
976
+ optional: true
977
+ '@opentelemetry/sdk-trace-base':
978
+ optional: true
979
+ openai:
980
+ optional: true
981
+
982
+ levn@0.4.1:
983
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
984
+ engines: {node: '>= 0.8.0'}
985
+
480
986
  lilconfig@3.1.3:
481
987
  resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
482
988
  engines: {node: '>=14'}
@@ -484,6 +990,17 @@ packages:
484
990
  lines-and-columns@1.2.4:
485
991
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
486
992
 
993
+ locate-path@6.0.0:
994
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
995
+ engines: {node: '>=10'}
996
+
997
+ lodash.merge@4.6.2:
998
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
999
+
1000
+ math-intrinsics@1.1.0:
1001
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1002
+ engines: {node: '>= 0.4'}
1003
+
487
1004
  merge2@1.4.1:
488
1005
  resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
489
1006
  engines: {node: '>= 8'}
@@ -492,6 +1009,28 @@ packages:
492
1009
  resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
493
1010
  engines: {node: '>=8.6'}
494
1011
 
1012
+ mime-db@1.52.0:
1013
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
1014
+ engines: {node: '>= 0.6'}
1015
+
1016
+ mime-types@2.1.35:
1017
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1018
+ engines: {node: '>= 0.6'}
1019
+
1020
+ minimatch@3.1.2:
1021
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1022
+
1023
+ minimatch@9.0.5:
1024
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1025
+ engines: {node: '>=16 || 14 >=14.17'}
1026
+
1027
+ ms@2.1.3:
1028
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1029
+
1030
+ mustache@4.2.0:
1031
+ resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
1032
+ hasBin: true
1033
+
495
1034
  mz@2.7.0:
496
1035
  resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
497
1036
 
@@ -500,6 +1039,9 @@ packages:
500
1039
  engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
501
1040
  hasBin: true
502
1041
 
1042
+ natural-compare@1.4.0:
1043
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1044
+
503
1045
  node-releases@2.0.27:
504
1046
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
505
1047
 
@@ -519,9 +1061,88 @@ packages:
519
1061
  resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
520
1062
  hasBin: true
521
1063
 
1064
+ openai@6.16.0:
1065
+ resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
1066
+ hasBin: true
1067
+ peerDependencies:
1068
+ ws: ^8.18.0
1069
+ zod: ^3.25 || ^4.0
1070
+ peerDependenciesMeta:
1071
+ ws:
1072
+ optional: true
1073
+ zod:
1074
+ optional: true
1075
+
1076
+ optionator@0.9.4:
1077
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1078
+ engines: {node: '>= 0.8.0'}
1079
+
1080
+ p-finally@1.0.0:
1081
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
1082
+ engines: {node: '>=4'}
1083
+
1084
+ p-limit@3.1.0:
1085
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1086
+ engines: {node: '>=10'}
1087
+
1088
+ p-locate@5.0.0:
1089
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1090
+ engines: {node: '>=10'}
1091
+
1092
+ p-queue@6.6.2:
1093
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
1094
+ engines: {node: '>=8'}
1095
+
1096
+ p-timeout@3.2.0:
1097
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
1098
+ engines: {node: '>=8'}
1099
+
1100
+ parent-module@1.0.1:
1101
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1102
+ engines: {node: '>=6'}
1103
+
1104
+ path-exists@4.0.0:
1105
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1106
+ engines: {node: '>=8'}
1107
+
1108
+ path-key@3.1.1:
1109
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1110
+ engines: {node: '>=8'}
1111
+
522
1112
  path-parse@1.0.7:
523
1113
  resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
524
1114
 
1115
+ pg-connection-string@2.10.1:
1116
+ resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
1117
+
1118
+ pg-int8@1.0.1:
1119
+ resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
1120
+ engines: {node: '>=4.0.0'}
1121
+
1122
+ pg-pool@3.11.0:
1123
+ resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
1124
+ peerDependencies:
1125
+ pg: '>=8.0'
1126
+
1127
+ pg-protocol@1.11.0:
1128
+ resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
1129
+
1130
+ pg-types@2.2.0:
1131
+ resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
1132
+ engines: {node: '>=4'}
1133
+
1134
+ pg@8.17.2:
1135
+ resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
1136
+ engines: {node: '>= 16.0.0'}
1137
+ peerDependencies:
1138
+ pg-native: '>=3.0.1'
1139
+ peerDependenciesMeta:
1140
+ pg-native:
1141
+ optional: true
1142
+
1143
+ pgpass@1.0.5:
1144
+ resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
1145
+
525
1146
  picocolors@1.1.1:
526
1147
  resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
527
1148
 
@@ -588,6 +1209,33 @@ packages:
588
1209
  resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
589
1210
  engines: {node: ^10 || ^12 || >=14}
590
1211
 
1212
+ postgres-array@2.0.0:
1213
+ resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
1214
+ engines: {node: '>=4'}
1215
+
1216
+ postgres-bytea@1.0.1:
1217
+ resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
1218
+ engines: {node: '>=0.10.0'}
1219
+
1220
+ postgres-date@1.0.7:
1221
+ resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
1222
+ engines: {node: '>=0.10.0'}
1223
+
1224
+ postgres-interval@1.2.0:
1225
+ resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
1226
+ engines: {node: '>=0.10.0'}
1227
+
1228
+ prelude-ls@1.2.1:
1229
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1230
+ engines: {node: '>= 0.8.0'}
1231
+
1232
+ proxy-from-env@1.1.0:
1233
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
1234
+
1235
+ punycode@2.3.1:
1236
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1237
+ engines: {node: '>=6'}
1238
+
591
1239
  queue-microtask@1.2.3:
592
1240
  resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
593
1241
 
@@ -598,6 +1246,10 @@ packages:
598
1246
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
599
1247
  engines: {node: '>=8.10.0'}
600
1248
 
1249
+ resolve-from@4.0.0:
1250
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1251
+ engines: {node: '>=4'}
1252
+
601
1253
  resolve@1.22.11:
602
1254
  resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
603
1255
  engines: {node: '>= 0.4'}
@@ -607,23 +1259,51 @@ packages:
607
1259
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
608
1260
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
609
1261
 
610
- rollup@4.54.0:
611
- resolution: {integrity: sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==}
1262
+ rollup@4.55.3:
1263
+ resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
612
1264
  engines: {node: '>=18.0.0', npm: '>=8.0.0'}
613
1265
  hasBin: true
614
1266
 
615
1267
  run-parallel@1.2.0:
616
1268
  resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
617
1269
 
1270
+ semver@7.7.3:
1271
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
1272
+ engines: {node: '>=10'}
1273
+ hasBin: true
1274
+
1275
+ shebang-command@2.0.0:
1276
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1277
+ engines: {node: '>=8'}
1278
+
1279
+ shebang-regex@3.0.0:
1280
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1281
+ engines: {node: '>=8'}
1282
+
1283
+ simple-wcswidth@1.1.2:
1284
+ resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
1285
+
618
1286
  source-map-js@1.2.1:
619
1287
  resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
620
1288
  engines: {node: '>=0.10.0'}
621
1289
 
1290
+ split2@4.2.0:
1291
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
1292
+ engines: {node: '>= 10.x'}
1293
+
1294
+ strip-json-comments@3.1.1:
1295
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1296
+ engines: {node: '>=8'}
1297
+
622
1298
  sucrase@3.35.1:
623
1299
  resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
624
1300
  engines: {node: '>=16 || 14 >=14.17'}
625
1301
  hasBin: true
626
1302
 
1303
+ supports-color@7.2.0:
1304
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1305
+ engines: {node: '>=8'}
1306
+
627
1307
  supports-preserve-symlinks-flag@1.0.0:
628
1308
  resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
629
1309
  engines: {node: '>= 0.4'}
@@ -648,36 +1328,66 @@ packages:
648
1328
  resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
649
1329
  engines: {node: '>=8.0'}
650
1330
 
1331
+ ts-api-utils@2.4.0:
1332
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
1333
+ engines: {node: '>=18.12'}
1334
+ peerDependencies:
1335
+ typescript: '>=4.8.4'
1336
+
651
1337
  ts-interface-checker@0.1.13:
652
1338
  resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
653
1339
 
1340
+ tslib@2.8.1:
1341
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1342
+
1343
+ type-check@0.4.0:
1344
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1345
+ engines: {node: '>= 0.8.0'}
1346
+
1347
+ typescript-eslint@8.53.1:
1348
+ resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
1349
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1350
+ peerDependencies:
1351
+ eslint: ^8.57.0 || ^9.0.0
1352
+ typescript: '>=4.8.4 <6.0.0'
1353
+
654
1354
  typescript@5.9.3:
655
1355
  resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
656
1356
  engines: {node: '>=14.17'}
657
1357
  hasBin: true
658
1358
 
1359
+ undici-types@7.16.0:
1360
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
1361
+
659
1362
  update-browserslist-db@1.2.3:
660
1363
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
661
1364
  hasBin: true
662
1365
  peerDependencies:
663
1366
  browserslist: '>= 4.21.0'
664
1367
 
1368
+ uri-js@4.4.1:
1369
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1370
+
665
1371
  util-deprecate@1.0.2:
666
1372
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
667
1373
 
668
- vite@6.4.1:
669
- resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
670
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1374
+ uuid@10.0.0:
1375
+ resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
1376
+ hasBin: true
1377
+
1378
+ vite@7.3.1:
1379
+ resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
1380
+ engines: {node: ^20.19.0 || >=22.12.0}
671
1381
  hasBin: true
672
1382
  peerDependencies:
673
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
1383
+ '@types/node': ^20.19.0 || >=22.12.0
674
1384
  jiti: '>=1.21.0'
675
- less: '*'
1385
+ less: ^4.0.0
676
1386
  lightningcss: ^1.21.0
677
- sass: '*'
678
- sass-embedded: '*'
679
- stylus: '*'
680
- sugarss: '*'
1387
+ sass: ^1.70.0
1388
+ sass-embedded: ^1.70.0
1389
+ stylus: '>=0.54.8'
1390
+ sugarss: ^5.0.0
681
1391
  terser: ^5.16.0
682
1392
  tsx: ^4.8.1
683
1393
  yaml: ^2.4.2
@@ -709,88 +1419,179 @@ packages:
709
1419
  resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
710
1420
  engines: {node: '>=4'}
711
1421
 
1422
+ which@2.0.2:
1423
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1424
+ engines: {node: '>= 8'}
1425
+ hasBin: true
1426
+
1427
+ word-wrap@1.2.5:
1428
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1429
+ engines: {node: '>=0.10.0'}
1430
+
1431
+ ws@8.19.0:
1432
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
1433
+ engines: {node: '>=10.0.0'}
1434
+ peerDependencies:
1435
+ bufferutil: ^4.0.1
1436
+ utf-8-validate: '>=5.0.2'
1437
+ peerDependenciesMeta:
1438
+ bufferutil:
1439
+ optional: true
1440
+ utf-8-validate:
1441
+ optional: true
1442
+
1443
+ xtend@4.0.2:
1444
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
1445
+ engines: {node: '>=0.4'}
1446
+
1447
+ yocto-queue@0.1.0:
1448
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1449
+ engines: {node: '>=10'}
1450
+
1451
+ zod@4.3.5:
1452
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
1453
+
712
1454
  snapshots:
713
1455
 
714
1456
  '@alloc/quick-lru@5.2.0': {}
715
1457
 
716
- '@esbuild/aix-ppc64@0.25.12':
1458
+ '@cfworker/json-schema@4.1.1': {}
1459
+
1460
+ '@esbuild/aix-ppc64@0.27.2':
717
1461
  optional: true
718
1462
 
719
- '@esbuild/android-arm64@0.25.12':
1463
+ '@esbuild/android-arm64@0.27.2':
720
1464
  optional: true
721
1465
 
722
- '@esbuild/android-arm@0.25.12':
1466
+ '@esbuild/android-arm@0.27.2':
723
1467
  optional: true
724
1468
 
725
- '@esbuild/android-x64@0.25.12':
1469
+ '@esbuild/android-x64@0.27.2':
726
1470
  optional: true
727
1471
 
728
- '@esbuild/darwin-arm64@0.25.12':
1472
+ '@esbuild/darwin-arm64@0.27.2':
729
1473
  optional: true
730
1474
 
731
- '@esbuild/darwin-x64@0.25.12':
1475
+ '@esbuild/darwin-x64@0.27.2':
732
1476
  optional: true
733
1477
 
734
- '@esbuild/freebsd-arm64@0.25.12':
1478
+ '@esbuild/freebsd-arm64@0.27.2':
735
1479
  optional: true
736
1480
 
737
- '@esbuild/freebsd-x64@0.25.12':
1481
+ '@esbuild/freebsd-x64@0.27.2':
738
1482
  optional: true
739
1483
 
740
- '@esbuild/linux-arm64@0.25.12':
1484
+ '@esbuild/linux-arm64@0.27.2':
741
1485
  optional: true
742
1486
 
743
- '@esbuild/linux-arm@0.25.12':
1487
+ '@esbuild/linux-arm@0.27.2':
744
1488
  optional: true
745
1489
 
746
- '@esbuild/linux-ia32@0.25.12':
1490
+ '@esbuild/linux-ia32@0.27.2':
747
1491
  optional: true
748
1492
 
749
- '@esbuild/linux-loong64@0.25.12':
1493
+ '@esbuild/linux-loong64@0.27.2':
750
1494
  optional: true
751
1495
 
752
- '@esbuild/linux-mips64el@0.25.12':
1496
+ '@esbuild/linux-mips64el@0.27.2':
753
1497
  optional: true
754
1498
 
755
- '@esbuild/linux-ppc64@0.25.12':
1499
+ '@esbuild/linux-ppc64@0.27.2':
756
1500
  optional: true
757
1501
 
758
- '@esbuild/linux-riscv64@0.25.12':
1502
+ '@esbuild/linux-riscv64@0.27.2':
759
1503
  optional: true
760
1504
 
761
- '@esbuild/linux-s390x@0.25.12':
1505
+ '@esbuild/linux-s390x@0.27.2':
762
1506
  optional: true
763
1507
 
764
- '@esbuild/linux-x64@0.25.12':
1508
+ '@esbuild/linux-x64@0.27.2':
765
1509
  optional: true
766
1510
 
767
- '@esbuild/netbsd-arm64@0.25.12':
1511
+ '@esbuild/netbsd-arm64@0.27.2':
768
1512
  optional: true
769
1513
 
770
- '@esbuild/netbsd-x64@0.25.12':
1514
+ '@esbuild/netbsd-x64@0.27.2':
771
1515
  optional: true
772
1516
 
773
- '@esbuild/openbsd-arm64@0.25.12':
1517
+ '@esbuild/openbsd-arm64@0.27.2':
774
1518
  optional: true
775
1519
 
776
- '@esbuild/openbsd-x64@0.25.12':
1520
+ '@esbuild/openbsd-x64@0.27.2':
777
1521
  optional: true
778
1522
 
779
- '@esbuild/openharmony-arm64@0.25.12':
1523
+ '@esbuild/openharmony-arm64@0.27.2':
780
1524
  optional: true
781
1525
 
782
- '@esbuild/sunos-x64@0.25.12':
1526
+ '@esbuild/sunos-x64@0.27.2':
783
1527
  optional: true
784
1528
 
785
- '@esbuild/win32-arm64@0.25.12':
1529
+ '@esbuild/win32-arm64@0.27.2':
786
1530
  optional: true
787
1531
 
788
- '@esbuild/win32-ia32@0.25.12':
1532
+ '@esbuild/win32-ia32@0.27.2':
789
1533
  optional: true
790
1534
 
791
- '@esbuild/win32-x64@0.25.12':
1535
+ '@esbuild/win32-x64@0.27.2':
792
1536
  optional: true
793
1537
 
1538
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@1.21.7))':
1539
+ dependencies:
1540
+ eslint: 9.39.2(jiti@1.21.7)
1541
+ eslint-visitor-keys: 3.4.3
1542
+
1543
+ '@eslint-community/regexpp@4.12.2': {}
1544
+
1545
+ '@eslint/config-array@0.21.1':
1546
+ dependencies:
1547
+ '@eslint/object-schema': 2.1.7
1548
+ debug: 4.4.3
1549
+ minimatch: 3.1.2
1550
+ transitivePeerDependencies:
1551
+ - supports-color
1552
+
1553
+ '@eslint/config-helpers@0.4.2':
1554
+ dependencies:
1555
+ '@eslint/core': 0.17.0
1556
+
1557
+ '@eslint/core@0.17.0':
1558
+ dependencies:
1559
+ '@types/json-schema': 7.0.15
1560
+
1561
+ '@eslint/eslintrc@3.3.3':
1562
+ dependencies:
1563
+ ajv: 6.12.6
1564
+ debug: 4.4.3
1565
+ espree: 10.4.0
1566
+ globals: 14.0.0
1567
+ ignore: 5.3.2
1568
+ import-fresh: 3.3.1
1569
+ js-yaml: 4.1.1
1570
+ minimatch: 3.1.2
1571
+ strip-json-comments: 3.1.1
1572
+ transitivePeerDependencies:
1573
+ - supports-color
1574
+
1575
+ '@eslint/js@9.39.2': {}
1576
+
1577
+ '@eslint/object-schema@2.1.7': {}
1578
+
1579
+ '@eslint/plugin-kit@0.4.1':
1580
+ dependencies:
1581
+ '@eslint/core': 0.17.0
1582
+ levn: 0.4.1
1583
+
1584
+ '@humanfs/core@0.19.1': {}
1585
+
1586
+ '@humanfs/node@0.16.7':
1587
+ dependencies:
1588
+ '@humanfs/core': 0.19.1
1589
+ '@humanwhocodes/retry': 0.4.3
1590
+
1591
+ '@humanwhocodes/module-importer@1.0.1': {}
1592
+
1593
+ '@humanwhocodes/retry@0.4.3': {}
1594
+
794
1595
  '@jridgewell/gen-mapping@0.3.13':
795
1596
  dependencies:
796
1597
  '@jridgewell/sourcemap-codec': 1.5.5
@@ -805,6 +1606,33 @@ snapshots:
805
1606
  '@jridgewell/resolve-uri': 3.1.2
806
1607
  '@jridgewell/sourcemap-codec': 1.5.5
807
1608
 
1609
+ '@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
1610
+ dependencies:
1611
+ '@cfworker/json-schema': 4.1.1
1612
+ ansi-styles: 5.2.0
1613
+ camelcase: 6.3.0
1614
+ decamelize: 1.2.0
1615
+ js-tiktoken: 1.0.21
1616
+ langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1617
+ mustache: 4.2.0
1618
+ p-queue: 6.6.2
1619
+ uuid: 10.0.0
1620
+ zod: 4.3.5
1621
+ transitivePeerDependencies:
1622
+ - '@opentelemetry/api'
1623
+ - '@opentelemetry/exporter-trace-otlp-proto'
1624
+ - '@opentelemetry/sdk-trace-base'
1625
+ - openai
1626
+
1627
+ '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
1628
+ dependencies:
1629
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1630
+ js-tiktoken: 1.0.21
1631
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
1632
+ zod: 4.3.5
1633
+ transitivePeerDependencies:
1634
+ - ws
1635
+
808
1636
  '@nodelib/fs.scandir@2.1.5':
809
1637
  dependencies:
810
1638
  '@nodelib/fs.stat': 2.0.5
@@ -817,74 +1645,245 @@ snapshots:
817
1645
  '@nodelib/fs.scandir': 2.1.5
818
1646
  fastq: 1.20.1
819
1647
 
820
- '@rollup/rollup-android-arm-eabi@4.54.0':
1648
+ '@rollup/rollup-android-arm-eabi@4.55.3':
1649
+ optional: true
1650
+
1651
+ '@rollup/rollup-android-arm64@4.55.3':
1652
+ optional: true
1653
+
1654
+ '@rollup/rollup-darwin-arm64@4.55.3':
1655
+ optional: true
1656
+
1657
+ '@rollup/rollup-darwin-x64@4.55.3':
821
1658
  optional: true
822
1659
 
823
- '@rollup/rollup-android-arm64@4.54.0':
1660
+ '@rollup/rollup-freebsd-arm64@4.55.3':
824
1661
  optional: true
825
1662
 
826
- '@rollup/rollup-darwin-arm64@4.54.0':
1663
+ '@rollup/rollup-freebsd-x64@4.55.3':
827
1664
  optional: true
828
1665
 
829
- '@rollup/rollup-darwin-x64@4.54.0':
1666
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
830
1667
  optional: true
831
1668
 
832
- '@rollup/rollup-freebsd-arm64@4.54.0':
1669
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
833
1670
  optional: true
834
1671
 
835
- '@rollup/rollup-freebsd-x64@4.54.0':
1672
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
836
1673
  optional: true
837
1674
 
838
- '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
1675
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
839
1676
  optional: true
840
1677
 
841
- '@rollup/rollup-linux-arm-musleabihf@4.54.0':
1678
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
842
1679
  optional: true
843
1680
 
844
- '@rollup/rollup-linux-arm64-gnu@4.54.0':
1681
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
845
1682
  optional: true
846
1683
 
847
- '@rollup/rollup-linux-arm64-musl@4.54.0':
1684
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
848
1685
  optional: true
849
1686
 
850
- '@rollup/rollup-linux-loong64-gnu@4.54.0':
1687
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
851
1688
  optional: true
852
1689
 
853
- '@rollup/rollup-linux-ppc64-gnu@4.54.0':
1690
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
854
1691
  optional: true
855
1692
 
856
- '@rollup/rollup-linux-riscv64-gnu@4.54.0':
1693
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
857
1694
  optional: true
858
1695
 
859
- '@rollup/rollup-linux-riscv64-musl@4.54.0':
1696
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
860
1697
  optional: true
861
1698
 
862
- '@rollup/rollup-linux-s390x-gnu@4.54.0':
1699
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
863
1700
  optional: true
864
1701
 
865
- '@rollup/rollup-linux-x64-gnu@4.54.0':
1702
+ '@rollup/rollup-linux-x64-musl@4.55.3':
866
1703
  optional: true
867
1704
 
868
- '@rollup/rollup-linux-x64-musl@4.54.0':
1705
+ '@rollup/rollup-openbsd-x64@4.55.3':
869
1706
  optional: true
870
1707
 
871
- '@rollup/rollup-openharmony-arm64@4.54.0':
1708
+ '@rollup/rollup-openharmony-arm64@4.55.3':
872
1709
  optional: true
873
1710
 
874
- '@rollup/rollup-win32-arm64-msvc@4.54.0':
1711
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
875
1712
  optional: true
876
1713
 
877
- '@rollup/rollup-win32-ia32-msvc@4.54.0':
1714
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
878
1715
  optional: true
879
1716
 
880
- '@rollup/rollup-win32-x64-gnu@4.54.0':
1717
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
881
1718
  optional: true
882
1719
 
883
- '@rollup/rollup-win32-x64-msvc@4.54.0':
1720
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
884
1721
  optional: true
885
1722
 
1723
+ '@supabase/auth-js@2.95.3':
1724
+ dependencies:
1725
+ tslib: 2.8.1
1726
+
1727
+ '@supabase/functions-js@2.95.3':
1728
+ dependencies:
1729
+ tslib: 2.8.1
1730
+
1731
+ '@supabase/postgrest-js@2.95.3':
1732
+ dependencies:
1733
+ tslib: 2.8.1
1734
+
1735
+ '@supabase/realtime-js@2.95.3':
1736
+ dependencies:
1737
+ '@types/phoenix': 1.6.7
1738
+ '@types/ws': 8.18.1
1739
+ tslib: 2.8.1
1740
+ ws: 8.19.0
1741
+ transitivePeerDependencies:
1742
+ - bufferutil
1743
+ - utf-8-validate
1744
+
1745
+ '@supabase/storage-js@2.95.3':
1746
+ dependencies:
1747
+ iceberg-js: 0.8.1
1748
+ tslib: 2.8.1
1749
+
1750
+ '@supabase/supabase-js@2.95.3':
1751
+ dependencies:
1752
+ '@supabase/auth-js': 2.95.3
1753
+ '@supabase/functions-js': 2.95.3
1754
+ '@supabase/postgrest-js': 2.95.3
1755
+ '@supabase/realtime-js': 2.95.3
1756
+ '@supabase/storage-js': 2.95.3
1757
+ transitivePeerDependencies:
1758
+ - bufferutil
1759
+ - utf-8-validate
1760
+
886
1761
  '@types/estree@1.0.8': {}
887
1762
 
1763
+ '@types/json-schema@7.0.15': {}
1764
+
1765
+ '@types/node@25.2.3':
1766
+ dependencies:
1767
+ undici-types: 7.16.0
1768
+
1769
+ '@types/phoenix@1.6.7': {}
1770
+
1771
+ '@types/uuid@10.0.0': {}
1772
+
1773
+ '@types/ws@8.18.1':
1774
+ dependencies:
1775
+ '@types/node': 25.2.3
1776
+
1777
+ '@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1778
+ dependencies:
1779
+ '@eslint-community/regexpp': 4.12.2
1780
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1781
+ '@typescript-eslint/scope-manager': 8.53.1
1782
+ '@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1783
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1784
+ '@typescript-eslint/visitor-keys': 8.53.1
1785
+ eslint: 9.39.2(jiti@1.21.7)
1786
+ ignore: 7.0.5
1787
+ natural-compare: 1.4.0
1788
+ ts-api-utils: 2.4.0(typescript@5.9.3)
1789
+ typescript: 5.9.3
1790
+ transitivePeerDependencies:
1791
+ - supports-color
1792
+
1793
+ '@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1794
+ dependencies:
1795
+ '@typescript-eslint/scope-manager': 8.53.1
1796
+ '@typescript-eslint/types': 8.53.1
1797
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
1798
+ '@typescript-eslint/visitor-keys': 8.53.1
1799
+ debug: 4.4.3
1800
+ eslint: 9.39.2(jiti@1.21.7)
1801
+ typescript: 5.9.3
1802
+ transitivePeerDependencies:
1803
+ - supports-color
1804
+
1805
+ '@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
1806
+ dependencies:
1807
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
1808
+ '@typescript-eslint/types': 8.53.1
1809
+ debug: 4.4.3
1810
+ typescript: 5.9.3
1811
+ transitivePeerDependencies:
1812
+ - supports-color
1813
+
1814
+ '@typescript-eslint/scope-manager@8.53.1':
1815
+ dependencies:
1816
+ '@typescript-eslint/types': 8.53.1
1817
+ '@typescript-eslint/visitor-keys': 8.53.1
1818
+
1819
+ '@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
1820
+ dependencies:
1821
+ typescript: 5.9.3
1822
+
1823
+ '@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1824
+ dependencies:
1825
+ '@typescript-eslint/types': 8.53.1
1826
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
1827
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1828
+ debug: 4.4.3
1829
+ eslint: 9.39.2(jiti@1.21.7)
1830
+ ts-api-utils: 2.4.0(typescript@5.9.3)
1831
+ typescript: 5.9.3
1832
+ transitivePeerDependencies:
1833
+ - supports-color
1834
+
1835
+ '@typescript-eslint/types@8.53.1': {}
1836
+
1837
+ '@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
1838
+ dependencies:
1839
+ '@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
1840
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
1841
+ '@typescript-eslint/types': 8.53.1
1842
+ '@typescript-eslint/visitor-keys': 8.53.1
1843
+ debug: 4.4.3
1844
+ minimatch: 9.0.5
1845
+ semver: 7.7.3
1846
+ tinyglobby: 0.2.15
1847
+ ts-api-utils: 2.4.0(typescript@5.9.3)
1848
+ typescript: 5.9.3
1849
+ transitivePeerDependencies:
1850
+ - supports-color
1851
+
1852
+ '@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1853
+ dependencies:
1854
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
1855
+ '@typescript-eslint/scope-manager': 8.53.1
1856
+ '@typescript-eslint/types': 8.53.1
1857
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
1858
+ eslint: 9.39.2(jiti@1.21.7)
1859
+ typescript: 5.9.3
1860
+ transitivePeerDependencies:
1861
+ - supports-color
1862
+
1863
+ '@typescript-eslint/visitor-keys@8.53.1':
1864
+ dependencies:
1865
+ '@typescript-eslint/types': 8.53.1
1866
+ eslint-visitor-keys: 4.2.1
1867
+
1868
+ acorn-jsx@5.3.2(acorn@8.15.0):
1869
+ dependencies:
1870
+ acorn: 8.15.0
1871
+
1872
+ acorn@8.15.0: {}
1873
+
1874
+ ajv@6.12.6:
1875
+ dependencies:
1876
+ fast-deep-equal: 3.1.3
1877
+ fast-json-stable-stringify: 2.1.0
1878
+ json-schema-traverse: 0.4.1
1879
+ uri-js: 4.4.1
1880
+
1881
+ ansi-styles@4.3.0:
1882
+ dependencies:
1883
+ color-convert: 2.0.1
1884
+
1885
+ ansi-styles@5.2.0: {}
1886
+
888
1887
  any-promise@1.3.0: {}
889
1888
 
890
1889
  anymatch@3.1.3:
@@ -894,34 +1893,73 @@ snapshots:
894
1893
 
895
1894
  arg@5.0.2: {}
896
1895
 
1896
+ argparse@2.0.1: {}
1897
+
1898
+ asynckit@0.4.0: {}
1899
+
897
1900
  autoprefixer@10.4.23(postcss@8.5.6):
898
1901
  dependencies:
899
1902
  browserslist: 4.28.1
900
- caniuse-lite: 1.0.30001762
1903
+ caniuse-lite: 1.0.30001765
901
1904
  fraction.js: 5.3.4
902
1905
  picocolors: 1.1.1
903
1906
  postcss: 8.5.6
904
1907
  postcss-value-parser: 4.2.0
905
1908
 
906
- baseline-browser-mapping@2.9.11: {}
1909
+ axios@1.13.2:
1910
+ dependencies:
1911
+ follow-redirects: 1.15.11
1912
+ form-data: 4.0.5
1913
+ proxy-from-env: 1.1.0
1914
+ transitivePeerDependencies:
1915
+ - debug
1916
+
1917
+ balanced-match@1.0.2: {}
1918
+
1919
+ base64-js@1.5.1: {}
1920
+
1921
+ baseline-browser-mapping@2.9.16: {}
907
1922
 
908
1923
  binary-extensions@2.3.0: {}
909
1924
 
1925
+ brace-expansion@1.1.12:
1926
+ dependencies:
1927
+ balanced-match: 1.0.2
1928
+ concat-map: 0.0.1
1929
+
1930
+ brace-expansion@2.0.2:
1931
+ dependencies:
1932
+ balanced-match: 1.0.2
1933
+
910
1934
  braces@3.0.3:
911
1935
  dependencies:
912
1936
  fill-range: 7.1.1
913
1937
 
914
1938
  browserslist@4.28.1:
915
1939
  dependencies:
916
- baseline-browser-mapping: 2.9.11
917
- caniuse-lite: 1.0.30001762
1940
+ baseline-browser-mapping: 2.9.16
1941
+ caniuse-lite: 1.0.30001765
918
1942
  electron-to-chromium: 1.5.267
919
1943
  node-releases: 2.0.27
920
1944
  update-browserslist-db: 1.2.3(browserslist@4.28.1)
921
1945
 
1946
+ call-bind-apply-helpers@1.0.2:
1947
+ dependencies:
1948
+ es-errors: 1.3.0
1949
+ function-bind: 1.1.2
1950
+
1951
+ callsites@3.1.0: {}
1952
+
922
1953
  camelcase-css@2.0.1: {}
923
1954
 
924
- caniuse-lite@1.0.30001762: {}
1955
+ camelcase@6.3.0: {}
1956
+
1957
+ caniuse-lite@1.0.30001765: {}
1958
+
1959
+ chalk@4.1.2:
1960
+ dependencies:
1961
+ ansi-styles: 4.3.0
1962
+ supports-color: 7.2.0
925
1963
 
926
1964
  chokidar@3.6.0:
927
1965
  dependencies:
@@ -935,47 +1973,194 @@ snapshots:
935
1973
  optionalDependencies:
936
1974
  fsevents: 2.3.3
937
1975
 
1976
+ color-convert@2.0.1:
1977
+ dependencies:
1978
+ color-name: 1.1.4
1979
+
1980
+ color-name@1.1.4: {}
1981
+
1982
+ combined-stream@1.0.8:
1983
+ dependencies:
1984
+ delayed-stream: 1.0.0
1985
+
938
1986
  commander@4.1.1: {}
939
1987
 
1988
+ concat-map@0.0.1: {}
1989
+
1990
+ console-table-printer@2.15.0:
1991
+ dependencies:
1992
+ simple-wcswidth: 1.1.2
1993
+
1994
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
1995
+ dependencies:
1996
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1997
+ '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
1998
+ '@supabase/supabase-js': 2.95.3
1999
+ axios: 1.13.2
2000
+ pg: 8.17.2
2001
+ transitivePeerDependencies:
2002
+ - '@opentelemetry/api'
2003
+ - '@opentelemetry/exporter-trace-otlp-proto'
2004
+ - '@opentelemetry/sdk-trace-base'
2005
+ - bufferutil
2006
+ - debug
2007
+ - openai
2008
+ - pg-native
2009
+ - utf-8-validate
2010
+ - ws
2011
+
2012
+ cross-spawn@7.0.6:
2013
+ dependencies:
2014
+ path-key: 3.1.1
2015
+ shebang-command: 2.0.0
2016
+ which: 2.0.2
2017
+
940
2018
  cssesc@3.0.0: {}
941
2019
 
2020
+ debug@4.4.3:
2021
+ dependencies:
2022
+ ms: 2.1.3
2023
+
2024
+ decamelize@1.2.0: {}
2025
+
2026
+ deep-is@0.1.4: {}
2027
+
2028
+ delayed-stream@1.0.0: {}
2029
+
942
2030
  didyoumean@1.2.2: {}
943
2031
 
944
2032
  dlv@1.1.3: {}
945
2033
 
2034
+ dotenv@17.2.4: {}
2035
+
2036
+ dunder-proto@1.0.1:
2037
+ dependencies:
2038
+ call-bind-apply-helpers: 1.0.2
2039
+ es-errors: 1.3.0
2040
+ gopd: 1.2.0
2041
+
946
2042
  electron-to-chromium@1.5.267: {}
947
2043
 
948
- esbuild@0.25.12:
2044
+ es-define-property@1.0.1: {}
2045
+
2046
+ es-errors@1.3.0: {}
2047
+
2048
+ es-object-atoms@1.1.1:
2049
+ dependencies:
2050
+ es-errors: 1.3.0
2051
+
2052
+ es-set-tostringtag@2.1.0:
2053
+ dependencies:
2054
+ es-errors: 1.3.0
2055
+ get-intrinsic: 1.3.0
2056
+ has-tostringtag: 1.0.2
2057
+ hasown: 2.0.2
2058
+
2059
+ esbuild@0.27.2:
949
2060
  optionalDependencies:
950
- '@esbuild/aix-ppc64': 0.25.12
951
- '@esbuild/android-arm': 0.25.12
952
- '@esbuild/android-arm64': 0.25.12
953
- '@esbuild/android-x64': 0.25.12
954
- '@esbuild/darwin-arm64': 0.25.12
955
- '@esbuild/darwin-x64': 0.25.12
956
- '@esbuild/freebsd-arm64': 0.25.12
957
- '@esbuild/freebsd-x64': 0.25.12
958
- '@esbuild/linux-arm': 0.25.12
959
- '@esbuild/linux-arm64': 0.25.12
960
- '@esbuild/linux-ia32': 0.25.12
961
- '@esbuild/linux-loong64': 0.25.12
962
- '@esbuild/linux-mips64el': 0.25.12
963
- '@esbuild/linux-ppc64': 0.25.12
964
- '@esbuild/linux-riscv64': 0.25.12
965
- '@esbuild/linux-s390x': 0.25.12
966
- '@esbuild/linux-x64': 0.25.12
967
- '@esbuild/netbsd-arm64': 0.25.12
968
- '@esbuild/netbsd-x64': 0.25.12
969
- '@esbuild/openbsd-arm64': 0.25.12
970
- '@esbuild/openbsd-x64': 0.25.12
971
- '@esbuild/openharmony-arm64': 0.25.12
972
- '@esbuild/sunos-x64': 0.25.12
973
- '@esbuild/win32-arm64': 0.25.12
974
- '@esbuild/win32-ia32': 0.25.12
975
- '@esbuild/win32-x64': 0.25.12
2061
+ '@esbuild/aix-ppc64': 0.27.2
2062
+ '@esbuild/android-arm': 0.27.2
2063
+ '@esbuild/android-arm64': 0.27.2
2064
+ '@esbuild/android-x64': 0.27.2
2065
+ '@esbuild/darwin-arm64': 0.27.2
2066
+ '@esbuild/darwin-x64': 0.27.2
2067
+ '@esbuild/freebsd-arm64': 0.27.2
2068
+ '@esbuild/freebsd-x64': 0.27.2
2069
+ '@esbuild/linux-arm': 0.27.2
2070
+ '@esbuild/linux-arm64': 0.27.2
2071
+ '@esbuild/linux-ia32': 0.27.2
2072
+ '@esbuild/linux-loong64': 0.27.2
2073
+ '@esbuild/linux-mips64el': 0.27.2
2074
+ '@esbuild/linux-ppc64': 0.27.2
2075
+ '@esbuild/linux-riscv64': 0.27.2
2076
+ '@esbuild/linux-s390x': 0.27.2
2077
+ '@esbuild/linux-x64': 0.27.2
2078
+ '@esbuild/netbsd-arm64': 0.27.2
2079
+ '@esbuild/netbsd-x64': 0.27.2
2080
+ '@esbuild/openbsd-arm64': 0.27.2
2081
+ '@esbuild/openbsd-x64': 0.27.2
2082
+ '@esbuild/openharmony-arm64': 0.27.2
2083
+ '@esbuild/sunos-x64': 0.27.2
2084
+ '@esbuild/win32-arm64': 0.27.2
2085
+ '@esbuild/win32-ia32': 0.27.2
2086
+ '@esbuild/win32-x64': 0.27.2
976
2087
 
977
2088
  escalade@3.2.0: {}
978
2089
 
2090
+ escape-string-regexp@4.0.0: {}
2091
+
2092
+ eslint-scope@8.4.0:
2093
+ dependencies:
2094
+ esrecurse: 4.3.0
2095
+ estraverse: 5.3.0
2096
+
2097
+ eslint-visitor-keys@3.4.3: {}
2098
+
2099
+ eslint-visitor-keys@4.2.1: {}
2100
+
2101
+ eslint@9.39.2(jiti@1.21.7):
2102
+ dependencies:
2103
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
2104
+ '@eslint-community/regexpp': 4.12.2
2105
+ '@eslint/config-array': 0.21.1
2106
+ '@eslint/config-helpers': 0.4.2
2107
+ '@eslint/core': 0.17.0
2108
+ '@eslint/eslintrc': 3.3.3
2109
+ '@eslint/js': 9.39.2
2110
+ '@eslint/plugin-kit': 0.4.1
2111
+ '@humanfs/node': 0.16.7
2112
+ '@humanwhocodes/module-importer': 1.0.1
2113
+ '@humanwhocodes/retry': 0.4.3
2114
+ '@types/estree': 1.0.8
2115
+ ajv: 6.12.6
2116
+ chalk: 4.1.2
2117
+ cross-spawn: 7.0.6
2118
+ debug: 4.4.3
2119
+ escape-string-regexp: 4.0.0
2120
+ eslint-scope: 8.4.0
2121
+ eslint-visitor-keys: 4.2.1
2122
+ espree: 10.4.0
2123
+ esquery: 1.7.0
2124
+ esutils: 2.0.3
2125
+ fast-deep-equal: 3.1.3
2126
+ file-entry-cache: 8.0.0
2127
+ find-up: 5.0.0
2128
+ glob-parent: 6.0.2
2129
+ ignore: 5.3.2
2130
+ imurmurhash: 0.1.4
2131
+ is-glob: 4.0.3
2132
+ json-stable-stringify-without-jsonify: 1.0.1
2133
+ lodash.merge: 4.6.2
2134
+ minimatch: 3.1.2
2135
+ natural-compare: 1.4.0
2136
+ optionator: 0.9.4
2137
+ optionalDependencies:
2138
+ jiti: 1.21.7
2139
+ transitivePeerDependencies:
2140
+ - supports-color
2141
+
2142
+ espree@10.4.0:
2143
+ dependencies:
2144
+ acorn: 8.15.0
2145
+ acorn-jsx: 5.3.2(acorn@8.15.0)
2146
+ eslint-visitor-keys: 4.2.1
2147
+
2148
+ esquery@1.7.0:
2149
+ dependencies:
2150
+ estraverse: 5.3.0
2151
+
2152
+ esrecurse@4.3.0:
2153
+ dependencies:
2154
+ estraverse: 5.3.0
2155
+
2156
+ estraverse@5.3.0: {}
2157
+
2158
+ esutils@2.0.3: {}
2159
+
2160
+ eventemitter3@4.0.7: {}
2161
+
2162
+ fast-deep-equal@3.1.3: {}
2163
+
979
2164
  fast-glob@3.3.3:
980
2165
  dependencies:
981
2166
  '@nodelib/fs.stat': 2.0.5
@@ -984,6 +2169,10 @@ snapshots:
984
2169
  merge2: 1.4.1
985
2170
  micromatch: 4.0.8
986
2171
 
2172
+ fast-json-stable-stringify@2.1.0: {}
2173
+
2174
+ fast-levenshtein@2.0.6: {}
2175
+
987
2176
  fastq@1.20.1:
988
2177
  dependencies:
989
2178
  reusify: 1.1.0
@@ -992,10 +2181,36 @@ snapshots:
992
2181
  optionalDependencies:
993
2182
  picomatch: 4.0.3
994
2183
 
2184
+ file-entry-cache@8.0.0:
2185
+ dependencies:
2186
+ flat-cache: 4.0.1
2187
+
995
2188
  fill-range@7.1.1:
996
2189
  dependencies:
997
2190
  to-regex-range: 5.0.1
998
2191
 
2192
+ find-up@5.0.0:
2193
+ dependencies:
2194
+ locate-path: 6.0.0
2195
+ path-exists: 4.0.0
2196
+
2197
+ flat-cache@4.0.1:
2198
+ dependencies:
2199
+ flatted: 3.3.3
2200
+ keyv: 4.5.4
2201
+
2202
+ flatted@3.3.3: {}
2203
+
2204
+ follow-redirects@1.15.11: {}
2205
+
2206
+ form-data@4.0.5:
2207
+ dependencies:
2208
+ asynckit: 0.4.0
2209
+ combined-stream: 1.0.8
2210
+ es-set-tostringtag: 2.1.0
2211
+ hasown: 2.0.2
2212
+ mime-types: 2.1.35
2213
+
999
2214
  fraction.js@5.3.4: {}
1000
2215
 
1001
2216
  fsevents@2.3.3:
@@ -1003,6 +2218,24 @@ snapshots:
1003
2218
 
1004
2219
  function-bind@1.1.2: {}
1005
2220
 
2221
+ get-intrinsic@1.3.0:
2222
+ dependencies:
2223
+ call-bind-apply-helpers: 1.0.2
2224
+ es-define-property: 1.0.1
2225
+ es-errors: 1.3.0
2226
+ es-object-atoms: 1.1.1
2227
+ function-bind: 1.1.2
2228
+ get-proto: 1.0.1
2229
+ gopd: 1.2.0
2230
+ has-symbols: 1.1.0
2231
+ hasown: 2.0.2
2232
+ math-intrinsics: 1.1.0
2233
+
2234
+ get-proto@1.0.1:
2235
+ dependencies:
2236
+ dunder-proto: 1.0.1
2237
+ es-object-atoms: 1.1.1
2238
+
1006
2239
  glob-parent@5.1.2:
1007
2240
  dependencies:
1008
2241
  is-glob: 4.0.3
@@ -1011,10 +2244,35 @@ snapshots:
1011
2244
  dependencies:
1012
2245
  is-glob: 4.0.3
1013
2246
 
2247
+ globals@14.0.0: {}
2248
+
2249
+ gopd@1.2.0: {}
2250
+
2251
+ has-flag@4.0.0: {}
2252
+
2253
+ has-symbols@1.1.0: {}
2254
+
2255
+ has-tostringtag@1.0.2:
2256
+ dependencies:
2257
+ has-symbols: 1.1.0
2258
+
1014
2259
  hasown@2.0.2:
1015
2260
  dependencies:
1016
2261
  function-bind: 1.1.2
1017
2262
 
2263
+ iceberg-js@0.8.1: {}
2264
+
2265
+ ignore@5.3.2: {}
2266
+
2267
+ ignore@7.0.5: {}
2268
+
2269
+ import-fresh@3.3.1:
2270
+ dependencies:
2271
+ parent-module: 1.0.1
2272
+ resolve-from: 4.0.0
2273
+
2274
+ imurmurhash@0.1.4: {}
2275
+
1018
2276
  is-binary-path@2.1.0:
1019
2277
  dependencies:
1020
2278
  binary-extensions: 2.3.0
@@ -1031,12 +2289,56 @@ snapshots:
1031
2289
 
1032
2290
  is-number@7.0.0: {}
1033
2291
 
2292
+ isexe@2.0.0: {}
2293
+
1034
2294
  jiti@1.21.7: {}
1035
2295
 
2296
+ js-tiktoken@1.0.21:
2297
+ dependencies:
2298
+ base64-js: 1.5.1
2299
+
2300
+ js-yaml@4.1.1:
2301
+ dependencies:
2302
+ argparse: 2.0.1
2303
+
2304
+ json-buffer@3.0.1: {}
2305
+
2306
+ json-schema-traverse@0.4.1: {}
2307
+
2308
+ json-stable-stringify-without-jsonify@1.0.1: {}
2309
+
2310
+ keyv@4.5.4:
2311
+ dependencies:
2312
+ json-buffer: 3.0.1
2313
+
2314
+ langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
2315
+ dependencies:
2316
+ '@types/uuid': 10.0.0
2317
+ chalk: 4.1.2
2318
+ console-table-printer: 2.15.0
2319
+ p-queue: 6.6.2
2320
+ semver: 7.7.3
2321
+ uuid: 10.0.0
2322
+ optionalDependencies:
2323
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
2324
+
2325
+ levn@0.4.1:
2326
+ dependencies:
2327
+ prelude-ls: 1.2.1
2328
+ type-check: 0.4.0
2329
+
1036
2330
  lilconfig@3.1.3: {}
1037
2331
 
1038
2332
  lines-and-columns@1.2.4: {}
1039
2333
 
2334
+ locate-path@6.0.0:
2335
+ dependencies:
2336
+ p-locate: 5.0.0
2337
+
2338
+ lodash.merge@4.6.2: {}
2339
+
2340
+ math-intrinsics@1.1.0: {}
2341
+
1040
2342
  merge2@1.4.1: {}
1041
2343
 
1042
2344
  micromatch@4.0.8:
@@ -1044,6 +2346,24 @@ snapshots:
1044
2346
  braces: 3.0.3
1045
2347
  picomatch: 2.3.1
1046
2348
 
2349
+ mime-db@1.52.0: {}
2350
+
2351
+ mime-types@2.1.35:
2352
+ dependencies:
2353
+ mime-db: 1.52.0
2354
+
2355
+ minimatch@3.1.2:
2356
+ dependencies:
2357
+ brace-expansion: 1.1.12
2358
+
2359
+ minimatch@9.0.5:
2360
+ dependencies:
2361
+ brace-expansion: 2.0.2
2362
+
2363
+ ms@2.1.3: {}
2364
+
2365
+ mustache@4.2.0: {}
2366
+
1047
2367
  mz@2.7.0:
1048
2368
  dependencies:
1049
2369
  any-promise: 1.3.0
@@ -1052,6 +2372,8 @@ snapshots:
1052
2372
 
1053
2373
  nanoid@3.3.11: {}
1054
2374
 
2375
+ natural-compare@1.4.0: {}
2376
+
1055
2377
  node-releases@2.0.27: {}
1056
2378
 
1057
2379
  normalize-path@3.0.0: {}
@@ -1064,8 +2386,79 @@ snapshots:
1064
2386
  dependencies:
1065
2387
  which-pm-runs: 1.1.0
1066
2388
 
2389
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
2390
+ optionalDependencies:
2391
+ ws: 8.19.0
2392
+ zod: 4.3.5
2393
+
2394
+ optionator@0.9.4:
2395
+ dependencies:
2396
+ deep-is: 0.1.4
2397
+ fast-levenshtein: 2.0.6
2398
+ levn: 0.4.1
2399
+ prelude-ls: 1.2.1
2400
+ type-check: 0.4.0
2401
+ word-wrap: 1.2.5
2402
+
2403
+ p-finally@1.0.0: {}
2404
+
2405
+ p-limit@3.1.0:
2406
+ dependencies:
2407
+ yocto-queue: 0.1.0
2408
+
2409
+ p-locate@5.0.0:
2410
+ dependencies:
2411
+ p-limit: 3.1.0
2412
+
2413
+ p-queue@6.6.2:
2414
+ dependencies:
2415
+ eventemitter3: 4.0.7
2416
+ p-timeout: 3.2.0
2417
+
2418
+ p-timeout@3.2.0:
2419
+ dependencies:
2420
+ p-finally: 1.0.0
2421
+
2422
+ parent-module@1.0.1:
2423
+ dependencies:
2424
+ callsites: 3.1.0
2425
+
2426
+ path-exists@4.0.0: {}
2427
+
2428
+ path-key@3.1.1: {}
2429
+
1067
2430
  path-parse@1.0.7: {}
1068
2431
 
2432
+ pg-connection-string@2.10.1: {}
2433
+
2434
+ pg-int8@1.0.1: {}
2435
+
2436
+ pg-pool@3.11.0(pg@8.17.2):
2437
+ dependencies:
2438
+ pg: 8.17.2
2439
+
2440
+ pg-protocol@1.11.0: {}
2441
+
2442
+ pg-types@2.2.0:
2443
+ dependencies:
2444
+ pg-int8: 1.0.1
2445
+ postgres-array: 2.0.0
2446
+ postgres-bytea: 1.0.1
2447
+ postgres-date: 1.0.7
2448
+ postgres-interval: 1.2.0
2449
+
2450
+ pg@8.17.2:
2451
+ dependencies:
2452
+ pg-connection-string: 2.10.1
2453
+ pg-pool: 3.11.0(pg@8.17.2)
2454
+ pg-protocol: 1.11.0
2455
+ pg-types: 2.2.0
2456
+ pgpass: 1.0.5
2457
+
2458
+ pgpass@1.0.5:
2459
+ dependencies:
2460
+ split2: 4.2.0
2461
+
1069
2462
  picocolors@1.1.1: {}
1070
2463
 
1071
2464
  picomatch@2.3.1: {}
@@ -1113,6 +2506,22 @@ snapshots:
1113
2506
  picocolors: 1.1.1
1114
2507
  source-map-js: 1.2.1
1115
2508
 
2509
+ postgres-array@2.0.0: {}
2510
+
2511
+ postgres-bytea@1.0.1: {}
2512
+
2513
+ postgres-date@1.0.7: {}
2514
+
2515
+ postgres-interval@1.2.0:
2516
+ dependencies:
2517
+ xtend: 4.0.2
2518
+
2519
+ prelude-ls@1.2.1: {}
2520
+
2521
+ proxy-from-env@1.1.0: {}
2522
+
2523
+ punycode@2.3.1: {}
2524
+
1116
2525
  queue-microtask@1.2.3: {}
1117
2526
 
1118
2527
  read-cache@1.0.0:
@@ -1123,6 +2532,8 @@ snapshots:
1123
2532
  dependencies:
1124
2533
  picomatch: 2.3.1
1125
2534
 
2535
+ resolve-from@4.0.0: {}
2536
+
1126
2537
  resolve@1.22.11:
1127
2538
  dependencies:
1128
2539
  is-core-module: 2.16.1
@@ -1131,40 +2542,57 @@ snapshots:
1131
2542
 
1132
2543
  reusify@1.1.0: {}
1133
2544
 
1134
- rollup@4.54.0:
2545
+ rollup@4.55.3:
1135
2546
  dependencies:
1136
2547
  '@types/estree': 1.0.8
1137
2548
  optionalDependencies:
1138
- '@rollup/rollup-android-arm-eabi': 4.54.0
1139
- '@rollup/rollup-android-arm64': 4.54.0
1140
- '@rollup/rollup-darwin-arm64': 4.54.0
1141
- '@rollup/rollup-darwin-x64': 4.54.0
1142
- '@rollup/rollup-freebsd-arm64': 4.54.0
1143
- '@rollup/rollup-freebsd-x64': 4.54.0
1144
- '@rollup/rollup-linux-arm-gnueabihf': 4.54.0
1145
- '@rollup/rollup-linux-arm-musleabihf': 4.54.0
1146
- '@rollup/rollup-linux-arm64-gnu': 4.54.0
1147
- '@rollup/rollup-linux-arm64-musl': 4.54.0
1148
- '@rollup/rollup-linux-loong64-gnu': 4.54.0
1149
- '@rollup/rollup-linux-ppc64-gnu': 4.54.0
1150
- '@rollup/rollup-linux-riscv64-gnu': 4.54.0
1151
- '@rollup/rollup-linux-riscv64-musl': 4.54.0
1152
- '@rollup/rollup-linux-s390x-gnu': 4.54.0
1153
- '@rollup/rollup-linux-x64-gnu': 4.54.0
1154
- '@rollup/rollup-linux-x64-musl': 4.54.0
1155
- '@rollup/rollup-openharmony-arm64': 4.54.0
1156
- '@rollup/rollup-win32-arm64-msvc': 4.54.0
1157
- '@rollup/rollup-win32-ia32-msvc': 4.54.0
1158
- '@rollup/rollup-win32-x64-gnu': 4.54.0
1159
- '@rollup/rollup-win32-x64-msvc': 4.54.0
2549
+ '@rollup/rollup-android-arm-eabi': 4.55.3
2550
+ '@rollup/rollup-android-arm64': 4.55.3
2551
+ '@rollup/rollup-darwin-arm64': 4.55.3
2552
+ '@rollup/rollup-darwin-x64': 4.55.3
2553
+ '@rollup/rollup-freebsd-arm64': 4.55.3
2554
+ '@rollup/rollup-freebsd-x64': 4.55.3
2555
+ '@rollup/rollup-linux-arm-gnueabihf': 4.55.3
2556
+ '@rollup/rollup-linux-arm-musleabihf': 4.55.3
2557
+ '@rollup/rollup-linux-arm64-gnu': 4.55.3
2558
+ '@rollup/rollup-linux-arm64-musl': 4.55.3
2559
+ '@rollup/rollup-linux-loong64-gnu': 4.55.3
2560
+ '@rollup/rollup-linux-loong64-musl': 4.55.3
2561
+ '@rollup/rollup-linux-ppc64-gnu': 4.55.3
2562
+ '@rollup/rollup-linux-ppc64-musl': 4.55.3
2563
+ '@rollup/rollup-linux-riscv64-gnu': 4.55.3
2564
+ '@rollup/rollup-linux-riscv64-musl': 4.55.3
2565
+ '@rollup/rollup-linux-s390x-gnu': 4.55.3
2566
+ '@rollup/rollup-linux-x64-gnu': 4.55.3
2567
+ '@rollup/rollup-linux-x64-musl': 4.55.3
2568
+ '@rollup/rollup-openbsd-x64': 4.55.3
2569
+ '@rollup/rollup-openharmony-arm64': 4.55.3
2570
+ '@rollup/rollup-win32-arm64-msvc': 4.55.3
2571
+ '@rollup/rollup-win32-ia32-msvc': 4.55.3
2572
+ '@rollup/rollup-win32-x64-gnu': 4.55.3
2573
+ '@rollup/rollup-win32-x64-msvc': 4.55.3
1160
2574
  fsevents: 2.3.3
1161
2575
 
1162
2576
  run-parallel@1.2.0:
1163
2577
  dependencies:
1164
2578
  queue-microtask: 1.2.3
1165
2579
 
2580
+ semver@7.7.3: {}
2581
+
2582
+ shebang-command@2.0.0:
2583
+ dependencies:
2584
+ shebang-regex: 3.0.0
2585
+
2586
+ shebang-regex@3.0.0: {}
2587
+
2588
+ simple-wcswidth@1.1.2: {}
2589
+
1166
2590
  source-map-js@1.2.1: {}
1167
2591
 
2592
+ split2@4.2.0: {}
2593
+
2594
+ strip-json-comments@3.1.1: {}
2595
+
1168
2596
  sucrase@3.35.1:
1169
2597
  dependencies:
1170
2598
  '@jridgewell/gen-mapping': 0.3.13
@@ -1175,6 +2603,10 @@ snapshots:
1175
2603
  tinyglobby: 0.2.15
1176
2604
  ts-interface-checker: 0.1.13
1177
2605
 
2606
+ supports-color@7.2.0:
2607
+ dependencies:
2608
+ has-flag: 4.0.0
2609
+
1178
2610
  supports-preserve-symlinks-flag@1.0.0: {}
1179
2611
 
1180
2612
  tailwindcss@3.4.19:
@@ -1222,28 +2654,72 @@ snapshots:
1222
2654
  dependencies:
1223
2655
  is-number: 7.0.0
1224
2656
 
2657
+ ts-api-utils@2.4.0(typescript@5.9.3):
2658
+ dependencies:
2659
+ typescript: 5.9.3
2660
+
1225
2661
  ts-interface-checker@0.1.13: {}
1226
2662
 
2663
+ tslib@2.8.1: {}
2664
+
2665
+ type-check@0.4.0:
2666
+ dependencies:
2667
+ prelude-ls: 1.2.1
2668
+
2669
+ typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
2670
+ dependencies:
2671
+ '@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2672
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2673
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
2674
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2675
+ eslint: 9.39.2(jiti@1.21.7)
2676
+ typescript: 5.9.3
2677
+ transitivePeerDependencies:
2678
+ - supports-color
2679
+
1227
2680
  typescript@5.9.3: {}
1228
2681
 
2682
+ undici-types@7.16.0: {}
2683
+
1229
2684
  update-browserslist-db@1.2.3(browserslist@4.28.1):
1230
2685
  dependencies:
1231
2686
  browserslist: 4.28.1
1232
2687
  escalade: 3.2.0
1233
2688
  picocolors: 1.1.1
1234
2689
 
2690
+ uri-js@4.4.1:
2691
+ dependencies:
2692
+ punycode: 2.3.1
2693
+
1235
2694
  util-deprecate@1.0.2: {}
1236
2695
 
1237
- vite@6.4.1(jiti@1.21.7):
2696
+ uuid@10.0.0: {}
2697
+
2698
+ vite@7.3.1(@types/node@25.2.3)(jiti@1.21.7):
1238
2699
  dependencies:
1239
- esbuild: 0.25.12
2700
+ esbuild: 0.27.2
1240
2701
  fdir: 6.5.0(picomatch@4.0.3)
1241
2702
  picomatch: 4.0.3
1242
2703
  postcss: 8.5.6
1243
- rollup: 4.54.0
2704
+ rollup: 4.55.3
1244
2705
  tinyglobby: 0.2.15
1245
2706
  optionalDependencies:
2707
+ '@types/node': 25.2.3
1246
2708
  fsevents: 2.3.3
1247
2709
  jiti: 1.21.7
1248
2710
 
1249
2711
  which-pm-runs@1.1.0: {}
2712
+
2713
+ which@2.0.2:
2714
+ dependencies:
2715
+ isexe: 2.0.0
2716
+
2717
+ word-wrap@1.2.5: {}
2718
+
2719
+ ws@8.19.0: {}
2720
+
2721
+ xtend@4.0.2: {}
2722
+
2723
+ yocto-queue@0.1.0: {}
2724
+
2725
+ zod@4.3.5: {}