@dobby.ai/dobby 0.1.0

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 (174) hide show
  1. package/.env.example +9 -0
  2. package/AGENTS.md +267 -0
  3. package/README.md +382 -0
  4. package/ROADMAP.md +34 -0
  5. package/config/cron.example.json +9 -0
  6. package/config/gateway.example.json +128 -0
  7. package/config/models.custom.example.json +27 -0
  8. package/dist/src/agent/event-forwarder.js +341 -0
  9. package/dist/src/agent/tests/event-forwarder.test.js +113 -0
  10. package/dist/src/cli/commands/config.js +243 -0
  11. package/dist/src/cli/commands/configure.js +61 -0
  12. package/dist/src/cli/commands/cron.js +288 -0
  13. package/dist/src/cli/commands/doctor.js +189 -0
  14. package/dist/src/cli/commands/extension.js +151 -0
  15. package/dist/src/cli/commands/init.js +286 -0
  16. package/dist/src/cli/commands/start.js +177 -0
  17. package/dist/src/cli/commands/topology.js +254 -0
  18. package/dist/src/cli/index.js +8 -0
  19. package/dist/src/cli/program.js +386 -0
  20. package/dist/src/cli/shared/config-io.js +223 -0
  21. package/dist/src/cli/shared/config-mutators.js +345 -0
  22. package/dist/src/cli/shared/config-path.js +207 -0
  23. package/dist/src/cli/shared/config-schema.js +159 -0
  24. package/dist/src/cli/shared/config-types.js +1 -0
  25. package/dist/src/cli/shared/configure-sections.js +429 -0
  26. package/dist/src/cli/shared/discord-config.js +12 -0
  27. package/dist/src/cli/shared/init-catalog.js +115 -0
  28. package/dist/src/cli/shared/init-models-file.js +65 -0
  29. package/dist/src/cli/shared/presets.js +86 -0
  30. package/dist/src/cli/shared/runtime.js +29 -0
  31. package/dist/src/cli/shared/schema-prompts.js +325 -0
  32. package/dist/src/cli/tests/config-command.test.js +42 -0
  33. package/dist/src/cli/tests/config-io.test.js +64 -0
  34. package/dist/src/cli/tests/config-mutators.test.js +47 -0
  35. package/dist/src/cli/tests/config-path.test.js +21 -0
  36. package/dist/src/cli/tests/discord-config.test.js +23 -0
  37. package/dist/src/cli/tests/doctor.test.js +107 -0
  38. package/dist/src/cli/tests/init-catalog.test.js +87 -0
  39. package/dist/src/cli/tests/presets.test.js +41 -0
  40. package/dist/src/cli/tests/program-options.test.js +92 -0
  41. package/dist/src/cli/tests/routing-config.test.js +199 -0
  42. package/dist/src/cli/tests/routing-legacy.test.js +191 -0
  43. package/dist/src/core/control-command.js +12 -0
  44. package/dist/src/core/dedup-store.js +92 -0
  45. package/dist/src/core/gateway.js +432 -0
  46. package/dist/src/core/routing.js +306 -0
  47. package/dist/src/core/runtime-registry.js +119 -0
  48. package/dist/src/core/tests/control-command.test.js +17 -0
  49. package/dist/src/core/tests/gateway-update-strategy.test.js +167 -0
  50. package/dist/src/core/tests/runtime-registry.test.js +116 -0
  51. package/dist/src/core/tests/typing-controller.test.js +103 -0
  52. package/dist/src/core/types.js +1 -0
  53. package/dist/src/core/typing-controller.js +88 -0
  54. package/dist/src/cron/config.js +114 -0
  55. package/dist/src/cron/schedule.js +49 -0
  56. package/dist/src/cron/service.js +196 -0
  57. package/dist/src/cron/store.js +142 -0
  58. package/dist/src/cron/types.js +1 -0
  59. package/dist/src/extension/loader.js +97 -0
  60. package/dist/src/extension/manager.js +269 -0
  61. package/dist/src/extension/manifest.js +21 -0
  62. package/dist/src/extension/registry.js +137 -0
  63. package/dist/src/main.js +6 -0
  64. package/dist/src/sandbox/executor.js +1 -0
  65. package/dist/src/sandbox/host-executor.js +111 -0
  66. package/docs/BOXLITE_SANDBOX_FEASIBILITY.md +175 -0
  67. package/docs/CRON_SCHEDULER_DESIGN.md +374 -0
  68. package/docs/DOCKER_SANDBOX_vs_BOXLITE.md +77 -0
  69. package/docs/EXTENSION_SYSTEM_ARCHITECTURE.md +119 -0
  70. package/docs/MVP.md +135 -0
  71. package/docs/RUNBOOK.md +242 -0
  72. package/docs/TEAMWORK_HANDOFF_DESIGN.md +440 -0
  73. package/package.json +43 -0
  74. package/plugins/connector-discord/dobby.manifest.json +18 -0
  75. package/plugins/connector-discord/index.js +1 -0
  76. package/plugins/connector-discord/package-lock.json +360 -0
  77. package/plugins/connector-discord/package.json +38 -0
  78. package/plugins/connector-discord/src/connector.ts +350 -0
  79. package/plugins/connector-discord/src/contribution.ts +21 -0
  80. package/plugins/connector-discord/src/mapper.ts +102 -0
  81. package/plugins/connector-discord/tsconfig.json +19 -0
  82. package/plugins/connector-feishu/dobby.manifest.json +18 -0
  83. package/plugins/connector-feishu/index.js +1 -0
  84. package/plugins/connector-feishu/package-lock.json +618 -0
  85. package/plugins/connector-feishu/package.json +38 -0
  86. package/plugins/connector-feishu/src/connector.ts +343 -0
  87. package/plugins/connector-feishu/src/contribution.ts +26 -0
  88. package/plugins/connector-feishu/src/mapper.ts +401 -0
  89. package/plugins/connector-feishu/tsconfig.json +19 -0
  90. package/plugins/plugin-sdk/index.d.ts +261 -0
  91. package/plugins/plugin-sdk/index.js +1 -0
  92. package/plugins/plugin-sdk/package-lock.json +12 -0
  93. package/plugins/plugin-sdk/package.json +22 -0
  94. package/plugins/provider-claude/dobby.manifest.json +17 -0
  95. package/plugins/provider-claude/index.js +1 -0
  96. package/plugins/provider-claude/package-lock.json +3398 -0
  97. package/plugins/provider-claude/package.json +39 -0
  98. package/plugins/provider-claude/src/contribution.ts +1018 -0
  99. package/plugins/provider-claude/tsconfig.json +19 -0
  100. package/plugins/provider-claude-cli/dobby.manifest.json +17 -0
  101. package/plugins/provider-claude-cli/index.js +1 -0
  102. package/plugins/provider-claude-cli/package-lock.json +2898 -0
  103. package/plugins/provider-claude-cli/package.json +38 -0
  104. package/plugins/provider-claude-cli/src/contribution.ts +1673 -0
  105. package/plugins/provider-claude-cli/tsconfig.json +19 -0
  106. package/plugins/provider-pi/dobby.manifest.json +17 -0
  107. package/plugins/provider-pi/index.js +1 -0
  108. package/plugins/provider-pi/package-lock.json +3877 -0
  109. package/plugins/provider-pi/package.json +40 -0
  110. package/plugins/provider-pi/src/contribution.ts +476 -0
  111. package/plugins/provider-pi/tsconfig.json +19 -0
  112. package/plugins/sandbox-core/boxlite.js +1 -0
  113. package/plugins/sandbox-core/dobby.manifest.json +17 -0
  114. package/plugins/sandbox-core/docker.js +1 -0
  115. package/plugins/sandbox-core/package-lock.json +136 -0
  116. package/plugins/sandbox-core/package.json +39 -0
  117. package/plugins/sandbox-core/src/boxlite-context.ts +2 -0
  118. package/plugins/sandbox-core/src/boxlite-contribution.ts +53 -0
  119. package/plugins/sandbox-core/src/boxlite-executor.ts +911 -0
  120. package/plugins/sandbox-core/src/docker-contribution.ts +43 -0
  121. package/plugins/sandbox-core/src/docker-executor.ts +217 -0
  122. package/plugins/sandbox-core/tsconfig.json +19 -0
  123. package/scripts/local-extensions.mjs +168 -0
  124. package/src/agent/event-forwarder.ts +414 -0
  125. package/src/cli/commands/config.ts +328 -0
  126. package/src/cli/commands/configure.ts +92 -0
  127. package/src/cli/commands/cron.ts +410 -0
  128. package/src/cli/commands/doctor.ts +230 -0
  129. package/src/cli/commands/extension.ts +205 -0
  130. package/src/cli/commands/init.ts +396 -0
  131. package/src/cli/commands/start.ts +223 -0
  132. package/src/cli/commands/topology.ts +383 -0
  133. package/src/cli/index.ts +9 -0
  134. package/src/cli/program.ts +465 -0
  135. package/src/cli/shared/config-io.ts +277 -0
  136. package/src/cli/shared/config-mutators.ts +440 -0
  137. package/src/cli/shared/config-schema.ts +228 -0
  138. package/src/cli/shared/config-types.ts +121 -0
  139. package/src/cli/shared/configure-sections.ts +551 -0
  140. package/src/cli/shared/discord-config.ts +14 -0
  141. package/src/cli/shared/init-catalog.ts +189 -0
  142. package/src/cli/shared/init-models-file.ts +77 -0
  143. package/src/cli/shared/runtime.ts +33 -0
  144. package/src/cli/shared/schema-prompts.ts +414 -0
  145. package/src/cli/tests/config-command.test.ts +56 -0
  146. package/src/cli/tests/config-io.test.ts +92 -0
  147. package/src/cli/tests/config-mutators.test.ts +59 -0
  148. package/src/cli/tests/doctor.test.ts +120 -0
  149. package/src/cli/tests/init-catalog.test.ts +96 -0
  150. package/src/cli/tests/program-options.test.ts +113 -0
  151. package/src/cli/tests/routing-config.test.ts +209 -0
  152. package/src/core/control-command.ts +12 -0
  153. package/src/core/dedup-store.ts +103 -0
  154. package/src/core/gateway.ts +607 -0
  155. package/src/core/routing.ts +379 -0
  156. package/src/core/runtime-registry.ts +141 -0
  157. package/src/core/tests/control-command.test.ts +20 -0
  158. package/src/core/tests/runtime-registry.test.ts +140 -0
  159. package/src/core/tests/typing-controller.test.ts +129 -0
  160. package/src/core/types.ts +318 -0
  161. package/src/core/typing-controller.ts +119 -0
  162. package/src/cron/config.ts +154 -0
  163. package/src/cron/schedule.ts +61 -0
  164. package/src/cron/service.ts +249 -0
  165. package/src/cron/store.ts +155 -0
  166. package/src/cron/types.ts +60 -0
  167. package/src/extension/loader.ts +145 -0
  168. package/src/extension/manager.ts +355 -0
  169. package/src/extension/manifest.ts +26 -0
  170. package/src/extension/registry.ts +229 -0
  171. package/src/main.ts +8 -0
  172. package/src/sandbox/executor.ts +44 -0
  173. package/src/sandbox/host-executor.ts +118 -0
  174. package/tsconfig.json +18 -0
@@ -0,0 +1,3877 @@
1
+ {
2
+ "name": "@dobby.ai/provider-pi",
3
+ "version": "0.1.2",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@dobby.ai/provider-pi",
9
+ "version": "0.1.2",
10
+ "dependencies": {
11
+ "@mariozechner/pi-agent-core": "^0.53.0",
12
+ "@mariozechner/pi-ai": "^0.53.0",
13
+ "@mariozechner/pi-coding-agent": "^0.53.0",
14
+ "zod": "^4.3.6"
15
+ },
16
+ "devDependencies": {
17
+ "@dobby.ai/plugin-sdk": "file:../plugin-sdk",
18
+ "@types/node": "^22.10.5",
19
+ "typescript": "^5.9.2"
20
+ },
21
+ "peerDependencies": {
22
+ "@dobby.ai/plugin-sdk": "^0.1.0"
23
+ },
24
+ "peerDependenciesMeta": {
25
+ "@dobby.ai/plugin-sdk": {
26
+ "optional": true
27
+ }
28
+ }
29
+ },
30
+ "../plugin-sdk": {
31
+ "name": "@dobby.ai/plugin-sdk",
32
+ "version": "0.1.2",
33
+ "dev": true
34
+ },
35
+ "node_modules/@anthropic-ai/sdk": {
36
+ "version": "0.73.0",
37
+ "resolved": "https://registry.npmmirror.com/@anthropic-ai/sdk/-/sdk-0.73.0.tgz",
38
+ "integrity": "sha512-URURVzhxXGJDGUGFunIOtBlSl7KWvZiAAKY/ttTkZAkXT9bTPqdk2eK0b8qqSxXpikh3QKPnPYpiyX98zf5ebw==",
39
+ "license": "MIT",
40
+ "dependencies": {
41
+ "json-schema-to-ts": "^3.1.1"
42
+ },
43
+ "bin": {
44
+ "anthropic-ai-sdk": "bin/cli"
45
+ },
46
+ "peerDependencies": {
47
+ "zod": "^3.25.0 || ^4.0.0"
48
+ },
49
+ "peerDependenciesMeta": {
50
+ "zod": {
51
+ "optional": true
52
+ }
53
+ }
54
+ },
55
+ "node_modules/@aws-crypto/crc32": {
56
+ "version": "5.2.0",
57
+ "resolved": "https://registry.npmmirror.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
58
+ "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
59
+ "license": "Apache-2.0",
60
+ "dependencies": {
61
+ "@aws-crypto/util": "^5.2.0",
62
+ "@aws-sdk/types": "^3.222.0",
63
+ "tslib": "^2.6.2"
64
+ },
65
+ "engines": {
66
+ "node": ">=16.0.0"
67
+ }
68
+ },
69
+ "node_modules/@aws-crypto/sha256-browser": {
70
+ "version": "5.2.0",
71
+ "resolved": "https://registry.npmmirror.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
72
+ "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
73
+ "license": "Apache-2.0",
74
+ "dependencies": {
75
+ "@aws-crypto/sha256-js": "^5.2.0",
76
+ "@aws-crypto/supports-web-crypto": "^5.2.0",
77
+ "@aws-crypto/util": "^5.2.0",
78
+ "@aws-sdk/types": "^3.222.0",
79
+ "@aws-sdk/util-locate-window": "^3.0.0",
80
+ "@smithy/util-utf8": "^2.0.0",
81
+ "tslib": "^2.6.2"
82
+ }
83
+ },
84
+ "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer": {
85
+ "version": "2.2.0",
86
+ "resolved": "https://registry.npmmirror.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
87
+ "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
88
+ "license": "Apache-2.0",
89
+ "dependencies": {
90
+ "tslib": "^2.6.2"
91
+ },
92
+ "engines": {
93
+ "node": ">=14.0.0"
94
+ }
95
+ },
96
+ "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from": {
97
+ "version": "2.2.0",
98
+ "resolved": "https://registry.npmmirror.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
99
+ "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
100
+ "license": "Apache-2.0",
101
+ "dependencies": {
102
+ "@smithy/is-array-buffer": "^2.2.0",
103
+ "tslib": "^2.6.2"
104
+ },
105
+ "engines": {
106
+ "node": ">=14.0.0"
107
+ }
108
+ },
109
+ "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": {
110
+ "version": "2.3.0",
111
+ "resolved": "https://registry.npmmirror.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
112
+ "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
113
+ "license": "Apache-2.0",
114
+ "dependencies": {
115
+ "@smithy/util-buffer-from": "^2.2.0",
116
+ "tslib": "^2.6.2"
117
+ },
118
+ "engines": {
119
+ "node": ">=14.0.0"
120
+ }
121
+ },
122
+ "node_modules/@aws-crypto/sha256-js": {
123
+ "version": "5.2.0",
124
+ "resolved": "https://registry.npmmirror.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
125
+ "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
126
+ "license": "Apache-2.0",
127
+ "dependencies": {
128
+ "@aws-crypto/util": "^5.2.0",
129
+ "@aws-sdk/types": "^3.222.0",
130
+ "tslib": "^2.6.2"
131
+ },
132
+ "engines": {
133
+ "node": ">=16.0.0"
134
+ }
135
+ },
136
+ "node_modules/@aws-crypto/supports-web-crypto": {
137
+ "version": "5.2.0",
138
+ "resolved": "https://registry.npmmirror.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
139
+ "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
140
+ "license": "Apache-2.0",
141
+ "dependencies": {
142
+ "tslib": "^2.6.2"
143
+ }
144
+ },
145
+ "node_modules/@aws-crypto/util": {
146
+ "version": "5.2.0",
147
+ "resolved": "https://registry.npmmirror.com/@aws-crypto/util/-/util-5.2.0.tgz",
148
+ "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
149
+ "license": "Apache-2.0",
150
+ "dependencies": {
151
+ "@aws-sdk/types": "^3.222.0",
152
+ "@smithy/util-utf8": "^2.0.0",
153
+ "tslib": "^2.6.2"
154
+ }
155
+ },
156
+ "node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer": {
157
+ "version": "2.2.0",
158
+ "resolved": "https://registry.npmmirror.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
159
+ "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
160
+ "license": "Apache-2.0",
161
+ "dependencies": {
162
+ "tslib": "^2.6.2"
163
+ },
164
+ "engines": {
165
+ "node": ">=14.0.0"
166
+ }
167
+ },
168
+ "node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from": {
169
+ "version": "2.2.0",
170
+ "resolved": "https://registry.npmmirror.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
171
+ "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
172
+ "license": "Apache-2.0",
173
+ "dependencies": {
174
+ "@smithy/is-array-buffer": "^2.2.0",
175
+ "tslib": "^2.6.2"
176
+ },
177
+ "engines": {
178
+ "node": ">=14.0.0"
179
+ }
180
+ },
181
+ "node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": {
182
+ "version": "2.3.0",
183
+ "resolved": "https://registry.npmmirror.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
184
+ "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
185
+ "license": "Apache-2.0",
186
+ "dependencies": {
187
+ "@smithy/util-buffer-from": "^2.2.0",
188
+ "tslib": "^2.6.2"
189
+ },
190
+ "engines": {
191
+ "node": ">=14.0.0"
192
+ }
193
+ },
194
+ "node_modules/@aws-sdk/client-bedrock-runtime": {
195
+ "version": "3.994.0",
196
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.994.0.tgz",
197
+ "integrity": "sha512-ag7Qx78m1K3Dv7xlFgeHS4jBdopGZUISgVBMUy7Cj4fIgVH9EBmsc5K4hWozL8BJQctWke8Wsl96O7Gd+HCGhg==",
198
+ "license": "Apache-2.0",
199
+ "dependencies": {
200
+ "@aws-crypto/sha256-browser": "5.2.0",
201
+ "@aws-crypto/sha256-js": "5.2.0",
202
+ "@aws-sdk/core": "^3.973.11",
203
+ "@aws-sdk/credential-provider-node": "^3.972.10",
204
+ "@aws-sdk/eventstream-handler-node": "^3.972.5",
205
+ "@aws-sdk/middleware-eventstream": "^3.972.3",
206
+ "@aws-sdk/middleware-host-header": "^3.972.3",
207
+ "@aws-sdk/middleware-logger": "^3.972.3",
208
+ "@aws-sdk/middleware-recursion-detection": "^3.972.3",
209
+ "@aws-sdk/middleware-user-agent": "^3.972.11",
210
+ "@aws-sdk/middleware-websocket": "^3.972.6",
211
+ "@aws-sdk/region-config-resolver": "^3.972.3",
212
+ "@aws-sdk/token-providers": "3.994.0",
213
+ "@aws-sdk/types": "^3.973.1",
214
+ "@aws-sdk/util-endpoints": "3.994.0",
215
+ "@aws-sdk/util-user-agent-browser": "^3.972.3",
216
+ "@aws-sdk/util-user-agent-node": "^3.972.9",
217
+ "@smithy/config-resolver": "^4.4.6",
218
+ "@smithy/core": "^3.23.2",
219
+ "@smithy/eventstream-serde-browser": "^4.2.8",
220
+ "@smithy/eventstream-serde-config-resolver": "^4.3.8",
221
+ "@smithy/eventstream-serde-node": "^4.2.8",
222
+ "@smithy/fetch-http-handler": "^5.3.9",
223
+ "@smithy/hash-node": "^4.2.8",
224
+ "@smithy/invalid-dependency": "^4.2.8",
225
+ "@smithy/middleware-content-length": "^4.2.8",
226
+ "@smithy/middleware-endpoint": "^4.4.16",
227
+ "@smithy/middleware-retry": "^4.4.33",
228
+ "@smithy/middleware-serde": "^4.2.9",
229
+ "@smithy/middleware-stack": "^4.2.8",
230
+ "@smithy/node-config-provider": "^4.3.8",
231
+ "@smithy/node-http-handler": "^4.4.10",
232
+ "@smithy/protocol-http": "^5.3.8",
233
+ "@smithy/smithy-client": "^4.11.5",
234
+ "@smithy/types": "^4.12.0",
235
+ "@smithy/url-parser": "^4.2.8",
236
+ "@smithy/util-base64": "^4.3.0",
237
+ "@smithy/util-body-length-browser": "^4.2.0",
238
+ "@smithy/util-body-length-node": "^4.2.1",
239
+ "@smithy/util-defaults-mode-browser": "^4.3.32",
240
+ "@smithy/util-defaults-mode-node": "^4.2.35",
241
+ "@smithy/util-endpoints": "^3.2.8",
242
+ "@smithy/util-middleware": "^4.2.8",
243
+ "@smithy/util-retry": "^4.2.8",
244
+ "@smithy/util-stream": "^4.5.12",
245
+ "@smithy/util-utf8": "^4.2.0",
246
+ "tslib": "^2.6.2"
247
+ },
248
+ "engines": {
249
+ "node": ">=20.0.0"
250
+ }
251
+ },
252
+ "node_modules/@aws-sdk/client-sso": {
253
+ "version": "3.993.0",
254
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/client-sso/-/client-sso-3.993.0.tgz",
255
+ "integrity": "sha512-VLUN+wIeNX24fg12SCbzTUBnBENlL014yMKZvRhPkcn4wHR6LKgNrjsG3fZ03Xs0XoKaGtNFi1VVrq666sGBoQ==",
256
+ "license": "Apache-2.0",
257
+ "dependencies": {
258
+ "@aws-crypto/sha256-browser": "5.2.0",
259
+ "@aws-crypto/sha256-js": "5.2.0",
260
+ "@aws-sdk/core": "^3.973.11",
261
+ "@aws-sdk/middleware-host-header": "^3.972.3",
262
+ "@aws-sdk/middleware-logger": "^3.972.3",
263
+ "@aws-sdk/middleware-recursion-detection": "^3.972.3",
264
+ "@aws-sdk/middleware-user-agent": "^3.972.11",
265
+ "@aws-sdk/region-config-resolver": "^3.972.3",
266
+ "@aws-sdk/types": "^3.973.1",
267
+ "@aws-sdk/util-endpoints": "3.993.0",
268
+ "@aws-sdk/util-user-agent-browser": "^3.972.3",
269
+ "@aws-sdk/util-user-agent-node": "^3.972.9",
270
+ "@smithy/config-resolver": "^4.4.6",
271
+ "@smithy/core": "^3.23.2",
272
+ "@smithy/fetch-http-handler": "^5.3.9",
273
+ "@smithy/hash-node": "^4.2.8",
274
+ "@smithy/invalid-dependency": "^4.2.8",
275
+ "@smithy/middleware-content-length": "^4.2.8",
276
+ "@smithy/middleware-endpoint": "^4.4.16",
277
+ "@smithy/middleware-retry": "^4.4.33",
278
+ "@smithy/middleware-serde": "^4.2.9",
279
+ "@smithy/middleware-stack": "^4.2.8",
280
+ "@smithy/node-config-provider": "^4.3.8",
281
+ "@smithy/node-http-handler": "^4.4.10",
282
+ "@smithy/protocol-http": "^5.3.8",
283
+ "@smithy/smithy-client": "^4.11.5",
284
+ "@smithy/types": "^4.12.0",
285
+ "@smithy/url-parser": "^4.2.8",
286
+ "@smithy/util-base64": "^4.3.0",
287
+ "@smithy/util-body-length-browser": "^4.2.0",
288
+ "@smithy/util-body-length-node": "^4.2.1",
289
+ "@smithy/util-defaults-mode-browser": "^4.3.32",
290
+ "@smithy/util-defaults-mode-node": "^4.2.35",
291
+ "@smithy/util-endpoints": "^3.2.8",
292
+ "@smithy/util-middleware": "^4.2.8",
293
+ "@smithy/util-retry": "^4.2.8",
294
+ "@smithy/util-utf8": "^4.2.0",
295
+ "tslib": "^2.6.2"
296
+ },
297
+ "engines": {
298
+ "node": ">=20.0.0"
299
+ }
300
+ },
301
+ "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints": {
302
+ "version": "3.993.0",
303
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-endpoints/-/util-endpoints-3.993.0.tgz",
304
+ "integrity": "sha512-j6vioBeRZ4eHX4SWGvGPpwGg/xSOcK7f1GL0VM+rdf3ZFTIsUEhCFmD78B+5r2PgztcECSzEfvHQX01k8dPQPw==",
305
+ "license": "Apache-2.0",
306
+ "dependencies": {
307
+ "@aws-sdk/types": "^3.973.1",
308
+ "@smithy/types": "^4.12.0",
309
+ "@smithy/url-parser": "^4.2.8",
310
+ "@smithy/util-endpoints": "^3.2.8",
311
+ "tslib": "^2.6.2"
312
+ },
313
+ "engines": {
314
+ "node": ">=20.0.0"
315
+ }
316
+ },
317
+ "node_modules/@aws-sdk/core": {
318
+ "version": "3.973.11",
319
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/core/-/core-3.973.11.tgz",
320
+ "integrity": "sha512-wdQ8vrvHkKIV7yNUKXyjPWKCdYEUrZTHJ8Ojd5uJxXp9vqPCkUR1dpi1NtOLcrDgueJH7MUH5lQZxshjFPSbDA==",
321
+ "license": "Apache-2.0",
322
+ "dependencies": {
323
+ "@aws-sdk/types": "^3.973.1",
324
+ "@aws-sdk/xml-builder": "^3.972.5",
325
+ "@smithy/core": "^3.23.2",
326
+ "@smithy/node-config-provider": "^4.3.8",
327
+ "@smithy/property-provider": "^4.2.8",
328
+ "@smithy/protocol-http": "^5.3.8",
329
+ "@smithy/signature-v4": "^5.3.8",
330
+ "@smithy/smithy-client": "^4.11.5",
331
+ "@smithy/types": "^4.12.0",
332
+ "@smithy/util-base64": "^4.3.0",
333
+ "@smithy/util-middleware": "^4.2.8",
334
+ "@smithy/util-utf8": "^4.2.0",
335
+ "tslib": "^2.6.2"
336
+ },
337
+ "engines": {
338
+ "node": ">=20.0.0"
339
+ }
340
+ },
341
+ "node_modules/@aws-sdk/credential-provider-env": {
342
+ "version": "3.972.9",
343
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.9.tgz",
344
+ "integrity": "sha512-ZptrOwQynfupubvcngLkbdIq/aXvl/czdpEG8XJ8mN8Nb19BR0jaK0bR+tfuMU36Ez9q4xv7GGkHFqEEP2hUUQ==",
345
+ "license": "Apache-2.0",
346
+ "dependencies": {
347
+ "@aws-sdk/core": "^3.973.11",
348
+ "@aws-sdk/types": "^3.973.1",
349
+ "@smithy/property-provider": "^4.2.8",
350
+ "@smithy/types": "^4.12.0",
351
+ "tslib": "^2.6.2"
352
+ },
353
+ "engines": {
354
+ "node": ">=20.0.0"
355
+ }
356
+ },
357
+ "node_modules/@aws-sdk/credential-provider-http": {
358
+ "version": "3.972.11",
359
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.11.tgz",
360
+ "integrity": "sha512-hECWoOoH386bGr89NQc9vA/abkGf5TJrMREt+lhNcnSNmoBS04fK7vc3LrJBSQAUGGVj0Tz3f4dHB3w5veovig==",
361
+ "license": "Apache-2.0",
362
+ "dependencies": {
363
+ "@aws-sdk/core": "^3.973.11",
364
+ "@aws-sdk/types": "^3.973.1",
365
+ "@smithy/fetch-http-handler": "^5.3.9",
366
+ "@smithy/node-http-handler": "^4.4.10",
367
+ "@smithy/property-provider": "^4.2.8",
368
+ "@smithy/protocol-http": "^5.3.8",
369
+ "@smithy/smithy-client": "^4.11.5",
370
+ "@smithy/types": "^4.12.0",
371
+ "@smithy/util-stream": "^4.5.12",
372
+ "tslib": "^2.6.2"
373
+ },
374
+ "engines": {
375
+ "node": ">=20.0.0"
376
+ }
377
+ },
378
+ "node_modules/@aws-sdk/credential-provider-ini": {
379
+ "version": "3.972.9",
380
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.9.tgz",
381
+ "integrity": "sha512-zr1csEu9n4eDiHMTYJabX1mDGuGLgjgUnNckIivvk43DocJC9/f6DefFrnUPZXE+GHtbW50YuXb+JIxKykU74A==",
382
+ "license": "Apache-2.0",
383
+ "dependencies": {
384
+ "@aws-sdk/core": "^3.973.11",
385
+ "@aws-sdk/credential-provider-env": "^3.972.9",
386
+ "@aws-sdk/credential-provider-http": "^3.972.11",
387
+ "@aws-sdk/credential-provider-login": "^3.972.9",
388
+ "@aws-sdk/credential-provider-process": "^3.972.9",
389
+ "@aws-sdk/credential-provider-sso": "^3.972.9",
390
+ "@aws-sdk/credential-provider-web-identity": "^3.972.9",
391
+ "@aws-sdk/nested-clients": "3.993.0",
392
+ "@aws-sdk/types": "^3.973.1",
393
+ "@smithy/credential-provider-imds": "^4.2.8",
394
+ "@smithy/property-provider": "^4.2.8",
395
+ "@smithy/shared-ini-file-loader": "^4.4.3",
396
+ "@smithy/types": "^4.12.0",
397
+ "tslib": "^2.6.2"
398
+ },
399
+ "engines": {
400
+ "node": ">=20.0.0"
401
+ }
402
+ },
403
+ "node_modules/@aws-sdk/credential-provider-login": {
404
+ "version": "3.972.9",
405
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.9.tgz",
406
+ "integrity": "sha512-m4RIpVgZChv0vWS/HKChg1xLgZPpx8Z+ly9Fv7FwA8SOfuC6I3htcSaBz2Ch4bneRIiBUhwP4ziUo0UZgtJStQ==",
407
+ "license": "Apache-2.0",
408
+ "dependencies": {
409
+ "@aws-sdk/core": "^3.973.11",
410
+ "@aws-sdk/nested-clients": "3.993.0",
411
+ "@aws-sdk/types": "^3.973.1",
412
+ "@smithy/property-provider": "^4.2.8",
413
+ "@smithy/protocol-http": "^5.3.8",
414
+ "@smithy/shared-ini-file-loader": "^4.4.3",
415
+ "@smithy/types": "^4.12.0",
416
+ "tslib": "^2.6.2"
417
+ },
418
+ "engines": {
419
+ "node": ">=20.0.0"
420
+ }
421
+ },
422
+ "node_modules/@aws-sdk/credential-provider-node": {
423
+ "version": "3.972.10",
424
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.10.tgz",
425
+ "integrity": "sha512-70nCESlvnzjo4LjJ8By8MYIiBogkYPSXl3WmMZfH9RZcB/Nt9qVWbFpYj6Fk1vLa4Vk8qagFVeXgxdieMxG1QA==",
426
+ "license": "Apache-2.0",
427
+ "dependencies": {
428
+ "@aws-sdk/credential-provider-env": "^3.972.9",
429
+ "@aws-sdk/credential-provider-http": "^3.972.11",
430
+ "@aws-sdk/credential-provider-ini": "^3.972.9",
431
+ "@aws-sdk/credential-provider-process": "^3.972.9",
432
+ "@aws-sdk/credential-provider-sso": "^3.972.9",
433
+ "@aws-sdk/credential-provider-web-identity": "^3.972.9",
434
+ "@aws-sdk/types": "^3.973.1",
435
+ "@smithy/credential-provider-imds": "^4.2.8",
436
+ "@smithy/property-provider": "^4.2.8",
437
+ "@smithy/shared-ini-file-loader": "^4.4.3",
438
+ "@smithy/types": "^4.12.0",
439
+ "tslib": "^2.6.2"
440
+ },
441
+ "engines": {
442
+ "node": ">=20.0.0"
443
+ }
444
+ },
445
+ "node_modules/@aws-sdk/credential-provider-process": {
446
+ "version": "3.972.9",
447
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.9.tgz",
448
+ "integrity": "sha512-gOWl0Fe2gETj5Bk151+LYKpeGi2lBDLNu+NMNpHRlIrKHdBmVun8/AalwMK8ci4uRfG5a3/+zvZBMpuen1SZ0A==",
449
+ "license": "Apache-2.0",
450
+ "dependencies": {
451
+ "@aws-sdk/core": "^3.973.11",
452
+ "@aws-sdk/types": "^3.973.1",
453
+ "@smithy/property-provider": "^4.2.8",
454
+ "@smithy/shared-ini-file-loader": "^4.4.3",
455
+ "@smithy/types": "^4.12.0",
456
+ "tslib": "^2.6.2"
457
+ },
458
+ "engines": {
459
+ "node": ">=20.0.0"
460
+ }
461
+ },
462
+ "node_modules/@aws-sdk/credential-provider-sso": {
463
+ "version": "3.972.9",
464
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.9.tgz",
465
+ "integrity": "sha512-ey7S686foGTArvFhi3ifQXmgptKYvLSGE2250BAQceMSXZddz7sUSNERGJT2S7u5KIe/kgugxrt01hntXVln6w==",
466
+ "license": "Apache-2.0",
467
+ "dependencies": {
468
+ "@aws-sdk/client-sso": "3.993.0",
469
+ "@aws-sdk/core": "^3.973.11",
470
+ "@aws-sdk/token-providers": "3.993.0",
471
+ "@aws-sdk/types": "^3.973.1",
472
+ "@smithy/property-provider": "^4.2.8",
473
+ "@smithy/shared-ini-file-loader": "^4.4.3",
474
+ "@smithy/types": "^4.12.0",
475
+ "tslib": "^2.6.2"
476
+ },
477
+ "engines": {
478
+ "node": ">=20.0.0"
479
+ }
480
+ },
481
+ "node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": {
482
+ "version": "3.993.0",
483
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/token-providers/-/token-providers-3.993.0.tgz",
484
+ "integrity": "sha512-+35g4c+8r7sB9Sjp1KPdM8qxGn6B/shBjJtEUN4e+Edw9UEQlZKIzioOGu3UAbyE0a/s450LdLZr4wbJChtmww==",
485
+ "license": "Apache-2.0",
486
+ "dependencies": {
487
+ "@aws-sdk/core": "^3.973.11",
488
+ "@aws-sdk/nested-clients": "3.993.0",
489
+ "@aws-sdk/types": "^3.973.1",
490
+ "@smithy/property-provider": "^4.2.8",
491
+ "@smithy/shared-ini-file-loader": "^4.4.3",
492
+ "@smithy/types": "^4.12.0",
493
+ "tslib": "^2.6.2"
494
+ },
495
+ "engines": {
496
+ "node": ">=20.0.0"
497
+ }
498
+ },
499
+ "node_modules/@aws-sdk/credential-provider-web-identity": {
500
+ "version": "3.972.9",
501
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.9.tgz",
502
+ "integrity": "sha512-8LnfS76nHXoEc9aRRiMMpxZxJeDG0yusdyo3NvPhCgESmBUgpMa4luhGbClW5NoX/qRcGxxM6Z/esqANSNMTow==",
503
+ "license": "Apache-2.0",
504
+ "dependencies": {
505
+ "@aws-sdk/core": "^3.973.11",
506
+ "@aws-sdk/nested-clients": "3.993.0",
507
+ "@aws-sdk/types": "^3.973.1",
508
+ "@smithy/property-provider": "^4.2.8",
509
+ "@smithy/shared-ini-file-loader": "^4.4.3",
510
+ "@smithy/types": "^4.12.0",
511
+ "tslib": "^2.6.2"
512
+ },
513
+ "engines": {
514
+ "node": ">=20.0.0"
515
+ }
516
+ },
517
+ "node_modules/@aws-sdk/eventstream-handler-node": {
518
+ "version": "3.972.5",
519
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.5.tgz",
520
+ "integrity": "sha512-xEmd3dnyn83K6t4AJxBJA63wpEoCD45ERFG0XMTViD2E/Ohls9TLxjOWPb1PAxR9/46cKy/TImez1GoqP6xVNQ==",
521
+ "license": "Apache-2.0",
522
+ "dependencies": {
523
+ "@aws-sdk/types": "^3.973.1",
524
+ "@smithy/eventstream-codec": "^4.2.8",
525
+ "@smithy/types": "^4.12.0",
526
+ "tslib": "^2.6.2"
527
+ },
528
+ "engines": {
529
+ "node": ">=20.0.0"
530
+ }
531
+ },
532
+ "node_modules/@aws-sdk/middleware-eventstream": {
533
+ "version": "3.972.3",
534
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.3.tgz",
535
+ "integrity": "sha512-pbvZ6Ye/Ks6BAZPa3RhsNjHrvxU9li25PMhSdDpbX0jzdpKpAkIR65gXSNKmA/REnSdEMWSD4vKUW+5eMFzB6w==",
536
+ "license": "Apache-2.0",
537
+ "dependencies": {
538
+ "@aws-sdk/types": "^3.973.1",
539
+ "@smithy/protocol-http": "^5.3.8",
540
+ "@smithy/types": "^4.12.0",
541
+ "tslib": "^2.6.2"
542
+ },
543
+ "engines": {
544
+ "node": ">=20.0.0"
545
+ }
546
+ },
547
+ "node_modules/@aws-sdk/middleware-host-header": {
548
+ "version": "3.972.3",
549
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.972.3.tgz",
550
+ "integrity": "sha512-aknPTb2M+G3s+0qLCx4Li/qGZH8IIYjugHMv15JTYMe6mgZO8VBpYgeGYsNMGCqCZOcWzuf900jFBG5bopfzmA==",
551
+ "license": "Apache-2.0",
552
+ "dependencies": {
553
+ "@aws-sdk/types": "^3.973.1",
554
+ "@smithy/protocol-http": "^5.3.8",
555
+ "@smithy/types": "^4.12.0",
556
+ "tslib": "^2.6.2"
557
+ },
558
+ "engines": {
559
+ "node": ">=20.0.0"
560
+ }
561
+ },
562
+ "node_modules/@aws-sdk/middleware-logger": {
563
+ "version": "3.972.3",
564
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-logger/-/middleware-logger-3.972.3.tgz",
565
+ "integrity": "sha512-Ftg09xNNRqaz9QNzlfdQWfpqMCJbsQdnZVJP55jfhbKi1+FTWxGuvfPoBhDHIovqWKjqbuiew3HuhxbJ0+OjgA==",
566
+ "license": "Apache-2.0",
567
+ "dependencies": {
568
+ "@aws-sdk/types": "^3.973.1",
569
+ "@smithy/types": "^4.12.0",
570
+ "tslib": "^2.6.2"
571
+ },
572
+ "engines": {
573
+ "node": ">=20.0.0"
574
+ }
575
+ },
576
+ "node_modules/@aws-sdk/middleware-recursion-detection": {
577
+ "version": "3.972.3",
578
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.972.3.tgz",
579
+ "integrity": "sha512-PY57QhzNuXHnwbJgbWYTrqIDHYSeOlhfYERTAuc16LKZpTZRJUjzBFokp9hF7u1fuGeE3D70ERXzdbMBOqQz7Q==",
580
+ "license": "Apache-2.0",
581
+ "dependencies": {
582
+ "@aws-sdk/types": "^3.973.1",
583
+ "@aws/lambda-invoke-store": "^0.2.2",
584
+ "@smithy/protocol-http": "^5.3.8",
585
+ "@smithy/types": "^4.12.0",
586
+ "tslib": "^2.6.2"
587
+ },
588
+ "engines": {
589
+ "node": ">=20.0.0"
590
+ }
591
+ },
592
+ "node_modules/@aws-sdk/middleware-user-agent": {
593
+ "version": "3.972.11",
594
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.972.11.tgz",
595
+ "integrity": "sha512-R8CvPsPHXwzIHCAza+bllY6PrctEk4lYq/SkHJz9NLoBHCcKQrbOcsfXxO6xmipSbUNIbNIUhH0lBsJGgsRdiw==",
596
+ "license": "Apache-2.0",
597
+ "dependencies": {
598
+ "@aws-sdk/core": "^3.973.11",
599
+ "@aws-sdk/types": "^3.973.1",
600
+ "@aws-sdk/util-endpoints": "3.993.0",
601
+ "@smithy/core": "^3.23.2",
602
+ "@smithy/protocol-http": "^5.3.8",
603
+ "@smithy/types": "^4.12.0",
604
+ "tslib": "^2.6.2"
605
+ },
606
+ "engines": {
607
+ "node": ">=20.0.0"
608
+ }
609
+ },
610
+ "node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints": {
611
+ "version": "3.993.0",
612
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-endpoints/-/util-endpoints-3.993.0.tgz",
613
+ "integrity": "sha512-j6vioBeRZ4eHX4SWGvGPpwGg/xSOcK7f1GL0VM+rdf3ZFTIsUEhCFmD78B+5r2PgztcECSzEfvHQX01k8dPQPw==",
614
+ "license": "Apache-2.0",
615
+ "dependencies": {
616
+ "@aws-sdk/types": "^3.973.1",
617
+ "@smithy/types": "^4.12.0",
618
+ "@smithy/url-parser": "^4.2.8",
619
+ "@smithy/util-endpoints": "^3.2.8",
620
+ "tslib": "^2.6.2"
621
+ },
622
+ "engines": {
623
+ "node": ">=20.0.0"
624
+ }
625
+ },
626
+ "node_modules/@aws-sdk/middleware-websocket": {
627
+ "version": "3.972.6",
628
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.6.tgz",
629
+ "integrity": "sha512-1DedO6N3m8zQ/vG6twNiHtsdwBgk773VdavLEbB3NXeKZDlzSK1BTviqWwvJdKx5UnIy4kGGP6WWpCEFEt/bhQ==",
630
+ "license": "Apache-2.0",
631
+ "dependencies": {
632
+ "@aws-sdk/types": "^3.973.1",
633
+ "@aws-sdk/util-format-url": "^3.972.3",
634
+ "@smithy/eventstream-codec": "^4.2.8",
635
+ "@smithy/eventstream-serde-browser": "^4.2.8",
636
+ "@smithy/fetch-http-handler": "^5.3.9",
637
+ "@smithy/protocol-http": "^5.3.8",
638
+ "@smithy/signature-v4": "^5.3.8",
639
+ "@smithy/types": "^4.12.0",
640
+ "@smithy/util-base64": "^4.3.0",
641
+ "@smithy/util-hex-encoding": "^4.2.0",
642
+ "@smithy/util-utf8": "^4.2.0",
643
+ "tslib": "^2.6.2"
644
+ },
645
+ "engines": {
646
+ "node": ">= 14.0.0"
647
+ }
648
+ },
649
+ "node_modules/@aws-sdk/nested-clients": {
650
+ "version": "3.993.0",
651
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/nested-clients/-/nested-clients-3.993.0.tgz",
652
+ "integrity": "sha512-iOq86f2H67924kQUIPOAvlmMaOAvOLoDOIb66I2YqSUpMYB6ufiuJW3RlREgskxv86S5qKzMnfy/X6CqMjK6XQ==",
653
+ "license": "Apache-2.0",
654
+ "dependencies": {
655
+ "@aws-crypto/sha256-browser": "5.2.0",
656
+ "@aws-crypto/sha256-js": "5.2.0",
657
+ "@aws-sdk/core": "^3.973.11",
658
+ "@aws-sdk/middleware-host-header": "^3.972.3",
659
+ "@aws-sdk/middleware-logger": "^3.972.3",
660
+ "@aws-sdk/middleware-recursion-detection": "^3.972.3",
661
+ "@aws-sdk/middleware-user-agent": "^3.972.11",
662
+ "@aws-sdk/region-config-resolver": "^3.972.3",
663
+ "@aws-sdk/types": "^3.973.1",
664
+ "@aws-sdk/util-endpoints": "3.993.0",
665
+ "@aws-sdk/util-user-agent-browser": "^3.972.3",
666
+ "@aws-sdk/util-user-agent-node": "^3.972.9",
667
+ "@smithy/config-resolver": "^4.4.6",
668
+ "@smithy/core": "^3.23.2",
669
+ "@smithy/fetch-http-handler": "^5.3.9",
670
+ "@smithy/hash-node": "^4.2.8",
671
+ "@smithy/invalid-dependency": "^4.2.8",
672
+ "@smithy/middleware-content-length": "^4.2.8",
673
+ "@smithy/middleware-endpoint": "^4.4.16",
674
+ "@smithy/middleware-retry": "^4.4.33",
675
+ "@smithy/middleware-serde": "^4.2.9",
676
+ "@smithy/middleware-stack": "^4.2.8",
677
+ "@smithy/node-config-provider": "^4.3.8",
678
+ "@smithy/node-http-handler": "^4.4.10",
679
+ "@smithy/protocol-http": "^5.3.8",
680
+ "@smithy/smithy-client": "^4.11.5",
681
+ "@smithy/types": "^4.12.0",
682
+ "@smithy/url-parser": "^4.2.8",
683
+ "@smithy/util-base64": "^4.3.0",
684
+ "@smithy/util-body-length-browser": "^4.2.0",
685
+ "@smithy/util-body-length-node": "^4.2.1",
686
+ "@smithy/util-defaults-mode-browser": "^4.3.32",
687
+ "@smithy/util-defaults-mode-node": "^4.2.35",
688
+ "@smithy/util-endpoints": "^3.2.8",
689
+ "@smithy/util-middleware": "^4.2.8",
690
+ "@smithy/util-retry": "^4.2.8",
691
+ "@smithy/util-utf8": "^4.2.0",
692
+ "tslib": "^2.6.2"
693
+ },
694
+ "engines": {
695
+ "node": ">=20.0.0"
696
+ }
697
+ },
698
+ "node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints": {
699
+ "version": "3.993.0",
700
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-endpoints/-/util-endpoints-3.993.0.tgz",
701
+ "integrity": "sha512-j6vioBeRZ4eHX4SWGvGPpwGg/xSOcK7f1GL0VM+rdf3ZFTIsUEhCFmD78B+5r2PgztcECSzEfvHQX01k8dPQPw==",
702
+ "license": "Apache-2.0",
703
+ "dependencies": {
704
+ "@aws-sdk/types": "^3.973.1",
705
+ "@smithy/types": "^4.12.0",
706
+ "@smithy/url-parser": "^4.2.8",
707
+ "@smithy/util-endpoints": "^3.2.8",
708
+ "tslib": "^2.6.2"
709
+ },
710
+ "engines": {
711
+ "node": ">=20.0.0"
712
+ }
713
+ },
714
+ "node_modules/@aws-sdk/region-config-resolver": {
715
+ "version": "3.972.3",
716
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.972.3.tgz",
717
+ "integrity": "sha512-v4J8qYAWfOMcZ4MJUyatntOicTzEMaU7j3OpkRCGGFSL2NgXQ5VbxauIyORA+pxdKZ0qQG2tCQjQjZDlXEC3Ow==",
718
+ "license": "Apache-2.0",
719
+ "dependencies": {
720
+ "@aws-sdk/types": "^3.973.1",
721
+ "@smithy/config-resolver": "^4.4.6",
722
+ "@smithy/node-config-provider": "^4.3.8",
723
+ "@smithy/types": "^4.12.0",
724
+ "tslib": "^2.6.2"
725
+ },
726
+ "engines": {
727
+ "node": ">=20.0.0"
728
+ }
729
+ },
730
+ "node_modules/@aws-sdk/token-providers": {
731
+ "version": "3.994.0",
732
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/token-providers/-/token-providers-3.994.0.tgz",
733
+ "integrity": "sha512-Dm/MpsQ+aQs2+XDLbA928b8Ly1O0Pz7laTjX52mEah3xyd9/L3UghKSZ7XeLA65PElUp92Seei/bwhKX+KsfMw==",
734
+ "license": "Apache-2.0",
735
+ "dependencies": {
736
+ "@aws-sdk/core": "^3.973.11",
737
+ "@aws-sdk/nested-clients": "3.994.0",
738
+ "@aws-sdk/types": "^3.973.1",
739
+ "@smithy/property-provider": "^4.2.8",
740
+ "@smithy/shared-ini-file-loader": "^4.4.3",
741
+ "@smithy/types": "^4.12.0",
742
+ "tslib": "^2.6.2"
743
+ },
744
+ "engines": {
745
+ "node": ">=20.0.0"
746
+ }
747
+ },
748
+ "node_modules/@aws-sdk/token-providers/node_modules/@aws-sdk/nested-clients": {
749
+ "version": "3.994.0",
750
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/nested-clients/-/nested-clients-3.994.0.tgz",
751
+ "integrity": "sha512-12Iv+U3qPBiKT6A2QKe0obkubxyGH90hyJIrht1KLxoz5OcIdWYafD7FtVGMwTtYRO73lvnVAsAkNkauZeupGQ==",
752
+ "license": "Apache-2.0",
753
+ "dependencies": {
754
+ "@aws-crypto/sha256-browser": "5.2.0",
755
+ "@aws-crypto/sha256-js": "5.2.0",
756
+ "@aws-sdk/core": "^3.973.11",
757
+ "@aws-sdk/middleware-host-header": "^3.972.3",
758
+ "@aws-sdk/middleware-logger": "^3.972.3",
759
+ "@aws-sdk/middleware-recursion-detection": "^3.972.3",
760
+ "@aws-sdk/middleware-user-agent": "^3.972.11",
761
+ "@aws-sdk/region-config-resolver": "^3.972.3",
762
+ "@aws-sdk/types": "^3.973.1",
763
+ "@aws-sdk/util-endpoints": "3.994.0",
764
+ "@aws-sdk/util-user-agent-browser": "^3.972.3",
765
+ "@aws-sdk/util-user-agent-node": "^3.972.9",
766
+ "@smithy/config-resolver": "^4.4.6",
767
+ "@smithy/core": "^3.23.2",
768
+ "@smithy/fetch-http-handler": "^5.3.9",
769
+ "@smithy/hash-node": "^4.2.8",
770
+ "@smithy/invalid-dependency": "^4.2.8",
771
+ "@smithy/middleware-content-length": "^4.2.8",
772
+ "@smithy/middleware-endpoint": "^4.4.16",
773
+ "@smithy/middleware-retry": "^4.4.33",
774
+ "@smithy/middleware-serde": "^4.2.9",
775
+ "@smithy/middleware-stack": "^4.2.8",
776
+ "@smithy/node-config-provider": "^4.3.8",
777
+ "@smithy/node-http-handler": "^4.4.10",
778
+ "@smithy/protocol-http": "^5.3.8",
779
+ "@smithy/smithy-client": "^4.11.5",
780
+ "@smithy/types": "^4.12.0",
781
+ "@smithy/url-parser": "^4.2.8",
782
+ "@smithy/util-base64": "^4.3.0",
783
+ "@smithy/util-body-length-browser": "^4.2.0",
784
+ "@smithy/util-body-length-node": "^4.2.1",
785
+ "@smithy/util-defaults-mode-browser": "^4.3.32",
786
+ "@smithy/util-defaults-mode-node": "^4.2.35",
787
+ "@smithy/util-endpoints": "^3.2.8",
788
+ "@smithy/util-middleware": "^4.2.8",
789
+ "@smithy/util-retry": "^4.2.8",
790
+ "@smithy/util-utf8": "^4.2.0",
791
+ "tslib": "^2.6.2"
792
+ },
793
+ "engines": {
794
+ "node": ">=20.0.0"
795
+ }
796
+ },
797
+ "node_modules/@aws-sdk/types": {
798
+ "version": "3.973.1",
799
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/types/-/types-3.973.1.tgz",
800
+ "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==",
801
+ "license": "Apache-2.0",
802
+ "dependencies": {
803
+ "@smithy/types": "^4.12.0",
804
+ "tslib": "^2.6.2"
805
+ },
806
+ "engines": {
807
+ "node": ">=20.0.0"
808
+ }
809
+ },
810
+ "node_modules/@aws-sdk/util-endpoints": {
811
+ "version": "3.994.0",
812
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-endpoints/-/util-endpoints-3.994.0.tgz",
813
+ "integrity": "sha512-L2obUBw4ACMMd1F/SG5LdfPyZ0xJNs9Maifwr3w0uWO+4YvHmk9FfRskfSfE/SLZ9S387oSZ+1xiP7BfVCP/Og==",
814
+ "license": "Apache-2.0",
815
+ "dependencies": {
816
+ "@aws-sdk/types": "^3.973.1",
817
+ "@smithy/types": "^4.12.0",
818
+ "@smithy/url-parser": "^4.2.8",
819
+ "@smithy/util-endpoints": "^3.2.8",
820
+ "tslib": "^2.6.2"
821
+ },
822
+ "engines": {
823
+ "node": ">=20.0.0"
824
+ }
825
+ },
826
+ "node_modules/@aws-sdk/util-format-url": {
827
+ "version": "3.972.3",
828
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-format-url/-/util-format-url-3.972.3.tgz",
829
+ "integrity": "sha512-n7F2ycckcKFXa01vAsT/SJdjFHfKH9s96QHcs5gn8AaaigASICeME8WdUL9uBp8XV/OVwEt8+6gzn6KFUgQa8g==",
830
+ "license": "Apache-2.0",
831
+ "dependencies": {
832
+ "@aws-sdk/types": "^3.973.1",
833
+ "@smithy/querystring-builder": "^4.2.8",
834
+ "@smithy/types": "^4.12.0",
835
+ "tslib": "^2.6.2"
836
+ },
837
+ "engines": {
838
+ "node": ">=20.0.0"
839
+ }
840
+ },
841
+ "node_modules/@aws-sdk/util-locate-window": {
842
+ "version": "3.965.4",
843
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-locate-window/-/util-locate-window-3.965.4.tgz",
844
+ "integrity": "sha512-H1onv5SkgPBK2P6JR2MjGgbOnttoNzSPIRoeZTNPZYyaplwGg50zS3amXvXqF0/qfXpWEC9rLWU564QTB9bSog==",
845
+ "license": "Apache-2.0",
846
+ "dependencies": {
847
+ "tslib": "^2.6.2"
848
+ },
849
+ "engines": {
850
+ "node": ">=20.0.0"
851
+ }
852
+ },
853
+ "node_modules/@aws-sdk/util-user-agent-browser": {
854
+ "version": "3.972.3",
855
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.972.3.tgz",
856
+ "integrity": "sha512-JurOwkRUcXD/5MTDBcqdyQ9eVedtAsZgw5rBwktsPTN7QtPiS2Ld1jkJepNgYoCufz1Wcut9iup7GJDoIHp8Fw==",
857
+ "license": "Apache-2.0",
858
+ "dependencies": {
859
+ "@aws-sdk/types": "^3.973.1",
860
+ "@smithy/types": "^4.12.0",
861
+ "bowser": "^2.11.0",
862
+ "tslib": "^2.6.2"
863
+ }
864
+ },
865
+ "node_modules/@aws-sdk/util-user-agent-node": {
866
+ "version": "3.972.9",
867
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.972.9.tgz",
868
+ "integrity": "sha512-JNswdsLdQemxqaSIBL2HRhsHPUBBziAgoi5RQv6/9avmE5g5RSdt1hWr3mHJ7OxqRYf+KeB11ExWbiqfrnoeaA==",
869
+ "license": "Apache-2.0",
870
+ "dependencies": {
871
+ "@aws-sdk/middleware-user-agent": "^3.972.11",
872
+ "@aws-sdk/types": "^3.973.1",
873
+ "@smithy/node-config-provider": "^4.3.8",
874
+ "@smithy/types": "^4.12.0",
875
+ "tslib": "^2.6.2"
876
+ },
877
+ "engines": {
878
+ "node": ">=20.0.0"
879
+ },
880
+ "peerDependencies": {
881
+ "aws-crt": ">=1.0.0"
882
+ },
883
+ "peerDependenciesMeta": {
884
+ "aws-crt": {
885
+ "optional": true
886
+ }
887
+ }
888
+ },
889
+ "node_modules/@aws-sdk/xml-builder": {
890
+ "version": "3.972.5",
891
+ "resolved": "https://registry.npmmirror.com/@aws-sdk/xml-builder/-/xml-builder-3.972.5.tgz",
892
+ "integrity": "sha512-mCae5Ys6Qm1LDu0qdGwx2UQ63ONUe+FHw908fJzLDqFKTDBK4LDZUqKWm4OkTCNFq19bftjsBSESIGLD/s3/rA==",
893
+ "license": "Apache-2.0",
894
+ "dependencies": {
895
+ "@smithy/types": "^4.12.0",
896
+ "fast-xml-parser": "5.3.6",
897
+ "tslib": "^2.6.2"
898
+ },
899
+ "engines": {
900
+ "node": ">=20.0.0"
901
+ }
902
+ },
903
+ "node_modules/@aws/lambda-invoke-store": {
904
+ "version": "0.2.3",
905
+ "resolved": "https://registry.npmmirror.com/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.3.tgz",
906
+ "integrity": "sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==",
907
+ "license": "Apache-2.0",
908
+ "engines": {
909
+ "node": ">=18.0.0"
910
+ }
911
+ },
912
+ "node_modules/@babel/runtime": {
913
+ "version": "7.28.6",
914
+ "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.28.6.tgz",
915
+ "integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==",
916
+ "license": "MIT",
917
+ "engines": {
918
+ "node": ">=6.9.0"
919
+ }
920
+ },
921
+ "node_modules/@borewit/text-codec": {
922
+ "version": "0.2.1",
923
+ "resolved": "https://registry.npmmirror.com/@borewit/text-codec/-/text-codec-0.2.1.tgz",
924
+ "integrity": "sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==",
925
+ "license": "MIT",
926
+ "funding": {
927
+ "type": "github",
928
+ "url": "https://github.com/sponsors/Borewit"
929
+ }
930
+ },
931
+ "node_modules/@dobby.ai/plugin-sdk": {
932
+ "resolved": "../plugin-sdk",
933
+ "link": true
934
+ },
935
+ "node_modules/@google/genai": {
936
+ "version": "1.42.0",
937
+ "resolved": "https://registry.npmmirror.com/@google/genai/-/genai-1.42.0.tgz",
938
+ "integrity": "sha512-+3nlMTcrQufbQ8IumGkOphxD5Pd5kKyJOzLcnY0/1IuE8upJk5aLmoexZ2BJhBp1zAjRJMEB4a2CJwKI9e2EYw==",
939
+ "license": "Apache-2.0",
940
+ "dependencies": {
941
+ "google-auth-library": "^10.3.0",
942
+ "p-retry": "^4.6.2",
943
+ "protobufjs": "^7.5.4",
944
+ "ws": "^8.18.0"
945
+ },
946
+ "engines": {
947
+ "node": ">=20.0.0"
948
+ },
949
+ "peerDependencies": {
950
+ "@modelcontextprotocol/sdk": "^1.25.2"
951
+ },
952
+ "peerDependenciesMeta": {
953
+ "@modelcontextprotocol/sdk": {
954
+ "optional": true
955
+ }
956
+ }
957
+ },
958
+ "node_modules/@isaacs/cliui": {
959
+ "version": "8.0.2",
960
+ "resolved": "https://registry.npmmirror.com/@isaacs/cliui/-/cliui-8.0.2.tgz",
961
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
962
+ "license": "ISC",
963
+ "dependencies": {
964
+ "string-width": "^5.1.2",
965
+ "string-width-cjs": "npm:string-width@^4.2.0",
966
+ "strip-ansi": "^7.0.1",
967
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
968
+ "wrap-ansi": "^8.1.0",
969
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
970
+ },
971
+ "engines": {
972
+ "node": ">=12"
973
+ }
974
+ },
975
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
976
+ "version": "6.2.2",
977
+ "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.2.2.tgz",
978
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
979
+ "license": "MIT",
980
+ "engines": {
981
+ "node": ">=12"
982
+ },
983
+ "funding": {
984
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
985
+ }
986
+ },
987
+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
988
+ "version": "6.2.3",
989
+ "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.3.tgz",
990
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
991
+ "license": "MIT",
992
+ "engines": {
993
+ "node": ">=12"
994
+ },
995
+ "funding": {
996
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
997
+ }
998
+ },
999
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
1000
+ "version": "9.2.2",
1001
+ "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz",
1002
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
1003
+ "license": "MIT"
1004
+ },
1005
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
1006
+ "version": "5.1.2",
1007
+ "resolved": "https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz",
1008
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
1009
+ "license": "MIT",
1010
+ "dependencies": {
1011
+ "eastasianwidth": "^0.2.0",
1012
+ "emoji-regex": "^9.2.2",
1013
+ "strip-ansi": "^7.0.1"
1014
+ },
1015
+ "engines": {
1016
+ "node": ">=12"
1017
+ },
1018
+ "funding": {
1019
+ "url": "https://github.com/sponsors/sindresorhus"
1020
+ }
1021
+ },
1022
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
1023
+ "version": "7.1.2",
1024
+ "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.2.tgz",
1025
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
1026
+ "license": "MIT",
1027
+ "dependencies": {
1028
+ "ansi-regex": "^6.0.1"
1029
+ },
1030
+ "engines": {
1031
+ "node": ">=12"
1032
+ },
1033
+ "funding": {
1034
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
1035
+ }
1036
+ },
1037
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
1038
+ "version": "8.1.0",
1039
+ "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
1040
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
1041
+ "license": "MIT",
1042
+ "dependencies": {
1043
+ "ansi-styles": "^6.1.0",
1044
+ "string-width": "^5.0.1",
1045
+ "strip-ansi": "^7.0.1"
1046
+ },
1047
+ "engines": {
1048
+ "node": ">=12"
1049
+ },
1050
+ "funding": {
1051
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
1052
+ }
1053
+ },
1054
+ "node_modules/@mariozechner/clipboard": {
1055
+ "version": "0.3.2",
1056
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard/-/clipboard-0.3.2.tgz",
1057
+ "integrity": "sha512-IHQpksNjo7EAtGuHFU+tbWDp5LarH3HU/8WiB9O70ZEoBPHOg0/6afwSLK0QyNMMmx4Bpi/zl6+DcBXe95nWYA==",
1058
+ "license": "MIT",
1059
+ "optional": true,
1060
+ "engines": {
1061
+ "node": ">= 10"
1062
+ },
1063
+ "optionalDependencies": {
1064
+ "@mariozechner/clipboard-darwin-arm64": "0.3.2",
1065
+ "@mariozechner/clipboard-darwin-universal": "0.3.2",
1066
+ "@mariozechner/clipboard-darwin-x64": "0.3.2",
1067
+ "@mariozechner/clipboard-linux-arm64-gnu": "0.3.2",
1068
+ "@mariozechner/clipboard-linux-arm64-musl": "0.3.2",
1069
+ "@mariozechner/clipboard-linux-riscv64-gnu": "0.3.2",
1070
+ "@mariozechner/clipboard-linux-x64-gnu": "0.3.2",
1071
+ "@mariozechner/clipboard-linux-x64-musl": "0.3.2",
1072
+ "@mariozechner/clipboard-win32-arm64-msvc": "0.3.2",
1073
+ "@mariozechner/clipboard-win32-x64-msvc": "0.3.2"
1074
+ }
1075
+ },
1076
+ "node_modules/@mariozechner/clipboard-darwin-arm64": {
1077
+ "version": "0.3.2",
1078
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-darwin-arm64/-/clipboard-darwin-arm64-0.3.2.tgz",
1079
+ "integrity": "sha512-uBf6K7Je1ihsgvmWxA8UCGCeI+nbRVRXoarZdLjl6slz94Zs1tNKFZqx7aCI5O1i3e0B6ja82zZ06BWrl0MCVw==",
1080
+ "cpu": [
1081
+ "arm64"
1082
+ ],
1083
+ "license": "MIT",
1084
+ "optional": true,
1085
+ "os": [
1086
+ "darwin"
1087
+ ],
1088
+ "engines": {
1089
+ "node": ">= 10"
1090
+ }
1091
+ },
1092
+ "node_modules/@mariozechner/clipboard-darwin-universal": {
1093
+ "version": "0.3.2",
1094
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-darwin-universal/-/clipboard-darwin-universal-0.3.2.tgz",
1095
+ "integrity": "sha512-mxSheKTW2U9LsBdXy0SdmdCAE5HqNS9QUmpNHLnfJ+SsbFKALjEZc5oRrVMXxGQSirDvYf5bjmRyT0QYYonnlg==",
1096
+ "license": "MIT",
1097
+ "optional": true,
1098
+ "os": [
1099
+ "darwin"
1100
+ ],
1101
+ "engines": {
1102
+ "node": ">= 10"
1103
+ }
1104
+ },
1105
+ "node_modules/@mariozechner/clipboard-darwin-x64": {
1106
+ "version": "0.3.2",
1107
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-darwin-x64/-/clipboard-darwin-x64-0.3.2.tgz",
1108
+ "integrity": "sha512-U1BcVEoidvwIp95+HJswSW+xr28EQiHR7rZjH6pn8Sja5yO4Yoe3yCN0Zm8Lo72BbSOK/fTSq0je7CJpaPCspg==",
1109
+ "cpu": [
1110
+ "x64"
1111
+ ],
1112
+ "license": "MIT",
1113
+ "optional": true,
1114
+ "os": [
1115
+ "darwin"
1116
+ ],
1117
+ "engines": {
1118
+ "node": ">= 10"
1119
+ }
1120
+ },
1121
+ "node_modules/@mariozechner/clipboard-linux-arm64-gnu": {
1122
+ "version": "0.3.2",
1123
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-linux-arm64-gnu/-/clipboard-linux-arm64-gnu-0.3.2.tgz",
1124
+ "integrity": "sha512-BsinwG3yWTIjdgNCxsFlip7LkfwPk+ruw/aFCXHUg/fb5XC/Ksp+YMQ7u0LUtiKzIv/7LMXgZInJQH6gxbAaqQ==",
1125
+ "cpu": [
1126
+ "arm64"
1127
+ ],
1128
+ "license": "MIT",
1129
+ "optional": true,
1130
+ "os": [
1131
+ "linux"
1132
+ ],
1133
+ "engines": {
1134
+ "node": ">= 10"
1135
+ }
1136
+ },
1137
+ "node_modules/@mariozechner/clipboard-linux-arm64-musl": {
1138
+ "version": "0.3.2",
1139
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-linux-arm64-musl/-/clipboard-linux-arm64-musl-0.3.2.tgz",
1140
+ "integrity": "sha512-0/Gi5Xq2V6goXBop19ePoHvXsmJD9SzFlO3S+d6+T2b+BlPcpOu3Oa0wTjl+cZrLAAEzA86aPNBI+VVAFDFPKw==",
1141
+ "cpu": [
1142
+ "arm64"
1143
+ ],
1144
+ "license": "MIT",
1145
+ "optional": true,
1146
+ "os": [
1147
+ "linux"
1148
+ ],
1149
+ "engines": {
1150
+ "node": ">= 10"
1151
+ }
1152
+ },
1153
+ "node_modules/@mariozechner/clipboard-linux-riscv64-gnu": {
1154
+ "version": "0.3.2",
1155
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-linux-riscv64-gnu/-/clipboard-linux-riscv64-gnu-0.3.2.tgz",
1156
+ "integrity": "sha512-2AFFiXB24qf0zOZsxI1GJGb9wQGlOJyN6UwoXqmKS3dpQi/l6ix30IzDDA4c4ZcCcx4D+9HLYXhC1w7Sov8pXA==",
1157
+ "cpu": [
1158
+ "riscv64"
1159
+ ],
1160
+ "license": "MIT",
1161
+ "optional": true,
1162
+ "os": [
1163
+ "linux"
1164
+ ],
1165
+ "engines": {
1166
+ "node": ">= 10"
1167
+ }
1168
+ },
1169
+ "node_modules/@mariozechner/clipboard-linux-x64-gnu": {
1170
+ "version": "0.3.2",
1171
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-linux-x64-gnu/-/clipboard-linux-x64-gnu-0.3.2.tgz",
1172
+ "integrity": "sha512-v6fVnsn7WMGg73Dab8QMwyFce7tzGfgEixKgzLP8f1GJqkJZi5zO4k4FOHzSgUufgLil63gnxvMpjWkgfeQN7A==",
1173
+ "cpu": [
1174
+ "x64"
1175
+ ],
1176
+ "license": "MIT",
1177
+ "optional": true,
1178
+ "os": [
1179
+ "linux"
1180
+ ],
1181
+ "engines": {
1182
+ "node": ">= 10"
1183
+ }
1184
+ },
1185
+ "node_modules/@mariozechner/clipboard-linux-x64-musl": {
1186
+ "version": "0.3.2",
1187
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-linux-x64-musl/-/clipboard-linux-x64-musl-0.3.2.tgz",
1188
+ "integrity": "sha512-xVUtnoMQ8v2JVyfJLKKXACA6avdnchdbBkTsZs8BgJQo29qwCp5NIHAUO8gbJ40iaEGToW5RlmVk2M9V0HsHEw==",
1189
+ "cpu": [
1190
+ "x64"
1191
+ ],
1192
+ "license": "MIT",
1193
+ "optional": true,
1194
+ "os": [
1195
+ "linux"
1196
+ ],
1197
+ "engines": {
1198
+ "node": ">= 10"
1199
+ }
1200
+ },
1201
+ "node_modules/@mariozechner/clipboard-win32-arm64-msvc": {
1202
+ "version": "0.3.2",
1203
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-win32-arm64-msvc/-/clipboard-win32-arm64-msvc-0.3.2.tgz",
1204
+ "integrity": "sha512-AEgg95TNi8TGgak2wSXZkXKCvAUTjWoU1Pqb0ON7JHrX78p616XUFNTJohtIon3e0w6k0pYPZeCuqRCza/Tqeg==",
1205
+ "cpu": [
1206
+ "arm64"
1207
+ ],
1208
+ "license": "MIT",
1209
+ "optional": true,
1210
+ "os": [
1211
+ "win32"
1212
+ ],
1213
+ "engines": {
1214
+ "node": ">= 10"
1215
+ }
1216
+ },
1217
+ "node_modules/@mariozechner/clipboard-win32-x64-msvc": {
1218
+ "version": "0.3.2",
1219
+ "resolved": "https://registry.npmmirror.com/@mariozechner/clipboard-win32-x64-msvc/-/clipboard-win32-x64-msvc-0.3.2.tgz",
1220
+ "integrity": "sha512-tGRuYpZwDOD7HBrCpyRuhGnHHSCknELvqwKKUG4JSfSB7JIU7LKRh6zx6fMUOQd8uISK35TjFg5UcNih+vJhFA==",
1221
+ "cpu": [
1222
+ "x64"
1223
+ ],
1224
+ "license": "MIT",
1225
+ "optional": true,
1226
+ "os": [
1227
+ "win32"
1228
+ ],
1229
+ "engines": {
1230
+ "node": ">= 10"
1231
+ }
1232
+ },
1233
+ "node_modules/@mariozechner/jiti": {
1234
+ "version": "2.6.5",
1235
+ "resolved": "https://registry.npmmirror.com/@mariozechner/jiti/-/jiti-2.6.5.tgz",
1236
+ "integrity": "sha512-faGUlTcXka5l7rv0lP3K3vGW/ejRuOS24RR2aSFWREUQqzjgdsuWNo/IiPqL3kWRGt6Ahl2+qcDAwtdeWeuGUw==",
1237
+ "license": "MIT",
1238
+ "dependencies": {
1239
+ "std-env": "^3.10.0",
1240
+ "yoctocolors": "^2.1.2"
1241
+ },
1242
+ "bin": {
1243
+ "jiti": "lib/jiti-cli.mjs"
1244
+ }
1245
+ },
1246
+ "node_modules/@mariozechner/pi-agent-core": {
1247
+ "version": "0.53.1",
1248
+ "resolved": "https://registry.npmmirror.com/@mariozechner/pi-agent-core/-/pi-agent-core-0.53.1.tgz",
1249
+ "integrity": "sha512-oYLZrgWtvi/lBqIWgYFgsfZ8xXGo45TRu9Li8q8o9Pc0oY2w1K//OqqYuN+ssnxu+s5MJSRdWdhTR2S3r0ccSw==",
1250
+ "license": "MIT",
1251
+ "dependencies": {
1252
+ "@mariozechner/pi-ai": "^0.53.1"
1253
+ },
1254
+ "engines": {
1255
+ "node": ">=20.0.0"
1256
+ }
1257
+ },
1258
+ "node_modules/@mariozechner/pi-ai": {
1259
+ "version": "0.53.1",
1260
+ "resolved": "https://registry.npmmirror.com/@mariozechner/pi-ai/-/pi-ai-0.53.1.tgz",
1261
+ "integrity": "sha512-2XuWg1XigK+0iSsq21nNEQoCnYMsVKhMMNx9kXMrtTJ7YUSflWG9eZ0qU2dfDQ2ccX5lAf9Gx4OszoLrsGkBvA==",
1262
+ "license": "MIT",
1263
+ "dependencies": {
1264
+ "@anthropic-ai/sdk": "^0.73.0",
1265
+ "@aws-sdk/client-bedrock-runtime": "^3.983.0",
1266
+ "@google/genai": "^1.40.0",
1267
+ "@mistralai/mistralai": "1.10.0",
1268
+ "@sinclair/typebox": "^0.34.41",
1269
+ "ajv": "^8.17.1",
1270
+ "ajv-formats": "^3.0.1",
1271
+ "chalk": "^5.6.2",
1272
+ "openai": "6.10.0",
1273
+ "partial-json": "^0.1.7",
1274
+ "proxy-agent": "^6.5.0",
1275
+ "undici": "^7.19.1",
1276
+ "zod-to-json-schema": "^3.24.6"
1277
+ },
1278
+ "bin": {
1279
+ "pi-ai": "dist/cli.js"
1280
+ },
1281
+ "engines": {
1282
+ "node": ">=20.0.0"
1283
+ }
1284
+ },
1285
+ "node_modules/@mariozechner/pi-coding-agent": {
1286
+ "version": "0.53.1",
1287
+ "resolved": "https://registry.npmmirror.com/@mariozechner/pi-coding-agent/-/pi-coding-agent-0.53.1.tgz",
1288
+ "integrity": "sha512-jF/HPnexraOZRVlo3Z752QE8MOA8osKC5il/gPXFOCvXo5XHhVeOCAvksrSgRr+Y/zudNHVD13P3YDogM4UZVQ==",
1289
+ "license": "MIT",
1290
+ "dependencies": {
1291
+ "@mariozechner/jiti": "^2.6.2",
1292
+ "@mariozechner/pi-agent-core": "^0.53.1",
1293
+ "@mariozechner/pi-ai": "^0.53.1",
1294
+ "@mariozechner/pi-tui": "^0.53.1",
1295
+ "@silvia-odwyer/photon-node": "^0.3.4",
1296
+ "chalk": "^5.5.0",
1297
+ "cli-highlight": "^2.1.11",
1298
+ "diff": "^8.0.2",
1299
+ "file-type": "^21.1.1",
1300
+ "glob": "^13.0.1",
1301
+ "hosted-git-info": "^9.0.2",
1302
+ "ignore": "^7.0.5",
1303
+ "marked": "^15.0.12",
1304
+ "minimatch": "^10.1.1",
1305
+ "proper-lockfile": "^4.1.2",
1306
+ "yaml": "^2.8.2"
1307
+ },
1308
+ "bin": {
1309
+ "pi": "dist/cli.js"
1310
+ },
1311
+ "engines": {
1312
+ "node": ">=20.0.0"
1313
+ },
1314
+ "optionalDependencies": {
1315
+ "@mariozechner/clipboard": "^0.3.2"
1316
+ }
1317
+ },
1318
+ "node_modules/@mariozechner/pi-tui": {
1319
+ "version": "0.53.1",
1320
+ "resolved": "https://registry.npmmirror.com/@mariozechner/pi-tui/-/pi-tui-0.53.1.tgz",
1321
+ "integrity": "sha512-Y417vM7cUDaNcSXAh6wH+xKdEU7ltcj7p6xmlz/BvZokKLcEkoKaaMiFC+3Mlrip2j1SJdu7Y1cv/uxYWDF//Q==",
1322
+ "license": "MIT",
1323
+ "dependencies": {
1324
+ "@types/mime-types": "^2.1.4",
1325
+ "chalk": "^5.5.0",
1326
+ "get-east-asian-width": "^1.3.0",
1327
+ "koffi": "^2.9.0",
1328
+ "marked": "^15.0.12",
1329
+ "mime-types": "^3.0.1"
1330
+ },
1331
+ "engines": {
1332
+ "node": ">=20.0.0"
1333
+ }
1334
+ },
1335
+ "node_modules/@mistralai/mistralai": {
1336
+ "version": "1.10.0",
1337
+ "resolved": "https://registry.npmmirror.com/@mistralai/mistralai/-/mistralai-1.10.0.tgz",
1338
+ "integrity": "sha512-tdIgWs4Le8vpvPiUEWne6tK0qbVc+jMenujnvTqOjogrJUsCSQhus0tHTU1avDDh5//Rq2dFgP9mWRAdIEoBqg==",
1339
+ "dependencies": {
1340
+ "zod": "^3.20.0",
1341
+ "zod-to-json-schema": "^3.24.1"
1342
+ }
1343
+ },
1344
+ "node_modules/@mistralai/mistralai/node_modules/zod": {
1345
+ "version": "3.25.76",
1346
+ "resolved": "https://registry.npmmirror.com/zod/-/zod-3.25.76.tgz",
1347
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
1348
+ "license": "MIT",
1349
+ "funding": {
1350
+ "url": "https://github.com/sponsors/colinhacks"
1351
+ }
1352
+ },
1353
+ "node_modules/@pkgjs/parseargs": {
1354
+ "version": "0.11.0",
1355
+ "resolved": "https://registry.npmmirror.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
1356
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
1357
+ "license": "MIT",
1358
+ "optional": true,
1359
+ "engines": {
1360
+ "node": ">=14"
1361
+ }
1362
+ },
1363
+ "node_modules/@protobufjs/aspromise": {
1364
+ "version": "1.1.2",
1365
+ "resolved": "https://registry.npmmirror.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
1366
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
1367
+ "license": "BSD-3-Clause"
1368
+ },
1369
+ "node_modules/@protobufjs/base64": {
1370
+ "version": "1.1.2",
1371
+ "resolved": "https://registry.npmmirror.com/@protobufjs/base64/-/base64-1.1.2.tgz",
1372
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
1373
+ "license": "BSD-3-Clause"
1374
+ },
1375
+ "node_modules/@protobufjs/codegen": {
1376
+ "version": "2.0.4",
1377
+ "resolved": "https://registry.npmmirror.com/@protobufjs/codegen/-/codegen-2.0.4.tgz",
1378
+ "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
1379
+ "license": "BSD-3-Clause"
1380
+ },
1381
+ "node_modules/@protobufjs/eventemitter": {
1382
+ "version": "1.1.0",
1383
+ "resolved": "https://registry.npmmirror.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
1384
+ "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
1385
+ "license": "BSD-3-Clause"
1386
+ },
1387
+ "node_modules/@protobufjs/fetch": {
1388
+ "version": "1.1.0",
1389
+ "resolved": "https://registry.npmmirror.com/@protobufjs/fetch/-/fetch-1.1.0.tgz",
1390
+ "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
1391
+ "license": "BSD-3-Clause",
1392
+ "dependencies": {
1393
+ "@protobufjs/aspromise": "^1.1.1",
1394
+ "@protobufjs/inquire": "^1.1.0"
1395
+ }
1396
+ },
1397
+ "node_modules/@protobufjs/float": {
1398
+ "version": "1.0.2",
1399
+ "resolved": "https://registry.npmmirror.com/@protobufjs/float/-/float-1.0.2.tgz",
1400
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
1401
+ "license": "BSD-3-Clause"
1402
+ },
1403
+ "node_modules/@protobufjs/inquire": {
1404
+ "version": "1.1.0",
1405
+ "resolved": "https://registry.npmmirror.com/@protobufjs/inquire/-/inquire-1.1.0.tgz",
1406
+ "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
1407
+ "license": "BSD-3-Clause"
1408
+ },
1409
+ "node_modules/@protobufjs/path": {
1410
+ "version": "1.1.2",
1411
+ "resolved": "https://registry.npmmirror.com/@protobufjs/path/-/path-1.1.2.tgz",
1412
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
1413
+ "license": "BSD-3-Clause"
1414
+ },
1415
+ "node_modules/@protobufjs/pool": {
1416
+ "version": "1.1.0",
1417
+ "resolved": "https://registry.npmmirror.com/@protobufjs/pool/-/pool-1.1.0.tgz",
1418
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
1419
+ "license": "BSD-3-Clause"
1420
+ },
1421
+ "node_modules/@protobufjs/utf8": {
1422
+ "version": "1.1.0",
1423
+ "resolved": "https://registry.npmmirror.com/@protobufjs/utf8/-/utf8-1.1.0.tgz",
1424
+ "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
1425
+ "license": "BSD-3-Clause"
1426
+ },
1427
+ "node_modules/@silvia-odwyer/photon-node": {
1428
+ "version": "0.3.4",
1429
+ "resolved": "https://registry.npmmirror.com/@silvia-odwyer/photon-node/-/photon-node-0.3.4.tgz",
1430
+ "integrity": "sha512-bnly4BKB3KDTFxrUIcgCLbaeVVS8lrAkri1pEzskpmxu9MdfGQTy8b8EgcD83ywD3RPMsIulY8xJH5Awa+t9fA==",
1431
+ "license": "Apache-2.0"
1432
+ },
1433
+ "node_modules/@sinclair/typebox": {
1434
+ "version": "0.34.48",
1435
+ "resolved": "https://registry.npmmirror.com/@sinclair/typebox/-/typebox-0.34.48.tgz",
1436
+ "integrity": "sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==",
1437
+ "license": "MIT"
1438
+ },
1439
+ "node_modules/@smithy/abort-controller": {
1440
+ "version": "4.2.8",
1441
+ "resolved": "https://registry.npmmirror.com/@smithy/abort-controller/-/abort-controller-4.2.8.tgz",
1442
+ "integrity": "sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==",
1443
+ "license": "Apache-2.0",
1444
+ "dependencies": {
1445
+ "@smithy/types": "^4.12.0",
1446
+ "tslib": "^2.6.2"
1447
+ },
1448
+ "engines": {
1449
+ "node": ">=18.0.0"
1450
+ }
1451
+ },
1452
+ "node_modules/@smithy/config-resolver": {
1453
+ "version": "4.4.6",
1454
+ "resolved": "https://registry.npmmirror.com/@smithy/config-resolver/-/config-resolver-4.4.6.tgz",
1455
+ "integrity": "sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==",
1456
+ "license": "Apache-2.0",
1457
+ "dependencies": {
1458
+ "@smithy/node-config-provider": "^4.3.8",
1459
+ "@smithy/types": "^4.12.0",
1460
+ "@smithy/util-config-provider": "^4.2.0",
1461
+ "@smithy/util-endpoints": "^3.2.8",
1462
+ "@smithy/util-middleware": "^4.2.8",
1463
+ "tslib": "^2.6.2"
1464
+ },
1465
+ "engines": {
1466
+ "node": ">=18.0.0"
1467
+ }
1468
+ },
1469
+ "node_modules/@smithy/core": {
1470
+ "version": "3.23.2",
1471
+ "resolved": "https://registry.npmmirror.com/@smithy/core/-/core-3.23.2.tgz",
1472
+ "integrity": "sha512-HaaH4VbGie4t0+9nY3tNBRSxVTr96wzIqexUa6C2qx3MPePAuz7lIxPxYtt1Wc//SPfJLNoZJzfdt0B6ksj2jA==",
1473
+ "license": "Apache-2.0",
1474
+ "dependencies": {
1475
+ "@smithy/middleware-serde": "^4.2.9",
1476
+ "@smithy/protocol-http": "^5.3.8",
1477
+ "@smithy/types": "^4.12.0",
1478
+ "@smithy/util-base64": "^4.3.0",
1479
+ "@smithy/util-body-length-browser": "^4.2.0",
1480
+ "@smithy/util-middleware": "^4.2.8",
1481
+ "@smithy/util-stream": "^4.5.12",
1482
+ "@smithy/util-utf8": "^4.2.0",
1483
+ "@smithy/uuid": "^1.1.0",
1484
+ "tslib": "^2.6.2"
1485
+ },
1486
+ "engines": {
1487
+ "node": ">=18.0.0"
1488
+ }
1489
+ },
1490
+ "node_modules/@smithy/credential-provider-imds": {
1491
+ "version": "4.2.8",
1492
+ "resolved": "https://registry.npmmirror.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.8.tgz",
1493
+ "integrity": "sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==",
1494
+ "license": "Apache-2.0",
1495
+ "dependencies": {
1496
+ "@smithy/node-config-provider": "^4.3.8",
1497
+ "@smithy/property-provider": "^4.2.8",
1498
+ "@smithy/types": "^4.12.0",
1499
+ "@smithy/url-parser": "^4.2.8",
1500
+ "tslib": "^2.6.2"
1501
+ },
1502
+ "engines": {
1503
+ "node": ">=18.0.0"
1504
+ }
1505
+ },
1506
+ "node_modules/@smithy/eventstream-codec": {
1507
+ "version": "4.2.8",
1508
+ "resolved": "https://registry.npmmirror.com/@smithy/eventstream-codec/-/eventstream-codec-4.2.8.tgz",
1509
+ "integrity": "sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==",
1510
+ "license": "Apache-2.0",
1511
+ "dependencies": {
1512
+ "@aws-crypto/crc32": "5.2.0",
1513
+ "@smithy/types": "^4.12.0",
1514
+ "@smithy/util-hex-encoding": "^4.2.0",
1515
+ "tslib": "^2.6.2"
1516
+ },
1517
+ "engines": {
1518
+ "node": ">=18.0.0"
1519
+ }
1520
+ },
1521
+ "node_modules/@smithy/eventstream-serde-browser": {
1522
+ "version": "4.2.8",
1523
+ "resolved": "https://registry.npmmirror.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-4.2.8.tgz",
1524
+ "integrity": "sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==",
1525
+ "license": "Apache-2.0",
1526
+ "dependencies": {
1527
+ "@smithy/eventstream-serde-universal": "^4.2.8",
1528
+ "@smithy/types": "^4.12.0",
1529
+ "tslib": "^2.6.2"
1530
+ },
1531
+ "engines": {
1532
+ "node": ">=18.0.0"
1533
+ }
1534
+ },
1535
+ "node_modules/@smithy/eventstream-serde-config-resolver": {
1536
+ "version": "4.3.8",
1537
+ "resolved": "https://registry.npmmirror.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-4.3.8.tgz",
1538
+ "integrity": "sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==",
1539
+ "license": "Apache-2.0",
1540
+ "dependencies": {
1541
+ "@smithy/types": "^4.12.0",
1542
+ "tslib": "^2.6.2"
1543
+ },
1544
+ "engines": {
1545
+ "node": ">=18.0.0"
1546
+ }
1547
+ },
1548
+ "node_modules/@smithy/eventstream-serde-node": {
1549
+ "version": "4.2.8",
1550
+ "resolved": "https://registry.npmmirror.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-4.2.8.tgz",
1551
+ "integrity": "sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==",
1552
+ "license": "Apache-2.0",
1553
+ "dependencies": {
1554
+ "@smithy/eventstream-serde-universal": "^4.2.8",
1555
+ "@smithy/types": "^4.12.0",
1556
+ "tslib": "^2.6.2"
1557
+ },
1558
+ "engines": {
1559
+ "node": ">=18.0.0"
1560
+ }
1561
+ },
1562
+ "node_modules/@smithy/eventstream-serde-universal": {
1563
+ "version": "4.2.8",
1564
+ "resolved": "https://registry.npmmirror.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-4.2.8.tgz",
1565
+ "integrity": "sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==",
1566
+ "license": "Apache-2.0",
1567
+ "dependencies": {
1568
+ "@smithy/eventstream-codec": "^4.2.8",
1569
+ "@smithy/types": "^4.12.0",
1570
+ "tslib": "^2.6.2"
1571
+ },
1572
+ "engines": {
1573
+ "node": ">=18.0.0"
1574
+ }
1575
+ },
1576
+ "node_modules/@smithy/fetch-http-handler": {
1577
+ "version": "5.3.9",
1578
+ "resolved": "https://registry.npmmirror.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.9.tgz",
1579
+ "integrity": "sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==",
1580
+ "license": "Apache-2.0",
1581
+ "dependencies": {
1582
+ "@smithy/protocol-http": "^5.3.8",
1583
+ "@smithy/querystring-builder": "^4.2.8",
1584
+ "@smithy/types": "^4.12.0",
1585
+ "@smithy/util-base64": "^4.3.0",
1586
+ "tslib": "^2.6.2"
1587
+ },
1588
+ "engines": {
1589
+ "node": ">=18.0.0"
1590
+ }
1591
+ },
1592
+ "node_modules/@smithy/hash-node": {
1593
+ "version": "4.2.8",
1594
+ "resolved": "https://registry.npmmirror.com/@smithy/hash-node/-/hash-node-4.2.8.tgz",
1595
+ "integrity": "sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==",
1596
+ "license": "Apache-2.0",
1597
+ "dependencies": {
1598
+ "@smithy/types": "^4.12.0",
1599
+ "@smithy/util-buffer-from": "^4.2.0",
1600
+ "@smithy/util-utf8": "^4.2.0",
1601
+ "tslib": "^2.6.2"
1602
+ },
1603
+ "engines": {
1604
+ "node": ">=18.0.0"
1605
+ }
1606
+ },
1607
+ "node_modules/@smithy/invalid-dependency": {
1608
+ "version": "4.2.8",
1609
+ "resolved": "https://registry.npmmirror.com/@smithy/invalid-dependency/-/invalid-dependency-4.2.8.tgz",
1610
+ "integrity": "sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==",
1611
+ "license": "Apache-2.0",
1612
+ "dependencies": {
1613
+ "@smithy/types": "^4.12.0",
1614
+ "tslib": "^2.6.2"
1615
+ },
1616
+ "engines": {
1617
+ "node": ">=18.0.0"
1618
+ }
1619
+ },
1620
+ "node_modules/@smithy/is-array-buffer": {
1621
+ "version": "4.2.0",
1622
+ "resolved": "https://registry.npmmirror.com/@smithy/is-array-buffer/-/is-array-buffer-4.2.0.tgz",
1623
+ "integrity": "sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==",
1624
+ "license": "Apache-2.0",
1625
+ "dependencies": {
1626
+ "tslib": "^2.6.2"
1627
+ },
1628
+ "engines": {
1629
+ "node": ">=18.0.0"
1630
+ }
1631
+ },
1632
+ "node_modules/@smithy/middleware-content-length": {
1633
+ "version": "4.2.8",
1634
+ "resolved": "https://registry.npmmirror.com/@smithy/middleware-content-length/-/middleware-content-length-4.2.8.tgz",
1635
+ "integrity": "sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==",
1636
+ "license": "Apache-2.0",
1637
+ "dependencies": {
1638
+ "@smithy/protocol-http": "^5.3.8",
1639
+ "@smithy/types": "^4.12.0",
1640
+ "tslib": "^2.6.2"
1641
+ },
1642
+ "engines": {
1643
+ "node": ">=18.0.0"
1644
+ }
1645
+ },
1646
+ "node_modules/@smithy/middleware-endpoint": {
1647
+ "version": "4.4.16",
1648
+ "resolved": "https://registry.npmmirror.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.4.16.tgz",
1649
+ "integrity": "sha512-L5GICFCSsNhbJ5JSKeWFGFy16Q2OhoBizb3X2DrxaJwXSEujVvjG9Jt386dpQn2t7jINglQl0b4K/Su69BdbMA==",
1650
+ "license": "Apache-2.0",
1651
+ "dependencies": {
1652
+ "@smithy/core": "^3.23.2",
1653
+ "@smithy/middleware-serde": "^4.2.9",
1654
+ "@smithy/node-config-provider": "^4.3.8",
1655
+ "@smithy/shared-ini-file-loader": "^4.4.3",
1656
+ "@smithy/types": "^4.12.0",
1657
+ "@smithy/url-parser": "^4.2.8",
1658
+ "@smithy/util-middleware": "^4.2.8",
1659
+ "tslib": "^2.6.2"
1660
+ },
1661
+ "engines": {
1662
+ "node": ">=18.0.0"
1663
+ }
1664
+ },
1665
+ "node_modules/@smithy/middleware-retry": {
1666
+ "version": "4.4.33",
1667
+ "resolved": "https://registry.npmmirror.com/@smithy/middleware-retry/-/middleware-retry-4.4.33.tgz",
1668
+ "integrity": "sha512-jLqZOdJhtIL4lnA9hXnAG6GgnJlo1sD3FqsTxm9wSfjviqgWesY/TMBVnT84yr4O0Vfe0jWoXlfFbzsBVph3WA==",
1669
+ "license": "Apache-2.0",
1670
+ "dependencies": {
1671
+ "@smithy/node-config-provider": "^4.3.8",
1672
+ "@smithy/protocol-http": "^5.3.8",
1673
+ "@smithy/service-error-classification": "^4.2.8",
1674
+ "@smithy/smithy-client": "^4.11.5",
1675
+ "@smithy/types": "^4.12.0",
1676
+ "@smithy/util-middleware": "^4.2.8",
1677
+ "@smithy/util-retry": "^4.2.8",
1678
+ "@smithy/uuid": "^1.1.0",
1679
+ "tslib": "^2.6.2"
1680
+ },
1681
+ "engines": {
1682
+ "node": ">=18.0.0"
1683
+ }
1684
+ },
1685
+ "node_modules/@smithy/middleware-serde": {
1686
+ "version": "4.2.9",
1687
+ "resolved": "https://registry.npmmirror.com/@smithy/middleware-serde/-/middleware-serde-4.2.9.tgz",
1688
+ "integrity": "sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==",
1689
+ "license": "Apache-2.0",
1690
+ "dependencies": {
1691
+ "@smithy/protocol-http": "^5.3.8",
1692
+ "@smithy/types": "^4.12.0",
1693
+ "tslib": "^2.6.2"
1694
+ },
1695
+ "engines": {
1696
+ "node": ">=18.0.0"
1697
+ }
1698
+ },
1699
+ "node_modules/@smithy/middleware-stack": {
1700
+ "version": "4.2.8",
1701
+ "resolved": "https://registry.npmmirror.com/@smithy/middleware-stack/-/middleware-stack-4.2.8.tgz",
1702
+ "integrity": "sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==",
1703
+ "license": "Apache-2.0",
1704
+ "dependencies": {
1705
+ "@smithy/types": "^4.12.0",
1706
+ "tslib": "^2.6.2"
1707
+ },
1708
+ "engines": {
1709
+ "node": ">=18.0.0"
1710
+ }
1711
+ },
1712
+ "node_modules/@smithy/node-config-provider": {
1713
+ "version": "4.3.8",
1714
+ "resolved": "https://registry.npmmirror.com/@smithy/node-config-provider/-/node-config-provider-4.3.8.tgz",
1715
+ "integrity": "sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==",
1716
+ "license": "Apache-2.0",
1717
+ "dependencies": {
1718
+ "@smithy/property-provider": "^4.2.8",
1719
+ "@smithy/shared-ini-file-loader": "^4.4.3",
1720
+ "@smithy/types": "^4.12.0",
1721
+ "tslib": "^2.6.2"
1722
+ },
1723
+ "engines": {
1724
+ "node": ">=18.0.0"
1725
+ }
1726
+ },
1727
+ "node_modules/@smithy/node-http-handler": {
1728
+ "version": "4.4.10",
1729
+ "resolved": "https://registry.npmmirror.com/@smithy/node-http-handler/-/node-http-handler-4.4.10.tgz",
1730
+ "integrity": "sha512-u4YeUwOWRZaHbWaebvrs3UhwQwj+2VNmcVCwXcYTvPIuVyM7Ex1ftAj+fdbG/P4AkBwLq/+SKn+ydOI4ZJE9PA==",
1731
+ "license": "Apache-2.0",
1732
+ "dependencies": {
1733
+ "@smithy/abort-controller": "^4.2.8",
1734
+ "@smithy/protocol-http": "^5.3.8",
1735
+ "@smithy/querystring-builder": "^4.2.8",
1736
+ "@smithy/types": "^4.12.0",
1737
+ "tslib": "^2.6.2"
1738
+ },
1739
+ "engines": {
1740
+ "node": ">=18.0.0"
1741
+ }
1742
+ },
1743
+ "node_modules/@smithy/property-provider": {
1744
+ "version": "4.2.8",
1745
+ "resolved": "https://registry.npmmirror.com/@smithy/property-provider/-/property-provider-4.2.8.tgz",
1746
+ "integrity": "sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==",
1747
+ "license": "Apache-2.0",
1748
+ "dependencies": {
1749
+ "@smithy/types": "^4.12.0",
1750
+ "tslib": "^2.6.2"
1751
+ },
1752
+ "engines": {
1753
+ "node": ">=18.0.0"
1754
+ }
1755
+ },
1756
+ "node_modules/@smithy/protocol-http": {
1757
+ "version": "5.3.8",
1758
+ "resolved": "https://registry.npmmirror.com/@smithy/protocol-http/-/protocol-http-5.3.8.tgz",
1759
+ "integrity": "sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==",
1760
+ "license": "Apache-2.0",
1761
+ "dependencies": {
1762
+ "@smithy/types": "^4.12.0",
1763
+ "tslib": "^2.6.2"
1764
+ },
1765
+ "engines": {
1766
+ "node": ">=18.0.0"
1767
+ }
1768
+ },
1769
+ "node_modules/@smithy/querystring-builder": {
1770
+ "version": "4.2.8",
1771
+ "resolved": "https://registry.npmmirror.com/@smithy/querystring-builder/-/querystring-builder-4.2.8.tgz",
1772
+ "integrity": "sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==",
1773
+ "license": "Apache-2.0",
1774
+ "dependencies": {
1775
+ "@smithy/types": "^4.12.0",
1776
+ "@smithy/util-uri-escape": "^4.2.0",
1777
+ "tslib": "^2.6.2"
1778
+ },
1779
+ "engines": {
1780
+ "node": ">=18.0.0"
1781
+ }
1782
+ },
1783
+ "node_modules/@smithy/querystring-parser": {
1784
+ "version": "4.2.8",
1785
+ "resolved": "https://registry.npmmirror.com/@smithy/querystring-parser/-/querystring-parser-4.2.8.tgz",
1786
+ "integrity": "sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==",
1787
+ "license": "Apache-2.0",
1788
+ "dependencies": {
1789
+ "@smithy/types": "^4.12.0",
1790
+ "tslib": "^2.6.2"
1791
+ },
1792
+ "engines": {
1793
+ "node": ">=18.0.0"
1794
+ }
1795
+ },
1796
+ "node_modules/@smithy/service-error-classification": {
1797
+ "version": "4.2.8",
1798
+ "resolved": "https://registry.npmmirror.com/@smithy/service-error-classification/-/service-error-classification-4.2.8.tgz",
1799
+ "integrity": "sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==",
1800
+ "license": "Apache-2.0",
1801
+ "dependencies": {
1802
+ "@smithy/types": "^4.12.0"
1803
+ },
1804
+ "engines": {
1805
+ "node": ">=18.0.0"
1806
+ }
1807
+ },
1808
+ "node_modules/@smithy/shared-ini-file-loader": {
1809
+ "version": "4.4.3",
1810
+ "resolved": "https://registry.npmmirror.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.4.3.tgz",
1811
+ "integrity": "sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==",
1812
+ "license": "Apache-2.0",
1813
+ "dependencies": {
1814
+ "@smithy/types": "^4.12.0",
1815
+ "tslib": "^2.6.2"
1816
+ },
1817
+ "engines": {
1818
+ "node": ">=18.0.0"
1819
+ }
1820
+ },
1821
+ "node_modules/@smithy/signature-v4": {
1822
+ "version": "5.3.8",
1823
+ "resolved": "https://registry.npmmirror.com/@smithy/signature-v4/-/signature-v4-5.3.8.tgz",
1824
+ "integrity": "sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==",
1825
+ "license": "Apache-2.0",
1826
+ "dependencies": {
1827
+ "@smithy/is-array-buffer": "^4.2.0",
1828
+ "@smithy/protocol-http": "^5.3.8",
1829
+ "@smithy/types": "^4.12.0",
1830
+ "@smithy/util-hex-encoding": "^4.2.0",
1831
+ "@smithy/util-middleware": "^4.2.8",
1832
+ "@smithy/util-uri-escape": "^4.2.0",
1833
+ "@smithy/util-utf8": "^4.2.0",
1834
+ "tslib": "^2.6.2"
1835
+ },
1836
+ "engines": {
1837
+ "node": ">=18.0.0"
1838
+ }
1839
+ },
1840
+ "node_modules/@smithy/smithy-client": {
1841
+ "version": "4.11.5",
1842
+ "resolved": "https://registry.npmmirror.com/@smithy/smithy-client/-/smithy-client-4.11.5.tgz",
1843
+ "integrity": "sha512-xixwBRqoeP2IUgcAl3U9dvJXc+qJum4lzo3maaJxifsZxKUYLfVfCXvhT4/jD01sRrHg5zjd1cw2Zmjr4/SuKQ==",
1844
+ "license": "Apache-2.0",
1845
+ "dependencies": {
1846
+ "@smithy/core": "^3.23.2",
1847
+ "@smithy/middleware-endpoint": "^4.4.16",
1848
+ "@smithy/middleware-stack": "^4.2.8",
1849
+ "@smithy/protocol-http": "^5.3.8",
1850
+ "@smithy/types": "^4.12.0",
1851
+ "@smithy/util-stream": "^4.5.12",
1852
+ "tslib": "^2.6.2"
1853
+ },
1854
+ "engines": {
1855
+ "node": ">=18.0.0"
1856
+ }
1857
+ },
1858
+ "node_modules/@smithy/types": {
1859
+ "version": "4.12.0",
1860
+ "resolved": "https://registry.npmmirror.com/@smithy/types/-/types-4.12.0.tgz",
1861
+ "integrity": "sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==",
1862
+ "license": "Apache-2.0",
1863
+ "dependencies": {
1864
+ "tslib": "^2.6.2"
1865
+ },
1866
+ "engines": {
1867
+ "node": ">=18.0.0"
1868
+ }
1869
+ },
1870
+ "node_modules/@smithy/url-parser": {
1871
+ "version": "4.2.8",
1872
+ "resolved": "https://registry.npmmirror.com/@smithy/url-parser/-/url-parser-4.2.8.tgz",
1873
+ "integrity": "sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==",
1874
+ "license": "Apache-2.0",
1875
+ "dependencies": {
1876
+ "@smithy/querystring-parser": "^4.2.8",
1877
+ "@smithy/types": "^4.12.0",
1878
+ "tslib": "^2.6.2"
1879
+ },
1880
+ "engines": {
1881
+ "node": ">=18.0.0"
1882
+ }
1883
+ },
1884
+ "node_modules/@smithy/util-base64": {
1885
+ "version": "4.3.0",
1886
+ "resolved": "https://registry.npmmirror.com/@smithy/util-base64/-/util-base64-4.3.0.tgz",
1887
+ "integrity": "sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==",
1888
+ "license": "Apache-2.0",
1889
+ "dependencies": {
1890
+ "@smithy/util-buffer-from": "^4.2.0",
1891
+ "@smithy/util-utf8": "^4.2.0",
1892
+ "tslib": "^2.6.2"
1893
+ },
1894
+ "engines": {
1895
+ "node": ">=18.0.0"
1896
+ }
1897
+ },
1898
+ "node_modules/@smithy/util-body-length-browser": {
1899
+ "version": "4.2.0",
1900
+ "resolved": "https://registry.npmmirror.com/@smithy/util-body-length-browser/-/util-body-length-browser-4.2.0.tgz",
1901
+ "integrity": "sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==",
1902
+ "license": "Apache-2.0",
1903
+ "dependencies": {
1904
+ "tslib": "^2.6.2"
1905
+ },
1906
+ "engines": {
1907
+ "node": ">=18.0.0"
1908
+ }
1909
+ },
1910
+ "node_modules/@smithy/util-body-length-node": {
1911
+ "version": "4.2.1",
1912
+ "resolved": "https://registry.npmmirror.com/@smithy/util-body-length-node/-/util-body-length-node-4.2.1.tgz",
1913
+ "integrity": "sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==",
1914
+ "license": "Apache-2.0",
1915
+ "dependencies": {
1916
+ "tslib": "^2.6.2"
1917
+ },
1918
+ "engines": {
1919
+ "node": ">=18.0.0"
1920
+ }
1921
+ },
1922
+ "node_modules/@smithy/util-buffer-from": {
1923
+ "version": "4.2.0",
1924
+ "resolved": "https://registry.npmmirror.com/@smithy/util-buffer-from/-/util-buffer-from-4.2.0.tgz",
1925
+ "integrity": "sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==",
1926
+ "license": "Apache-2.0",
1927
+ "dependencies": {
1928
+ "@smithy/is-array-buffer": "^4.2.0",
1929
+ "tslib": "^2.6.2"
1930
+ },
1931
+ "engines": {
1932
+ "node": ">=18.0.0"
1933
+ }
1934
+ },
1935
+ "node_modules/@smithy/util-config-provider": {
1936
+ "version": "4.2.0",
1937
+ "resolved": "https://registry.npmmirror.com/@smithy/util-config-provider/-/util-config-provider-4.2.0.tgz",
1938
+ "integrity": "sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==",
1939
+ "license": "Apache-2.0",
1940
+ "dependencies": {
1941
+ "tslib": "^2.6.2"
1942
+ },
1943
+ "engines": {
1944
+ "node": ">=18.0.0"
1945
+ }
1946
+ },
1947
+ "node_modules/@smithy/util-defaults-mode-browser": {
1948
+ "version": "4.3.32",
1949
+ "resolved": "https://registry.npmmirror.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.32.tgz",
1950
+ "integrity": "sha512-092sjYfFMQ/iaPH798LY/OJFBcYu0sSK34Oy9vdixhsU36zlZu8OcYjF3TD4e2ARupyK7xaxPXl+T0VIJTEkkg==",
1951
+ "license": "Apache-2.0",
1952
+ "dependencies": {
1953
+ "@smithy/property-provider": "^4.2.8",
1954
+ "@smithy/smithy-client": "^4.11.5",
1955
+ "@smithy/types": "^4.12.0",
1956
+ "tslib": "^2.6.2"
1957
+ },
1958
+ "engines": {
1959
+ "node": ">=18.0.0"
1960
+ }
1961
+ },
1962
+ "node_modules/@smithy/util-defaults-mode-node": {
1963
+ "version": "4.2.35",
1964
+ "resolved": "https://registry.npmmirror.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.35.tgz",
1965
+ "integrity": "sha512-miz/ggz87M8VuM29y7jJZMYkn7+IErM5p5UgKIf8OtqVs/h2bXr1Bt3uTsREsI/4nK8a0PQERbAPsVPVNIsG7Q==",
1966
+ "license": "Apache-2.0",
1967
+ "dependencies": {
1968
+ "@smithy/config-resolver": "^4.4.6",
1969
+ "@smithy/credential-provider-imds": "^4.2.8",
1970
+ "@smithy/node-config-provider": "^4.3.8",
1971
+ "@smithy/property-provider": "^4.2.8",
1972
+ "@smithy/smithy-client": "^4.11.5",
1973
+ "@smithy/types": "^4.12.0",
1974
+ "tslib": "^2.6.2"
1975
+ },
1976
+ "engines": {
1977
+ "node": ">=18.0.0"
1978
+ }
1979
+ },
1980
+ "node_modules/@smithy/util-endpoints": {
1981
+ "version": "3.2.8",
1982
+ "resolved": "https://registry.npmmirror.com/@smithy/util-endpoints/-/util-endpoints-3.2.8.tgz",
1983
+ "integrity": "sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==",
1984
+ "license": "Apache-2.0",
1985
+ "dependencies": {
1986
+ "@smithy/node-config-provider": "^4.3.8",
1987
+ "@smithy/types": "^4.12.0",
1988
+ "tslib": "^2.6.2"
1989
+ },
1990
+ "engines": {
1991
+ "node": ">=18.0.0"
1992
+ }
1993
+ },
1994
+ "node_modules/@smithy/util-hex-encoding": {
1995
+ "version": "4.2.0",
1996
+ "resolved": "https://registry.npmmirror.com/@smithy/util-hex-encoding/-/util-hex-encoding-4.2.0.tgz",
1997
+ "integrity": "sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==",
1998
+ "license": "Apache-2.0",
1999
+ "dependencies": {
2000
+ "tslib": "^2.6.2"
2001
+ },
2002
+ "engines": {
2003
+ "node": ">=18.0.0"
2004
+ }
2005
+ },
2006
+ "node_modules/@smithy/util-middleware": {
2007
+ "version": "4.2.8",
2008
+ "resolved": "https://registry.npmmirror.com/@smithy/util-middleware/-/util-middleware-4.2.8.tgz",
2009
+ "integrity": "sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==",
2010
+ "license": "Apache-2.0",
2011
+ "dependencies": {
2012
+ "@smithy/types": "^4.12.0",
2013
+ "tslib": "^2.6.2"
2014
+ },
2015
+ "engines": {
2016
+ "node": ">=18.0.0"
2017
+ }
2018
+ },
2019
+ "node_modules/@smithy/util-retry": {
2020
+ "version": "4.2.8",
2021
+ "resolved": "https://registry.npmmirror.com/@smithy/util-retry/-/util-retry-4.2.8.tgz",
2022
+ "integrity": "sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==",
2023
+ "license": "Apache-2.0",
2024
+ "dependencies": {
2025
+ "@smithy/service-error-classification": "^4.2.8",
2026
+ "@smithy/types": "^4.12.0",
2027
+ "tslib": "^2.6.2"
2028
+ },
2029
+ "engines": {
2030
+ "node": ">=18.0.0"
2031
+ }
2032
+ },
2033
+ "node_modules/@smithy/util-stream": {
2034
+ "version": "4.5.12",
2035
+ "resolved": "https://registry.npmmirror.com/@smithy/util-stream/-/util-stream-4.5.12.tgz",
2036
+ "integrity": "sha512-D8tgkrmhAX/UNeCZbqbEO3uqyghUnEmmoO9YEvRuwxjlkKKUE7FOgCJnqpTlQPe9MApdWPky58mNQQHbnCzoNg==",
2037
+ "license": "Apache-2.0",
2038
+ "dependencies": {
2039
+ "@smithy/fetch-http-handler": "^5.3.9",
2040
+ "@smithy/node-http-handler": "^4.4.10",
2041
+ "@smithy/types": "^4.12.0",
2042
+ "@smithy/util-base64": "^4.3.0",
2043
+ "@smithy/util-buffer-from": "^4.2.0",
2044
+ "@smithy/util-hex-encoding": "^4.2.0",
2045
+ "@smithy/util-utf8": "^4.2.0",
2046
+ "tslib": "^2.6.2"
2047
+ },
2048
+ "engines": {
2049
+ "node": ">=18.0.0"
2050
+ }
2051
+ },
2052
+ "node_modules/@smithy/util-uri-escape": {
2053
+ "version": "4.2.0",
2054
+ "resolved": "https://registry.npmmirror.com/@smithy/util-uri-escape/-/util-uri-escape-4.2.0.tgz",
2055
+ "integrity": "sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==",
2056
+ "license": "Apache-2.0",
2057
+ "dependencies": {
2058
+ "tslib": "^2.6.2"
2059
+ },
2060
+ "engines": {
2061
+ "node": ">=18.0.0"
2062
+ }
2063
+ },
2064
+ "node_modules/@smithy/util-utf8": {
2065
+ "version": "4.2.0",
2066
+ "resolved": "https://registry.npmmirror.com/@smithy/util-utf8/-/util-utf8-4.2.0.tgz",
2067
+ "integrity": "sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==",
2068
+ "license": "Apache-2.0",
2069
+ "dependencies": {
2070
+ "@smithy/util-buffer-from": "^4.2.0",
2071
+ "tslib": "^2.6.2"
2072
+ },
2073
+ "engines": {
2074
+ "node": ">=18.0.0"
2075
+ }
2076
+ },
2077
+ "node_modules/@smithy/uuid": {
2078
+ "version": "1.1.0",
2079
+ "resolved": "https://registry.npmmirror.com/@smithy/uuid/-/uuid-1.1.0.tgz",
2080
+ "integrity": "sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==",
2081
+ "license": "Apache-2.0",
2082
+ "dependencies": {
2083
+ "tslib": "^2.6.2"
2084
+ },
2085
+ "engines": {
2086
+ "node": ">=18.0.0"
2087
+ }
2088
+ },
2089
+ "node_modules/@tokenizer/inflate": {
2090
+ "version": "0.4.1",
2091
+ "resolved": "https://registry.npmmirror.com/@tokenizer/inflate/-/inflate-0.4.1.tgz",
2092
+ "integrity": "sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==",
2093
+ "license": "MIT",
2094
+ "dependencies": {
2095
+ "debug": "^4.4.3",
2096
+ "token-types": "^6.1.1"
2097
+ },
2098
+ "engines": {
2099
+ "node": ">=18"
2100
+ },
2101
+ "funding": {
2102
+ "type": "github",
2103
+ "url": "https://github.com/sponsors/Borewit"
2104
+ }
2105
+ },
2106
+ "node_modules/@tokenizer/token": {
2107
+ "version": "0.3.0",
2108
+ "resolved": "https://registry.npmmirror.com/@tokenizer/token/-/token-0.3.0.tgz",
2109
+ "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==",
2110
+ "license": "MIT"
2111
+ },
2112
+ "node_modules/@tootallnate/quickjs-emscripten": {
2113
+ "version": "0.23.0",
2114
+ "resolved": "https://registry.npmmirror.com/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
2115
+ "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==",
2116
+ "license": "MIT"
2117
+ },
2118
+ "node_modules/@types/mime-types": {
2119
+ "version": "2.1.4",
2120
+ "resolved": "https://registry.npmmirror.com/@types/mime-types/-/mime-types-2.1.4.tgz",
2121
+ "integrity": "sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==",
2122
+ "license": "MIT"
2123
+ },
2124
+ "node_modules/@types/node": {
2125
+ "version": "22.19.11",
2126
+ "resolved": "https://registry.npmmirror.com/@types/node/-/node-22.19.11.tgz",
2127
+ "integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==",
2128
+ "license": "MIT",
2129
+ "dependencies": {
2130
+ "undici-types": "~6.21.0"
2131
+ }
2132
+ },
2133
+ "node_modules/@types/retry": {
2134
+ "version": "0.12.0",
2135
+ "resolved": "https://registry.npmmirror.com/@types/retry/-/retry-0.12.0.tgz",
2136
+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
2137
+ "license": "MIT"
2138
+ },
2139
+ "node_modules/agent-base": {
2140
+ "version": "7.1.4",
2141
+ "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-7.1.4.tgz",
2142
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
2143
+ "license": "MIT",
2144
+ "engines": {
2145
+ "node": ">= 14"
2146
+ }
2147
+ },
2148
+ "node_modules/ajv": {
2149
+ "version": "8.18.0",
2150
+ "resolved": "https://registry.npmmirror.com/ajv/-/ajv-8.18.0.tgz",
2151
+ "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
2152
+ "license": "MIT",
2153
+ "dependencies": {
2154
+ "fast-deep-equal": "^3.1.3",
2155
+ "fast-uri": "^3.0.1",
2156
+ "json-schema-traverse": "^1.0.0",
2157
+ "require-from-string": "^2.0.2"
2158
+ },
2159
+ "funding": {
2160
+ "type": "github",
2161
+ "url": "https://github.com/sponsors/epoberezkin"
2162
+ }
2163
+ },
2164
+ "node_modules/ajv-formats": {
2165
+ "version": "3.0.1",
2166
+ "resolved": "https://registry.npmmirror.com/ajv-formats/-/ajv-formats-3.0.1.tgz",
2167
+ "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
2168
+ "license": "MIT",
2169
+ "dependencies": {
2170
+ "ajv": "^8.0.0"
2171
+ },
2172
+ "peerDependencies": {
2173
+ "ajv": "^8.0.0"
2174
+ },
2175
+ "peerDependenciesMeta": {
2176
+ "ajv": {
2177
+ "optional": true
2178
+ }
2179
+ }
2180
+ },
2181
+ "node_modules/ansi-regex": {
2182
+ "version": "5.0.1",
2183
+ "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
2184
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2185
+ "license": "MIT",
2186
+ "engines": {
2187
+ "node": ">=8"
2188
+ }
2189
+ },
2190
+ "node_modules/ansi-styles": {
2191
+ "version": "4.3.0",
2192
+ "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz",
2193
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2194
+ "license": "MIT",
2195
+ "dependencies": {
2196
+ "color-convert": "^2.0.1"
2197
+ },
2198
+ "engines": {
2199
+ "node": ">=8"
2200
+ },
2201
+ "funding": {
2202
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2203
+ }
2204
+ },
2205
+ "node_modules/any-promise": {
2206
+ "version": "1.3.0",
2207
+ "resolved": "https://registry.npmmirror.com/any-promise/-/any-promise-1.3.0.tgz",
2208
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
2209
+ "license": "MIT"
2210
+ },
2211
+ "node_modules/ast-types": {
2212
+ "version": "0.13.4",
2213
+ "resolved": "https://registry.npmmirror.com/ast-types/-/ast-types-0.13.4.tgz",
2214
+ "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
2215
+ "license": "MIT",
2216
+ "dependencies": {
2217
+ "tslib": "^2.0.1"
2218
+ },
2219
+ "engines": {
2220
+ "node": ">=4"
2221
+ }
2222
+ },
2223
+ "node_modules/balanced-match": {
2224
+ "version": "4.0.3",
2225
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.3.tgz",
2226
+ "integrity": "sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==",
2227
+ "license": "MIT",
2228
+ "engines": {
2229
+ "node": "20 || >=22"
2230
+ }
2231
+ },
2232
+ "node_modules/base64-js": {
2233
+ "version": "1.5.1",
2234
+ "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
2235
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
2236
+ "funding": [
2237
+ {
2238
+ "type": "github",
2239
+ "url": "https://github.com/sponsors/feross"
2240
+ },
2241
+ {
2242
+ "type": "patreon",
2243
+ "url": "https://www.patreon.com/feross"
2244
+ },
2245
+ {
2246
+ "type": "consulting",
2247
+ "url": "https://feross.org/support"
2248
+ }
2249
+ ],
2250
+ "license": "MIT"
2251
+ },
2252
+ "node_modules/basic-ftp": {
2253
+ "version": "5.1.0",
2254
+ "resolved": "https://registry.npmmirror.com/basic-ftp/-/basic-ftp-5.1.0.tgz",
2255
+ "integrity": "sha512-RkaJzeJKDbaDWTIPiJwubyljaEPwpVWkm9Rt5h9Nd6h7tEXTJ3VB4qxdZBioV7JO5yLUaOKwz7vDOzlncUsegw==",
2256
+ "license": "MIT",
2257
+ "engines": {
2258
+ "node": ">=10.0.0"
2259
+ }
2260
+ },
2261
+ "node_modules/bignumber.js": {
2262
+ "version": "9.3.1",
2263
+ "resolved": "https://registry.npmmirror.com/bignumber.js/-/bignumber.js-9.3.1.tgz",
2264
+ "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
2265
+ "license": "MIT",
2266
+ "engines": {
2267
+ "node": "*"
2268
+ }
2269
+ },
2270
+ "node_modules/bowser": {
2271
+ "version": "2.14.1",
2272
+ "resolved": "https://registry.npmmirror.com/bowser/-/bowser-2.14.1.tgz",
2273
+ "integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
2274
+ "license": "MIT"
2275
+ },
2276
+ "node_modules/brace-expansion": {
2277
+ "version": "5.0.2",
2278
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.2.tgz",
2279
+ "integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==",
2280
+ "license": "MIT",
2281
+ "dependencies": {
2282
+ "balanced-match": "^4.0.2"
2283
+ },
2284
+ "engines": {
2285
+ "node": "20 || >=22"
2286
+ }
2287
+ },
2288
+ "node_modules/buffer-equal-constant-time": {
2289
+ "version": "1.0.1",
2290
+ "resolved": "https://registry.npmmirror.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
2291
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
2292
+ "license": "BSD-3-Clause"
2293
+ },
2294
+ "node_modules/chalk": {
2295
+ "version": "5.6.2",
2296
+ "resolved": "https://registry.npmmirror.com/chalk/-/chalk-5.6.2.tgz",
2297
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
2298
+ "license": "MIT",
2299
+ "engines": {
2300
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
2301
+ },
2302
+ "funding": {
2303
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2304
+ }
2305
+ },
2306
+ "node_modules/cli-highlight": {
2307
+ "version": "2.1.11",
2308
+ "resolved": "https://registry.npmmirror.com/cli-highlight/-/cli-highlight-2.1.11.tgz",
2309
+ "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==",
2310
+ "license": "ISC",
2311
+ "dependencies": {
2312
+ "chalk": "^4.0.0",
2313
+ "highlight.js": "^10.7.1",
2314
+ "mz": "^2.4.0",
2315
+ "parse5": "^5.1.1",
2316
+ "parse5-htmlparser2-tree-adapter": "^6.0.0",
2317
+ "yargs": "^16.0.0"
2318
+ },
2319
+ "bin": {
2320
+ "highlight": "bin/highlight"
2321
+ },
2322
+ "engines": {
2323
+ "node": ">=8.0.0",
2324
+ "npm": ">=5.0.0"
2325
+ }
2326
+ },
2327
+ "node_modules/cli-highlight/node_modules/chalk": {
2328
+ "version": "4.1.2",
2329
+ "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz",
2330
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2331
+ "license": "MIT",
2332
+ "dependencies": {
2333
+ "ansi-styles": "^4.1.0",
2334
+ "supports-color": "^7.1.0"
2335
+ },
2336
+ "engines": {
2337
+ "node": ">=10"
2338
+ },
2339
+ "funding": {
2340
+ "url": "https://github.com/chalk/chalk?sponsor=1"
2341
+ }
2342
+ },
2343
+ "node_modules/cliui": {
2344
+ "version": "7.0.4",
2345
+ "resolved": "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz",
2346
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
2347
+ "license": "ISC",
2348
+ "dependencies": {
2349
+ "string-width": "^4.2.0",
2350
+ "strip-ansi": "^6.0.0",
2351
+ "wrap-ansi": "^7.0.0"
2352
+ }
2353
+ },
2354
+ "node_modules/color-convert": {
2355
+ "version": "2.0.1",
2356
+ "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz",
2357
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2358
+ "license": "MIT",
2359
+ "dependencies": {
2360
+ "color-name": "~1.1.4"
2361
+ },
2362
+ "engines": {
2363
+ "node": ">=7.0.0"
2364
+ }
2365
+ },
2366
+ "node_modules/color-name": {
2367
+ "version": "1.1.4",
2368
+ "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz",
2369
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2370
+ "license": "MIT"
2371
+ },
2372
+ "node_modules/cross-spawn": {
2373
+ "version": "7.0.6",
2374
+ "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz",
2375
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
2376
+ "license": "MIT",
2377
+ "dependencies": {
2378
+ "path-key": "^3.1.0",
2379
+ "shebang-command": "^2.0.0",
2380
+ "which": "^2.0.1"
2381
+ },
2382
+ "engines": {
2383
+ "node": ">= 8"
2384
+ }
2385
+ },
2386
+ "node_modules/data-uri-to-buffer": {
2387
+ "version": "4.0.1",
2388
+ "resolved": "https://registry.npmmirror.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
2389
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
2390
+ "license": "MIT",
2391
+ "engines": {
2392
+ "node": ">= 12"
2393
+ }
2394
+ },
2395
+ "node_modules/debug": {
2396
+ "version": "4.4.3",
2397
+ "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
2398
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2399
+ "license": "MIT",
2400
+ "dependencies": {
2401
+ "ms": "^2.1.3"
2402
+ },
2403
+ "engines": {
2404
+ "node": ">=6.0"
2405
+ },
2406
+ "peerDependenciesMeta": {
2407
+ "supports-color": {
2408
+ "optional": true
2409
+ }
2410
+ }
2411
+ },
2412
+ "node_modules/degenerator": {
2413
+ "version": "5.0.1",
2414
+ "resolved": "https://registry.npmmirror.com/degenerator/-/degenerator-5.0.1.tgz",
2415
+ "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
2416
+ "license": "MIT",
2417
+ "dependencies": {
2418
+ "ast-types": "^0.13.4",
2419
+ "escodegen": "^2.1.0",
2420
+ "esprima": "^4.0.1"
2421
+ },
2422
+ "engines": {
2423
+ "node": ">= 14"
2424
+ }
2425
+ },
2426
+ "node_modules/diff": {
2427
+ "version": "8.0.3",
2428
+ "resolved": "https://registry.npmmirror.com/diff/-/diff-8.0.3.tgz",
2429
+ "integrity": "sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==",
2430
+ "license": "BSD-3-Clause",
2431
+ "engines": {
2432
+ "node": ">=0.3.1"
2433
+ }
2434
+ },
2435
+ "node_modules/eastasianwidth": {
2436
+ "version": "0.2.0",
2437
+ "resolved": "https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
2438
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
2439
+ "license": "MIT"
2440
+ },
2441
+ "node_modules/ecdsa-sig-formatter": {
2442
+ "version": "1.0.11",
2443
+ "resolved": "https://registry.npmmirror.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
2444
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
2445
+ "license": "Apache-2.0",
2446
+ "dependencies": {
2447
+ "safe-buffer": "^5.0.1"
2448
+ }
2449
+ },
2450
+ "node_modules/emoji-regex": {
2451
+ "version": "8.0.0",
2452
+ "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
2453
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2454
+ "license": "MIT"
2455
+ },
2456
+ "node_modules/escalade": {
2457
+ "version": "3.2.0",
2458
+ "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz",
2459
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2460
+ "license": "MIT",
2461
+ "engines": {
2462
+ "node": ">=6"
2463
+ }
2464
+ },
2465
+ "node_modules/escodegen": {
2466
+ "version": "2.1.0",
2467
+ "resolved": "https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz",
2468
+ "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
2469
+ "license": "BSD-2-Clause",
2470
+ "dependencies": {
2471
+ "esprima": "^4.0.1",
2472
+ "estraverse": "^5.2.0",
2473
+ "esutils": "^2.0.2"
2474
+ },
2475
+ "bin": {
2476
+ "escodegen": "bin/escodegen.js",
2477
+ "esgenerate": "bin/esgenerate.js"
2478
+ },
2479
+ "engines": {
2480
+ "node": ">=6.0"
2481
+ },
2482
+ "optionalDependencies": {
2483
+ "source-map": "~0.6.1"
2484
+ }
2485
+ },
2486
+ "node_modules/esprima": {
2487
+ "version": "4.0.1",
2488
+ "resolved": "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz",
2489
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
2490
+ "license": "BSD-2-Clause",
2491
+ "bin": {
2492
+ "esparse": "bin/esparse.js",
2493
+ "esvalidate": "bin/esvalidate.js"
2494
+ },
2495
+ "engines": {
2496
+ "node": ">=4"
2497
+ }
2498
+ },
2499
+ "node_modules/estraverse": {
2500
+ "version": "5.3.0",
2501
+ "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz",
2502
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2503
+ "license": "BSD-2-Clause",
2504
+ "engines": {
2505
+ "node": ">=4.0"
2506
+ }
2507
+ },
2508
+ "node_modules/esutils": {
2509
+ "version": "2.0.3",
2510
+ "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz",
2511
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2512
+ "license": "BSD-2-Clause",
2513
+ "engines": {
2514
+ "node": ">=0.10.0"
2515
+ }
2516
+ },
2517
+ "node_modules/extend": {
2518
+ "version": "3.0.2",
2519
+ "resolved": "https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz",
2520
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
2521
+ "license": "MIT"
2522
+ },
2523
+ "node_modules/fast-deep-equal": {
2524
+ "version": "3.1.3",
2525
+ "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2526
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2527
+ "license": "MIT"
2528
+ },
2529
+ "node_modules/fast-uri": {
2530
+ "version": "3.1.0",
2531
+ "resolved": "https://registry.npmmirror.com/fast-uri/-/fast-uri-3.1.0.tgz",
2532
+ "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
2533
+ "funding": [
2534
+ {
2535
+ "type": "github",
2536
+ "url": "https://github.com/sponsors/fastify"
2537
+ },
2538
+ {
2539
+ "type": "opencollective",
2540
+ "url": "https://opencollective.com/fastify"
2541
+ }
2542
+ ],
2543
+ "license": "BSD-3-Clause"
2544
+ },
2545
+ "node_modules/fast-xml-parser": {
2546
+ "version": "5.3.6",
2547
+ "resolved": "https://registry.npmmirror.com/fast-xml-parser/-/fast-xml-parser-5.3.6.tgz",
2548
+ "integrity": "sha512-QNI3sAvSvaOiaMl8FYU4trnEzCwiRr8XMWgAHzlrWpTSj+QaCSvOf1h82OEP1s4hiAXhnbXSyFWCf4ldZzZRVA==",
2549
+ "funding": [
2550
+ {
2551
+ "type": "github",
2552
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2553
+ }
2554
+ ],
2555
+ "license": "MIT",
2556
+ "dependencies": {
2557
+ "strnum": "^2.1.2"
2558
+ },
2559
+ "bin": {
2560
+ "fxparser": "src/cli/cli.js"
2561
+ }
2562
+ },
2563
+ "node_modules/fetch-blob": {
2564
+ "version": "3.2.0",
2565
+ "resolved": "https://registry.npmmirror.com/fetch-blob/-/fetch-blob-3.2.0.tgz",
2566
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
2567
+ "funding": [
2568
+ {
2569
+ "type": "github",
2570
+ "url": "https://github.com/sponsors/jimmywarting"
2571
+ },
2572
+ {
2573
+ "type": "paypal",
2574
+ "url": "https://paypal.me/jimmywarting"
2575
+ }
2576
+ ],
2577
+ "license": "MIT",
2578
+ "dependencies": {
2579
+ "node-domexception": "^1.0.0",
2580
+ "web-streams-polyfill": "^3.0.3"
2581
+ },
2582
+ "engines": {
2583
+ "node": "^12.20 || >= 14.13"
2584
+ }
2585
+ },
2586
+ "node_modules/file-type": {
2587
+ "version": "21.3.0",
2588
+ "resolved": "https://registry.npmmirror.com/file-type/-/file-type-21.3.0.tgz",
2589
+ "integrity": "sha512-8kPJMIGz1Yt/aPEwOsrR97ZyZaD1Iqm8PClb1nYFclUCkBi0Ma5IsYNQzvSFS9ib51lWyIw5mIT9rWzI/xjpzA==",
2590
+ "license": "MIT",
2591
+ "dependencies": {
2592
+ "@tokenizer/inflate": "^0.4.1",
2593
+ "strtok3": "^10.3.4",
2594
+ "token-types": "^6.1.1",
2595
+ "uint8array-extras": "^1.4.0"
2596
+ },
2597
+ "engines": {
2598
+ "node": ">=20"
2599
+ },
2600
+ "funding": {
2601
+ "url": "https://github.com/sindresorhus/file-type?sponsor=1"
2602
+ }
2603
+ },
2604
+ "node_modules/foreground-child": {
2605
+ "version": "3.3.1",
2606
+ "resolved": "https://registry.npmmirror.com/foreground-child/-/foreground-child-3.3.1.tgz",
2607
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
2608
+ "license": "ISC",
2609
+ "dependencies": {
2610
+ "cross-spawn": "^7.0.6",
2611
+ "signal-exit": "^4.0.1"
2612
+ },
2613
+ "engines": {
2614
+ "node": ">=14"
2615
+ },
2616
+ "funding": {
2617
+ "url": "https://github.com/sponsors/isaacs"
2618
+ }
2619
+ },
2620
+ "node_modules/foreground-child/node_modules/signal-exit": {
2621
+ "version": "4.1.0",
2622
+ "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz",
2623
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2624
+ "license": "ISC",
2625
+ "engines": {
2626
+ "node": ">=14"
2627
+ },
2628
+ "funding": {
2629
+ "url": "https://github.com/sponsors/isaacs"
2630
+ }
2631
+ },
2632
+ "node_modules/formdata-polyfill": {
2633
+ "version": "4.0.10",
2634
+ "resolved": "https://registry.npmmirror.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
2635
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
2636
+ "license": "MIT",
2637
+ "dependencies": {
2638
+ "fetch-blob": "^3.1.2"
2639
+ },
2640
+ "engines": {
2641
+ "node": ">=12.20.0"
2642
+ }
2643
+ },
2644
+ "node_modules/gaxios": {
2645
+ "version": "7.1.3",
2646
+ "resolved": "https://registry.npmmirror.com/gaxios/-/gaxios-7.1.3.tgz",
2647
+ "integrity": "sha512-YGGyuEdVIjqxkxVH1pUTMY/XtmmsApXrCVv5EU25iX6inEPbV+VakJfLealkBtJN69AQmh1eGOdCl9Sm1UP6XQ==",
2648
+ "license": "Apache-2.0",
2649
+ "dependencies": {
2650
+ "extend": "^3.0.2",
2651
+ "https-proxy-agent": "^7.0.1",
2652
+ "node-fetch": "^3.3.2",
2653
+ "rimraf": "^5.0.1"
2654
+ },
2655
+ "engines": {
2656
+ "node": ">=18"
2657
+ }
2658
+ },
2659
+ "node_modules/gcp-metadata": {
2660
+ "version": "8.1.2",
2661
+ "resolved": "https://registry.npmmirror.com/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
2662
+ "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
2663
+ "license": "Apache-2.0",
2664
+ "dependencies": {
2665
+ "gaxios": "^7.0.0",
2666
+ "google-logging-utils": "^1.0.0",
2667
+ "json-bigint": "^1.0.0"
2668
+ },
2669
+ "engines": {
2670
+ "node": ">=18"
2671
+ }
2672
+ },
2673
+ "node_modules/get-caller-file": {
2674
+ "version": "2.0.5",
2675
+ "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz",
2676
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2677
+ "license": "ISC",
2678
+ "engines": {
2679
+ "node": "6.* || 8.* || >= 10.*"
2680
+ }
2681
+ },
2682
+ "node_modules/get-east-asian-width": {
2683
+ "version": "1.5.0",
2684
+ "resolved": "https://registry.npmmirror.com/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz",
2685
+ "integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==",
2686
+ "license": "MIT",
2687
+ "engines": {
2688
+ "node": ">=18"
2689
+ },
2690
+ "funding": {
2691
+ "url": "https://github.com/sponsors/sindresorhus"
2692
+ }
2693
+ },
2694
+ "node_modules/get-uri": {
2695
+ "version": "6.0.5",
2696
+ "resolved": "https://registry.npmmirror.com/get-uri/-/get-uri-6.0.5.tgz",
2697
+ "integrity": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==",
2698
+ "license": "MIT",
2699
+ "dependencies": {
2700
+ "basic-ftp": "^5.0.2",
2701
+ "data-uri-to-buffer": "^6.0.2",
2702
+ "debug": "^4.3.4"
2703
+ },
2704
+ "engines": {
2705
+ "node": ">= 14"
2706
+ }
2707
+ },
2708
+ "node_modules/get-uri/node_modules/data-uri-to-buffer": {
2709
+ "version": "6.0.2",
2710
+ "resolved": "https://registry.npmmirror.com/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz",
2711
+ "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==",
2712
+ "license": "MIT",
2713
+ "engines": {
2714
+ "node": ">= 14"
2715
+ }
2716
+ },
2717
+ "node_modules/glob": {
2718
+ "version": "13.0.6",
2719
+ "resolved": "https://registry.npmmirror.com/glob/-/glob-13.0.6.tgz",
2720
+ "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
2721
+ "license": "BlueOak-1.0.0",
2722
+ "dependencies": {
2723
+ "minimatch": "^10.2.2",
2724
+ "minipass": "^7.1.3",
2725
+ "path-scurry": "^2.0.2"
2726
+ },
2727
+ "engines": {
2728
+ "node": "18 || 20 || >=22"
2729
+ },
2730
+ "funding": {
2731
+ "url": "https://github.com/sponsors/isaacs"
2732
+ }
2733
+ },
2734
+ "node_modules/google-auth-library": {
2735
+ "version": "10.5.0",
2736
+ "resolved": "https://registry.npmmirror.com/google-auth-library/-/google-auth-library-10.5.0.tgz",
2737
+ "integrity": "sha512-7ABviyMOlX5hIVD60YOfHw4/CxOfBhyduaYB+wbFWCWoni4N7SLcV46hrVRktuBbZjFC9ONyqamZITN7q3n32w==",
2738
+ "license": "Apache-2.0",
2739
+ "dependencies": {
2740
+ "base64-js": "^1.3.0",
2741
+ "ecdsa-sig-formatter": "^1.0.11",
2742
+ "gaxios": "^7.0.0",
2743
+ "gcp-metadata": "^8.0.0",
2744
+ "google-logging-utils": "^1.0.0",
2745
+ "gtoken": "^8.0.0",
2746
+ "jws": "^4.0.0"
2747
+ },
2748
+ "engines": {
2749
+ "node": ">=18"
2750
+ }
2751
+ },
2752
+ "node_modules/google-logging-utils": {
2753
+ "version": "1.1.3",
2754
+ "resolved": "https://registry.npmmirror.com/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
2755
+ "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
2756
+ "license": "Apache-2.0",
2757
+ "engines": {
2758
+ "node": ">=14"
2759
+ }
2760
+ },
2761
+ "node_modules/graceful-fs": {
2762
+ "version": "4.2.11",
2763
+ "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz",
2764
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2765
+ "license": "ISC"
2766
+ },
2767
+ "node_modules/gtoken": {
2768
+ "version": "8.0.0",
2769
+ "resolved": "https://registry.npmmirror.com/gtoken/-/gtoken-8.0.0.tgz",
2770
+ "integrity": "sha512-+CqsMbHPiSTdtSO14O51eMNlrp9N79gmeqmXeouJOhfucAedHw9noVe/n5uJk3tbKE6a+6ZCQg3RPhVhHByAIw==",
2771
+ "license": "MIT",
2772
+ "dependencies": {
2773
+ "gaxios": "^7.0.0",
2774
+ "jws": "^4.0.0"
2775
+ },
2776
+ "engines": {
2777
+ "node": ">=18"
2778
+ }
2779
+ },
2780
+ "node_modules/has-flag": {
2781
+ "version": "4.0.0",
2782
+ "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz",
2783
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2784
+ "license": "MIT",
2785
+ "engines": {
2786
+ "node": ">=8"
2787
+ }
2788
+ },
2789
+ "node_modules/highlight.js": {
2790
+ "version": "10.7.3",
2791
+ "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-10.7.3.tgz",
2792
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
2793
+ "license": "BSD-3-Clause",
2794
+ "engines": {
2795
+ "node": "*"
2796
+ }
2797
+ },
2798
+ "node_modules/hosted-git-info": {
2799
+ "version": "9.0.2",
2800
+ "resolved": "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-9.0.2.tgz",
2801
+ "integrity": "sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==",
2802
+ "license": "ISC",
2803
+ "dependencies": {
2804
+ "lru-cache": "^11.1.0"
2805
+ },
2806
+ "engines": {
2807
+ "node": "^20.17.0 || >=22.9.0"
2808
+ }
2809
+ },
2810
+ "node_modules/http-proxy-agent": {
2811
+ "version": "7.0.2",
2812
+ "resolved": "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
2813
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
2814
+ "license": "MIT",
2815
+ "dependencies": {
2816
+ "agent-base": "^7.1.0",
2817
+ "debug": "^4.3.4"
2818
+ },
2819
+ "engines": {
2820
+ "node": ">= 14"
2821
+ }
2822
+ },
2823
+ "node_modules/https-proxy-agent": {
2824
+ "version": "7.0.6",
2825
+ "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
2826
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
2827
+ "license": "MIT",
2828
+ "dependencies": {
2829
+ "agent-base": "^7.1.2",
2830
+ "debug": "4"
2831
+ },
2832
+ "engines": {
2833
+ "node": ">= 14"
2834
+ }
2835
+ },
2836
+ "node_modules/ieee754": {
2837
+ "version": "1.2.1",
2838
+ "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
2839
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
2840
+ "funding": [
2841
+ {
2842
+ "type": "github",
2843
+ "url": "https://github.com/sponsors/feross"
2844
+ },
2845
+ {
2846
+ "type": "patreon",
2847
+ "url": "https://www.patreon.com/feross"
2848
+ },
2849
+ {
2850
+ "type": "consulting",
2851
+ "url": "https://feross.org/support"
2852
+ }
2853
+ ],
2854
+ "license": "BSD-3-Clause"
2855
+ },
2856
+ "node_modules/ignore": {
2857
+ "version": "7.0.5",
2858
+ "resolved": "https://registry.npmmirror.com/ignore/-/ignore-7.0.5.tgz",
2859
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
2860
+ "license": "MIT",
2861
+ "engines": {
2862
+ "node": ">= 4"
2863
+ }
2864
+ },
2865
+ "node_modules/ip-address": {
2866
+ "version": "10.1.0",
2867
+ "resolved": "https://registry.npmmirror.com/ip-address/-/ip-address-10.1.0.tgz",
2868
+ "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
2869
+ "license": "MIT",
2870
+ "engines": {
2871
+ "node": ">= 12"
2872
+ }
2873
+ },
2874
+ "node_modules/is-fullwidth-code-point": {
2875
+ "version": "3.0.0",
2876
+ "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2877
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2878
+ "license": "MIT",
2879
+ "engines": {
2880
+ "node": ">=8"
2881
+ }
2882
+ },
2883
+ "node_modules/isexe": {
2884
+ "version": "2.0.0",
2885
+ "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz",
2886
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2887
+ "license": "ISC"
2888
+ },
2889
+ "node_modules/jackspeak": {
2890
+ "version": "3.4.3",
2891
+ "resolved": "https://registry.npmmirror.com/jackspeak/-/jackspeak-3.4.3.tgz",
2892
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
2893
+ "license": "BlueOak-1.0.0",
2894
+ "dependencies": {
2895
+ "@isaacs/cliui": "^8.0.2"
2896
+ },
2897
+ "funding": {
2898
+ "url": "https://github.com/sponsors/isaacs"
2899
+ },
2900
+ "optionalDependencies": {
2901
+ "@pkgjs/parseargs": "^0.11.0"
2902
+ }
2903
+ },
2904
+ "node_modules/json-bigint": {
2905
+ "version": "1.0.0",
2906
+ "resolved": "https://registry.npmmirror.com/json-bigint/-/json-bigint-1.0.0.tgz",
2907
+ "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
2908
+ "license": "MIT",
2909
+ "dependencies": {
2910
+ "bignumber.js": "^9.0.0"
2911
+ }
2912
+ },
2913
+ "node_modules/json-schema-to-ts": {
2914
+ "version": "3.1.1",
2915
+ "resolved": "https://registry.npmmirror.com/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
2916
+ "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
2917
+ "license": "MIT",
2918
+ "dependencies": {
2919
+ "@babel/runtime": "^7.18.3",
2920
+ "ts-algebra": "^2.0.0"
2921
+ },
2922
+ "engines": {
2923
+ "node": ">=16"
2924
+ }
2925
+ },
2926
+ "node_modules/json-schema-traverse": {
2927
+ "version": "1.0.0",
2928
+ "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
2929
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
2930
+ "license": "MIT"
2931
+ },
2932
+ "node_modules/jwa": {
2933
+ "version": "2.0.1",
2934
+ "resolved": "https://registry.npmmirror.com/jwa/-/jwa-2.0.1.tgz",
2935
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
2936
+ "license": "MIT",
2937
+ "dependencies": {
2938
+ "buffer-equal-constant-time": "^1.0.1",
2939
+ "ecdsa-sig-formatter": "1.0.11",
2940
+ "safe-buffer": "^5.0.1"
2941
+ }
2942
+ },
2943
+ "node_modules/jws": {
2944
+ "version": "4.0.1",
2945
+ "resolved": "https://registry.npmmirror.com/jws/-/jws-4.0.1.tgz",
2946
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
2947
+ "license": "MIT",
2948
+ "dependencies": {
2949
+ "jwa": "^2.0.1",
2950
+ "safe-buffer": "^5.0.1"
2951
+ }
2952
+ },
2953
+ "node_modules/koffi": {
2954
+ "version": "2.15.1",
2955
+ "resolved": "https://registry.npmmirror.com/koffi/-/koffi-2.15.1.tgz",
2956
+ "integrity": "sha512-mnc0C0crx/xMSljb5s9QbnLrlFHprioFO1hkXyuSuO/QtbpLDa0l/uM21944UfQunMKmp3/r789DTDxVyyH6aA==",
2957
+ "hasInstallScript": true,
2958
+ "license": "MIT",
2959
+ "funding": {
2960
+ "url": "https://liberapay.com/Koromix"
2961
+ }
2962
+ },
2963
+ "node_modules/long": {
2964
+ "version": "5.3.2",
2965
+ "resolved": "https://registry.npmmirror.com/long/-/long-5.3.2.tgz",
2966
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
2967
+ "license": "Apache-2.0"
2968
+ },
2969
+ "node_modules/lru-cache": {
2970
+ "version": "11.2.6",
2971
+ "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-11.2.6.tgz",
2972
+ "integrity": "sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==",
2973
+ "license": "BlueOak-1.0.0",
2974
+ "engines": {
2975
+ "node": "20 || >=22"
2976
+ }
2977
+ },
2978
+ "node_modules/marked": {
2979
+ "version": "15.0.12",
2980
+ "resolved": "https://registry.npmmirror.com/marked/-/marked-15.0.12.tgz",
2981
+ "integrity": "sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==",
2982
+ "license": "MIT",
2983
+ "bin": {
2984
+ "marked": "bin/marked.js"
2985
+ },
2986
+ "engines": {
2987
+ "node": ">= 18"
2988
+ }
2989
+ },
2990
+ "node_modules/mime-db": {
2991
+ "version": "1.54.0",
2992
+ "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.54.0.tgz",
2993
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
2994
+ "license": "MIT",
2995
+ "engines": {
2996
+ "node": ">= 0.6"
2997
+ }
2998
+ },
2999
+ "node_modules/mime-types": {
3000
+ "version": "3.0.2",
3001
+ "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-3.0.2.tgz",
3002
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
3003
+ "license": "MIT",
3004
+ "dependencies": {
3005
+ "mime-db": "^1.54.0"
3006
+ },
3007
+ "engines": {
3008
+ "node": ">=18"
3009
+ },
3010
+ "funding": {
3011
+ "type": "opencollective",
3012
+ "url": "https://opencollective.com/express"
3013
+ }
3014
+ },
3015
+ "node_modules/minimatch": {
3016
+ "version": "10.2.2",
3017
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.2.tgz",
3018
+ "integrity": "sha512-+G4CpNBxa5MprY+04MbgOw1v7So6n5JY166pFi9KfYwT78fxScCeSNQSNzp6dpPSW2rONOps6Ocam1wFhCgoVw==",
3019
+ "license": "BlueOak-1.0.0",
3020
+ "dependencies": {
3021
+ "brace-expansion": "^5.0.2"
3022
+ },
3023
+ "engines": {
3024
+ "node": "18 || 20 || >=22"
3025
+ },
3026
+ "funding": {
3027
+ "url": "https://github.com/sponsors/isaacs"
3028
+ }
3029
+ },
3030
+ "node_modules/minipass": {
3031
+ "version": "7.1.3",
3032
+ "resolved": "https://registry.npmmirror.com/minipass/-/minipass-7.1.3.tgz",
3033
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
3034
+ "license": "BlueOak-1.0.0",
3035
+ "engines": {
3036
+ "node": ">=16 || 14 >=14.17"
3037
+ }
3038
+ },
3039
+ "node_modules/ms": {
3040
+ "version": "2.1.3",
3041
+ "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
3042
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3043
+ "license": "MIT"
3044
+ },
3045
+ "node_modules/mz": {
3046
+ "version": "2.7.0",
3047
+ "resolved": "https://registry.npmmirror.com/mz/-/mz-2.7.0.tgz",
3048
+ "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
3049
+ "license": "MIT",
3050
+ "dependencies": {
3051
+ "any-promise": "^1.0.0",
3052
+ "object-assign": "^4.0.1",
3053
+ "thenify-all": "^1.0.0"
3054
+ }
3055
+ },
3056
+ "node_modules/netmask": {
3057
+ "version": "2.0.2",
3058
+ "resolved": "https://registry.npmmirror.com/netmask/-/netmask-2.0.2.tgz",
3059
+ "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==",
3060
+ "license": "MIT",
3061
+ "engines": {
3062
+ "node": ">= 0.4.0"
3063
+ }
3064
+ },
3065
+ "node_modules/node-domexception": {
3066
+ "version": "1.0.0",
3067
+ "resolved": "https://registry.npmmirror.com/node-domexception/-/node-domexception-1.0.0.tgz",
3068
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
3069
+ "deprecated": "Use your platform's native DOMException instead",
3070
+ "funding": [
3071
+ {
3072
+ "type": "github",
3073
+ "url": "https://github.com/sponsors/jimmywarting"
3074
+ },
3075
+ {
3076
+ "type": "github",
3077
+ "url": "https://paypal.me/jimmywarting"
3078
+ }
3079
+ ],
3080
+ "license": "MIT",
3081
+ "engines": {
3082
+ "node": ">=10.5.0"
3083
+ }
3084
+ },
3085
+ "node_modules/node-fetch": {
3086
+ "version": "3.3.2",
3087
+ "resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-3.3.2.tgz",
3088
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
3089
+ "license": "MIT",
3090
+ "dependencies": {
3091
+ "data-uri-to-buffer": "^4.0.0",
3092
+ "fetch-blob": "^3.1.4",
3093
+ "formdata-polyfill": "^4.0.10"
3094
+ },
3095
+ "engines": {
3096
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
3097
+ },
3098
+ "funding": {
3099
+ "type": "opencollective",
3100
+ "url": "https://opencollective.com/node-fetch"
3101
+ }
3102
+ },
3103
+ "node_modules/object-assign": {
3104
+ "version": "4.1.1",
3105
+ "resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz",
3106
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
3107
+ "license": "MIT",
3108
+ "engines": {
3109
+ "node": ">=0.10.0"
3110
+ }
3111
+ },
3112
+ "node_modules/openai": {
3113
+ "version": "6.10.0",
3114
+ "resolved": "https://registry.npmmirror.com/openai/-/openai-6.10.0.tgz",
3115
+ "integrity": "sha512-ITxOGo7rO3XRMiKA5l7tQ43iNNu+iXGFAcf2t+aWVzzqRaS0i7m1K2BhxNdaveB+5eENhO0VY1FkiZzhBk4v3A==",
3116
+ "license": "Apache-2.0",
3117
+ "bin": {
3118
+ "openai": "bin/cli"
3119
+ },
3120
+ "peerDependencies": {
3121
+ "ws": "^8.18.0",
3122
+ "zod": "^3.25 || ^4.0"
3123
+ },
3124
+ "peerDependenciesMeta": {
3125
+ "ws": {
3126
+ "optional": true
3127
+ },
3128
+ "zod": {
3129
+ "optional": true
3130
+ }
3131
+ }
3132
+ },
3133
+ "node_modules/p-retry": {
3134
+ "version": "4.6.2",
3135
+ "resolved": "https://registry.npmmirror.com/p-retry/-/p-retry-4.6.2.tgz",
3136
+ "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
3137
+ "license": "MIT",
3138
+ "dependencies": {
3139
+ "@types/retry": "0.12.0",
3140
+ "retry": "^0.13.1"
3141
+ },
3142
+ "engines": {
3143
+ "node": ">=8"
3144
+ }
3145
+ },
3146
+ "node_modules/pac-proxy-agent": {
3147
+ "version": "7.2.0",
3148
+ "resolved": "https://registry.npmmirror.com/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz",
3149
+ "integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
3150
+ "license": "MIT",
3151
+ "dependencies": {
3152
+ "@tootallnate/quickjs-emscripten": "^0.23.0",
3153
+ "agent-base": "^7.1.2",
3154
+ "debug": "^4.3.4",
3155
+ "get-uri": "^6.0.1",
3156
+ "http-proxy-agent": "^7.0.0",
3157
+ "https-proxy-agent": "^7.0.6",
3158
+ "pac-resolver": "^7.0.1",
3159
+ "socks-proxy-agent": "^8.0.5"
3160
+ },
3161
+ "engines": {
3162
+ "node": ">= 14"
3163
+ }
3164
+ },
3165
+ "node_modules/pac-resolver": {
3166
+ "version": "7.0.1",
3167
+ "resolved": "https://registry.npmmirror.com/pac-resolver/-/pac-resolver-7.0.1.tgz",
3168
+ "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
3169
+ "license": "MIT",
3170
+ "dependencies": {
3171
+ "degenerator": "^5.0.0",
3172
+ "netmask": "^2.0.2"
3173
+ },
3174
+ "engines": {
3175
+ "node": ">= 14"
3176
+ }
3177
+ },
3178
+ "node_modules/package-json-from-dist": {
3179
+ "version": "1.0.1",
3180
+ "resolved": "https://registry.npmmirror.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
3181
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
3182
+ "license": "BlueOak-1.0.0"
3183
+ },
3184
+ "node_modules/parse5": {
3185
+ "version": "5.1.1",
3186
+ "resolved": "https://registry.npmmirror.com/parse5/-/parse5-5.1.1.tgz",
3187
+ "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==",
3188
+ "license": "MIT"
3189
+ },
3190
+ "node_modules/parse5-htmlparser2-tree-adapter": {
3191
+ "version": "6.0.1",
3192
+ "resolved": "https://registry.npmmirror.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
3193
+ "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
3194
+ "license": "MIT",
3195
+ "dependencies": {
3196
+ "parse5": "^6.0.1"
3197
+ }
3198
+ },
3199
+ "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
3200
+ "version": "6.0.1",
3201
+ "resolved": "https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz",
3202
+ "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
3203
+ "license": "MIT"
3204
+ },
3205
+ "node_modules/partial-json": {
3206
+ "version": "0.1.7",
3207
+ "resolved": "https://registry.npmmirror.com/partial-json/-/partial-json-0.1.7.tgz",
3208
+ "integrity": "sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==",
3209
+ "license": "MIT"
3210
+ },
3211
+ "node_modules/path-key": {
3212
+ "version": "3.1.1",
3213
+ "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz",
3214
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3215
+ "license": "MIT",
3216
+ "engines": {
3217
+ "node": ">=8"
3218
+ }
3219
+ },
3220
+ "node_modules/path-scurry": {
3221
+ "version": "2.0.2",
3222
+ "resolved": "https://registry.npmmirror.com/path-scurry/-/path-scurry-2.0.2.tgz",
3223
+ "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
3224
+ "license": "BlueOak-1.0.0",
3225
+ "dependencies": {
3226
+ "lru-cache": "^11.0.0",
3227
+ "minipass": "^7.1.2"
3228
+ },
3229
+ "engines": {
3230
+ "node": "18 || 20 || >=22"
3231
+ },
3232
+ "funding": {
3233
+ "url": "https://github.com/sponsors/isaacs"
3234
+ }
3235
+ },
3236
+ "node_modules/proper-lockfile": {
3237
+ "version": "4.1.2",
3238
+ "resolved": "https://registry.npmmirror.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
3239
+ "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
3240
+ "license": "MIT",
3241
+ "dependencies": {
3242
+ "graceful-fs": "^4.2.4",
3243
+ "retry": "^0.12.0",
3244
+ "signal-exit": "^3.0.2"
3245
+ }
3246
+ },
3247
+ "node_modules/proper-lockfile/node_modules/retry": {
3248
+ "version": "0.12.0",
3249
+ "resolved": "https://registry.npmmirror.com/retry/-/retry-0.12.0.tgz",
3250
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
3251
+ "license": "MIT",
3252
+ "engines": {
3253
+ "node": ">= 4"
3254
+ }
3255
+ },
3256
+ "node_modules/protobufjs": {
3257
+ "version": "7.5.4",
3258
+ "resolved": "https://registry.npmmirror.com/protobufjs/-/protobufjs-7.5.4.tgz",
3259
+ "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==",
3260
+ "hasInstallScript": true,
3261
+ "license": "BSD-3-Clause",
3262
+ "dependencies": {
3263
+ "@protobufjs/aspromise": "^1.1.2",
3264
+ "@protobufjs/base64": "^1.1.2",
3265
+ "@protobufjs/codegen": "^2.0.4",
3266
+ "@protobufjs/eventemitter": "^1.1.0",
3267
+ "@protobufjs/fetch": "^1.1.0",
3268
+ "@protobufjs/float": "^1.0.2",
3269
+ "@protobufjs/inquire": "^1.1.0",
3270
+ "@protobufjs/path": "^1.1.2",
3271
+ "@protobufjs/pool": "^1.1.0",
3272
+ "@protobufjs/utf8": "^1.1.0",
3273
+ "@types/node": ">=13.7.0",
3274
+ "long": "^5.0.0"
3275
+ },
3276
+ "engines": {
3277
+ "node": ">=12.0.0"
3278
+ }
3279
+ },
3280
+ "node_modules/proxy-agent": {
3281
+ "version": "6.5.0",
3282
+ "resolved": "https://registry.npmmirror.com/proxy-agent/-/proxy-agent-6.5.0.tgz",
3283
+ "integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
3284
+ "license": "MIT",
3285
+ "dependencies": {
3286
+ "agent-base": "^7.1.2",
3287
+ "debug": "^4.3.4",
3288
+ "http-proxy-agent": "^7.0.1",
3289
+ "https-proxy-agent": "^7.0.6",
3290
+ "lru-cache": "^7.14.1",
3291
+ "pac-proxy-agent": "^7.1.0",
3292
+ "proxy-from-env": "^1.1.0",
3293
+ "socks-proxy-agent": "^8.0.5"
3294
+ },
3295
+ "engines": {
3296
+ "node": ">= 14"
3297
+ }
3298
+ },
3299
+ "node_modules/proxy-agent/node_modules/lru-cache": {
3300
+ "version": "7.18.3",
3301
+ "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-7.18.3.tgz",
3302
+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
3303
+ "license": "ISC",
3304
+ "engines": {
3305
+ "node": ">=12"
3306
+ }
3307
+ },
3308
+ "node_modules/proxy-from-env": {
3309
+ "version": "1.1.0",
3310
+ "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
3311
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
3312
+ "license": "MIT"
3313
+ },
3314
+ "node_modules/require-directory": {
3315
+ "version": "2.1.1",
3316
+ "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz",
3317
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
3318
+ "license": "MIT",
3319
+ "engines": {
3320
+ "node": ">=0.10.0"
3321
+ }
3322
+ },
3323
+ "node_modules/require-from-string": {
3324
+ "version": "2.0.2",
3325
+ "resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz",
3326
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
3327
+ "license": "MIT",
3328
+ "engines": {
3329
+ "node": ">=0.10.0"
3330
+ }
3331
+ },
3332
+ "node_modules/retry": {
3333
+ "version": "0.13.1",
3334
+ "resolved": "https://registry.npmmirror.com/retry/-/retry-0.13.1.tgz",
3335
+ "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
3336
+ "license": "MIT",
3337
+ "engines": {
3338
+ "node": ">= 4"
3339
+ }
3340
+ },
3341
+ "node_modules/rimraf": {
3342
+ "version": "5.0.10",
3343
+ "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-5.0.10.tgz",
3344
+ "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==",
3345
+ "license": "ISC",
3346
+ "dependencies": {
3347
+ "glob": "^10.3.7"
3348
+ },
3349
+ "bin": {
3350
+ "rimraf": "dist/esm/bin.mjs"
3351
+ },
3352
+ "funding": {
3353
+ "url": "https://github.com/sponsors/isaacs"
3354
+ }
3355
+ },
3356
+ "node_modules/rimraf/node_modules/balanced-match": {
3357
+ "version": "1.0.2",
3358
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
3359
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
3360
+ "license": "MIT"
3361
+ },
3362
+ "node_modules/rimraf/node_modules/brace-expansion": {
3363
+ "version": "2.0.2",
3364
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz",
3365
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
3366
+ "license": "MIT",
3367
+ "dependencies": {
3368
+ "balanced-match": "^1.0.0"
3369
+ }
3370
+ },
3371
+ "node_modules/rimraf/node_modules/glob": {
3372
+ "version": "10.4.5",
3373
+ "resolved": "https://registry.npmmirror.com/glob/-/glob-10.4.5.tgz",
3374
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
3375
+ "license": "ISC",
3376
+ "dependencies": {
3377
+ "foreground-child": "^3.1.0",
3378
+ "jackspeak": "^3.1.2",
3379
+ "minimatch": "^9.0.4",
3380
+ "minipass": "^7.1.2",
3381
+ "package-json-from-dist": "^1.0.0",
3382
+ "path-scurry": "^1.11.1"
3383
+ },
3384
+ "bin": {
3385
+ "glob": "dist/esm/bin.mjs"
3386
+ },
3387
+ "funding": {
3388
+ "url": "https://github.com/sponsors/isaacs"
3389
+ }
3390
+ },
3391
+ "node_modules/rimraf/node_modules/lru-cache": {
3392
+ "version": "10.4.3",
3393
+ "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.4.3.tgz",
3394
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
3395
+ "license": "ISC"
3396
+ },
3397
+ "node_modules/rimraf/node_modules/minimatch": {
3398
+ "version": "9.0.5",
3399
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz",
3400
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
3401
+ "license": "ISC",
3402
+ "dependencies": {
3403
+ "brace-expansion": "^2.0.1"
3404
+ },
3405
+ "engines": {
3406
+ "node": ">=16 || 14 >=14.17"
3407
+ },
3408
+ "funding": {
3409
+ "url": "https://github.com/sponsors/isaacs"
3410
+ }
3411
+ },
3412
+ "node_modules/rimraf/node_modules/path-scurry": {
3413
+ "version": "1.11.1",
3414
+ "resolved": "https://registry.npmmirror.com/path-scurry/-/path-scurry-1.11.1.tgz",
3415
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
3416
+ "license": "BlueOak-1.0.0",
3417
+ "dependencies": {
3418
+ "lru-cache": "^10.2.0",
3419
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
3420
+ },
3421
+ "engines": {
3422
+ "node": ">=16 || 14 >=14.18"
3423
+ },
3424
+ "funding": {
3425
+ "url": "https://github.com/sponsors/isaacs"
3426
+ }
3427
+ },
3428
+ "node_modules/safe-buffer": {
3429
+ "version": "5.2.1",
3430
+ "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
3431
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
3432
+ "funding": [
3433
+ {
3434
+ "type": "github",
3435
+ "url": "https://github.com/sponsors/feross"
3436
+ },
3437
+ {
3438
+ "type": "patreon",
3439
+ "url": "https://www.patreon.com/feross"
3440
+ },
3441
+ {
3442
+ "type": "consulting",
3443
+ "url": "https://feross.org/support"
3444
+ }
3445
+ ],
3446
+ "license": "MIT"
3447
+ },
3448
+ "node_modules/shebang-command": {
3449
+ "version": "2.0.0",
3450
+ "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz",
3451
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3452
+ "license": "MIT",
3453
+ "dependencies": {
3454
+ "shebang-regex": "^3.0.0"
3455
+ },
3456
+ "engines": {
3457
+ "node": ">=8"
3458
+ }
3459
+ },
3460
+ "node_modules/shebang-regex": {
3461
+ "version": "3.0.0",
3462
+ "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz",
3463
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3464
+ "license": "MIT",
3465
+ "engines": {
3466
+ "node": ">=8"
3467
+ }
3468
+ },
3469
+ "node_modules/signal-exit": {
3470
+ "version": "3.0.7",
3471
+ "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz",
3472
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
3473
+ "license": "ISC"
3474
+ },
3475
+ "node_modules/smart-buffer": {
3476
+ "version": "4.2.0",
3477
+ "resolved": "https://registry.npmmirror.com/smart-buffer/-/smart-buffer-4.2.0.tgz",
3478
+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
3479
+ "license": "MIT",
3480
+ "engines": {
3481
+ "node": ">= 6.0.0",
3482
+ "npm": ">= 3.0.0"
3483
+ }
3484
+ },
3485
+ "node_modules/socks": {
3486
+ "version": "2.8.7",
3487
+ "resolved": "https://registry.npmmirror.com/socks/-/socks-2.8.7.tgz",
3488
+ "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
3489
+ "license": "MIT",
3490
+ "dependencies": {
3491
+ "ip-address": "^10.0.1",
3492
+ "smart-buffer": "^4.2.0"
3493
+ },
3494
+ "engines": {
3495
+ "node": ">= 10.0.0",
3496
+ "npm": ">= 3.0.0"
3497
+ }
3498
+ },
3499
+ "node_modules/socks-proxy-agent": {
3500
+ "version": "8.0.5",
3501
+ "resolved": "https://registry.npmmirror.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
3502
+ "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
3503
+ "license": "MIT",
3504
+ "dependencies": {
3505
+ "agent-base": "^7.1.2",
3506
+ "debug": "^4.3.4",
3507
+ "socks": "^2.8.3"
3508
+ },
3509
+ "engines": {
3510
+ "node": ">= 14"
3511
+ }
3512
+ },
3513
+ "node_modules/source-map": {
3514
+ "version": "0.6.1",
3515
+ "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz",
3516
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
3517
+ "license": "BSD-3-Clause",
3518
+ "optional": true,
3519
+ "engines": {
3520
+ "node": ">=0.10.0"
3521
+ }
3522
+ },
3523
+ "node_modules/std-env": {
3524
+ "version": "3.10.0",
3525
+ "resolved": "https://registry.npmmirror.com/std-env/-/std-env-3.10.0.tgz",
3526
+ "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==",
3527
+ "license": "MIT"
3528
+ },
3529
+ "node_modules/string-width": {
3530
+ "version": "4.2.3",
3531
+ "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
3532
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3533
+ "license": "MIT",
3534
+ "dependencies": {
3535
+ "emoji-regex": "^8.0.0",
3536
+ "is-fullwidth-code-point": "^3.0.0",
3537
+ "strip-ansi": "^6.0.1"
3538
+ },
3539
+ "engines": {
3540
+ "node": ">=8"
3541
+ }
3542
+ },
3543
+ "node_modules/string-width-cjs": {
3544
+ "name": "string-width",
3545
+ "version": "4.2.3",
3546
+ "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
3547
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3548
+ "license": "MIT",
3549
+ "dependencies": {
3550
+ "emoji-regex": "^8.0.0",
3551
+ "is-fullwidth-code-point": "^3.0.0",
3552
+ "strip-ansi": "^6.0.1"
3553
+ },
3554
+ "engines": {
3555
+ "node": ">=8"
3556
+ }
3557
+ },
3558
+ "node_modules/strip-ansi": {
3559
+ "version": "6.0.1",
3560
+ "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
3561
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3562
+ "license": "MIT",
3563
+ "dependencies": {
3564
+ "ansi-regex": "^5.0.1"
3565
+ },
3566
+ "engines": {
3567
+ "node": ">=8"
3568
+ }
3569
+ },
3570
+ "node_modules/strip-ansi-cjs": {
3571
+ "name": "strip-ansi",
3572
+ "version": "6.0.1",
3573
+ "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
3574
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3575
+ "license": "MIT",
3576
+ "dependencies": {
3577
+ "ansi-regex": "^5.0.1"
3578
+ },
3579
+ "engines": {
3580
+ "node": ">=8"
3581
+ }
3582
+ },
3583
+ "node_modules/strnum": {
3584
+ "version": "2.1.2",
3585
+ "resolved": "https://registry.npmmirror.com/strnum/-/strnum-2.1.2.tgz",
3586
+ "integrity": "sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==",
3587
+ "funding": [
3588
+ {
3589
+ "type": "github",
3590
+ "url": "https://github.com/sponsors/NaturalIntelligence"
3591
+ }
3592
+ ],
3593
+ "license": "MIT"
3594
+ },
3595
+ "node_modules/strtok3": {
3596
+ "version": "10.3.4",
3597
+ "resolved": "https://registry.npmmirror.com/strtok3/-/strtok3-10.3.4.tgz",
3598
+ "integrity": "sha512-KIy5nylvC5le1OdaaoCJ07L+8iQzJHGH6pWDuzS+d07Cu7n1MZ2x26P8ZKIWfbK02+XIL8Mp4RkWeqdUCrDMfg==",
3599
+ "license": "MIT",
3600
+ "dependencies": {
3601
+ "@tokenizer/token": "^0.3.0"
3602
+ },
3603
+ "engines": {
3604
+ "node": ">=18"
3605
+ },
3606
+ "funding": {
3607
+ "type": "github",
3608
+ "url": "https://github.com/sponsors/Borewit"
3609
+ }
3610
+ },
3611
+ "node_modules/supports-color": {
3612
+ "version": "7.2.0",
3613
+ "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz",
3614
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3615
+ "license": "MIT",
3616
+ "dependencies": {
3617
+ "has-flag": "^4.0.0"
3618
+ },
3619
+ "engines": {
3620
+ "node": ">=8"
3621
+ }
3622
+ },
3623
+ "node_modules/thenify": {
3624
+ "version": "3.3.1",
3625
+ "resolved": "https://registry.npmmirror.com/thenify/-/thenify-3.3.1.tgz",
3626
+ "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
3627
+ "license": "MIT",
3628
+ "dependencies": {
3629
+ "any-promise": "^1.0.0"
3630
+ }
3631
+ },
3632
+ "node_modules/thenify-all": {
3633
+ "version": "1.6.0",
3634
+ "resolved": "https://registry.npmmirror.com/thenify-all/-/thenify-all-1.6.0.tgz",
3635
+ "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
3636
+ "license": "MIT",
3637
+ "dependencies": {
3638
+ "thenify": ">= 3.1.0 < 4"
3639
+ },
3640
+ "engines": {
3641
+ "node": ">=0.8"
3642
+ }
3643
+ },
3644
+ "node_modules/token-types": {
3645
+ "version": "6.1.2",
3646
+ "resolved": "https://registry.npmmirror.com/token-types/-/token-types-6.1.2.tgz",
3647
+ "integrity": "sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==",
3648
+ "license": "MIT",
3649
+ "dependencies": {
3650
+ "@borewit/text-codec": "^0.2.1",
3651
+ "@tokenizer/token": "^0.3.0",
3652
+ "ieee754": "^1.2.1"
3653
+ },
3654
+ "engines": {
3655
+ "node": ">=14.16"
3656
+ },
3657
+ "funding": {
3658
+ "type": "github",
3659
+ "url": "https://github.com/sponsors/Borewit"
3660
+ }
3661
+ },
3662
+ "node_modules/ts-algebra": {
3663
+ "version": "2.0.0",
3664
+ "resolved": "https://registry.npmmirror.com/ts-algebra/-/ts-algebra-2.0.0.tgz",
3665
+ "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
3666
+ "license": "MIT"
3667
+ },
3668
+ "node_modules/tslib": {
3669
+ "version": "2.8.1",
3670
+ "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
3671
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3672
+ "license": "0BSD"
3673
+ },
3674
+ "node_modules/typescript": {
3675
+ "version": "5.9.3",
3676
+ "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz",
3677
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
3678
+ "dev": true,
3679
+ "license": "Apache-2.0",
3680
+ "bin": {
3681
+ "tsc": "bin/tsc",
3682
+ "tsserver": "bin/tsserver"
3683
+ },
3684
+ "engines": {
3685
+ "node": ">=14.17"
3686
+ }
3687
+ },
3688
+ "node_modules/uint8array-extras": {
3689
+ "version": "1.5.0",
3690
+ "resolved": "https://registry.npmmirror.com/uint8array-extras/-/uint8array-extras-1.5.0.tgz",
3691
+ "integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==",
3692
+ "license": "MIT",
3693
+ "engines": {
3694
+ "node": ">=18"
3695
+ },
3696
+ "funding": {
3697
+ "url": "https://github.com/sponsors/sindresorhus"
3698
+ }
3699
+ },
3700
+ "node_modules/undici": {
3701
+ "version": "7.22.0",
3702
+ "resolved": "https://registry.npmmirror.com/undici/-/undici-7.22.0.tgz",
3703
+ "integrity": "sha512-RqslV2Us5BrllB+JeiZnK4peryVTndy9Dnqq62S3yYRRTj0tFQCwEniUy2167skdGOy3vqRzEvl1Dm4sV2ReDg==",
3704
+ "license": "MIT",
3705
+ "engines": {
3706
+ "node": ">=20.18.1"
3707
+ }
3708
+ },
3709
+ "node_modules/undici-types": {
3710
+ "version": "6.21.0",
3711
+ "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz",
3712
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
3713
+ "license": "MIT"
3714
+ },
3715
+ "node_modules/web-streams-polyfill": {
3716
+ "version": "3.3.3",
3717
+ "resolved": "https://registry.npmmirror.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
3718
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
3719
+ "license": "MIT",
3720
+ "engines": {
3721
+ "node": ">= 8"
3722
+ }
3723
+ },
3724
+ "node_modules/which": {
3725
+ "version": "2.0.2",
3726
+ "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
3727
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3728
+ "license": "ISC",
3729
+ "dependencies": {
3730
+ "isexe": "^2.0.0"
3731
+ },
3732
+ "bin": {
3733
+ "node-which": "bin/node-which"
3734
+ },
3735
+ "engines": {
3736
+ "node": ">= 8"
3737
+ }
3738
+ },
3739
+ "node_modules/wrap-ansi": {
3740
+ "version": "7.0.0",
3741
+ "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
3742
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
3743
+ "license": "MIT",
3744
+ "dependencies": {
3745
+ "ansi-styles": "^4.0.0",
3746
+ "string-width": "^4.1.0",
3747
+ "strip-ansi": "^6.0.0"
3748
+ },
3749
+ "engines": {
3750
+ "node": ">=10"
3751
+ },
3752
+ "funding": {
3753
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3754
+ }
3755
+ },
3756
+ "node_modules/wrap-ansi-cjs": {
3757
+ "name": "wrap-ansi",
3758
+ "version": "7.0.0",
3759
+ "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
3760
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
3761
+ "license": "MIT",
3762
+ "dependencies": {
3763
+ "ansi-styles": "^4.0.0",
3764
+ "string-width": "^4.1.0",
3765
+ "strip-ansi": "^6.0.0"
3766
+ },
3767
+ "engines": {
3768
+ "node": ">=10"
3769
+ },
3770
+ "funding": {
3771
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3772
+ }
3773
+ },
3774
+ "node_modules/ws": {
3775
+ "version": "8.19.0",
3776
+ "resolved": "https://registry.npmmirror.com/ws/-/ws-8.19.0.tgz",
3777
+ "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
3778
+ "license": "MIT",
3779
+ "engines": {
3780
+ "node": ">=10.0.0"
3781
+ },
3782
+ "peerDependencies": {
3783
+ "bufferutil": "^4.0.1",
3784
+ "utf-8-validate": ">=5.0.2"
3785
+ },
3786
+ "peerDependenciesMeta": {
3787
+ "bufferutil": {
3788
+ "optional": true
3789
+ },
3790
+ "utf-8-validate": {
3791
+ "optional": true
3792
+ }
3793
+ }
3794
+ },
3795
+ "node_modules/y18n": {
3796
+ "version": "5.0.8",
3797
+ "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz",
3798
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
3799
+ "license": "ISC",
3800
+ "engines": {
3801
+ "node": ">=10"
3802
+ }
3803
+ },
3804
+ "node_modules/yaml": {
3805
+ "version": "2.8.2",
3806
+ "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.2.tgz",
3807
+ "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
3808
+ "license": "ISC",
3809
+ "bin": {
3810
+ "yaml": "bin.mjs"
3811
+ },
3812
+ "engines": {
3813
+ "node": ">= 14.6"
3814
+ },
3815
+ "funding": {
3816
+ "url": "https://github.com/sponsors/eemeli"
3817
+ }
3818
+ },
3819
+ "node_modules/yargs": {
3820
+ "version": "16.2.0",
3821
+ "resolved": "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz",
3822
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
3823
+ "license": "MIT",
3824
+ "dependencies": {
3825
+ "cliui": "^7.0.2",
3826
+ "escalade": "^3.1.1",
3827
+ "get-caller-file": "^2.0.5",
3828
+ "require-directory": "^2.1.1",
3829
+ "string-width": "^4.2.0",
3830
+ "y18n": "^5.0.5",
3831
+ "yargs-parser": "^20.2.2"
3832
+ },
3833
+ "engines": {
3834
+ "node": ">=10"
3835
+ }
3836
+ },
3837
+ "node_modules/yargs-parser": {
3838
+ "version": "20.2.9",
3839
+ "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz",
3840
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
3841
+ "license": "ISC",
3842
+ "engines": {
3843
+ "node": ">=10"
3844
+ }
3845
+ },
3846
+ "node_modules/yoctocolors": {
3847
+ "version": "2.1.2",
3848
+ "resolved": "https://registry.npmmirror.com/yoctocolors/-/yoctocolors-2.1.2.tgz",
3849
+ "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==",
3850
+ "license": "MIT",
3851
+ "engines": {
3852
+ "node": ">=18"
3853
+ },
3854
+ "funding": {
3855
+ "url": "https://github.com/sponsors/sindresorhus"
3856
+ }
3857
+ },
3858
+ "node_modules/zod": {
3859
+ "version": "4.3.6",
3860
+ "resolved": "https://registry.npmmirror.com/zod/-/zod-4.3.6.tgz",
3861
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
3862
+ "license": "MIT",
3863
+ "funding": {
3864
+ "url": "https://github.com/sponsors/colinhacks"
3865
+ }
3866
+ },
3867
+ "node_modules/zod-to-json-schema": {
3868
+ "version": "3.25.1",
3869
+ "resolved": "https://registry.npmmirror.com/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz",
3870
+ "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==",
3871
+ "license": "ISC",
3872
+ "peerDependencies": {
3873
+ "zod": "^3.25 || ^4"
3874
+ }
3875
+ }
3876
+ }
3877
+ }