lua-cli 2.2.8-alpha.1 → 2.3.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. package/API_REFERENCE.md +1408 -0
  2. package/CLI_REFERENCE.md +818 -0
  3. package/GETTING_STARTED.md +1040 -0
  4. package/README.md +738 -424
  5. package/TEMPLATE_GUIDE.md +1398 -0
  6. package/dist/api/agent.api.service.d.ts +45 -0
  7. package/dist/api/agent.api.service.js +57 -0
  8. package/dist/api/auth.api.service.d.ts +48 -0
  9. package/dist/api/auth.api.service.js +54 -0
  10. package/dist/api/basket.api.service.d.ts +85 -0
  11. package/dist/api/basket.api.service.js +164 -0
  12. package/dist/api/chat.api.service.d.ts +21 -0
  13. package/dist/api/chat.api.service.js +24 -0
  14. package/dist/api/credentials.d.ts +24 -0
  15. package/dist/api/credentials.js +46 -0
  16. package/dist/api/custom.data.api.service.d.ts +69 -0
  17. package/dist/api/custom.data.api.service.js +125 -0
  18. package/dist/api/lazy-instances.d.ts +49 -0
  19. package/dist/api/lazy-instances.js +95 -0
  20. package/dist/api/order.api.service.d.ts +53 -0
  21. package/dist/api/order.api.service.js +95 -0
  22. package/dist/api/products.api.service.d.ts +66 -0
  23. package/dist/api/products.api.service.js +112 -0
  24. package/dist/api/skills.api.service.d.ts +77 -0
  25. package/dist/api/skills.api.service.js +88 -0
  26. package/dist/api/tool.api.service.d.ts +52 -0
  27. package/dist/api/tool.api.service.js +73 -0
  28. package/dist/api/user.data.api.service.d.ts +33 -0
  29. package/dist/api/user.data.api.service.js +59 -0
  30. package/dist/api-exports.d.ts +271 -0
  31. package/dist/api-exports.js +372 -0
  32. package/dist/cli/command-definitions.d.ts +30 -0
  33. package/dist/cli/command-definitions.js +71 -0
  34. package/dist/commands/agents.d.ts +20 -0
  35. package/dist/commands/agents.js +24 -2
  36. package/dist/commands/apiKey.d.ts +23 -0
  37. package/dist/commands/apiKey.js +23 -0
  38. package/dist/commands/compile.d.ts +24 -0
  39. package/dist/commands/compile.js +67 -759
  40. package/dist/commands/configure.d.ts +24 -0
  41. package/dist/commands/configure.js +31 -96
  42. package/dist/commands/deploy.d.ts +31 -19
  43. package/dist/commands/deploy.js +45 -74
  44. package/dist/commands/destroy.d.ts +27 -0
  45. package/dist/commands/destroy.js +27 -1
  46. package/dist/commands/dev.d.ts +25 -62
  47. package/dist/commands/dev.js +58 -873
  48. package/dist/commands/init.d.ts +27 -0
  49. package/dist/commands/init.js +98 -260
  50. package/dist/commands/push.d.ts +24 -21
  51. package/dist/commands/push.js +39 -92
  52. package/dist/commands/test.d.ts +26 -0
  53. package/dist/commands/test.js +41 -188
  54. package/dist/common/basket.instance.d.ts +78 -0
  55. package/dist/common/basket.instance.js +132 -0
  56. package/dist/common/data.entry.instance.d.ts +39 -0
  57. package/dist/common/data.entry.instance.js +76 -0
  58. package/dist/common/http.client.d.ts +64 -0
  59. package/dist/common/http.client.js +133 -0
  60. package/dist/common/order.instance.d.ts +40 -0
  61. package/dist/common/order.instance.js +79 -0
  62. package/dist/common/product.instance.d.ts +33 -0
  63. package/dist/common/product.instance.js +63 -0
  64. package/dist/common/product.pagination.instance.d.ts +43 -0
  65. package/dist/common/product.pagination.instance.js +74 -0
  66. package/dist/common/product.search.instance.d.ts +22 -0
  67. package/dist/common/product.search.instance.js +40 -0
  68. package/dist/common/user.instance.d.ts +41 -0
  69. package/dist/common/user.instance.js +84 -0
  70. package/dist/config/auth.constants.d.ts +11 -0
  71. package/dist/config/auth.constants.js +11 -0
  72. package/dist/config/compile.constants.d.ts +67 -0
  73. package/dist/config/compile.constants.js +99 -0
  74. package/dist/config/constants.d.ts +5 -0
  75. package/dist/config/constants.js +5 -0
  76. package/dist/config/dev.constants.d.ts +65 -0
  77. package/dist/config/dev.constants.js +79 -0
  78. package/dist/config/init.constants.d.ts +23 -0
  79. package/dist/config/init.constants.js +41 -0
  80. package/dist/index.d.ts +19 -3
  81. package/dist/index.js +28 -44
  82. package/dist/interfaces/admin.d.ts +101 -0
  83. package/dist/interfaces/admin.js +5 -0
  84. package/dist/interfaces/agent.d.ts +107 -0
  85. package/dist/interfaces/agent.js +5 -0
  86. package/dist/interfaces/baskets.d.ts +135 -0
  87. package/dist/interfaces/baskets.js +19 -0
  88. package/dist/interfaces/chat.d.ts +61 -0
  89. package/dist/interfaces/chat.js +5 -0
  90. package/dist/interfaces/common.d.ts +62 -0
  91. package/dist/interfaces/common.js +8 -0
  92. package/dist/interfaces/compile.d.ts +11 -0
  93. package/dist/interfaces/compile.js +4 -0
  94. package/dist/interfaces/custom.data.d.ts +82 -0
  95. package/dist/interfaces/custom.data.js +5 -0
  96. package/dist/interfaces/deploy.d.ts +29 -0
  97. package/dist/interfaces/deploy.js +4 -0
  98. package/dist/interfaces/dev.d.ts +53 -0
  99. package/dist/interfaces/dev.js +5 -0
  100. package/dist/interfaces/init.d.ts +60 -0
  101. package/dist/interfaces/init.js +4 -0
  102. package/dist/interfaces/orders.d.ts +91 -0
  103. package/dist/interfaces/orders.js +19 -0
  104. package/dist/interfaces/product.d.ts +65 -0
  105. package/dist/interfaces/product.js +5 -0
  106. package/dist/interfaces/push.d.ts +26 -0
  107. package/dist/interfaces/push.js +4 -0
  108. package/dist/interfaces/test.d.ts +36 -0
  109. package/dist/interfaces/test.js +4 -0
  110. package/dist/services/auth.d.ts +54 -99
  111. package/dist/services/auth.js +76 -12
  112. package/dist/types/api-contracts.d.ts +211 -0
  113. package/dist/types/api-contracts.js +8 -0
  114. package/dist/types/compile.types.d.ts +76 -0
  115. package/dist/types/compile.types.js +4 -0
  116. package/dist/types/index.d.ts +23 -85
  117. package/dist/types/index.js +25 -14
  118. package/dist/types/skill.d.ts +142 -0
  119. package/dist/{skill.js → types/skill.js} +66 -19
  120. package/dist/types/tool-validation.d.ts +34 -0
  121. package/dist/types/tool-validation.js +42 -0
  122. package/dist/utils/auth-flows.d.ts +26 -0
  123. package/dist/utils/auth-flows.js +141 -0
  124. package/dist/utils/bundling.d.ts +36 -0
  125. package/dist/utils/bundling.js +137 -0
  126. package/dist/utils/compile.d.ts +37 -0
  127. package/dist/utils/compile.js +242 -0
  128. package/dist/utils/deploy-api.d.ts +26 -0
  129. package/dist/utils/deploy-api.js +53 -0
  130. package/dist/utils/deploy-helpers.d.ts +46 -0
  131. package/dist/utils/deploy-helpers.js +86 -0
  132. package/dist/utils/deployment.d.ts +25 -0
  133. package/dist/utils/deployment.js +161 -0
  134. package/dist/utils/dev-api.d.ts +61 -0
  135. package/dist/utils/dev-api.js +262 -0
  136. package/dist/utils/dev-helpers.d.ts +46 -0
  137. package/dist/utils/dev-helpers.js +83 -0
  138. package/dist/utils/dev-server.d.ts +24 -0
  139. package/dist/utils/dev-server.js +555 -0
  140. package/dist/utils/dev-watcher.d.ts +31 -0
  141. package/dist/utils/dev-watcher.js +110 -0
  142. package/dist/utils/files.js +0 -5
  143. package/dist/utils/init-agent.d.ts +34 -0
  144. package/dist/utils/init-agent.js +129 -0
  145. package/dist/utils/init-helpers.d.ts +41 -0
  146. package/dist/utils/init-helpers.js +73 -0
  147. package/dist/utils/init-prompts.d.ts +47 -0
  148. package/dist/utils/init-prompts.js +168 -0
  149. package/dist/utils/push-api.d.ts +15 -0
  150. package/dist/utils/push-api.js +48 -0
  151. package/dist/utils/push-helpers.d.ts +38 -0
  152. package/dist/utils/push-helpers.js +84 -0
  153. package/dist/utils/sandbox-storage.d.ts +27 -0
  154. package/dist/utils/sandbox-storage.js +71 -0
  155. package/dist/utils/sandbox.js +78 -118
  156. package/dist/utils/skill-management.d.ts +14 -0
  157. package/dist/utils/skill-management.js +148 -0
  158. package/dist/utils/test-helpers.d.ts +40 -0
  159. package/dist/utils/test-helpers.js +92 -0
  160. package/dist/utils/test-prompts.d.ts +23 -0
  161. package/dist/utils/test-prompts.js +186 -0
  162. package/dist/utils/tool-detection.d.ts +18 -0
  163. package/dist/utils/tool-detection.js +110 -0
  164. package/dist/web/app.css +14 -9
  165. package/package.json +11 -12
  166. package/template/QUICKSTART.md +299 -144
  167. package/template/README.md +928 -349
  168. package/template/TOOL_EXAMPLES.md +655 -0
  169. package/template/package-lock.json +3781 -0
  170. package/template/package.json +1 -1
  171. package/template/src/index.ts +81 -40
  172. package/template/src/tools/BasketTool.ts +128 -0
  173. package/template/src/tools/CustomDataTool.ts +7 -13
  174. package/template/src/tools/OrderTool.ts +54 -0
  175. package/template/src/tools/PaymentTool.ts +1 -1
  176. package/template/src/tools/ProductsTool.ts +56 -118
  177. package/template/src/tools/UserDataTool.ts +4 -27
  178. package/dist/custom-data-api.d.ts +0 -72
  179. package/dist/custom-data-api.js +0 -174
  180. package/dist/product-api.d.ts +0 -197
  181. package/dist/product-api.js +0 -152
  182. package/dist/services/api.d.ts +0 -569
  183. package/dist/services/api.js +0 -625
  184. package/dist/skill.d.ts +0 -50
  185. package/dist/types.d.ts +0 -1
  186. package/dist/types.js +0 -2
  187. package/dist/user-data-api.d.ts +0 -39
  188. package/dist/user-data-api.js +0 -50
  189. package/template/API.md +0 -604
  190. package/template/DEVELOPER.md +0 -771
  191. package/template/lua.skill.yaml +0 -16
@@ -0,0 +1,3781 @@
1
+ {
2
+ "name": "lua-skill",
3
+ "version": "1.0.1-beta.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "lua-skill",
9
+ "version": "1.0.1-beta.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "@pinecone-database/pinecone": "^6.1.2",
13
+ "@types/inquirer": "^9.0.9",
14
+ "@types/js-yaml": "^4.0.9",
15
+ "axios": "^1.6.0",
16
+ "inquirer": "^12.9.6",
17
+ "js-yaml": "^4.1.0",
18
+ "lua-cli": "^2.3.0-alpha.1",
19
+ "openai": "^5.23.0",
20
+ "uuid": "^13.0.0",
21
+ "zod": "^3.24.1"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^20.10.0",
25
+ "tsx": "^4.7.0",
26
+ "typescript": "^5.9.2"
27
+ }
28
+ },
29
+ "node_modules/@esbuild/aix-ppc64": {
30
+ "version": "0.25.10",
31
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz",
32
+ "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==",
33
+ "cpu": [
34
+ "ppc64"
35
+ ],
36
+ "license": "MIT",
37
+ "optional": true,
38
+ "os": [
39
+ "aix"
40
+ ],
41
+ "engines": {
42
+ "node": ">=18"
43
+ }
44
+ },
45
+ "node_modules/@esbuild/android-arm": {
46
+ "version": "0.25.10",
47
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.10.tgz",
48
+ "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==",
49
+ "cpu": [
50
+ "arm"
51
+ ],
52
+ "license": "MIT",
53
+ "optional": true,
54
+ "os": [
55
+ "android"
56
+ ],
57
+ "engines": {
58
+ "node": ">=18"
59
+ }
60
+ },
61
+ "node_modules/@esbuild/android-arm64": {
62
+ "version": "0.25.10",
63
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz",
64
+ "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==",
65
+ "cpu": [
66
+ "arm64"
67
+ ],
68
+ "license": "MIT",
69
+ "optional": true,
70
+ "os": [
71
+ "android"
72
+ ],
73
+ "engines": {
74
+ "node": ">=18"
75
+ }
76
+ },
77
+ "node_modules/@esbuild/android-x64": {
78
+ "version": "0.25.10",
79
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.10.tgz",
80
+ "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==",
81
+ "cpu": [
82
+ "x64"
83
+ ],
84
+ "license": "MIT",
85
+ "optional": true,
86
+ "os": [
87
+ "android"
88
+ ],
89
+ "engines": {
90
+ "node": ">=18"
91
+ }
92
+ },
93
+ "node_modules/@esbuild/darwin-arm64": {
94
+ "version": "0.25.10",
95
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz",
96
+ "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==",
97
+ "cpu": [
98
+ "arm64"
99
+ ],
100
+ "license": "MIT",
101
+ "optional": true,
102
+ "os": [
103
+ "darwin"
104
+ ],
105
+ "engines": {
106
+ "node": ">=18"
107
+ }
108
+ },
109
+ "node_modules/@esbuild/darwin-x64": {
110
+ "version": "0.25.10",
111
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz",
112
+ "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==",
113
+ "cpu": [
114
+ "x64"
115
+ ],
116
+ "license": "MIT",
117
+ "optional": true,
118
+ "os": [
119
+ "darwin"
120
+ ],
121
+ "engines": {
122
+ "node": ">=18"
123
+ }
124
+ },
125
+ "node_modules/@esbuild/freebsd-arm64": {
126
+ "version": "0.25.10",
127
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz",
128
+ "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==",
129
+ "cpu": [
130
+ "arm64"
131
+ ],
132
+ "license": "MIT",
133
+ "optional": true,
134
+ "os": [
135
+ "freebsd"
136
+ ],
137
+ "engines": {
138
+ "node": ">=18"
139
+ }
140
+ },
141
+ "node_modules/@esbuild/freebsd-x64": {
142
+ "version": "0.25.10",
143
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz",
144
+ "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==",
145
+ "cpu": [
146
+ "x64"
147
+ ],
148
+ "license": "MIT",
149
+ "optional": true,
150
+ "os": [
151
+ "freebsd"
152
+ ],
153
+ "engines": {
154
+ "node": ">=18"
155
+ }
156
+ },
157
+ "node_modules/@esbuild/linux-arm": {
158
+ "version": "0.25.10",
159
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz",
160
+ "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==",
161
+ "cpu": [
162
+ "arm"
163
+ ],
164
+ "license": "MIT",
165
+ "optional": true,
166
+ "os": [
167
+ "linux"
168
+ ],
169
+ "engines": {
170
+ "node": ">=18"
171
+ }
172
+ },
173
+ "node_modules/@esbuild/linux-arm64": {
174
+ "version": "0.25.10",
175
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz",
176
+ "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==",
177
+ "cpu": [
178
+ "arm64"
179
+ ],
180
+ "license": "MIT",
181
+ "optional": true,
182
+ "os": [
183
+ "linux"
184
+ ],
185
+ "engines": {
186
+ "node": ">=18"
187
+ }
188
+ },
189
+ "node_modules/@esbuild/linux-ia32": {
190
+ "version": "0.25.10",
191
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz",
192
+ "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==",
193
+ "cpu": [
194
+ "ia32"
195
+ ],
196
+ "license": "MIT",
197
+ "optional": true,
198
+ "os": [
199
+ "linux"
200
+ ],
201
+ "engines": {
202
+ "node": ">=18"
203
+ }
204
+ },
205
+ "node_modules/@esbuild/linux-loong64": {
206
+ "version": "0.25.10",
207
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz",
208
+ "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==",
209
+ "cpu": [
210
+ "loong64"
211
+ ],
212
+ "license": "MIT",
213
+ "optional": true,
214
+ "os": [
215
+ "linux"
216
+ ],
217
+ "engines": {
218
+ "node": ">=18"
219
+ }
220
+ },
221
+ "node_modules/@esbuild/linux-mips64el": {
222
+ "version": "0.25.10",
223
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz",
224
+ "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==",
225
+ "cpu": [
226
+ "mips64el"
227
+ ],
228
+ "license": "MIT",
229
+ "optional": true,
230
+ "os": [
231
+ "linux"
232
+ ],
233
+ "engines": {
234
+ "node": ">=18"
235
+ }
236
+ },
237
+ "node_modules/@esbuild/linux-ppc64": {
238
+ "version": "0.25.10",
239
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz",
240
+ "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==",
241
+ "cpu": [
242
+ "ppc64"
243
+ ],
244
+ "license": "MIT",
245
+ "optional": true,
246
+ "os": [
247
+ "linux"
248
+ ],
249
+ "engines": {
250
+ "node": ">=18"
251
+ }
252
+ },
253
+ "node_modules/@esbuild/linux-riscv64": {
254
+ "version": "0.25.10",
255
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz",
256
+ "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==",
257
+ "cpu": [
258
+ "riscv64"
259
+ ],
260
+ "license": "MIT",
261
+ "optional": true,
262
+ "os": [
263
+ "linux"
264
+ ],
265
+ "engines": {
266
+ "node": ">=18"
267
+ }
268
+ },
269
+ "node_modules/@esbuild/linux-s390x": {
270
+ "version": "0.25.10",
271
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz",
272
+ "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==",
273
+ "cpu": [
274
+ "s390x"
275
+ ],
276
+ "license": "MIT",
277
+ "optional": true,
278
+ "os": [
279
+ "linux"
280
+ ],
281
+ "engines": {
282
+ "node": ">=18"
283
+ }
284
+ },
285
+ "node_modules/@esbuild/linux-x64": {
286
+ "version": "0.25.10",
287
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz",
288
+ "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==",
289
+ "cpu": [
290
+ "x64"
291
+ ],
292
+ "license": "MIT",
293
+ "optional": true,
294
+ "os": [
295
+ "linux"
296
+ ],
297
+ "engines": {
298
+ "node": ">=18"
299
+ }
300
+ },
301
+ "node_modules/@esbuild/netbsd-arm64": {
302
+ "version": "0.25.10",
303
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz",
304
+ "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==",
305
+ "cpu": [
306
+ "arm64"
307
+ ],
308
+ "license": "MIT",
309
+ "optional": true,
310
+ "os": [
311
+ "netbsd"
312
+ ],
313
+ "engines": {
314
+ "node": ">=18"
315
+ }
316
+ },
317
+ "node_modules/@esbuild/netbsd-x64": {
318
+ "version": "0.25.10",
319
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz",
320
+ "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==",
321
+ "cpu": [
322
+ "x64"
323
+ ],
324
+ "license": "MIT",
325
+ "optional": true,
326
+ "os": [
327
+ "netbsd"
328
+ ],
329
+ "engines": {
330
+ "node": ">=18"
331
+ }
332
+ },
333
+ "node_modules/@esbuild/openbsd-arm64": {
334
+ "version": "0.25.10",
335
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz",
336
+ "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==",
337
+ "cpu": [
338
+ "arm64"
339
+ ],
340
+ "license": "MIT",
341
+ "optional": true,
342
+ "os": [
343
+ "openbsd"
344
+ ],
345
+ "engines": {
346
+ "node": ">=18"
347
+ }
348
+ },
349
+ "node_modules/@esbuild/openbsd-x64": {
350
+ "version": "0.25.10",
351
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz",
352
+ "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==",
353
+ "cpu": [
354
+ "x64"
355
+ ],
356
+ "license": "MIT",
357
+ "optional": true,
358
+ "os": [
359
+ "openbsd"
360
+ ],
361
+ "engines": {
362
+ "node": ">=18"
363
+ }
364
+ },
365
+ "node_modules/@esbuild/openharmony-arm64": {
366
+ "version": "0.25.10",
367
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz",
368
+ "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==",
369
+ "cpu": [
370
+ "arm64"
371
+ ],
372
+ "license": "MIT",
373
+ "optional": true,
374
+ "os": [
375
+ "openharmony"
376
+ ],
377
+ "engines": {
378
+ "node": ">=18"
379
+ }
380
+ },
381
+ "node_modules/@esbuild/sunos-x64": {
382
+ "version": "0.25.10",
383
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz",
384
+ "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==",
385
+ "cpu": [
386
+ "x64"
387
+ ],
388
+ "license": "MIT",
389
+ "optional": true,
390
+ "os": [
391
+ "sunos"
392
+ ],
393
+ "engines": {
394
+ "node": ">=18"
395
+ }
396
+ },
397
+ "node_modules/@esbuild/win32-arm64": {
398
+ "version": "0.25.10",
399
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz",
400
+ "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==",
401
+ "cpu": [
402
+ "arm64"
403
+ ],
404
+ "license": "MIT",
405
+ "optional": true,
406
+ "os": [
407
+ "win32"
408
+ ],
409
+ "engines": {
410
+ "node": ">=18"
411
+ }
412
+ },
413
+ "node_modules/@esbuild/win32-ia32": {
414
+ "version": "0.25.10",
415
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz",
416
+ "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==",
417
+ "cpu": [
418
+ "ia32"
419
+ ],
420
+ "license": "MIT",
421
+ "optional": true,
422
+ "os": [
423
+ "win32"
424
+ ],
425
+ "engines": {
426
+ "node": ">=18"
427
+ }
428
+ },
429
+ "node_modules/@esbuild/win32-x64": {
430
+ "version": "0.25.10",
431
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz",
432
+ "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==",
433
+ "cpu": [
434
+ "x64"
435
+ ],
436
+ "license": "MIT",
437
+ "optional": true,
438
+ "os": [
439
+ "win32"
440
+ ],
441
+ "engines": {
442
+ "node": ">=18"
443
+ }
444
+ },
445
+ "node_modules/@inquirer/ansi": {
446
+ "version": "1.0.0",
447
+ "resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.0.tgz",
448
+ "integrity": "sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==",
449
+ "license": "MIT",
450
+ "engines": {
451
+ "node": ">=18"
452
+ }
453
+ },
454
+ "node_modules/@inquirer/checkbox": {
455
+ "version": "4.2.4",
456
+ "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.2.4.tgz",
457
+ "integrity": "sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==",
458
+ "license": "MIT",
459
+ "dependencies": {
460
+ "@inquirer/ansi": "^1.0.0",
461
+ "@inquirer/core": "^10.2.2",
462
+ "@inquirer/figures": "^1.0.13",
463
+ "@inquirer/type": "^3.0.8",
464
+ "yoctocolors-cjs": "^2.1.2"
465
+ },
466
+ "engines": {
467
+ "node": ">=18"
468
+ },
469
+ "peerDependencies": {
470
+ "@types/node": ">=18"
471
+ },
472
+ "peerDependenciesMeta": {
473
+ "@types/node": {
474
+ "optional": true
475
+ }
476
+ }
477
+ },
478
+ "node_modules/@inquirer/confirm": {
479
+ "version": "5.1.18",
480
+ "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.18.tgz",
481
+ "integrity": "sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==",
482
+ "license": "MIT",
483
+ "dependencies": {
484
+ "@inquirer/core": "^10.2.2",
485
+ "@inquirer/type": "^3.0.8"
486
+ },
487
+ "engines": {
488
+ "node": ">=18"
489
+ },
490
+ "peerDependencies": {
491
+ "@types/node": ">=18"
492
+ },
493
+ "peerDependenciesMeta": {
494
+ "@types/node": {
495
+ "optional": true
496
+ }
497
+ }
498
+ },
499
+ "node_modules/@inquirer/core": {
500
+ "version": "10.2.2",
501
+ "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.2.2.tgz",
502
+ "integrity": "sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==",
503
+ "license": "MIT",
504
+ "dependencies": {
505
+ "@inquirer/ansi": "^1.0.0",
506
+ "@inquirer/figures": "^1.0.13",
507
+ "@inquirer/type": "^3.0.8",
508
+ "cli-width": "^4.1.0",
509
+ "mute-stream": "^2.0.0",
510
+ "signal-exit": "^4.1.0",
511
+ "wrap-ansi": "^6.2.0",
512
+ "yoctocolors-cjs": "^2.1.2"
513
+ },
514
+ "engines": {
515
+ "node": ">=18"
516
+ },
517
+ "peerDependencies": {
518
+ "@types/node": ">=18"
519
+ },
520
+ "peerDependenciesMeta": {
521
+ "@types/node": {
522
+ "optional": true
523
+ }
524
+ }
525
+ },
526
+ "node_modules/@inquirer/editor": {
527
+ "version": "4.2.20",
528
+ "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.20.tgz",
529
+ "integrity": "sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==",
530
+ "license": "MIT",
531
+ "dependencies": {
532
+ "@inquirer/core": "^10.2.2",
533
+ "@inquirer/external-editor": "^1.0.2",
534
+ "@inquirer/type": "^3.0.8"
535
+ },
536
+ "engines": {
537
+ "node": ">=18"
538
+ },
539
+ "peerDependencies": {
540
+ "@types/node": ">=18"
541
+ },
542
+ "peerDependenciesMeta": {
543
+ "@types/node": {
544
+ "optional": true
545
+ }
546
+ }
547
+ },
548
+ "node_modules/@inquirer/expand": {
549
+ "version": "4.0.20",
550
+ "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.20.tgz",
551
+ "integrity": "sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==",
552
+ "license": "MIT",
553
+ "dependencies": {
554
+ "@inquirer/core": "^10.2.2",
555
+ "@inquirer/type": "^3.0.8",
556
+ "yoctocolors-cjs": "^2.1.2"
557
+ },
558
+ "engines": {
559
+ "node": ">=18"
560
+ },
561
+ "peerDependencies": {
562
+ "@types/node": ">=18"
563
+ },
564
+ "peerDependenciesMeta": {
565
+ "@types/node": {
566
+ "optional": true
567
+ }
568
+ }
569
+ },
570
+ "node_modules/@inquirer/external-editor": {
571
+ "version": "1.0.2",
572
+ "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.2.tgz",
573
+ "integrity": "sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==",
574
+ "license": "MIT",
575
+ "dependencies": {
576
+ "chardet": "^2.1.0",
577
+ "iconv-lite": "^0.7.0"
578
+ },
579
+ "engines": {
580
+ "node": ">=18"
581
+ },
582
+ "peerDependencies": {
583
+ "@types/node": ">=18"
584
+ },
585
+ "peerDependenciesMeta": {
586
+ "@types/node": {
587
+ "optional": true
588
+ }
589
+ }
590
+ },
591
+ "node_modules/@inquirer/figures": {
592
+ "version": "1.0.13",
593
+ "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.13.tgz",
594
+ "integrity": "sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==",
595
+ "license": "MIT",
596
+ "engines": {
597
+ "node": ">=18"
598
+ }
599
+ },
600
+ "node_modules/@inquirer/input": {
601
+ "version": "4.2.4",
602
+ "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.2.4.tgz",
603
+ "integrity": "sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==",
604
+ "license": "MIT",
605
+ "dependencies": {
606
+ "@inquirer/core": "^10.2.2",
607
+ "@inquirer/type": "^3.0.8"
608
+ },
609
+ "engines": {
610
+ "node": ">=18"
611
+ },
612
+ "peerDependencies": {
613
+ "@types/node": ">=18"
614
+ },
615
+ "peerDependenciesMeta": {
616
+ "@types/node": {
617
+ "optional": true
618
+ }
619
+ }
620
+ },
621
+ "node_modules/@inquirer/number": {
622
+ "version": "3.0.20",
623
+ "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.20.tgz",
624
+ "integrity": "sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==",
625
+ "license": "MIT",
626
+ "dependencies": {
627
+ "@inquirer/core": "^10.2.2",
628
+ "@inquirer/type": "^3.0.8"
629
+ },
630
+ "engines": {
631
+ "node": ">=18"
632
+ },
633
+ "peerDependencies": {
634
+ "@types/node": ">=18"
635
+ },
636
+ "peerDependenciesMeta": {
637
+ "@types/node": {
638
+ "optional": true
639
+ }
640
+ }
641
+ },
642
+ "node_modules/@inquirer/password": {
643
+ "version": "4.0.20",
644
+ "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.20.tgz",
645
+ "integrity": "sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==",
646
+ "license": "MIT",
647
+ "dependencies": {
648
+ "@inquirer/ansi": "^1.0.0",
649
+ "@inquirer/core": "^10.2.2",
650
+ "@inquirer/type": "^3.0.8"
651
+ },
652
+ "engines": {
653
+ "node": ">=18"
654
+ },
655
+ "peerDependencies": {
656
+ "@types/node": ">=18"
657
+ },
658
+ "peerDependenciesMeta": {
659
+ "@types/node": {
660
+ "optional": true
661
+ }
662
+ }
663
+ },
664
+ "node_modules/@inquirer/prompts": {
665
+ "version": "7.8.6",
666
+ "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.8.6.tgz",
667
+ "integrity": "sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==",
668
+ "license": "MIT",
669
+ "dependencies": {
670
+ "@inquirer/checkbox": "^4.2.4",
671
+ "@inquirer/confirm": "^5.1.18",
672
+ "@inquirer/editor": "^4.2.20",
673
+ "@inquirer/expand": "^4.0.20",
674
+ "@inquirer/input": "^4.2.4",
675
+ "@inquirer/number": "^3.0.20",
676
+ "@inquirer/password": "^4.0.20",
677
+ "@inquirer/rawlist": "^4.1.8",
678
+ "@inquirer/search": "^3.1.3",
679
+ "@inquirer/select": "^4.3.4"
680
+ },
681
+ "engines": {
682
+ "node": ">=18"
683
+ },
684
+ "peerDependencies": {
685
+ "@types/node": ">=18"
686
+ },
687
+ "peerDependenciesMeta": {
688
+ "@types/node": {
689
+ "optional": true
690
+ }
691
+ }
692
+ },
693
+ "node_modules/@inquirer/rawlist": {
694
+ "version": "4.1.8",
695
+ "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.8.tgz",
696
+ "integrity": "sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==",
697
+ "license": "MIT",
698
+ "dependencies": {
699
+ "@inquirer/core": "^10.2.2",
700
+ "@inquirer/type": "^3.0.8",
701
+ "yoctocolors-cjs": "^2.1.2"
702
+ },
703
+ "engines": {
704
+ "node": ">=18"
705
+ },
706
+ "peerDependencies": {
707
+ "@types/node": ">=18"
708
+ },
709
+ "peerDependenciesMeta": {
710
+ "@types/node": {
711
+ "optional": true
712
+ }
713
+ }
714
+ },
715
+ "node_modules/@inquirer/search": {
716
+ "version": "3.1.3",
717
+ "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.1.3.tgz",
718
+ "integrity": "sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==",
719
+ "license": "MIT",
720
+ "dependencies": {
721
+ "@inquirer/core": "^10.2.2",
722
+ "@inquirer/figures": "^1.0.13",
723
+ "@inquirer/type": "^3.0.8",
724
+ "yoctocolors-cjs": "^2.1.2"
725
+ },
726
+ "engines": {
727
+ "node": ">=18"
728
+ },
729
+ "peerDependencies": {
730
+ "@types/node": ">=18"
731
+ },
732
+ "peerDependenciesMeta": {
733
+ "@types/node": {
734
+ "optional": true
735
+ }
736
+ }
737
+ },
738
+ "node_modules/@inquirer/select": {
739
+ "version": "4.3.4",
740
+ "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.3.4.tgz",
741
+ "integrity": "sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==",
742
+ "license": "MIT",
743
+ "dependencies": {
744
+ "@inquirer/ansi": "^1.0.0",
745
+ "@inquirer/core": "^10.2.2",
746
+ "@inquirer/figures": "^1.0.13",
747
+ "@inquirer/type": "^3.0.8",
748
+ "yoctocolors-cjs": "^2.1.2"
749
+ },
750
+ "engines": {
751
+ "node": ">=18"
752
+ },
753
+ "peerDependencies": {
754
+ "@types/node": ">=18"
755
+ },
756
+ "peerDependenciesMeta": {
757
+ "@types/node": {
758
+ "optional": true
759
+ }
760
+ }
761
+ },
762
+ "node_modules/@inquirer/type": {
763
+ "version": "3.0.8",
764
+ "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.8.tgz",
765
+ "integrity": "sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==",
766
+ "license": "MIT",
767
+ "engines": {
768
+ "node": ">=18"
769
+ },
770
+ "peerDependencies": {
771
+ "@types/node": ">=18"
772
+ },
773
+ "peerDependenciesMeta": {
774
+ "@types/node": {
775
+ "optional": true
776
+ }
777
+ }
778
+ },
779
+ "node_modules/@isaacs/balanced-match": {
780
+ "version": "4.0.1",
781
+ "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
782
+ "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
783
+ "license": "MIT",
784
+ "engines": {
785
+ "node": "20 || >=22"
786
+ }
787
+ },
788
+ "node_modules/@isaacs/brace-expansion": {
789
+ "version": "5.0.0",
790
+ "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
791
+ "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
792
+ "license": "MIT",
793
+ "dependencies": {
794
+ "@isaacs/balanced-match": "^4.0.1"
795
+ },
796
+ "engines": {
797
+ "node": "20 || >=22"
798
+ }
799
+ },
800
+ "node_modules/@pinecone-database/pinecone": {
801
+ "version": "6.1.2",
802
+ "resolved": "https://registry.npmjs.org/@pinecone-database/pinecone/-/pinecone-6.1.2.tgz",
803
+ "integrity": "sha512-ydIlbtgIIHFgBL08sPzua5ckmOgtjgDz8xg21CnP1fqnnEgDmOlnfd10MRKU+fvFRhDlh4Md37SwZDr0d4cBqg==",
804
+ "license": "Apache-2.0",
805
+ "engines": {
806
+ "node": ">=18.0.0"
807
+ }
808
+ },
809
+ "node_modules/@socket.io/component-emitter": {
810
+ "version": "3.1.2",
811
+ "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz",
812
+ "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==",
813
+ "license": "MIT"
814
+ },
815
+ "node_modules/@ts-morph/common": {
816
+ "version": "0.28.0",
817
+ "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.28.0.tgz",
818
+ "integrity": "sha512-4w6X/oFmvXcwux6y6ExfM/xSqMHw20cYwFJH+BlYrtGa6nwY9qGq8GXnUs1sVYeF2o/KT3S8hAH6sKBI3VOkBg==",
819
+ "license": "MIT",
820
+ "dependencies": {
821
+ "minimatch": "^10.0.1",
822
+ "path-browserify": "^1.0.1",
823
+ "tinyglobby": "^0.2.14"
824
+ }
825
+ },
826
+ "node_modules/@types/debug": {
827
+ "version": "4.1.12",
828
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
829
+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
830
+ "license": "MIT",
831
+ "dependencies": {
832
+ "@types/ms": "*"
833
+ }
834
+ },
835
+ "node_modules/@types/estree": {
836
+ "version": "1.0.8",
837
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
838
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
839
+ "license": "MIT"
840
+ },
841
+ "node_modules/@types/estree-jsx": {
842
+ "version": "1.0.5",
843
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
844
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
845
+ "license": "MIT",
846
+ "dependencies": {
847
+ "@types/estree": "*"
848
+ }
849
+ },
850
+ "node_modules/@types/hast": {
851
+ "version": "3.0.4",
852
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
853
+ "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
854
+ "license": "MIT",
855
+ "dependencies": {
856
+ "@types/unist": "*"
857
+ }
858
+ },
859
+ "node_modules/@types/inquirer": {
860
+ "version": "9.0.9",
861
+ "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.9.tgz",
862
+ "integrity": "sha512-/mWx5136gts2Z2e5izdoRCo46lPp5TMs9R15GTSsgg/XnZyxDWVqoVU3R9lWnccKpqwsJLvRoxbCjoJtZB7DSw==",
863
+ "license": "MIT",
864
+ "dependencies": {
865
+ "@types/through": "*",
866
+ "rxjs": "^7.2.0"
867
+ }
868
+ },
869
+ "node_modules/@types/js-yaml": {
870
+ "version": "4.0.9",
871
+ "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz",
872
+ "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==",
873
+ "license": "MIT"
874
+ },
875
+ "node_modules/@types/mdast": {
876
+ "version": "4.0.4",
877
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
878
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
879
+ "license": "MIT",
880
+ "dependencies": {
881
+ "@types/unist": "*"
882
+ }
883
+ },
884
+ "node_modules/@types/ms": {
885
+ "version": "2.1.0",
886
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
887
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
888
+ "license": "MIT"
889
+ },
890
+ "node_modules/@types/node": {
891
+ "version": "20.19.17",
892
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.17.tgz",
893
+ "integrity": "sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==",
894
+ "license": "MIT",
895
+ "dependencies": {
896
+ "undici-types": "~6.21.0"
897
+ }
898
+ },
899
+ "node_modules/@types/react": {
900
+ "version": "19.1.15",
901
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.15.tgz",
902
+ "integrity": "sha512-+kLxJpaJzXybyDyFXYADyP1cznTO8HSuBpenGlnKOAkH4hyNINiywvXS/tGJhsrGGP/gM185RA3xpjY0Yg4erA==",
903
+ "license": "MIT",
904
+ "peer": true,
905
+ "dependencies": {
906
+ "csstype": "^3.0.2"
907
+ }
908
+ },
909
+ "node_modules/@types/through": {
910
+ "version": "0.0.33",
911
+ "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.33.tgz",
912
+ "integrity": "sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==",
913
+ "license": "MIT",
914
+ "dependencies": {
915
+ "@types/node": "*"
916
+ }
917
+ },
918
+ "node_modules/@types/unist": {
919
+ "version": "3.0.3",
920
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
921
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
922
+ "license": "MIT"
923
+ },
924
+ "node_modules/@ungap/structured-clone": {
925
+ "version": "1.3.0",
926
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
927
+ "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
928
+ "license": "ISC"
929
+ },
930
+ "node_modules/ansi-regex": {
931
+ "version": "5.0.1",
932
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
933
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
934
+ "license": "MIT",
935
+ "engines": {
936
+ "node": ">=8"
937
+ }
938
+ },
939
+ "node_modules/ansi-styles": {
940
+ "version": "4.3.0",
941
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
942
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
943
+ "license": "MIT",
944
+ "dependencies": {
945
+ "color-convert": "^2.0.1"
946
+ },
947
+ "engines": {
948
+ "node": ">=8"
949
+ },
950
+ "funding": {
951
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
952
+ }
953
+ },
954
+ "node_modules/argparse": {
955
+ "version": "2.0.1",
956
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
957
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
958
+ "license": "Python-2.0"
959
+ },
960
+ "node_modules/asynckit": {
961
+ "version": "0.4.0",
962
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
963
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
964
+ "license": "MIT"
965
+ },
966
+ "node_modules/axios": {
967
+ "version": "1.12.2",
968
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz",
969
+ "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==",
970
+ "license": "MIT",
971
+ "dependencies": {
972
+ "follow-redirects": "^1.15.6",
973
+ "form-data": "^4.0.4",
974
+ "proxy-from-env": "^1.1.0"
975
+ }
976
+ },
977
+ "node_modules/bail": {
978
+ "version": "2.0.2",
979
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
980
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
981
+ "license": "MIT",
982
+ "funding": {
983
+ "type": "github",
984
+ "url": "https://github.com/sponsors/wooorm"
985
+ }
986
+ },
987
+ "node_modules/base64-js": {
988
+ "version": "1.5.1",
989
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
990
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
991
+ "funding": [
992
+ {
993
+ "type": "github",
994
+ "url": "https://github.com/sponsors/feross"
995
+ },
996
+ {
997
+ "type": "patreon",
998
+ "url": "https://www.patreon.com/feross"
999
+ },
1000
+ {
1001
+ "type": "consulting",
1002
+ "url": "https://feross.org/support"
1003
+ }
1004
+ ],
1005
+ "license": "MIT"
1006
+ },
1007
+ "node_modules/bl": {
1008
+ "version": "4.1.0",
1009
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
1010
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
1011
+ "license": "MIT",
1012
+ "dependencies": {
1013
+ "buffer": "^5.5.0",
1014
+ "inherits": "^2.0.4",
1015
+ "readable-stream": "^3.4.0"
1016
+ }
1017
+ },
1018
+ "node_modules/buffer": {
1019
+ "version": "5.7.1",
1020
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
1021
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
1022
+ "funding": [
1023
+ {
1024
+ "type": "github",
1025
+ "url": "https://github.com/sponsors/feross"
1026
+ },
1027
+ {
1028
+ "type": "patreon",
1029
+ "url": "https://www.patreon.com/feross"
1030
+ },
1031
+ {
1032
+ "type": "consulting",
1033
+ "url": "https://feross.org/support"
1034
+ }
1035
+ ],
1036
+ "license": "MIT",
1037
+ "dependencies": {
1038
+ "base64-js": "^1.3.1",
1039
+ "ieee754": "^1.1.13"
1040
+ }
1041
+ },
1042
+ "node_modules/bundle-name": {
1043
+ "version": "4.1.0",
1044
+ "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
1045
+ "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
1046
+ "license": "MIT",
1047
+ "dependencies": {
1048
+ "run-applescript": "^7.0.0"
1049
+ },
1050
+ "engines": {
1051
+ "node": ">=18"
1052
+ },
1053
+ "funding": {
1054
+ "url": "https://github.com/sponsors/sindresorhus"
1055
+ }
1056
+ },
1057
+ "node_modules/call-bind-apply-helpers": {
1058
+ "version": "1.0.2",
1059
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
1060
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
1061
+ "license": "MIT",
1062
+ "dependencies": {
1063
+ "es-errors": "^1.3.0",
1064
+ "function-bind": "^1.1.2"
1065
+ },
1066
+ "engines": {
1067
+ "node": ">= 0.4"
1068
+ }
1069
+ },
1070
+ "node_modules/ccount": {
1071
+ "version": "2.0.1",
1072
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
1073
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
1074
+ "license": "MIT",
1075
+ "funding": {
1076
+ "type": "github",
1077
+ "url": "https://github.com/sponsors/wooorm"
1078
+ }
1079
+ },
1080
+ "node_modules/character-entities": {
1081
+ "version": "2.0.2",
1082
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
1083
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
1084
+ "license": "MIT",
1085
+ "funding": {
1086
+ "type": "github",
1087
+ "url": "https://github.com/sponsors/wooorm"
1088
+ }
1089
+ },
1090
+ "node_modules/character-entities-html4": {
1091
+ "version": "2.1.0",
1092
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
1093
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
1094
+ "license": "MIT",
1095
+ "funding": {
1096
+ "type": "github",
1097
+ "url": "https://github.com/sponsors/wooorm"
1098
+ }
1099
+ },
1100
+ "node_modules/character-entities-legacy": {
1101
+ "version": "3.0.0",
1102
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
1103
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
1104
+ "license": "MIT",
1105
+ "funding": {
1106
+ "type": "github",
1107
+ "url": "https://github.com/sponsors/wooorm"
1108
+ }
1109
+ },
1110
+ "node_modules/character-reference-invalid": {
1111
+ "version": "2.0.1",
1112
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
1113
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
1114
+ "license": "MIT",
1115
+ "funding": {
1116
+ "type": "github",
1117
+ "url": "https://github.com/sponsors/wooorm"
1118
+ }
1119
+ },
1120
+ "node_modules/chardet": {
1121
+ "version": "2.1.0",
1122
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.0.tgz",
1123
+ "integrity": "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==",
1124
+ "license": "MIT"
1125
+ },
1126
+ "node_modules/chownr": {
1127
+ "version": "1.1.4",
1128
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
1129
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
1130
+ "license": "ISC"
1131
+ },
1132
+ "node_modules/cli-width": {
1133
+ "version": "4.1.0",
1134
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
1135
+ "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
1136
+ "license": "ISC",
1137
+ "engines": {
1138
+ "node": ">= 12"
1139
+ }
1140
+ },
1141
+ "node_modules/code-block-writer": {
1142
+ "version": "13.0.3",
1143
+ "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-13.0.3.tgz",
1144
+ "integrity": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==",
1145
+ "license": "MIT"
1146
+ },
1147
+ "node_modules/color-convert": {
1148
+ "version": "2.0.1",
1149
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1150
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1151
+ "license": "MIT",
1152
+ "dependencies": {
1153
+ "color-name": "~1.1.4"
1154
+ },
1155
+ "engines": {
1156
+ "node": ">=7.0.0"
1157
+ }
1158
+ },
1159
+ "node_modules/color-name": {
1160
+ "version": "1.1.4",
1161
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1162
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1163
+ "license": "MIT"
1164
+ },
1165
+ "node_modules/combined-stream": {
1166
+ "version": "1.0.8",
1167
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1168
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1169
+ "license": "MIT",
1170
+ "dependencies": {
1171
+ "delayed-stream": "~1.0.0"
1172
+ },
1173
+ "engines": {
1174
+ "node": ">= 0.8"
1175
+ }
1176
+ },
1177
+ "node_modules/comma-separated-tokens": {
1178
+ "version": "2.0.3",
1179
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
1180
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
1181
+ "license": "MIT",
1182
+ "funding": {
1183
+ "type": "github",
1184
+ "url": "https://github.com/sponsors/wooorm"
1185
+ }
1186
+ },
1187
+ "node_modules/commander": {
1188
+ "version": "14.0.1",
1189
+ "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.1.tgz",
1190
+ "integrity": "sha512-2JkV3gUZUVrbNA+1sjBOYLsMZ5cEEl8GTFP2a4AVz5hvasAMCQ1D2l2le/cX+pV4N6ZU17zjUahLpIXRrnWL8A==",
1191
+ "license": "MIT",
1192
+ "engines": {
1193
+ "node": ">=20"
1194
+ }
1195
+ },
1196
+ "node_modules/csstype": {
1197
+ "version": "3.1.3",
1198
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1199
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1200
+ "license": "MIT",
1201
+ "peer": true
1202
+ },
1203
+ "node_modules/data-uri-to-buffer": {
1204
+ "version": "4.0.1",
1205
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
1206
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
1207
+ "license": "MIT",
1208
+ "engines": {
1209
+ "node": ">= 12"
1210
+ }
1211
+ },
1212
+ "node_modules/debug": {
1213
+ "version": "4.4.3",
1214
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1215
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1216
+ "license": "MIT",
1217
+ "dependencies": {
1218
+ "ms": "^2.1.3"
1219
+ },
1220
+ "engines": {
1221
+ "node": ">=6.0"
1222
+ },
1223
+ "peerDependenciesMeta": {
1224
+ "supports-color": {
1225
+ "optional": true
1226
+ }
1227
+ }
1228
+ },
1229
+ "node_modules/decode-named-character-reference": {
1230
+ "version": "1.2.0",
1231
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
1232
+ "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==",
1233
+ "license": "MIT",
1234
+ "dependencies": {
1235
+ "character-entities": "^2.0.0"
1236
+ },
1237
+ "funding": {
1238
+ "type": "github",
1239
+ "url": "https://github.com/sponsors/wooorm"
1240
+ }
1241
+ },
1242
+ "node_modules/decompress-response": {
1243
+ "version": "6.0.0",
1244
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
1245
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
1246
+ "license": "MIT",
1247
+ "dependencies": {
1248
+ "mimic-response": "^3.1.0"
1249
+ },
1250
+ "engines": {
1251
+ "node": ">=10"
1252
+ },
1253
+ "funding": {
1254
+ "url": "https://github.com/sponsors/sindresorhus"
1255
+ }
1256
+ },
1257
+ "node_modules/deep-extend": {
1258
+ "version": "0.6.0",
1259
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
1260
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
1261
+ "license": "MIT",
1262
+ "engines": {
1263
+ "node": ">=4.0.0"
1264
+ }
1265
+ },
1266
+ "node_modules/default-browser": {
1267
+ "version": "5.2.1",
1268
+ "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz",
1269
+ "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==",
1270
+ "license": "MIT",
1271
+ "dependencies": {
1272
+ "bundle-name": "^4.1.0",
1273
+ "default-browser-id": "^5.0.0"
1274
+ },
1275
+ "engines": {
1276
+ "node": ">=18"
1277
+ },
1278
+ "funding": {
1279
+ "url": "https://github.com/sponsors/sindresorhus"
1280
+ }
1281
+ },
1282
+ "node_modules/default-browser-id": {
1283
+ "version": "5.0.0",
1284
+ "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz",
1285
+ "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==",
1286
+ "license": "MIT",
1287
+ "engines": {
1288
+ "node": ">=18"
1289
+ },
1290
+ "funding": {
1291
+ "url": "https://github.com/sponsors/sindresorhus"
1292
+ }
1293
+ },
1294
+ "node_modules/define-lazy-prop": {
1295
+ "version": "3.0.0",
1296
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
1297
+ "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
1298
+ "license": "MIT",
1299
+ "engines": {
1300
+ "node": ">=12"
1301
+ },
1302
+ "funding": {
1303
+ "url": "https://github.com/sponsors/sindresorhus"
1304
+ }
1305
+ },
1306
+ "node_modules/delayed-stream": {
1307
+ "version": "1.0.0",
1308
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1309
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
1310
+ "license": "MIT",
1311
+ "engines": {
1312
+ "node": ">=0.4.0"
1313
+ }
1314
+ },
1315
+ "node_modules/dequal": {
1316
+ "version": "2.0.3",
1317
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
1318
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
1319
+ "license": "MIT",
1320
+ "engines": {
1321
+ "node": ">=6"
1322
+ }
1323
+ },
1324
+ "node_modules/detect-libc": {
1325
+ "version": "2.1.1",
1326
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.1.tgz",
1327
+ "integrity": "sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==",
1328
+ "license": "Apache-2.0",
1329
+ "engines": {
1330
+ "node": ">=8"
1331
+ }
1332
+ },
1333
+ "node_modules/devlop": {
1334
+ "version": "1.1.0",
1335
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
1336
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
1337
+ "license": "MIT",
1338
+ "dependencies": {
1339
+ "dequal": "^2.0.0"
1340
+ },
1341
+ "funding": {
1342
+ "type": "github",
1343
+ "url": "https://github.com/sponsors/wooorm"
1344
+ }
1345
+ },
1346
+ "node_modules/dotenv": {
1347
+ "version": "17.2.3",
1348
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz",
1349
+ "integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==",
1350
+ "license": "BSD-2-Clause",
1351
+ "engines": {
1352
+ "node": ">=12"
1353
+ },
1354
+ "funding": {
1355
+ "url": "https://dotenvx.com"
1356
+ }
1357
+ },
1358
+ "node_modules/dunder-proto": {
1359
+ "version": "1.0.1",
1360
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1361
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1362
+ "license": "MIT",
1363
+ "dependencies": {
1364
+ "call-bind-apply-helpers": "^1.0.1",
1365
+ "es-errors": "^1.3.0",
1366
+ "gopd": "^1.2.0"
1367
+ },
1368
+ "engines": {
1369
+ "node": ">= 0.4"
1370
+ }
1371
+ },
1372
+ "node_modules/emoji-regex": {
1373
+ "version": "8.0.0",
1374
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1375
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1376
+ "license": "MIT"
1377
+ },
1378
+ "node_modules/end-of-stream": {
1379
+ "version": "1.4.5",
1380
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
1381
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
1382
+ "license": "MIT",
1383
+ "dependencies": {
1384
+ "once": "^1.4.0"
1385
+ }
1386
+ },
1387
+ "node_modules/engine.io-client": {
1388
+ "version": "6.6.3",
1389
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.3.tgz",
1390
+ "integrity": "sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==",
1391
+ "license": "MIT",
1392
+ "dependencies": {
1393
+ "@socket.io/component-emitter": "~3.1.0",
1394
+ "debug": "~4.3.1",
1395
+ "engine.io-parser": "~5.2.1",
1396
+ "ws": "~8.17.1",
1397
+ "xmlhttprequest-ssl": "~2.1.1"
1398
+ }
1399
+ },
1400
+ "node_modules/engine.io-client/node_modules/debug": {
1401
+ "version": "4.3.7",
1402
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
1403
+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
1404
+ "license": "MIT",
1405
+ "dependencies": {
1406
+ "ms": "^2.1.3"
1407
+ },
1408
+ "engines": {
1409
+ "node": ">=6.0"
1410
+ },
1411
+ "peerDependenciesMeta": {
1412
+ "supports-color": {
1413
+ "optional": true
1414
+ }
1415
+ }
1416
+ },
1417
+ "node_modules/engine.io-client/node_modules/ws": {
1418
+ "version": "8.17.1",
1419
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
1420
+ "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
1421
+ "license": "MIT",
1422
+ "engines": {
1423
+ "node": ">=10.0.0"
1424
+ },
1425
+ "peerDependencies": {
1426
+ "bufferutil": "^4.0.1",
1427
+ "utf-8-validate": ">=5.0.2"
1428
+ },
1429
+ "peerDependenciesMeta": {
1430
+ "bufferutil": {
1431
+ "optional": true
1432
+ },
1433
+ "utf-8-validate": {
1434
+ "optional": true
1435
+ }
1436
+ }
1437
+ },
1438
+ "node_modules/engine.io-parser": {
1439
+ "version": "5.2.3",
1440
+ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz",
1441
+ "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==",
1442
+ "license": "MIT",
1443
+ "engines": {
1444
+ "node": ">=10.0.0"
1445
+ }
1446
+ },
1447
+ "node_modules/es-define-property": {
1448
+ "version": "1.0.1",
1449
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1450
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1451
+ "license": "MIT",
1452
+ "engines": {
1453
+ "node": ">= 0.4"
1454
+ }
1455
+ },
1456
+ "node_modules/es-errors": {
1457
+ "version": "1.3.0",
1458
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1459
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1460
+ "license": "MIT",
1461
+ "engines": {
1462
+ "node": ">= 0.4"
1463
+ }
1464
+ },
1465
+ "node_modules/es-object-atoms": {
1466
+ "version": "1.1.1",
1467
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
1468
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
1469
+ "license": "MIT",
1470
+ "dependencies": {
1471
+ "es-errors": "^1.3.0"
1472
+ },
1473
+ "engines": {
1474
+ "node": ">= 0.4"
1475
+ }
1476
+ },
1477
+ "node_modules/es-set-tostringtag": {
1478
+ "version": "2.1.0",
1479
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
1480
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
1481
+ "license": "MIT",
1482
+ "dependencies": {
1483
+ "es-errors": "^1.3.0",
1484
+ "get-intrinsic": "^1.2.6",
1485
+ "has-tostringtag": "^1.0.2",
1486
+ "hasown": "^2.0.2"
1487
+ },
1488
+ "engines": {
1489
+ "node": ">= 0.4"
1490
+ }
1491
+ },
1492
+ "node_modules/esbuild": {
1493
+ "version": "0.25.10",
1494
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz",
1495
+ "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==",
1496
+ "hasInstallScript": true,
1497
+ "license": "MIT",
1498
+ "bin": {
1499
+ "esbuild": "bin/esbuild"
1500
+ },
1501
+ "engines": {
1502
+ "node": ">=18"
1503
+ },
1504
+ "optionalDependencies": {
1505
+ "@esbuild/aix-ppc64": "0.25.10",
1506
+ "@esbuild/android-arm": "0.25.10",
1507
+ "@esbuild/android-arm64": "0.25.10",
1508
+ "@esbuild/android-x64": "0.25.10",
1509
+ "@esbuild/darwin-arm64": "0.25.10",
1510
+ "@esbuild/darwin-x64": "0.25.10",
1511
+ "@esbuild/freebsd-arm64": "0.25.10",
1512
+ "@esbuild/freebsd-x64": "0.25.10",
1513
+ "@esbuild/linux-arm": "0.25.10",
1514
+ "@esbuild/linux-arm64": "0.25.10",
1515
+ "@esbuild/linux-ia32": "0.25.10",
1516
+ "@esbuild/linux-loong64": "0.25.10",
1517
+ "@esbuild/linux-mips64el": "0.25.10",
1518
+ "@esbuild/linux-ppc64": "0.25.10",
1519
+ "@esbuild/linux-riscv64": "0.25.10",
1520
+ "@esbuild/linux-s390x": "0.25.10",
1521
+ "@esbuild/linux-x64": "0.25.10",
1522
+ "@esbuild/netbsd-arm64": "0.25.10",
1523
+ "@esbuild/netbsd-x64": "0.25.10",
1524
+ "@esbuild/openbsd-arm64": "0.25.10",
1525
+ "@esbuild/openbsd-x64": "0.25.10",
1526
+ "@esbuild/openharmony-arm64": "0.25.10",
1527
+ "@esbuild/sunos-x64": "0.25.10",
1528
+ "@esbuild/win32-arm64": "0.25.10",
1529
+ "@esbuild/win32-ia32": "0.25.10",
1530
+ "@esbuild/win32-x64": "0.25.10"
1531
+ }
1532
+ },
1533
+ "node_modules/estree-util-is-identifier-name": {
1534
+ "version": "3.0.0",
1535
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
1536
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
1537
+ "license": "MIT",
1538
+ "funding": {
1539
+ "type": "opencollective",
1540
+ "url": "https://opencollective.com/unified"
1541
+ }
1542
+ },
1543
+ "node_modules/expand-template": {
1544
+ "version": "2.0.3",
1545
+ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
1546
+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
1547
+ "license": "(MIT OR WTFPL)",
1548
+ "engines": {
1549
+ "node": ">=6"
1550
+ }
1551
+ },
1552
+ "node_modules/extend": {
1553
+ "version": "3.0.2",
1554
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1555
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1556
+ "license": "MIT"
1557
+ },
1558
+ "node_modules/fdir": {
1559
+ "version": "6.5.0",
1560
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1561
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1562
+ "license": "MIT",
1563
+ "engines": {
1564
+ "node": ">=12.0.0"
1565
+ },
1566
+ "peerDependencies": {
1567
+ "picomatch": "^3 || ^4"
1568
+ },
1569
+ "peerDependenciesMeta": {
1570
+ "picomatch": {
1571
+ "optional": true
1572
+ }
1573
+ }
1574
+ },
1575
+ "node_modules/fetch-blob": {
1576
+ "version": "3.2.0",
1577
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
1578
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
1579
+ "funding": [
1580
+ {
1581
+ "type": "github",
1582
+ "url": "https://github.com/sponsors/jimmywarting"
1583
+ },
1584
+ {
1585
+ "type": "paypal",
1586
+ "url": "https://paypal.me/jimmywarting"
1587
+ }
1588
+ ],
1589
+ "license": "MIT",
1590
+ "dependencies": {
1591
+ "node-domexception": "^1.0.0",
1592
+ "web-streams-polyfill": "^3.0.3"
1593
+ },
1594
+ "engines": {
1595
+ "node": "^12.20 || >= 14.13"
1596
+ }
1597
+ },
1598
+ "node_modules/follow-redirects": {
1599
+ "version": "1.15.11",
1600
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
1601
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
1602
+ "funding": [
1603
+ {
1604
+ "type": "individual",
1605
+ "url": "https://github.com/sponsors/RubenVerborgh"
1606
+ }
1607
+ ],
1608
+ "license": "MIT",
1609
+ "engines": {
1610
+ "node": ">=4.0"
1611
+ },
1612
+ "peerDependenciesMeta": {
1613
+ "debug": {
1614
+ "optional": true
1615
+ }
1616
+ }
1617
+ },
1618
+ "node_modules/form-data": {
1619
+ "version": "4.0.4",
1620
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
1621
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
1622
+ "license": "MIT",
1623
+ "dependencies": {
1624
+ "asynckit": "^0.4.0",
1625
+ "combined-stream": "^1.0.8",
1626
+ "es-set-tostringtag": "^2.1.0",
1627
+ "hasown": "^2.0.2",
1628
+ "mime-types": "^2.1.12"
1629
+ },
1630
+ "engines": {
1631
+ "node": ">= 6"
1632
+ }
1633
+ },
1634
+ "node_modules/formdata-polyfill": {
1635
+ "version": "4.0.10",
1636
+ "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
1637
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
1638
+ "license": "MIT",
1639
+ "dependencies": {
1640
+ "fetch-blob": "^3.1.2"
1641
+ },
1642
+ "engines": {
1643
+ "node": ">=12.20.0"
1644
+ }
1645
+ },
1646
+ "node_modules/fs-constants": {
1647
+ "version": "1.0.0",
1648
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
1649
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
1650
+ "license": "MIT"
1651
+ },
1652
+ "node_modules/fsevents": {
1653
+ "version": "2.3.3",
1654
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1655
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1656
+ "dev": true,
1657
+ "hasInstallScript": true,
1658
+ "license": "MIT",
1659
+ "optional": true,
1660
+ "os": [
1661
+ "darwin"
1662
+ ],
1663
+ "engines": {
1664
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1665
+ }
1666
+ },
1667
+ "node_modules/function-bind": {
1668
+ "version": "1.1.2",
1669
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1670
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1671
+ "license": "MIT",
1672
+ "funding": {
1673
+ "url": "https://github.com/sponsors/ljharb"
1674
+ }
1675
+ },
1676
+ "node_modules/get-intrinsic": {
1677
+ "version": "1.3.0",
1678
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
1679
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
1680
+ "license": "MIT",
1681
+ "dependencies": {
1682
+ "call-bind-apply-helpers": "^1.0.2",
1683
+ "es-define-property": "^1.0.1",
1684
+ "es-errors": "^1.3.0",
1685
+ "es-object-atoms": "^1.1.1",
1686
+ "function-bind": "^1.1.2",
1687
+ "get-proto": "^1.0.1",
1688
+ "gopd": "^1.2.0",
1689
+ "has-symbols": "^1.1.0",
1690
+ "hasown": "^2.0.2",
1691
+ "math-intrinsics": "^1.1.0"
1692
+ },
1693
+ "engines": {
1694
+ "node": ">= 0.4"
1695
+ },
1696
+ "funding": {
1697
+ "url": "https://github.com/sponsors/ljharb"
1698
+ }
1699
+ },
1700
+ "node_modules/get-proto": {
1701
+ "version": "1.0.1",
1702
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1703
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1704
+ "license": "MIT",
1705
+ "dependencies": {
1706
+ "dunder-proto": "^1.0.1",
1707
+ "es-object-atoms": "^1.0.0"
1708
+ },
1709
+ "engines": {
1710
+ "node": ">= 0.4"
1711
+ }
1712
+ },
1713
+ "node_modules/get-tsconfig": {
1714
+ "version": "4.10.1",
1715
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz",
1716
+ "integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==",
1717
+ "dev": true,
1718
+ "license": "MIT",
1719
+ "dependencies": {
1720
+ "resolve-pkg-maps": "^1.0.0"
1721
+ },
1722
+ "funding": {
1723
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
1724
+ }
1725
+ },
1726
+ "node_modules/github-from-package": {
1727
+ "version": "0.0.0",
1728
+ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
1729
+ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
1730
+ "license": "MIT"
1731
+ },
1732
+ "node_modules/gopd": {
1733
+ "version": "1.2.0",
1734
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1735
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1736
+ "license": "MIT",
1737
+ "engines": {
1738
+ "node": ">= 0.4"
1739
+ },
1740
+ "funding": {
1741
+ "url": "https://github.com/sponsors/ljharb"
1742
+ }
1743
+ },
1744
+ "node_modules/has-symbols": {
1745
+ "version": "1.1.0",
1746
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1747
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1748
+ "license": "MIT",
1749
+ "engines": {
1750
+ "node": ">= 0.4"
1751
+ },
1752
+ "funding": {
1753
+ "url": "https://github.com/sponsors/ljharb"
1754
+ }
1755
+ },
1756
+ "node_modules/has-tostringtag": {
1757
+ "version": "1.0.2",
1758
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
1759
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
1760
+ "license": "MIT",
1761
+ "dependencies": {
1762
+ "has-symbols": "^1.0.3"
1763
+ },
1764
+ "engines": {
1765
+ "node": ">= 0.4"
1766
+ },
1767
+ "funding": {
1768
+ "url": "https://github.com/sponsors/ljharb"
1769
+ }
1770
+ },
1771
+ "node_modules/hasown": {
1772
+ "version": "2.0.2",
1773
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
1774
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
1775
+ "license": "MIT",
1776
+ "dependencies": {
1777
+ "function-bind": "^1.1.2"
1778
+ },
1779
+ "engines": {
1780
+ "node": ">= 0.4"
1781
+ }
1782
+ },
1783
+ "node_modules/hast-util-to-jsx-runtime": {
1784
+ "version": "2.3.6",
1785
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
1786
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
1787
+ "license": "MIT",
1788
+ "dependencies": {
1789
+ "@types/estree": "^1.0.0",
1790
+ "@types/hast": "^3.0.0",
1791
+ "@types/unist": "^3.0.0",
1792
+ "comma-separated-tokens": "^2.0.0",
1793
+ "devlop": "^1.0.0",
1794
+ "estree-util-is-identifier-name": "^3.0.0",
1795
+ "hast-util-whitespace": "^3.0.0",
1796
+ "mdast-util-mdx-expression": "^2.0.0",
1797
+ "mdast-util-mdx-jsx": "^3.0.0",
1798
+ "mdast-util-mdxjs-esm": "^2.0.0",
1799
+ "property-information": "^7.0.0",
1800
+ "space-separated-tokens": "^2.0.0",
1801
+ "style-to-js": "^1.0.0",
1802
+ "unist-util-position": "^5.0.0",
1803
+ "vfile-message": "^4.0.0"
1804
+ },
1805
+ "funding": {
1806
+ "type": "opencollective",
1807
+ "url": "https://opencollective.com/unified"
1808
+ }
1809
+ },
1810
+ "node_modules/hast-util-whitespace": {
1811
+ "version": "3.0.0",
1812
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
1813
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
1814
+ "license": "MIT",
1815
+ "dependencies": {
1816
+ "@types/hast": "^3.0.0"
1817
+ },
1818
+ "funding": {
1819
+ "type": "opencollective",
1820
+ "url": "https://opencollective.com/unified"
1821
+ }
1822
+ },
1823
+ "node_modules/html-url-attributes": {
1824
+ "version": "3.0.1",
1825
+ "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
1826
+ "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
1827
+ "license": "MIT",
1828
+ "funding": {
1829
+ "type": "opencollective",
1830
+ "url": "https://opencollective.com/unified"
1831
+ }
1832
+ },
1833
+ "node_modules/iconv-lite": {
1834
+ "version": "0.7.0",
1835
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
1836
+ "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
1837
+ "license": "MIT",
1838
+ "dependencies": {
1839
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1840
+ },
1841
+ "engines": {
1842
+ "node": ">=0.10.0"
1843
+ },
1844
+ "funding": {
1845
+ "type": "opencollective",
1846
+ "url": "https://opencollective.com/express"
1847
+ }
1848
+ },
1849
+ "node_modules/ieee754": {
1850
+ "version": "1.2.1",
1851
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
1852
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
1853
+ "funding": [
1854
+ {
1855
+ "type": "github",
1856
+ "url": "https://github.com/sponsors/feross"
1857
+ },
1858
+ {
1859
+ "type": "patreon",
1860
+ "url": "https://www.patreon.com/feross"
1861
+ },
1862
+ {
1863
+ "type": "consulting",
1864
+ "url": "https://feross.org/support"
1865
+ }
1866
+ ],
1867
+ "license": "BSD-3-Clause"
1868
+ },
1869
+ "node_modules/inherits": {
1870
+ "version": "2.0.4",
1871
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1872
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1873
+ "license": "ISC"
1874
+ },
1875
+ "node_modules/ini": {
1876
+ "version": "1.3.8",
1877
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
1878
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
1879
+ "license": "ISC"
1880
+ },
1881
+ "node_modules/inline-style-parser": {
1882
+ "version": "0.2.4",
1883
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz",
1884
+ "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==",
1885
+ "license": "MIT"
1886
+ },
1887
+ "node_modules/inquirer": {
1888
+ "version": "12.9.6",
1889
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-12.9.6.tgz",
1890
+ "integrity": "sha512-603xXOgyfxhuis4nfnWaZrMaotNT0Km9XwwBNWUKbIDqeCY89jGr2F9YPEMiNhU6XjIP4VoWISMBFfcc5NgrTw==",
1891
+ "license": "MIT",
1892
+ "dependencies": {
1893
+ "@inquirer/ansi": "^1.0.0",
1894
+ "@inquirer/core": "^10.2.2",
1895
+ "@inquirer/prompts": "^7.8.6",
1896
+ "@inquirer/type": "^3.0.8",
1897
+ "mute-stream": "^2.0.0",
1898
+ "run-async": "^4.0.5",
1899
+ "rxjs": "^7.8.2"
1900
+ },
1901
+ "engines": {
1902
+ "node": ">=18"
1903
+ },
1904
+ "peerDependencies": {
1905
+ "@types/node": ">=18"
1906
+ },
1907
+ "peerDependenciesMeta": {
1908
+ "@types/node": {
1909
+ "optional": true
1910
+ }
1911
+ }
1912
+ },
1913
+ "node_modules/is-alphabetical": {
1914
+ "version": "2.0.1",
1915
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
1916
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
1917
+ "license": "MIT",
1918
+ "funding": {
1919
+ "type": "github",
1920
+ "url": "https://github.com/sponsors/wooorm"
1921
+ }
1922
+ },
1923
+ "node_modules/is-alphanumerical": {
1924
+ "version": "2.0.1",
1925
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
1926
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
1927
+ "license": "MIT",
1928
+ "dependencies": {
1929
+ "is-alphabetical": "^2.0.0",
1930
+ "is-decimal": "^2.0.0"
1931
+ },
1932
+ "funding": {
1933
+ "type": "github",
1934
+ "url": "https://github.com/sponsors/wooorm"
1935
+ }
1936
+ },
1937
+ "node_modules/is-decimal": {
1938
+ "version": "2.0.1",
1939
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
1940
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
1941
+ "license": "MIT",
1942
+ "funding": {
1943
+ "type": "github",
1944
+ "url": "https://github.com/sponsors/wooorm"
1945
+ }
1946
+ },
1947
+ "node_modules/is-docker": {
1948
+ "version": "3.0.0",
1949
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
1950
+ "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
1951
+ "license": "MIT",
1952
+ "bin": {
1953
+ "is-docker": "cli.js"
1954
+ },
1955
+ "engines": {
1956
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1957
+ },
1958
+ "funding": {
1959
+ "url": "https://github.com/sponsors/sindresorhus"
1960
+ }
1961
+ },
1962
+ "node_modules/is-fullwidth-code-point": {
1963
+ "version": "3.0.0",
1964
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1965
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1966
+ "license": "MIT",
1967
+ "engines": {
1968
+ "node": ">=8"
1969
+ }
1970
+ },
1971
+ "node_modules/is-hexadecimal": {
1972
+ "version": "2.0.1",
1973
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
1974
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
1975
+ "license": "MIT",
1976
+ "funding": {
1977
+ "type": "github",
1978
+ "url": "https://github.com/sponsors/wooorm"
1979
+ }
1980
+ },
1981
+ "node_modules/is-inside-container": {
1982
+ "version": "1.0.0",
1983
+ "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
1984
+ "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
1985
+ "license": "MIT",
1986
+ "dependencies": {
1987
+ "is-docker": "^3.0.0"
1988
+ },
1989
+ "bin": {
1990
+ "is-inside-container": "cli.js"
1991
+ },
1992
+ "engines": {
1993
+ "node": ">=14.16"
1994
+ },
1995
+ "funding": {
1996
+ "url": "https://github.com/sponsors/sindresorhus"
1997
+ }
1998
+ },
1999
+ "node_modules/is-plain-obj": {
2000
+ "version": "4.1.0",
2001
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
2002
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
2003
+ "license": "MIT",
2004
+ "engines": {
2005
+ "node": ">=12"
2006
+ },
2007
+ "funding": {
2008
+ "url": "https://github.com/sponsors/sindresorhus"
2009
+ }
2010
+ },
2011
+ "node_modules/is-wsl": {
2012
+ "version": "3.1.0",
2013
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
2014
+ "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
2015
+ "license": "MIT",
2016
+ "dependencies": {
2017
+ "is-inside-container": "^1.0.0"
2018
+ },
2019
+ "engines": {
2020
+ "node": ">=16"
2021
+ },
2022
+ "funding": {
2023
+ "url": "https://github.com/sponsors/sindresorhus"
2024
+ }
2025
+ },
2026
+ "node_modules/js-tokens": {
2027
+ "version": "4.0.0",
2028
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2029
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2030
+ "license": "MIT"
2031
+ },
2032
+ "node_modules/js-yaml": {
2033
+ "version": "4.1.0",
2034
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2035
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2036
+ "license": "MIT",
2037
+ "dependencies": {
2038
+ "argparse": "^2.0.1"
2039
+ },
2040
+ "bin": {
2041
+ "js-yaml": "bin/js-yaml.js"
2042
+ }
2043
+ },
2044
+ "node_modules/keytar": {
2045
+ "version": "7.9.0",
2046
+ "resolved": "https://registry.npmjs.org/keytar/-/keytar-7.9.0.tgz",
2047
+ "integrity": "sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==",
2048
+ "hasInstallScript": true,
2049
+ "license": "MIT",
2050
+ "dependencies": {
2051
+ "node-addon-api": "^4.3.0",
2052
+ "prebuild-install": "^7.0.1"
2053
+ }
2054
+ },
2055
+ "node_modules/longest-streak": {
2056
+ "version": "3.1.0",
2057
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
2058
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
2059
+ "license": "MIT",
2060
+ "funding": {
2061
+ "type": "github",
2062
+ "url": "https://github.com/sponsors/wooorm"
2063
+ }
2064
+ },
2065
+ "node_modules/loose-envify": {
2066
+ "version": "1.4.0",
2067
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2068
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2069
+ "license": "MIT",
2070
+ "dependencies": {
2071
+ "js-tokens": "^3.0.0 || ^4.0.0"
2072
+ },
2073
+ "bin": {
2074
+ "loose-envify": "cli.js"
2075
+ }
2076
+ },
2077
+ "node_modules/lua-cli": {
2078
+ "version": "2.3.0-alpha.1",
2079
+ "resolved": "https://registry.npmjs.org/lua-cli/-/lua-cli-2.3.0-alpha.1.tgz",
2080
+ "integrity": "sha512-IE4VirAnAS6UwKlX/Bea+zRWJHJZQzu668c/5sKt4PCZ7vKVNOcMaAr9Ka68CjJrU7FaJ5uN8Zy0C+GKUBrqUw==",
2081
+ "license": "MIT",
2082
+ "dependencies": {
2083
+ "commander": "^14.0.1",
2084
+ "dotenv": "^17.2.3",
2085
+ "esbuild": "^0.25.10",
2086
+ "inquirer": "^12.9.6",
2087
+ "js-yaml": "^4.1.0",
2088
+ "keytar": "^7.9.0",
2089
+ "lua-cli": "^2.3.0-alpha.1",
2090
+ "node-fetch": "^3.3.2",
2091
+ "open": "^10.1.0",
2092
+ "react": "^18.2.0",
2093
+ "react-dom": "^18.2.0",
2094
+ "react-markdown": "^9.0.1",
2095
+ "socket.io-client": "^4.7.2",
2096
+ "ts-morph": "^27.0.0",
2097
+ "ws": "^8.18.3",
2098
+ "zod": "^3.24.1",
2099
+ "zod-to-json-schema": "^3.24.6"
2100
+ },
2101
+ "bin": {
2102
+ "lua": "dist/index.js"
2103
+ },
2104
+ "engines": {
2105
+ "node": ">=16.0.0"
2106
+ }
2107
+ },
2108
+ "node_modules/math-intrinsics": {
2109
+ "version": "1.1.0",
2110
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
2111
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
2112
+ "license": "MIT",
2113
+ "engines": {
2114
+ "node": ">= 0.4"
2115
+ }
2116
+ },
2117
+ "node_modules/mdast-util-from-markdown": {
2118
+ "version": "2.0.2",
2119
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
2120
+ "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
2121
+ "license": "MIT",
2122
+ "dependencies": {
2123
+ "@types/mdast": "^4.0.0",
2124
+ "@types/unist": "^3.0.0",
2125
+ "decode-named-character-reference": "^1.0.0",
2126
+ "devlop": "^1.0.0",
2127
+ "mdast-util-to-string": "^4.0.0",
2128
+ "micromark": "^4.0.0",
2129
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2130
+ "micromark-util-decode-string": "^2.0.0",
2131
+ "micromark-util-normalize-identifier": "^2.0.0",
2132
+ "micromark-util-symbol": "^2.0.0",
2133
+ "micromark-util-types": "^2.0.0",
2134
+ "unist-util-stringify-position": "^4.0.0"
2135
+ },
2136
+ "funding": {
2137
+ "type": "opencollective",
2138
+ "url": "https://opencollective.com/unified"
2139
+ }
2140
+ },
2141
+ "node_modules/mdast-util-mdx-expression": {
2142
+ "version": "2.0.1",
2143
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
2144
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
2145
+ "license": "MIT",
2146
+ "dependencies": {
2147
+ "@types/estree-jsx": "^1.0.0",
2148
+ "@types/hast": "^3.0.0",
2149
+ "@types/mdast": "^4.0.0",
2150
+ "devlop": "^1.0.0",
2151
+ "mdast-util-from-markdown": "^2.0.0",
2152
+ "mdast-util-to-markdown": "^2.0.0"
2153
+ },
2154
+ "funding": {
2155
+ "type": "opencollective",
2156
+ "url": "https://opencollective.com/unified"
2157
+ }
2158
+ },
2159
+ "node_modules/mdast-util-mdx-jsx": {
2160
+ "version": "3.2.0",
2161
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
2162
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
2163
+ "license": "MIT",
2164
+ "dependencies": {
2165
+ "@types/estree-jsx": "^1.0.0",
2166
+ "@types/hast": "^3.0.0",
2167
+ "@types/mdast": "^4.0.0",
2168
+ "@types/unist": "^3.0.0",
2169
+ "ccount": "^2.0.0",
2170
+ "devlop": "^1.1.0",
2171
+ "mdast-util-from-markdown": "^2.0.0",
2172
+ "mdast-util-to-markdown": "^2.0.0",
2173
+ "parse-entities": "^4.0.0",
2174
+ "stringify-entities": "^4.0.0",
2175
+ "unist-util-stringify-position": "^4.0.0",
2176
+ "vfile-message": "^4.0.0"
2177
+ },
2178
+ "funding": {
2179
+ "type": "opencollective",
2180
+ "url": "https://opencollective.com/unified"
2181
+ }
2182
+ },
2183
+ "node_modules/mdast-util-mdxjs-esm": {
2184
+ "version": "2.0.1",
2185
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
2186
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
2187
+ "license": "MIT",
2188
+ "dependencies": {
2189
+ "@types/estree-jsx": "^1.0.0",
2190
+ "@types/hast": "^3.0.0",
2191
+ "@types/mdast": "^4.0.0",
2192
+ "devlop": "^1.0.0",
2193
+ "mdast-util-from-markdown": "^2.0.0",
2194
+ "mdast-util-to-markdown": "^2.0.0"
2195
+ },
2196
+ "funding": {
2197
+ "type": "opencollective",
2198
+ "url": "https://opencollective.com/unified"
2199
+ }
2200
+ },
2201
+ "node_modules/mdast-util-phrasing": {
2202
+ "version": "4.1.0",
2203
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
2204
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
2205
+ "license": "MIT",
2206
+ "dependencies": {
2207
+ "@types/mdast": "^4.0.0",
2208
+ "unist-util-is": "^6.0.0"
2209
+ },
2210
+ "funding": {
2211
+ "type": "opencollective",
2212
+ "url": "https://opencollective.com/unified"
2213
+ }
2214
+ },
2215
+ "node_modules/mdast-util-to-hast": {
2216
+ "version": "13.2.0",
2217
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz",
2218
+ "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==",
2219
+ "license": "MIT",
2220
+ "dependencies": {
2221
+ "@types/hast": "^3.0.0",
2222
+ "@types/mdast": "^4.0.0",
2223
+ "@ungap/structured-clone": "^1.0.0",
2224
+ "devlop": "^1.0.0",
2225
+ "micromark-util-sanitize-uri": "^2.0.0",
2226
+ "trim-lines": "^3.0.0",
2227
+ "unist-util-position": "^5.0.0",
2228
+ "unist-util-visit": "^5.0.0",
2229
+ "vfile": "^6.0.0"
2230
+ },
2231
+ "funding": {
2232
+ "type": "opencollective",
2233
+ "url": "https://opencollective.com/unified"
2234
+ }
2235
+ },
2236
+ "node_modules/mdast-util-to-markdown": {
2237
+ "version": "2.1.2",
2238
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
2239
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
2240
+ "license": "MIT",
2241
+ "dependencies": {
2242
+ "@types/mdast": "^4.0.0",
2243
+ "@types/unist": "^3.0.0",
2244
+ "longest-streak": "^3.0.0",
2245
+ "mdast-util-phrasing": "^4.0.0",
2246
+ "mdast-util-to-string": "^4.0.0",
2247
+ "micromark-util-classify-character": "^2.0.0",
2248
+ "micromark-util-decode-string": "^2.0.0",
2249
+ "unist-util-visit": "^5.0.0",
2250
+ "zwitch": "^2.0.0"
2251
+ },
2252
+ "funding": {
2253
+ "type": "opencollective",
2254
+ "url": "https://opencollective.com/unified"
2255
+ }
2256
+ },
2257
+ "node_modules/mdast-util-to-string": {
2258
+ "version": "4.0.0",
2259
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
2260
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
2261
+ "license": "MIT",
2262
+ "dependencies": {
2263
+ "@types/mdast": "^4.0.0"
2264
+ },
2265
+ "funding": {
2266
+ "type": "opencollective",
2267
+ "url": "https://opencollective.com/unified"
2268
+ }
2269
+ },
2270
+ "node_modules/micromark": {
2271
+ "version": "4.0.2",
2272
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
2273
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
2274
+ "funding": [
2275
+ {
2276
+ "type": "GitHub Sponsors",
2277
+ "url": "https://github.com/sponsors/unifiedjs"
2278
+ },
2279
+ {
2280
+ "type": "OpenCollective",
2281
+ "url": "https://opencollective.com/unified"
2282
+ }
2283
+ ],
2284
+ "license": "MIT",
2285
+ "dependencies": {
2286
+ "@types/debug": "^4.0.0",
2287
+ "debug": "^4.0.0",
2288
+ "decode-named-character-reference": "^1.0.0",
2289
+ "devlop": "^1.0.0",
2290
+ "micromark-core-commonmark": "^2.0.0",
2291
+ "micromark-factory-space": "^2.0.0",
2292
+ "micromark-util-character": "^2.0.0",
2293
+ "micromark-util-chunked": "^2.0.0",
2294
+ "micromark-util-combine-extensions": "^2.0.0",
2295
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2296
+ "micromark-util-encode": "^2.0.0",
2297
+ "micromark-util-normalize-identifier": "^2.0.0",
2298
+ "micromark-util-resolve-all": "^2.0.0",
2299
+ "micromark-util-sanitize-uri": "^2.0.0",
2300
+ "micromark-util-subtokenize": "^2.0.0",
2301
+ "micromark-util-symbol": "^2.0.0",
2302
+ "micromark-util-types": "^2.0.0"
2303
+ }
2304
+ },
2305
+ "node_modules/micromark-core-commonmark": {
2306
+ "version": "2.0.3",
2307
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
2308
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
2309
+ "funding": [
2310
+ {
2311
+ "type": "GitHub Sponsors",
2312
+ "url": "https://github.com/sponsors/unifiedjs"
2313
+ },
2314
+ {
2315
+ "type": "OpenCollective",
2316
+ "url": "https://opencollective.com/unified"
2317
+ }
2318
+ ],
2319
+ "license": "MIT",
2320
+ "dependencies": {
2321
+ "decode-named-character-reference": "^1.0.0",
2322
+ "devlop": "^1.0.0",
2323
+ "micromark-factory-destination": "^2.0.0",
2324
+ "micromark-factory-label": "^2.0.0",
2325
+ "micromark-factory-space": "^2.0.0",
2326
+ "micromark-factory-title": "^2.0.0",
2327
+ "micromark-factory-whitespace": "^2.0.0",
2328
+ "micromark-util-character": "^2.0.0",
2329
+ "micromark-util-chunked": "^2.0.0",
2330
+ "micromark-util-classify-character": "^2.0.0",
2331
+ "micromark-util-html-tag-name": "^2.0.0",
2332
+ "micromark-util-normalize-identifier": "^2.0.0",
2333
+ "micromark-util-resolve-all": "^2.0.0",
2334
+ "micromark-util-subtokenize": "^2.0.0",
2335
+ "micromark-util-symbol": "^2.0.0",
2336
+ "micromark-util-types": "^2.0.0"
2337
+ }
2338
+ },
2339
+ "node_modules/micromark-factory-destination": {
2340
+ "version": "2.0.1",
2341
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
2342
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
2343
+ "funding": [
2344
+ {
2345
+ "type": "GitHub Sponsors",
2346
+ "url": "https://github.com/sponsors/unifiedjs"
2347
+ },
2348
+ {
2349
+ "type": "OpenCollective",
2350
+ "url": "https://opencollective.com/unified"
2351
+ }
2352
+ ],
2353
+ "license": "MIT",
2354
+ "dependencies": {
2355
+ "micromark-util-character": "^2.0.0",
2356
+ "micromark-util-symbol": "^2.0.0",
2357
+ "micromark-util-types": "^2.0.0"
2358
+ }
2359
+ },
2360
+ "node_modules/micromark-factory-label": {
2361
+ "version": "2.0.1",
2362
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
2363
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
2364
+ "funding": [
2365
+ {
2366
+ "type": "GitHub Sponsors",
2367
+ "url": "https://github.com/sponsors/unifiedjs"
2368
+ },
2369
+ {
2370
+ "type": "OpenCollective",
2371
+ "url": "https://opencollective.com/unified"
2372
+ }
2373
+ ],
2374
+ "license": "MIT",
2375
+ "dependencies": {
2376
+ "devlop": "^1.0.0",
2377
+ "micromark-util-character": "^2.0.0",
2378
+ "micromark-util-symbol": "^2.0.0",
2379
+ "micromark-util-types": "^2.0.0"
2380
+ }
2381
+ },
2382
+ "node_modules/micromark-factory-space": {
2383
+ "version": "2.0.1",
2384
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
2385
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
2386
+ "funding": [
2387
+ {
2388
+ "type": "GitHub Sponsors",
2389
+ "url": "https://github.com/sponsors/unifiedjs"
2390
+ },
2391
+ {
2392
+ "type": "OpenCollective",
2393
+ "url": "https://opencollective.com/unified"
2394
+ }
2395
+ ],
2396
+ "license": "MIT",
2397
+ "dependencies": {
2398
+ "micromark-util-character": "^2.0.0",
2399
+ "micromark-util-types": "^2.0.0"
2400
+ }
2401
+ },
2402
+ "node_modules/micromark-factory-title": {
2403
+ "version": "2.0.1",
2404
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
2405
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
2406
+ "funding": [
2407
+ {
2408
+ "type": "GitHub Sponsors",
2409
+ "url": "https://github.com/sponsors/unifiedjs"
2410
+ },
2411
+ {
2412
+ "type": "OpenCollective",
2413
+ "url": "https://opencollective.com/unified"
2414
+ }
2415
+ ],
2416
+ "license": "MIT",
2417
+ "dependencies": {
2418
+ "micromark-factory-space": "^2.0.0",
2419
+ "micromark-util-character": "^2.0.0",
2420
+ "micromark-util-symbol": "^2.0.0",
2421
+ "micromark-util-types": "^2.0.0"
2422
+ }
2423
+ },
2424
+ "node_modules/micromark-factory-whitespace": {
2425
+ "version": "2.0.1",
2426
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
2427
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
2428
+ "funding": [
2429
+ {
2430
+ "type": "GitHub Sponsors",
2431
+ "url": "https://github.com/sponsors/unifiedjs"
2432
+ },
2433
+ {
2434
+ "type": "OpenCollective",
2435
+ "url": "https://opencollective.com/unified"
2436
+ }
2437
+ ],
2438
+ "license": "MIT",
2439
+ "dependencies": {
2440
+ "micromark-factory-space": "^2.0.0",
2441
+ "micromark-util-character": "^2.0.0",
2442
+ "micromark-util-symbol": "^2.0.0",
2443
+ "micromark-util-types": "^2.0.0"
2444
+ }
2445
+ },
2446
+ "node_modules/micromark-util-character": {
2447
+ "version": "2.1.1",
2448
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
2449
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
2450
+ "funding": [
2451
+ {
2452
+ "type": "GitHub Sponsors",
2453
+ "url": "https://github.com/sponsors/unifiedjs"
2454
+ },
2455
+ {
2456
+ "type": "OpenCollective",
2457
+ "url": "https://opencollective.com/unified"
2458
+ }
2459
+ ],
2460
+ "license": "MIT",
2461
+ "dependencies": {
2462
+ "micromark-util-symbol": "^2.0.0",
2463
+ "micromark-util-types": "^2.0.0"
2464
+ }
2465
+ },
2466
+ "node_modules/micromark-util-chunked": {
2467
+ "version": "2.0.1",
2468
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
2469
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
2470
+ "funding": [
2471
+ {
2472
+ "type": "GitHub Sponsors",
2473
+ "url": "https://github.com/sponsors/unifiedjs"
2474
+ },
2475
+ {
2476
+ "type": "OpenCollective",
2477
+ "url": "https://opencollective.com/unified"
2478
+ }
2479
+ ],
2480
+ "license": "MIT",
2481
+ "dependencies": {
2482
+ "micromark-util-symbol": "^2.0.0"
2483
+ }
2484
+ },
2485
+ "node_modules/micromark-util-classify-character": {
2486
+ "version": "2.0.1",
2487
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
2488
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
2489
+ "funding": [
2490
+ {
2491
+ "type": "GitHub Sponsors",
2492
+ "url": "https://github.com/sponsors/unifiedjs"
2493
+ },
2494
+ {
2495
+ "type": "OpenCollective",
2496
+ "url": "https://opencollective.com/unified"
2497
+ }
2498
+ ],
2499
+ "license": "MIT",
2500
+ "dependencies": {
2501
+ "micromark-util-character": "^2.0.0",
2502
+ "micromark-util-symbol": "^2.0.0",
2503
+ "micromark-util-types": "^2.0.0"
2504
+ }
2505
+ },
2506
+ "node_modules/micromark-util-combine-extensions": {
2507
+ "version": "2.0.1",
2508
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
2509
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
2510
+ "funding": [
2511
+ {
2512
+ "type": "GitHub Sponsors",
2513
+ "url": "https://github.com/sponsors/unifiedjs"
2514
+ },
2515
+ {
2516
+ "type": "OpenCollective",
2517
+ "url": "https://opencollective.com/unified"
2518
+ }
2519
+ ],
2520
+ "license": "MIT",
2521
+ "dependencies": {
2522
+ "micromark-util-chunked": "^2.0.0",
2523
+ "micromark-util-types": "^2.0.0"
2524
+ }
2525
+ },
2526
+ "node_modules/micromark-util-decode-numeric-character-reference": {
2527
+ "version": "2.0.2",
2528
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
2529
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
2530
+ "funding": [
2531
+ {
2532
+ "type": "GitHub Sponsors",
2533
+ "url": "https://github.com/sponsors/unifiedjs"
2534
+ },
2535
+ {
2536
+ "type": "OpenCollective",
2537
+ "url": "https://opencollective.com/unified"
2538
+ }
2539
+ ],
2540
+ "license": "MIT",
2541
+ "dependencies": {
2542
+ "micromark-util-symbol": "^2.0.0"
2543
+ }
2544
+ },
2545
+ "node_modules/micromark-util-decode-string": {
2546
+ "version": "2.0.1",
2547
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
2548
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
2549
+ "funding": [
2550
+ {
2551
+ "type": "GitHub Sponsors",
2552
+ "url": "https://github.com/sponsors/unifiedjs"
2553
+ },
2554
+ {
2555
+ "type": "OpenCollective",
2556
+ "url": "https://opencollective.com/unified"
2557
+ }
2558
+ ],
2559
+ "license": "MIT",
2560
+ "dependencies": {
2561
+ "decode-named-character-reference": "^1.0.0",
2562
+ "micromark-util-character": "^2.0.0",
2563
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2564
+ "micromark-util-symbol": "^2.0.0"
2565
+ }
2566
+ },
2567
+ "node_modules/micromark-util-encode": {
2568
+ "version": "2.0.1",
2569
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
2570
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
2571
+ "funding": [
2572
+ {
2573
+ "type": "GitHub Sponsors",
2574
+ "url": "https://github.com/sponsors/unifiedjs"
2575
+ },
2576
+ {
2577
+ "type": "OpenCollective",
2578
+ "url": "https://opencollective.com/unified"
2579
+ }
2580
+ ],
2581
+ "license": "MIT"
2582
+ },
2583
+ "node_modules/micromark-util-html-tag-name": {
2584
+ "version": "2.0.1",
2585
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
2586
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
2587
+ "funding": [
2588
+ {
2589
+ "type": "GitHub Sponsors",
2590
+ "url": "https://github.com/sponsors/unifiedjs"
2591
+ },
2592
+ {
2593
+ "type": "OpenCollective",
2594
+ "url": "https://opencollective.com/unified"
2595
+ }
2596
+ ],
2597
+ "license": "MIT"
2598
+ },
2599
+ "node_modules/micromark-util-normalize-identifier": {
2600
+ "version": "2.0.1",
2601
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
2602
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
2603
+ "funding": [
2604
+ {
2605
+ "type": "GitHub Sponsors",
2606
+ "url": "https://github.com/sponsors/unifiedjs"
2607
+ },
2608
+ {
2609
+ "type": "OpenCollective",
2610
+ "url": "https://opencollective.com/unified"
2611
+ }
2612
+ ],
2613
+ "license": "MIT",
2614
+ "dependencies": {
2615
+ "micromark-util-symbol": "^2.0.0"
2616
+ }
2617
+ },
2618
+ "node_modules/micromark-util-resolve-all": {
2619
+ "version": "2.0.1",
2620
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
2621
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
2622
+ "funding": [
2623
+ {
2624
+ "type": "GitHub Sponsors",
2625
+ "url": "https://github.com/sponsors/unifiedjs"
2626
+ },
2627
+ {
2628
+ "type": "OpenCollective",
2629
+ "url": "https://opencollective.com/unified"
2630
+ }
2631
+ ],
2632
+ "license": "MIT",
2633
+ "dependencies": {
2634
+ "micromark-util-types": "^2.0.0"
2635
+ }
2636
+ },
2637
+ "node_modules/micromark-util-sanitize-uri": {
2638
+ "version": "2.0.1",
2639
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
2640
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
2641
+ "funding": [
2642
+ {
2643
+ "type": "GitHub Sponsors",
2644
+ "url": "https://github.com/sponsors/unifiedjs"
2645
+ },
2646
+ {
2647
+ "type": "OpenCollective",
2648
+ "url": "https://opencollective.com/unified"
2649
+ }
2650
+ ],
2651
+ "license": "MIT",
2652
+ "dependencies": {
2653
+ "micromark-util-character": "^2.0.0",
2654
+ "micromark-util-encode": "^2.0.0",
2655
+ "micromark-util-symbol": "^2.0.0"
2656
+ }
2657
+ },
2658
+ "node_modules/micromark-util-subtokenize": {
2659
+ "version": "2.1.0",
2660
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
2661
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
2662
+ "funding": [
2663
+ {
2664
+ "type": "GitHub Sponsors",
2665
+ "url": "https://github.com/sponsors/unifiedjs"
2666
+ },
2667
+ {
2668
+ "type": "OpenCollective",
2669
+ "url": "https://opencollective.com/unified"
2670
+ }
2671
+ ],
2672
+ "license": "MIT",
2673
+ "dependencies": {
2674
+ "devlop": "^1.0.0",
2675
+ "micromark-util-chunked": "^2.0.0",
2676
+ "micromark-util-symbol": "^2.0.0",
2677
+ "micromark-util-types": "^2.0.0"
2678
+ }
2679
+ },
2680
+ "node_modules/micromark-util-symbol": {
2681
+ "version": "2.0.1",
2682
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
2683
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
2684
+ "funding": [
2685
+ {
2686
+ "type": "GitHub Sponsors",
2687
+ "url": "https://github.com/sponsors/unifiedjs"
2688
+ },
2689
+ {
2690
+ "type": "OpenCollective",
2691
+ "url": "https://opencollective.com/unified"
2692
+ }
2693
+ ],
2694
+ "license": "MIT"
2695
+ },
2696
+ "node_modules/micromark-util-types": {
2697
+ "version": "2.0.2",
2698
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
2699
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
2700
+ "funding": [
2701
+ {
2702
+ "type": "GitHub Sponsors",
2703
+ "url": "https://github.com/sponsors/unifiedjs"
2704
+ },
2705
+ {
2706
+ "type": "OpenCollective",
2707
+ "url": "https://opencollective.com/unified"
2708
+ }
2709
+ ],
2710
+ "license": "MIT"
2711
+ },
2712
+ "node_modules/mime-db": {
2713
+ "version": "1.52.0",
2714
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
2715
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
2716
+ "license": "MIT",
2717
+ "engines": {
2718
+ "node": ">= 0.6"
2719
+ }
2720
+ },
2721
+ "node_modules/mime-types": {
2722
+ "version": "2.1.35",
2723
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
2724
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
2725
+ "license": "MIT",
2726
+ "dependencies": {
2727
+ "mime-db": "1.52.0"
2728
+ },
2729
+ "engines": {
2730
+ "node": ">= 0.6"
2731
+ }
2732
+ },
2733
+ "node_modules/mimic-response": {
2734
+ "version": "3.1.0",
2735
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
2736
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
2737
+ "license": "MIT",
2738
+ "engines": {
2739
+ "node": ">=10"
2740
+ },
2741
+ "funding": {
2742
+ "url": "https://github.com/sponsors/sindresorhus"
2743
+ }
2744
+ },
2745
+ "node_modules/minimatch": {
2746
+ "version": "10.0.3",
2747
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.3.tgz",
2748
+ "integrity": "sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==",
2749
+ "license": "ISC",
2750
+ "dependencies": {
2751
+ "@isaacs/brace-expansion": "^5.0.0"
2752
+ },
2753
+ "engines": {
2754
+ "node": "20 || >=22"
2755
+ },
2756
+ "funding": {
2757
+ "url": "https://github.com/sponsors/isaacs"
2758
+ }
2759
+ },
2760
+ "node_modules/minimist": {
2761
+ "version": "1.2.8",
2762
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
2763
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
2764
+ "license": "MIT",
2765
+ "funding": {
2766
+ "url": "https://github.com/sponsors/ljharb"
2767
+ }
2768
+ },
2769
+ "node_modules/mkdirp-classic": {
2770
+ "version": "0.5.3",
2771
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
2772
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
2773
+ "license": "MIT"
2774
+ },
2775
+ "node_modules/ms": {
2776
+ "version": "2.1.3",
2777
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2778
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2779
+ "license": "MIT"
2780
+ },
2781
+ "node_modules/mute-stream": {
2782
+ "version": "2.0.0",
2783
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz",
2784
+ "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==",
2785
+ "license": "ISC",
2786
+ "engines": {
2787
+ "node": "^18.17.0 || >=20.5.0"
2788
+ }
2789
+ },
2790
+ "node_modules/napi-build-utils": {
2791
+ "version": "2.0.0",
2792
+ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
2793
+ "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
2794
+ "license": "MIT"
2795
+ },
2796
+ "node_modules/node-abi": {
2797
+ "version": "3.77.0",
2798
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.77.0.tgz",
2799
+ "integrity": "sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ==",
2800
+ "license": "MIT",
2801
+ "dependencies": {
2802
+ "semver": "^7.3.5"
2803
+ },
2804
+ "engines": {
2805
+ "node": ">=10"
2806
+ }
2807
+ },
2808
+ "node_modules/node-addon-api": {
2809
+ "version": "4.3.0",
2810
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz",
2811
+ "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==",
2812
+ "license": "MIT"
2813
+ },
2814
+ "node_modules/node-domexception": {
2815
+ "version": "1.0.0",
2816
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
2817
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
2818
+ "deprecated": "Use your platform's native DOMException instead",
2819
+ "funding": [
2820
+ {
2821
+ "type": "github",
2822
+ "url": "https://github.com/sponsors/jimmywarting"
2823
+ },
2824
+ {
2825
+ "type": "github",
2826
+ "url": "https://paypal.me/jimmywarting"
2827
+ }
2828
+ ],
2829
+ "license": "MIT",
2830
+ "engines": {
2831
+ "node": ">=10.5.0"
2832
+ }
2833
+ },
2834
+ "node_modules/node-fetch": {
2835
+ "version": "3.3.2",
2836
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
2837
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
2838
+ "license": "MIT",
2839
+ "dependencies": {
2840
+ "data-uri-to-buffer": "^4.0.0",
2841
+ "fetch-blob": "^3.1.4",
2842
+ "formdata-polyfill": "^4.0.10"
2843
+ },
2844
+ "engines": {
2845
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2846
+ },
2847
+ "funding": {
2848
+ "type": "opencollective",
2849
+ "url": "https://opencollective.com/node-fetch"
2850
+ }
2851
+ },
2852
+ "node_modules/once": {
2853
+ "version": "1.4.0",
2854
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2855
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2856
+ "license": "ISC",
2857
+ "dependencies": {
2858
+ "wrappy": "1"
2859
+ }
2860
+ },
2861
+ "node_modules/open": {
2862
+ "version": "10.2.0",
2863
+ "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz",
2864
+ "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==",
2865
+ "license": "MIT",
2866
+ "dependencies": {
2867
+ "default-browser": "^5.2.1",
2868
+ "define-lazy-prop": "^3.0.0",
2869
+ "is-inside-container": "^1.0.0",
2870
+ "wsl-utils": "^0.1.0"
2871
+ },
2872
+ "engines": {
2873
+ "node": ">=18"
2874
+ },
2875
+ "funding": {
2876
+ "url": "https://github.com/sponsors/sindresorhus"
2877
+ }
2878
+ },
2879
+ "node_modules/openai": {
2880
+ "version": "5.23.0",
2881
+ "resolved": "https://registry.npmjs.org/openai/-/openai-5.23.0.tgz",
2882
+ "integrity": "sha512-Cfq155NHzI7VWR67LUNJMIgPZy2oSh7Fld/OKhxq648BiUjELAvcge7g30xJ6vAfwwXf6TVK0KKuN+3nmIJG/A==",
2883
+ "license": "Apache-2.0",
2884
+ "bin": {
2885
+ "openai": "bin/cli"
2886
+ },
2887
+ "peerDependencies": {
2888
+ "ws": "^8.18.0",
2889
+ "zod": "^3.23.8"
2890
+ },
2891
+ "peerDependenciesMeta": {
2892
+ "ws": {
2893
+ "optional": true
2894
+ },
2895
+ "zod": {
2896
+ "optional": true
2897
+ }
2898
+ }
2899
+ },
2900
+ "node_modules/parse-entities": {
2901
+ "version": "4.0.2",
2902
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
2903
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
2904
+ "license": "MIT",
2905
+ "dependencies": {
2906
+ "@types/unist": "^2.0.0",
2907
+ "character-entities-legacy": "^3.0.0",
2908
+ "character-reference-invalid": "^2.0.0",
2909
+ "decode-named-character-reference": "^1.0.0",
2910
+ "is-alphanumerical": "^2.0.0",
2911
+ "is-decimal": "^2.0.0",
2912
+ "is-hexadecimal": "^2.0.0"
2913
+ },
2914
+ "funding": {
2915
+ "type": "github",
2916
+ "url": "https://github.com/sponsors/wooorm"
2917
+ }
2918
+ },
2919
+ "node_modules/parse-entities/node_modules/@types/unist": {
2920
+ "version": "2.0.11",
2921
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
2922
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
2923
+ "license": "MIT"
2924
+ },
2925
+ "node_modules/path-browserify": {
2926
+ "version": "1.0.1",
2927
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
2928
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
2929
+ "license": "MIT"
2930
+ },
2931
+ "node_modules/picomatch": {
2932
+ "version": "4.0.3",
2933
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
2934
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
2935
+ "license": "MIT",
2936
+ "engines": {
2937
+ "node": ">=12"
2938
+ },
2939
+ "funding": {
2940
+ "url": "https://github.com/sponsors/jonschlinkert"
2941
+ }
2942
+ },
2943
+ "node_modules/prebuild-install": {
2944
+ "version": "7.1.3",
2945
+ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
2946
+ "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
2947
+ "license": "MIT",
2948
+ "dependencies": {
2949
+ "detect-libc": "^2.0.0",
2950
+ "expand-template": "^2.0.3",
2951
+ "github-from-package": "0.0.0",
2952
+ "minimist": "^1.2.3",
2953
+ "mkdirp-classic": "^0.5.3",
2954
+ "napi-build-utils": "^2.0.0",
2955
+ "node-abi": "^3.3.0",
2956
+ "pump": "^3.0.0",
2957
+ "rc": "^1.2.7",
2958
+ "simple-get": "^4.0.0",
2959
+ "tar-fs": "^2.0.0",
2960
+ "tunnel-agent": "^0.6.0"
2961
+ },
2962
+ "bin": {
2963
+ "prebuild-install": "bin.js"
2964
+ },
2965
+ "engines": {
2966
+ "node": ">=10"
2967
+ }
2968
+ },
2969
+ "node_modules/property-information": {
2970
+ "version": "7.1.0",
2971
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
2972
+ "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
2973
+ "license": "MIT",
2974
+ "funding": {
2975
+ "type": "github",
2976
+ "url": "https://github.com/sponsors/wooorm"
2977
+ }
2978
+ },
2979
+ "node_modules/proxy-from-env": {
2980
+ "version": "1.1.0",
2981
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
2982
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
2983
+ "license": "MIT"
2984
+ },
2985
+ "node_modules/pump": {
2986
+ "version": "3.0.3",
2987
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
2988
+ "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
2989
+ "license": "MIT",
2990
+ "dependencies": {
2991
+ "end-of-stream": "^1.1.0",
2992
+ "once": "^1.3.1"
2993
+ }
2994
+ },
2995
+ "node_modules/rc": {
2996
+ "version": "1.2.8",
2997
+ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
2998
+ "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
2999
+ "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
3000
+ "dependencies": {
3001
+ "deep-extend": "^0.6.0",
3002
+ "ini": "~1.3.0",
3003
+ "minimist": "^1.2.0",
3004
+ "strip-json-comments": "~2.0.1"
3005
+ },
3006
+ "bin": {
3007
+ "rc": "cli.js"
3008
+ }
3009
+ },
3010
+ "node_modules/react": {
3011
+ "version": "18.3.1",
3012
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
3013
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
3014
+ "license": "MIT",
3015
+ "dependencies": {
3016
+ "loose-envify": "^1.1.0"
3017
+ },
3018
+ "engines": {
3019
+ "node": ">=0.10.0"
3020
+ }
3021
+ },
3022
+ "node_modules/react-dom": {
3023
+ "version": "18.3.1",
3024
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
3025
+ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
3026
+ "license": "MIT",
3027
+ "dependencies": {
3028
+ "loose-envify": "^1.1.0",
3029
+ "scheduler": "^0.23.2"
3030
+ },
3031
+ "peerDependencies": {
3032
+ "react": "^18.3.1"
3033
+ }
3034
+ },
3035
+ "node_modules/react-markdown": {
3036
+ "version": "9.1.0",
3037
+ "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-9.1.0.tgz",
3038
+ "integrity": "sha512-xaijuJB0kzGiUdG7nc2MOMDUDBWPyGAjZtUrow9XxUeua8IqeP+VlIfAZ3bphpcLTnSZXz6z9jcVC/TCwbfgdw==",
3039
+ "license": "MIT",
3040
+ "dependencies": {
3041
+ "@types/hast": "^3.0.0",
3042
+ "@types/mdast": "^4.0.0",
3043
+ "devlop": "^1.0.0",
3044
+ "hast-util-to-jsx-runtime": "^2.0.0",
3045
+ "html-url-attributes": "^3.0.0",
3046
+ "mdast-util-to-hast": "^13.0.0",
3047
+ "remark-parse": "^11.0.0",
3048
+ "remark-rehype": "^11.0.0",
3049
+ "unified": "^11.0.0",
3050
+ "unist-util-visit": "^5.0.0",
3051
+ "vfile": "^6.0.0"
3052
+ },
3053
+ "funding": {
3054
+ "type": "opencollective",
3055
+ "url": "https://opencollective.com/unified"
3056
+ },
3057
+ "peerDependencies": {
3058
+ "@types/react": ">=18",
3059
+ "react": ">=18"
3060
+ }
3061
+ },
3062
+ "node_modules/readable-stream": {
3063
+ "version": "3.6.2",
3064
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
3065
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
3066
+ "license": "MIT",
3067
+ "dependencies": {
3068
+ "inherits": "^2.0.3",
3069
+ "string_decoder": "^1.1.1",
3070
+ "util-deprecate": "^1.0.1"
3071
+ },
3072
+ "engines": {
3073
+ "node": ">= 6"
3074
+ }
3075
+ },
3076
+ "node_modules/remark-parse": {
3077
+ "version": "11.0.0",
3078
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
3079
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
3080
+ "license": "MIT",
3081
+ "dependencies": {
3082
+ "@types/mdast": "^4.0.0",
3083
+ "mdast-util-from-markdown": "^2.0.0",
3084
+ "micromark-util-types": "^2.0.0",
3085
+ "unified": "^11.0.0"
3086
+ },
3087
+ "funding": {
3088
+ "type": "opencollective",
3089
+ "url": "https://opencollective.com/unified"
3090
+ }
3091
+ },
3092
+ "node_modules/remark-rehype": {
3093
+ "version": "11.1.2",
3094
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
3095
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
3096
+ "license": "MIT",
3097
+ "dependencies": {
3098
+ "@types/hast": "^3.0.0",
3099
+ "@types/mdast": "^4.0.0",
3100
+ "mdast-util-to-hast": "^13.0.0",
3101
+ "unified": "^11.0.0",
3102
+ "vfile": "^6.0.0"
3103
+ },
3104
+ "funding": {
3105
+ "type": "opencollective",
3106
+ "url": "https://opencollective.com/unified"
3107
+ }
3108
+ },
3109
+ "node_modules/resolve-pkg-maps": {
3110
+ "version": "1.0.0",
3111
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
3112
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
3113
+ "dev": true,
3114
+ "license": "MIT",
3115
+ "funding": {
3116
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
3117
+ }
3118
+ },
3119
+ "node_modules/run-applescript": {
3120
+ "version": "7.1.0",
3121
+ "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz",
3122
+ "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==",
3123
+ "license": "MIT",
3124
+ "engines": {
3125
+ "node": ">=18"
3126
+ },
3127
+ "funding": {
3128
+ "url": "https://github.com/sponsors/sindresorhus"
3129
+ }
3130
+ },
3131
+ "node_modules/run-async": {
3132
+ "version": "4.0.6",
3133
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-4.0.6.tgz",
3134
+ "integrity": "sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ==",
3135
+ "license": "MIT",
3136
+ "engines": {
3137
+ "node": ">=0.12.0"
3138
+ }
3139
+ },
3140
+ "node_modules/rxjs": {
3141
+ "version": "7.8.2",
3142
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
3143
+ "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
3144
+ "license": "Apache-2.0",
3145
+ "dependencies": {
3146
+ "tslib": "^2.1.0"
3147
+ }
3148
+ },
3149
+ "node_modules/safe-buffer": {
3150
+ "version": "5.2.1",
3151
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
3152
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
3153
+ "funding": [
3154
+ {
3155
+ "type": "github",
3156
+ "url": "https://github.com/sponsors/feross"
3157
+ },
3158
+ {
3159
+ "type": "patreon",
3160
+ "url": "https://www.patreon.com/feross"
3161
+ },
3162
+ {
3163
+ "type": "consulting",
3164
+ "url": "https://feross.org/support"
3165
+ }
3166
+ ],
3167
+ "license": "MIT"
3168
+ },
3169
+ "node_modules/safer-buffer": {
3170
+ "version": "2.1.2",
3171
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
3172
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
3173
+ "license": "MIT"
3174
+ },
3175
+ "node_modules/scheduler": {
3176
+ "version": "0.23.2",
3177
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
3178
+ "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
3179
+ "license": "MIT",
3180
+ "dependencies": {
3181
+ "loose-envify": "^1.1.0"
3182
+ }
3183
+ },
3184
+ "node_modules/semver": {
3185
+ "version": "7.7.2",
3186
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
3187
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
3188
+ "license": "ISC",
3189
+ "bin": {
3190
+ "semver": "bin/semver.js"
3191
+ },
3192
+ "engines": {
3193
+ "node": ">=10"
3194
+ }
3195
+ },
3196
+ "node_modules/signal-exit": {
3197
+ "version": "4.1.0",
3198
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
3199
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
3200
+ "license": "ISC",
3201
+ "engines": {
3202
+ "node": ">=14"
3203
+ },
3204
+ "funding": {
3205
+ "url": "https://github.com/sponsors/isaacs"
3206
+ }
3207
+ },
3208
+ "node_modules/simple-concat": {
3209
+ "version": "1.0.1",
3210
+ "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
3211
+ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
3212
+ "funding": [
3213
+ {
3214
+ "type": "github",
3215
+ "url": "https://github.com/sponsors/feross"
3216
+ },
3217
+ {
3218
+ "type": "patreon",
3219
+ "url": "https://www.patreon.com/feross"
3220
+ },
3221
+ {
3222
+ "type": "consulting",
3223
+ "url": "https://feross.org/support"
3224
+ }
3225
+ ],
3226
+ "license": "MIT"
3227
+ },
3228
+ "node_modules/simple-get": {
3229
+ "version": "4.0.1",
3230
+ "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
3231
+ "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
3232
+ "funding": [
3233
+ {
3234
+ "type": "github",
3235
+ "url": "https://github.com/sponsors/feross"
3236
+ },
3237
+ {
3238
+ "type": "patreon",
3239
+ "url": "https://www.patreon.com/feross"
3240
+ },
3241
+ {
3242
+ "type": "consulting",
3243
+ "url": "https://feross.org/support"
3244
+ }
3245
+ ],
3246
+ "license": "MIT",
3247
+ "dependencies": {
3248
+ "decompress-response": "^6.0.0",
3249
+ "once": "^1.3.1",
3250
+ "simple-concat": "^1.0.0"
3251
+ }
3252
+ },
3253
+ "node_modules/socket.io-client": {
3254
+ "version": "4.8.1",
3255
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.1.tgz",
3256
+ "integrity": "sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==",
3257
+ "license": "MIT",
3258
+ "dependencies": {
3259
+ "@socket.io/component-emitter": "~3.1.0",
3260
+ "debug": "~4.3.2",
3261
+ "engine.io-client": "~6.6.1",
3262
+ "socket.io-parser": "~4.2.4"
3263
+ },
3264
+ "engines": {
3265
+ "node": ">=10.0.0"
3266
+ }
3267
+ },
3268
+ "node_modules/socket.io-client/node_modules/debug": {
3269
+ "version": "4.3.7",
3270
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
3271
+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
3272
+ "license": "MIT",
3273
+ "dependencies": {
3274
+ "ms": "^2.1.3"
3275
+ },
3276
+ "engines": {
3277
+ "node": ">=6.0"
3278
+ },
3279
+ "peerDependenciesMeta": {
3280
+ "supports-color": {
3281
+ "optional": true
3282
+ }
3283
+ }
3284
+ },
3285
+ "node_modules/socket.io-parser": {
3286
+ "version": "4.2.4",
3287
+ "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz",
3288
+ "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==",
3289
+ "license": "MIT",
3290
+ "dependencies": {
3291
+ "@socket.io/component-emitter": "~3.1.0",
3292
+ "debug": "~4.3.1"
3293
+ },
3294
+ "engines": {
3295
+ "node": ">=10.0.0"
3296
+ }
3297
+ },
3298
+ "node_modules/socket.io-parser/node_modules/debug": {
3299
+ "version": "4.3.7",
3300
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
3301
+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
3302
+ "license": "MIT",
3303
+ "dependencies": {
3304
+ "ms": "^2.1.3"
3305
+ },
3306
+ "engines": {
3307
+ "node": ">=6.0"
3308
+ },
3309
+ "peerDependenciesMeta": {
3310
+ "supports-color": {
3311
+ "optional": true
3312
+ }
3313
+ }
3314
+ },
3315
+ "node_modules/space-separated-tokens": {
3316
+ "version": "2.0.2",
3317
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
3318
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
3319
+ "license": "MIT",
3320
+ "funding": {
3321
+ "type": "github",
3322
+ "url": "https://github.com/sponsors/wooorm"
3323
+ }
3324
+ },
3325
+ "node_modules/string_decoder": {
3326
+ "version": "1.3.0",
3327
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
3328
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
3329
+ "license": "MIT",
3330
+ "dependencies": {
3331
+ "safe-buffer": "~5.2.0"
3332
+ }
3333
+ },
3334
+ "node_modules/string-width": {
3335
+ "version": "4.2.3",
3336
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3337
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3338
+ "license": "MIT",
3339
+ "dependencies": {
3340
+ "emoji-regex": "^8.0.0",
3341
+ "is-fullwidth-code-point": "^3.0.0",
3342
+ "strip-ansi": "^6.0.1"
3343
+ },
3344
+ "engines": {
3345
+ "node": ">=8"
3346
+ }
3347
+ },
3348
+ "node_modules/stringify-entities": {
3349
+ "version": "4.0.4",
3350
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
3351
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
3352
+ "license": "MIT",
3353
+ "dependencies": {
3354
+ "character-entities-html4": "^2.0.0",
3355
+ "character-entities-legacy": "^3.0.0"
3356
+ },
3357
+ "funding": {
3358
+ "type": "github",
3359
+ "url": "https://github.com/sponsors/wooorm"
3360
+ }
3361
+ },
3362
+ "node_modules/strip-ansi": {
3363
+ "version": "6.0.1",
3364
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3365
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3366
+ "license": "MIT",
3367
+ "dependencies": {
3368
+ "ansi-regex": "^5.0.1"
3369
+ },
3370
+ "engines": {
3371
+ "node": ">=8"
3372
+ }
3373
+ },
3374
+ "node_modules/strip-json-comments": {
3375
+ "version": "2.0.1",
3376
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
3377
+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
3378
+ "license": "MIT",
3379
+ "engines": {
3380
+ "node": ">=0.10.0"
3381
+ }
3382
+ },
3383
+ "node_modules/style-to-js": {
3384
+ "version": "1.1.17",
3385
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.17.tgz",
3386
+ "integrity": "sha512-xQcBGDxJb6jjFCTzvQtfiPn6YvvP2O8U1MDIPNfJQlWMYfktPy+iGsHE7cssjs7y84d9fQaK4UF3RIJaAHSoYA==",
3387
+ "license": "MIT",
3388
+ "dependencies": {
3389
+ "style-to-object": "1.0.9"
3390
+ }
3391
+ },
3392
+ "node_modules/style-to-object": {
3393
+ "version": "1.0.9",
3394
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.9.tgz",
3395
+ "integrity": "sha512-G4qppLgKu/k6FwRpHiGiKPaPTFcG3g4wNVX/Qsfu+RqQM30E7Tyu/TEgxcL9PNLF5pdRLwQdE3YKKf+KF2Dzlw==",
3396
+ "license": "MIT",
3397
+ "dependencies": {
3398
+ "inline-style-parser": "0.2.4"
3399
+ }
3400
+ },
3401
+ "node_modules/tar-fs": {
3402
+ "version": "2.1.4",
3403
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
3404
+ "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
3405
+ "license": "MIT",
3406
+ "dependencies": {
3407
+ "chownr": "^1.1.1",
3408
+ "mkdirp-classic": "^0.5.2",
3409
+ "pump": "^3.0.0",
3410
+ "tar-stream": "^2.1.4"
3411
+ }
3412
+ },
3413
+ "node_modules/tar-stream": {
3414
+ "version": "2.2.0",
3415
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
3416
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
3417
+ "license": "MIT",
3418
+ "dependencies": {
3419
+ "bl": "^4.0.3",
3420
+ "end-of-stream": "^1.4.1",
3421
+ "fs-constants": "^1.0.0",
3422
+ "inherits": "^2.0.3",
3423
+ "readable-stream": "^3.1.1"
3424
+ },
3425
+ "engines": {
3426
+ "node": ">=6"
3427
+ }
3428
+ },
3429
+ "node_modules/tinyglobby": {
3430
+ "version": "0.2.15",
3431
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
3432
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
3433
+ "license": "MIT",
3434
+ "dependencies": {
3435
+ "fdir": "^6.5.0",
3436
+ "picomatch": "^4.0.3"
3437
+ },
3438
+ "engines": {
3439
+ "node": ">=12.0.0"
3440
+ },
3441
+ "funding": {
3442
+ "url": "https://github.com/sponsors/SuperchupuDev"
3443
+ }
3444
+ },
3445
+ "node_modules/trim-lines": {
3446
+ "version": "3.0.1",
3447
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
3448
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
3449
+ "license": "MIT",
3450
+ "funding": {
3451
+ "type": "github",
3452
+ "url": "https://github.com/sponsors/wooorm"
3453
+ }
3454
+ },
3455
+ "node_modules/trough": {
3456
+ "version": "2.2.0",
3457
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
3458
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
3459
+ "license": "MIT",
3460
+ "funding": {
3461
+ "type": "github",
3462
+ "url": "https://github.com/sponsors/wooorm"
3463
+ }
3464
+ },
3465
+ "node_modules/ts-morph": {
3466
+ "version": "27.0.0",
3467
+ "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-27.0.0.tgz",
3468
+ "integrity": "sha512-xcqelpTR5PCuZMs54qp9DE3t7tPgA2v/P1/qdW4ke5b3Y5liTGTYj6a/twT35EQW/H5okRqp1UOqwNlgg0K0eQ==",
3469
+ "license": "MIT",
3470
+ "dependencies": {
3471
+ "@ts-morph/common": "~0.28.0",
3472
+ "code-block-writer": "^13.0.3"
3473
+ }
3474
+ },
3475
+ "node_modules/tslib": {
3476
+ "version": "2.8.1",
3477
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3478
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3479
+ "license": "0BSD"
3480
+ },
3481
+ "node_modules/tsx": {
3482
+ "version": "4.20.6",
3483
+ "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.20.6.tgz",
3484
+ "integrity": "sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg==",
3485
+ "dev": true,
3486
+ "license": "MIT",
3487
+ "dependencies": {
3488
+ "esbuild": "~0.25.0",
3489
+ "get-tsconfig": "^4.7.5"
3490
+ },
3491
+ "bin": {
3492
+ "tsx": "dist/cli.mjs"
3493
+ },
3494
+ "engines": {
3495
+ "node": ">=18.0.0"
3496
+ },
3497
+ "optionalDependencies": {
3498
+ "fsevents": "~2.3.3"
3499
+ }
3500
+ },
3501
+ "node_modules/tunnel-agent": {
3502
+ "version": "0.6.0",
3503
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
3504
+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
3505
+ "license": "Apache-2.0",
3506
+ "dependencies": {
3507
+ "safe-buffer": "^5.0.1"
3508
+ },
3509
+ "engines": {
3510
+ "node": "*"
3511
+ }
3512
+ },
3513
+ "node_modules/typescript": {
3514
+ "version": "5.9.2",
3515
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz",
3516
+ "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
3517
+ "dev": true,
3518
+ "license": "Apache-2.0",
3519
+ "bin": {
3520
+ "tsc": "bin/tsc",
3521
+ "tsserver": "bin/tsserver"
3522
+ },
3523
+ "engines": {
3524
+ "node": ">=14.17"
3525
+ }
3526
+ },
3527
+ "node_modules/undici-types": {
3528
+ "version": "6.21.0",
3529
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
3530
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
3531
+ "license": "MIT"
3532
+ },
3533
+ "node_modules/unified": {
3534
+ "version": "11.0.5",
3535
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
3536
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
3537
+ "license": "MIT",
3538
+ "dependencies": {
3539
+ "@types/unist": "^3.0.0",
3540
+ "bail": "^2.0.0",
3541
+ "devlop": "^1.0.0",
3542
+ "extend": "^3.0.0",
3543
+ "is-plain-obj": "^4.0.0",
3544
+ "trough": "^2.0.0",
3545
+ "vfile": "^6.0.0"
3546
+ },
3547
+ "funding": {
3548
+ "type": "opencollective",
3549
+ "url": "https://opencollective.com/unified"
3550
+ }
3551
+ },
3552
+ "node_modules/unist-util-is": {
3553
+ "version": "6.0.0",
3554
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz",
3555
+ "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==",
3556
+ "license": "MIT",
3557
+ "dependencies": {
3558
+ "@types/unist": "^3.0.0"
3559
+ },
3560
+ "funding": {
3561
+ "type": "opencollective",
3562
+ "url": "https://opencollective.com/unified"
3563
+ }
3564
+ },
3565
+ "node_modules/unist-util-position": {
3566
+ "version": "5.0.0",
3567
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
3568
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
3569
+ "license": "MIT",
3570
+ "dependencies": {
3571
+ "@types/unist": "^3.0.0"
3572
+ },
3573
+ "funding": {
3574
+ "type": "opencollective",
3575
+ "url": "https://opencollective.com/unified"
3576
+ }
3577
+ },
3578
+ "node_modules/unist-util-stringify-position": {
3579
+ "version": "4.0.0",
3580
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
3581
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
3582
+ "license": "MIT",
3583
+ "dependencies": {
3584
+ "@types/unist": "^3.0.0"
3585
+ },
3586
+ "funding": {
3587
+ "type": "opencollective",
3588
+ "url": "https://opencollective.com/unified"
3589
+ }
3590
+ },
3591
+ "node_modules/unist-util-visit": {
3592
+ "version": "5.0.0",
3593
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
3594
+ "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
3595
+ "license": "MIT",
3596
+ "dependencies": {
3597
+ "@types/unist": "^3.0.0",
3598
+ "unist-util-is": "^6.0.0",
3599
+ "unist-util-visit-parents": "^6.0.0"
3600
+ },
3601
+ "funding": {
3602
+ "type": "opencollective",
3603
+ "url": "https://opencollective.com/unified"
3604
+ }
3605
+ },
3606
+ "node_modules/unist-util-visit-parents": {
3607
+ "version": "6.0.1",
3608
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz",
3609
+ "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==",
3610
+ "license": "MIT",
3611
+ "dependencies": {
3612
+ "@types/unist": "^3.0.0",
3613
+ "unist-util-is": "^6.0.0"
3614
+ },
3615
+ "funding": {
3616
+ "type": "opencollective",
3617
+ "url": "https://opencollective.com/unified"
3618
+ }
3619
+ },
3620
+ "node_modules/util-deprecate": {
3621
+ "version": "1.0.2",
3622
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
3623
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
3624
+ "license": "MIT"
3625
+ },
3626
+ "node_modules/uuid": {
3627
+ "version": "13.0.0",
3628
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz",
3629
+ "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==",
3630
+ "funding": [
3631
+ "https://github.com/sponsors/broofa",
3632
+ "https://github.com/sponsors/ctavan"
3633
+ ],
3634
+ "license": "MIT",
3635
+ "bin": {
3636
+ "uuid": "dist-node/bin/uuid"
3637
+ }
3638
+ },
3639
+ "node_modules/vfile": {
3640
+ "version": "6.0.3",
3641
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
3642
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
3643
+ "license": "MIT",
3644
+ "dependencies": {
3645
+ "@types/unist": "^3.0.0",
3646
+ "vfile-message": "^4.0.0"
3647
+ },
3648
+ "funding": {
3649
+ "type": "opencollective",
3650
+ "url": "https://opencollective.com/unified"
3651
+ }
3652
+ },
3653
+ "node_modules/vfile-message": {
3654
+ "version": "4.0.3",
3655
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
3656
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
3657
+ "license": "MIT",
3658
+ "dependencies": {
3659
+ "@types/unist": "^3.0.0",
3660
+ "unist-util-stringify-position": "^4.0.0"
3661
+ },
3662
+ "funding": {
3663
+ "type": "opencollective",
3664
+ "url": "https://opencollective.com/unified"
3665
+ }
3666
+ },
3667
+ "node_modules/web-streams-polyfill": {
3668
+ "version": "3.3.3",
3669
+ "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
3670
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
3671
+ "license": "MIT",
3672
+ "engines": {
3673
+ "node": ">= 8"
3674
+ }
3675
+ },
3676
+ "node_modules/wrap-ansi": {
3677
+ "version": "6.2.0",
3678
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
3679
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
3680
+ "license": "MIT",
3681
+ "dependencies": {
3682
+ "ansi-styles": "^4.0.0",
3683
+ "string-width": "^4.1.0",
3684
+ "strip-ansi": "^6.0.0"
3685
+ },
3686
+ "engines": {
3687
+ "node": ">=8"
3688
+ }
3689
+ },
3690
+ "node_modules/wrappy": {
3691
+ "version": "1.0.2",
3692
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
3693
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
3694
+ "license": "ISC"
3695
+ },
3696
+ "node_modules/ws": {
3697
+ "version": "8.18.3",
3698
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
3699
+ "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
3700
+ "license": "MIT",
3701
+ "engines": {
3702
+ "node": ">=10.0.0"
3703
+ },
3704
+ "peerDependencies": {
3705
+ "bufferutil": "^4.0.1",
3706
+ "utf-8-validate": ">=5.0.2"
3707
+ },
3708
+ "peerDependenciesMeta": {
3709
+ "bufferutil": {
3710
+ "optional": true
3711
+ },
3712
+ "utf-8-validate": {
3713
+ "optional": true
3714
+ }
3715
+ }
3716
+ },
3717
+ "node_modules/wsl-utils": {
3718
+ "version": "0.1.0",
3719
+ "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz",
3720
+ "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==",
3721
+ "license": "MIT",
3722
+ "dependencies": {
3723
+ "is-wsl": "^3.1.0"
3724
+ },
3725
+ "engines": {
3726
+ "node": ">=18"
3727
+ },
3728
+ "funding": {
3729
+ "url": "https://github.com/sponsors/sindresorhus"
3730
+ }
3731
+ },
3732
+ "node_modules/xmlhttprequest-ssl": {
3733
+ "version": "2.1.2",
3734
+ "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz",
3735
+ "integrity": "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==",
3736
+ "engines": {
3737
+ "node": ">=0.4.0"
3738
+ }
3739
+ },
3740
+ "node_modules/yoctocolors-cjs": {
3741
+ "version": "2.1.3",
3742
+ "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz",
3743
+ "integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==",
3744
+ "license": "MIT",
3745
+ "engines": {
3746
+ "node": ">=18"
3747
+ },
3748
+ "funding": {
3749
+ "url": "https://github.com/sponsors/sindresorhus"
3750
+ }
3751
+ },
3752
+ "node_modules/zod": {
3753
+ "version": "3.25.76",
3754
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
3755
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
3756
+ "license": "MIT",
3757
+ "funding": {
3758
+ "url": "https://github.com/sponsors/colinhacks"
3759
+ }
3760
+ },
3761
+ "node_modules/zod-to-json-schema": {
3762
+ "version": "3.24.6",
3763
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz",
3764
+ "integrity": "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==",
3765
+ "license": "ISC",
3766
+ "peerDependencies": {
3767
+ "zod": "^3.24.1"
3768
+ }
3769
+ },
3770
+ "node_modules/zwitch": {
3771
+ "version": "2.0.4",
3772
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
3773
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
3774
+ "license": "MIT",
3775
+ "funding": {
3776
+ "type": "github",
3777
+ "url": "https://github.com/sponsors/wooorm"
3778
+ }
3779
+ }
3780
+ }
3781
+ }