@kmlckj/licos-ai-cli 0.0.1

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 (734) hide show
  1. package/README.md +124 -0
  2. package/bin/main +2 -0
  3. package/lib/__templates__/expo/.licos +12 -0
  4. package/lib/__templates__/expo/.licosproj/scripts/dev_build.sh +46 -0
  5. package/lib/__templates__/expo/.licosproj/scripts/dev_run.sh +229 -0
  6. package/lib/__templates__/expo/.licosproj/scripts/prod_build.sh +47 -0
  7. package/lib/__templates__/expo/.licosproj/scripts/prod_run.sh +34 -0
  8. package/lib/__templates__/expo/.licosproj/scripts/server_dev_run.sh +46 -0
  9. package/lib/__templates__/expo/AGENTS.md +253 -0
  10. package/lib/__templates__/expo/README.md +253 -0
  11. package/lib/__templates__/expo/_gitignore +12 -0
  12. package/lib/__templates__/expo/_npmrc +24 -0
  13. package/lib/__templates__/expo/client/app/+not-found.tsx +15 -0
  14. package/lib/__templates__/expo/client/app/_layout.tsx +30 -0
  15. package/lib/__templates__/expo/client/app/index.tsx +1 -0
  16. package/lib/__templates__/expo/client/app.config.ts +76 -0
  17. package/lib/__templates__/expo/client/assets/fonts/SpaceMono-Regular.ttf +0 -0
  18. package/lib/__templates__/expo/client/assets/images/adaptive-icon.png +0 -0
  19. package/lib/__templates__/expo/client/assets/images/default-avatar.png +0 -0
  20. package/lib/__templates__/expo/client/assets/images/favicon.png +0 -0
  21. package/lib/__templates__/expo/client/assets/images/icon.png +0 -0
  22. package/lib/__templates__/expo/client/assets/images/partial-react-logo.png +0 -0
  23. package/lib/__templates__/expo/client/assets/images/react-logo.png +0 -0
  24. package/lib/__templates__/expo/client/assets/images/react-logo@2x.png +0 -0
  25. package/lib/__templates__/expo/client/assets/images/react-logo@3x.png +0 -0
  26. package/lib/__templates__/expo/client/assets/images/splash-icon.png +0 -0
  27. package/lib/__templates__/expo/client/components/ColorSchemeUpdater.tsx +43 -0
  28. package/lib/__templates__/expo/client/components/PrettyScrollbar.tsx +43 -0
  29. package/lib/__templates__/expo/client/components/Provider.tsx +24 -0
  30. package/lib/__templates__/expo/client/components/Screen.tsx +317 -0
  31. package/lib/__templates__/expo/client/components/SmartDateInput.tsx +238 -0
  32. package/lib/__templates__/expo/client/contexts/AuthContext.tsx +55 -0
  33. package/lib/__templates__/expo/client/declarations.d.ts +5 -0
  34. package/lib/__templates__/expo/client/eslint-formatter-simple.mjs +49 -0
  35. package/lib/__templates__/expo/client/eslint.config.mjs +134 -0
  36. package/lib/__templates__/expo/client/global.css +268 -0
  37. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.animation.ts +178 -0
  38. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.constants.ts +62 -0
  39. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.md +437 -0
  40. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.styles.ts +95 -0
  41. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.tsx +340 -0
  42. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.types.ts +267 -0
  43. package/lib/__templates__/expo/client/heroui/components/accordion/index.ts +17 -0
  44. package/lib/__templates__/expo/client/heroui/components/alert/alert.constants.ts +13 -0
  45. package/lib/__templates__/expo/client/heroui/components/alert/alert.hooks.ts +28 -0
  46. package/lib/__templates__/expo/client/heroui/components/alert/alert.md +263 -0
  47. package/lib/__templates__/expo/client/heroui/components/alert/alert.styles.ts +65 -0
  48. package/lib/__templates__/expo/client/heroui/components/alert/alert.tsx +181 -0
  49. package/lib/__templates__/expo/client/heroui/components/alert/alert.types.ts +99 -0
  50. package/lib/__templates__/expo/client/heroui/components/alert/alert.utils.tsx +25 -0
  51. package/lib/__templates__/expo/client/heroui/components/alert/default-icon.tsx +28 -0
  52. package/lib/__templates__/expo/client/heroui/components/alert/index.ts +15 -0
  53. package/lib/__templates__/expo/client/heroui/components/alert/success-icon.tsx +28 -0
  54. package/lib/__templates__/expo/client/heroui/components/alert/warning-icon.tsx +28 -0
  55. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.animation.ts +123 -0
  56. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.constants.ts +19 -0
  57. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.context.ts +11 -0
  58. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.md +386 -0
  59. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.styles.ts +145 -0
  60. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.tsx +307 -0
  61. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.types.ts +239 -0
  62. package/lib/__templates__/expo/client/heroui/components/avatar/index.ts +13 -0
  63. package/lib/__templates__/expo/client/heroui/components/avatar/person-icon.tsx +23 -0
  64. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.animation.ts +42 -0
  65. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.constants.ts +13 -0
  66. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.md +349 -0
  67. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.styles.ts +66 -0
  68. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.tsx +351 -0
  69. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.types.ts +150 -0
  70. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/index.ts +16 -0
  71. package/lib/__templates__/expo/client/heroui/components/button/button.constants.ts +7 -0
  72. package/lib/__templates__/expo/client/heroui/components/button/button.md +381 -0
  73. package/lib/__templates__/expo/client/heroui/components/button/button.styles.ts +89 -0
  74. package/lib/__templates__/expo/client/heroui/components/button/button.tsx +284 -0
  75. package/lib/__templates__/expo/client/heroui/components/button/button.types.ts +175 -0
  76. package/lib/__templates__/expo/client/heroui/components/button/button.utils.ts +34 -0
  77. package/lib/__templates__/expo/client/heroui/components/button/index.ts +9 -0
  78. package/lib/__templates__/expo/client/heroui/components/card/card.constants.ts +11 -0
  79. package/lib/__templates__/expo/client/heroui/components/card/card.md +186 -0
  80. package/lib/__templates__/expo/client/heroui/components/card/card.styles.ts +35 -0
  81. package/lib/__templates__/expo/client/heroui/components/card/card.tsx +153 -0
  82. package/lib/__templates__/expo/client/heroui/components/card/card.types.ts +77 -0
  83. package/lib/__templates__/expo/client/heroui/components/card/index.ts +10 -0
  84. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.animation.ts +202 -0
  85. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.constants.ts +6 -0
  86. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.md +311 -0
  87. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.styles.ts +105 -0
  88. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.tsx +251 -0
  89. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.types.ts +216 -0
  90. package/lib/__templates__/expo/client/heroui/components/checkbox/index.ts +3 -0
  91. package/lib/__templates__/expo/client/heroui/components/chip/chip.animation.ts +18 -0
  92. package/lib/__templates__/expo/client/heroui/components/chip/chip.constants.ts +7 -0
  93. package/lib/__templates__/expo/client/heroui/components/chip/chip.md +190 -0
  94. package/lib/__templates__/expo/client/heroui/components/chip/chip.styles.ts +234 -0
  95. package/lib/__templates__/expo/client/heroui/components/chip/chip.tsx +125 -0
  96. package/lib/__templates__/expo/client/heroui/components/chip/chip.types.ts +69 -0
  97. package/lib/__templates__/expo/client/heroui/components/chip/index.ts +3 -0
  98. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.constants.ts +6 -0
  99. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.md +109 -0
  100. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.styles.ts +13 -0
  101. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.tsx +57 -0
  102. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.types.ts +30 -0
  103. package/lib/__templates__/expo/client/heroui/components/close-button/index.ts +6 -0
  104. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.animation.ts +18 -0
  105. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.constants.ts +7 -0
  106. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.context.ts +14 -0
  107. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.md +241 -0
  108. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.styles.ts +15 -0
  109. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.tsx +245 -0
  110. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.types.ts +67 -0
  111. package/lib/__templates__/expo/client/heroui/components/control-field/index.ts +6 -0
  112. package/lib/__templates__/expo/client/heroui/components/description/description.animation.ts +53 -0
  113. package/lib/__templates__/expo/client/heroui/components/description/description.constants.ts +30 -0
  114. package/lib/__templates__/expo/client/heroui/components/description/description.md +129 -0
  115. package/lib/__templates__/expo/client/heroui/components/description/description.styles.ts +25 -0
  116. package/lib/__templates__/expo/client/heroui/components/description/description.tsx +81 -0
  117. package/lib/__templates__/expo/client/heroui/components/description/description.types.ts +77 -0
  118. package/lib/__templates__/expo/client/heroui/components/description/index.ts +3 -0
  119. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.animation.ts +9 -0
  120. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.constants.ts +13 -0
  121. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.md +288 -0
  122. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.styles.ts +77 -0
  123. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.tsx +379 -0
  124. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.types.ts +199 -0
  125. package/lib/__templates__/expo/client/heroui/components/dialog/index.ts +12 -0
  126. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.animation.ts +50 -0
  127. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.constants.ts +31 -0
  128. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.md +204 -0
  129. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.styles.ts +23 -0
  130. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.tsx +91 -0
  131. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.types.ts +79 -0
  132. package/lib/__templates__/expo/client/heroui/components/field-error/index.ts +3 -0
  133. package/lib/__templates__/expo/client/heroui/components/input/index.ts +3 -0
  134. package/lib/__templates__/expo/client/heroui/components/input/input.constants.ts +6 -0
  135. package/lib/__templates__/expo/client/heroui/components/input/input.md +193 -0
  136. package/lib/__templates__/expo/client/heroui/components/input/input.styles.ts +51 -0
  137. package/lib/__templates__/expo/client/heroui/components/input/input.tsx +96 -0
  138. package/lib/__templates__/expo/client/heroui/components/input/input.types.ts +44 -0
  139. package/lib/__templates__/expo/client/heroui/components/input-group/index.ts +9 -0
  140. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.animation.ts +14 -0
  141. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.constants.ts +6 -0
  142. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.md +197 -0
  143. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.styles.ts +31 -0
  144. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.tsx +239 -0
  145. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.types.ts +98 -0
  146. package/lib/__templates__/expo/client/heroui/components/input-otp/index.ts +9 -0
  147. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.animation.ts +199 -0
  148. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.constants.ts +12 -0
  149. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.md +376 -0
  150. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.styles.ts +68 -0
  151. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.tsx +414 -0
  152. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.types.ts +275 -0
  153. package/lib/__templates__/expo/client/heroui/components/label/index.ts +3 -0
  154. package/lib/__templates__/expo/client/heroui/components/label/label.animation.ts +18 -0
  155. package/lib/__templates__/expo/client/heroui/components/label/label.constants.ts +7 -0
  156. package/lib/__templates__/expo/client/heroui/components/label/label.md +187 -0
  157. package/lib/__templates__/expo/client/heroui/components/label/label.styles.ts +44 -0
  158. package/lib/__templates__/expo/client/heroui/components/label/label.tsx +172 -0
  159. package/lib/__templates__/expo/client/heroui/components/label/label.types.ts +86 -0
  160. package/lib/__templates__/expo/client/heroui/components/list-group/index.ts +17 -0
  161. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.constants.ts +17 -0
  162. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.md +387 -0
  163. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.styles.ts +40 -0
  164. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.tsx +206 -0
  165. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.types.ts +132 -0
  166. package/lib/__templates__/expo/client/heroui/components/menu/index.ts +38 -0
  167. package/lib/__templates__/expo/client/heroui/components/menu/menu.animation.ts +121 -0
  168. package/lib/__templates__/expo/client/heroui/components/menu/menu.constants.ts +37 -0
  169. package/lib/__templates__/expo/client/heroui/components/menu/menu.md +620 -0
  170. package/lib/__templates__/expo/client/heroui/components/menu/menu.styles.ts +107 -0
  171. package/lib/__templates__/expo/client/heroui/components/menu/menu.tsx +664 -0
  172. package/lib/__templates__/expo/client/heroui/components/menu/menu.types.ts +394 -0
  173. package/lib/__templates__/expo/client/heroui/components/popover/arrow-svg.tsx +180 -0
  174. package/lib/__templates__/expo/client/heroui/components/popover/index.ts +18 -0
  175. package/lib/__templates__/expo/client/heroui/components/popover/popover.animation.ts +9 -0
  176. package/lib/__templates__/expo/client/heroui/components/popover/popover.constants.ts +34 -0
  177. package/lib/__templates__/expo/client/heroui/components/popover/popover.md +508 -0
  178. package/lib/__templates__/expo/client/heroui/components/popover/popover.styles.ts +98 -0
  179. package/lib/__templates__/expo/client/heroui/components/popover/popover.tsx +624 -0
  180. package/lib/__templates__/expo/client/heroui/components/popover/popover.types.ts +290 -0
  181. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/index.ts +3 -0
  182. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.animation.ts +450 -0
  183. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.constants.ts +12 -0
  184. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.md +328 -0
  185. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.styles.ts +84 -0
  186. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.tsx +330 -0
  187. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.types.ts +386 -0
  188. package/lib/__templates__/expo/client/heroui/components/radio/index.ts +9 -0
  189. package/lib/__templates__/expo/client/heroui/components/radio/radio.animation.ts +92 -0
  190. package/lib/__templates__/expo/client/heroui/components/radio/radio.constants.ts +11 -0
  191. package/lib/__templates__/expo/client/heroui/components/radio/radio.md +339 -0
  192. package/lib/__templates__/expo/client/heroui/components/radio/radio.styles.ts +80 -0
  193. package/lib/__templates__/expo/client/heroui/components/radio/radio.tsx +217 -0
  194. package/lib/__templates__/expo/client/heroui/components/radio/radio.types.ts +106 -0
  195. package/lib/__templates__/expo/client/heroui/components/radio-group/index.ts +9 -0
  196. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.animation.ts +20 -0
  197. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.constants.ts +7 -0
  198. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.context.ts +14 -0
  199. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.md +273 -0
  200. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.styles.ts +15 -0
  201. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.tsx +220 -0
  202. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.types.ts +64 -0
  203. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/index.ts +7 -0
  204. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.animation.ts +132 -0
  205. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.constants.ts +21 -0
  206. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.md +206 -0
  207. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.styles.ts +52 -0
  208. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.tsx +262 -0
  209. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.types.ts +121 -0
  210. package/lib/__templates__/expo/client/heroui/components/search-field/index.ts +17 -0
  211. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.animation.ts +18 -0
  212. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.constants.ts +10 -0
  213. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.md +231 -0
  214. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.styles.ts +35 -0
  215. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.tsx +253 -0
  216. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.types.ts +160 -0
  217. package/lib/__templates__/expo/client/heroui/components/search-field/search-icon.tsx +37 -0
  218. package/lib/__templates__/expo/client/heroui/components/select/index.ts +28 -0
  219. package/lib/__templates__/expo/client/heroui/components/select/select.animation.ts +92 -0
  220. package/lib/__templates__/expo/client/heroui/components/select/select.constants.ts +53 -0
  221. package/lib/__templates__/expo/client/heroui/components/select/select.md +796 -0
  222. package/lib/__templates__/expo/client/heroui/components/select/select.styles.ts +149 -0
  223. package/lib/__templates__/expo/client/heroui/components/select/select.tsx +828 -0
  224. package/lib/__templates__/expo/client/heroui/components/select/select.types.ts +438 -0
  225. package/lib/__templates__/expo/client/heroui/components/separator/index.ts +7 -0
  226. package/lib/__templates__/expo/client/heroui/components/separator/separator.constants.ts +6 -0
  227. package/lib/__templates__/expo/client/heroui/components/separator/separator.md +106 -0
  228. package/lib/__templates__/expo/client/heroui/components/separator/separator.styles.ts +50 -0
  229. package/lib/__templates__/expo/client/heroui/components/separator/separator.tsx +62 -0
  230. package/lib/__templates__/expo/client/heroui/components/separator/separator.types.ts +40 -0
  231. package/lib/__templates__/expo/client/heroui/components/skeleton/index.ts +7 -0
  232. package/lib/__templates__/expo/client/heroui/components/skeleton/linear-gradient.tsx +45 -0
  233. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.animation.ts +351 -0
  234. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.constants.ts +39 -0
  235. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.md +208 -0
  236. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.styles.ts +49 -0
  237. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.tsx +183 -0
  238. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.types.ts +191 -0
  239. package/lib/__templates__/expo/client/heroui/components/skeleton-group/index.ts +7 -0
  240. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.constants.ts +7 -0
  241. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.md +247 -0
  242. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.styles.ts +10 -0
  243. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.tsx +94 -0
  244. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.types.ts +28 -0
  245. package/lib/__templates__/expo/client/heroui/components/slider/index.ts +23 -0
  246. package/lib/__templates__/expo/client/heroui/components/slider/slider.animation.ts +87 -0
  247. package/lib/__templates__/expo/client/heroui/components/slider/slider.constants.ts +24 -0
  248. package/lib/__templates__/expo/client/heroui/components/slider/slider.md +348 -0
  249. package/lib/__templates__/expo/client/heroui/components/slider/slider.styles.ts +85 -0
  250. package/lib/__templates__/expo/client/heroui/components/slider/slider.tsx +413 -0
  251. package/lib/__templates__/expo/client/heroui/components/slider/slider.types.ts +120 -0
  252. package/lib/__templates__/expo/client/heroui/components/spinner/index.ts +10 -0
  253. package/lib/__templates__/expo/client/heroui/components/spinner/spinner-icon.tsx +49 -0
  254. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.animation.ts +150 -0
  255. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.constants.ts +36 -0
  256. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.md +199 -0
  257. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.styles.ts +44 -0
  258. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.tsx +198 -0
  259. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.types.ts +158 -0
  260. package/lib/__templates__/expo/client/heroui/components/surface/index.ts +3 -0
  261. package/lib/__templates__/expo/client/heroui/components/surface/surface.animation.ts +18 -0
  262. package/lib/__templates__/expo/client/heroui/components/surface/surface.constants.ts +6 -0
  263. package/lib/__templates__/expo/client/heroui/components/surface/surface.md +136 -0
  264. package/lib/__templates__/expo/client/heroui/components/surface/surface.styles.ts +28 -0
  265. package/lib/__templates__/expo/client/heroui/components/surface/surface.tsx +66 -0
  266. package/lib/__templates__/expo/client/heroui/components/surface/surface.types.ts +46 -0
  267. package/lib/__templates__/expo/client/heroui/components/switch/index.ts +3 -0
  268. package/lib/__templates__/expo/client/heroui/components/switch/switch.animation.ts +243 -0
  269. package/lib/__templates__/expo/client/heroui/components/switch/switch.constants.ts +26 -0
  270. package/lib/__templates__/expo/client/heroui/components/switch/switch.md +334 -0
  271. package/lib/__templates__/expo/client/heroui/components/switch/switch.styles.ts +83 -0
  272. package/lib/__templates__/expo/client/heroui/components/switch/switch.tsx +280 -0
  273. package/lib/__templates__/expo/client/heroui/components/switch/switch.types.ts +208 -0
  274. package/lib/__templates__/expo/client/heroui/components/tabs/index.ts +8 -0
  275. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.animation.ts +246 -0
  276. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.constants.ts +17 -0
  277. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.context.ts +28 -0
  278. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.md +565 -0
  279. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.styles.ts +168 -0
  280. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.tsx +445 -0
  281. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.types.ts +341 -0
  282. package/lib/__templates__/expo/client/heroui/components/tag-group/index.ts +15 -0
  283. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.animation.ts +17 -0
  284. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.constants.ts +10 -0
  285. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.md +404 -0
  286. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.styles.ts +74 -0
  287. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.tsx +325 -0
  288. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.types.ts +125 -0
  289. package/lib/__templates__/expo/client/heroui/components/text-area/index.ts +3 -0
  290. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.constants.ts +6 -0
  291. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.md +133 -0
  292. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.styles.ts +10 -0
  293. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.tsx +44 -0
  294. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.types.ts +6 -0
  295. package/lib/__templates__/expo/client/heroui/components/text-field/index.ts +3 -0
  296. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.animation.ts +20 -0
  297. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.constants.ts +6 -0
  298. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.md +256 -0
  299. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.styles.ts +10 -0
  300. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.tsx +82 -0
  301. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.types.ts +56 -0
  302. package/lib/__templates__/expo/client/heroui/components/toast/index.ts +4 -0
  303. package/lib/__templates__/expo/client/heroui/components/toast/toast.animation.ts +381 -0
  304. package/lib/__templates__/expo/client/heroui/components/toast/toast.constants.ts +10 -0
  305. package/lib/__templates__/expo/client/heroui/components/toast/toast.hooks.ts +73 -0
  306. package/lib/__templates__/expo/client/heroui/components/toast/toast.md +420 -0
  307. package/lib/__templates__/expo/client/heroui/components/toast/toast.styles.ts +89 -0
  308. package/lib/__templates__/expo/client/heroui/components/toast/toast.tsx +472 -0
  309. package/lib/__templates__/expo/client/heroui/components/toast/toast.types.ts +320 -0
  310. package/lib/__templates__/expo/client/heroui/docs.md +47 -0
  311. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/index.ts +3 -0
  312. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/use-is-on-surface.ts +8 -0
  313. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/use-theme-color.ts +137 -0
  314. package/lib/__templates__/expo/client/heroui/helpers/external/utils/cn.ts +12 -0
  315. package/lib/__templates__/expo/client/heroui/helpers/external/utils/color-kit/index.ts +2395 -0
  316. package/lib/__templates__/expo/client/heroui/helpers/external/utils/color-kit/types.ts +212 -0
  317. package/lib/__templates__/expo/client/heroui/helpers/external/utils/index.ts +2 -0
  318. package/lib/__templates__/expo/client/heroui/helpers/internal/components/animated-check-icon.tsx +78 -0
  319. package/lib/__templates__/expo/client/heroui/helpers/internal/components/bottom-sheet-content-container.tsx +97 -0
  320. package/lib/__templates__/expo/client/heroui/helpers/internal/components/bottom-sheet-content.tsx +158 -0
  321. package/lib/__templates__/expo/client/heroui/helpers/internal/components/check-icon.tsx +28 -0
  322. package/lib/__templates__/expo/client/heroui/helpers/internal/components/chevron-down-icon.tsx +28 -0
  323. package/lib/__templates__/expo/client/heroui/helpers/internal/components/chevron-right-icon.tsx +29 -0
  324. package/lib/__templates__/expo/client/heroui/helpers/internal/components/close-icon.tsx +29 -0
  325. package/lib/__templates__/expo/client/heroui/helpers/internal/components/full-window-overlay.tsx +48 -0
  326. package/lib/__templates__/expo/client/heroui/helpers/internal/components/hero-text.tsx +71 -0
  327. package/lib/__templates__/expo/client/heroui/helpers/internal/components/index.ts +9 -0
  328. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/animation-settings-context.ts +19 -0
  329. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/bottom-sheet-is-dragging-context.ts +11 -0
  330. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/form-field-context.ts +36 -0
  331. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/index.ts +3 -0
  332. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/index.ts +14 -0
  333. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-augmented-ref.ts +32 -0
  334. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-bottom-sheet-aware-handlers.ts +94 -0
  335. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-bottom-sheet-gesture-handlers.ts +52 -0
  336. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-combined-animation-disabled-state.ts +49 -0
  337. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-controllable-state.ts +124 -0
  338. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-dev-info.ts +38 -0
  339. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-keyboard-status.ts +22 -0
  340. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-bottom-sheet-content-animation.ts +67 -0
  341. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-dialog-content-animation.ts +296 -0
  342. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-overlay-animation.ts +91 -0
  343. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-popover-content-animation.ts +199 -0
  344. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-root-animation.ts +26 -0
  345. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-relative-position.ts +353 -0
  346. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-resolved-style-property.ts +118 -0
  347. package/lib/__templates__/expo/client/heroui/helpers/internal/types/animation.ts +131 -0
  348. package/lib/__templates__/expo/client/heroui/helpers/internal/types/bottom-sheet.ts +99 -0
  349. package/lib/__templates__/expo/client/heroui/helpers/internal/types/index.ts +5 -0
  350. package/lib/__templates__/expo/client/heroui/helpers/internal/types/misc.ts +10 -0
  351. package/lib/__templates__/expo/client/heroui/helpers/internal/types/primitives.ts +146 -0
  352. package/lib/__templates__/expo/client/heroui/helpers/internal/types/theme.ts +18 -0
  353. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/animation.ts +266 -0
  354. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/children-to-string.ts +117 -0
  355. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/combine-styles.ts +17 -0
  356. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/create-context.ts +60 -0
  357. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/ease-gradient/create-interpolation.ts +35 -0
  358. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/ease-gradient/index.ts +97 -0
  359. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/get-element-by-display-name.ts +15 -0
  360. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/get-element-with-default.ts +17 -0
  361. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/has-prop.ts +18 -0
  362. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/index.ts +8 -0
  363. package/lib/__templates__/expo/client/heroui/index.tsx +51 -0
  364. package/lib/__templates__/expo/client/heroui/primitives/README.md +27 -0
  365. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.tsx +270 -0
  366. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.types.ts +117 -0
  367. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.utils.ts +12 -0
  368. package/lib/__templates__/expo/client/heroui/primitives/accordion/index.ts +2 -0
  369. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/activity-indicator.tsx +50 -0
  370. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/activity-indicator.types.ts +24 -0
  371. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/index.ts +2 -0
  372. package/lib/__templates__/expo/client/heroui/primitives/alert/alert.tsx +124 -0
  373. package/lib/__templates__/expo/client/heroui/primitives/alert/alert.types.ts +87 -0
  374. package/lib/__templates__/expo/client/heroui/primitives/alert/index.ts +2 -0
  375. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.tsx +171 -0
  376. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.types.ts +62 -0
  377. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.utils.ts +102 -0
  378. package/lib/__templates__/expo/client/heroui/primitives/avatar/index.ts +2 -0
  379. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/bottom-sheet.tsx +235 -0
  380. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/bottom-sheet.types.ts +127 -0
  381. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/index.ts +2 -0
  382. package/lib/__templates__/expo/client/heroui/primitives/checkbox/checkbox.tsx +119 -0
  383. package/lib/__templates__/expo/client/heroui/primitives/checkbox/checkbox.types.ts +37 -0
  384. package/lib/__templates__/expo/client/heroui/primitives/checkbox/index.ts +2 -0
  385. package/lib/__templates__/expo/client/heroui/primitives/dialog/dialog.tsx +274 -0
  386. package/lib/__templates__/expo/client/heroui/primitives/dialog/dialog.types.ts +129 -0
  387. package/lib/__templates__/expo/client/heroui/primitives/dialog/index.ts +2 -0
  388. package/lib/__templates__/expo/client/heroui/primitives/input-otp/index.ts +3 -0
  389. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.tsx +431 -0
  390. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.types.ts +169 -0
  391. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.utils.ts +31 -0
  392. package/lib/__templates__/expo/client/heroui/primitives/label/index.ts +2 -0
  393. package/lib/__templates__/expo/client/heroui/primitives/label/label.tsx +24 -0
  394. package/lib/__templates__/expo/client/heroui/primitives/label/label.types.ts +39 -0
  395. package/lib/__templates__/expo/client/heroui/primitives/menu/index.ts +2 -0
  396. package/lib/__templates__/expo/client/heroui/primitives/menu/menu.tsx +765 -0
  397. package/lib/__templates__/expo/client/heroui/primitives/menu/menu.types.ts +401 -0
  398. package/lib/__templates__/expo/client/heroui/primitives/popover/index.ts +2 -0
  399. package/lib/__templates__/expo/client/heroui/primitives/popover/popover.tsx +382 -0
  400. package/lib/__templates__/expo/client/heroui/primitives/popover/popover.types.ts +201 -0
  401. package/lib/__templates__/expo/client/heroui/primitives/portal/index.ts +1 -0
  402. package/lib/__templates__/expo/client/heroui/primitives/portal/portal.tsx +126 -0
  403. package/lib/__templates__/expo/client/heroui/primitives/radio/index.ts +2 -0
  404. package/lib/__templates__/expo/client/heroui/primitives/radio/radio.tsx +133 -0
  405. package/lib/__templates__/expo/client/heroui/primitives/radio/radio.types.ts +47 -0
  406. package/lib/__templates__/expo/client/heroui/primitives/radio-group/index.ts +2 -0
  407. package/lib/__templates__/expo/client/heroui/primitives/radio-group/radio-group.tsx +114 -0
  408. package/lib/__templates__/expo/client/heroui/primitives/radio-group/radio-group.types.ts +65 -0
  409. package/lib/__templates__/expo/client/heroui/primitives/select/index.ts +2 -0
  410. package/lib/__templates__/expo/client/heroui/primitives/select/select.tsx +705 -0
  411. package/lib/__templates__/expo/client/heroui/primitives/select/select.types.ts +409 -0
  412. package/lib/__templates__/expo/client/heroui/primitives/select/select.utils.ts +35 -0
  413. package/lib/__templates__/expo/client/heroui/primitives/slider/index.ts +3 -0
  414. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.tsx +464 -0
  415. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.types.ts +208 -0
  416. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.utils.ts +93 -0
  417. package/lib/__templates__/expo/client/heroui/primitives/slot/index.ts +1 -0
  418. package/lib/__templates__/expo/client/heroui/primitives/slot/slot.tsx +122 -0
  419. package/lib/__templates__/expo/client/heroui/primitives/slot/types.ts +19 -0
  420. package/lib/__templates__/expo/client/heroui/primitives/slot/utils.ts +96 -0
  421. package/lib/__templates__/expo/client/heroui/primitives/switch/index.ts +2 -0
  422. package/lib/__templates__/expo/client/heroui/primitives/switch/switch.tsx +61 -0
  423. package/lib/__templates__/expo/client/heroui/primitives/switch/switch.types.ts +55 -0
  424. package/lib/__templates__/expo/client/heroui/primitives/tabs/index.ts +2 -0
  425. package/lib/__templates__/expo/client/heroui/primitives/tabs/tabs.tsx +202 -0
  426. package/lib/__templates__/expo/client/heroui/primitives/tabs/tabs.types.ts +77 -0
  427. package/lib/__templates__/expo/client/heroui/primitives/tag-group/index.ts +2 -0
  428. package/lib/__templates__/expo/client/heroui/primitives/tag-group/tag-group.tsx +324 -0
  429. package/lib/__templates__/expo/client/heroui/primitives/tag-group/tag-group.types.ts +119 -0
  430. package/lib/__templates__/expo/client/heroui/primitives/toast/index.ts +2 -0
  431. package/lib/__templates__/expo/client/heroui/primitives/toast/toast.tsx +138 -0
  432. package/lib/__templates__/expo/client/heroui/primitives/toast/toast.types.ts +86 -0
  433. package/lib/__templates__/expo/client/heroui/providers/animation-settings/index.ts +8 -0
  434. package/lib/__templates__/expo/client/heroui/providers/animation-settings/provider.tsx +47 -0
  435. package/lib/__templates__/expo/client/heroui/providers/animation-settings/types.ts +27 -0
  436. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/index.ts +2 -0
  437. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/provider.tsx +67 -0
  438. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/types.ts +114 -0
  439. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/index.ts +2 -0
  440. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/provider.tsx +50 -0
  441. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/types.ts +39 -0
  442. package/lib/__templates__/expo/client/heroui/providers/text-component/index.ts +2 -0
  443. package/lib/__templates__/expo/client/heroui/providers/text-component/provider.tsx +9 -0
  444. package/lib/__templates__/expo/client/heroui/providers/text-component/types.ts +52 -0
  445. package/lib/__templates__/expo/client/heroui/providers/toast/index.ts +3 -0
  446. package/lib/__templates__/expo/client/heroui/providers/toast/insets-container.tsx +87 -0
  447. package/lib/__templates__/expo/client/heroui/providers/toast/provider.tsx +431 -0
  448. package/lib/__templates__/expo/client/heroui/providers/toast/reducer.ts +34 -0
  449. package/lib/__templates__/expo/client/heroui/providers/toast/toast-config.context.ts +27 -0
  450. package/lib/__templates__/expo/client/heroui/providers/toast/toast-item-renderer.tsx +45 -0
  451. package/lib/__templates__/expo/client/heroui/providers/toast/types.ts +373 -0
  452. package/lib/__templates__/expo/client/heroui/styles/index.css +3 -0
  453. package/lib/__templates__/expo/client/heroui/styles/theme.css +112 -0
  454. package/lib/__templates__/expo/client/heroui/styles/utilities.css +8 -0
  455. package/lib/__templates__/expo/client/heroui/styles/variables.css +146 -0
  456. package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
  457. package/lib/__templates__/expo/client/metro.config.js +131 -0
  458. package/lib/__templates__/expo/client/package.json +101 -0
  459. package/lib/__templates__/expo/client/screens/demo/index.tsx +19 -0
  460. package/lib/__templates__/expo/client/scripts/formatter.mjs +78 -0
  461. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +105 -0
  462. package/lib/__templates__/expo/client/scripts/reporter.mjs +1358 -0
  463. package/lib/__templates__/expo/client/scripts/stylish-formatter.mjs +153 -0
  464. package/lib/__templates__/expo/client/scripts/text-table.mjs +68 -0
  465. package/lib/__templates__/expo/client/tsconfig.json +24 -0
  466. package/lib/__templates__/expo/client/uniwind-types.d.ts +10 -0
  467. package/lib/__templates__/expo/client/utils/index.ts +76 -0
  468. package/lib/__templates__/expo/eslint-plugins/fontawesome6/index.js +9 -0
  469. package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +1889 -0
  470. package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +174 -0
  471. package/lib/__templates__/expo/eslint-plugins/fontawesome6/v5-only-names.js +388 -0
  472. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  473. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  474. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  475. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  476. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  477. package/lib/__templates__/expo/eslint-plugins/reanimated/index.js +9 -0
  478. package/lib/__templates__/expo/eslint-plugins/reanimated/rule.js +88 -0
  479. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
  480. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
  481. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
  482. package/lib/__templates__/expo/package.json +28 -0
  483. package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
  484. package/lib/__templates__/expo/pnpm-lock.yaml +13181 -0
  485. package/lib/__templates__/expo/pnpm-workspace.yaml +3 -0
  486. package/lib/__templates__/expo/server/build.js +21 -0
  487. package/lib/__templates__/expo/server/package.json +34 -0
  488. package/lib/__templates__/expo/server/src/index.ts +20 -0
  489. package/lib/__templates__/expo/server/tsconfig.json +24 -0
  490. package/lib/__templates__/expo/template.config.js +102 -0
  491. package/lib/__templates__/expo/tsconfig.json +1 -0
  492. package/lib/__templates__/native-static/.licos +11 -0
  493. package/lib/__templates__/native-static/index.html +33 -0
  494. package/lib/__templates__/native-static/styles/main.css +136 -0
  495. package/lib/__templates__/native-static/template.config.js +22 -0
  496. package/lib/__templates__/nextjs/.babelrc +15 -0
  497. package/lib/__templates__/nextjs/.licos +12 -0
  498. package/lib/__templates__/nextjs/AGENTS.md +56 -0
  499. package/lib/__templates__/nextjs/README.md +363 -0
  500. package/lib/__templates__/nextjs/_gitignore +100 -0
  501. package/lib/__templates__/nextjs/_npmrc +26 -0
  502. package/lib/__templates__/nextjs/components.json +21 -0
  503. package/lib/__templates__/nextjs/eslint.config.mjs +37 -0
  504. package/lib/__templates__/nextjs/next-env.d.ts +6 -0
  505. package/lib/__templates__/nextjs/next.config.ts +18 -0
  506. package/lib/__templates__/nextjs/package.json +92 -0
  507. package/lib/__templates__/nextjs/pnpm-lock.yaml +12401 -0
  508. package/lib/__templates__/nextjs/postcss.config.mjs +7 -0
  509. package/lib/__templates__/nextjs/public/file.svg +1 -0
  510. package/lib/__templates__/nextjs/public/globe.svg +1 -0
  511. package/lib/__templates__/nextjs/public/next.svg +1 -0
  512. package/lib/__templates__/nextjs/public/vercel.svg +1 -0
  513. package/lib/__templates__/nextjs/public/window.svg +1 -0
  514. package/lib/__templates__/nextjs/scripts/build.sh +17 -0
  515. package/lib/__templates__/nextjs/scripts/dev.sh +39 -0
  516. package/lib/__templates__/nextjs/scripts/prepare.sh +9 -0
  517. package/lib/__templates__/nextjs/scripts/start.sh +21 -0
  518. package/lib/__templates__/nextjs/src/app/favicon.ico +0 -0
  519. package/lib/__templates__/nextjs/src/app/globals.css +137 -0
  520. package/lib/__templates__/nextjs/src/app/layout.tsx +74 -0
  521. package/lib/__templates__/nextjs/src/app/page.tsx +35 -0
  522. package/lib/__templates__/nextjs/src/app/robots.ts +11 -0
  523. package/lib/__templates__/nextjs/src/components/ui/accordion.tsx +66 -0
  524. package/lib/__templates__/nextjs/src/components/ui/alert-dialog.tsx +157 -0
  525. package/lib/__templates__/nextjs/src/components/ui/alert.tsx +66 -0
  526. package/lib/__templates__/nextjs/src/components/ui/aspect-ratio.tsx +11 -0
  527. package/lib/__templates__/nextjs/src/components/ui/avatar.tsx +53 -0
  528. package/lib/__templates__/nextjs/src/components/ui/badge.tsx +46 -0
  529. package/lib/__templates__/nextjs/src/components/ui/breadcrumb.tsx +109 -0
  530. package/lib/__templates__/nextjs/src/components/ui/button-group.tsx +83 -0
  531. package/lib/__templates__/nextjs/src/components/ui/button.tsx +62 -0
  532. package/lib/__templates__/nextjs/src/components/ui/calendar.tsx +220 -0
  533. package/lib/__templates__/nextjs/src/components/ui/card.tsx +92 -0
  534. package/lib/__templates__/nextjs/src/components/ui/carousel.tsx +241 -0
  535. package/lib/__templates__/nextjs/src/components/ui/chart.tsx +357 -0
  536. package/lib/__templates__/nextjs/src/components/ui/checkbox.tsx +32 -0
  537. package/lib/__templates__/nextjs/src/components/ui/collapsible.tsx +33 -0
  538. package/lib/__templates__/nextjs/src/components/ui/command.tsx +184 -0
  539. package/lib/__templates__/nextjs/src/components/ui/context-menu.tsx +252 -0
  540. package/lib/__templates__/nextjs/src/components/ui/dialog.tsx +143 -0
  541. package/lib/__templates__/nextjs/src/components/ui/drawer.tsx +135 -0
  542. package/lib/__templates__/nextjs/src/components/ui/dropdown-menu.tsx +257 -0
  543. package/lib/__templates__/nextjs/src/components/ui/empty.tsx +104 -0
  544. package/lib/__templates__/nextjs/src/components/ui/field.tsx +248 -0
  545. package/lib/__templates__/nextjs/src/components/ui/form.tsx +167 -0
  546. package/lib/__templates__/nextjs/src/components/ui/hover-card.tsx +44 -0
  547. package/lib/__templates__/nextjs/src/components/ui/input-group.tsx +170 -0
  548. package/lib/__templates__/nextjs/src/components/ui/input-otp.tsx +77 -0
  549. package/lib/__templates__/nextjs/src/components/ui/input.tsx +21 -0
  550. package/lib/__templates__/nextjs/src/components/ui/item.tsx +193 -0
  551. package/lib/__templates__/nextjs/src/components/ui/kbd.tsx +28 -0
  552. package/lib/__templates__/nextjs/src/components/ui/label.tsx +24 -0
  553. package/lib/__templates__/nextjs/src/components/ui/menubar.tsx +276 -0
  554. package/lib/__templates__/nextjs/src/components/ui/navigation-menu.tsx +168 -0
  555. package/lib/__templates__/nextjs/src/components/ui/pagination.tsx +127 -0
  556. package/lib/__templates__/nextjs/src/components/ui/popover.tsx +48 -0
  557. package/lib/__templates__/nextjs/src/components/ui/progress.tsx +31 -0
  558. package/lib/__templates__/nextjs/src/components/ui/radio-group.tsx +45 -0
  559. package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +63 -0
  560. package/lib/__templates__/nextjs/src/components/ui/scroll-area.tsx +58 -0
  561. package/lib/__templates__/nextjs/src/components/ui/select.tsx +190 -0
  562. package/lib/__templates__/nextjs/src/components/ui/separator.tsx +28 -0
  563. package/lib/__templates__/nextjs/src/components/ui/sheet.tsx +139 -0
  564. package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +724 -0
  565. package/lib/__templates__/nextjs/src/components/ui/skeleton.tsx +13 -0
  566. package/lib/__templates__/nextjs/src/components/ui/slider.tsx +63 -0
  567. package/lib/__templates__/nextjs/src/components/ui/sonner.tsx +40 -0
  568. package/lib/__templates__/nextjs/src/components/ui/spinner.tsx +16 -0
  569. package/lib/__templates__/nextjs/src/components/ui/switch.tsx +31 -0
  570. package/lib/__templates__/nextjs/src/components/ui/table.tsx +116 -0
  571. package/lib/__templates__/nextjs/src/components/ui/tabs.tsx +66 -0
  572. package/lib/__templates__/nextjs/src/components/ui/textarea.tsx +18 -0
  573. package/lib/__templates__/nextjs/src/components/ui/toggle-group.tsx +83 -0
  574. package/lib/__templates__/nextjs/src/components/ui/toggle.tsx +47 -0
  575. package/lib/__templates__/nextjs/src/components/ui/tooltip.tsx +61 -0
  576. package/lib/__templates__/nextjs/src/hooks/use-mobile.ts +19 -0
  577. package/lib/__templates__/nextjs/src/lib/utils.ts +6 -0
  578. package/lib/__templates__/nextjs/src/server.ts +35 -0
  579. package/lib/__templates__/nextjs/template.config.js +116 -0
  580. package/lib/__templates__/nextjs/tsconfig.json +34 -0
  581. package/lib/__templates__/nuxt-vue/.licos +12 -0
  582. package/lib/__templates__/nuxt-vue/AGENTS.md +42 -0
  583. package/lib/__templates__/nuxt-vue/README.md +73 -0
  584. package/lib/__templates__/nuxt-vue/_gitignore +25 -0
  585. package/lib/__templates__/nuxt-vue/_npmrc +26 -0
  586. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  587. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  588. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  589. package/lib/__templates__/nuxt-vue/nuxt.config.ts +139 -0
  590. package/lib/__templates__/nuxt-vue/package.json +34 -0
  591. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8756 -0
  592. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  593. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  594. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  595. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  596. package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
  597. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  598. package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
  599. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  600. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  601. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  602. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  603. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  604. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  605. package/lib/__templates__/taro/.licos +14 -0
  606. package/lib/__templates__/taro/.licosproj/scripts/deploy_build.sh +19 -0
  607. package/lib/__templates__/taro/.licosproj/scripts/deploy_run.sh +14 -0
  608. package/lib/__templates__/taro/.licosproj/scripts/dev_build.sh +2 -0
  609. package/lib/__templates__/taro/.licosproj/scripts/dev_run.sh +151 -0
  610. package/lib/__templates__/taro/.licosproj/scripts/init_env.sh +5 -0
  611. package/lib/__templates__/taro/.licosproj/scripts/pack.sh +23 -0
  612. package/lib/__templates__/taro/AGENTS.md +514 -0
  613. package/lib/__templates__/taro/README.md +763 -0
  614. package/lib/__templates__/taro/_gitignore +41 -0
  615. package/lib/__templates__/taro/_npmrc +21 -0
  616. package/lib/__templates__/taro/babel.config.js +12 -0
  617. package/lib/__templates__/taro/config/dev.ts +9 -0
  618. package/lib/__templates__/taro/config/index.ts +238 -0
  619. package/lib/__templates__/taro/config/prod.ts +34 -0
  620. package/lib/__templates__/taro/eslint.config.mjs +251 -0
  621. package/lib/__templates__/taro/key/private.appid.key +0 -0
  622. package/lib/__templates__/taro/package.json +113 -0
  623. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  624. package/lib/__templates__/taro/pnpm-lock.yaml +23409 -0
  625. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  626. package/lib/__templates__/taro/project.config.json +16 -0
  627. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  628. package/lib/__templates__/taro/server/package.json +39 -0
  629. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  630. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  631. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  632. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  633. package/lib/__templates__/taro/server/src/main.ts +49 -0
  634. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  635. package/lib/__templates__/taro/src/app.config.ts +11 -0
  636. package/lib/__templates__/taro/src/app.css +156 -0
  637. package/lib/__templates__/taro/src/app.tsx +16 -0
  638. package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
  639. package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
  640. package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
  641. package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
  642. package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
  643. package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
  644. package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
  645. package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
  646. package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
  647. package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
  648. package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
  649. package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
  650. package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
  651. package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
  652. package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
  653. package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
  654. package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
  655. package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
  656. package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
  657. package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
  658. package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
  659. package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
  660. package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
  661. package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
  662. package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
  663. package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
  664. package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
  665. package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +266 -0
  666. package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
  667. package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
  668. package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
  669. package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
  670. package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
  671. package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
  672. package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
  673. package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
  674. package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
  675. package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
  676. package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
  677. package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
  678. package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
  679. package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
  680. package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
  681. package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
  682. package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
  683. package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
  684. package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
  685. package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
  686. package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
  687. package/lib/__templates__/taro/src/index.html +39 -0
  688. package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
  689. package/lib/__templates__/taro/src/lib/measure.ts +115 -0
  690. package/lib/__templates__/taro/src/lib/platform.ts +12 -0
  691. package/lib/__templates__/taro/src/lib/utils.ts +6 -0
  692. package/lib/__templates__/taro/src/network.ts +39 -0
  693. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  694. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  695. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  696. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  697. package/lib/__templates__/taro/src/presets/env.ts +1 -0
  698. package/lib/__templates__/taro/src/presets/h5-container.tsx +16 -0
  699. package/lib/__templates__/taro/src/presets/h5-error-boundary.tsx +391 -0
  700. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +239 -0
  701. package/lib/__templates__/taro/src/presets/h5-styles.ts +222 -0
  702. package/lib/__templates__/taro/src/presets/index.tsx +31 -0
  703. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  704. package/lib/__templates__/taro/template.config.js +68 -0
  705. package/lib/__templates__/taro/tsconfig.json +29 -0
  706. package/lib/__templates__/taro/types/global.d.ts +32 -0
  707. package/lib/__templates__/taro/types/lucide.d.ts +6 -0
  708. package/lib/__templates__/templates.json +162 -0
  709. package/lib/__templates__/vite/.licos +12 -0
  710. package/lib/__templates__/vite/AGENTS.md +41 -0
  711. package/lib/__templates__/vite/README.md +418 -0
  712. package/lib/__templates__/vite/_gitignore +68 -0
  713. package/lib/__templates__/vite/_npmrc +26 -0
  714. package/lib/__templates__/vite/eslint.config.mjs +14 -0
  715. package/lib/__templates__/vite/index.html +13 -0
  716. package/lib/__templates__/vite/package.json +43 -0
  717. package/lib/__templates__/vite/pnpm-lock.yaml +3462 -0
  718. package/lib/__templates__/vite/postcss.config.js +6 -0
  719. package/lib/__templates__/vite/scripts/build.sh +17 -0
  720. package/lib/__templates__/vite/scripts/dev.sh +39 -0
  721. package/lib/__templates__/vite/scripts/prepare.sh +9 -0
  722. package/lib/__templates__/vite/scripts/start.sh +21 -0
  723. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  724. package/lib/__templates__/vite/server/server.ts +65 -0
  725. package/lib/__templates__/vite/server/vite.ts +67 -0
  726. package/lib/__templates__/vite/src/index.css +21 -0
  727. package/lib/__templates__/vite/src/index.ts +5 -0
  728. package/lib/__templates__/vite/src/main.ts +34 -0
  729. package/lib/__templates__/vite/tailwind.config.js +9 -0
  730. package/lib/__templates__/vite/template.config.js +123 -0
  731. package/lib/__templates__/vite/tsconfig.json +17 -0
  732. package/lib/__templates__/vite/vite.config.ts +20 -0
  733. package/lib/cli.js +9312 -0
  734. package/package.json +31 -0
@@ -0,0 +1,3462 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ overrides:
8
+ esbuild: ^0.27.2
9
+ is-generator-function: 1.0.10
10
+
11
+ importers:
12
+
13
+ .:
14
+ dependencies:
15
+ '@supabase/supabase-js':
16
+ specifier: 2.95.3
17
+ version: 2.95.3
18
+ dotenv:
19
+ specifier: ^17.2.3
20
+ version: 17.2.4
21
+ express:
22
+ specifier: ^4.21.2
23
+ version: 4.22.1
24
+ devDependencies:
25
+ '@types/express':
26
+ specifier: ^5.0.0
27
+ version: 5.0.6
28
+ '@types/node':
29
+ specifier: ^22.10.5
30
+ version: 22.19.15
31
+ autoprefixer:
32
+ specifier: ^10.4.20
33
+ version: 10.4.23(postcss@8.5.6)
34
+ specifier: ^0.7.16
35
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
36
+ esbuild:
37
+ specifier: ^0.27.2
38
+ version: 0.27.2
39
+ eslint:
40
+ specifier: ^9
41
+ version: 9.39.2(jiti@1.21.7)
42
+ only-allow:
43
+ specifier: ^1.2.2
44
+ version: 1.2.2
45
+ postcss:
46
+ specifier: ^8.4.49
47
+ version: 8.5.6
48
+ tailwindcss:
49
+ specifier: ^3.4.17
50
+ version: 3.4.19(tsx@4.21.0)
51
+ tsup:
52
+ specifier: ^8.3.5
53
+ version: 8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)
54
+ tsx:
55
+ specifier: ^4.19.2
56
+ version: 4.21.0
57
+ typescript:
58
+ specifier: ^5.6.0
59
+ version: 5.9.3
60
+ typescript-eslint:
61
+ specifier: ^8
62
+ version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
63
+ vite:
64
+ specifier: ^7.2.4
65
+ version: 7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0)
66
+
67
+ packages:
68
+
69
+ '@alloc/quick-lru@5.2.0':
70
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
71
+ engines: {node: '>=10'}
72
+
73
+ '@cfworker/json-schema@4.1.1':
74
+ resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
75
+
76
+ '@esbuild/aix-ppc64@0.27.2':
77
+ resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
78
+ engines: {node: '>=18'}
79
+ cpu: [ppc64]
80
+ os: [aix]
81
+
82
+ '@esbuild/android-arm64@0.27.2':
83
+ resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
84
+ engines: {node: '>=18'}
85
+ cpu: [arm64]
86
+ os: [android]
87
+
88
+ '@esbuild/android-arm@0.27.2':
89
+ resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
90
+ engines: {node: '>=18'}
91
+ cpu: [arm]
92
+ os: [android]
93
+
94
+ '@esbuild/android-x64@0.27.2':
95
+ resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
96
+ engines: {node: '>=18'}
97
+ cpu: [x64]
98
+ os: [android]
99
+
100
+ '@esbuild/darwin-arm64@0.27.2':
101
+ resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
102
+ engines: {node: '>=18'}
103
+ cpu: [arm64]
104
+ os: [darwin]
105
+
106
+ '@esbuild/darwin-x64@0.27.2':
107
+ resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
108
+ engines: {node: '>=18'}
109
+ cpu: [x64]
110
+ os: [darwin]
111
+
112
+ '@esbuild/freebsd-arm64@0.27.2':
113
+ resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
114
+ engines: {node: '>=18'}
115
+ cpu: [arm64]
116
+ os: [freebsd]
117
+
118
+ '@esbuild/freebsd-x64@0.27.2':
119
+ resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
120
+ engines: {node: '>=18'}
121
+ cpu: [x64]
122
+ os: [freebsd]
123
+
124
+ '@esbuild/linux-arm64@0.27.2':
125
+ resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
126
+ engines: {node: '>=18'}
127
+ cpu: [arm64]
128
+ os: [linux]
129
+
130
+ '@esbuild/linux-arm@0.27.2':
131
+ resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
132
+ engines: {node: '>=18'}
133
+ cpu: [arm]
134
+ os: [linux]
135
+
136
+ '@esbuild/linux-ia32@0.27.2':
137
+ resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
138
+ engines: {node: '>=18'}
139
+ cpu: [ia32]
140
+ os: [linux]
141
+
142
+ '@esbuild/linux-loong64@0.27.2':
143
+ resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
144
+ engines: {node: '>=18'}
145
+ cpu: [loong64]
146
+ os: [linux]
147
+
148
+ '@esbuild/linux-mips64el@0.27.2':
149
+ resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
150
+ engines: {node: '>=18'}
151
+ cpu: [mips64el]
152
+ os: [linux]
153
+
154
+ '@esbuild/linux-ppc64@0.27.2':
155
+ resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
156
+ engines: {node: '>=18'}
157
+ cpu: [ppc64]
158
+ os: [linux]
159
+
160
+ '@esbuild/linux-riscv64@0.27.2':
161
+ resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
162
+ engines: {node: '>=18'}
163
+ cpu: [riscv64]
164
+ os: [linux]
165
+
166
+ '@esbuild/linux-s390x@0.27.2':
167
+ resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
168
+ engines: {node: '>=18'}
169
+ cpu: [s390x]
170
+ os: [linux]
171
+
172
+ '@esbuild/linux-x64@0.27.2':
173
+ resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
174
+ engines: {node: '>=18'}
175
+ cpu: [x64]
176
+ os: [linux]
177
+
178
+ '@esbuild/netbsd-arm64@0.27.2':
179
+ resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
180
+ engines: {node: '>=18'}
181
+ cpu: [arm64]
182
+ os: [netbsd]
183
+
184
+ '@esbuild/netbsd-x64@0.27.2':
185
+ resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
186
+ engines: {node: '>=18'}
187
+ cpu: [x64]
188
+ os: [netbsd]
189
+
190
+ '@esbuild/openbsd-arm64@0.27.2':
191
+ resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
192
+ engines: {node: '>=18'}
193
+ cpu: [arm64]
194
+ os: [openbsd]
195
+
196
+ '@esbuild/openbsd-x64@0.27.2':
197
+ resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
198
+ engines: {node: '>=18'}
199
+ cpu: [x64]
200
+ os: [openbsd]
201
+
202
+ '@esbuild/openharmony-arm64@0.27.2':
203
+ resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
204
+ engines: {node: '>=18'}
205
+ cpu: [arm64]
206
+ os: [openharmony]
207
+
208
+ '@esbuild/sunos-x64@0.27.2':
209
+ resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
210
+ engines: {node: '>=18'}
211
+ cpu: [x64]
212
+ os: [sunos]
213
+
214
+ '@esbuild/win32-arm64@0.27.2':
215
+ resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
216
+ engines: {node: '>=18'}
217
+ cpu: [arm64]
218
+ os: [win32]
219
+
220
+ '@esbuild/win32-ia32@0.27.2':
221
+ resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
222
+ engines: {node: '>=18'}
223
+ cpu: [ia32]
224
+ os: [win32]
225
+
226
+ '@esbuild/win32-x64@0.27.2':
227
+ resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
228
+ engines: {node: '>=18'}
229
+ cpu: [x64]
230
+ os: [win32]
231
+
232
+ '@eslint-community/eslint-utils@4.9.1':
233
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
234
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
235
+ peerDependencies:
236
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
237
+
238
+ '@eslint-community/regexpp@4.12.2':
239
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
240
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
241
+
242
+ '@eslint/config-array@0.21.1':
243
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
244
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
245
+
246
+ '@eslint/config-helpers@0.4.2':
247
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
248
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
249
+
250
+ '@eslint/core@0.17.0':
251
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
252
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
253
+
254
+ '@eslint/eslintrc@3.3.3':
255
+ resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
256
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
257
+
258
+ '@eslint/js@9.39.2':
259
+ resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
260
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
261
+
262
+ '@eslint/object-schema@2.1.7':
263
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
264
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
265
+
266
+ '@eslint/plugin-kit@0.4.1':
267
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
268
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
269
+
270
+ '@humanfs/core@0.19.1':
271
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
272
+ engines: {node: '>=18.18.0'}
273
+
274
+ '@humanfs/node@0.16.7':
275
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
276
+ engines: {node: '>=18.18.0'}
277
+
278
+ '@humanwhocodes/module-importer@1.0.1':
279
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
280
+ engines: {node: '>=12.22'}
281
+
282
+ '@humanwhocodes/retry@0.4.3':
283
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
284
+ engines: {node: '>=18.18'}
285
+
286
+ '@jridgewell/gen-mapping@0.3.13':
287
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
288
+
289
+ '@jridgewell/resolve-uri@3.1.2':
290
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
291
+ engines: {node: '>=6.0.0'}
292
+
293
+ '@jridgewell/sourcemap-codec@1.5.5':
294
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
295
+
296
+ '@jridgewell/trace-mapping@0.3.31':
297
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
298
+
299
+ '@langchain/core@1.1.16':
300
+ resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
301
+ engines: {node: '>=20'}
302
+
303
+ '@langchain/openai@1.2.3':
304
+ resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
305
+ engines: {node: '>=20'}
306
+ peerDependencies:
307
+ '@langchain/core': ^1.0.0
308
+
309
+ '@nodelib/fs.scandir@2.1.5':
310
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
311
+ engines: {node: '>= 8'}
312
+
313
+ '@nodelib/fs.stat@2.0.5':
314
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
315
+ engines: {node: '>= 8'}
316
+
317
+ '@nodelib/fs.walk@1.2.8':
318
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
319
+ engines: {node: '>= 8'}
320
+
321
+ '@rollup/rollup-android-arm-eabi@4.55.3':
322
+ resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
323
+ cpu: [arm]
324
+ os: [android]
325
+
326
+ '@rollup/rollup-android-arm64@4.55.3':
327
+ resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
328
+ cpu: [arm64]
329
+ os: [android]
330
+
331
+ '@rollup/rollup-darwin-arm64@4.55.3':
332
+ resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
333
+ cpu: [arm64]
334
+ os: [darwin]
335
+
336
+ '@rollup/rollup-darwin-x64@4.55.3':
337
+ resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
338
+ cpu: [x64]
339
+ os: [darwin]
340
+
341
+ '@rollup/rollup-freebsd-arm64@4.55.3':
342
+ resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
343
+ cpu: [arm64]
344
+ os: [freebsd]
345
+
346
+ '@rollup/rollup-freebsd-x64@4.55.3':
347
+ resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
348
+ cpu: [x64]
349
+ os: [freebsd]
350
+
351
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
352
+ resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
353
+ cpu: [arm]
354
+ os: [linux]
355
+ libc: [glibc]
356
+
357
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
358
+ resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
359
+ cpu: [arm]
360
+ os: [linux]
361
+ libc: [musl]
362
+
363
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
364
+ resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
365
+ cpu: [arm64]
366
+ os: [linux]
367
+ libc: [glibc]
368
+
369
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
370
+ resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
371
+ cpu: [arm64]
372
+ os: [linux]
373
+ libc: [musl]
374
+
375
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
376
+ resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
377
+ cpu: [loong64]
378
+ os: [linux]
379
+ libc: [glibc]
380
+
381
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
382
+ resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
383
+ cpu: [loong64]
384
+ os: [linux]
385
+ libc: [musl]
386
+
387
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
388
+ resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
389
+ cpu: [ppc64]
390
+ os: [linux]
391
+ libc: [glibc]
392
+
393
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
394
+ resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
395
+ cpu: [ppc64]
396
+ os: [linux]
397
+ libc: [musl]
398
+
399
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
400
+ resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
401
+ cpu: [riscv64]
402
+ os: [linux]
403
+ libc: [glibc]
404
+
405
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
406
+ resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
407
+ cpu: [riscv64]
408
+ os: [linux]
409
+ libc: [musl]
410
+
411
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
412
+ resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
413
+ cpu: [s390x]
414
+ os: [linux]
415
+ libc: [glibc]
416
+
417
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
418
+ resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
419
+ cpu: [x64]
420
+ os: [linux]
421
+ libc: [glibc]
422
+
423
+ '@rollup/rollup-linux-x64-musl@4.55.3':
424
+ resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
425
+ cpu: [x64]
426
+ os: [linux]
427
+ libc: [musl]
428
+
429
+ '@rollup/rollup-openbsd-x64@4.55.3':
430
+ resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
431
+ cpu: [x64]
432
+ os: [openbsd]
433
+
434
+ '@rollup/rollup-openharmony-arm64@4.55.3':
435
+ resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
436
+ cpu: [arm64]
437
+ os: [openharmony]
438
+
439
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
440
+ resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
441
+ cpu: [arm64]
442
+ os: [win32]
443
+
444
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
445
+ resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
446
+ cpu: [ia32]
447
+ os: [win32]
448
+
449
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
450
+ resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
451
+ cpu: [x64]
452
+ os: [win32]
453
+
454
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
455
+ resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
456
+ cpu: [x64]
457
+ os: [win32]
458
+
459
+ '@supabase/auth-js@2.95.3':
460
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
461
+ engines: {node: '>=20.0.0'}
462
+
463
+ '@supabase/functions-js@2.95.3':
464
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
465
+ engines: {node: '>=20.0.0'}
466
+
467
+ '@supabase/postgrest-js@2.95.3':
468
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
469
+ engines: {node: '>=20.0.0'}
470
+
471
+ '@supabase/realtime-js@2.95.3':
472
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
473
+ engines: {node: '>=20.0.0'}
474
+
475
+ '@supabase/storage-js@2.95.3':
476
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
477
+ engines: {node: '>=20.0.0'}
478
+
479
+ '@supabase/supabase-js@2.95.3':
480
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
481
+ engines: {node: '>=20.0.0'}
482
+
483
+ '@types/body-parser@1.19.6':
484
+ resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
485
+
486
+ '@types/connect@3.4.38':
487
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
488
+
489
+ '@types/estree@1.0.8':
490
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
491
+
492
+ '@types/express-serve-static-core@5.1.1':
493
+ resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==}
494
+
495
+ '@types/express@5.0.6':
496
+ resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
497
+
498
+ '@types/http-errors@2.0.5':
499
+ resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
500
+
501
+ '@types/json-schema@7.0.15':
502
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
503
+
504
+ '@types/node@22.19.15':
505
+ resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==}
506
+
507
+ '@types/phoenix@1.6.7':
508
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
509
+
510
+ '@types/qs@6.15.0':
511
+ resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==}
512
+
513
+ '@types/range-parser@1.2.7':
514
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
515
+
516
+ '@types/send@1.2.1':
517
+ resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
518
+
519
+ '@types/serve-static@2.2.0':
520
+ resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
521
+
522
+ '@types/uuid@10.0.0':
523
+ resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
524
+
525
+ '@types/ws@8.18.1':
526
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
527
+
528
+ '@typescript-eslint/eslint-plugin@8.53.1':
529
+ resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
530
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
531
+ peerDependencies:
532
+ '@typescript-eslint/parser': ^8.53.1
533
+ eslint: ^8.57.0 || ^9.0.0
534
+ typescript: '>=4.8.4 <6.0.0'
535
+
536
+ '@typescript-eslint/parser@8.53.1':
537
+ resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
538
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
539
+ peerDependencies:
540
+ eslint: ^8.57.0 || ^9.0.0
541
+ typescript: '>=4.8.4 <6.0.0'
542
+
543
+ '@typescript-eslint/project-service@8.53.1':
544
+ resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
545
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
546
+ peerDependencies:
547
+ typescript: '>=4.8.4 <6.0.0'
548
+
549
+ '@typescript-eslint/scope-manager@8.53.1':
550
+ resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
551
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
552
+
553
+ '@typescript-eslint/tsconfig-utils@8.53.1':
554
+ resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
555
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
556
+ peerDependencies:
557
+ typescript: '>=4.8.4 <6.0.0'
558
+
559
+ '@typescript-eslint/type-utils@8.53.1':
560
+ resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
561
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
562
+ peerDependencies:
563
+ eslint: ^8.57.0 || ^9.0.0
564
+ typescript: '>=4.8.4 <6.0.0'
565
+
566
+ '@typescript-eslint/types@8.53.1':
567
+ resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
568
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
569
+
570
+ '@typescript-eslint/typescript-estree@8.53.1':
571
+ resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
572
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
573
+ peerDependencies:
574
+ typescript: '>=4.8.4 <6.0.0'
575
+
576
+ '@typescript-eslint/utils@8.53.1':
577
+ resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
578
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
579
+ peerDependencies:
580
+ eslint: ^8.57.0 || ^9.0.0
581
+ typescript: '>=4.8.4 <6.0.0'
582
+
583
+ '@typescript-eslint/visitor-keys@8.53.1':
584
+ resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
585
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
586
+
587
+ accepts@1.3.8:
588
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
589
+ engines: {node: '>= 0.6'}
590
+
591
+ acorn-jsx@5.3.2:
592
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
593
+ peerDependencies:
594
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
595
+
596
+ acorn@8.15.0:
597
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
598
+ engines: {node: '>=0.4.0'}
599
+ hasBin: true
600
+
601
+ acorn@8.16.0:
602
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
603
+ engines: {node: '>=0.4.0'}
604
+ hasBin: true
605
+
606
+ ajv@6.12.6:
607
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
608
+
609
+ ansi-styles@4.3.0:
610
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
611
+ engines: {node: '>=8'}
612
+
613
+ ansi-styles@5.2.0:
614
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
615
+ engines: {node: '>=10'}
616
+
617
+ any-promise@1.3.0:
618
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
619
+
620
+ anymatch@3.1.3:
621
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
622
+ engines: {node: '>= 8'}
623
+
624
+ arg@5.0.2:
625
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
626
+
627
+ argparse@2.0.1:
628
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
629
+
630
+ array-flatten@1.1.1:
631
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
632
+
633
+ asynckit@0.4.0:
634
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
635
+
636
+ autoprefixer@10.4.23:
637
+ resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
638
+ engines: {node: ^10 || ^12 || >=14}
639
+ hasBin: true
640
+ peerDependencies:
641
+ postcss: ^8.1.0
642
+
643
+ axios@1.13.2:
644
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
645
+
646
+ balanced-match@1.0.2:
647
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
648
+
649
+ base64-js@1.5.1:
650
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
651
+
652
+ baseline-browser-mapping@2.9.16:
653
+ resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
654
+ hasBin: true
655
+
656
+ binary-extensions@2.3.0:
657
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
658
+ engines: {node: '>=8'}
659
+
660
+ body-parser@1.20.4:
661
+ resolution: {integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==}
662
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
663
+
664
+ brace-expansion@1.1.12:
665
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
666
+
667
+ brace-expansion@2.0.2:
668
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
669
+
670
+ braces@3.0.3:
671
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
672
+ engines: {node: '>=8'}
673
+
674
+ browserslist@4.28.1:
675
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
676
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
677
+ hasBin: true
678
+
679
+ bundle-require@5.1.0:
680
+ resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
681
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
682
+ peerDependencies:
683
+ esbuild: ^0.27.2
684
+
685
+ bytes@3.1.2:
686
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
687
+ engines: {node: '>= 0.8'}
688
+
689
+ cac@6.7.14:
690
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
691
+ engines: {node: '>=8'}
692
+
693
+ call-bind-apply-helpers@1.0.2:
694
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
695
+ engines: {node: '>= 0.4'}
696
+
697
+ call-bound@1.0.4:
698
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
699
+ engines: {node: '>= 0.4'}
700
+
701
+ callsites@3.1.0:
702
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
703
+ engines: {node: '>=6'}
704
+
705
+ camelcase-css@2.0.1:
706
+ resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
707
+ engines: {node: '>= 6'}
708
+
709
+ camelcase@6.3.0:
710
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
711
+ engines: {node: '>=10'}
712
+
713
+ caniuse-lite@1.0.30001765:
714
+ resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
715
+
716
+ chalk@4.1.2:
717
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
718
+ engines: {node: '>=10'}
719
+
720
+ chokidar@3.6.0:
721
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
722
+ engines: {node: '>= 8.10.0'}
723
+
724
+ chokidar@4.0.3:
725
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
726
+ engines: {node: '>= 14.16.0'}
727
+
728
+ color-convert@2.0.1:
729
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
730
+ engines: {node: '>=7.0.0'}
731
+
732
+ color-name@1.1.4:
733
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
734
+
735
+ combined-stream@1.0.8:
736
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
737
+ engines: {node: '>= 0.8'}
738
+
739
+ commander@4.1.1:
740
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
741
+ engines: {node: '>= 6'}
742
+
743
+ concat-map@0.0.1:
744
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
745
+
746
+ confbox@0.1.8:
747
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
748
+
749
+ consola@3.4.2:
750
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
751
+ engines: {node: ^14.18.0 || >=16.10.0}
752
+
753
+ console-table-printer@2.15.0:
754
+ resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
755
+
756
+ content-disposition@0.5.4:
757
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
758
+ engines: {node: '>= 0.6'}
759
+
760
+ content-type@1.0.5:
761
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
762
+ engines: {node: '>= 0.6'}
763
+
764
+ cookie-signature@1.0.7:
765
+ resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==}
766
+
767
+ cookie@0.7.2:
768
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
769
+ engines: {node: '>= 0.6'}
770
+
771
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
772
+ engines: {node: '>=18.0.0'}
773
+ hasBin: true
774
+
775
+ cross-spawn@7.0.6:
776
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
777
+ engines: {node: '>= 8'}
778
+
779
+ cssesc@3.0.0:
780
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
781
+ engines: {node: '>=4'}
782
+ hasBin: true
783
+
784
+ debug@2.6.9:
785
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
786
+ peerDependencies:
787
+ supports-color: '*'
788
+ peerDependenciesMeta:
789
+ supports-color:
790
+ optional: true
791
+
792
+ debug@4.4.3:
793
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
794
+ engines: {node: '>=6.0'}
795
+ peerDependencies:
796
+ supports-color: '*'
797
+ peerDependenciesMeta:
798
+ supports-color:
799
+ optional: true
800
+
801
+ decamelize@1.2.0:
802
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
803
+ engines: {node: '>=0.10.0'}
804
+
805
+ deep-is@0.1.4:
806
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
807
+
808
+ delayed-stream@1.0.0:
809
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
810
+ engines: {node: '>=0.4.0'}
811
+
812
+ depd@2.0.0:
813
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
814
+ engines: {node: '>= 0.8'}
815
+
816
+ destroy@1.2.0:
817
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
818
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
819
+
820
+ didyoumean@1.2.2:
821
+ resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
822
+
823
+ dlv@1.1.3:
824
+ resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
825
+
826
+ dotenv@17.2.4:
827
+ resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
828
+ engines: {node: '>=12'}
829
+
830
+ dunder-proto@1.0.1:
831
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
832
+ engines: {node: '>= 0.4'}
833
+
834
+ ee-first@1.1.1:
835
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
836
+
837
+ electron-to-chromium@1.5.267:
838
+ resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
839
+
840
+ encodeurl@2.0.0:
841
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
842
+ engines: {node: '>= 0.8'}
843
+
844
+ es-define-property@1.0.1:
845
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
846
+ engines: {node: '>= 0.4'}
847
+
848
+ es-errors@1.3.0:
849
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
850
+ engines: {node: '>= 0.4'}
851
+
852
+ es-object-atoms@1.1.1:
853
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
854
+ engines: {node: '>= 0.4'}
855
+
856
+ es-set-tostringtag@2.1.0:
857
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
858
+ engines: {node: '>= 0.4'}
859
+
860
+ esbuild@0.27.2:
861
+ resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
862
+ engines: {node: '>=18'}
863
+ hasBin: true
864
+
865
+ escalade@3.2.0:
866
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
867
+ engines: {node: '>=6'}
868
+
869
+ escape-html@1.0.3:
870
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
871
+
872
+ escape-string-regexp@4.0.0:
873
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
874
+ engines: {node: '>=10'}
875
+
876
+ eslint-scope@8.4.0:
877
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
878
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
879
+
880
+ eslint-visitor-keys@3.4.3:
881
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
882
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
883
+
884
+ eslint-visitor-keys@4.2.1:
885
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
886
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
887
+
888
+ eslint@9.39.2:
889
+ resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
890
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
891
+ hasBin: true
892
+ peerDependencies:
893
+ jiti: '*'
894
+ peerDependenciesMeta:
895
+ jiti:
896
+ optional: true
897
+
898
+ espree@10.4.0:
899
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
900
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
901
+
902
+ esquery@1.7.0:
903
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
904
+ engines: {node: '>=0.10'}
905
+
906
+ esrecurse@4.3.0:
907
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
908
+ engines: {node: '>=4.0'}
909
+
910
+ estraverse@5.3.0:
911
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
912
+ engines: {node: '>=4.0'}
913
+
914
+ esutils@2.0.3:
915
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
916
+ engines: {node: '>=0.10.0'}
917
+
918
+ etag@1.8.1:
919
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
920
+ engines: {node: '>= 0.6'}
921
+
922
+ eventemitter3@4.0.7:
923
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
924
+
925
+ express@4.22.1:
926
+ resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==}
927
+ engines: {node: '>= 0.10.0'}
928
+
929
+ fast-deep-equal@3.1.3:
930
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
931
+
932
+ fast-glob@3.3.3:
933
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
934
+ engines: {node: '>=8.6.0'}
935
+
936
+ fast-json-stable-stringify@2.1.0:
937
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
938
+
939
+ fast-levenshtein@2.0.6:
940
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
941
+
942
+ fastq@1.20.1:
943
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
944
+
945
+ fdir@6.5.0:
946
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
947
+ engines: {node: '>=12.0.0'}
948
+ peerDependencies:
949
+ picomatch: ^3 || ^4
950
+ peerDependenciesMeta:
951
+ picomatch:
952
+ optional: true
953
+
954
+ file-entry-cache@8.0.0:
955
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
956
+ engines: {node: '>=16.0.0'}
957
+
958
+ fill-range@7.1.1:
959
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
960
+ engines: {node: '>=8'}
961
+
962
+ finalhandler@1.3.2:
963
+ resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
964
+ engines: {node: '>= 0.8'}
965
+
966
+ find-up@5.0.0:
967
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
968
+ engines: {node: '>=10'}
969
+
970
+ fix-dts-default-cjs-exports@1.0.1:
971
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
972
+
973
+ flat-cache@4.0.1:
974
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
975
+ engines: {node: '>=16'}
976
+
977
+ flatted@3.3.3:
978
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
979
+
980
+ follow-redirects@1.15.11:
981
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
982
+ engines: {node: '>=4.0'}
983
+ peerDependencies:
984
+ debug: '*'
985
+ peerDependenciesMeta:
986
+ debug:
987
+ optional: true
988
+
989
+ form-data@4.0.5:
990
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
991
+ engines: {node: '>= 6'}
992
+
993
+ forwarded@0.2.0:
994
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
995
+ engines: {node: '>= 0.6'}
996
+
997
+ fraction.js@5.3.4:
998
+ resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
999
+
1000
+ fresh@0.5.2:
1001
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
1002
+ engines: {node: '>= 0.6'}
1003
+
1004
+ fsevents@2.3.3:
1005
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1006
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1007
+ os: [darwin]
1008
+
1009
+ function-bind@1.1.2:
1010
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1011
+
1012
+ get-intrinsic@1.3.0:
1013
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
1014
+ engines: {node: '>= 0.4'}
1015
+
1016
+ get-proto@1.0.1:
1017
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
1018
+ engines: {node: '>= 0.4'}
1019
+
1020
+ get-tsconfig@4.13.6:
1021
+ resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
1022
+
1023
+ glob-parent@5.1.2:
1024
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1025
+ engines: {node: '>= 6'}
1026
+
1027
+ glob-parent@6.0.2:
1028
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1029
+ engines: {node: '>=10.13.0'}
1030
+
1031
+ globals@14.0.0:
1032
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1033
+ engines: {node: '>=18'}
1034
+
1035
+ gopd@1.2.0:
1036
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
1037
+ engines: {node: '>= 0.4'}
1038
+
1039
+ has-flag@4.0.0:
1040
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1041
+ engines: {node: '>=8'}
1042
+
1043
+ has-symbols@1.1.0:
1044
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
1045
+ engines: {node: '>= 0.4'}
1046
+
1047
+ has-tostringtag@1.0.2:
1048
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1049
+ engines: {node: '>= 0.4'}
1050
+
1051
+ hasown@2.0.2:
1052
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1053
+ engines: {node: '>= 0.4'}
1054
+
1055
+ http-errors@2.0.1:
1056
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
1057
+ engines: {node: '>= 0.8'}
1058
+
1059
+ iceberg-js@0.8.1:
1060
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
1061
+ engines: {node: '>=20.0.0'}
1062
+
1063
+ iconv-lite@0.4.24:
1064
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
1065
+ engines: {node: '>=0.10.0'}
1066
+
1067
+ ignore@5.3.2:
1068
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1069
+ engines: {node: '>= 4'}
1070
+
1071
+ ignore@7.0.5:
1072
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
1073
+ engines: {node: '>= 4'}
1074
+
1075
+ import-fresh@3.3.1:
1076
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
1077
+ engines: {node: '>=6'}
1078
+
1079
+ imurmurhash@0.1.4:
1080
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1081
+ engines: {node: '>=0.8.19'}
1082
+
1083
+ inherits@2.0.4:
1084
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1085
+
1086
+ ipaddr.js@1.9.1:
1087
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
1088
+ engines: {node: '>= 0.10'}
1089
+
1090
+ is-binary-path@2.1.0:
1091
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1092
+ engines: {node: '>=8'}
1093
+
1094
+ is-core-module@2.16.1:
1095
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
1096
+ engines: {node: '>= 0.4'}
1097
+
1098
+ is-extglob@2.1.1:
1099
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1100
+ engines: {node: '>=0.10.0'}
1101
+
1102
+ is-glob@4.0.3:
1103
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1104
+ engines: {node: '>=0.10.0'}
1105
+
1106
+ is-number@7.0.0:
1107
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1108
+ engines: {node: '>=0.12.0'}
1109
+
1110
+ isexe@2.0.0:
1111
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1112
+
1113
+ jiti@1.21.7:
1114
+ resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
1115
+ hasBin: true
1116
+
1117
+ joycon@3.1.1:
1118
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
1119
+ engines: {node: '>=10'}
1120
+
1121
+ js-tiktoken@1.0.21:
1122
+ resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
1123
+
1124
+ js-yaml@4.1.1:
1125
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
1126
+ hasBin: true
1127
+
1128
+ json-buffer@3.0.1:
1129
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1130
+
1131
+ json-schema-traverse@0.4.1:
1132
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1133
+
1134
+ json-stable-stringify-without-jsonify@1.0.1:
1135
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1136
+
1137
+ keyv@4.5.4:
1138
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1139
+
1140
+ langsmith@0.4.7:
1141
+ resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
1142
+ peerDependencies:
1143
+ '@opentelemetry/api': '*'
1144
+ '@opentelemetry/exporter-trace-otlp-proto': '*'
1145
+ '@opentelemetry/sdk-trace-base': '*'
1146
+ openai: '*'
1147
+ peerDependenciesMeta:
1148
+ '@opentelemetry/api':
1149
+ optional: true
1150
+ '@opentelemetry/exporter-trace-otlp-proto':
1151
+ optional: true
1152
+ '@opentelemetry/sdk-trace-base':
1153
+ optional: true
1154
+ openai:
1155
+ optional: true
1156
+
1157
+ levn@0.4.1:
1158
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1159
+ engines: {node: '>= 0.8.0'}
1160
+
1161
+ lilconfig@3.1.3:
1162
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
1163
+ engines: {node: '>=14'}
1164
+
1165
+ lines-and-columns@1.2.4:
1166
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1167
+
1168
+ load-tsconfig@0.2.5:
1169
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
1170
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1171
+
1172
+ locate-path@6.0.0:
1173
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1174
+ engines: {node: '>=10'}
1175
+
1176
+ lodash.merge@4.6.2:
1177
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1178
+
1179
+ magic-string@0.30.21:
1180
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1181
+
1182
+ math-intrinsics@1.1.0:
1183
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1184
+ engines: {node: '>= 0.4'}
1185
+
1186
+ media-typer@0.3.0:
1187
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
1188
+ engines: {node: '>= 0.6'}
1189
+
1190
+ merge-descriptors@1.0.3:
1191
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
1192
+
1193
+ merge2@1.4.1:
1194
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1195
+ engines: {node: '>= 8'}
1196
+
1197
+ methods@1.1.2:
1198
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
1199
+ engines: {node: '>= 0.6'}
1200
+
1201
+ micromatch@4.0.8:
1202
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1203
+ engines: {node: '>=8.6'}
1204
+
1205
+ mime-db@1.52.0:
1206
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
1207
+ engines: {node: '>= 0.6'}
1208
+
1209
+ mime-types@2.1.35:
1210
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1211
+ engines: {node: '>= 0.6'}
1212
+
1213
+ mime@1.6.0:
1214
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
1215
+ engines: {node: '>=4'}
1216
+ hasBin: true
1217
+
1218
+ minimatch@3.1.2:
1219
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1220
+
1221
+ minimatch@9.0.5:
1222
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1223
+ engines: {node: '>=16 || 14 >=14.17'}
1224
+
1225
+ mlly@1.8.1:
1226
+ resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
1227
+
1228
+ ms@2.0.0:
1229
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
1230
+
1231
+ ms@2.1.3:
1232
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1233
+
1234
+ mustache@4.2.0:
1235
+ resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
1236
+ hasBin: true
1237
+
1238
+ mz@2.7.0:
1239
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1240
+
1241
+ nanoid@3.3.11:
1242
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
1243
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1244
+ hasBin: true
1245
+
1246
+ natural-compare@1.4.0:
1247
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1248
+
1249
+ negotiator@0.6.3:
1250
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
1251
+ engines: {node: '>= 0.6'}
1252
+
1253
+ node-releases@2.0.27:
1254
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
1255
+
1256
+ normalize-path@3.0.0:
1257
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1258
+ engines: {node: '>=0.10.0'}
1259
+
1260
+ object-assign@4.1.1:
1261
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1262
+ engines: {node: '>=0.10.0'}
1263
+
1264
+ object-hash@3.0.0:
1265
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1266
+ engines: {node: '>= 6'}
1267
+
1268
+ object-inspect@1.13.4:
1269
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
1270
+ engines: {node: '>= 0.4'}
1271
+
1272
+ on-finished@2.4.1:
1273
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
1274
+ engines: {node: '>= 0.8'}
1275
+
1276
+ only-allow@1.2.2:
1277
+ resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
1278
+ hasBin: true
1279
+
1280
+ openai@6.16.0:
1281
+ resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
1282
+ hasBin: true
1283
+ peerDependencies:
1284
+ ws: ^8.18.0
1285
+ zod: ^3.25 || ^4.0
1286
+ peerDependenciesMeta:
1287
+ ws:
1288
+ optional: true
1289
+ zod:
1290
+ optional: true
1291
+
1292
+ optionator@0.9.4:
1293
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1294
+ engines: {node: '>= 0.8.0'}
1295
+
1296
+ p-finally@1.0.0:
1297
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
1298
+ engines: {node: '>=4'}
1299
+
1300
+ p-limit@3.1.0:
1301
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1302
+ engines: {node: '>=10'}
1303
+
1304
+ p-locate@5.0.0:
1305
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1306
+ engines: {node: '>=10'}
1307
+
1308
+ p-queue@6.6.2:
1309
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
1310
+ engines: {node: '>=8'}
1311
+
1312
+ p-timeout@3.2.0:
1313
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
1314
+ engines: {node: '>=8'}
1315
+
1316
+ parent-module@1.0.1:
1317
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1318
+ engines: {node: '>=6'}
1319
+
1320
+ parseurl@1.3.3:
1321
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
1322
+ engines: {node: '>= 0.8'}
1323
+
1324
+ path-exists@4.0.0:
1325
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1326
+ engines: {node: '>=8'}
1327
+
1328
+ path-key@3.1.1:
1329
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1330
+ engines: {node: '>=8'}
1331
+
1332
+ path-parse@1.0.7:
1333
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1334
+
1335
+ path-to-regexp@0.1.12:
1336
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
1337
+
1338
+ pathe@2.0.3:
1339
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
1340
+
1341
+ pg-cloudflare@1.3.0:
1342
+ resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
1343
+
1344
+ pg-connection-string@2.10.1:
1345
+ resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
1346
+
1347
+ pg-int8@1.0.1:
1348
+ resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
1349
+ engines: {node: '>=4.0.0'}
1350
+
1351
+ pg-pool@3.11.0:
1352
+ resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
1353
+ peerDependencies:
1354
+ pg: '>=8.0'
1355
+
1356
+ pg-protocol@1.11.0:
1357
+ resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
1358
+
1359
+ pg-types@2.2.0:
1360
+ resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
1361
+ engines: {node: '>=4'}
1362
+
1363
+ pg@8.17.2:
1364
+ resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
1365
+ engines: {node: '>= 16.0.0'}
1366
+ peerDependencies:
1367
+ pg-native: '>=3.0.1'
1368
+ peerDependenciesMeta:
1369
+ pg-native:
1370
+ optional: true
1371
+
1372
+ pgpass@1.0.5:
1373
+ resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
1374
+
1375
+ picocolors@1.1.1:
1376
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1377
+
1378
+ picomatch@2.3.1:
1379
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1380
+ engines: {node: '>=8.6'}
1381
+
1382
+ picomatch@4.0.3:
1383
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
1384
+ engines: {node: '>=12'}
1385
+
1386
+ pify@2.3.0:
1387
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1388
+ engines: {node: '>=0.10.0'}
1389
+
1390
+ pirates@4.0.7:
1391
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
1392
+ engines: {node: '>= 6'}
1393
+
1394
+ pkg-types@1.3.1:
1395
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
1396
+
1397
+ postcss-import@15.1.0:
1398
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1399
+ engines: {node: '>=14.0.0'}
1400
+ peerDependencies:
1401
+ postcss: ^8.0.0
1402
+
1403
+ postcss-js@4.1.0:
1404
+ resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
1405
+ engines: {node: ^12 || ^14 || >= 16}
1406
+ peerDependencies:
1407
+ postcss: ^8.4.21
1408
+
1409
+ postcss-load-config@6.0.1:
1410
+ resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
1411
+ engines: {node: '>= 18'}
1412
+ peerDependencies:
1413
+ jiti: '>=1.21.0'
1414
+ postcss: '>=8.0.9'
1415
+ tsx: ^4.8.1
1416
+ yaml: ^2.4.2
1417
+ peerDependenciesMeta:
1418
+ jiti:
1419
+ optional: true
1420
+ postcss:
1421
+ optional: true
1422
+ tsx:
1423
+ optional: true
1424
+ yaml:
1425
+ optional: true
1426
+
1427
+ postcss-nested@6.2.0:
1428
+ resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1429
+ engines: {node: '>=12.0'}
1430
+ peerDependencies:
1431
+ postcss: ^8.2.14
1432
+
1433
+ postcss-selector-parser@6.1.2:
1434
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1435
+ engines: {node: '>=4'}
1436
+
1437
+ postcss-value-parser@4.2.0:
1438
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1439
+
1440
+ postcss@8.5.6:
1441
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
1442
+ engines: {node: ^10 || ^12 || >=14}
1443
+
1444
+ postgres-array@2.0.0:
1445
+ resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
1446
+ engines: {node: '>=4'}
1447
+
1448
+ postgres-bytea@1.0.1:
1449
+ resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
1450
+ engines: {node: '>=0.10.0'}
1451
+
1452
+ postgres-date@1.0.7:
1453
+ resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
1454
+ engines: {node: '>=0.10.0'}
1455
+
1456
+ postgres-interval@1.2.0:
1457
+ resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
1458
+ engines: {node: '>=0.10.0'}
1459
+
1460
+ prelude-ls@1.2.1:
1461
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1462
+ engines: {node: '>= 0.8.0'}
1463
+
1464
+ proxy-addr@2.0.7:
1465
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
1466
+ engines: {node: '>= 0.10'}
1467
+
1468
+ proxy-from-env@1.1.0:
1469
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
1470
+
1471
+ punycode@2.3.1:
1472
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1473
+ engines: {node: '>=6'}
1474
+
1475
+ qs@6.14.2:
1476
+ resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==}
1477
+ engines: {node: '>=0.6'}
1478
+
1479
+ queue-microtask@1.2.3:
1480
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1481
+
1482
+ range-parser@1.2.1:
1483
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
1484
+ engines: {node: '>= 0.6'}
1485
+
1486
+ raw-body@2.5.3:
1487
+ resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
1488
+ engines: {node: '>= 0.8'}
1489
+
1490
+ read-cache@1.0.0:
1491
+ resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1492
+
1493
+ readdirp@3.6.0:
1494
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1495
+ engines: {node: '>=8.10.0'}
1496
+
1497
+ readdirp@4.1.2:
1498
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
1499
+ engines: {node: '>= 14.18.0'}
1500
+
1501
+ resolve-from@4.0.0:
1502
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1503
+ engines: {node: '>=4'}
1504
+
1505
+ resolve-from@5.0.0:
1506
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
1507
+ engines: {node: '>=8'}
1508
+
1509
+ resolve-pkg-maps@1.0.0:
1510
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1511
+
1512
+ resolve@1.22.11:
1513
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
1514
+ engines: {node: '>= 0.4'}
1515
+ hasBin: true
1516
+
1517
+ reusify@1.1.0:
1518
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
1519
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1520
+
1521
+ rollup@4.55.3:
1522
+ resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
1523
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1524
+ hasBin: true
1525
+
1526
+ run-parallel@1.2.0:
1527
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1528
+
1529
+ safe-buffer@5.2.1:
1530
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
1531
+
1532
+ safer-buffer@2.1.2:
1533
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
1534
+
1535
+ semver@7.7.3:
1536
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
1537
+ engines: {node: '>=10'}
1538
+ hasBin: true
1539
+
1540
+ send@0.19.2:
1541
+ resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
1542
+ engines: {node: '>= 0.8.0'}
1543
+
1544
+ serve-static@1.16.3:
1545
+ resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
1546
+ engines: {node: '>= 0.8.0'}
1547
+
1548
+ setprototypeof@1.2.0:
1549
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
1550
+
1551
+ shebang-command@2.0.0:
1552
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1553
+ engines: {node: '>=8'}
1554
+
1555
+ shebang-regex@3.0.0:
1556
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1557
+ engines: {node: '>=8'}
1558
+
1559
+ side-channel-list@1.0.0:
1560
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
1561
+ engines: {node: '>= 0.4'}
1562
+
1563
+ side-channel-map@1.0.1:
1564
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
1565
+ engines: {node: '>= 0.4'}
1566
+
1567
+ side-channel-weakmap@1.0.2:
1568
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
1569
+ engines: {node: '>= 0.4'}
1570
+
1571
+ side-channel@1.1.0:
1572
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
1573
+ engines: {node: '>= 0.4'}
1574
+
1575
+ simple-wcswidth@1.1.2:
1576
+ resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
1577
+
1578
+ source-map-js@1.2.1:
1579
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1580
+ engines: {node: '>=0.10.0'}
1581
+
1582
+ source-map@0.7.6:
1583
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
1584
+ engines: {node: '>= 12'}
1585
+
1586
+ split2@4.2.0:
1587
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
1588
+ engines: {node: '>= 10.x'}
1589
+
1590
+ statuses@2.0.2:
1591
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
1592
+ engines: {node: '>= 0.8'}
1593
+
1594
+ strip-json-comments@3.1.1:
1595
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1596
+ engines: {node: '>=8'}
1597
+
1598
+ sucrase@3.35.1:
1599
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
1600
+ engines: {node: '>=16 || 14 >=14.17'}
1601
+ hasBin: true
1602
+
1603
+ supports-color@7.2.0:
1604
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1605
+ engines: {node: '>=8'}
1606
+
1607
+ supports-preserve-symlinks-flag@1.0.0:
1608
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1609
+ engines: {node: '>= 0.4'}
1610
+
1611
+ tailwindcss@3.4.19:
1612
+ resolution: {integrity: sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==}
1613
+ engines: {node: '>=14.0.0'}
1614
+ hasBin: true
1615
+
1616
+ thenify-all@1.6.0:
1617
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1618
+ engines: {node: '>=0.8'}
1619
+
1620
+ thenify@3.3.1:
1621
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1622
+
1623
+ tinyexec@0.3.2:
1624
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1625
+
1626
+ tinyglobby@0.2.15:
1627
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
1628
+ engines: {node: '>=12.0.0'}
1629
+
1630
+ to-regex-range@5.0.1:
1631
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1632
+ engines: {node: '>=8.0'}
1633
+
1634
+ toidentifier@1.0.1:
1635
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
1636
+ engines: {node: '>=0.6'}
1637
+
1638
+ tree-kill@1.2.2:
1639
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
1640
+ hasBin: true
1641
+
1642
+ ts-api-utils@2.4.0:
1643
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
1644
+ engines: {node: '>=18.12'}
1645
+ peerDependencies:
1646
+ typescript: '>=4.8.4'
1647
+
1648
+ ts-interface-checker@0.1.13:
1649
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1650
+
1651
+ tslib@2.8.1:
1652
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1653
+
1654
+ tsup@8.5.1:
1655
+ resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
1656
+ engines: {node: '>=18'}
1657
+ hasBin: true
1658
+ peerDependencies:
1659
+ '@microsoft/api-extractor': ^7.36.0
1660
+ '@swc/core': ^1
1661
+ postcss: ^8.4.12
1662
+ typescript: '>=4.5.0'
1663
+ peerDependenciesMeta:
1664
+ '@microsoft/api-extractor':
1665
+ optional: true
1666
+ '@swc/core':
1667
+ optional: true
1668
+ postcss:
1669
+ optional: true
1670
+ typescript:
1671
+ optional: true
1672
+
1673
+ tsx@4.21.0:
1674
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
1675
+ engines: {node: '>=18.0.0'}
1676
+ hasBin: true
1677
+
1678
+ type-check@0.4.0:
1679
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1680
+ engines: {node: '>= 0.8.0'}
1681
+
1682
+ type-is@1.6.18:
1683
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
1684
+ engines: {node: '>= 0.6'}
1685
+
1686
+ typescript-eslint@8.53.1:
1687
+ resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
1688
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1689
+ peerDependencies:
1690
+ eslint: ^8.57.0 || ^9.0.0
1691
+ typescript: '>=4.8.4 <6.0.0'
1692
+
1693
+ typescript@5.9.3:
1694
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
1695
+ engines: {node: '>=14.17'}
1696
+ hasBin: true
1697
+
1698
+ ufo@1.6.3:
1699
+ resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
1700
+
1701
+ undici-types@6.21.0:
1702
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
1703
+
1704
+ unpipe@1.0.0:
1705
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
1706
+ engines: {node: '>= 0.8'}
1707
+
1708
+ update-browserslist-db@1.2.3:
1709
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
1710
+ hasBin: true
1711
+ peerDependencies:
1712
+ browserslist: '>= 4.21.0'
1713
+
1714
+ uri-js@4.4.1:
1715
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1716
+
1717
+ util-deprecate@1.0.2:
1718
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1719
+
1720
+ utils-merge@1.0.1:
1721
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
1722
+ engines: {node: '>= 0.4.0'}
1723
+
1724
+ uuid@10.0.0:
1725
+ resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
1726
+ hasBin: true
1727
+
1728
+ vary@1.1.2:
1729
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
1730
+ engines: {node: '>= 0.8'}
1731
+
1732
+ vite@7.3.1:
1733
+ resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
1734
+ engines: {node: ^20.19.0 || >=22.12.0}
1735
+ hasBin: true
1736
+ peerDependencies:
1737
+ '@types/node': ^20.19.0 || >=22.12.0
1738
+ jiti: '>=1.21.0'
1739
+ less: ^4.0.0
1740
+ lightningcss: ^1.21.0
1741
+ sass: ^1.70.0
1742
+ sass-embedded: ^1.70.0
1743
+ stylus: '>=0.54.8'
1744
+ sugarss: ^5.0.0
1745
+ terser: ^5.16.0
1746
+ tsx: ^4.8.1
1747
+ yaml: ^2.4.2
1748
+ peerDependenciesMeta:
1749
+ '@types/node':
1750
+ optional: true
1751
+ jiti:
1752
+ optional: true
1753
+ less:
1754
+ optional: true
1755
+ lightningcss:
1756
+ optional: true
1757
+ sass:
1758
+ optional: true
1759
+ sass-embedded:
1760
+ optional: true
1761
+ stylus:
1762
+ optional: true
1763
+ sugarss:
1764
+ optional: true
1765
+ terser:
1766
+ optional: true
1767
+ tsx:
1768
+ optional: true
1769
+ yaml:
1770
+ optional: true
1771
+
1772
+ which-pm-runs@1.1.0:
1773
+ resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
1774
+ engines: {node: '>=4'}
1775
+
1776
+ which@2.0.2:
1777
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1778
+ engines: {node: '>= 8'}
1779
+ hasBin: true
1780
+
1781
+ word-wrap@1.2.5:
1782
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1783
+ engines: {node: '>=0.10.0'}
1784
+
1785
+ ws@8.19.0:
1786
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
1787
+ engines: {node: '>=10.0.0'}
1788
+ peerDependencies:
1789
+ bufferutil: ^4.0.1
1790
+ utf-8-validate: '>=5.0.2'
1791
+ peerDependenciesMeta:
1792
+ bufferutil:
1793
+ optional: true
1794
+ utf-8-validate:
1795
+ optional: true
1796
+
1797
+ xtend@4.0.2:
1798
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
1799
+ engines: {node: '>=0.4'}
1800
+
1801
+ yocto-queue@0.1.0:
1802
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1803
+ engines: {node: '>=10'}
1804
+
1805
+ zod@4.3.5:
1806
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
1807
+
1808
+ snapshots:
1809
+
1810
+ '@alloc/quick-lru@5.2.0': {}
1811
+
1812
+ '@cfworker/json-schema@4.1.1': {}
1813
+
1814
+ '@esbuild/aix-ppc64@0.27.2':
1815
+ optional: true
1816
+
1817
+ '@esbuild/android-arm64@0.27.2':
1818
+ optional: true
1819
+
1820
+ '@esbuild/android-arm@0.27.2':
1821
+ optional: true
1822
+
1823
+ '@esbuild/android-x64@0.27.2':
1824
+ optional: true
1825
+
1826
+ '@esbuild/darwin-arm64@0.27.2':
1827
+ optional: true
1828
+
1829
+ '@esbuild/darwin-x64@0.27.2':
1830
+ optional: true
1831
+
1832
+ '@esbuild/freebsd-arm64@0.27.2':
1833
+ optional: true
1834
+
1835
+ '@esbuild/freebsd-x64@0.27.2':
1836
+ optional: true
1837
+
1838
+ '@esbuild/linux-arm64@0.27.2':
1839
+ optional: true
1840
+
1841
+ '@esbuild/linux-arm@0.27.2':
1842
+ optional: true
1843
+
1844
+ '@esbuild/linux-ia32@0.27.2':
1845
+ optional: true
1846
+
1847
+ '@esbuild/linux-loong64@0.27.2':
1848
+ optional: true
1849
+
1850
+ '@esbuild/linux-mips64el@0.27.2':
1851
+ optional: true
1852
+
1853
+ '@esbuild/linux-ppc64@0.27.2':
1854
+ optional: true
1855
+
1856
+ '@esbuild/linux-riscv64@0.27.2':
1857
+ optional: true
1858
+
1859
+ '@esbuild/linux-s390x@0.27.2':
1860
+ optional: true
1861
+
1862
+ '@esbuild/linux-x64@0.27.2':
1863
+ optional: true
1864
+
1865
+ '@esbuild/netbsd-arm64@0.27.2':
1866
+ optional: true
1867
+
1868
+ '@esbuild/netbsd-x64@0.27.2':
1869
+ optional: true
1870
+
1871
+ '@esbuild/openbsd-arm64@0.27.2':
1872
+ optional: true
1873
+
1874
+ '@esbuild/openbsd-x64@0.27.2':
1875
+ optional: true
1876
+
1877
+ '@esbuild/openharmony-arm64@0.27.2':
1878
+ optional: true
1879
+
1880
+ '@esbuild/sunos-x64@0.27.2':
1881
+ optional: true
1882
+
1883
+ '@esbuild/win32-arm64@0.27.2':
1884
+ optional: true
1885
+
1886
+ '@esbuild/win32-ia32@0.27.2':
1887
+ optional: true
1888
+
1889
+ '@esbuild/win32-x64@0.27.2':
1890
+ optional: true
1891
+
1892
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@1.21.7))':
1893
+ dependencies:
1894
+ eslint: 9.39.2(jiti@1.21.7)
1895
+ eslint-visitor-keys: 3.4.3
1896
+
1897
+ '@eslint-community/regexpp@4.12.2': {}
1898
+
1899
+ '@eslint/config-array@0.21.1':
1900
+ dependencies:
1901
+ '@eslint/object-schema': 2.1.7
1902
+ debug: 4.4.3
1903
+ minimatch: 3.1.2
1904
+ transitivePeerDependencies:
1905
+ - supports-color
1906
+
1907
+ '@eslint/config-helpers@0.4.2':
1908
+ dependencies:
1909
+ '@eslint/core': 0.17.0
1910
+
1911
+ '@eslint/core@0.17.0':
1912
+ dependencies:
1913
+ '@types/json-schema': 7.0.15
1914
+
1915
+ '@eslint/eslintrc@3.3.3':
1916
+ dependencies:
1917
+ ajv: 6.12.6
1918
+ debug: 4.4.3
1919
+ espree: 10.4.0
1920
+ globals: 14.0.0
1921
+ ignore: 5.3.2
1922
+ import-fresh: 3.3.1
1923
+ js-yaml: 4.1.1
1924
+ minimatch: 3.1.2
1925
+ strip-json-comments: 3.1.1
1926
+ transitivePeerDependencies:
1927
+ - supports-color
1928
+
1929
+ '@eslint/js@9.39.2': {}
1930
+
1931
+ '@eslint/object-schema@2.1.7': {}
1932
+
1933
+ '@eslint/plugin-kit@0.4.1':
1934
+ dependencies:
1935
+ '@eslint/core': 0.17.0
1936
+ levn: 0.4.1
1937
+
1938
+ '@humanfs/core@0.19.1': {}
1939
+
1940
+ '@humanfs/node@0.16.7':
1941
+ dependencies:
1942
+ '@humanfs/core': 0.19.1
1943
+ '@humanwhocodes/retry': 0.4.3
1944
+
1945
+ '@humanwhocodes/module-importer@1.0.1': {}
1946
+
1947
+ '@humanwhocodes/retry@0.4.3': {}
1948
+
1949
+ '@jridgewell/gen-mapping@0.3.13':
1950
+ dependencies:
1951
+ '@jridgewell/sourcemap-codec': 1.5.5
1952
+ '@jridgewell/trace-mapping': 0.3.31
1953
+
1954
+ '@jridgewell/resolve-uri@3.1.2': {}
1955
+
1956
+ '@jridgewell/sourcemap-codec@1.5.5': {}
1957
+
1958
+ '@jridgewell/trace-mapping@0.3.31':
1959
+ dependencies:
1960
+ '@jridgewell/resolve-uri': 3.1.2
1961
+ '@jridgewell/sourcemap-codec': 1.5.5
1962
+
1963
+ '@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
1964
+ dependencies:
1965
+ '@cfworker/json-schema': 4.1.1
1966
+ ansi-styles: 5.2.0
1967
+ camelcase: 6.3.0
1968
+ decamelize: 1.2.0
1969
+ js-tiktoken: 1.0.21
1970
+ langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1971
+ mustache: 4.2.0
1972
+ p-queue: 6.6.2
1973
+ uuid: 10.0.0
1974
+ zod: 4.3.5
1975
+ transitivePeerDependencies:
1976
+ - '@opentelemetry/api'
1977
+ - '@opentelemetry/exporter-trace-otlp-proto'
1978
+ - '@opentelemetry/sdk-trace-base'
1979
+ - openai
1980
+
1981
+ '@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)':
1982
+ dependencies:
1983
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1984
+ js-tiktoken: 1.0.21
1985
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
1986
+ zod: 4.3.5
1987
+ transitivePeerDependencies:
1988
+ - ws
1989
+
1990
+ '@nodelib/fs.scandir@2.1.5':
1991
+ dependencies:
1992
+ '@nodelib/fs.stat': 2.0.5
1993
+ run-parallel: 1.2.0
1994
+
1995
+ '@nodelib/fs.stat@2.0.5': {}
1996
+
1997
+ '@nodelib/fs.walk@1.2.8':
1998
+ dependencies:
1999
+ '@nodelib/fs.scandir': 2.1.5
2000
+ fastq: 1.20.1
2001
+
2002
+ '@rollup/rollup-android-arm-eabi@4.55.3':
2003
+ optional: true
2004
+
2005
+ '@rollup/rollup-android-arm64@4.55.3':
2006
+ optional: true
2007
+
2008
+ '@rollup/rollup-darwin-arm64@4.55.3':
2009
+ optional: true
2010
+
2011
+ '@rollup/rollup-darwin-x64@4.55.3':
2012
+ optional: true
2013
+
2014
+ '@rollup/rollup-freebsd-arm64@4.55.3':
2015
+ optional: true
2016
+
2017
+ '@rollup/rollup-freebsd-x64@4.55.3':
2018
+ optional: true
2019
+
2020
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
2021
+ optional: true
2022
+
2023
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
2024
+ optional: true
2025
+
2026
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
2027
+ optional: true
2028
+
2029
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
2030
+ optional: true
2031
+
2032
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
2033
+ optional: true
2034
+
2035
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
2036
+ optional: true
2037
+
2038
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
2039
+ optional: true
2040
+
2041
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
2042
+ optional: true
2043
+
2044
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
2045
+ optional: true
2046
+
2047
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
2048
+ optional: true
2049
+
2050
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
2051
+ optional: true
2052
+
2053
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
2054
+ optional: true
2055
+
2056
+ '@rollup/rollup-linux-x64-musl@4.55.3':
2057
+ optional: true
2058
+
2059
+ '@rollup/rollup-openbsd-x64@4.55.3':
2060
+ optional: true
2061
+
2062
+ '@rollup/rollup-openharmony-arm64@4.55.3':
2063
+ optional: true
2064
+
2065
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
2066
+ optional: true
2067
+
2068
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
2069
+ optional: true
2070
+
2071
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
2072
+ optional: true
2073
+
2074
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
2075
+ optional: true
2076
+
2077
+ '@supabase/auth-js@2.95.3':
2078
+ dependencies:
2079
+ tslib: 2.8.1
2080
+
2081
+ '@supabase/functions-js@2.95.3':
2082
+ dependencies:
2083
+ tslib: 2.8.1
2084
+
2085
+ '@supabase/postgrest-js@2.95.3':
2086
+ dependencies:
2087
+ tslib: 2.8.1
2088
+
2089
+ '@supabase/realtime-js@2.95.3':
2090
+ dependencies:
2091
+ '@types/phoenix': 1.6.7
2092
+ '@types/ws': 8.18.1
2093
+ tslib: 2.8.1
2094
+ ws: 8.19.0
2095
+ transitivePeerDependencies:
2096
+ - bufferutil
2097
+ - utf-8-validate
2098
+
2099
+ '@supabase/storage-js@2.95.3':
2100
+ dependencies:
2101
+ iceberg-js: 0.8.1
2102
+ tslib: 2.8.1
2103
+
2104
+ '@supabase/supabase-js@2.95.3':
2105
+ dependencies:
2106
+ '@supabase/auth-js': 2.95.3
2107
+ '@supabase/functions-js': 2.95.3
2108
+ '@supabase/postgrest-js': 2.95.3
2109
+ '@supabase/realtime-js': 2.95.3
2110
+ '@supabase/storage-js': 2.95.3
2111
+ transitivePeerDependencies:
2112
+ - bufferutil
2113
+ - utf-8-validate
2114
+
2115
+ '@types/body-parser@1.19.6':
2116
+ dependencies:
2117
+ '@types/connect': 3.4.38
2118
+ '@types/node': 22.19.15
2119
+
2120
+ '@types/connect@3.4.38':
2121
+ dependencies:
2122
+ '@types/node': 22.19.15
2123
+
2124
+ '@types/estree@1.0.8': {}
2125
+
2126
+ '@types/express-serve-static-core@5.1.1':
2127
+ dependencies:
2128
+ '@types/node': 22.19.15
2129
+ '@types/qs': 6.15.0
2130
+ '@types/range-parser': 1.2.7
2131
+ '@types/send': 1.2.1
2132
+
2133
+ '@types/express@5.0.6':
2134
+ dependencies:
2135
+ '@types/body-parser': 1.19.6
2136
+ '@types/express-serve-static-core': 5.1.1
2137
+ '@types/serve-static': 2.2.0
2138
+
2139
+ '@types/http-errors@2.0.5': {}
2140
+
2141
+ '@types/json-schema@7.0.15': {}
2142
+
2143
+ '@types/node@22.19.15':
2144
+ dependencies:
2145
+ undici-types: 6.21.0
2146
+
2147
+ '@types/phoenix@1.6.7': {}
2148
+
2149
+ '@types/qs@6.15.0': {}
2150
+
2151
+ '@types/range-parser@1.2.7': {}
2152
+
2153
+ '@types/send@1.2.1':
2154
+ dependencies:
2155
+ '@types/node': 22.19.15
2156
+
2157
+ '@types/serve-static@2.2.0':
2158
+ dependencies:
2159
+ '@types/http-errors': 2.0.5
2160
+ '@types/node': 22.19.15
2161
+
2162
+ '@types/uuid@10.0.0': {}
2163
+
2164
+ '@types/ws@8.18.1':
2165
+ dependencies:
2166
+ '@types/node': 22.19.15
2167
+
2168
+ '@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)':
2169
+ dependencies:
2170
+ '@eslint-community/regexpp': 4.12.2
2171
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2172
+ '@typescript-eslint/scope-manager': 8.53.1
2173
+ '@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2174
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2175
+ '@typescript-eslint/visitor-keys': 8.53.1
2176
+ eslint: 9.39.2(jiti@1.21.7)
2177
+ ignore: 7.0.5
2178
+ natural-compare: 1.4.0
2179
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2180
+ typescript: 5.9.3
2181
+ transitivePeerDependencies:
2182
+ - supports-color
2183
+
2184
+ '@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2185
+ dependencies:
2186
+ '@typescript-eslint/scope-manager': 8.53.1
2187
+ '@typescript-eslint/types': 8.53.1
2188
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
2189
+ '@typescript-eslint/visitor-keys': 8.53.1
2190
+ debug: 4.4.3
2191
+ eslint: 9.39.2(jiti@1.21.7)
2192
+ typescript: 5.9.3
2193
+ transitivePeerDependencies:
2194
+ - supports-color
2195
+
2196
+ '@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
2197
+ dependencies:
2198
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
2199
+ '@typescript-eslint/types': 8.53.1
2200
+ debug: 4.4.3
2201
+ typescript: 5.9.3
2202
+ transitivePeerDependencies:
2203
+ - supports-color
2204
+
2205
+ '@typescript-eslint/scope-manager@8.53.1':
2206
+ dependencies:
2207
+ '@typescript-eslint/types': 8.53.1
2208
+ '@typescript-eslint/visitor-keys': 8.53.1
2209
+
2210
+ '@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
2211
+ dependencies:
2212
+ typescript: 5.9.3
2213
+
2214
+ '@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2215
+ dependencies:
2216
+ '@typescript-eslint/types': 8.53.1
2217
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
2218
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2219
+ debug: 4.4.3
2220
+ eslint: 9.39.2(jiti@1.21.7)
2221
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2222
+ typescript: 5.9.3
2223
+ transitivePeerDependencies:
2224
+ - supports-color
2225
+
2226
+ '@typescript-eslint/types@8.53.1': {}
2227
+
2228
+ '@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
2229
+ dependencies:
2230
+ '@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
2231
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
2232
+ '@typescript-eslint/types': 8.53.1
2233
+ '@typescript-eslint/visitor-keys': 8.53.1
2234
+ debug: 4.4.3
2235
+ minimatch: 9.0.5
2236
+ semver: 7.7.3
2237
+ tinyglobby: 0.2.15
2238
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2239
+ typescript: 5.9.3
2240
+ transitivePeerDependencies:
2241
+ - supports-color
2242
+
2243
+ '@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2244
+ dependencies:
2245
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
2246
+ '@typescript-eslint/scope-manager': 8.53.1
2247
+ '@typescript-eslint/types': 8.53.1
2248
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
2249
+ eslint: 9.39.2(jiti@1.21.7)
2250
+ typescript: 5.9.3
2251
+ transitivePeerDependencies:
2252
+ - supports-color
2253
+
2254
+ '@typescript-eslint/visitor-keys@8.53.1':
2255
+ dependencies:
2256
+ '@typescript-eslint/types': 8.53.1
2257
+ eslint-visitor-keys: 4.2.1
2258
+
2259
+ accepts@1.3.8:
2260
+ dependencies:
2261
+ mime-types: 2.1.35
2262
+ negotiator: 0.6.3
2263
+
2264
+ acorn-jsx@5.3.2(acorn@8.15.0):
2265
+ dependencies:
2266
+ acorn: 8.15.0
2267
+
2268
+ acorn@8.15.0: {}
2269
+
2270
+ acorn@8.16.0: {}
2271
+
2272
+ ajv@6.12.6:
2273
+ dependencies:
2274
+ fast-deep-equal: 3.1.3
2275
+ fast-json-stable-stringify: 2.1.0
2276
+ json-schema-traverse: 0.4.1
2277
+ uri-js: 4.4.1
2278
+
2279
+ ansi-styles@4.3.0:
2280
+ dependencies:
2281
+ color-convert: 2.0.1
2282
+
2283
+ ansi-styles@5.2.0: {}
2284
+
2285
+ any-promise@1.3.0: {}
2286
+
2287
+ anymatch@3.1.3:
2288
+ dependencies:
2289
+ normalize-path: 3.0.0
2290
+ picomatch: 2.3.1
2291
+
2292
+ arg@5.0.2: {}
2293
+
2294
+ argparse@2.0.1: {}
2295
+
2296
+ array-flatten@1.1.1: {}
2297
+
2298
+ asynckit@0.4.0: {}
2299
+
2300
+ autoprefixer@10.4.23(postcss@8.5.6):
2301
+ dependencies:
2302
+ browserslist: 4.28.1
2303
+ caniuse-lite: 1.0.30001765
2304
+ fraction.js: 5.3.4
2305
+ picocolors: 1.1.1
2306
+ postcss: 8.5.6
2307
+ postcss-value-parser: 4.2.0
2308
+
2309
+ axios@1.13.2:
2310
+ dependencies:
2311
+ follow-redirects: 1.15.11
2312
+ form-data: 4.0.5
2313
+ proxy-from-env: 1.1.0
2314
+ transitivePeerDependencies:
2315
+ - debug
2316
+
2317
+ balanced-match@1.0.2: {}
2318
+
2319
+ base64-js@1.5.1: {}
2320
+
2321
+ baseline-browser-mapping@2.9.16: {}
2322
+
2323
+ binary-extensions@2.3.0: {}
2324
+
2325
+ body-parser@1.20.4:
2326
+ dependencies:
2327
+ bytes: 3.1.2
2328
+ content-type: 1.0.5
2329
+ debug: 2.6.9
2330
+ depd: 2.0.0
2331
+ destroy: 1.2.0
2332
+ http-errors: 2.0.1
2333
+ iconv-lite: 0.4.24
2334
+ on-finished: 2.4.1
2335
+ qs: 6.14.2
2336
+ raw-body: 2.5.3
2337
+ type-is: 1.6.18
2338
+ unpipe: 1.0.0
2339
+ transitivePeerDependencies:
2340
+ - supports-color
2341
+
2342
+ brace-expansion@1.1.12:
2343
+ dependencies:
2344
+ balanced-match: 1.0.2
2345
+ concat-map: 0.0.1
2346
+
2347
+ brace-expansion@2.0.2:
2348
+ dependencies:
2349
+ balanced-match: 1.0.2
2350
+
2351
+ braces@3.0.3:
2352
+ dependencies:
2353
+ fill-range: 7.1.1
2354
+
2355
+ browserslist@4.28.1:
2356
+ dependencies:
2357
+ baseline-browser-mapping: 2.9.16
2358
+ caniuse-lite: 1.0.30001765
2359
+ electron-to-chromium: 1.5.267
2360
+ node-releases: 2.0.27
2361
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
2362
+
2363
+ bundle-require@5.1.0(esbuild@0.27.2):
2364
+ dependencies:
2365
+ esbuild: 0.27.2
2366
+ load-tsconfig: 0.2.5
2367
+
2368
+ bytes@3.1.2: {}
2369
+
2370
+ cac@6.7.14: {}
2371
+
2372
+ call-bind-apply-helpers@1.0.2:
2373
+ dependencies:
2374
+ es-errors: 1.3.0
2375
+ function-bind: 1.1.2
2376
+
2377
+ call-bound@1.0.4:
2378
+ dependencies:
2379
+ call-bind-apply-helpers: 1.0.2
2380
+ get-intrinsic: 1.3.0
2381
+
2382
+ callsites@3.1.0: {}
2383
+
2384
+ camelcase-css@2.0.1: {}
2385
+
2386
+ camelcase@6.3.0: {}
2387
+
2388
+ caniuse-lite@1.0.30001765: {}
2389
+
2390
+ chalk@4.1.2:
2391
+ dependencies:
2392
+ ansi-styles: 4.3.0
2393
+ supports-color: 7.2.0
2394
+
2395
+ chokidar@3.6.0:
2396
+ dependencies:
2397
+ anymatch: 3.1.3
2398
+ braces: 3.0.3
2399
+ glob-parent: 5.1.2
2400
+ is-binary-path: 2.1.0
2401
+ is-glob: 4.0.3
2402
+ normalize-path: 3.0.0
2403
+ readdirp: 3.6.0
2404
+ optionalDependencies:
2405
+ fsevents: 2.3.3
2406
+
2407
+ chokidar@4.0.3:
2408
+ dependencies:
2409
+ readdirp: 4.1.2
2410
+
2411
+ color-convert@2.0.1:
2412
+ dependencies:
2413
+ color-name: 1.1.4
2414
+
2415
+ color-name@1.1.4: {}
2416
+
2417
+ combined-stream@1.0.8:
2418
+ dependencies:
2419
+ delayed-stream: 1.0.0
2420
+
2421
+ commander@4.1.1: {}
2422
+
2423
+ concat-map@0.0.1: {}
2424
+
2425
+ confbox@0.1.8: {}
2426
+
2427
+ consola@3.4.2: {}
2428
+
2429
+ console-table-printer@2.15.0:
2430
+ dependencies:
2431
+ simple-wcswidth: 1.1.2
2432
+
2433
+ content-disposition@0.5.4:
2434
+ dependencies:
2435
+ safe-buffer: 5.2.1
2436
+
2437
+ content-type@1.0.5: {}
2438
+
2439
+ cookie-signature@1.0.7: {}
2440
+
2441
+ cookie@0.7.2: {}
2442
+
2443
+ dependencies:
2444
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
2445
+ '@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)
2446
+ '@supabase/supabase-js': 2.95.3
2447
+ axios: 1.13.2
2448
+ pg: 8.17.2
2449
+ transitivePeerDependencies:
2450
+ - '@opentelemetry/api'
2451
+ - '@opentelemetry/exporter-trace-otlp-proto'
2452
+ - '@opentelemetry/sdk-trace-base'
2453
+ - bufferutil
2454
+ - debug
2455
+ - openai
2456
+ - pg-native
2457
+ - utf-8-validate
2458
+ - ws
2459
+
2460
+ cross-spawn@7.0.6:
2461
+ dependencies:
2462
+ path-key: 3.1.1
2463
+ shebang-command: 2.0.0
2464
+ which: 2.0.2
2465
+
2466
+ cssesc@3.0.0: {}
2467
+
2468
+ debug@2.6.9:
2469
+ dependencies:
2470
+ ms: 2.0.0
2471
+
2472
+ debug@4.4.3:
2473
+ dependencies:
2474
+ ms: 2.1.3
2475
+
2476
+ decamelize@1.2.0: {}
2477
+
2478
+ deep-is@0.1.4: {}
2479
+
2480
+ delayed-stream@1.0.0: {}
2481
+
2482
+ depd@2.0.0: {}
2483
+
2484
+ destroy@1.2.0: {}
2485
+
2486
+ didyoumean@1.2.2: {}
2487
+
2488
+ dlv@1.1.3: {}
2489
+
2490
+ dotenv@17.2.4: {}
2491
+
2492
+ dunder-proto@1.0.1:
2493
+ dependencies:
2494
+ call-bind-apply-helpers: 1.0.2
2495
+ es-errors: 1.3.0
2496
+ gopd: 1.2.0
2497
+
2498
+ ee-first@1.1.1: {}
2499
+
2500
+ electron-to-chromium@1.5.267: {}
2501
+
2502
+ encodeurl@2.0.0: {}
2503
+
2504
+ es-define-property@1.0.1: {}
2505
+
2506
+ es-errors@1.3.0: {}
2507
+
2508
+ es-object-atoms@1.1.1:
2509
+ dependencies:
2510
+ es-errors: 1.3.0
2511
+
2512
+ es-set-tostringtag@2.1.0:
2513
+ dependencies:
2514
+ es-errors: 1.3.0
2515
+ get-intrinsic: 1.3.0
2516
+ has-tostringtag: 1.0.2
2517
+ hasown: 2.0.2
2518
+
2519
+ esbuild@0.27.2:
2520
+ optionalDependencies:
2521
+ '@esbuild/aix-ppc64': 0.27.2
2522
+ '@esbuild/android-arm': 0.27.2
2523
+ '@esbuild/android-arm64': 0.27.2
2524
+ '@esbuild/android-x64': 0.27.2
2525
+ '@esbuild/darwin-arm64': 0.27.2
2526
+ '@esbuild/darwin-x64': 0.27.2
2527
+ '@esbuild/freebsd-arm64': 0.27.2
2528
+ '@esbuild/freebsd-x64': 0.27.2
2529
+ '@esbuild/linux-arm': 0.27.2
2530
+ '@esbuild/linux-arm64': 0.27.2
2531
+ '@esbuild/linux-ia32': 0.27.2
2532
+ '@esbuild/linux-loong64': 0.27.2
2533
+ '@esbuild/linux-mips64el': 0.27.2
2534
+ '@esbuild/linux-ppc64': 0.27.2
2535
+ '@esbuild/linux-riscv64': 0.27.2
2536
+ '@esbuild/linux-s390x': 0.27.2
2537
+ '@esbuild/linux-x64': 0.27.2
2538
+ '@esbuild/netbsd-arm64': 0.27.2
2539
+ '@esbuild/netbsd-x64': 0.27.2
2540
+ '@esbuild/openbsd-arm64': 0.27.2
2541
+ '@esbuild/openbsd-x64': 0.27.2
2542
+ '@esbuild/openharmony-arm64': 0.27.2
2543
+ '@esbuild/sunos-x64': 0.27.2
2544
+ '@esbuild/win32-arm64': 0.27.2
2545
+ '@esbuild/win32-ia32': 0.27.2
2546
+ '@esbuild/win32-x64': 0.27.2
2547
+
2548
+ escalade@3.2.0: {}
2549
+
2550
+ escape-html@1.0.3: {}
2551
+
2552
+ escape-string-regexp@4.0.0: {}
2553
+
2554
+ eslint-scope@8.4.0:
2555
+ dependencies:
2556
+ esrecurse: 4.3.0
2557
+ estraverse: 5.3.0
2558
+
2559
+ eslint-visitor-keys@3.4.3: {}
2560
+
2561
+ eslint-visitor-keys@4.2.1: {}
2562
+
2563
+ eslint@9.39.2(jiti@1.21.7):
2564
+ dependencies:
2565
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
2566
+ '@eslint-community/regexpp': 4.12.2
2567
+ '@eslint/config-array': 0.21.1
2568
+ '@eslint/config-helpers': 0.4.2
2569
+ '@eslint/core': 0.17.0
2570
+ '@eslint/eslintrc': 3.3.3
2571
+ '@eslint/js': 9.39.2
2572
+ '@eslint/plugin-kit': 0.4.1
2573
+ '@humanfs/node': 0.16.7
2574
+ '@humanwhocodes/module-importer': 1.0.1
2575
+ '@humanwhocodes/retry': 0.4.3
2576
+ '@types/estree': 1.0.8
2577
+ ajv: 6.12.6
2578
+ chalk: 4.1.2
2579
+ cross-spawn: 7.0.6
2580
+ debug: 4.4.3
2581
+ escape-string-regexp: 4.0.0
2582
+ eslint-scope: 8.4.0
2583
+ eslint-visitor-keys: 4.2.1
2584
+ espree: 10.4.0
2585
+ esquery: 1.7.0
2586
+ esutils: 2.0.3
2587
+ fast-deep-equal: 3.1.3
2588
+ file-entry-cache: 8.0.0
2589
+ find-up: 5.0.0
2590
+ glob-parent: 6.0.2
2591
+ ignore: 5.3.2
2592
+ imurmurhash: 0.1.4
2593
+ is-glob: 4.0.3
2594
+ json-stable-stringify-without-jsonify: 1.0.1
2595
+ lodash.merge: 4.6.2
2596
+ minimatch: 3.1.2
2597
+ natural-compare: 1.4.0
2598
+ optionator: 0.9.4
2599
+ optionalDependencies:
2600
+ jiti: 1.21.7
2601
+ transitivePeerDependencies:
2602
+ - supports-color
2603
+
2604
+ espree@10.4.0:
2605
+ dependencies:
2606
+ acorn: 8.15.0
2607
+ acorn-jsx: 5.3.2(acorn@8.15.0)
2608
+ eslint-visitor-keys: 4.2.1
2609
+
2610
+ esquery@1.7.0:
2611
+ dependencies:
2612
+ estraverse: 5.3.0
2613
+
2614
+ esrecurse@4.3.0:
2615
+ dependencies:
2616
+ estraverse: 5.3.0
2617
+
2618
+ estraverse@5.3.0: {}
2619
+
2620
+ esutils@2.0.3: {}
2621
+
2622
+ etag@1.8.1: {}
2623
+
2624
+ eventemitter3@4.0.7: {}
2625
+
2626
+ express@4.22.1:
2627
+ dependencies:
2628
+ accepts: 1.3.8
2629
+ array-flatten: 1.1.1
2630
+ body-parser: 1.20.4
2631
+ content-disposition: 0.5.4
2632
+ content-type: 1.0.5
2633
+ cookie: 0.7.2
2634
+ cookie-signature: 1.0.7
2635
+ debug: 2.6.9
2636
+ depd: 2.0.0
2637
+ encodeurl: 2.0.0
2638
+ escape-html: 1.0.3
2639
+ etag: 1.8.1
2640
+ finalhandler: 1.3.2
2641
+ fresh: 0.5.2
2642
+ http-errors: 2.0.1
2643
+ merge-descriptors: 1.0.3
2644
+ methods: 1.1.2
2645
+ on-finished: 2.4.1
2646
+ parseurl: 1.3.3
2647
+ path-to-regexp: 0.1.12
2648
+ proxy-addr: 2.0.7
2649
+ qs: 6.14.2
2650
+ range-parser: 1.2.1
2651
+ safe-buffer: 5.2.1
2652
+ send: 0.19.2
2653
+ serve-static: 1.16.3
2654
+ setprototypeof: 1.2.0
2655
+ statuses: 2.0.2
2656
+ type-is: 1.6.18
2657
+ utils-merge: 1.0.1
2658
+ vary: 1.1.2
2659
+ transitivePeerDependencies:
2660
+ - supports-color
2661
+
2662
+ fast-deep-equal@3.1.3: {}
2663
+
2664
+ fast-glob@3.3.3:
2665
+ dependencies:
2666
+ '@nodelib/fs.stat': 2.0.5
2667
+ '@nodelib/fs.walk': 1.2.8
2668
+ glob-parent: 5.1.2
2669
+ merge2: 1.4.1
2670
+ micromatch: 4.0.8
2671
+
2672
+ fast-json-stable-stringify@2.1.0: {}
2673
+
2674
+ fast-levenshtein@2.0.6: {}
2675
+
2676
+ fastq@1.20.1:
2677
+ dependencies:
2678
+ reusify: 1.1.0
2679
+
2680
+ fdir@6.5.0(picomatch@4.0.3):
2681
+ optionalDependencies:
2682
+ picomatch: 4.0.3
2683
+
2684
+ file-entry-cache@8.0.0:
2685
+ dependencies:
2686
+ flat-cache: 4.0.1
2687
+
2688
+ fill-range@7.1.1:
2689
+ dependencies:
2690
+ to-regex-range: 5.0.1
2691
+
2692
+ finalhandler@1.3.2:
2693
+ dependencies:
2694
+ debug: 2.6.9
2695
+ encodeurl: 2.0.0
2696
+ escape-html: 1.0.3
2697
+ on-finished: 2.4.1
2698
+ parseurl: 1.3.3
2699
+ statuses: 2.0.2
2700
+ unpipe: 1.0.0
2701
+ transitivePeerDependencies:
2702
+ - supports-color
2703
+
2704
+ find-up@5.0.0:
2705
+ dependencies:
2706
+ locate-path: 6.0.0
2707
+ path-exists: 4.0.0
2708
+
2709
+ fix-dts-default-cjs-exports@1.0.1:
2710
+ dependencies:
2711
+ magic-string: 0.30.21
2712
+ mlly: 1.8.1
2713
+ rollup: 4.55.3
2714
+
2715
+ flat-cache@4.0.1:
2716
+ dependencies:
2717
+ flatted: 3.3.3
2718
+ keyv: 4.5.4
2719
+
2720
+ flatted@3.3.3: {}
2721
+
2722
+ follow-redirects@1.15.11: {}
2723
+
2724
+ form-data@4.0.5:
2725
+ dependencies:
2726
+ asynckit: 0.4.0
2727
+ combined-stream: 1.0.8
2728
+ es-set-tostringtag: 2.1.0
2729
+ hasown: 2.0.2
2730
+ mime-types: 2.1.35
2731
+
2732
+ forwarded@0.2.0: {}
2733
+
2734
+ fraction.js@5.3.4: {}
2735
+
2736
+ fresh@0.5.2: {}
2737
+
2738
+ fsevents@2.3.3:
2739
+ optional: true
2740
+
2741
+ function-bind@1.1.2: {}
2742
+
2743
+ get-intrinsic@1.3.0:
2744
+ dependencies:
2745
+ call-bind-apply-helpers: 1.0.2
2746
+ es-define-property: 1.0.1
2747
+ es-errors: 1.3.0
2748
+ es-object-atoms: 1.1.1
2749
+ function-bind: 1.1.2
2750
+ get-proto: 1.0.1
2751
+ gopd: 1.2.0
2752
+ has-symbols: 1.1.0
2753
+ hasown: 2.0.2
2754
+ math-intrinsics: 1.1.0
2755
+
2756
+ get-proto@1.0.1:
2757
+ dependencies:
2758
+ dunder-proto: 1.0.1
2759
+ es-object-atoms: 1.1.1
2760
+
2761
+ get-tsconfig@4.13.6:
2762
+ dependencies:
2763
+ resolve-pkg-maps: 1.0.0
2764
+
2765
+ glob-parent@5.1.2:
2766
+ dependencies:
2767
+ is-glob: 4.0.3
2768
+
2769
+ glob-parent@6.0.2:
2770
+ dependencies:
2771
+ is-glob: 4.0.3
2772
+
2773
+ globals@14.0.0: {}
2774
+
2775
+ gopd@1.2.0: {}
2776
+
2777
+ has-flag@4.0.0: {}
2778
+
2779
+ has-symbols@1.1.0: {}
2780
+
2781
+ has-tostringtag@1.0.2:
2782
+ dependencies:
2783
+ has-symbols: 1.1.0
2784
+
2785
+ hasown@2.0.2:
2786
+ dependencies:
2787
+ function-bind: 1.1.2
2788
+
2789
+ http-errors@2.0.1:
2790
+ dependencies:
2791
+ depd: 2.0.0
2792
+ inherits: 2.0.4
2793
+ setprototypeof: 1.2.0
2794
+ statuses: 2.0.2
2795
+ toidentifier: 1.0.1
2796
+
2797
+ iceberg-js@0.8.1: {}
2798
+
2799
+ iconv-lite@0.4.24:
2800
+ dependencies:
2801
+ safer-buffer: 2.1.2
2802
+
2803
+ ignore@5.3.2: {}
2804
+
2805
+ ignore@7.0.5: {}
2806
+
2807
+ import-fresh@3.3.1:
2808
+ dependencies:
2809
+ parent-module: 1.0.1
2810
+ resolve-from: 4.0.0
2811
+
2812
+ imurmurhash@0.1.4: {}
2813
+
2814
+ inherits@2.0.4: {}
2815
+
2816
+ ipaddr.js@1.9.1: {}
2817
+
2818
+ is-binary-path@2.1.0:
2819
+ dependencies:
2820
+ binary-extensions: 2.3.0
2821
+
2822
+ is-core-module@2.16.1:
2823
+ dependencies:
2824
+ hasown: 2.0.2
2825
+
2826
+ is-extglob@2.1.1: {}
2827
+
2828
+ is-glob@4.0.3:
2829
+ dependencies:
2830
+ is-extglob: 2.1.1
2831
+
2832
+ is-number@7.0.0: {}
2833
+
2834
+ isexe@2.0.0: {}
2835
+
2836
+ jiti@1.21.7: {}
2837
+
2838
+ joycon@3.1.1: {}
2839
+
2840
+ js-tiktoken@1.0.21:
2841
+ dependencies:
2842
+ base64-js: 1.5.1
2843
+
2844
+ js-yaml@4.1.1:
2845
+ dependencies:
2846
+ argparse: 2.0.1
2847
+
2848
+ json-buffer@3.0.1: {}
2849
+
2850
+ json-schema-traverse@0.4.1: {}
2851
+
2852
+ json-stable-stringify-without-jsonify@1.0.1: {}
2853
+
2854
+ keyv@4.5.4:
2855
+ dependencies:
2856
+ json-buffer: 3.0.1
2857
+
2858
+ langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
2859
+ dependencies:
2860
+ '@types/uuid': 10.0.0
2861
+ chalk: 4.1.2
2862
+ console-table-printer: 2.15.0
2863
+ p-queue: 6.6.2
2864
+ semver: 7.7.3
2865
+ uuid: 10.0.0
2866
+ optionalDependencies:
2867
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
2868
+
2869
+ levn@0.4.1:
2870
+ dependencies:
2871
+ prelude-ls: 1.2.1
2872
+ type-check: 0.4.0
2873
+
2874
+ lilconfig@3.1.3: {}
2875
+
2876
+ lines-and-columns@1.2.4: {}
2877
+
2878
+ load-tsconfig@0.2.5: {}
2879
+
2880
+ locate-path@6.0.0:
2881
+ dependencies:
2882
+ p-locate: 5.0.0
2883
+
2884
+ lodash.merge@4.6.2: {}
2885
+
2886
+ magic-string@0.30.21:
2887
+ dependencies:
2888
+ '@jridgewell/sourcemap-codec': 1.5.5
2889
+
2890
+ math-intrinsics@1.1.0: {}
2891
+
2892
+ media-typer@0.3.0: {}
2893
+
2894
+ merge-descriptors@1.0.3: {}
2895
+
2896
+ merge2@1.4.1: {}
2897
+
2898
+ methods@1.1.2: {}
2899
+
2900
+ micromatch@4.0.8:
2901
+ dependencies:
2902
+ braces: 3.0.3
2903
+ picomatch: 2.3.1
2904
+
2905
+ mime-db@1.52.0: {}
2906
+
2907
+ mime-types@2.1.35:
2908
+ dependencies:
2909
+ mime-db: 1.52.0
2910
+
2911
+ mime@1.6.0: {}
2912
+
2913
+ minimatch@3.1.2:
2914
+ dependencies:
2915
+ brace-expansion: 1.1.12
2916
+
2917
+ minimatch@9.0.5:
2918
+ dependencies:
2919
+ brace-expansion: 2.0.2
2920
+
2921
+ mlly@1.8.1:
2922
+ dependencies:
2923
+ acorn: 8.16.0
2924
+ pathe: 2.0.3
2925
+ pkg-types: 1.3.1
2926
+ ufo: 1.6.3
2927
+
2928
+ ms@2.0.0: {}
2929
+
2930
+ ms@2.1.3: {}
2931
+
2932
+ mustache@4.2.0: {}
2933
+
2934
+ mz@2.7.0:
2935
+ dependencies:
2936
+ any-promise: 1.3.0
2937
+ object-assign: 4.1.1
2938
+ thenify-all: 1.6.0
2939
+
2940
+ nanoid@3.3.11: {}
2941
+
2942
+ natural-compare@1.4.0: {}
2943
+
2944
+ negotiator@0.6.3: {}
2945
+
2946
+ node-releases@2.0.27: {}
2947
+
2948
+ normalize-path@3.0.0: {}
2949
+
2950
+ object-assign@4.1.1: {}
2951
+
2952
+ object-hash@3.0.0: {}
2953
+
2954
+ object-inspect@1.13.4: {}
2955
+
2956
+ on-finished@2.4.1:
2957
+ dependencies:
2958
+ ee-first: 1.1.1
2959
+
2960
+ only-allow@1.2.2:
2961
+ dependencies:
2962
+ which-pm-runs: 1.1.0
2963
+
2964
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
2965
+ optionalDependencies:
2966
+ ws: 8.19.0
2967
+ zod: 4.3.5
2968
+
2969
+ optionator@0.9.4:
2970
+ dependencies:
2971
+ deep-is: 0.1.4
2972
+ fast-levenshtein: 2.0.6
2973
+ levn: 0.4.1
2974
+ prelude-ls: 1.2.1
2975
+ type-check: 0.4.0
2976
+ word-wrap: 1.2.5
2977
+
2978
+ p-finally@1.0.0: {}
2979
+
2980
+ p-limit@3.1.0:
2981
+ dependencies:
2982
+ yocto-queue: 0.1.0
2983
+
2984
+ p-locate@5.0.0:
2985
+ dependencies:
2986
+ p-limit: 3.1.0
2987
+
2988
+ p-queue@6.6.2:
2989
+ dependencies:
2990
+ eventemitter3: 4.0.7
2991
+ p-timeout: 3.2.0
2992
+
2993
+ p-timeout@3.2.0:
2994
+ dependencies:
2995
+ p-finally: 1.0.0
2996
+
2997
+ parent-module@1.0.1:
2998
+ dependencies:
2999
+ callsites: 3.1.0
3000
+
3001
+ parseurl@1.3.3: {}
3002
+
3003
+ path-exists@4.0.0: {}
3004
+
3005
+ path-key@3.1.1: {}
3006
+
3007
+ path-parse@1.0.7: {}
3008
+
3009
+ path-to-regexp@0.1.12: {}
3010
+
3011
+ pathe@2.0.3: {}
3012
+
3013
+ pg-cloudflare@1.3.0:
3014
+ optional: true
3015
+
3016
+ pg-connection-string@2.10.1: {}
3017
+
3018
+ pg-int8@1.0.1: {}
3019
+
3020
+ pg-pool@3.11.0(pg@8.17.2):
3021
+ dependencies:
3022
+ pg: 8.17.2
3023
+
3024
+ pg-protocol@1.11.0: {}
3025
+
3026
+ pg-types@2.2.0:
3027
+ dependencies:
3028
+ pg-int8: 1.0.1
3029
+ postgres-array: 2.0.0
3030
+ postgres-bytea: 1.0.1
3031
+ postgres-date: 1.0.7
3032
+ postgres-interval: 1.2.0
3033
+
3034
+ pg@8.17.2:
3035
+ dependencies:
3036
+ pg-connection-string: 2.10.1
3037
+ pg-pool: 3.11.0(pg@8.17.2)
3038
+ pg-protocol: 1.11.0
3039
+ pg-types: 2.2.0
3040
+ pgpass: 1.0.5
3041
+ optionalDependencies:
3042
+ pg-cloudflare: 1.3.0
3043
+
3044
+ pgpass@1.0.5:
3045
+ dependencies:
3046
+ split2: 4.2.0
3047
+
3048
+ picocolors@1.1.1: {}
3049
+
3050
+ picomatch@2.3.1: {}
3051
+
3052
+ picomatch@4.0.3: {}
3053
+
3054
+ pify@2.3.0: {}
3055
+
3056
+ pirates@4.0.7: {}
3057
+
3058
+ pkg-types@1.3.1:
3059
+ dependencies:
3060
+ confbox: 0.1.8
3061
+ mlly: 1.8.1
3062
+ pathe: 2.0.3
3063
+
3064
+ postcss-import@15.1.0(postcss@8.5.6):
3065
+ dependencies:
3066
+ postcss: 8.5.6
3067
+ postcss-value-parser: 4.2.0
3068
+ read-cache: 1.0.0
3069
+ resolve: 1.22.11
3070
+
3071
+ postcss-js@4.1.0(postcss@8.5.6):
3072
+ dependencies:
3073
+ camelcase-css: 2.0.1
3074
+ postcss: 8.5.6
3075
+
3076
+ postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0):
3077
+ dependencies:
3078
+ lilconfig: 3.1.3
3079
+ optionalDependencies:
3080
+ jiti: 1.21.7
3081
+ postcss: 8.5.6
3082
+ tsx: 4.21.0
3083
+
3084
+ postcss-nested@6.2.0(postcss@8.5.6):
3085
+ dependencies:
3086
+ postcss: 8.5.6
3087
+ postcss-selector-parser: 6.1.2
3088
+
3089
+ postcss-selector-parser@6.1.2:
3090
+ dependencies:
3091
+ cssesc: 3.0.0
3092
+ util-deprecate: 1.0.2
3093
+
3094
+ postcss-value-parser@4.2.0: {}
3095
+
3096
+ postcss@8.5.6:
3097
+ dependencies:
3098
+ nanoid: 3.3.11
3099
+ picocolors: 1.1.1
3100
+ source-map-js: 1.2.1
3101
+
3102
+ postgres-array@2.0.0: {}
3103
+
3104
+ postgres-bytea@1.0.1: {}
3105
+
3106
+ postgres-date@1.0.7: {}
3107
+
3108
+ postgres-interval@1.2.0:
3109
+ dependencies:
3110
+ xtend: 4.0.2
3111
+
3112
+ prelude-ls@1.2.1: {}
3113
+
3114
+ proxy-addr@2.0.7:
3115
+ dependencies:
3116
+ forwarded: 0.2.0
3117
+ ipaddr.js: 1.9.1
3118
+
3119
+ proxy-from-env@1.1.0: {}
3120
+
3121
+ punycode@2.3.1: {}
3122
+
3123
+ qs@6.14.2:
3124
+ dependencies:
3125
+ side-channel: 1.1.0
3126
+
3127
+ queue-microtask@1.2.3: {}
3128
+
3129
+ range-parser@1.2.1: {}
3130
+
3131
+ raw-body@2.5.3:
3132
+ dependencies:
3133
+ bytes: 3.1.2
3134
+ http-errors: 2.0.1
3135
+ iconv-lite: 0.4.24
3136
+ unpipe: 1.0.0
3137
+
3138
+ read-cache@1.0.0:
3139
+ dependencies:
3140
+ pify: 2.3.0
3141
+
3142
+ readdirp@3.6.0:
3143
+ dependencies:
3144
+ picomatch: 2.3.1
3145
+
3146
+ readdirp@4.1.2: {}
3147
+
3148
+ resolve-from@4.0.0: {}
3149
+
3150
+ resolve-from@5.0.0: {}
3151
+
3152
+ resolve-pkg-maps@1.0.0: {}
3153
+
3154
+ resolve@1.22.11:
3155
+ dependencies:
3156
+ is-core-module: 2.16.1
3157
+ path-parse: 1.0.7
3158
+ supports-preserve-symlinks-flag: 1.0.0
3159
+
3160
+ reusify@1.1.0: {}
3161
+
3162
+ rollup@4.55.3:
3163
+ dependencies:
3164
+ '@types/estree': 1.0.8
3165
+ optionalDependencies:
3166
+ '@rollup/rollup-android-arm-eabi': 4.55.3
3167
+ '@rollup/rollup-android-arm64': 4.55.3
3168
+ '@rollup/rollup-darwin-arm64': 4.55.3
3169
+ '@rollup/rollup-darwin-x64': 4.55.3
3170
+ '@rollup/rollup-freebsd-arm64': 4.55.3
3171
+ '@rollup/rollup-freebsd-x64': 4.55.3
3172
+ '@rollup/rollup-linux-arm-gnueabihf': 4.55.3
3173
+ '@rollup/rollup-linux-arm-musleabihf': 4.55.3
3174
+ '@rollup/rollup-linux-arm64-gnu': 4.55.3
3175
+ '@rollup/rollup-linux-arm64-musl': 4.55.3
3176
+ '@rollup/rollup-linux-loong64-gnu': 4.55.3
3177
+ '@rollup/rollup-linux-loong64-musl': 4.55.3
3178
+ '@rollup/rollup-linux-ppc64-gnu': 4.55.3
3179
+ '@rollup/rollup-linux-ppc64-musl': 4.55.3
3180
+ '@rollup/rollup-linux-riscv64-gnu': 4.55.3
3181
+ '@rollup/rollup-linux-riscv64-musl': 4.55.3
3182
+ '@rollup/rollup-linux-s390x-gnu': 4.55.3
3183
+ '@rollup/rollup-linux-x64-gnu': 4.55.3
3184
+ '@rollup/rollup-linux-x64-musl': 4.55.3
3185
+ '@rollup/rollup-openbsd-x64': 4.55.3
3186
+ '@rollup/rollup-openharmony-arm64': 4.55.3
3187
+ '@rollup/rollup-win32-arm64-msvc': 4.55.3
3188
+ '@rollup/rollup-win32-ia32-msvc': 4.55.3
3189
+ '@rollup/rollup-win32-x64-gnu': 4.55.3
3190
+ '@rollup/rollup-win32-x64-msvc': 4.55.3
3191
+ fsevents: 2.3.3
3192
+
3193
+ run-parallel@1.2.0:
3194
+ dependencies:
3195
+ queue-microtask: 1.2.3
3196
+
3197
+ safe-buffer@5.2.1: {}
3198
+
3199
+ safer-buffer@2.1.2: {}
3200
+
3201
+ semver@7.7.3: {}
3202
+
3203
+ send@0.19.2:
3204
+ dependencies:
3205
+ debug: 2.6.9
3206
+ depd: 2.0.0
3207
+ destroy: 1.2.0
3208
+ encodeurl: 2.0.0
3209
+ escape-html: 1.0.3
3210
+ etag: 1.8.1
3211
+ fresh: 0.5.2
3212
+ http-errors: 2.0.1
3213
+ mime: 1.6.0
3214
+ ms: 2.1.3
3215
+ on-finished: 2.4.1
3216
+ range-parser: 1.2.1
3217
+ statuses: 2.0.2
3218
+ transitivePeerDependencies:
3219
+ - supports-color
3220
+
3221
+ serve-static@1.16.3:
3222
+ dependencies:
3223
+ encodeurl: 2.0.0
3224
+ escape-html: 1.0.3
3225
+ parseurl: 1.3.3
3226
+ send: 0.19.2
3227
+ transitivePeerDependencies:
3228
+ - supports-color
3229
+
3230
+ setprototypeof@1.2.0: {}
3231
+
3232
+ shebang-command@2.0.0:
3233
+ dependencies:
3234
+ shebang-regex: 3.0.0
3235
+
3236
+ shebang-regex@3.0.0: {}
3237
+
3238
+ side-channel-list@1.0.0:
3239
+ dependencies:
3240
+ es-errors: 1.3.0
3241
+ object-inspect: 1.13.4
3242
+
3243
+ side-channel-map@1.0.1:
3244
+ dependencies:
3245
+ call-bound: 1.0.4
3246
+ es-errors: 1.3.0
3247
+ get-intrinsic: 1.3.0
3248
+ object-inspect: 1.13.4
3249
+
3250
+ side-channel-weakmap@1.0.2:
3251
+ dependencies:
3252
+ call-bound: 1.0.4
3253
+ es-errors: 1.3.0
3254
+ get-intrinsic: 1.3.0
3255
+ object-inspect: 1.13.4
3256
+ side-channel-map: 1.0.1
3257
+
3258
+ side-channel@1.1.0:
3259
+ dependencies:
3260
+ es-errors: 1.3.0
3261
+ object-inspect: 1.13.4
3262
+ side-channel-list: 1.0.0
3263
+ side-channel-map: 1.0.1
3264
+ side-channel-weakmap: 1.0.2
3265
+
3266
+ simple-wcswidth@1.1.2: {}
3267
+
3268
+ source-map-js@1.2.1: {}
3269
+
3270
+ source-map@0.7.6: {}
3271
+
3272
+ split2@4.2.0: {}
3273
+
3274
+ statuses@2.0.2: {}
3275
+
3276
+ strip-json-comments@3.1.1: {}
3277
+
3278
+ sucrase@3.35.1:
3279
+ dependencies:
3280
+ '@jridgewell/gen-mapping': 0.3.13
3281
+ commander: 4.1.1
3282
+ lines-and-columns: 1.2.4
3283
+ mz: 2.7.0
3284
+ pirates: 4.0.7
3285
+ tinyglobby: 0.2.15
3286
+ ts-interface-checker: 0.1.13
3287
+
3288
+ supports-color@7.2.0:
3289
+ dependencies:
3290
+ has-flag: 4.0.0
3291
+
3292
+ supports-preserve-symlinks-flag@1.0.0: {}
3293
+
3294
+ tailwindcss@3.4.19(tsx@4.21.0):
3295
+ dependencies:
3296
+ '@alloc/quick-lru': 5.2.0
3297
+ arg: 5.0.2
3298
+ chokidar: 3.6.0
3299
+ didyoumean: 1.2.2
3300
+ dlv: 1.1.3
3301
+ fast-glob: 3.3.3
3302
+ glob-parent: 6.0.2
3303
+ is-glob: 4.0.3
3304
+ jiti: 1.21.7
3305
+ lilconfig: 3.1.3
3306
+ micromatch: 4.0.8
3307
+ normalize-path: 3.0.0
3308
+ object-hash: 3.0.0
3309
+ picocolors: 1.1.1
3310
+ postcss: 8.5.6
3311
+ postcss-import: 15.1.0(postcss@8.5.6)
3312
+ postcss-js: 4.1.0(postcss@8.5.6)
3313
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
3314
+ postcss-nested: 6.2.0(postcss@8.5.6)
3315
+ postcss-selector-parser: 6.1.2
3316
+ resolve: 1.22.11
3317
+ sucrase: 3.35.1
3318
+ transitivePeerDependencies:
3319
+ - tsx
3320
+ - yaml
3321
+
3322
+ thenify-all@1.6.0:
3323
+ dependencies:
3324
+ thenify: 3.3.1
3325
+
3326
+ thenify@3.3.1:
3327
+ dependencies:
3328
+ any-promise: 1.3.0
3329
+
3330
+ tinyexec@0.3.2: {}
3331
+
3332
+ tinyglobby@0.2.15:
3333
+ dependencies:
3334
+ fdir: 6.5.0(picomatch@4.0.3)
3335
+ picomatch: 4.0.3
3336
+
3337
+ to-regex-range@5.0.1:
3338
+ dependencies:
3339
+ is-number: 7.0.0
3340
+
3341
+ toidentifier@1.0.1: {}
3342
+
3343
+ tree-kill@1.2.2: {}
3344
+
3345
+ ts-api-utils@2.4.0(typescript@5.9.3):
3346
+ dependencies:
3347
+ typescript: 5.9.3
3348
+
3349
+ ts-interface-checker@0.1.13: {}
3350
+
3351
+ tslib@2.8.1: {}
3352
+
3353
+ tsup@8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3):
3354
+ dependencies:
3355
+ bundle-require: 5.1.0(esbuild@0.27.2)
3356
+ cac: 6.7.14
3357
+ chokidar: 4.0.3
3358
+ consola: 3.4.2
3359
+ debug: 4.4.3
3360
+ esbuild: 0.27.2
3361
+ fix-dts-default-cjs-exports: 1.0.1
3362
+ joycon: 3.1.1
3363
+ picocolors: 1.1.1
3364
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
3365
+ resolve-from: 5.0.0
3366
+ rollup: 4.55.3
3367
+ source-map: 0.7.6
3368
+ sucrase: 3.35.1
3369
+ tinyexec: 0.3.2
3370
+ tinyglobby: 0.2.15
3371
+ tree-kill: 1.2.2
3372
+ optionalDependencies:
3373
+ postcss: 8.5.6
3374
+ typescript: 5.9.3
3375
+ transitivePeerDependencies:
3376
+ - jiti
3377
+ - supports-color
3378
+ - tsx
3379
+ - yaml
3380
+
3381
+ tsx@4.21.0:
3382
+ dependencies:
3383
+ esbuild: 0.27.2
3384
+ get-tsconfig: 4.13.6
3385
+ optionalDependencies:
3386
+ fsevents: 2.3.3
3387
+
3388
+ type-check@0.4.0:
3389
+ dependencies:
3390
+ prelude-ls: 1.2.1
3391
+
3392
+ type-is@1.6.18:
3393
+ dependencies:
3394
+ media-typer: 0.3.0
3395
+ mime-types: 2.1.35
3396
+
3397
+ typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
3398
+ dependencies:
3399
+ '@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)
3400
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3401
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
3402
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3403
+ eslint: 9.39.2(jiti@1.21.7)
3404
+ typescript: 5.9.3
3405
+ transitivePeerDependencies:
3406
+ - supports-color
3407
+
3408
+ typescript@5.9.3: {}
3409
+
3410
+ ufo@1.6.3: {}
3411
+
3412
+ undici-types@6.21.0: {}
3413
+
3414
+ unpipe@1.0.0: {}
3415
+
3416
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
3417
+ dependencies:
3418
+ browserslist: 4.28.1
3419
+ escalade: 3.2.0
3420
+ picocolors: 1.1.1
3421
+
3422
+ uri-js@4.4.1:
3423
+ dependencies:
3424
+ punycode: 2.3.1
3425
+
3426
+ util-deprecate@1.0.2: {}
3427
+
3428
+ utils-merge@1.0.1: {}
3429
+
3430
+ uuid@10.0.0: {}
3431
+
3432
+ vary@1.1.2: {}
3433
+
3434
+ vite@7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0):
3435
+ dependencies:
3436
+ esbuild: 0.27.2
3437
+ fdir: 6.5.0(picomatch@4.0.3)
3438
+ picomatch: 4.0.3
3439
+ postcss: 8.5.6
3440
+ rollup: 4.55.3
3441
+ tinyglobby: 0.2.15
3442
+ optionalDependencies:
3443
+ '@types/node': 22.19.15
3444
+ fsevents: 2.3.3
3445
+ jiti: 1.21.7
3446
+ tsx: 4.21.0
3447
+
3448
+ which-pm-runs@1.1.0: {}
3449
+
3450
+ which@2.0.2:
3451
+ dependencies:
3452
+ isexe: 2.0.0
3453
+
3454
+ word-wrap@1.2.5: {}
3455
+
3456
+ ws@8.19.0: {}
3457
+
3458
+ xtend@4.0.2: {}
3459
+
3460
+ yocto-queue@0.1.0: {}
3461
+
3462
+ zod@4.3.5: {}