@coze-arch/cli 0.0.1-alpha.f9be02 → 0.0.1-alpha.ff64d9

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 (71) hide show
  1. package/lib/__templates__/expo/.coze +1 -1
  2. package/lib/__templates__/expo/.cozeproj/scripts/dev_build.sh +19 -82
  3. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +62 -81
  4. package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +2 -2
  5. package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +2 -2
  6. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +45 -0
  7. package/lib/__templates__/expo/README.md +66 -7
  8. package/lib/__templates__/expo/client/app/_layout.tsx +33 -0
  9. package/lib/__templates__/expo/client/app/demo.tsx +1 -0
  10. package/lib/__templates__/expo/client/app/index.tsx +1 -0
  11. package/lib/__templates__/expo/client/app.config.ts +64 -60
  12. package/lib/__templates__/expo/client/{src/constants → constants}/theme.ts +22 -18
  13. package/lib/__templates__/expo/client/declarations.d.ts +5 -0
  14. package/lib/__templates__/expo/client/hooks/useColorScheme.ts +34 -0
  15. package/lib/__templates__/expo/client/package.json +3 -2
  16. package/lib/__templates__/expo/client/screens/demo/index.tsx +25 -0
  17. package/lib/__templates__/expo/client/screens/demo/styles.ts +28 -0
  18. package/lib/__templates__/expo/client/tsconfig.json +1 -1
  19. package/lib/__templates__/expo/package.json +4 -98
  20. package/lib/__templates__/expo/pnpm-lock.yaml +376 -577
  21. package/lib/__templates__/expo/server/package.json +18 -3
  22. package/lib/__templates__/expo/server/src/index.ts +8 -2
  23. package/lib/__templates__/expo/server/tsconfig.json +24 -0
  24. package/lib/__templates__/expo/template.config.js +1 -0
  25. package/lib/__templates__/nextjs/.coze +1 -0
  26. package/lib/__templates__/nextjs/_npmrc +1 -0
  27. package/lib/__templates__/nextjs/next.config.ts +12 -0
  28. package/lib/__templates__/nextjs/package.json +3 -2
  29. package/lib/__templates__/nextjs/pnpm-lock.yaml +13 -5
  30. package/lib/__templates__/nextjs/scripts/prepare.sh +9 -0
  31. package/lib/__templates__/nextjs/src/app/globals.css +10 -2
  32. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -12
  33. package/lib/__templates__/nextjs/src/app/page.tsx +35 -23
  34. package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +29 -22
  35. package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +228 -230
  36. package/lib/__templates__/nextjs/template.config.js +30 -0
  37. package/lib/__templates__/templates.json +61 -43
  38. package/lib/__templates__/vite/.coze +1 -0
  39. package/lib/__templates__/vite/_npmrc +1 -0
  40. package/lib/__templates__/vite/eslint.config.mjs +9 -0
  41. package/lib/__templates__/vite/package.json +5 -1
  42. package/lib/__templates__/vite/pnpm-lock.yaml +3481 -14
  43. package/lib/__templates__/vite/scripts/prepare.sh +9 -0
  44. package/lib/__templates__/vite/src/main.ts +1 -2
  45. package/lib/__templates__/vite/template.config.js +28 -4
  46. package/lib/cli.js +201 -57
  47. package/package.json +5 -3
  48. package/lib/__templates__/expo/client/src/app/_layout.tsx +0 -33
  49. package/lib/__templates__/expo/client/src/app/index.ts +0 -1
  50. package/lib/__templates__/expo/client/src/hooks/useColorScheme.ts +0 -1
  51. package/lib/__templates__/expo/client/src/screens/home/index.tsx +0 -50
  52. package/lib/__templates__/expo/client/src/screens/home/styles.ts +0 -60
  53. package/lib/__templates__/nextjs/.vscode/settings.json +0 -121
  54. package/lib/__templates__/vite/.vscode/settings.json +0 -7
  55. /package/lib/__templates__/expo/client/{src/assets → assets}/fonts/SpaceMono-Regular.ttf +0 -0
  56. /package/lib/__templates__/expo/client/{src/assets → assets}/images/adaptive-icon.png +0 -0
  57. /package/lib/__templates__/expo/client/{src/assets → assets}/images/default-avatar.png +0 -0
  58. /package/lib/__templates__/expo/client/{src/assets → assets}/images/favicon.png +0 -0
  59. /package/lib/__templates__/expo/client/{src/assets → assets}/images/icon.png +0 -0
  60. /package/lib/__templates__/expo/client/{src/assets → assets}/images/partial-react-logo.png +0 -0
  61. /package/lib/__templates__/expo/client/{src/assets → assets}/images/react-logo.png +0 -0
  62. /package/lib/__templates__/expo/client/{src/assets → assets}/images/react-logo@2x.png +0 -0
  63. /package/lib/__templates__/expo/client/{src/assets → assets}/images/react-logo@3x.png +0 -0
  64. /package/lib/__templates__/expo/client/{src/assets → assets}/images/splash-icon.png +0 -0
  65. /package/lib/__templates__/expo/client/{src/components → components}/Screen.tsx +0 -0
  66. /package/lib/__templates__/expo/client/{src/components → components}/SmartDateInput.tsx +0 -0
  67. /package/lib/__templates__/expo/client/{src/components → components}/ThemedText.tsx +0 -0
  68. /package/lib/__templates__/expo/client/{src/components → components}/ThemedView.tsx +0 -0
  69. /package/lib/__templates__/expo/client/{src/contexts → contexts}/AuthContext.tsx +0 -0
  70. /package/lib/__templates__/expo/client/{src/hooks → hooks}/useTheme.ts +0 -0
  71. /package/lib/__templates__/expo/client/{src/utils → utils}/index.ts +0 -0
@@ -11,6 +11,12 @@ importers:
11
11
  autoprefixer:
12
12
  specifier: ^10.4.20
13
13
  version: 10.4.23(postcss@8.5.6)
14
+ coze-coding-dev-sdk:
15
+ specifier: ^0.7.0
16
+ version: 0.7.2(openai@6.16.0(zod@4.3.5))
17
+ eslint:
18
+ specifier: ^9
19
+ version: 9.39.2(jiti@1.21.7)
14
20
  only-allow:
15
21
  specifier: ^1.2.2
16
22
  version: 1.2.2
@@ -23,6 +29,9 @@ importers:
23
29
  typescript:
24
30
  specifier: ^5.6.0
25
31
  version: 5.9.3
32
+ typescript-eslint:
33
+ specifier: ^8
34
+ version: 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
26
35
  vite:
27
36
  specifier: ^7.2.4
28
37
  version: 7.3.0(jiti@1.21.7)
@@ -33,162 +42,687 @@ packages:
33
42
  resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
34
43
  engines: {node: '>=10'}
35
44
 
45
+ '@aws-crypto/crc32@5.2.0':
46
+ resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
47
+ engines: {node: '>=16.0.0'}
48
+
49
+ '@aws-crypto/crc32c@5.2.0':
50
+ resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
51
+
52
+ '@aws-crypto/sha1-browser@5.2.0':
53
+ resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
54
+
55
+ '@aws-crypto/sha256-browser@5.2.0':
56
+ resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
57
+
58
+ '@aws-crypto/sha256-js@5.2.0':
59
+ resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
60
+ engines: {node: '>=16.0.0'}
61
+
62
+ '@aws-crypto/supports-web-crypto@5.2.0':
63
+ resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
64
+
65
+ '@aws-crypto/util@5.2.0':
66
+ resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
67
+
68
+ '@aws-sdk/client-s3@3.969.0':
69
+ resolution: {integrity: sha512-dd19qt9wCY60AS0gc7K+C26U1SdtJddn8DkwHu3psCuGaZ8r9EAKbHTNC53iLsYD5OVGsZ5bkHKQ/BjjbSyVTQ==}
70
+ engines: {node: '>=20.0.0'}
71
+
72
+ '@aws-sdk/client-sso@3.969.0':
73
+ resolution: {integrity: sha512-Qn0Uz6o15q2S+1E6OpwRKmaAMoT4LktEn+Oibk28qb2Mne+emaDawhZXahOJb/wFw5lN2FEH7XoiSNenNNUmCw==}
74
+ engines: {node: '>=20.0.0'}
75
+
76
+ '@aws-sdk/core@3.969.0':
77
+ resolution: {integrity: sha512-qqmQt4z5rEK1OYVkVkboWgy/58CC5QaQ7oy0tvLe3iri/mfZbgJkA+pkwQyRP827DfCBZ3W7Ki9iwSa+B2U7uQ==}
78
+ engines: {node: '>=20.0.0'}
79
+
80
+ '@aws-sdk/crc64-nvme@3.969.0':
81
+ resolution: {integrity: sha512-IGNkP54HD3uuLnrPCYsv3ZD478UYq+9WwKrIVJ9Pdi3hxPg8562CH3ZHf8hEgfePN31P9Kj+Zu9kq2Qcjjt61A==}
82
+ engines: {node: '>=20.0.0'}
83
+
84
+ '@aws-sdk/credential-provider-env@3.969.0':
85
+ resolution: {integrity: sha512-yS96heH5XDUqS3qQNcdObKKMOqZaivuNInMVRpRli48aXW8fX1M3fY67K/Onlqa3Wxu6WfDc3ZGF52SywdLvbg==}
86
+ engines: {node: '>=20.0.0'}
87
+
88
+ '@aws-sdk/credential-provider-http@3.969.0':
89
+ resolution: {integrity: sha512-QCEFxBiUYFUW5VG6k8jKhT4luZndpC7uUY4u1olwt+OnJrl3N2yC7oS34isVBa3ioXZ4A0YagbXTa/3mXUhlAA==}
90
+ engines: {node: '>=20.0.0'}
91
+
92
+ '@aws-sdk/credential-provider-ini@3.969.0':
93
+ resolution: {integrity: sha512-lsXyTDkUrZPxjr0XruZrqdcHY9zHcIuoY3TOCQEm23VTc8Np2BenTtjGAIexkL3ar69K4u3FVLQroLpmFxeXqA==}
94
+ engines: {node: '>=20.0.0'}
95
+
96
+ '@aws-sdk/credential-provider-login@3.969.0':
97
+ resolution: {integrity: sha512-bIRFDf54qIUFFLTZNYt40d6EseNeK9w80dHEs7BVEAWoS23c9+MSqkdg/LJBBK9Kgy01vRmjiedfBZN+jGypLw==}
98
+ engines: {node: '>=20.0.0'}
99
+
100
+ '@aws-sdk/credential-provider-node@3.969.0':
101
+ resolution: {integrity: sha512-lImMjcy/5SGDIBk7PFJCqFO4rFuapKCvo1z2PidD3Cbz2D7wsJnyqUNQIp5Ix0Xc3/uAYG9zXI9kgaMf1dspIQ==}
102
+ engines: {node: '>=20.0.0'}
103
+
104
+ '@aws-sdk/credential-provider-process@3.969.0':
105
+ resolution: {integrity: sha512-2qQkM0rwd8Hl9nIHtUaqT8Z/djrulovqx/wBHsbRKaISwc2fiT3De1Lk1jx34Jzrz/dTHAMJJi+cML1N4Lk3kw==}
106
+ engines: {node: '>=20.0.0'}
107
+
108
+ '@aws-sdk/credential-provider-sso@3.969.0':
109
+ resolution: {integrity: sha512-JHqXw9Ct3dtZB86/zGFJYWyodr961GyIrqTBhV0brrZFPvcinM9abDSK58jt6GNBM2lqfMCvXL6I4ahNsMdkrg==}
110
+ engines: {node: '>=20.0.0'}
111
+
112
+ '@aws-sdk/credential-provider-web-identity@3.969.0':
113
+ resolution: {integrity: sha512-mKCZtqrs3ts3YmIjT4NFlYgT2Oe6syW0nX5m2l7iyrFrLXw26Zo3rx29DjGzycPdJHZZvsIy5y6yqChDuF65ng==}
114
+ engines: {node: '>=20.0.0'}
115
+
116
+ '@aws-sdk/lib-storage@3.969.0':
117
+ resolution: {integrity: sha512-p7Jxw8fr3pXRpqeM2VxWGzXF9DiI5qQWsDI81JM3Lkzg7KO5/7DObiyuGZrLuUB4ZUkkfkYtf9tooNYdDH4tSQ==}
118
+ engines: {node: '>=20.0.0'}
119
+ peerDependencies:
120
+ '@aws-sdk/client-s3': 3.969.0
121
+
122
+ '@aws-sdk/middleware-bucket-endpoint@3.969.0':
123
+ resolution: {integrity: sha512-MlbrlixtkTVhYhoasblKOkr7n2yydvUZjjxTnBhIuHmkyBS1619oGnTfq/uLeGYb4NYXdeQ5OYcqsRGvmWSuTw==}
124
+ engines: {node: '>=20.0.0'}
125
+
126
+ '@aws-sdk/middleware-expect-continue@3.969.0':
127
+ resolution: {integrity: sha512-qXygzSi8osok7tH9oeuS3HoKw6jRfbvg5Me/X5RlHOvSSqQz8c5O9f3MjUApaCUSwbAU92KrbZWasw2PKiaVHg==}
128
+ engines: {node: '>=20.0.0'}
129
+
130
+ '@aws-sdk/middleware-flexible-checksums@3.969.0':
131
+ resolution: {integrity: sha512-RKpo76qcHhQkSgu+wJNvwio8MzMD7ScwBaMCQhJfqzFTrhhlKtMkf8oxhBRRYU7rat368p35h6CbfxM18g/WNQ==}
132
+ engines: {node: '>=20.0.0'}
133
+
134
+ '@aws-sdk/middleware-host-header@3.969.0':
135
+ resolution: {integrity: sha512-AWa4rVsAfBR4xqm7pybQ8sUNJYnjyP/bJjfAw34qPuh3M9XrfGbAHG0aiAfQGrBnmS28jlO6Kz69o+c6PRw1dw==}
136
+ engines: {node: '>=20.0.0'}
137
+
138
+ '@aws-sdk/middleware-location-constraint@3.969.0':
139
+ resolution: {integrity: sha512-zH7pDfMLG/C4GWMOpvJEoYcSpj7XsNP9+irlgqwi667sUQ6doHQJ3yyDut3yiTk0maq1VgmriPFELyI9lrvH/g==}
140
+ engines: {node: '>=20.0.0'}
141
+
142
+ '@aws-sdk/middleware-logger@3.969.0':
143
+ resolution: {integrity: sha512-xwrxfip7Y2iTtCMJ+iifN1E1XMOuhxIHY9DreMCvgdl4r7+48x2S1bCYPWH3eNY85/7CapBWdJ8cerpEl12sQQ==}
144
+ engines: {node: '>=20.0.0'}
145
+
146
+ '@aws-sdk/middleware-recursion-detection@3.969.0':
147
+ resolution: {integrity: sha512-2r3PuNquU3CcS1Am4vn/KHFwLi8QFjMdA/R+CRDXT4AFO/0qxevF/YStW3gAKntQIgWgQV8ZdEtKAoJvLI4UWg==}
148
+ engines: {node: '>=20.0.0'}
149
+
150
+ '@aws-sdk/middleware-sdk-s3@3.969.0':
151
+ resolution: {integrity: sha512-xjcyZrbtvVaqkmjkhmqX+16Wf7zFVS/cYnNFu/JyG6ekkIxSXEAjptNwSEDzlAiLzf0Hf6dYj5erLZYGa40eWg==}
152
+ engines: {node: '>=20.0.0'}
153
+
154
+ '@aws-sdk/middleware-ssec@3.969.0':
155
+ resolution: {integrity: sha512-9wUYtd5ye4exygKHyl02lPVHUoAFlxxXoqvlw7u2sycfkK6uHLlwdsPru3MkMwj47ZSZs+lkyP/sVKXVMhuaAg==}
156
+ engines: {node: '>=20.0.0'}
157
+
158
+ '@aws-sdk/middleware-user-agent@3.969.0':
159
+ resolution: {integrity: sha512-Y6WkW8QQ2X9jG9HNBWyzp5KlJOCtLqX8VIvGLoGc2wXdZH7dgOy62uFhkfnHbgfiel6fkNYaycjGx/yyxi0JLQ==}
160
+ engines: {node: '>=20.0.0'}
161
+
162
+ '@aws-sdk/nested-clients@3.969.0':
163
+ resolution: {integrity: sha512-MJrejgODxVYZjQjSpPLJkVuxnbrue1x1R8+as3anT5V/wk9Qc/Pf5B1IFjM3Ak6uOtzuRYNY4auOvcg4U8twDA==}
164
+ engines: {node: '>=20.0.0'}
165
+
166
+ '@aws-sdk/region-config-resolver@3.969.0':
167
+ resolution: {integrity: sha512-scj9OXqKpcjJ4jsFLtqYWz3IaNvNOQTFFvEY8XMJXTv+3qF5I7/x9SJtKzTRJEBF3spjzBUYPtGFbs9sj4fisQ==}
168
+ engines: {node: '>=20.0.0'}
169
+
170
+ '@aws-sdk/signature-v4-multi-region@3.969.0':
171
+ resolution: {integrity: sha512-pv8BEQOlUzK+ww8ZfXZOnDzLfPO5+O7puBFtU1fE8CdCAQ/RP/B1XY3hxzW9Xs0dax7graYKnY8wd8ooYy7vBw==}
172
+ engines: {node: '>=20.0.0'}
173
+
174
+ '@aws-sdk/token-providers@3.969.0':
175
+ resolution: {integrity: sha512-ucs6QczPkvGinbGmhMlPCQnagGJ+xsM6itsSWlJzxo9YsP6jR75cBU8pRdaM7nEbtCDnrUHf8W9g3D2Hd9mgVA==}
176
+ engines: {node: '>=20.0.0'}
177
+
178
+ '@aws-sdk/types@3.969.0':
179
+ resolution: {integrity: sha512-7IIzM5TdiXn+VtgPdVLjmE6uUBUtnga0f4RiSEI1WW10RPuNvZ9U+pL3SwDiRDAdoGrOF9tSLJOFZmfuwYuVYQ==}
180
+ engines: {node: '>=20.0.0'}
181
+
182
+ '@aws-sdk/util-arn-parser@3.968.0':
183
+ resolution: {integrity: sha512-gqqvYcitIIM2K4lrDX9de9YvOfXBcVdxfT/iLnvHJd4YHvSXlt+gs+AsL4FfPCxG4IG9A+FyulP9Sb1MEA75vw==}
184
+ engines: {node: '>=20.0.0'}
185
+
186
+ '@aws-sdk/util-endpoints@3.969.0':
187
+ resolution: {integrity: sha512-H2x2UwYiA1pHg40jE+OCSc668W9GXRShTiCWy1UPKtZKREbQ63Mgd7NAj+bEMsZUSCdHywqmSsLqKM9IcqQ3Bg==}
188
+ engines: {node: '>=20.0.0'}
189
+
190
+ '@aws-sdk/util-locate-window@3.965.2':
191
+ resolution: {integrity: sha512-qKgO7wAYsXzhwCHhdbaKFyxd83Fgs8/1Ka+jjSPrv2Ll7mB55Wbwlo0kkfMLh993/yEc8aoDIAc1Fz9h4Spi4Q==}
192
+ engines: {node: '>=20.0.0'}
193
+
194
+ '@aws-sdk/util-user-agent-browser@3.969.0':
195
+ resolution: {integrity: sha512-bpJGjuKmFr0rA6UKUCmN8D19HQFMLXMx5hKBXqBlPFdalMhxJSjcxzX9DbQh0Fn6bJtxCguFmRGOBdQqNOt49g==}
196
+
197
+ '@aws-sdk/util-user-agent-node@3.969.0':
198
+ resolution: {integrity: sha512-D11ZuXNXdUMv8XTthMx+LPzkYNQAeQ68FnCTGnFLgLpnR8hVTeZMBBKjQ77wYGzWDk/csHKdCy697gU1On5KjA==}
199
+ engines: {node: '>=20.0.0'}
200
+ peerDependencies:
201
+ aws-crt: '>=1.0.0'
202
+ peerDependenciesMeta:
203
+ aws-crt:
204
+ optional: true
205
+
206
+ '@aws-sdk/xml-builder@3.969.0':
207
+ resolution: {integrity: sha512-BSe4Lx/qdRQQdX8cSSI7Et20vqBspzAjBy8ZmXVoyLkol3y4sXBXzn+BiLtR+oh60ExQn6o2DU4QjdOZbXaKIQ==}
208
+ engines: {node: '>=20.0.0'}
209
+
210
+ '@aws/lambda-invoke-store@0.2.3':
211
+ resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
212
+ engines: {node: '>=18.0.0'}
213
+
214
+ '@cfworker/json-schema@4.1.1':
215
+ resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
216
+
217
+ '@drizzle-team/brocli@0.10.2':
218
+ resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
219
+
220
+ '@esbuild-kit/core-utils@3.3.2':
221
+ resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
222
+ deprecated: 'Merged into tsx: https://tsx.is'
223
+
224
+ '@esbuild-kit/esm-loader@2.6.5':
225
+ resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
226
+ deprecated: 'Merged into tsx: https://tsx.is'
227
+
228
+ '@esbuild/aix-ppc64@0.25.12':
229
+ resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
230
+ engines: {node: '>=18'}
231
+ cpu: [ppc64]
232
+ os: [aix]
233
+
36
234
  '@esbuild/aix-ppc64@0.27.2':
37
235
  resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
38
236
  engines: {node: '>=18'}
39
237
  cpu: [ppc64]
40
238
  os: [aix]
41
239
 
240
+ '@esbuild/android-arm64@0.18.20':
241
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
242
+ engines: {node: '>=12'}
243
+ cpu: [arm64]
244
+ os: [android]
245
+
246
+ '@esbuild/android-arm64@0.25.12':
247
+ resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
248
+ engines: {node: '>=18'}
249
+ cpu: [arm64]
250
+ os: [android]
251
+
42
252
  '@esbuild/android-arm64@0.27.2':
43
253
  resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
44
254
  engines: {node: '>=18'}
45
255
  cpu: [arm64]
46
256
  os: [android]
47
257
 
258
+ '@esbuild/android-arm@0.18.20':
259
+ resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
260
+ engines: {node: '>=12'}
261
+ cpu: [arm]
262
+ os: [android]
263
+
264
+ '@esbuild/android-arm@0.25.12':
265
+ resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
266
+ engines: {node: '>=18'}
267
+ cpu: [arm]
268
+ os: [android]
269
+
48
270
  '@esbuild/android-arm@0.27.2':
49
271
  resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
50
272
  engines: {node: '>=18'}
51
273
  cpu: [arm]
52
274
  os: [android]
53
275
 
276
+ '@esbuild/android-x64@0.18.20':
277
+ resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
278
+ engines: {node: '>=12'}
279
+ cpu: [x64]
280
+ os: [android]
281
+
282
+ '@esbuild/android-x64@0.25.12':
283
+ resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
284
+ engines: {node: '>=18'}
285
+ cpu: [x64]
286
+ os: [android]
287
+
54
288
  '@esbuild/android-x64@0.27.2':
55
289
  resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
56
290
  engines: {node: '>=18'}
57
291
  cpu: [x64]
58
292
  os: [android]
59
293
 
294
+ '@esbuild/darwin-arm64@0.18.20':
295
+ resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
296
+ engines: {node: '>=12'}
297
+ cpu: [arm64]
298
+ os: [darwin]
299
+
300
+ '@esbuild/darwin-arm64@0.25.12':
301
+ resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
302
+ engines: {node: '>=18'}
303
+ cpu: [arm64]
304
+ os: [darwin]
305
+
60
306
  '@esbuild/darwin-arm64@0.27.2':
61
307
  resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
62
308
  engines: {node: '>=18'}
63
309
  cpu: [arm64]
64
310
  os: [darwin]
65
311
 
312
+ '@esbuild/darwin-x64@0.18.20':
313
+ resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
314
+ engines: {node: '>=12'}
315
+ cpu: [x64]
316
+ os: [darwin]
317
+
318
+ '@esbuild/darwin-x64@0.25.12':
319
+ resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
320
+ engines: {node: '>=18'}
321
+ cpu: [x64]
322
+ os: [darwin]
323
+
66
324
  '@esbuild/darwin-x64@0.27.2':
67
325
  resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
68
326
  engines: {node: '>=18'}
69
327
  cpu: [x64]
70
328
  os: [darwin]
71
329
 
330
+ '@esbuild/freebsd-arm64@0.18.20':
331
+ resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
332
+ engines: {node: '>=12'}
333
+ cpu: [arm64]
334
+ os: [freebsd]
335
+
336
+ '@esbuild/freebsd-arm64@0.25.12':
337
+ resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
338
+ engines: {node: '>=18'}
339
+ cpu: [arm64]
340
+ os: [freebsd]
341
+
72
342
  '@esbuild/freebsd-arm64@0.27.2':
73
343
  resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
74
344
  engines: {node: '>=18'}
75
345
  cpu: [arm64]
76
346
  os: [freebsd]
77
347
 
348
+ '@esbuild/freebsd-x64@0.18.20':
349
+ resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
350
+ engines: {node: '>=12'}
351
+ cpu: [x64]
352
+ os: [freebsd]
353
+
354
+ '@esbuild/freebsd-x64@0.25.12':
355
+ resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
356
+ engines: {node: '>=18'}
357
+ cpu: [x64]
358
+ os: [freebsd]
359
+
78
360
  '@esbuild/freebsd-x64@0.27.2':
79
361
  resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
80
362
  engines: {node: '>=18'}
81
363
  cpu: [x64]
82
364
  os: [freebsd]
83
365
 
366
+ '@esbuild/linux-arm64@0.18.20':
367
+ resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
368
+ engines: {node: '>=12'}
369
+ cpu: [arm64]
370
+ os: [linux]
371
+
372
+ '@esbuild/linux-arm64@0.25.12':
373
+ resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
374
+ engines: {node: '>=18'}
375
+ cpu: [arm64]
376
+ os: [linux]
377
+
84
378
  '@esbuild/linux-arm64@0.27.2':
85
379
  resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
86
380
  engines: {node: '>=18'}
87
381
  cpu: [arm64]
88
382
  os: [linux]
89
383
 
384
+ '@esbuild/linux-arm@0.18.20':
385
+ resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
386
+ engines: {node: '>=12'}
387
+ cpu: [arm]
388
+ os: [linux]
389
+
390
+ '@esbuild/linux-arm@0.25.12':
391
+ resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
392
+ engines: {node: '>=18'}
393
+ cpu: [arm]
394
+ os: [linux]
395
+
90
396
  '@esbuild/linux-arm@0.27.2':
91
397
  resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
92
398
  engines: {node: '>=18'}
93
399
  cpu: [arm]
94
400
  os: [linux]
95
401
 
402
+ '@esbuild/linux-ia32@0.18.20':
403
+ resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
404
+ engines: {node: '>=12'}
405
+ cpu: [ia32]
406
+ os: [linux]
407
+
408
+ '@esbuild/linux-ia32@0.25.12':
409
+ resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
410
+ engines: {node: '>=18'}
411
+ cpu: [ia32]
412
+ os: [linux]
413
+
96
414
  '@esbuild/linux-ia32@0.27.2':
97
415
  resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
98
416
  engines: {node: '>=18'}
99
417
  cpu: [ia32]
100
418
  os: [linux]
101
419
 
420
+ '@esbuild/linux-loong64@0.18.20':
421
+ resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
422
+ engines: {node: '>=12'}
423
+ cpu: [loong64]
424
+ os: [linux]
425
+
426
+ '@esbuild/linux-loong64@0.25.12':
427
+ resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
428
+ engines: {node: '>=18'}
429
+ cpu: [loong64]
430
+ os: [linux]
431
+
102
432
  '@esbuild/linux-loong64@0.27.2':
103
433
  resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
104
434
  engines: {node: '>=18'}
105
435
  cpu: [loong64]
106
436
  os: [linux]
107
437
 
438
+ '@esbuild/linux-mips64el@0.18.20':
439
+ resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
440
+ engines: {node: '>=12'}
441
+ cpu: [mips64el]
442
+ os: [linux]
443
+
444
+ '@esbuild/linux-mips64el@0.25.12':
445
+ resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
446
+ engines: {node: '>=18'}
447
+ cpu: [mips64el]
448
+ os: [linux]
449
+
108
450
  '@esbuild/linux-mips64el@0.27.2':
109
451
  resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
110
452
  engines: {node: '>=18'}
111
453
  cpu: [mips64el]
112
454
  os: [linux]
113
455
 
456
+ '@esbuild/linux-ppc64@0.18.20':
457
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
458
+ engines: {node: '>=12'}
459
+ cpu: [ppc64]
460
+ os: [linux]
461
+
462
+ '@esbuild/linux-ppc64@0.25.12':
463
+ resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
464
+ engines: {node: '>=18'}
465
+ cpu: [ppc64]
466
+ os: [linux]
467
+
114
468
  '@esbuild/linux-ppc64@0.27.2':
115
469
  resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
116
470
  engines: {node: '>=18'}
117
471
  cpu: [ppc64]
118
472
  os: [linux]
119
473
 
474
+ '@esbuild/linux-riscv64@0.18.20':
475
+ resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
476
+ engines: {node: '>=12'}
477
+ cpu: [riscv64]
478
+ os: [linux]
479
+
480
+ '@esbuild/linux-riscv64@0.25.12':
481
+ resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
482
+ engines: {node: '>=18'}
483
+ cpu: [riscv64]
484
+ os: [linux]
485
+
120
486
  '@esbuild/linux-riscv64@0.27.2':
121
487
  resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
122
488
  engines: {node: '>=18'}
123
489
  cpu: [riscv64]
124
490
  os: [linux]
125
491
 
492
+ '@esbuild/linux-s390x@0.18.20':
493
+ resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
494
+ engines: {node: '>=12'}
495
+ cpu: [s390x]
496
+ os: [linux]
497
+
498
+ '@esbuild/linux-s390x@0.25.12':
499
+ resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
500
+ engines: {node: '>=18'}
501
+ cpu: [s390x]
502
+ os: [linux]
503
+
126
504
  '@esbuild/linux-s390x@0.27.2':
127
505
  resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
128
506
  engines: {node: '>=18'}
129
507
  cpu: [s390x]
130
508
  os: [linux]
131
509
 
510
+ '@esbuild/linux-x64@0.18.20':
511
+ resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
512
+ engines: {node: '>=12'}
513
+ cpu: [x64]
514
+ os: [linux]
515
+
516
+ '@esbuild/linux-x64@0.25.12':
517
+ resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
518
+ engines: {node: '>=18'}
519
+ cpu: [x64]
520
+ os: [linux]
521
+
132
522
  '@esbuild/linux-x64@0.27.2':
133
523
  resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
134
524
  engines: {node: '>=18'}
135
525
  cpu: [x64]
136
526
  os: [linux]
137
527
 
528
+ '@esbuild/netbsd-arm64@0.25.12':
529
+ resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
530
+ engines: {node: '>=18'}
531
+ cpu: [arm64]
532
+ os: [netbsd]
533
+
138
534
  '@esbuild/netbsd-arm64@0.27.2':
139
535
  resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
140
536
  engines: {node: '>=18'}
141
537
  cpu: [arm64]
142
538
  os: [netbsd]
143
539
 
540
+ '@esbuild/netbsd-x64@0.18.20':
541
+ resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
542
+ engines: {node: '>=12'}
543
+ cpu: [x64]
544
+ os: [netbsd]
545
+
546
+ '@esbuild/netbsd-x64@0.25.12':
547
+ resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
548
+ engines: {node: '>=18'}
549
+ cpu: [x64]
550
+ os: [netbsd]
551
+
144
552
  '@esbuild/netbsd-x64@0.27.2':
145
553
  resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
146
554
  engines: {node: '>=18'}
147
555
  cpu: [x64]
148
556
  os: [netbsd]
149
557
 
558
+ '@esbuild/openbsd-arm64@0.25.12':
559
+ resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
560
+ engines: {node: '>=18'}
561
+ cpu: [arm64]
562
+ os: [openbsd]
563
+
150
564
  '@esbuild/openbsd-arm64@0.27.2':
151
565
  resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
152
566
  engines: {node: '>=18'}
153
567
  cpu: [arm64]
154
568
  os: [openbsd]
155
569
 
570
+ '@esbuild/openbsd-x64@0.18.20':
571
+ resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
572
+ engines: {node: '>=12'}
573
+ cpu: [x64]
574
+ os: [openbsd]
575
+
576
+ '@esbuild/openbsd-x64@0.25.12':
577
+ resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
578
+ engines: {node: '>=18'}
579
+ cpu: [x64]
580
+ os: [openbsd]
581
+
156
582
  '@esbuild/openbsd-x64@0.27.2':
157
583
  resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
158
584
  engines: {node: '>=18'}
159
585
  cpu: [x64]
160
586
  os: [openbsd]
161
587
 
588
+ '@esbuild/openharmony-arm64@0.25.12':
589
+ resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
590
+ engines: {node: '>=18'}
591
+ cpu: [arm64]
592
+ os: [openharmony]
593
+
162
594
  '@esbuild/openharmony-arm64@0.27.2':
163
595
  resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
164
596
  engines: {node: '>=18'}
165
597
  cpu: [arm64]
166
598
  os: [openharmony]
167
599
 
600
+ '@esbuild/sunos-x64@0.18.20':
601
+ resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
602
+ engines: {node: '>=12'}
603
+ cpu: [x64]
604
+ os: [sunos]
605
+
606
+ '@esbuild/sunos-x64@0.25.12':
607
+ resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
608
+ engines: {node: '>=18'}
609
+ cpu: [x64]
610
+ os: [sunos]
611
+
168
612
  '@esbuild/sunos-x64@0.27.2':
169
613
  resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
170
614
  engines: {node: '>=18'}
171
615
  cpu: [x64]
172
616
  os: [sunos]
173
617
 
618
+ '@esbuild/win32-arm64@0.18.20':
619
+ resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
620
+ engines: {node: '>=12'}
621
+ cpu: [arm64]
622
+ os: [win32]
623
+
624
+ '@esbuild/win32-arm64@0.25.12':
625
+ resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
626
+ engines: {node: '>=18'}
627
+ cpu: [arm64]
628
+ os: [win32]
629
+
174
630
  '@esbuild/win32-arm64@0.27.2':
175
631
  resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
176
632
  engines: {node: '>=18'}
177
633
  cpu: [arm64]
178
634
  os: [win32]
179
635
 
636
+ '@esbuild/win32-ia32@0.18.20':
637
+ resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
638
+ engines: {node: '>=12'}
639
+ cpu: [ia32]
640
+ os: [win32]
641
+
642
+ '@esbuild/win32-ia32@0.25.12':
643
+ resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
644
+ engines: {node: '>=18'}
645
+ cpu: [ia32]
646
+ os: [win32]
647
+
180
648
  '@esbuild/win32-ia32@0.27.2':
181
649
  resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
182
650
  engines: {node: '>=18'}
183
651
  cpu: [ia32]
184
652
  os: [win32]
185
653
 
654
+ '@esbuild/win32-x64@0.18.20':
655
+ resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
656
+ engines: {node: '>=12'}
657
+ cpu: [x64]
658
+ os: [win32]
659
+
660
+ '@esbuild/win32-x64@0.25.12':
661
+ resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
662
+ engines: {node: '>=18'}
663
+ cpu: [x64]
664
+ os: [win32]
665
+
186
666
  '@esbuild/win32-x64@0.27.2':
187
667
  resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
188
668
  engines: {node: '>=18'}
189
669
  cpu: [x64]
190
670
  os: [win32]
191
671
 
672
+ '@eslint-community/eslint-utils@4.9.1':
673
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
674
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
675
+ peerDependencies:
676
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
677
+
678
+ '@eslint-community/regexpp@4.12.2':
679
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
680
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
681
+
682
+ '@eslint/config-array@0.21.1':
683
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
684
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
685
+
686
+ '@eslint/config-helpers@0.4.2':
687
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
688
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
689
+
690
+ '@eslint/core@0.17.0':
691
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
692
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
693
+
694
+ '@eslint/eslintrc@3.3.3':
695
+ resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
696
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
697
+
698
+ '@eslint/js@9.39.2':
699
+ resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
700
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
701
+
702
+ '@eslint/object-schema@2.1.7':
703
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
704
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
705
+
706
+ '@eslint/plugin-kit@0.4.1':
707
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
708
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
709
+
710
+ '@humanfs/core@0.19.1':
711
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
712
+ engines: {node: '>=18.18.0'}
713
+
714
+ '@humanfs/node@0.16.7':
715
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
716
+ engines: {node: '>=18.18.0'}
717
+
718
+ '@humanwhocodes/module-importer@1.0.1':
719
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
720
+ engines: {node: '>=12.22'}
721
+
722
+ '@humanwhocodes/retry@0.4.3':
723
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
724
+ engines: {node: '>=18.18'}
725
+
192
726
  '@jridgewell/gen-mapping@0.3.13':
193
727
  resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
194
728
 
@@ -202,6 +736,16 @@ packages:
202
736
  '@jridgewell/trace-mapping@0.3.31':
203
737
  resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
204
738
 
739
+ '@langchain/core@1.1.15':
740
+ resolution: {integrity: sha512-b8RN5DkWAmDAlMu/UpTZEluYwCLpm63PPWniRKlE8ie3KkkE7IuMQ38pf4kV1iaiI+d99BEQa2vafQHfCujsRA==}
741
+ engines: {node: '>=20'}
742
+
743
+ '@langchain/openai@1.2.2':
744
+ resolution: {integrity: sha512-ByGtj9nJlyL2UPR7BAxtM34g8JA0qEfDKZq7ZisLW23ju+da1ZRAKogoEqoEHHSxl5fAt2LXcydsIYx0qgCDgg==}
745
+ engines: {node: '>=20'}
746
+ peerDependencies:
747
+ '@langchain/core': ^1.0.0
748
+
205
749
  '@nodelib/fs.scandir@2.1.5':
206
750
  resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
207
751
  engines: {node: '>= 8'}
@@ -335,9 +879,315 @@ packages:
335
879
  cpu: [x64]
336
880
  os: [win32]
337
881
 
882
+ '@smithy/abort-controller@4.2.8':
883
+ resolution: {integrity: sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==}
884
+ engines: {node: '>=18.0.0'}
885
+
886
+ '@smithy/chunked-blob-reader-native@4.2.1':
887
+ resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==}
888
+ engines: {node: '>=18.0.0'}
889
+
890
+ '@smithy/chunked-blob-reader@5.2.0':
891
+ resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==}
892
+ engines: {node: '>=18.0.0'}
893
+
894
+ '@smithy/config-resolver@4.4.6':
895
+ resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
896
+ engines: {node: '>=18.0.0'}
897
+
898
+ '@smithy/core@3.20.5':
899
+ resolution: {integrity: sha512-0Tz77Td8ynHaowXfOdrD0F1IH4tgWGUhwmLwmpFyTbr+U9WHXNNp9u/k2VjBXGnSe7BwjBERRpXsokGTXzNjhA==}
900
+ engines: {node: '>=18.0.0'}
901
+
902
+ '@smithy/credential-provider-imds@4.2.8':
903
+ resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
904
+ engines: {node: '>=18.0.0'}
905
+
906
+ '@smithy/eventstream-codec@4.2.8':
907
+ resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==}
908
+ engines: {node: '>=18.0.0'}
909
+
910
+ '@smithy/eventstream-serde-browser@4.2.8':
911
+ resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==}
912
+ engines: {node: '>=18.0.0'}
913
+
914
+ '@smithy/eventstream-serde-config-resolver@4.3.8':
915
+ resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==}
916
+ engines: {node: '>=18.0.0'}
917
+
918
+ '@smithy/eventstream-serde-node@4.2.8':
919
+ resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==}
920
+ engines: {node: '>=18.0.0'}
921
+
922
+ '@smithy/eventstream-serde-universal@4.2.8':
923
+ resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==}
924
+ engines: {node: '>=18.0.0'}
925
+
926
+ '@smithy/fetch-http-handler@5.3.9':
927
+ resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
928
+ engines: {node: '>=18.0.0'}
929
+
930
+ '@smithy/hash-blob-browser@4.2.9':
931
+ resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==}
932
+ engines: {node: '>=18.0.0'}
933
+
934
+ '@smithy/hash-node@4.2.8':
935
+ resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
936
+ engines: {node: '>=18.0.0'}
937
+
938
+ '@smithy/hash-stream-node@4.2.8':
939
+ resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==}
940
+ engines: {node: '>=18.0.0'}
941
+
942
+ '@smithy/invalid-dependency@4.2.8':
943
+ resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
944
+ engines: {node: '>=18.0.0'}
945
+
946
+ '@smithy/is-array-buffer@2.2.0':
947
+ resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
948
+ engines: {node: '>=14.0.0'}
949
+
950
+ '@smithy/is-array-buffer@4.2.0':
951
+ resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
952
+ engines: {node: '>=18.0.0'}
953
+
954
+ '@smithy/md5-js@4.2.8':
955
+ resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==}
956
+ engines: {node: '>=18.0.0'}
957
+
958
+ '@smithy/middleware-content-length@4.2.8':
959
+ resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
960
+ engines: {node: '>=18.0.0'}
961
+
962
+ '@smithy/middleware-endpoint@4.4.6':
963
+ resolution: {integrity: sha512-dpq3bHqbEOBqGBjRVHVFP3eUSPpX0BYtg1D5d5Irgk6orGGAuZfY22rC4sErhg+ZfY/Y0kPqm1XpAmDZg7DeuA==}
964
+ engines: {node: '>=18.0.0'}
965
+
966
+ '@smithy/middleware-retry@4.4.22':
967
+ resolution: {integrity: sha512-vwWDMaObSMjw6WCC/3Ae9G7uul5Sk95jr07CDk1gkIMpaDic0phPS1MpVAZ6+YkF7PAzRlpsDjxPwRlh/S11FQ==}
968
+ engines: {node: '>=18.0.0'}
969
+
970
+ '@smithy/middleware-serde@4.2.9':
971
+ resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
972
+ engines: {node: '>=18.0.0'}
973
+
974
+ '@smithy/middleware-stack@4.2.8':
975
+ resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==}
976
+ engines: {node: '>=18.0.0'}
977
+
978
+ '@smithy/node-config-provider@4.3.8':
979
+ resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==}
980
+ engines: {node: '>=18.0.0'}
981
+
982
+ '@smithy/node-http-handler@4.4.8':
983
+ resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
984
+ engines: {node: '>=18.0.0'}
985
+
986
+ '@smithy/property-provider@4.2.8':
987
+ resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==}
988
+ engines: {node: '>=18.0.0'}
989
+
990
+ '@smithy/protocol-http@5.3.8':
991
+ resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==}
992
+ engines: {node: '>=18.0.0'}
993
+
994
+ '@smithy/querystring-builder@4.2.8':
995
+ resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
996
+ engines: {node: '>=18.0.0'}
997
+
998
+ '@smithy/querystring-parser@4.2.8':
999
+ resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
1000
+ engines: {node: '>=18.0.0'}
1001
+
1002
+ '@smithy/service-error-classification@4.2.8':
1003
+ resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
1004
+ engines: {node: '>=18.0.0'}
1005
+
1006
+ '@smithy/shared-ini-file-loader@4.4.3':
1007
+ resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==}
1008
+ engines: {node: '>=18.0.0'}
1009
+
1010
+ '@smithy/signature-v4@5.3.8':
1011
+ resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
1012
+ engines: {node: '>=18.0.0'}
1013
+
1014
+ '@smithy/smithy-client@4.10.7':
1015
+ resolution: {integrity: sha512-Uznt0I9z3os3Z+8pbXrOSCTXCA6vrjyN7Ub+8l2pRDum44vLv8qw0qGVkJN0/tZBZotaEFHrDPKUoPNueTr5Vg==}
1016
+ engines: {node: '>=18.0.0'}
1017
+
1018
+ '@smithy/types@4.12.0':
1019
+ resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==}
1020
+ engines: {node: '>=18.0.0'}
1021
+
1022
+ '@smithy/url-parser@4.2.8':
1023
+ resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
1024
+ engines: {node: '>=18.0.0'}
1025
+
1026
+ '@smithy/util-base64@4.3.0':
1027
+ resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
1028
+ engines: {node: '>=18.0.0'}
1029
+
1030
+ '@smithy/util-body-length-browser@4.2.0':
1031
+ resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
1032
+ engines: {node: '>=18.0.0'}
1033
+
1034
+ '@smithy/util-body-length-node@4.2.1':
1035
+ resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
1036
+ engines: {node: '>=18.0.0'}
1037
+
1038
+ '@smithy/util-buffer-from@2.2.0':
1039
+ resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
1040
+ engines: {node: '>=14.0.0'}
1041
+
1042
+ '@smithy/util-buffer-from@4.2.0':
1043
+ resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
1044
+ engines: {node: '>=18.0.0'}
1045
+
1046
+ '@smithy/util-config-provider@4.2.0':
1047
+ resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
1048
+ engines: {node: '>=18.0.0'}
1049
+
1050
+ '@smithy/util-defaults-mode-browser@4.3.21':
1051
+ resolution: {integrity: sha512-DtmVJarzqtjghtGjCw/PFJolcJkP7GkZgy+hWTAN3YLXNH+IC82uMoMhFoC3ZtIz5mOgCm5+hOGi1wfhVYgrxw==}
1052
+ engines: {node: '>=18.0.0'}
1053
+
1054
+ '@smithy/util-defaults-mode-node@4.2.24':
1055
+ resolution: {integrity: sha512-JelBDKPAVswVY666rezBvY6b0nF/v9TXjUbNwDNAyme7qqKYEX687wJv0uze8lBIZVbg30wlWnlYfVSjjpKYFA==}
1056
+ engines: {node: '>=18.0.0'}
1057
+
1058
+ '@smithy/util-endpoints@3.2.8':
1059
+ resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
1060
+ engines: {node: '>=18.0.0'}
1061
+
1062
+ '@smithy/util-hex-encoding@4.2.0':
1063
+ resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
1064
+ engines: {node: '>=18.0.0'}
1065
+
1066
+ '@smithy/util-middleware@4.2.8':
1067
+ resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==}
1068
+ engines: {node: '>=18.0.0'}
1069
+
1070
+ '@smithy/util-retry@4.2.8':
1071
+ resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
1072
+ engines: {node: '>=18.0.0'}
1073
+
1074
+ '@smithy/util-stream@4.5.10':
1075
+ resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
1076
+ engines: {node: '>=18.0.0'}
1077
+
1078
+ '@smithy/util-uri-escape@4.2.0':
1079
+ resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==}
1080
+ engines: {node: '>=18.0.0'}
1081
+
1082
+ '@smithy/util-utf8@2.3.0':
1083
+ resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
1084
+ engines: {node: '>=14.0.0'}
1085
+
1086
+ '@smithy/util-utf8@4.2.0':
1087
+ resolution: {integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==}
1088
+ engines: {node: '>=18.0.0'}
1089
+
1090
+ '@smithy/util-waiter@4.2.8':
1091
+ resolution: {integrity: sha512-n+lahlMWk+aejGuax7DPWtqav8HYnWxQwR+LCG2BgCUmaGcTe9qZCFsmw8TMg9iG75HOwhrJCX9TCJRLH+Yzqg==}
1092
+ engines: {node: '>=18.0.0'}
1093
+
1094
+ '@smithy/uuid@1.1.0':
1095
+ resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==}
1096
+ engines: {node: '>=18.0.0'}
1097
+
338
1098
  '@types/estree@1.0.8':
339
1099
  resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
340
1100
 
1101
+ '@types/json-schema@7.0.15':
1102
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
1103
+
1104
+ '@types/uuid@10.0.0':
1105
+ resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
1106
+
1107
+ '@typescript-eslint/eslint-plugin@8.52.0':
1108
+ resolution: {integrity: sha512-okqtOgqu2qmZJ5iN4TWlgfF171dZmx2FzdOv2K/ixL2LZWDStL8+JgQerI2sa8eAEfoydG9+0V96m7V+P8yE1Q==}
1109
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1110
+ peerDependencies:
1111
+ '@typescript-eslint/parser': ^8.52.0
1112
+ eslint: ^8.57.0 || ^9.0.0
1113
+ typescript: '>=4.8.4 <6.0.0'
1114
+
1115
+ '@typescript-eslint/parser@8.52.0':
1116
+ resolution: {integrity: sha512-iIACsx8pxRnguSYhHiMn2PvhvfpopO9FXHyn1mG5txZIsAaB6F0KwbFnUQN3KCiG3Jcuad/Cao2FAs1Wp7vAyg==}
1117
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1118
+ peerDependencies:
1119
+ eslint: ^8.57.0 || ^9.0.0
1120
+ typescript: '>=4.8.4 <6.0.0'
1121
+
1122
+ '@typescript-eslint/project-service@8.52.0':
1123
+ resolution: {integrity: sha512-xD0MfdSdEmeFa3OmVqonHi+Cciab96ls1UhIF/qX/O/gPu5KXD0bY9lu33jj04fjzrXHcuvjBcBC+D3SNSadaw==}
1124
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1125
+ peerDependencies:
1126
+ typescript: '>=4.8.4 <6.0.0'
1127
+
1128
+ '@typescript-eslint/scope-manager@8.52.0':
1129
+ resolution: {integrity: sha512-ixxqmmCcc1Nf8S0mS0TkJ/3LKcC8mruYJPOU6Ia2F/zUUR4pApW7LzrpU3JmtePbRUTes9bEqRc1Gg4iyRnDzA==}
1130
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1131
+
1132
+ '@typescript-eslint/tsconfig-utils@8.52.0':
1133
+ resolution: {integrity: sha512-jl+8fzr/SdzdxWJznq5nvoI7qn2tNYV/ZBAEcaFMVXf+K6jmXvAFrgo/+5rxgnL152f//pDEAYAhhBAZGrVfwg==}
1134
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1135
+ peerDependencies:
1136
+ typescript: '>=4.8.4 <6.0.0'
1137
+
1138
+ '@typescript-eslint/type-utils@8.52.0':
1139
+ resolution: {integrity: sha512-JD3wKBRWglYRQkAtsyGz1AewDu3mTc7NtRjR/ceTyGoPqmdS5oCdx/oZMWD5Zuqmo6/MpsYs0wp6axNt88/2EQ==}
1140
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1141
+ peerDependencies:
1142
+ eslint: ^8.57.0 || ^9.0.0
1143
+ typescript: '>=4.8.4 <6.0.0'
1144
+
1145
+ '@typescript-eslint/types@8.52.0':
1146
+ resolution: {integrity: sha512-LWQV1V4q9V4cT4H5JCIx3481iIFxH1UkVk+ZkGGAV1ZGcjGI9IoFOfg3O6ywz8QqCDEp7Inlg6kovMofsNRaGg==}
1147
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1148
+
1149
+ '@typescript-eslint/typescript-estree@8.52.0':
1150
+ resolution: {integrity: sha512-XP3LClsCc0FsTK5/frGjolyADTh3QmsLp6nKd476xNI9CsSsLnmn4f0jrzNoAulmxlmNIpeXuHYeEQv61Q6qeQ==}
1151
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1152
+ peerDependencies:
1153
+ typescript: '>=4.8.4 <6.0.0'
1154
+
1155
+ '@typescript-eslint/utils@8.52.0':
1156
+ resolution: {integrity: sha512-wYndVMWkweqHpEpwPhwqE2lnD2DxC6WVLupU/DOt/0/v+/+iQbbzO3jOHjmBMnhu0DgLULvOaU4h4pwHYi2oRQ==}
1157
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1158
+ peerDependencies:
1159
+ eslint: ^8.57.0 || ^9.0.0
1160
+ typescript: '>=4.8.4 <6.0.0'
1161
+
1162
+ '@typescript-eslint/visitor-keys@8.52.0':
1163
+ resolution: {integrity: sha512-ink3/Zofus34nmBsPjow63FP5M7IGff0RKAgqR6+CFpdk22M7aLwC9gOcLGYqr7MczLPzZVERW9hRog3O4n1sQ==}
1164
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1165
+
1166
+ acorn-jsx@5.3.2:
1167
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
1168
+ peerDependencies:
1169
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1170
+
1171
+ acorn@8.15.0:
1172
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
1173
+ engines: {node: '>=0.4.0'}
1174
+ hasBin: true
1175
+
1176
+ ajv@6.12.6:
1177
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1178
+
1179
+ ansi-regex@6.2.2:
1180
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
1181
+ engines: {node: '>=12'}
1182
+
1183
+ ansi-styles@4.3.0:
1184
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1185
+ engines: {node: '>=8'}
1186
+
1187
+ ansi-styles@5.2.0:
1188
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
1189
+ engines: {node: '>=10'}
1190
+
341
1191
  any-promise@1.3.0:
342
1192
  resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
343
1193
 
@@ -348,6 +1198,12 @@ packages:
348
1198
  arg@5.0.2:
349
1199
  resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
350
1200
 
1201
+ argparse@2.0.1:
1202
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1203
+
1204
+ asynckit@0.4.0:
1205
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
1206
+
351
1207
  autoprefixer@10.4.23:
352
1208
  resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
353
1209
  engines: {node: ^10 || ^12 || >=14}
@@ -355,6 +1211,15 @@ packages:
355
1211
  peerDependencies:
356
1212
  postcss: ^8.1.0
357
1213
 
1214
+ axios@1.13.2:
1215
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
1216
+
1217
+ balanced-match@1.0.2:
1218
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1219
+
1220
+ base64-js@1.5.1:
1221
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
1222
+
358
1223
  baseline-browser-mapping@2.9.11:
359
1224
  resolution: {integrity: sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==}
360
1225
  hasBin: true
@@ -363,6 +1228,15 @@ packages:
363
1228
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
364
1229
  engines: {node: '>=8'}
365
1230
 
1231
+ bowser@2.13.1:
1232
+ resolution: {integrity: sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==}
1233
+
1234
+ brace-expansion@1.1.12:
1235
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
1236
+
1237
+ brace-expansion@2.0.2:
1238
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
1239
+
366
1240
  braces@3.0.3:
367
1241
  resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
368
1242
  engines: {node: '>=8'}
@@ -372,35 +1246,250 @@ packages:
372
1246
  engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
373
1247
  hasBin: true
374
1248
 
1249
+ buffer-from@1.1.2:
1250
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
1251
+
1252
+ buffer@5.6.0:
1253
+ resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
1254
+
1255
+ call-bind-apply-helpers@1.0.2:
1256
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
1257
+ engines: {node: '>= 0.4'}
1258
+
1259
+ callsites@3.1.0:
1260
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1261
+ engines: {node: '>=6'}
1262
+
375
1263
  camelcase-css@2.0.1:
376
1264
  resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
377
1265
  engines: {node: '>= 6'}
378
1266
 
1267
+ camelcase@6.3.0:
1268
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
1269
+ engines: {node: '>=10'}
1270
+
379
1271
  caniuse-lite@1.0.30001762:
380
1272
  resolution: {integrity: sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==}
381
1273
 
1274
+ chalk@4.1.2:
1275
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1276
+ engines: {node: '>=10'}
1277
+
1278
+ chalk@5.6.2:
1279
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
1280
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
1281
+
382
1282
  chokidar@3.6.0:
383
1283
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
384
1284
  engines: {node: '>= 8.10.0'}
385
1285
 
1286
+ cli-cursor@5.0.0:
1287
+ resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
1288
+ engines: {node: '>=18'}
1289
+
1290
+ cli-spinners@3.4.0:
1291
+ resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
1292
+ engines: {node: '>=18.20'}
1293
+
1294
+ color-convert@2.0.1:
1295
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1296
+ engines: {node: '>=7.0.0'}
1297
+
1298
+ color-name@1.1.4:
1299
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1300
+
1301
+ combined-stream@1.0.8:
1302
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
1303
+ engines: {node: '>= 0.8'}
1304
+
1305
+ commander@14.0.2:
1306
+ resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
1307
+ engines: {node: '>=20'}
1308
+
386
1309
  commander@4.1.1:
387
1310
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
388
1311
  engines: {node: '>= 6'}
389
1312
 
1313
+ concat-map@0.0.1:
1314
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1315
+
1316
+ console-table-printer@2.15.0:
1317
+ resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
1318
+
1319
+ coze-coding-dev-sdk@0.7.2:
1320
+ resolution: {integrity: sha512-IAAbI8W6MHL95BV/OmiacM2aMzkruyBwUMsvzJk/9jBT9vra2xiUC5ggS5xFi7V7MrL5VqfLv9ZlWSjcOAVRpw==}
1321
+ engines: {node: '>=18.0.0'}
1322
+ hasBin: true
1323
+
1324
+ cross-spawn@7.0.6:
1325
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
1326
+ engines: {node: '>= 8'}
1327
+
390
1328
  cssesc@3.0.0:
391
1329
  resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
392
1330
  engines: {node: '>=4'}
393
1331
  hasBin: true
394
1332
 
1333
+ debug@4.4.3:
1334
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
1335
+ engines: {node: '>=6.0'}
1336
+ peerDependencies:
1337
+ supports-color: '*'
1338
+ peerDependenciesMeta:
1339
+ supports-color:
1340
+ optional: true
1341
+
1342
+ decamelize@1.2.0:
1343
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
1344
+ engines: {node: '>=0.10.0'}
1345
+
1346
+ deep-is@0.1.4:
1347
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1348
+
1349
+ delayed-stream@1.0.0:
1350
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
1351
+ engines: {node: '>=0.4.0'}
1352
+
395
1353
  didyoumean@1.2.2:
396
1354
  resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
397
1355
 
398
1356
  dlv@1.1.3:
399
1357
  resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
400
1358
 
1359
+ drizzle-kit@0.31.8:
1360
+ resolution: {integrity: sha512-O9EC/miwdnRDY10qRxM8P3Pg8hXe3LyU4ZipReKOgTwn4OqANmftj8XJz1UPUAS6NMHf0E2htjsbQujUTkncCg==}
1361
+ hasBin: true
1362
+
1363
+ drizzle-orm@0.45.1:
1364
+ resolution: {integrity: sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==}
1365
+ peerDependencies:
1366
+ '@aws-sdk/client-rds-data': '>=3'
1367
+ '@cloudflare/workers-types': '>=4'
1368
+ '@electric-sql/pglite': '>=0.2.0'
1369
+ '@libsql/client': '>=0.10.0'
1370
+ '@libsql/client-wasm': '>=0.10.0'
1371
+ '@neondatabase/serverless': '>=0.10.0'
1372
+ '@op-engineering/op-sqlite': '>=2'
1373
+ '@opentelemetry/api': ^1.4.1
1374
+ '@planetscale/database': '>=1.13'
1375
+ '@prisma/client': '*'
1376
+ '@tidbcloud/serverless': '*'
1377
+ '@types/better-sqlite3': '*'
1378
+ '@types/pg': '*'
1379
+ '@types/sql.js': '*'
1380
+ '@upstash/redis': '>=1.34.7'
1381
+ '@vercel/postgres': '>=0.8.0'
1382
+ '@xata.io/client': '*'
1383
+ better-sqlite3: '>=7'
1384
+ bun-types: '*'
1385
+ expo-sqlite: '>=14.0.0'
1386
+ gel: '>=2'
1387
+ knex: '*'
1388
+ kysely: '*'
1389
+ mysql2: '>=2'
1390
+ pg: '>=8'
1391
+ postgres: '>=3'
1392
+ prisma: '*'
1393
+ sql.js: '>=1'
1394
+ sqlite3: '>=5'
1395
+ peerDependenciesMeta:
1396
+ '@aws-sdk/client-rds-data':
1397
+ optional: true
1398
+ '@cloudflare/workers-types':
1399
+ optional: true
1400
+ '@electric-sql/pglite':
1401
+ optional: true
1402
+ '@libsql/client':
1403
+ optional: true
1404
+ '@libsql/client-wasm':
1405
+ optional: true
1406
+ '@neondatabase/serverless':
1407
+ optional: true
1408
+ '@op-engineering/op-sqlite':
1409
+ optional: true
1410
+ '@opentelemetry/api':
1411
+ optional: true
1412
+ '@planetscale/database':
1413
+ optional: true
1414
+ '@prisma/client':
1415
+ optional: true
1416
+ '@tidbcloud/serverless':
1417
+ optional: true
1418
+ '@types/better-sqlite3':
1419
+ optional: true
1420
+ '@types/pg':
1421
+ optional: true
1422
+ '@types/sql.js':
1423
+ optional: true
1424
+ '@upstash/redis':
1425
+ optional: true
1426
+ '@vercel/postgres':
1427
+ optional: true
1428
+ '@xata.io/client':
1429
+ optional: true
1430
+ better-sqlite3:
1431
+ optional: true
1432
+ bun-types:
1433
+ optional: true
1434
+ expo-sqlite:
1435
+ optional: true
1436
+ gel:
1437
+ optional: true
1438
+ knex:
1439
+ optional: true
1440
+ kysely:
1441
+ optional: true
1442
+ mysql2:
1443
+ optional: true
1444
+ pg:
1445
+ optional: true
1446
+ postgres:
1447
+ optional: true
1448
+ prisma:
1449
+ optional: true
1450
+ sql.js:
1451
+ optional: true
1452
+ sqlite3:
1453
+ optional: true
1454
+
1455
+ dunder-proto@1.0.1:
1456
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
1457
+ engines: {node: '>= 0.4'}
1458
+
401
1459
  electron-to-chromium@1.5.267:
402
1460
  resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
403
1461
 
1462
+ es-define-property@1.0.1:
1463
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
1464
+ engines: {node: '>= 0.4'}
1465
+
1466
+ es-errors@1.3.0:
1467
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
1468
+ engines: {node: '>= 0.4'}
1469
+
1470
+ es-object-atoms@1.1.1:
1471
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
1472
+ engines: {node: '>= 0.4'}
1473
+
1474
+ es-set-tostringtag@2.1.0:
1475
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
1476
+ engines: {node: '>= 0.4'}
1477
+
1478
+ esbuild-register@3.6.0:
1479
+ resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
1480
+ peerDependencies:
1481
+ esbuild: '>=0.12 <1'
1482
+
1483
+ esbuild@0.18.20:
1484
+ resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
1485
+ engines: {node: '>=12'}
1486
+ hasBin: true
1487
+
1488
+ esbuild@0.25.12:
1489
+ resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
1490
+ engines: {node: '>=18'}
1491
+ hasBin: true
1492
+
404
1493
  esbuild@0.27.2:
405
1494
  resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
406
1495
  engines: {node: '>=18'}
@@ -410,10 +1499,76 @@ packages:
410
1499
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
411
1500
  engines: {node: '>=6'}
412
1501
 
1502
+ escape-string-regexp@4.0.0:
1503
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1504
+ engines: {node: '>=10'}
1505
+
1506
+ eslint-scope@8.4.0:
1507
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
1508
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1509
+
1510
+ eslint-visitor-keys@3.4.3:
1511
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1512
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1513
+
1514
+ eslint-visitor-keys@4.2.1:
1515
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
1516
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1517
+
1518
+ eslint@9.39.2:
1519
+ resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
1520
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1521
+ hasBin: true
1522
+ peerDependencies:
1523
+ jiti: '*'
1524
+ peerDependenciesMeta:
1525
+ jiti:
1526
+ optional: true
1527
+
1528
+ espree@10.4.0:
1529
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
1530
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1531
+
1532
+ esquery@1.7.0:
1533
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
1534
+ engines: {node: '>=0.10'}
1535
+
1536
+ esrecurse@4.3.0:
1537
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1538
+ engines: {node: '>=4.0'}
1539
+
1540
+ estraverse@5.3.0:
1541
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1542
+ engines: {node: '>=4.0'}
1543
+
1544
+ esutils@2.0.3:
1545
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1546
+ engines: {node: '>=0.10.0'}
1547
+
1548
+ eventemitter3@4.0.7:
1549
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
1550
+
1551
+ events@3.3.0:
1552
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
1553
+ engines: {node: '>=0.8.x'}
1554
+
1555
+ fast-deep-equal@3.1.3:
1556
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1557
+
413
1558
  fast-glob@3.3.3:
414
1559
  resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
415
1560
  engines: {node: '>=8.6.0'}
416
1561
 
1562
+ fast-json-stable-stringify@2.1.0:
1563
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1564
+
1565
+ fast-levenshtein@2.0.6:
1566
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1567
+
1568
+ fast-xml-parser@5.2.5:
1569
+ resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
1570
+ hasBin: true
1571
+
417
1572
  fastq@1.20.1:
418
1573
  resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
419
1574
 
@@ -426,10 +1581,38 @@ packages:
426
1581
  picomatch:
427
1582
  optional: true
428
1583
 
1584
+ file-entry-cache@8.0.0:
1585
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1586
+ engines: {node: '>=16.0.0'}
1587
+
429
1588
  fill-range@7.1.1:
430
1589
  resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
431
1590
  engines: {node: '>=8'}
432
1591
 
1592
+ find-up@5.0.0:
1593
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1594
+ engines: {node: '>=10'}
1595
+
1596
+ flat-cache@4.0.1:
1597
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1598
+ engines: {node: '>=16'}
1599
+
1600
+ flatted@3.3.3:
1601
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
1602
+
1603
+ follow-redirects@1.15.11:
1604
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
1605
+ engines: {node: '>=4.0'}
1606
+ peerDependencies:
1607
+ debug: '*'
1608
+ peerDependenciesMeta:
1609
+ debug:
1610
+ optional: true
1611
+
1612
+ form-data@4.0.5:
1613
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
1614
+ engines: {node: '>= 6'}
1615
+
433
1616
  fraction.js@5.3.4:
434
1617
  resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
435
1618
 
@@ -441,6 +1624,21 @@ packages:
441
1624
  function-bind@1.1.2:
442
1625
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
443
1626
 
1627
+ get-east-asian-width@1.4.0:
1628
+ resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
1629
+ engines: {node: '>=18'}
1630
+
1631
+ get-intrinsic@1.3.0:
1632
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
1633
+ engines: {node: '>= 0.4'}
1634
+
1635
+ get-proto@1.0.1:
1636
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
1637
+ engines: {node: '>= 0.4'}
1638
+
1639
+ get-tsconfig@4.13.0:
1640
+ resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
1641
+
444
1642
  glob-parent@5.1.2:
445
1643
  resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
446
1644
  engines: {node: '>= 6'}
@@ -449,10 +1647,52 @@ packages:
449
1647
  resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
450
1648
  engines: {node: '>=10.13.0'}
451
1649
 
1650
+ globals@14.0.0:
1651
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1652
+ engines: {node: '>=18'}
1653
+
1654
+ gopd@1.2.0:
1655
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
1656
+ engines: {node: '>= 0.4'}
1657
+
1658
+ has-flag@4.0.0:
1659
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1660
+ engines: {node: '>=8'}
1661
+
1662
+ has-symbols@1.1.0:
1663
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
1664
+ engines: {node: '>= 0.4'}
1665
+
1666
+ has-tostringtag@1.0.2:
1667
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1668
+ engines: {node: '>= 0.4'}
1669
+
452
1670
  hasown@2.0.2:
453
1671
  resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
454
1672
  engines: {node: '>= 0.4'}
455
1673
 
1674
+ ieee754@1.2.1:
1675
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
1676
+
1677
+ ignore@5.3.2:
1678
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1679
+ engines: {node: '>= 4'}
1680
+
1681
+ ignore@7.0.5:
1682
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
1683
+ engines: {node: '>= 4'}
1684
+
1685
+ import-fresh@3.3.1:
1686
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
1687
+ engines: {node: '>=6'}
1688
+
1689
+ imurmurhash@0.1.4:
1690
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1691
+ engines: {node: '>=0.8.19'}
1692
+
1693
+ inherits@2.0.4:
1694
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1695
+
456
1696
  is-binary-path@2.1.0:
457
1697
  resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
458
1698
  engines: {node: '>=8'}
@@ -469,29 +1709,121 @@ packages:
469
1709
  resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
470
1710
  engines: {node: '>=0.10.0'}
471
1711
 
1712
+ is-interactive@2.0.0:
1713
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
1714
+ engines: {node: '>=12'}
1715
+
472
1716
  is-number@7.0.0:
473
1717
  resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
474
1718
  engines: {node: '>=0.12.0'}
475
1719
 
1720
+ is-unicode-supported@2.1.0:
1721
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
1722
+ engines: {node: '>=18'}
1723
+
1724
+ isexe@2.0.0:
1725
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1726
+
476
1727
  jiti@1.21.7:
477
1728
  resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
478
1729
  hasBin: true
479
1730
 
480
- lilconfig@3.1.3:
481
- resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
482
- engines: {node: '>=14'}
1731
+ js-tiktoken@1.0.21:
1732
+ resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
483
1733
 
484
- lines-and-columns@1.2.4:
485
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1734
+ js-yaml@4.1.1:
1735
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
1736
+ hasBin: true
486
1737
 
487
- merge2@1.4.1:
488
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
489
- engines: {node: '>= 8'}
1738
+ json-buffer@3.0.1:
1739
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
490
1740
 
491
- micromatch@4.0.8:
1741
+ json-schema-traverse@0.4.1:
1742
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1743
+
1744
+ json-stable-stringify-without-jsonify@1.0.1:
1745
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1746
+
1747
+ keyv@4.5.4:
1748
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1749
+
1750
+ langsmith@0.4.7:
1751
+ resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
1752
+ peerDependencies:
1753
+ '@opentelemetry/api': '*'
1754
+ '@opentelemetry/exporter-trace-otlp-proto': '*'
1755
+ '@opentelemetry/sdk-trace-base': '*'
1756
+ openai: '*'
1757
+ peerDependenciesMeta:
1758
+ '@opentelemetry/api':
1759
+ optional: true
1760
+ '@opentelemetry/exporter-trace-otlp-proto':
1761
+ optional: true
1762
+ '@opentelemetry/sdk-trace-base':
1763
+ optional: true
1764
+ openai:
1765
+ optional: true
1766
+
1767
+ levn@0.4.1:
1768
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1769
+ engines: {node: '>= 0.8.0'}
1770
+
1771
+ lilconfig@3.1.3:
1772
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
1773
+ engines: {node: '>=14'}
1774
+
1775
+ lines-and-columns@1.2.4:
1776
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1777
+
1778
+ locate-path@6.0.0:
1779
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1780
+ engines: {node: '>=10'}
1781
+
1782
+ lodash.merge@4.6.2:
1783
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1784
+
1785
+ log-symbols@7.0.1:
1786
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
1787
+ engines: {node: '>=18'}
1788
+
1789
+ math-intrinsics@1.1.0:
1790
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1791
+ engines: {node: '>= 0.4'}
1792
+
1793
+ merge2@1.4.1:
1794
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1795
+ engines: {node: '>= 8'}
1796
+
1797
+ micromatch@4.0.8:
492
1798
  resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
493
1799
  engines: {node: '>=8.6'}
494
1800
 
1801
+ mime-db@1.52.0:
1802
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
1803
+ engines: {node: '>= 0.6'}
1804
+
1805
+ mime-types@2.1.35:
1806
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1807
+ engines: {node: '>= 0.6'}
1808
+
1809
+ mimic-function@5.0.1:
1810
+ resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
1811
+ engines: {node: '>=18'}
1812
+
1813
+ minimatch@3.1.2:
1814
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1815
+
1816
+ minimatch@9.0.5:
1817
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1818
+ engines: {node: '>=16 || 14 >=14.17'}
1819
+
1820
+ ms@2.1.3:
1821
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1822
+
1823
+ mustache@4.2.0:
1824
+ resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
1825
+ hasBin: true
1826
+
495
1827
  mz@2.7.0:
496
1828
  resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
497
1829
 
@@ -500,6 +1832,9 @@ packages:
500
1832
  engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
501
1833
  hasBin: true
502
1834
 
1835
+ natural-compare@1.4.0:
1836
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1837
+
503
1838
  node-releases@2.0.27:
504
1839
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
505
1840
 
@@ -515,13 +1850,103 @@ packages:
515
1850
  resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
516
1851
  engines: {node: '>= 6'}
517
1852
 
1853
+ onetime@7.0.0:
1854
+ resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
1855
+ engines: {node: '>=18'}
1856
+
518
1857
  only-allow@1.2.2:
519
1858
  resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
520
1859
  hasBin: true
521
1860
 
1861
+ openai@6.16.0:
1862
+ resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
1863
+ hasBin: true
1864
+ peerDependencies:
1865
+ ws: ^8.18.0
1866
+ zod: ^3.25 || ^4.0
1867
+ peerDependenciesMeta:
1868
+ ws:
1869
+ optional: true
1870
+ zod:
1871
+ optional: true
1872
+
1873
+ optionator@0.9.4:
1874
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1875
+ engines: {node: '>= 0.8.0'}
1876
+
1877
+ ora@9.0.0:
1878
+ resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==}
1879
+ engines: {node: '>=20'}
1880
+
1881
+ p-finally@1.0.0:
1882
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
1883
+ engines: {node: '>=4'}
1884
+
1885
+ p-limit@3.1.0:
1886
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1887
+ engines: {node: '>=10'}
1888
+
1889
+ p-locate@5.0.0:
1890
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1891
+ engines: {node: '>=10'}
1892
+
1893
+ p-queue@6.6.2:
1894
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
1895
+ engines: {node: '>=8'}
1896
+
1897
+ p-timeout@3.2.0:
1898
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
1899
+ engines: {node: '>=8'}
1900
+
1901
+ parent-module@1.0.1:
1902
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1903
+ engines: {node: '>=6'}
1904
+
1905
+ path-exists@4.0.0:
1906
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1907
+ engines: {node: '>=8'}
1908
+
1909
+ path-key@3.1.1:
1910
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1911
+ engines: {node: '>=8'}
1912
+
522
1913
  path-parse@1.0.7:
523
1914
  resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
524
1915
 
1916
+ pg-cloudflare@1.3.0:
1917
+ resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
1918
+
1919
+ pg-connection-string@2.10.0:
1920
+ resolution: {integrity: sha512-ur/eoPKzDx2IjPaYyXS6Y8NSblxM7X64deV2ObV57vhjsWiwLvUD6meukAzogiOsu60GO8m/3Cb6FdJsWNjwXg==}
1921
+
1922
+ pg-int8@1.0.1:
1923
+ resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
1924
+ engines: {node: '>=4.0.0'}
1925
+
1926
+ pg-pool@3.11.0:
1927
+ resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
1928
+ peerDependencies:
1929
+ pg: '>=8.0'
1930
+
1931
+ pg-protocol@1.11.0:
1932
+ resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
1933
+
1934
+ pg-types@2.2.0:
1935
+ resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
1936
+ engines: {node: '>=4'}
1937
+
1938
+ pg@8.17.1:
1939
+ resolution: {integrity: sha512-EIR+jXdYNSMOrpRp7g6WgQr7SaZNZfS7IzZIO0oTNEeibq956JxeD15t3Jk3zZH0KH8DmOIx38qJfQenoE8bXQ==}
1940
+ engines: {node: '>= 16.0.0'}
1941
+ peerDependencies:
1942
+ pg-native: '>=3.0.1'
1943
+ peerDependenciesMeta:
1944
+ pg-native:
1945
+ optional: true
1946
+
1947
+ pgpass@1.0.5:
1948
+ resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
1949
+
525
1950
  picocolors@1.1.1:
526
1951
  resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
527
1952
 
@@ -588,21 +2013,63 @@ packages:
588
2013
  resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
589
2014
  engines: {node: ^10 || ^12 || >=14}
590
2015
 
2016
+ postgres-array@2.0.0:
2017
+ resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
2018
+ engines: {node: '>=4'}
2019
+
2020
+ postgres-bytea@1.0.1:
2021
+ resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
2022
+ engines: {node: '>=0.10.0'}
2023
+
2024
+ postgres-date@1.0.7:
2025
+ resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
2026
+ engines: {node: '>=0.10.0'}
2027
+
2028
+ postgres-interval@1.2.0:
2029
+ resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
2030
+ engines: {node: '>=0.10.0'}
2031
+
2032
+ prelude-ls@1.2.1:
2033
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2034
+ engines: {node: '>= 0.8.0'}
2035
+
2036
+ proxy-from-env@1.1.0:
2037
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
2038
+
2039
+ punycode@2.3.1:
2040
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
2041
+ engines: {node: '>=6'}
2042
+
591
2043
  queue-microtask@1.2.3:
592
2044
  resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
593
2045
 
594
2046
  read-cache@1.0.0:
595
2047
  resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
596
2048
 
2049
+ readable-stream@3.6.2:
2050
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
2051
+ engines: {node: '>= 6'}
2052
+
597
2053
  readdirp@3.6.0:
598
2054
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
599
2055
  engines: {node: '>=8.10.0'}
600
2056
 
2057
+ resolve-from@4.0.0:
2058
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2059
+ engines: {node: '>=4'}
2060
+
2061
+ resolve-pkg-maps@1.0.0:
2062
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
2063
+
601
2064
  resolve@1.22.11:
602
2065
  resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
603
2066
  engines: {node: '>= 0.4'}
604
2067
  hasBin: true
605
2068
 
2069
+ restore-cursor@5.1.0:
2070
+ resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
2071
+ engines: {node: '>=18'}
2072
+
606
2073
  reusify@1.1.0:
607
2074
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
608
2075
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -615,15 +2082,78 @@ packages:
615
2082
  run-parallel@1.2.0:
616
2083
  resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
617
2084
 
2085
+ safe-buffer@5.2.1:
2086
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
2087
+
2088
+ semver@7.7.3:
2089
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
2090
+ engines: {node: '>=10'}
2091
+ hasBin: true
2092
+
2093
+ shebang-command@2.0.0:
2094
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2095
+ engines: {node: '>=8'}
2096
+
2097
+ shebang-regex@3.0.0:
2098
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2099
+ engines: {node: '>=8'}
2100
+
2101
+ signal-exit@4.1.0:
2102
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
2103
+ engines: {node: '>=14'}
2104
+
2105
+ simple-wcswidth@1.1.2:
2106
+ resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
2107
+
618
2108
  source-map-js@1.2.1:
619
2109
  resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
620
2110
  engines: {node: '>=0.10.0'}
621
2111
 
2112
+ source-map-support@0.5.21:
2113
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
2114
+
2115
+ source-map@0.6.1:
2116
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
2117
+ engines: {node: '>=0.10.0'}
2118
+
2119
+ split2@4.2.0:
2120
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
2121
+ engines: {node: '>= 10.x'}
2122
+
2123
+ stdin-discarder@0.2.2:
2124
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
2125
+ engines: {node: '>=18'}
2126
+
2127
+ stream-browserify@3.0.0:
2128
+ resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
2129
+
2130
+ string-width@8.1.0:
2131
+ resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
2132
+ engines: {node: '>=20'}
2133
+
2134
+ string_decoder@1.3.0:
2135
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
2136
+
2137
+ strip-ansi@7.1.2:
2138
+ resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
2139
+ engines: {node: '>=12'}
2140
+
2141
+ strip-json-comments@3.1.1:
2142
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2143
+ engines: {node: '>=8'}
2144
+
2145
+ strnum@2.1.2:
2146
+ resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==}
2147
+
622
2148
  sucrase@3.35.1:
623
2149
  resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
624
2150
  engines: {node: '>=16 || 14 >=14.17'}
625
2151
  hasBin: true
626
2152
 
2153
+ supports-color@7.2.0:
2154
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2155
+ engines: {node: '>=8'}
2156
+
627
2157
  supports-preserve-symlinks-flag@1.0.0:
628
2158
  resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
629
2159
  engines: {node: '>= 0.4'}
@@ -648,9 +2178,34 @@ packages:
648
2178
  resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
649
2179
  engines: {node: '>=8.0'}
650
2180
 
2181
+ transliteration@2.6.0:
2182
+ resolution: {integrity: sha512-T6frfMj7N5xNK0l+duIzIWKxkc9ewG72uv7NeOs4dIoysqTnYpwxeVEE5qYdKKmy7hby55ah0wNUoMaLsB2Zjw==}
2183
+ engines: {node: '>=20.0.0'}
2184
+ hasBin: true
2185
+
2186
+ ts-api-utils@2.4.0:
2187
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
2188
+ engines: {node: '>=18.12'}
2189
+ peerDependencies:
2190
+ typescript: '>=4.8.4'
2191
+
651
2192
  ts-interface-checker@0.1.13:
652
2193
  resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
653
2194
 
2195
+ tslib@2.8.1:
2196
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
2197
+
2198
+ type-check@0.4.0:
2199
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2200
+ engines: {node: '>= 0.8.0'}
2201
+
2202
+ typescript-eslint@8.52.0:
2203
+ resolution: {integrity: sha512-atlQQJ2YkO4pfTVQmQ+wvYQwexPDOIgo+RaVcD7gHgzy/IQA+XTyuxNM9M9TVXvttkF7koBHmcwisKdOAf2EcA==}
2204
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2205
+ peerDependencies:
2206
+ eslint: ^8.57.0 || ^9.0.0
2207
+ typescript: '>=4.8.4 <6.0.0'
2208
+
654
2209
  typescript@5.9.3:
655
2210
  resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
656
2211
  engines: {node: '>=14.17'}
@@ -662,9 +2217,16 @@ packages:
662
2217
  peerDependencies:
663
2218
  browserslist: '>= 4.21.0'
664
2219
 
2220
+ uri-js@4.4.1:
2221
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2222
+
665
2223
  util-deprecate@1.0.2:
666
2224
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
667
2225
 
2226
+ uuid@10.0.0:
2227
+ resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
2228
+ hasBin: true
2229
+
668
2230
  vite@7.3.0:
669
2231
  resolution: {integrity: sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==}
670
2232
  engines: {node: ^20.19.0 || >=22.12.0}
@@ -709,88 +2271,823 @@ packages:
709
2271
  resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
710
2272
  engines: {node: '>=4'}
711
2273
 
2274
+ which@2.0.2:
2275
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2276
+ engines: {node: '>= 8'}
2277
+ hasBin: true
2278
+
2279
+ word-wrap@1.2.5:
2280
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
2281
+ engines: {node: '>=0.10.0'}
2282
+
2283
+ xtend@4.0.2:
2284
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
2285
+ engines: {node: '>=0.4'}
2286
+
2287
+ yocto-queue@0.1.0:
2288
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2289
+ engines: {node: '>=10'}
2290
+
2291
+ yoctocolors@2.1.2:
2292
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
2293
+ engines: {node: '>=18'}
2294
+
2295
+ zod@4.3.5:
2296
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
2297
+
712
2298
  snapshots:
713
2299
 
714
2300
  '@alloc/quick-lru@5.2.0': {}
715
2301
 
2302
+ '@aws-crypto/crc32@5.2.0':
2303
+ dependencies:
2304
+ '@aws-crypto/util': 5.2.0
2305
+ '@aws-sdk/types': 3.969.0
2306
+ tslib: 2.8.1
2307
+
2308
+ '@aws-crypto/crc32c@5.2.0':
2309
+ dependencies:
2310
+ '@aws-crypto/util': 5.2.0
2311
+ '@aws-sdk/types': 3.969.0
2312
+ tslib: 2.8.1
2313
+
2314
+ '@aws-crypto/sha1-browser@5.2.0':
2315
+ dependencies:
2316
+ '@aws-crypto/supports-web-crypto': 5.2.0
2317
+ '@aws-crypto/util': 5.2.0
2318
+ '@aws-sdk/types': 3.969.0
2319
+ '@aws-sdk/util-locate-window': 3.965.2
2320
+ '@smithy/util-utf8': 2.3.0
2321
+ tslib: 2.8.1
2322
+
2323
+ '@aws-crypto/sha256-browser@5.2.0':
2324
+ dependencies:
2325
+ '@aws-crypto/sha256-js': 5.2.0
2326
+ '@aws-crypto/supports-web-crypto': 5.2.0
2327
+ '@aws-crypto/util': 5.2.0
2328
+ '@aws-sdk/types': 3.969.0
2329
+ '@aws-sdk/util-locate-window': 3.965.2
2330
+ '@smithy/util-utf8': 2.3.0
2331
+ tslib: 2.8.1
2332
+
2333
+ '@aws-crypto/sha256-js@5.2.0':
2334
+ dependencies:
2335
+ '@aws-crypto/util': 5.2.0
2336
+ '@aws-sdk/types': 3.969.0
2337
+ tslib: 2.8.1
2338
+
2339
+ '@aws-crypto/supports-web-crypto@5.2.0':
2340
+ dependencies:
2341
+ tslib: 2.8.1
2342
+
2343
+ '@aws-crypto/util@5.2.0':
2344
+ dependencies:
2345
+ '@aws-sdk/types': 3.969.0
2346
+ '@smithy/util-utf8': 2.3.0
2347
+ tslib: 2.8.1
2348
+
2349
+ '@aws-sdk/client-s3@3.969.0':
2350
+ dependencies:
2351
+ '@aws-crypto/sha1-browser': 5.2.0
2352
+ '@aws-crypto/sha256-browser': 5.2.0
2353
+ '@aws-crypto/sha256-js': 5.2.0
2354
+ '@aws-sdk/core': 3.969.0
2355
+ '@aws-sdk/credential-provider-node': 3.969.0
2356
+ '@aws-sdk/middleware-bucket-endpoint': 3.969.0
2357
+ '@aws-sdk/middleware-expect-continue': 3.969.0
2358
+ '@aws-sdk/middleware-flexible-checksums': 3.969.0
2359
+ '@aws-sdk/middleware-host-header': 3.969.0
2360
+ '@aws-sdk/middleware-location-constraint': 3.969.0
2361
+ '@aws-sdk/middleware-logger': 3.969.0
2362
+ '@aws-sdk/middleware-recursion-detection': 3.969.0
2363
+ '@aws-sdk/middleware-sdk-s3': 3.969.0
2364
+ '@aws-sdk/middleware-ssec': 3.969.0
2365
+ '@aws-sdk/middleware-user-agent': 3.969.0
2366
+ '@aws-sdk/region-config-resolver': 3.969.0
2367
+ '@aws-sdk/signature-v4-multi-region': 3.969.0
2368
+ '@aws-sdk/types': 3.969.0
2369
+ '@aws-sdk/util-endpoints': 3.969.0
2370
+ '@aws-sdk/util-user-agent-browser': 3.969.0
2371
+ '@aws-sdk/util-user-agent-node': 3.969.0
2372
+ '@smithy/config-resolver': 4.4.6
2373
+ '@smithy/core': 3.20.5
2374
+ '@smithy/eventstream-serde-browser': 4.2.8
2375
+ '@smithy/eventstream-serde-config-resolver': 4.3.8
2376
+ '@smithy/eventstream-serde-node': 4.2.8
2377
+ '@smithy/fetch-http-handler': 5.3.9
2378
+ '@smithy/hash-blob-browser': 4.2.9
2379
+ '@smithy/hash-node': 4.2.8
2380
+ '@smithy/hash-stream-node': 4.2.8
2381
+ '@smithy/invalid-dependency': 4.2.8
2382
+ '@smithy/md5-js': 4.2.8
2383
+ '@smithy/middleware-content-length': 4.2.8
2384
+ '@smithy/middleware-endpoint': 4.4.6
2385
+ '@smithy/middleware-retry': 4.4.22
2386
+ '@smithy/middleware-serde': 4.2.9
2387
+ '@smithy/middleware-stack': 4.2.8
2388
+ '@smithy/node-config-provider': 4.3.8
2389
+ '@smithy/node-http-handler': 4.4.8
2390
+ '@smithy/protocol-http': 5.3.8
2391
+ '@smithy/smithy-client': 4.10.7
2392
+ '@smithy/types': 4.12.0
2393
+ '@smithy/url-parser': 4.2.8
2394
+ '@smithy/util-base64': 4.3.0
2395
+ '@smithy/util-body-length-browser': 4.2.0
2396
+ '@smithy/util-body-length-node': 4.2.1
2397
+ '@smithy/util-defaults-mode-browser': 4.3.21
2398
+ '@smithy/util-defaults-mode-node': 4.2.24
2399
+ '@smithy/util-endpoints': 3.2.8
2400
+ '@smithy/util-middleware': 4.2.8
2401
+ '@smithy/util-retry': 4.2.8
2402
+ '@smithy/util-stream': 4.5.10
2403
+ '@smithy/util-utf8': 4.2.0
2404
+ '@smithy/util-waiter': 4.2.8
2405
+ tslib: 2.8.1
2406
+ transitivePeerDependencies:
2407
+ - aws-crt
2408
+
2409
+ '@aws-sdk/client-sso@3.969.0':
2410
+ dependencies:
2411
+ '@aws-crypto/sha256-browser': 5.2.0
2412
+ '@aws-crypto/sha256-js': 5.2.0
2413
+ '@aws-sdk/core': 3.969.0
2414
+ '@aws-sdk/middleware-host-header': 3.969.0
2415
+ '@aws-sdk/middleware-logger': 3.969.0
2416
+ '@aws-sdk/middleware-recursion-detection': 3.969.0
2417
+ '@aws-sdk/middleware-user-agent': 3.969.0
2418
+ '@aws-sdk/region-config-resolver': 3.969.0
2419
+ '@aws-sdk/types': 3.969.0
2420
+ '@aws-sdk/util-endpoints': 3.969.0
2421
+ '@aws-sdk/util-user-agent-browser': 3.969.0
2422
+ '@aws-sdk/util-user-agent-node': 3.969.0
2423
+ '@smithy/config-resolver': 4.4.6
2424
+ '@smithy/core': 3.20.5
2425
+ '@smithy/fetch-http-handler': 5.3.9
2426
+ '@smithy/hash-node': 4.2.8
2427
+ '@smithy/invalid-dependency': 4.2.8
2428
+ '@smithy/middleware-content-length': 4.2.8
2429
+ '@smithy/middleware-endpoint': 4.4.6
2430
+ '@smithy/middleware-retry': 4.4.22
2431
+ '@smithy/middleware-serde': 4.2.9
2432
+ '@smithy/middleware-stack': 4.2.8
2433
+ '@smithy/node-config-provider': 4.3.8
2434
+ '@smithy/node-http-handler': 4.4.8
2435
+ '@smithy/protocol-http': 5.3.8
2436
+ '@smithy/smithy-client': 4.10.7
2437
+ '@smithy/types': 4.12.0
2438
+ '@smithy/url-parser': 4.2.8
2439
+ '@smithy/util-base64': 4.3.0
2440
+ '@smithy/util-body-length-browser': 4.2.0
2441
+ '@smithy/util-body-length-node': 4.2.1
2442
+ '@smithy/util-defaults-mode-browser': 4.3.21
2443
+ '@smithy/util-defaults-mode-node': 4.2.24
2444
+ '@smithy/util-endpoints': 3.2.8
2445
+ '@smithy/util-middleware': 4.2.8
2446
+ '@smithy/util-retry': 4.2.8
2447
+ '@smithy/util-utf8': 4.2.0
2448
+ tslib: 2.8.1
2449
+ transitivePeerDependencies:
2450
+ - aws-crt
2451
+
2452
+ '@aws-sdk/core@3.969.0':
2453
+ dependencies:
2454
+ '@aws-sdk/types': 3.969.0
2455
+ '@aws-sdk/xml-builder': 3.969.0
2456
+ '@smithy/core': 3.20.5
2457
+ '@smithy/node-config-provider': 4.3.8
2458
+ '@smithy/property-provider': 4.2.8
2459
+ '@smithy/protocol-http': 5.3.8
2460
+ '@smithy/signature-v4': 5.3.8
2461
+ '@smithy/smithy-client': 4.10.7
2462
+ '@smithy/types': 4.12.0
2463
+ '@smithy/util-base64': 4.3.0
2464
+ '@smithy/util-middleware': 4.2.8
2465
+ '@smithy/util-utf8': 4.2.0
2466
+ tslib: 2.8.1
2467
+
2468
+ '@aws-sdk/crc64-nvme@3.969.0':
2469
+ dependencies:
2470
+ '@smithy/types': 4.12.0
2471
+ tslib: 2.8.1
2472
+
2473
+ '@aws-sdk/credential-provider-env@3.969.0':
2474
+ dependencies:
2475
+ '@aws-sdk/core': 3.969.0
2476
+ '@aws-sdk/types': 3.969.0
2477
+ '@smithy/property-provider': 4.2.8
2478
+ '@smithy/types': 4.12.0
2479
+ tslib: 2.8.1
2480
+
2481
+ '@aws-sdk/credential-provider-http@3.969.0':
2482
+ dependencies:
2483
+ '@aws-sdk/core': 3.969.0
2484
+ '@aws-sdk/types': 3.969.0
2485
+ '@smithy/fetch-http-handler': 5.3.9
2486
+ '@smithy/node-http-handler': 4.4.8
2487
+ '@smithy/property-provider': 4.2.8
2488
+ '@smithy/protocol-http': 5.3.8
2489
+ '@smithy/smithy-client': 4.10.7
2490
+ '@smithy/types': 4.12.0
2491
+ '@smithy/util-stream': 4.5.10
2492
+ tslib: 2.8.1
2493
+
2494
+ '@aws-sdk/credential-provider-ini@3.969.0':
2495
+ dependencies:
2496
+ '@aws-sdk/core': 3.969.0
2497
+ '@aws-sdk/credential-provider-env': 3.969.0
2498
+ '@aws-sdk/credential-provider-http': 3.969.0
2499
+ '@aws-sdk/credential-provider-login': 3.969.0
2500
+ '@aws-sdk/credential-provider-process': 3.969.0
2501
+ '@aws-sdk/credential-provider-sso': 3.969.0
2502
+ '@aws-sdk/credential-provider-web-identity': 3.969.0
2503
+ '@aws-sdk/nested-clients': 3.969.0
2504
+ '@aws-sdk/types': 3.969.0
2505
+ '@smithy/credential-provider-imds': 4.2.8
2506
+ '@smithy/property-provider': 4.2.8
2507
+ '@smithy/shared-ini-file-loader': 4.4.3
2508
+ '@smithy/types': 4.12.0
2509
+ tslib: 2.8.1
2510
+ transitivePeerDependencies:
2511
+ - aws-crt
2512
+
2513
+ '@aws-sdk/credential-provider-login@3.969.0':
2514
+ dependencies:
2515
+ '@aws-sdk/core': 3.969.0
2516
+ '@aws-sdk/nested-clients': 3.969.0
2517
+ '@aws-sdk/types': 3.969.0
2518
+ '@smithy/property-provider': 4.2.8
2519
+ '@smithy/protocol-http': 5.3.8
2520
+ '@smithy/shared-ini-file-loader': 4.4.3
2521
+ '@smithy/types': 4.12.0
2522
+ tslib: 2.8.1
2523
+ transitivePeerDependencies:
2524
+ - aws-crt
2525
+
2526
+ '@aws-sdk/credential-provider-node@3.969.0':
2527
+ dependencies:
2528
+ '@aws-sdk/credential-provider-env': 3.969.0
2529
+ '@aws-sdk/credential-provider-http': 3.969.0
2530
+ '@aws-sdk/credential-provider-ini': 3.969.0
2531
+ '@aws-sdk/credential-provider-process': 3.969.0
2532
+ '@aws-sdk/credential-provider-sso': 3.969.0
2533
+ '@aws-sdk/credential-provider-web-identity': 3.969.0
2534
+ '@aws-sdk/types': 3.969.0
2535
+ '@smithy/credential-provider-imds': 4.2.8
2536
+ '@smithy/property-provider': 4.2.8
2537
+ '@smithy/shared-ini-file-loader': 4.4.3
2538
+ '@smithy/types': 4.12.0
2539
+ tslib: 2.8.1
2540
+ transitivePeerDependencies:
2541
+ - aws-crt
2542
+
2543
+ '@aws-sdk/credential-provider-process@3.969.0':
2544
+ dependencies:
2545
+ '@aws-sdk/core': 3.969.0
2546
+ '@aws-sdk/types': 3.969.0
2547
+ '@smithy/property-provider': 4.2.8
2548
+ '@smithy/shared-ini-file-loader': 4.4.3
2549
+ '@smithy/types': 4.12.0
2550
+ tslib: 2.8.1
2551
+
2552
+ '@aws-sdk/credential-provider-sso@3.969.0':
2553
+ dependencies:
2554
+ '@aws-sdk/client-sso': 3.969.0
2555
+ '@aws-sdk/core': 3.969.0
2556
+ '@aws-sdk/token-providers': 3.969.0
2557
+ '@aws-sdk/types': 3.969.0
2558
+ '@smithy/property-provider': 4.2.8
2559
+ '@smithy/shared-ini-file-loader': 4.4.3
2560
+ '@smithy/types': 4.12.0
2561
+ tslib: 2.8.1
2562
+ transitivePeerDependencies:
2563
+ - aws-crt
2564
+
2565
+ '@aws-sdk/credential-provider-web-identity@3.969.0':
2566
+ dependencies:
2567
+ '@aws-sdk/core': 3.969.0
2568
+ '@aws-sdk/nested-clients': 3.969.0
2569
+ '@aws-sdk/types': 3.969.0
2570
+ '@smithy/property-provider': 4.2.8
2571
+ '@smithy/shared-ini-file-loader': 4.4.3
2572
+ '@smithy/types': 4.12.0
2573
+ tslib: 2.8.1
2574
+ transitivePeerDependencies:
2575
+ - aws-crt
2576
+
2577
+ '@aws-sdk/lib-storage@3.969.0(@aws-sdk/client-s3@3.969.0)':
2578
+ dependencies:
2579
+ '@aws-sdk/client-s3': 3.969.0
2580
+ '@smithy/abort-controller': 4.2.8
2581
+ '@smithy/middleware-endpoint': 4.4.6
2582
+ '@smithy/smithy-client': 4.10.7
2583
+ buffer: 5.6.0
2584
+ events: 3.3.0
2585
+ stream-browserify: 3.0.0
2586
+ tslib: 2.8.1
2587
+
2588
+ '@aws-sdk/middleware-bucket-endpoint@3.969.0':
2589
+ dependencies:
2590
+ '@aws-sdk/types': 3.969.0
2591
+ '@aws-sdk/util-arn-parser': 3.968.0
2592
+ '@smithy/node-config-provider': 4.3.8
2593
+ '@smithy/protocol-http': 5.3.8
2594
+ '@smithy/types': 4.12.0
2595
+ '@smithy/util-config-provider': 4.2.0
2596
+ tslib: 2.8.1
2597
+
2598
+ '@aws-sdk/middleware-expect-continue@3.969.0':
2599
+ dependencies:
2600
+ '@aws-sdk/types': 3.969.0
2601
+ '@smithy/protocol-http': 5.3.8
2602
+ '@smithy/types': 4.12.0
2603
+ tslib: 2.8.1
2604
+
2605
+ '@aws-sdk/middleware-flexible-checksums@3.969.0':
2606
+ dependencies:
2607
+ '@aws-crypto/crc32': 5.2.0
2608
+ '@aws-crypto/crc32c': 5.2.0
2609
+ '@aws-crypto/util': 5.2.0
2610
+ '@aws-sdk/core': 3.969.0
2611
+ '@aws-sdk/crc64-nvme': 3.969.0
2612
+ '@aws-sdk/types': 3.969.0
2613
+ '@smithy/is-array-buffer': 4.2.0
2614
+ '@smithy/node-config-provider': 4.3.8
2615
+ '@smithy/protocol-http': 5.3.8
2616
+ '@smithy/types': 4.12.0
2617
+ '@smithy/util-middleware': 4.2.8
2618
+ '@smithy/util-stream': 4.5.10
2619
+ '@smithy/util-utf8': 4.2.0
2620
+ tslib: 2.8.1
2621
+
2622
+ '@aws-sdk/middleware-host-header@3.969.0':
2623
+ dependencies:
2624
+ '@aws-sdk/types': 3.969.0
2625
+ '@smithy/protocol-http': 5.3.8
2626
+ '@smithy/types': 4.12.0
2627
+ tslib: 2.8.1
2628
+
2629
+ '@aws-sdk/middleware-location-constraint@3.969.0':
2630
+ dependencies:
2631
+ '@aws-sdk/types': 3.969.0
2632
+ '@smithy/types': 4.12.0
2633
+ tslib: 2.8.1
2634
+
2635
+ '@aws-sdk/middleware-logger@3.969.0':
2636
+ dependencies:
2637
+ '@aws-sdk/types': 3.969.0
2638
+ '@smithy/types': 4.12.0
2639
+ tslib: 2.8.1
2640
+
2641
+ '@aws-sdk/middleware-recursion-detection@3.969.0':
2642
+ dependencies:
2643
+ '@aws-sdk/types': 3.969.0
2644
+ '@aws/lambda-invoke-store': 0.2.3
2645
+ '@smithy/protocol-http': 5.3.8
2646
+ '@smithy/types': 4.12.0
2647
+ tslib: 2.8.1
2648
+
2649
+ '@aws-sdk/middleware-sdk-s3@3.969.0':
2650
+ dependencies:
2651
+ '@aws-sdk/core': 3.969.0
2652
+ '@aws-sdk/types': 3.969.0
2653
+ '@aws-sdk/util-arn-parser': 3.968.0
2654
+ '@smithy/core': 3.20.5
2655
+ '@smithy/node-config-provider': 4.3.8
2656
+ '@smithy/protocol-http': 5.3.8
2657
+ '@smithy/signature-v4': 5.3.8
2658
+ '@smithy/smithy-client': 4.10.7
2659
+ '@smithy/types': 4.12.0
2660
+ '@smithy/util-config-provider': 4.2.0
2661
+ '@smithy/util-middleware': 4.2.8
2662
+ '@smithy/util-stream': 4.5.10
2663
+ '@smithy/util-utf8': 4.2.0
2664
+ tslib: 2.8.1
2665
+
2666
+ '@aws-sdk/middleware-ssec@3.969.0':
2667
+ dependencies:
2668
+ '@aws-sdk/types': 3.969.0
2669
+ '@smithy/types': 4.12.0
2670
+ tslib: 2.8.1
2671
+
2672
+ '@aws-sdk/middleware-user-agent@3.969.0':
2673
+ dependencies:
2674
+ '@aws-sdk/core': 3.969.0
2675
+ '@aws-sdk/types': 3.969.0
2676
+ '@aws-sdk/util-endpoints': 3.969.0
2677
+ '@smithy/core': 3.20.5
2678
+ '@smithy/protocol-http': 5.3.8
2679
+ '@smithy/types': 4.12.0
2680
+ tslib: 2.8.1
2681
+
2682
+ '@aws-sdk/nested-clients@3.969.0':
2683
+ dependencies:
2684
+ '@aws-crypto/sha256-browser': 5.2.0
2685
+ '@aws-crypto/sha256-js': 5.2.0
2686
+ '@aws-sdk/core': 3.969.0
2687
+ '@aws-sdk/middleware-host-header': 3.969.0
2688
+ '@aws-sdk/middleware-logger': 3.969.0
2689
+ '@aws-sdk/middleware-recursion-detection': 3.969.0
2690
+ '@aws-sdk/middleware-user-agent': 3.969.0
2691
+ '@aws-sdk/region-config-resolver': 3.969.0
2692
+ '@aws-sdk/types': 3.969.0
2693
+ '@aws-sdk/util-endpoints': 3.969.0
2694
+ '@aws-sdk/util-user-agent-browser': 3.969.0
2695
+ '@aws-sdk/util-user-agent-node': 3.969.0
2696
+ '@smithy/config-resolver': 4.4.6
2697
+ '@smithy/core': 3.20.5
2698
+ '@smithy/fetch-http-handler': 5.3.9
2699
+ '@smithy/hash-node': 4.2.8
2700
+ '@smithy/invalid-dependency': 4.2.8
2701
+ '@smithy/middleware-content-length': 4.2.8
2702
+ '@smithy/middleware-endpoint': 4.4.6
2703
+ '@smithy/middleware-retry': 4.4.22
2704
+ '@smithy/middleware-serde': 4.2.9
2705
+ '@smithy/middleware-stack': 4.2.8
2706
+ '@smithy/node-config-provider': 4.3.8
2707
+ '@smithy/node-http-handler': 4.4.8
2708
+ '@smithy/protocol-http': 5.3.8
2709
+ '@smithy/smithy-client': 4.10.7
2710
+ '@smithy/types': 4.12.0
2711
+ '@smithy/url-parser': 4.2.8
2712
+ '@smithy/util-base64': 4.3.0
2713
+ '@smithy/util-body-length-browser': 4.2.0
2714
+ '@smithy/util-body-length-node': 4.2.1
2715
+ '@smithy/util-defaults-mode-browser': 4.3.21
2716
+ '@smithy/util-defaults-mode-node': 4.2.24
2717
+ '@smithy/util-endpoints': 3.2.8
2718
+ '@smithy/util-middleware': 4.2.8
2719
+ '@smithy/util-retry': 4.2.8
2720
+ '@smithy/util-utf8': 4.2.0
2721
+ tslib: 2.8.1
2722
+ transitivePeerDependencies:
2723
+ - aws-crt
2724
+
2725
+ '@aws-sdk/region-config-resolver@3.969.0':
2726
+ dependencies:
2727
+ '@aws-sdk/types': 3.969.0
2728
+ '@smithy/config-resolver': 4.4.6
2729
+ '@smithy/node-config-provider': 4.3.8
2730
+ '@smithy/types': 4.12.0
2731
+ tslib: 2.8.1
2732
+
2733
+ '@aws-sdk/signature-v4-multi-region@3.969.0':
2734
+ dependencies:
2735
+ '@aws-sdk/middleware-sdk-s3': 3.969.0
2736
+ '@aws-sdk/types': 3.969.0
2737
+ '@smithy/protocol-http': 5.3.8
2738
+ '@smithy/signature-v4': 5.3.8
2739
+ '@smithy/types': 4.12.0
2740
+ tslib: 2.8.1
2741
+
2742
+ '@aws-sdk/token-providers@3.969.0':
2743
+ dependencies:
2744
+ '@aws-sdk/core': 3.969.0
2745
+ '@aws-sdk/nested-clients': 3.969.0
2746
+ '@aws-sdk/types': 3.969.0
2747
+ '@smithy/property-provider': 4.2.8
2748
+ '@smithy/shared-ini-file-loader': 4.4.3
2749
+ '@smithy/types': 4.12.0
2750
+ tslib: 2.8.1
2751
+ transitivePeerDependencies:
2752
+ - aws-crt
2753
+
2754
+ '@aws-sdk/types@3.969.0':
2755
+ dependencies:
2756
+ '@smithy/types': 4.12.0
2757
+ tslib: 2.8.1
2758
+
2759
+ '@aws-sdk/util-arn-parser@3.968.0':
2760
+ dependencies:
2761
+ tslib: 2.8.1
2762
+
2763
+ '@aws-sdk/util-endpoints@3.969.0':
2764
+ dependencies:
2765
+ '@aws-sdk/types': 3.969.0
2766
+ '@smithy/types': 4.12.0
2767
+ '@smithy/url-parser': 4.2.8
2768
+ '@smithy/util-endpoints': 3.2.8
2769
+ tslib: 2.8.1
2770
+
2771
+ '@aws-sdk/util-locate-window@3.965.2':
2772
+ dependencies:
2773
+ tslib: 2.8.1
2774
+
2775
+ '@aws-sdk/util-user-agent-browser@3.969.0':
2776
+ dependencies:
2777
+ '@aws-sdk/types': 3.969.0
2778
+ '@smithy/types': 4.12.0
2779
+ bowser: 2.13.1
2780
+ tslib: 2.8.1
2781
+
2782
+ '@aws-sdk/util-user-agent-node@3.969.0':
2783
+ dependencies:
2784
+ '@aws-sdk/middleware-user-agent': 3.969.0
2785
+ '@aws-sdk/types': 3.969.0
2786
+ '@smithy/node-config-provider': 4.3.8
2787
+ '@smithy/types': 4.12.0
2788
+ tslib: 2.8.1
2789
+
2790
+ '@aws-sdk/xml-builder@3.969.0':
2791
+ dependencies:
2792
+ '@smithy/types': 4.12.0
2793
+ fast-xml-parser: 5.2.5
2794
+ tslib: 2.8.1
2795
+
2796
+ '@aws/lambda-invoke-store@0.2.3': {}
2797
+
2798
+ '@cfworker/json-schema@4.1.1': {}
2799
+
2800
+ '@drizzle-team/brocli@0.10.2': {}
2801
+
2802
+ '@esbuild-kit/core-utils@3.3.2':
2803
+ dependencies:
2804
+ esbuild: 0.18.20
2805
+ source-map-support: 0.5.21
2806
+
2807
+ '@esbuild-kit/esm-loader@2.6.5':
2808
+ dependencies:
2809
+ '@esbuild-kit/core-utils': 3.3.2
2810
+ get-tsconfig: 4.13.0
2811
+
2812
+ '@esbuild/aix-ppc64@0.25.12':
2813
+ optional: true
2814
+
716
2815
  '@esbuild/aix-ppc64@0.27.2':
717
2816
  optional: true
718
2817
 
2818
+ '@esbuild/android-arm64@0.18.20':
2819
+ optional: true
2820
+
2821
+ '@esbuild/android-arm64@0.25.12':
2822
+ optional: true
2823
+
719
2824
  '@esbuild/android-arm64@0.27.2':
720
2825
  optional: true
721
2826
 
2827
+ '@esbuild/android-arm@0.18.20':
2828
+ optional: true
2829
+
2830
+ '@esbuild/android-arm@0.25.12':
2831
+ optional: true
2832
+
722
2833
  '@esbuild/android-arm@0.27.2':
723
2834
  optional: true
724
2835
 
2836
+ '@esbuild/android-x64@0.18.20':
2837
+ optional: true
2838
+
2839
+ '@esbuild/android-x64@0.25.12':
2840
+ optional: true
2841
+
725
2842
  '@esbuild/android-x64@0.27.2':
726
2843
  optional: true
727
2844
 
2845
+ '@esbuild/darwin-arm64@0.18.20':
2846
+ optional: true
2847
+
2848
+ '@esbuild/darwin-arm64@0.25.12':
2849
+ optional: true
2850
+
728
2851
  '@esbuild/darwin-arm64@0.27.2':
729
2852
  optional: true
730
2853
 
2854
+ '@esbuild/darwin-x64@0.18.20':
2855
+ optional: true
2856
+
2857
+ '@esbuild/darwin-x64@0.25.12':
2858
+ optional: true
2859
+
731
2860
  '@esbuild/darwin-x64@0.27.2':
732
2861
  optional: true
733
2862
 
2863
+ '@esbuild/freebsd-arm64@0.18.20':
2864
+ optional: true
2865
+
2866
+ '@esbuild/freebsd-arm64@0.25.12':
2867
+ optional: true
2868
+
734
2869
  '@esbuild/freebsd-arm64@0.27.2':
735
2870
  optional: true
736
2871
 
2872
+ '@esbuild/freebsd-x64@0.18.20':
2873
+ optional: true
2874
+
2875
+ '@esbuild/freebsd-x64@0.25.12':
2876
+ optional: true
2877
+
737
2878
  '@esbuild/freebsd-x64@0.27.2':
738
2879
  optional: true
739
2880
 
2881
+ '@esbuild/linux-arm64@0.18.20':
2882
+ optional: true
2883
+
2884
+ '@esbuild/linux-arm64@0.25.12':
2885
+ optional: true
2886
+
740
2887
  '@esbuild/linux-arm64@0.27.2':
741
2888
  optional: true
742
2889
 
2890
+ '@esbuild/linux-arm@0.18.20':
2891
+ optional: true
2892
+
2893
+ '@esbuild/linux-arm@0.25.12':
2894
+ optional: true
2895
+
743
2896
  '@esbuild/linux-arm@0.27.2':
744
2897
  optional: true
745
2898
 
2899
+ '@esbuild/linux-ia32@0.18.20':
2900
+ optional: true
2901
+
2902
+ '@esbuild/linux-ia32@0.25.12':
2903
+ optional: true
2904
+
746
2905
  '@esbuild/linux-ia32@0.27.2':
747
2906
  optional: true
748
2907
 
2908
+ '@esbuild/linux-loong64@0.18.20':
2909
+ optional: true
2910
+
2911
+ '@esbuild/linux-loong64@0.25.12':
2912
+ optional: true
2913
+
749
2914
  '@esbuild/linux-loong64@0.27.2':
750
2915
  optional: true
751
2916
 
2917
+ '@esbuild/linux-mips64el@0.18.20':
2918
+ optional: true
2919
+
2920
+ '@esbuild/linux-mips64el@0.25.12':
2921
+ optional: true
2922
+
752
2923
  '@esbuild/linux-mips64el@0.27.2':
753
2924
  optional: true
754
2925
 
2926
+ '@esbuild/linux-ppc64@0.18.20':
2927
+ optional: true
2928
+
2929
+ '@esbuild/linux-ppc64@0.25.12':
2930
+ optional: true
2931
+
755
2932
  '@esbuild/linux-ppc64@0.27.2':
756
2933
  optional: true
757
2934
 
2935
+ '@esbuild/linux-riscv64@0.18.20':
2936
+ optional: true
2937
+
2938
+ '@esbuild/linux-riscv64@0.25.12':
2939
+ optional: true
2940
+
758
2941
  '@esbuild/linux-riscv64@0.27.2':
759
2942
  optional: true
760
2943
 
2944
+ '@esbuild/linux-s390x@0.18.20':
2945
+ optional: true
2946
+
2947
+ '@esbuild/linux-s390x@0.25.12':
2948
+ optional: true
2949
+
761
2950
  '@esbuild/linux-s390x@0.27.2':
762
2951
  optional: true
763
2952
 
2953
+ '@esbuild/linux-x64@0.18.20':
2954
+ optional: true
2955
+
2956
+ '@esbuild/linux-x64@0.25.12':
2957
+ optional: true
2958
+
764
2959
  '@esbuild/linux-x64@0.27.2':
765
2960
  optional: true
766
2961
 
2962
+ '@esbuild/netbsd-arm64@0.25.12':
2963
+ optional: true
2964
+
767
2965
  '@esbuild/netbsd-arm64@0.27.2':
768
2966
  optional: true
769
2967
 
2968
+ '@esbuild/netbsd-x64@0.18.20':
2969
+ optional: true
2970
+
2971
+ '@esbuild/netbsd-x64@0.25.12':
2972
+ optional: true
2973
+
770
2974
  '@esbuild/netbsd-x64@0.27.2':
771
2975
  optional: true
772
2976
 
2977
+ '@esbuild/openbsd-arm64@0.25.12':
2978
+ optional: true
2979
+
773
2980
  '@esbuild/openbsd-arm64@0.27.2':
774
2981
  optional: true
775
2982
 
2983
+ '@esbuild/openbsd-x64@0.18.20':
2984
+ optional: true
2985
+
2986
+ '@esbuild/openbsd-x64@0.25.12':
2987
+ optional: true
2988
+
776
2989
  '@esbuild/openbsd-x64@0.27.2':
777
2990
  optional: true
778
2991
 
2992
+ '@esbuild/openharmony-arm64@0.25.12':
2993
+ optional: true
2994
+
779
2995
  '@esbuild/openharmony-arm64@0.27.2':
780
2996
  optional: true
781
2997
 
2998
+ '@esbuild/sunos-x64@0.18.20':
2999
+ optional: true
3000
+
3001
+ '@esbuild/sunos-x64@0.25.12':
3002
+ optional: true
3003
+
782
3004
  '@esbuild/sunos-x64@0.27.2':
783
3005
  optional: true
784
3006
 
3007
+ '@esbuild/win32-arm64@0.18.20':
3008
+ optional: true
3009
+
3010
+ '@esbuild/win32-arm64@0.25.12':
3011
+ optional: true
3012
+
785
3013
  '@esbuild/win32-arm64@0.27.2':
786
3014
  optional: true
787
3015
 
3016
+ '@esbuild/win32-ia32@0.18.20':
3017
+ optional: true
3018
+
3019
+ '@esbuild/win32-ia32@0.25.12':
3020
+ optional: true
3021
+
788
3022
  '@esbuild/win32-ia32@0.27.2':
789
3023
  optional: true
790
3024
 
3025
+ '@esbuild/win32-x64@0.18.20':
3026
+ optional: true
3027
+
3028
+ '@esbuild/win32-x64@0.25.12':
3029
+ optional: true
3030
+
791
3031
  '@esbuild/win32-x64@0.27.2':
792
3032
  optional: true
793
3033
 
3034
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@1.21.7))':
3035
+ dependencies:
3036
+ eslint: 9.39.2(jiti@1.21.7)
3037
+ eslint-visitor-keys: 3.4.3
3038
+
3039
+ '@eslint-community/regexpp@4.12.2': {}
3040
+
3041
+ '@eslint/config-array@0.21.1':
3042
+ dependencies:
3043
+ '@eslint/object-schema': 2.1.7
3044
+ debug: 4.4.3
3045
+ minimatch: 3.1.2
3046
+ transitivePeerDependencies:
3047
+ - supports-color
3048
+
3049
+ '@eslint/config-helpers@0.4.2':
3050
+ dependencies:
3051
+ '@eslint/core': 0.17.0
3052
+
3053
+ '@eslint/core@0.17.0':
3054
+ dependencies:
3055
+ '@types/json-schema': 7.0.15
3056
+
3057
+ '@eslint/eslintrc@3.3.3':
3058
+ dependencies:
3059
+ ajv: 6.12.6
3060
+ debug: 4.4.3
3061
+ espree: 10.4.0
3062
+ globals: 14.0.0
3063
+ ignore: 5.3.2
3064
+ import-fresh: 3.3.1
3065
+ js-yaml: 4.1.1
3066
+ minimatch: 3.1.2
3067
+ strip-json-comments: 3.1.1
3068
+ transitivePeerDependencies:
3069
+ - supports-color
3070
+
3071
+ '@eslint/js@9.39.2': {}
3072
+
3073
+ '@eslint/object-schema@2.1.7': {}
3074
+
3075
+ '@eslint/plugin-kit@0.4.1':
3076
+ dependencies:
3077
+ '@eslint/core': 0.17.0
3078
+ levn: 0.4.1
3079
+
3080
+ '@humanfs/core@0.19.1': {}
3081
+
3082
+ '@humanfs/node@0.16.7':
3083
+ dependencies:
3084
+ '@humanfs/core': 0.19.1
3085
+ '@humanwhocodes/retry': 0.4.3
3086
+
3087
+ '@humanwhocodes/module-importer@1.0.1': {}
3088
+
3089
+ '@humanwhocodes/retry@0.4.3': {}
3090
+
794
3091
  '@jridgewell/gen-mapping@0.3.13':
795
3092
  dependencies:
796
3093
  '@jridgewell/sourcemap-codec': 1.5.5
@@ -805,6 +3102,33 @@ snapshots:
805
3102
  '@jridgewell/resolve-uri': 3.1.2
806
3103
  '@jridgewell/sourcemap-codec': 1.5.5
807
3104
 
3105
+ '@langchain/core@1.1.15(openai@6.16.0(zod@4.3.5))':
3106
+ dependencies:
3107
+ '@cfworker/json-schema': 4.1.1
3108
+ ansi-styles: 5.2.0
3109
+ camelcase: 6.3.0
3110
+ decamelize: 1.2.0
3111
+ js-tiktoken: 1.0.21
3112
+ langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
3113
+ mustache: 4.2.0
3114
+ p-queue: 6.6.2
3115
+ uuid: 10.0.0
3116
+ zod: 4.3.5
3117
+ transitivePeerDependencies:
3118
+ - '@opentelemetry/api'
3119
+ - '@opentelemetry/exporter-trace-otlp-proto'
3120
+ - '@opentelemetry/sdk-trace-base'
3121
+ - openai
3122
+
3123
+ '@langchain/openai@1.2.2(@langchain/core@1.1.15(openai@6.16.0(zod@4.3.5)))':
3124
+ dependencies:
3125
+ '@langchain/core': 1.1.15(openai@6.16.0(zod@4.3.5))
3126
+ js-tiktoken: 1.0.21
3127
+ openai: 6.16.0(zod@4.3.5)
3128
+ zod: 4.3.5
3129
+ transitivePeerDependencies:
3130
+ - ws
3131
+
808
3132
  '@nodelib/fs.scandir@2.1.5':
809
3133
  dependencies:
810
3134
  '@nodelib/fs.stat': 2.0.5
@@ -877,13 +3201,467 @@ snapshots:
877
3201
  '@rollup/rollup-win32-ia32-msvc@4.54.0':
878
3202
  optional: true
879
3203
 
880
- '@rollup/rollup-win32-x64-gnu@4.54.0':
881
- optional: true
3204
+ '@rollup/rollup-win32-x64-gnu@4.54.0':
3205
+ optional: true
3206
+
3207
+ '@rollup/rollup-win32-x64-msvc@4.54.0':
3208
+ optional: true
3209
+
3210
+ '@smithy/abort-controller@4.2.8':
3211
+ dependencies:
3212
+ '@smithy/types': 4.12.0
3213
+ tslib: 2.8.1
3214
+
3215
+ '@smithy/chunked-blob-reader-native@4.2.1':
3216
+ dependencies:
3217
+ '@smithy/util-base64': 4.3.0
3218
+ tslib: 2.8.1
3219
+
3220
+ '@smithy/chunked-blob-reader@5.2.0':
3221
+ dependencies:
3222
+ tslib: 2.8.1
3223
+
3224
+ '@smithy/config-resolver@4.4.6':
3225
+ dependencies:
3226
+ '@smithy/node-config-provider': 4.3.8
3227
+ '@smithy/types': 4.12.0
3228
+ '@smithy/util-config-provider': 4.2.0
3229
+ '@smithy/util-endpoints': 3.2.8
3230
+ '@smithy/util-middleware': 4.2.8
3231
+ tslib: 2.8.1
3232
+
3233
+ '@smithy/core@3.20.5':
3234
+ dependencies:
3235
+ '@smithy/middleware-serde': 4.2.9
3236
+ '@smithy/protocol-http': 5.3.8
3237
+ '@smithy/types': 4.12.0
3238
+ '@smithy/util-base64': 4.3.0
3239
+ '@smithy/util-body-length-browser': 4.2.0
3240
+ '@smithy/util-middleware': 4.2.8
3241
+ '@smithy/util-stream': 4.5.10
3242
+ '@smithy/util-utf8': 4.2.0
3243
+ '@smithy/uuid': 1.1.0
3244
+ tslib: 2.8.1
3245
+
3246
+ '@smithy/credential-provider-imds@4.2.8':
3247
+ dependencies:
3248
+ '@smithy/node-config-provider': 4.3.8
3249
+ '@smithy/property-provider': 4.2.8
3250
+ '@smithy/types': 4.12.0
3251
+ '@smithy/url-parser': 4.2.8
3252
+ tslib: 2.8.1
3253
+
3254
+ '@smithy/eventstream-codec@4.2.8':
3255
+ dependencies:
3256
+ '@aws-crypto/crc32': 5.2.0
3257
+ '@smithy/types': 4.12.0
3258
+ '@smithy/util-hex-encoding': 4.2.0
3259
+ tslib: 2.8.1
3260
+
3261
+ '@smithy/eventstream-serde-browser@4.2.8':
3262
+ dependencies:
3263
+ '@smithy/eventstream-serde-universal': 4.2.8
3264
+ '@smithy/types': 4.12.0
3265
+ tslib: 2.8.1
3266
+
3267
+ '@smithy/eventstream-serde-config-resolver@4.3.8':
3268
+ dependencies:
3269
+ '@smithy/types': 4.12.0
3270
+ tslib: 2.8.1
3271
+
3272
+ '@smithy/eventstream-serde-node@4.2.8':
3273
+ dependencies:
3274
+ '@smithy/eventstream-serde-universal': 4.2.8
3275
+ '@smithy/types': 4.12.0
3276
+ tslib: 2.8.1
3277
+
3278
+ '@smithy/eventstream-serde-universal@4.2.8':
3279
+ dependencies:
3280
+ '@smithy/eventstream-codec': 4.2.8
3281
+ '@smithy/types': 4.12.0
3282
+ tslib: 2.8.1
3283
+
3284
+ '@smithy/fetch-http-handler@5.3.9':
3285
+ dependencies:
3286
+ '@smithy/protocol-http': 5.3.8
3287
+ '@smithy/querystring-builder': 4.2.8
3288
+ '@smithy/types': 4.12.0
3289
+ '@smithy/util-base64': 4.3.0
3290
+ tslib: 2.8.1
3291
+
3292
+ '@smithy/hash-blob-browser@4.2.9':
3293
+ dependencies:
3294
+ '@smithy/chunked-blob-reader': 5.2.0
3295
+ '@smithy/chunked-blob-reader-native': 4.2.1
3296
+ '@smithy/types': 4.12.0
3297
+ tslib: 2.8.1
3298
+
3299
+ '@smithy/hash-node@4.2.8':
3300
+ dependencies:
3301
+ '@smithy/types': 4.12.0
3302
+ '@smithy/util-buffer-from': 4.2.0
3303
+ '@smithy/util-utf8': 4.2.0
3304
+ tslib: 2.8.1
3305
+
3306
+ '@smithy/hash-stream-node@4.2.8':
3307
+ dependencies:
3308
+ '@smithy/types': 4.12.0
3309
+ '@smithy/util-utf8': 4.2.0
3310
+ tslib: 2.8.1
3311
+
3312
+ '@smithy/invalid-dependency@4.2.8':
3313
+ dependencies:
3314
+ '@smithy/types': 4.12.0
3315
+ tslib: 2.8.1
3316
+
3317
+ '@smithy/is-array-buffer@2.2.0':
3318
+ dependencies:
3319
+ tslib: 2.8.1
3320
+
3321
+ '@smithy/is-array-buffer@4.2.0':
3322
+ dependencies:
3323
+ tslib: 2.8.1
3324
+
3325
+ '@smithy/md5-js@4.2.8':
3326
+ dependencies:
3327
+ '@smithy/types': 4.12.0
3328
+ '@smithy/util-utf8': 4.2.0
3329
+ tslib: 2.8.1
3330
+
3331
+ '@smithy/middleware-content-length@4.2.8':
3332
+ dependencies:
3333
+ '@smithy/protocol-http': 5.3.8
3334
+ '@smithy/types': 4.12.0
3335
+ tslib: 2.8.1
3336
+
3337
+ '@smithy/middleware-endpoint@4.4.6':
3338
+ dependencies:
3339
+ '@smithy/core': 3.20.5
3340
+ '@smithy/middleware-serde': 4.2.9
3341
+ '@smithy/node-config-provider': 4.3.8
3342
+ '@smithy/shared-ini-file-loader': 4.4.3
3343
+ '@smithy/types': 4.12.0
3344
+ '@smithy/url-parser': 4.2.8
3345
+ '@smithy/util-middleware': 4.2.8
3346
+ tslib: 2.8.1
3347
+
3348
+ '@smithy/middleware-retry@4.4.22':
3349
+ dependencies:
3350
+ '@smithy/node-config-provider': 4.3.8
3351
+ '@smithy/protocol-http': 5.3.8
3352
+ '@smithy/service-error-classification': 4.2.8
3353
+ '@smithy/smithy-client': 4.10.7
3354
+ '@smithy/types': 4.12.0
3355
+ '@smithy/util-middleware': 4.2.8
3356
+ '@smithy/util-retry': 4.2.8
3357
+ '@smithy/uuid': 1.1.0
3358
+ tslib: 2.8.1
3359
+
3360
+ '@smithy/middleware-serde@4.2.9':
3361
+ dependencies:
3362
+ '@smithy/protocol-http': 5.3.8
3363
+ '@smithy/types': 4.12.0
3364
+ tslib: 2.8.1
3365
+
3366
+ '@smithy/middleware-stack@4.2.8':
3367
+ dependencies:
3368
+ '@smithy/types': 4.12.0
3369
+ tslib: 2.8.1
3370
+
3371
+ '@smithy/node-config-provider@4.3.8':
3372
+ dependencies:
3373
+ '@smithy/property-provider': 4.2.8
3374
+ '@smithy/shared-ini-file-loader': 4.4.3
3375
+ '@smithy/types': 4.12.0
3376
+ tslib: 2.8.1
3377
+
3378
+ '@smithy/node-http-handler@4.4.8':
3379
+ dependencies:
3380
+ '@smithy/abort-controller': 4.2.8
3381
+ '@smithy/protocol-http': 5.3.8
3382
+ '@smithy/querystring-builder': 4.2.8
3383
+ '@smithy/types': 4.12.0
3384
+ tslib: 2.8.1
3385
+
3386
+ '@smithy/property-provider@4.2.8':
3387
+ dependencies:
3388
+ '@smithy/types': 4.12.0
3389
+ tslib: 2.8.1
3390
+
3391
+ '@smithy/protocol-http@5.3.8':
3392
+ dependencies:
3393
+ '@smithy/types': 4.12.0
3394
+ tslib: 2.8.1
3395
+
3396
+ '@smithy/querystring-builder@4.2.8':
3397
+ dependencies:
3398
+ '@smithy/types': 4.12.0
3399
+ '@smithy/util-uri-escape': 4.2.0
3400
+ tslib: 2.8.1
3401
+
3402
+ '@smithy/querystring-parser@4.2.8':
3403
+ dependencies:
3404
+ '@smithy/types': 4.12.0
3405
+ tslib: 2.8.1
3406
+
3407
+ '@smithy/service-error-classification@4.2.8':
3408
+ dependencies:
3409
+ '@smithy/types': 4.12.0
3410
+
3411
+ '@smithy/shared-ini-file-loader@4.4.3':
3412
+ dependencies:
3413
+ '@smithy/types': 4.12.0
3414
+ tslib: 2.8.1
3415
+
3416
+ '@smithy/signature-v4@5.3.8':
3417
+ dependencies:
3418
+ '@smithy/is-array-buffer': 4.2.0
3419
+ '@smithy/protocol-http': 5.3.8
3420
+ '@smithy/types': 4.12.0
3421
+ '@smithy/util-hex-encoding': 4.2.0
3422
+ '@smithy/util-middleware': 4.2.8
3423
+ '@smithy/util-uri-escape': 4.2.0
3424
+ '@smithy/util-utf8': 4.2.0
3425
+ tslib: 2.8.1
3426
+
3427
+ '@smithy/smithy-client@4.10.7':
3428
+ dependencies:
3429
+ '@smithy/core': 3.20.5
3430
+ '@smithy/middleware-endpoint': 4.4.6
3431
+ '@smithy/middleware-stack': 4.2.8
3432
+ '@smithy/protocol-http': 5.3.8
3433
+ '@smithy/types': 4.12.0
3434
+ '@smithy/util-stream': 4.5.10
3435
+ tslib: 2.8.1
3436
+
3437
+ '@smithy/types@4.12.0':
3438
+ dependencies:
3439
+ tslib: 2.8.1
3440
+
3441
+ '@smithy/url-parser@4.2.8':
3442
+ dependencies:
3443
+ '@smithy/querystring-parser': 4.2.8
3444
+ '@smithy/types': 4.12.0
3445
+ tslib: 2.8.1
3446
+
3447
+ '@smithy/util-base64@4.3.0':
3448
+ dependencies:
3449
+ '@smithy/util-buffer-from': 4.2.0
3450
+ '@smithy/util-utf8': 4.2.0
3451
+ tslib: 2.8.1
3452
+
3453
+ '@smithy/util-body-length-browser@4.2.0':
3454
+ dependencies:
3455
+ tslib: 2.8.1
3456
+
3457
+ '@smithy/util-body-length-node@4.2.1':
3458
+ dependencies:
3459
+ tslib: 2.8.1
3460
+
3461
+ '@smithy/util-buffer-from@2.2.0':
3462
+ dependencies:
3463
+ '@smithy/is-array-buffer': 2.2.0
3464
+ tslib: 2.8.1
3465
+
3466
+ '@smithy/util-buffer-from@4.2.0':
3467
+ dependencies:
3468
+ '@smithy/is-array-buffer': 4.2.0
3469
+ tslib: 2.8.1
3470
+
3471
+ '@smithy/util-config-provider@4.2.0':
3472
+ dependencies:
3473
+ tslib: 2.8.1
3474
+
3475
+ '@smithy/util-defaults-mode-browser@4.3.21':
3476
+ dependencies:
3477
+ '@smithy/property-provider': 4.2.8
3478
+ '@smithy/smithy-client': 4.10.7
3479
+ '@smithy/types': 4.12.0
3480
+ tslib: 2.8.1
3481
+
3482
+ '@smithy/util-defaults-mode-node@4.2.24':
3483
+ dependencies:
3484
+ '@smithy/config-resolver': 4.4.6
3485
+ '@smithy/credential-provider-imds': 4.2.8
3486
+ '@smithy/node-config-provider': 4.3.8
3487
+ '@smithy/property-provider': 4.2.8
3488
+ '@smithy/smithy-client': 4.10.7
3489
+ '@smithy/types': 4.12.0
3490
+ tslib: 2.8.1
3491
+
3492
+ '@smithy/util-endpoints@3.2.8':
3493
+ dependencies:
3494
+ '@smithy/node-config-provider': 4.3.8
3495
+ '@smithy/types': 4.12.0
3496
+ tslib: 2.8.1
3497
+
3498
+ '@smithy/util-hex-encoding@4.2.0':
3499
+ dependencies:
3500
+ tslib: 2.8.1
3501
+
3502
+ '@smithy/util-middleware@4.2.8':
3503
+ dependencies:
3504
+ '@smithy/types': 4.12.0
3505
+ tslib: 2.8.1
3506
+
3507
+ '@smithy/util-retry@4.2.8':
3508
+ dependencies:
3509
+ '@smithy/service-error-classification': 4.2.8
3510
+ '@smithy/types': 4.12.0
3511
+ tslib: 2.8.1
3512
+
3513
+ '@smithy/util-stream@4.5.10':
3514
+ dependencies:
3515
+ '@smithy/fetch-http-handler': 5.3.9
3516
+ '@smithy/node-http-handler': 4.4.8
3517
+ '@smithy/types': 4.12.0
3518
+ '@smithy/util-base64': 4.3.0
3519
+ '@smithy/util-buffer-from': 4.2.0
3520
+ '@smithy/util-hex-encoding': 4.2.0
3521
+ '@smithy/util-utf8': 4.2.0
3522
+ tslib: 2.8.1
3523
+
3524
+ '@smithy/util-uri-escape@4.2.0':
3525
+ dependencies:
3526
+ tslib: 2.8.1
3527
+
3528
+ '@smithy/util-utf8@2.3.0':
3529
+ dependencies:
3530
+ '@smithy/util-buffer-from': 2.2.0
3531
+ tslib: 2.8.1
3532
+
3533
+ '@smithy/util-utf8@4.2.0':
3534
+ dependencies:
3535
+ '@smithy/util-buffer-from': 4.2.0
3536
+ tslib: 2.8.1
3537
+
3538
+ '@smithy/util-waiter@4.2.8':
3539
+ dependencies:
3540
+ '@smithy/abort-controller': 4.2.8
3541
+ '@smithy/types': 4.12.0
3542
+ tslib: 2.8.1
3543
+
3544
+ '@smithy/uuid@1.1.0':
3545
+ dependencies:
3546
+ tslib: 2.8.1
3547
+
3548
+ '@types/estree@1.0.8': {}
3549
+
3550
+ '@types/json-schema@7.0.15': {}
3551
+
3552
+ '@types/uuid@10.0.0': {}
3553
+
3554
+ '@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
3555
+ dependencies:
3556
+ '@eslint-community/regexpp': 4.12.2
3557
+ '@typescript-eslint/parser': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3558
+ '@typescript-eslint/scope-manager': 8.52.0
3559
+ '@typescript-eslint/type-utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3560
+ '@typescript-eslint/utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3561
+ '@typescript-eslint/visitor-keys': 8.52.0
3562
+ eslint: 9.39.2(jiti@1.21.7)
3563
+ ignore: 7.0.5
3564
+ natural-compare: 1.4.0
3565
+ ts-api-utils: 2.4.0(typescript@5.9.3)
3566
+ typescript: 5.9.3
3567
+ transitivePeerDependencies:
3568
+ - supports-color
3569
+
3570
+ '@typescript-eslint/parser@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
3571
+ dependencies:
3572
+ '@typescript-eslint/scope-manager': 8.52.0
3573
+ '@typescript-eslint/types': 8.52.0
3574
+ '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
3575
+ '@typescript-eslint/visitor-keys': 8.52.0
3576
+ debug: 4.4.3
3577
+ eslint: 9.39.2(jiti@1.21.7)
3578
+ typescript: 5.9.3
3579
+ transitivePeerDependencies:
3580
+ - supports-color
3581
+
3582
+ '@typescript-eslint/project-service@8.52.0(typescript@5.9.3)':
3583
+ dependencies:
3584
+ '@typescript-eslint/tsconfig-utils': 8.52.0(typescript@5.9.3)
3585
+ '@typescript-eslint/types': 8.52.0
3586
+ debug: 4.4.3
3587
+ typescript: 5.9.3
3588
+ transitivePeerDependencies:
3589
+ - supports-color
3590
+
3591
+ '@typescript-eslint/scope-manager@8.52.0':
3592
+ dependencies:
3593
+ '@typescript-eslint/types': 8.52.0
3594
+ '@typescript-eslint/visitor-keys': 8.52.0
3595
+
3596
+ '@typescript-eslint/tsconfig-utils@8.52.0(typescript@5.9.3)':
3597
+ dependencies:
3598
+ typescript: 5.9.3
3599
+
3600
+ '@typescript-eslint/type-utils@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
3601
+ dependencies:
3602
+ '@typescript-eslint/types': 8.52.0
3603
+ '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
3604
+ '@typescript-eslint/utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3605
+ debug: 4.4.3
3606
+ eslint: 9.39.2(jiti@1.21.7)
3607
+ ts-api-utils: 2.4.0(typescript@5.9.3)
3608
+ typescript: 5.9.3
3609
+ transitivePeerDependencies:
3610
+ - supports-color
3611
+
3612
+ '@typescript-eslint/types@8.52.0': {}
3613
+
3614
+ '@typescript-eslint/typescript-estree@8.52.0(typescript@5.9.3)':
3615
+ dependencies:
3616
+ '@typescript-eslint/project-service': 8.52.0(typescript@5.9.3)
3617
+ '@typescript-eslint/tsconfig-utils': 8.52.0(typescript@5.9.3)
3618
+ '@typescript-eslint/types': 8.52.0
3619
+ '@typescript-eslint/visitor-keys': 8.52.0
3620
+ debug: 4.4.3
3621
+ minimatch: 9.0.5
3622
+ semver: 7.7.3
3623
+ tinyglobby: 0.2.15
3624
+ ts-api-utils: 2.4.0(typescript@5.9.3)
3625
+ typescript: 5.9.3
3626
+ transitivePeerDependencies:
3627
+ - supports-color
3628
+
3629
+ '@typescript-eslint/utils@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
3630
+ dependencies:
3631
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
3632
+ '@typescript-eslint/scope-manager': 8.52.0
3633
+ '@typescript-eslint/types': 8.52.0
3634
+ '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
3635
+ eslint: 9.39.2(jiti@1.21.7)
3636
+ typescript: 5.9.3
3637
+ transitivePeerDependencies:
3638
+ - supports-color
3639
+
3640
+ '@typescript-eslint/visitor-keys@8.52.0':
3641
+ dependencies:
3642
+ '@typescript-eslint/types': 8.52.0
3643
+ eslint-visitor-keys: 4.2.1
3644
+
3645
+ acorn-jsx@5.3.2(acorn@8.15.0):
3646
+ dependencies:
3647
+ acorn: 8.15.0
3648
+
3649
+ acorn@8.15.0: {}
3650
+
3651
+ ajv@6.12.6:
3652
+ dependencies:
3653
+ fast-deep-equal: 3.1.3
3654
+ fast-json-stable-stringify: 2.1.0
3655
+ json-schema-traverse: 0.4.1
3656
+ uri-js: 4.4.1
3657
+
3658
+ ansi-regex@6.2.2: {}
882
3659
 
883
- '@rollup/rollup-win32-x64-msvc@4.54.0':
884
- optional: true
3660
+ ansi-styles@4.3.0:
3661
+ dependencies:
3662
+ color-convert: 2.0.1
885
3663
 
886
- '@types/estree@1.0.8': {}
3664
+ ansi-styles@5.2.0: {}
887
3665
 
888
3666
  any-promise@1.3.0: {}
889
3667
 
@@ -894,6 +3672,10 @@ snapshots:
894
3672
 
895
3673
  arg@5.0.2: {}
896
3674
 
3675
+ argparse@2.0.1: {}
3676
+
3677
+ asynckit@0.4.0: {}
3678
+
897
3679
  autoprefixer@10.4.23(postcss@8.5.6):
898
3680
  dependencies:
899
3681
  browserslist: 4.28.1
@@ -903,10 +3685,33 @@ snapshots:
903
3685
  postcss: 8.5.6
904
3686
  postcss-value-parser: 4.2.0
905
3687
 
3688
+ axios@1.13.2:
3689
+ dependencies:
3690
+ follow-redirects: 1.15.11
3691
+ form-data: 4.0.5
3692
+ proxy-from-env: 1.1.0
3693
+ transitivePeerDependencies:
3694
+ - debug
3695
+
3696
+ balanced-match@1.0.2: {}
3697
+
3698
+ base64-js@1.5.1: {}
3699
+
906
3700
  baseline-browser-mapping@2.9.11: {}
907
3701
 
908
3702
  binary-extensions@2.3.0: {}
909
3703
 
3704
+ bowser@2.13.1: {}
3705
+
3706
+ brace-expansion@1.1.12:
3707
+ dependencies:
3708
+ balanced-match: 1.0.2
3709
+ concat-map: 0.0.1
3710
+
3711
+ brace-expansion@2.0.2:
3712
+ dependencies:
3713
+ balanced-match: 1.0.2
3714
+
910
3715
  braces@3.0.3:
911
3716
  dependencies:
912
3717
  fill-range: 7.1.1
@@ -919,10 +3724,33 @@ snapshots:
919
3724
  node-releases: 2.0.27
920
3725
  update-browserslist-db: 1.2.3(browserslist@4.28.1)
921
3726
 
3727
+ buffer-from@1.1.2: {}
3728
+
3729
+ buffer@5.6.0:
3730
+ dependencies:
3731
+ base64-js: 1.5.1
3732
+ ieee754: 1.2.1
3733
+
3734
+ call-bind-apply-helpers@1.0.2:
3735
+ dependencies:
3736
+ es-errors: 1.3.0
3737
+ function-bind: 1.1.2
3738
+
3739
+ callsites@3.1.0: {}
3740
+
922
3741
  camelcase-css@2.0.1: {}
923
3742
 
3743
+ camelcase@6.3.0: {}
3744
+
924
3745
  caniuse-lite@1.0.30001762: {}
925
3746
 
3747
+ chalk@4.1.2:
3748
+ dependencies:
3749
+ ansi-styles: 4.3.0
3750
+ supports-color: 7.2.0
3751
+
3752
+ chalk@5.6.2: {}
3753
+
926
3754
  chokidar@3.6.0:
927
3755
  dependencies:
928
3756
  anymatch: 3.1.3
@@ -935,16 +3763,203 @@ snapshots:
935
3763
  optionalDependencies:
936
3764
  fsevents: 2.3.3
937
3765
 
3766
+ cli-cursor@5.0.0:
3767
+ dependencies:
3768
+ restore-cursor: 5.1.0
3769
+
3770
+ cli-spinners@3.4.0: {}
3771
+
3772
+ color-convert@2.0.1:
3773
+ dependencies:
3774
+ color-name: 1.1.4
3775
+
3776
+ color-name@1.1.4: {}
3777
+
3778
+ combined-stream@1.0.8:
3779
+ dependencies:
3780
+ delayed-stream: 1.0.0
3781
+
3782
+ commander@14.0.2: {}
3783
+
938
3784
  commander@4.1.1: {}
939
3785
 
3786
+ concat-map@0.0.1: {}
3787
+
3788
+ console-table-printer@2.15.0:
3789
+ dependencies:
3790
+ simple-wcswidth: 1.1.2
3791
+
3792
+ coze-coding-dev-sdk@0.7.2(openai@6.16.0(zod@4.3.5)):
3793
+ dependencies:
3794
+ '@aws-sdk/client-s3': 3.969.0
3795
+ '@aws-sdk/lib-storage': 3.969.0(@aws-sdk/client-s3@3.969.0)
3796
+ '@langchain/core': 1.1.15(openai@6.16.0(zod@4.3.5))
3797
+ '@langchain/openai': 1.2.2(@langchain/core@1.1.15(openai@6.16.0(zod@4.3.5)))
3798
+ axios: 1.13.2
3799
+ chalk: 5.6.2
3800
+ commander: 14.0.2
3801
+ drizzle-kit: 0.31.8
3802
+ drizzle-orm: 0.45.1(pg@8.17.1)
3803
+ ora: 9.0.0
3804
+ pg: 8.17.1
3805
+ transliteration: 2.6.0
3806
+ transitivePeerDependencies:
3807
+ - '@aws-sdk/client-rds-data'
3808
+ - '@cloudflare/workers-types'
3809
+ - '@electric-sql/pglite'
3810
+ - '@libsql/client'
3811
+ - '@libsql/client-wasm'
3812
+ - '@neondatabase/serverless'
3813
+ - '@op-engineering/op-sqlite'
3814
+ - '@opentelemetry/api'
3815
+ - '@opentelemetry/exporter-trace-otlp-proto'
3816
+ - '@opentelemetry/sdk-trace-base'
3817
+ - '@planetscale/database'
3818
+ - '@prisma/client'
3819
+ - '@tidbcloud/serverless'
3820
+ - '@types/better-sqlite3'
3821
+ - '@types/pg'
3822
+ - '@types/sql.js'
3823
+ - '@upstash/redis'
3824
+ - '@vercel/postgres'
3825
+ - '@xata.io/client'
3826
+ - aws-crt
3827
+ - better-sqlite3
3828
+ - bun-types
3829
+ - debug
3830
+ - expo-sqlite
3831
+ - gel
3832
+ - knex
3833
+ - kysely
3834
+ - mysql2
3835
+ - openai
3836
+ - pg-native
3837
+ - postgres
3838
+ - prisma
3839
+ - sql.js
3840
+ - sqlite3
3841
+ - supports-color
3842
+ - ws
3843
+
3844
+ cross-spawn@7.0.6:
3845
+ dependencies:
3846
+ path-key: 3.1.1
3847
+ shebang-command: 2.0.0
3848
+ which: 2.0.2
3849
+
940
3850
  cssesc@3.0.0: {}
941
3851
 
3852
+ debug@4.4.3:
3853
+ dependencies:
3854
+ ms: 2.1.3
3855
+
3856
+ decamelize@1.2.0: {}
3857
+
3858
+ deep-is@0.1.4: {}
3859
+
3860
+ delayed-stream@1.0.0: {}
3861
+
942
3862
  didyoumean@1.2.2: {}
943
3863
 
944
3864
  dlv@1.1.3: {}
945
3865
 
3866
+ drizzle-kit@0.31.8:
3867
+ dependencies:
3868
+ '@drizzle-team/brocli': 0.10.2
3869
+ '@esbuild-kit/esm-loader': 2.6.5
3870
+ esbuild: 0.25.12
3871
+ esbuild-register: 3.6.0(esbuild@0.25.12)
3872
+ transitivePeerDependencies:
3873
+ - supports-color
3874
+
3875
+ drizzle-orm@0.45.1(pg@8.17.1):
3876
+ optionalDependencies:
3877
+ pg: 8.17.1
3878
+
3879
+ dunder-proto@1.0.1:
3880
+ dependencies:
3881
+ call-bind-apply-helpers: 1.0.2
3882
+ es-errors: 1.3.0
3883
+ gopd: 1.2.0
3884
+
946
3885
  electron-to-chromium@1.5.267: {}
947
3886
 
3887
+ es-define-property@1.0.1: {}
3888
+
3889
+ es-errors@1.3.0: {}
3890
+
3891
+ es-object-atoms@1.1.1:
3892
+ dependencies:
3893
+ es-errors: 1.3.0
3894
+
3895
+ es-set-tostringtag@2.1.0:
3896
+ dependencies:
3897
+ es-errors: 1.3.0
3898
+ get-intrinsic: 1.3.0
3899
+ has-tostringtag: 1.0.2
3900
+ hasown: 2.0.2
3901
+
3902
+ esbuild-register@3.6.0(esbuild@0.25.12):
3903
+ dependencies:
3904
+ debug: 4.4.3
3905
+ esbuild: 0.25.12
3906
+ transitivePeerDependencies:
3907
+ - supports-color
3908
+
3909
+ esbuild@0.18.20:
3910
+ optionalDependencies:
3911
+ '@esbuild/android-arm': 0.18.20
3912
+ '@esbuild/android-arm64': 0.18.20
3913
+ '@esbuild/android-x64': 0.18.20
3914
+ '@esbuild/darwin-arm64': 0.18.20
3915
+ '@esbuild/darwin-x64': 0.18.20
3916
+ '@esbuild/freebsd-arm64': 0.18.20
3917
+ '@esbuild/freebsd-x64': 0.18.20
3918
+ '@esbuild/linux-arm': 0.18.20
3919
+ '@esbuild/linux-arm64': 0.18.20
3920
+ '@esbuild/linux-ia32': 0.18.20
3921
+ '@esbuild/linux-loong64': 0.18.20
3922
+ '@esbuild/linux-mips64el': 0.18.20
3923
+ '@esbuild/linux-ppc64': 0.18.20
3924
+ '@esbuild/linux-riscv64': 0.18.20
3925
+ '@esbuild/linux-s390x': 0.18.20
3926
+ '@esbuild/linux-x64': 0.18.20
3927
+ '@esbuild/netbsd-x64': 0.18.20
3928
+ '@esbuild/openbsd-x64': 0.18.20
3929
+ '@esbuild/sunos-x64': 0.18.20
3930
+ '@esbuild/win32-arm64': 0.18.20
3931
+ '@esbuild/win32-ia32': 0.18.20
3932
+ '@esbuild/win32-x64': 0.18.20
3933
+
3934
+ esbuild@0.25.12:
3935
+ optionalDependencies:
3936
+ '@esbuild/aix-ppc64': 0.25.12
3937
+ '@esbuild/android-arm': 0.25.12
3938
+ '@esbuild/android-arm64': 0.25.12
3939
+ '@esbuild/android-x64': 0.25.12
3940
+ '@esbuild/darwin-arm64': 0.25.12
3941
+ '@esbuild/darwin-x64': 0.25.12
3942
+ '@esbuild/freebsd-arm64': 0.25.12
3943
+ '@esbuild/freebsd-x64': 0.25.12
3944
+ '@esbuild/linux-arm': 0.25.12
3945
+ '@esbuild/linux-arm64': 0.25.12
3946
+ '@esbuild/linux-ia32': 0.25.12
3947
+ '@esbuild/linux-loong64': 0.25.12
3948
+ '@esbuild/linux-mips64el': 0.25.12
3949
+ '@esbuild/linux-ppc64': 0.25.12
3950
+ '@esbuild/linux-riscv64': 0.25.12
3951
+ '@esbuild/linux-s390x': 0.25.12
3952
+ '@esbuild/linux-x64': 0.25.12
3953
+ '@esbuild/netbsd-arm64': 0.25.12
3954
+ '@esbuild/netbsd-x64': 0.25.12
3955
+ '@esbuild/openbsd-arm64': 0.25.12
3956
+ '@esbuild/openbsd-x64': 0.25.12
3957
+ '@esbuild/openharmony-arm64': 0.25.12
3958
+ '@esbuild/sunos-x64': 0.25.12
3959
+ '@esbuild/win32-arm64': 0.25.12
3960
+ '@esbuild/win32-ia32': 0.25.12
3961
+ '@esbuild/win32-x64': 0.25.12
3962
+
948
3963
  esbuild@0.27.2:
949
3964
  optionalDependencies:
950
3965
  '@esbuild/aix-ppc64': 0.27.2
@@ -976,6 +3991,82 @@ snapshots:
976
3991
 
977
3992
  escalade@3.2.0: {}
978
3993
 
3994
+ escape-string-regexp@4.0.0: {}
3995
+
3996
+ eslint-scope@8.4.0:
3997
+ dependencies:
3998
+ esrecurse: 4.3.0
3999
+ estraverse: 5.3.0
4000
+
4001
+ eslint-visitor-keys@3.4.3: {}
4002
+
4003
+ eslint-visitor-keys@4.2.1: {}
4004
+
4005
+ eslint@9.39.2(jiti@1.21.7):
4006
+ dependencies:
4007
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
4008
+ '@eslint-community/regexpp': 4.12.2
4009
+ '@eslint/config-array': 0.21.1
4010
+ '@eslint/config-helpers': 0.4.2
4011
+ '@eslint/core': 0.17.0
4012
+ '@eslint/eslintrc': 3.3.3
4013
+ '@eslint/js': 9.39.2
4014
+ '@eslint/plugin-kit': 0.4.1
4015
+ '@humanfs/node': 0.16.7
4016
+ '@humanwhocodes/module-importer': 1.0.1
4017
+ '@humanwhocodes/retry': 0.4.3
4018
+ '@types/estree': 1.0.8
4019
+ ajv: 6.12.6
4020
+ chalk: 4.1.2
4021
+ cross-spawn: 7.0.6
4022
+ debug: 4.4.3
4023
+ escape-string-regexp: 4.0.0
4024
+ eslint-scope: 8.4.0
4025
+ eslint-visitor-keys: 4.2.1
4026
+ espree: 10.4.0
4027
+ esquery: 1.7.0
4028
+ esutils: 2.0.3
4029
+ fast-deep-equal: 3.1.3
4030
+ file-entry-cache: 8.0.0
4031
+ find-up: 5.0.0
4032
+ glob-parent: 6.0.2
4033
+ ignore: 5.3.2
4034
+ imurmurhash: 0.1.4
4035
+ is-glob: 4.0.3
4036
+ json-stable-stringify-without-jsonify: 1.0.1
4037
+ lodash.merge: 4.6.2
4038
+ minimatch: 3.1.2
4039
+ natural-compare: 1.4.0
4040
+ optionator: 0.9.4
4041
+ optionalDependencies:
4042
+ jiti: 1.21.7
4043
+ transitivePeerDependencies:
4044
+ - supports-color
4045
+
4046
+ espree@10.4.0:
4047
+ dependencies:
4048
+ acorn: 8.15.0
4049
+ acorn-jsx: 5.3.2(acorn@8.15.0)
4050
+ eslint-visitor-keys: 4.2.1
4051
+
4052
+ esquery@1.7.0:
4053
+ dependencies:
4054
+ estraverse: 5.3.0
4055
+
4056
+ esrecurse@4.3.0:
4057
+ dependencies:
4058
+ estraverse: 5.3.0
4059
+
4060
+ estraverse@5.3.0: {}
4061
+
4062
+ esutils@2.0.3: {}
4063
+
4064
+ eventemitter3@4.0.7: {}
4065
+
4066
+ events@3.3.0: {}
4067
+
4068
+ fast-deep-equal@3.1.3: {}
4069
+
979
4070
  fast-glob@3.3.3:
980
4071
  dependencies:
981
4072
  '@nodelib/fs.stat': 2.0.5
@@ -984,6 +4075,14 @@ snapshots:
984
4075
  merge2: 1.4.1
985
4076
  micromatch: 4.0.8
986
4077
 
4078
+ fast-json-stable-stringify@2.1.0: {}
4079
+
4080
+ fast-levenshtein@2.0.6: {}
4081
+
4082
+ fast-xml-parser@5.2.5:
4083
+ dependencies:
4084
+ strnum: 2.1.2
4085
+
987
4086
  fastq@1.20.1:
988
4087
  dependencies:
989
4088
  reusify: 1.1.0
@@ -992,10 +4091,36 @@ snapshots:
992
4091
  optionalDependencies:
993
4092
  picomatch: 4.0.3
994
4093
 
4094
+ file-entry-cache@8.0.0:
4095
+ dependencies:
4096
+ flat-cache: 4.0.1
4097
+
995
4098
  fill-range@7.1.1:
996
4099
  dependencies:
997
4100
  to-regex-range: 5.0.1
998
4101
 
4102
+ find-up@5.0.0:
4103
+ dependencies:
4104
+ locate-path: 6.0.0
4105
+ path-exists: 4.0.0
4106
+
4107
+ flat-cache@4.0.1:
4108
+ dependencies:
4109
+ flatted: 3.3.3
4110
+ keyv: 4.5.4
4111
+
4112
+ flatted@3.3.3: {}
4113
+
4114
+ follow-redirects@1.15.11: {}
4115
+
4116
+ form-data@4.0.5:
4117
+ dependencies:
4118
+ asynckit: 0.4.0
4119
+ combined-stream: 1.0.8
4120
+ es-set-tostringtag: 2.1.0
4121
+ hasown: 2.0.2
4122
+ mime-types: 2.1.35
4123
+
999
4124
  fraction.js@5.3.4: {}
1000
4125
 
1001
4126
  fsevents@2.3.3:
@@ -1003,6 +4128,30 @@ snapshots:
1003
4128
 
1004
4129
  function-bind@1.1.2: {}
1005
4130
 
4131
+ get-east-asian-width@1.4.0: {}
4132
+
4133
+ get-intrinsic@1.3.0:
4134
+ dependencies:
4135
+ call-bind-apply-helpers: 1.0.2
4136
+ es-define-property: 1.0.1
4137
+ es-errors: 1.3.0
4138
+ es-object-atoms: 1.1.1
4139
+ function-bind: 1.1.2
4140
+ get-proto: 1.0.1
4141
+ gopd: 1.2.0
4142
+ has-symbols: 1.1.0
4143
+ hasown: 2.0.2
4144
+ math-intrinsics: 1.1.0
4145
+
4146
+ get-proto@1.0.1:
4147
+ dependencies:
4148
+ dunder-proto: 1.0.1
4149
+ es-object-atoms: 1.1.1
4150
+
4151
+ get-tsconfig@4.13.0:
4152
+ dependencies:
4153
+ resolve-pkg-maps: 1.0.0
4154
+
1006
4155
  glob-parent@5.1.2:
1007
4156
  dependencies:
1008
4157
  is-glob: 4.0.3
@@ -1011,10 +4160,37 @@ snapshots:
1011
4160
  dependencies:
1012
4161
  is-glob: 4.0.3
1013
4162
 
4163
+ globals@14.0.0: {}
4164
+
4165
+ gopd@1.2.0: {}
4166
+
4167
+ has-flag@4.0.0: {}
4168
+
4169
+ has-symbols@1.1.0: {}
4170
+
4171
+ has-tostringtag@1.0.2:
4172
+ dependencies:
4173
+ has-symbols: 1.1.0
4174
+
1014
4175
  hasown@2.0.2:
1015
4176
  dependencies:
1016
4177
  function-bind: 1.1.2
1017
4178
 
4179
+ ieee754@1.2.1: {}
4180
+
4181
+ ignore@5.3.2: {}
4182
+
4183
+ ignore@7.0.5: {}
4184
+
4185
+ import-fresh@3.3.1:
4186
+ dependencies:
4187
+ parent-module: 1.0.1
4188
+ resolve-from: 4.0.0
4189
+
4190
+ imurmurhash@0.1.4: {}
4191
+
4192
+ inherits@2.0.4: {}
4193
+
1018
4194
  is-binary-path@2.1.0:
1019
4195
  dependencies:
1020
4196
  binary-extensions: 2.3.0
@@ -1029,14 +4205,67 @@ snapshots:
1029
4205
  dependencies:
1030
4206
  is-extglob: 2.1.1
1031
4207
 
4208
+ is-interactive@2.0.0: {}
4209
+
1032
4210
  is-number@7.0.0: {}
1033
4211
 
4212
+ is-unicode-supported@2.1.0: {}
4213
+
4214
+ isexe@2.0.0: {}
4215
+
1034
4216
  jiti@1.21.7: {}
1035
4217
 
4218
+ js-tiktoken@1.0.21:
4219
+ dependencies:
4220
+ base64-js: 1.5.1
4221
+
4222
+ js-yaml@4.1.1:
4223
+ dependencies:
4224
+ argparse: 2.0.1
4225
+
4226
+ json-buffer@3.0.1: {}
4227
+
4228
+ json-schema-traverse@0.4.1: {}
4229
+
4230
+ json-stable-stringify-without-jsonify@1.0.1: {}
4231
+
4232
+ keyv@4.5.4:
4233
+ dependencies:
4234
+ json-buffer: 3.0.1
4235
+
4236
+ langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
4237
+ dependencies:
4238
+ '@types/uuid': 10.0.0
4239
+ chalk: 4.1.2
4240
+ console-table-printer: 2.15.0
4241
+ p-queue: 6.6.2
4242
+ semver: 7.7.3
4243
+ uuid: 10.0.0
4244
+ optionalDependencies:
4245
+ openai: 6.16.0(zod@4.3.5)
4246
+
4247
+ levn@0.4.1:
4248
+ dependencies:
4249
+ prelude-ls: 1.2.1
4250
+ type-check: 0.4.0
4251
+
1036
4252
  lilconfig@3.1.3: {}
1037
4253
 
1038
4254
  lines-and-columns@1.2.4: {}
1039
4255
 
4256
+ locate-path@6.0.0:
4257
+ dependencies:
4258
+ p-locate: 5.0.0
4259
+
4260
+ lodash.merge@4.6.2: {}
4261
+
4262
+ log-symbols@7.0.1:
4263
+ dependencies:
4264
+ is-unicode-supported: 2.1.0
4265
+ yoctocolors: 2.1.2
4266
+
4267
+ math-intrinsics@1.1.0: {}
4268
+
1040
4269
  merge2@1.4.1: {}
1041
4270
 
1042
4271
  micromatch@4.0.8:
@@ -1044,6 +4273,26 @@ snapshots:
1044
4273
  braces: 3.0.3
1045
4274
  picomatch: 2.3.1
1046
4275
 
4276
+ mime-db@1.52.0: {}
4277
+
4278
+ mime-types@2.1.35:
4279
+ dependencies:
4280
+ mime-db: 1.52.0
4281
+
4282
+ mimic-function@5.0.1: {}
4283
+
4284
+ minimatch@3.1.2:
4285
+ dependencies:
4286
+ brace-expansion: 1.1.12
4287
+
4288
+ minimatch@9.0.5:
4289
+ dependencies:
4290
+ brace-expansion: 2.0.2
4291
+
4292
+ ms@2.1.3: {}
4293
+
4294
+ mustache@4.2.0: {}
4295
+
1047
4296
  mz@2.7.0:
1048
4297
  dependencies:
1049
4298
  any-promise: 1.3.0
@@ -1052,6 +4301,8 @@ snapshots:
1052
4301
 
1053
4302
  nanoid@3.3.11: {}
1054
4303
 
4304
+ natural-compare@1.4.0: {}
4305
+
1055
4306
  node-releases@2.0.27: {}
1056
4307
 
1057
4308
  normalize-path@3.0.0: {}
@@ -1060,12 +4311,103 @@ snapshots:
1060
4311
 
1061
4312
  object-hash@3.0.0: {}
1062
4313
 
4314
+ onetime@7.0.0:
4315
+ dependencies:
4316
+ mimic-function: 5.0.1
4317
+
1063
4318
  only-allow@1.2.2:
1064
4319
  dependencies:
1065
4320
  which-pm-runs: 1.1.0
1066
4321
 
4322
+ openai@6.16.0(zod@4.3.5):
4323
+ optionalDependencies:
4324
+ zod: 4.3.5
4325
+
4326
+ optionator@0.9.4:
4327
+ dependencies:
4328
+ deep-is: 0.1.4
4329
+ fast-levenshtein: 2.0.6
4330
+ levn: 0.4.1
4331
+ prelude-ls: 1.2.1
4332
+ type-check: 0.4.0
4333
+ word-wrap: 1.2.5
4334
+
4335
+ ora@9.0.0:
4336
+ dependencies:
4337
+ chalk: 5.6.2
4338
+ cli-cursor: 5.0.0
4339
+ cli-spinners: 3.4.0
4340
+ is-interactive: 2.0.0
4341
+ is-unicode-supported: 2.1.0
4342
+ log-symbols: 7.0.1
4343
+ stdin-discarder: 0.2.2
4344
+ string-width: 8.1.0
4345
+ strip-ansi: 7.1.2
4346
+
4347
+ p-finally@1.0.0: {}
4348
+
4349
+ p-limit@3.1.0:
4350
+ dependencies:
4351
+ yocto-queue: 0.1.0
4352
+
4353
+ p-locate@5.0.0:
4354
+ dependencies:
4355
+ p-limit: 3.1.0
4356
+
4357
+ p-queue@6.6.2:
4358
+ dependencies:
4359
+ eventemitter3: 4.0.7
4360
+ p-timeout: 3.2.0
4361
+
4362
+ p-timeout@3.2.0:
4363
+ dependencies:
4364
+ p-finally: 1.0.0
4365
+
4366
+ parent-module@1.0.1:
4367
+ dependencies:
4368
+ callsites: 3.1.0
4369
+
4370
+ path-exists@4.0.0: {}
4371
+
4372
+ path-key@3.1.1: {}
4373
+
1067
4374
  path-parse@1.0.7: {}
1068
4375
 
4376
+ pg-cloudflare@1.3.0:
4377
+ optional: true
4378
+
4379
+ pg-connection-string@2.10.0: {}
4380
+
4381
+ pg-int8@1.0.1: {}
4382
+
4383
+ pg-pool@3.11.0(pg@8.17.1):
4384
+ dependencies:
4385
+ pg: 8.17.1
4386
+
4387
+ pg-protocol@1.11.0: {}
4388
+
4389
+ pg-types@2.2.0:
4390
+ dependencies:
4391
+ pg-int8: 1.0.1
4392
+ postgres-array: 2.0.0
4393
+ postgres-bytea: 1.0.1
4394
+ postgres-date: 1.0.7
4395
+ postgres-interval: 1.2.0
4396
+
4397
+ pg@8.17.1:
4398
+ dependencies:
4399
+ pg-connection-string: 2.10.0
4400
+ pg-pool: 3.11.0(pg@8.17.1)
4401
+ pg-protocol: 1.11.0
4402
+ pg-types: 2.2.0
4403
+ pgpass: 1.0.5
4404
+ optionalDependencies:
4405
+ pg-cloudflare: 1.3.0
4406
+
4407
+ pgpass@1.0.5:
4408
+ dependencies:
4409
+ split2: 4.2.0
4410
+
1069
4411
  picocolors@1.1.1: {}
1070
4412
 
1071
4413
  picomatch@2.3.1: {}
@@ -1113,22 +4455,53 @@ snapshots:
1113
4455
  picocolors: 1.1.1
1114
4456
  source-map-js: 1.2.1
1115
4457
 
4458
+ postgres-array@2.0.0: {}
4459
+
4460
+ postgres-bytea@1.0.1: {}
4461
+
4462
+ postgres-date@1.0.7: {}
4463
+
4464
+ postgres-interval@1.2.0:
4465
+ dependencies:
4466
+ xtend: 4.0.2
4467
+
4468
+ prelude-ls@1.2.1: {}
4469
+
4470
+ proxy-from-env@1.1.0: {}
4471
+
4472
+ punycode@2.3.1: {}
4473
+
1116
4474
  queue-microtask@1.2.3: {}
1117
4475
 
1118
4476
  read-cache@1.0.0:
1119
4477
  dependencies:
1120
4478
  pify: 2.3.0
1121
4479
 
4480
+ readable-stream@3.6.2:
4481
+ dependencies:
4482
+ inherits: 2.0.4
4483
+ string_decoder: 1.3.0
4484
+ util-deprecate: 1.0.2
4485
+
1122
4486
  readdirp@3.6.0:
1123
4487
  dependencies:
1124
4488
  picomatch: 2.3.1
1125
4489
 
4490
+ resolve-from@4.0.0: {}
4491
+
4492
+ resolve-pkg-maps@1.0.0: {}
4493
+
1126
4494
  resolve@1.22.11:
1127
4495
  dependencies:
1128
4496
  is-core-module: 2.16.1
1129
4497
  path-parse: 1.0.7
1130
4498
  supports-preserve-symlinks-flag: 1.0.0
1131
4499
 
4500
+ restore-cursor@5.1.0:
4501
+ dependencies:
4502
+ onetime: 7.0.0
4503
+ signal-exit: 4.1.0
4504
+
1132
4505
  reusify@1.1.0: {}
1133
4506
 
1134
4507
  rollup@4.54.0:
@@ -1163,8 +4536,55 @@ snapshots:
1163
4536
  dependencies:
1164
4537
  queue-microtask: 1.2.3
1165
4538
 
4539
+ safe-buffer@5.2.1: {}
4540
+
4541
+ semver@7.7.3: {}
4542
+
4543
+ shebang-command@2.0.0:
4544
+ dependencies:
4545
+ shebang-regex: 3.0.0
4546
+
4547
+ shebang-regex@3.0.0: {}
4548
+
4549
+ signal-exit@4.1.0: {}
4550
+
4551
+ simple-wcswidth@1.1.2: {}
4552
+
1166
4553
  source-map-js@1.2.1: {}
1167
4554
 
4555
+ source-map-support@0.5.21:
4556
+ dependencies:
4557
+ buffer-from: 1.1.2
4558
+ source-map: 0.6.1
4559
+
4560
+ source-map@0.6.1: {}
4561
+
4562
+ split2@4.2.0: {}
4563
+
4564
+ stdin-discarder@0.2.2: {}
4565
+
4566
+ stream-browserify@3.0.0:
4567
+ dependencies:
4568
+ inherits: 2.0.4
4569
+ readable-stream: 3.6.2
4570
+
4571
+ string-width@8.1.0:
4572
+ dependencies:
4573
+ get-east-asian-width: 1.4.0
4574
+ strip-ansi: 7.1.2
4575
+
4576
+ string_decoder@1.3.0:
4577
+ dependencies:
4578
+ safe-buffer: 5.2.1
4579
+
4580
+ strip-ansi@7.1.2:
4581
+ dependencies:
4582
+ ansi-regex: 6.2.2
4583
+
4584
+ strip-json-comments@3.1.1: {}
4585
+
4586
+ strnum@2.1.2: {}
4587
+
1168
4588
  sucrase@3.35.1:
1169
4589
  dependencies:
1170
4590
  '@jridgewell/gen-mapping': 0.3.13
@@ -1175,6 +4595,10 @@ snapshots:
1175
4595
  tinyglobby: 0.2.15
1176
4596
  ts-interface-checker: 0.1.13
1177
4597
 
4598
+ supports-color@7.2.0:
4599
+ dependencies:
4600
+ has-flag: 4.0.0
4601
+
1178
4602
  supports-preserve-symlinks-flag@1.0.0: {}
1179
4603
 
1180
4604
  tailwindcss@3.4.19:
@@ -1222,8 +4646,31 @@ snapshots:
1222
4646
  dependencies:
1223
4647
  is-number: 7.0.0
1224
4648
 
4649
+ transliteration@2.6.0: {}
4650
+
4651
+ ts-api-utils@2.4.0(typescript@5.9.3):
4652
+ dependencies:
4653
+ typescript: 5.9.3
4654
+
1225
4655
  ts-interface-checker@0.1.13: {}
1226
4656
 
4657
+ tslib@2.8.1: {}
4658
+
4659
+ type-check@0.4.0:
4660
+ dependencies:
4661
+ prelude-ls: 1.2.1
4662
+
4663
+ typescript-eslint@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
4664
+ dependencies:
4665
+ '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
4666
+ '@typescript-eslint/parser': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
4667
+ '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
4668
+ '@typescript-eslint/utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
4669
+ eslint: 9.39.2(jiti@1.21.7)
4670
+ typescript: 5.9.3
4671
+ transitivePeerDependencies:
4672
+ - supports-color
4673
+
1227
4674
  typescript@5.9.3: {}
1228
4675
 
1229
4676
  update-browserslist-db@1.2.3(browserslist@4.28.1):
@@ -1232,8 +4679,14 @@ snapshots:
1232
4679
  escalade: 3.2.0
1233
4680
  picocolors: 1.1.1
1234
4681
 
4682
+ uri-js@4.4.1:
4683
+ dependencies:
4684
+ punycode: 2.3.1
4685
+
1235
4686
  util-deprecate@1.0.2: {}
1236
4687
 
4688
+ uuid@10.0.0: {}
4689
+
1237
4690
  vite@7.3.0(jiti@1.21.7):
1238
4691
  dependencies:
1239
4692
  esbuild: 0.27.2
@@ -1247,3 +4700,17 @@ snapshots:
1247
4700
  jiti: 1.21.7
1248
4701
 
1249
4702
  which-pm-runs@1.1.0: {}
4703
+
4704
+ which@2.0.2:
4705
+ dependencies:
4706
+ isexe: 2.0.0
4707
+
4708
+ word-wrap@1.2.5: {}
4709
+
4710
+ xtend@4.0.2: {}
4711
+
4712
+ yocto-queue@0.1.0: {}
4713
+
4714
+ yoctocolors@2.1.2: {}
4715
+
4716
+ zod@4.3.5: {}