@phnx-labs/agents-cli 1.18.6 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/README.md +22 -20
  3. package/dist/commands/browser.js +25 -2
  4. package/dist/commands/cloud.js +3 -3
  5. package/dist/commands/computer.d.ts +6 -0
  6. package/dist/commands/computer.js +477 -0
  7. package/dist/commands/doctor.js +19 -17
  8. package/dist/commands/exec.js +37 -59
  9. package/dist/commands/factory.js +12 -5
  10. package/dist/commands/import.js +6 -1
  11. package/dist/commands/mcp.js +9 -4
  12. package/dist/commands/packages.d.ts +3 -0
  13. package/dist/commands/packages.js +20 -12
  14. package/dist/commands/permissions.d.ts +2 -0
  15. package/dist/commands/permissions.js +20 -1
  16. package/dist/commands/plugins.d.ts +2 -0
  17. package/dist/commands/plugins.js +23 -4
  18. package/dist/commands/profiles.js +1 -1
  19. package/dist/commands/pty.js +126 -112
  20. package/dist/commands/pull.js +29 -25
  21. package/dist/commands/repo.js +24 -26
  22. package/dist/commands/routines.js +29 -26
  23. package/dist/commands/secrets.js +66 -73
  24. package/dist/commands/sessions-tail.js +21 -22
  25. package/dist/commands/sessions.js +36 -68
  26. package/dist/commands/setup.js +20 -24
  27. package/dist/commands/teams.js +30 -39
  28. package/dist/commands/versions.js +60 -68
  29. package/dist/commands/worktree.d.ts +20 -0
  30. package/dist/commands/worktree.js +242 -0
  31. package/dist/computer.d.ts +2 -0
  32. package/dist/computer.js +7 -0
  33. package/dist/index.js +70 -26
  34. package/dist/lib/agents.d.ts +4 -1
  35. package/dist/lib/agents.js +23 -5
  36. package/dist/lib/browser/cdp.d.ts +15 -1
  37. package/dist/lib/browser/cdp.js +77 -8
  38. package/dist/lib/browser/chrome.js +17 -24
  39. package/dist/lib/browser/drivers/ssh.d.ts +1 -0
  40. package/dist/lib/browser/drivers/ssh.js +20 -8
  41. package/dist/lib/browser/ipc.js +38 -5
  42. package/dist/lib/browser/profiles.js +34 -2
  43. package/dist/lib/browser/runtime-state.d.ts +1 -2
  44. package/dist/lib/browser/runtime-state.js +11 -3
  45. package/dist/lib/browser/service.d.ts +5 -0
  46. package/dist/lib/browser/service.js +32 -4
  47. package/dist/lib/browser/types.d.ts +1 -1
  48. package/dist/lib/browser/upload.d.ts +2 -0
  49. package/dist/lib/browser/upload.js +34 -0
  50. package/dist/lib/cloud/rush.d.ts +2 -1
  51. package/dist/lib/cloud/rush.js +28 -9
  52. package/dist/lib/computer-rpc.d.ts +24 -0
  53. package/dist/lib/computer-rpc.js +263 -0
  54. package/dist/lib/daemon.js +7 -7
  55. package/dist/lib/exec.d.ts +2 -1
  56. package/dist/lib/exec.js +3 -2
  57. package/dist/lib/fs-atomic.d.ts +18 -0
  58. package/dist/lib/fs-atomic.js +76 -0
  59. package/dist/lib/git.js +2 -4
  60. package/dist/lib/help.d.ts +15 -0
  61. package/dist/lib/help.js +41 -0
  62. package/dist/lib/hooks/match.d.ts +1 -0
  63. package/dist/lib/hooks/match.js +57 -12
  64. package/dist/lib/hooks.d.ts +1 -0
  65. package/dist/lib/hooks.js +27 -10
  66. package/dist/lib/import.d.ts +1 -0
  67. package/dist/lib/import.js +7 -0
  68. package/dist/lib/manifest.js +27 -1
  69. package/dist/lib/mcp.d.ts +14 -0
  70. package/dist/lib/mcp.js +79 -14
  71. package/dist/lib/migrate.js +3 -3
  72. package/dist/lib/models.js +3 -1
  73. package/dist/lib/permissions.d.ts +5 -0
  74. package/dist/lib/permissions.js +35 -0
  75. package/dist/lib/plugin-marketplace.d.ts +3 -1
  76. package/dist/lib/plugin-marketplace.js +36 -1
  77. package/dist/lib/plugins.d.ts +19 -1
  78. package/dist/lib/plugins.js +99 -8
  79. package/dist/lib/redact.d.ts +4 -0
  80. package/dist/lib/redact.js +18 -0
  81. package/dist/lib/registry.d.ts +2 -0
  82. package/dist/lib/registry.js +15 -0
  83. package/dist/lib/sandbox.js +15 -5
  84. package/dist/lib/secrets/bundles.d.ts +7 -12
  85. package/dist/lib/secrets/bundles.js +45 -29
  86. package/dist/lib/secrets/index.js +4 -4
  87. package/dist/lib/session/cloud.d.ts +2 -0
  88. package/dist/lib/session/cloud.js +34 -6
  89. package/dist/lib/session/parse.js +7 -2
  90. package/dist/lib/session/render.d.ts +4 -1
  91. package/dist/lib/session/render.js +81 -35
  92. package/dist/lib/shims.d.ts +5 -2
  93. package/dist/lib/shims.js +29 -7
  94. package/dist/lib/state.d.ts +5 -5
  95. package/dist/lib/state.js +43 -13
  96. package/dist/lib/teams/agents.js +1 -1
  97. package/dist/lib/types.d.ts +4 -3
  98. package/dist/lib/types.js +0 -2
  99. package/dist/lib/versions.js +65 -40
  100. package/dist/lib/workflows.d.ts +7 -0
  101. package/dist/lib/workflows.js +42 -1
  102. package/npm-shrinkwrap.json +3256 -0
  103. package/package.json +32 -26
  104. package/scripts/postinstall.js +8 -2
@@ -0,0 +1,3256 @@
1
+ {
2
+ "name": "@phnx-labs/agents-cli",
3
+ "version": "1.18.6",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@phnx-labs/agents-cli",
9
+ "version": "1.18.6",
10
+ "hasInstallScript": true,
11
+ "license": "MIT",
12
+ "dependencies": {
13
+ "@inquirer/prompts": "7.10.1",
14
+ "@types/proper-lockfile": "4.1.4",
15
+ "@xterm/headless": "6.0.0",
16
+ "@zed-industries/agent-client-protocol": "0.4.5",
17
+ "chalk": "5.6.2",
18
+ "commander": "12.1.0",
19
+ "croner": "9.1.0",
20
+ "diff": "8.0.4",
21
+ "marked": "15.0.12",
22
+ "marked-terminal": "7.3.0",
23
+ "node-pty": "1.1.0",
24
+ "ora": "8.2.0",
25
+ "proper-lockfile": "4.1.2",
26
+ "simple-git": "3.36.0",
27
+ "smol-toml": "1.6.1",
28
+ "yaml": "2.8.3"
29
+ },
30
+ "bin": {
31
+ "ag": "dist/index.js",
32
+ "agents": "dist/index.js",
33
+ "browser": "dist/browser.js"
34
+ },
35
+ "devDependencies": {
36
+ "@types/diff": "6.0.0",
37
+ "@types/marked-terminal": "6.1.1",
38
+ "@types/node": "22.19.10",
39
+ "playwright": "1.59.1",
40
+ "tsx": "4.21.0",
41
+ "typescript": "5.9.3",
42
+ "vitest": "2.1.9"
43
+ },
44
+ "engines": {
45
+ "node": ">=22.5.0",
46
+ "npm": ">=9"
47
+ }
48
+ },
49
+ "node_modules/@colors/colors": {
50
+ "version": "1.5.0",
51
+ "license": "MIT",
52
+ "optional": true,
53
+ "engines": {
54
+ "node": ">=0.1.90"
55
+ }
56
+ },
57
+ "node_modules/@esbuild/aix-ppc64": {
58
+ "version": "0.27.3",
59
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
60
+ "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
61
+ "cpu": [
62
+ "ppc64"
63
+ ],
64
+ "dev": true,
65
+ "license": "MIT",
66
+ "optional": true,
67
+ "os": [
68
+ "aix"
69
+ ],
70
+ "engines": {
71
+ "node": ">=18"
72
+ }
73
+ },
74
+ "node_modules/@esbuild/android-arm": {
75
+ "version": "0.27.3",
76
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
77
+ "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
78
+ "cpu": [
79
+ "arm"
80
+ ],
81
+ "dev": true,
82
+ "license": "MIT",
83
+ "optional": true,
84
+ "os": [
85
+ "android"
86
+ ],
87
+ "engines": {
88
+ "node": ">=18"
89
+ }
90
+ },
91
+ "node_modules/@esbuild/android-arm64": {
92
+ "version": "0.27.3",
93
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
94
+ "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
95
+ "cpu": [
96
+ "arm64"
97
+ ],
98
+ "dev": true,
99
+ "license": "MIT",
100
+ "optional": true,
101
+ "os": [
102
+ "android"
103
+ ],
104
+ "engines": {
105
+ "node": ">=18"
106
+ }
107
+ },
108
+ "node_modules/@esbuild/android-x64": {
109
+ "version": "0.27.3",
110
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
111
+ "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
112
+ "cpu": [
113
+ "x64"
114
+ ],
115
+ "dev": true,
116
+ "license": "MIT",
117
+ "optional": true,
118
+ "os": [
119
+ "android"
120
+ ],
121
+ "engines": {
122
+ "node": ">=18"
123
+ }
124
+ },
125
+ "node_modules/@esbuild/darwin-arm64": {
126
+ "version": "0.27.3",
127
+ "cpu": [
128
+ "arm64"
129
+ ],
130
+ "dev": true,
131
+ "license": "MIT",
132
+ "optional": true,
133
+ "os": [
134
+ "darwin"
135
+ ],
136
+ "engines": {
137
+ "node": ">=18"
138
+ }
139
+ },
140
+ "node_modules/@esbuild/darwin-x64": {
141
+ "version": "0.27.3",
142
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
143
+ "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
144
+ "cpu": [
145
+ "x64"
146
+ ],
147
+ "dev": true,
148
+ "license": "MIT",
149
+ "optional": true,
150
+ "os": [
151
+ "darwin"
152
+ ],
153
+ "engines": {
154
+ "node": ">=18"
155
+ }
156
+ },
157
+ "node_modules/@esbuild/freebsd-arm64": {
158
+ "version": "0.27.3",
159
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
160
+ "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
161
+ "cpu": [
162
+ "arm64"
163
+ ],
164
+ "dev": true,
165
+ "license": "MIT",
166
+ "optional": true,
167
+ "os": [
168
+ "freebsd"
169
+ ],
170
+ "engines": {
171
+ "node": ">=18"
172
+ }
173
+ },
174
+ "node_modules/@esbuild/freebsd-x64": {
175
+ "version": "0.27.3",
176
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
177
+ "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
178
+ "cpu": [
179
+ "x64"
180
+ ],
181
+ "dev": true,
182
+ "license": "MIT",
183
+ "optional": true,
184
+ "os": [
185
+ "freebsd"
186
+ ],
187
+ "engines": {
188
+ "node": ">=18"
189
+ }
190
+ },
191
+ "node_modules/@esbuild/linux-arm": {
192
+ "version": "0.27.3",
193
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
194
+ "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
195
+ "cpu": [
196
+ "arm"
197
+ ],
198
+ "dev": true,
199
+ "license": "MIT",
200
+ "optional": true,
201
+ "os": [
202
+ "linux"
203
+ ],
204
+ "engines": {
205
+ "node": ">=18"
206
+ }
207
+ },
208
+ "node_modules/@esbuild/linux-arm64": {
209
+ "version": "0.27.3",
210
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
211
+ "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
212
+ "cpu": [
213
+ "arm64"
214
+ ],
215
+ "dev": true,
216
+ "license": "MIT",
217
+ "optional": true,
218
+ "os": [
219
+ "linux"
220
+ ],
221
+ "engines": {
222
+ "node": ">=18"
223
+ }
224
+ },
225
+ "node_modules/@esbuild/linux-ia32": {
226
+ "version": "0.27.3",
227
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
228
+ "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
229
+ "cpu": [
230
+ "ia32"
231
+ ],
232
+ "dev": true,
233
+ "license": "MIT",
234
+ "optional": true,
235
+ "os": [
236
+ "linux"
237
+ ],
238
+ "engines": {
239
+ "node": ">=18"
240
+ }
241
+ },
242
+ "node_modules/@esbuild/linux-loong64": {
243
+ "version": "0.27.3",
244
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
245
+ "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
246
+ "cpu": [
247
+ "loong64"
248
+ ],
249
+ "dev": true,
250
+ "license": "MIT",
251
+ "optional": true,
252
+ "os": [
253
+ "linux"
254
+ ],
255
+ "engines": {
256
+ "node": ">=18"
257
+ }
258
+ },
259
+ "node_modules/@esbuild/linux-mips64el": {
260
+ "version": "0.27.3",
261
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
262
+ "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
263
+ "cpu": [
264
+ "mips64el"
265
+ ],
266
+ "dev": true,
267
+ "license": "MIT",
268
+ "optional": true,
269
+ "os": [
270
+ "linux"
271
+ ],
272
+ "engines": {
273
+ "node": ">=18"
274
+ }
275
+ },
276
+ "node_modules/@esbuild/linux-ppc64": {
277
+ "version": "0.27.3",
278
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
279
+ "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
280
+ "cpu": [
281
+ "ppc64"
282
+ ],
283
+ "dev": true,
284
+ "license": "MIT",
285
+ "optional": true,
286
+ "os": [
287
+ "linux"
288
+ ],
289
+ "engines": {
290
+ "node": ">=18"
291
+ }
292
+ },
293
+ "node_modules/@esbuild/linux-riscv64": {
294
+ "version": "0.27.3",
295
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
296
+ "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
297
+ "cpu": [
298
+ "riscv64"
299
+ ],
300
+ "dev": true,
301
+ "license": "MIT",
302
+ "optional": true,
303
+ "os": [
304
+ "linux"
305
+ ],
306
+ "engines": {
307
+ "node": ">=18"
308
+ }
309
+ },
310
+ "node_modules/@esbuild/linux-s390x": {
311
+ "version": "0.27.3",
312
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
313
+ "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
314
+ "cpu": [
315
+ "s390x"
316
+ ],
317
+ "dev": true,
318
+ "license": "MIT",
319
+ "optional": true,
320
+ "os": [
321
+ "linux"
322
+ ],
323
+ "engines": {
324
+ "node": ">=18"
325
+ }
326
+ },
327
+ "node_modules/@esbuild/linux-x64": {
328
+ "version": "0.27.3",
329
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
330
+ "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
331
+ "cpu": [
332
+ "x64"
333
+ ],
334
+ "dev": true,
335
+ "license": "MIT",
336
+ "optional": true,
337
+ "os": [
338
+ "linux"
339
+ ],
340
+ "engines": {
341
+ "node": ">=18"
342
+ }
343
+ },
344
+ "node_modules/@esbuild/netbsd-arm64": {
345
+ "version": "0.27.3",
346
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
347
+ "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
348
+ "cpu": [
349
+ "arm64"
350
+ ],
351
+ "dev": true,
352
+ "license": "MIT",
353
+ "optional": true,
354
+ "os": [
355
+ "netbsd"
356
+ ],
357
+ "engines": {
358
+ "node": ">=18"
359
+ }
360
+ },
361
+ "node_modules/@esbuild/netbsd-x64": {
362
+ "version": "0.27.3",
363
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
364
+ "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
365
+ "cpu": [
366
+ "x64"
367
+ ],
368
+ "dev": true,
369
+ "license": "MIT",
370
+ "optional": true,
371
+ "os": [
372
+ "netbsd"
373
+ ],
374
+ "engines": {
375
+ "node": ">=18"
376
+ }
377
+ },
378
+ "node_modules/@esbuild/openbsd-arm64": {
379
+ "version": "0.27.3",
380
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
381
+ "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
382
+ "cpu": [
383
+ "arm64"
384
+ ],
385
+ "dev": true,
386
+ "license": "MIT",
387
+ "optional": true,
388
+ "os": [
389
+ "openbsd"
390
+ ],
391
+ "engines": {
392
+ "node": ">=18"
393
+ }
394
+ },
395
+ "node_modules/@esbuild/openbsd-x64": {
396
+ "version": "0.27.3",
397
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
398
+ "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
399
+ "cpu": [
400
+ "x64"
401
+ ],
402
+ "dev": true,
403
+ "license": "MIT",
404
+ "optional": true,
405
+ "os": [
406
+ "openbsd"
407
+ ],
408
+ "engines": {
409
+ "node": ">=18"
410
+ }
411
+ },
412
+ "node_modules/@esbuild/openharmony-arm64": {
413
+ "version": "0.27.3",
414
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
415
+ "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
416
+ "cpu": [
417
+ "arm64"
418
+ ],
419
+ "dev": true,
420
+ "license": "MIT",
421
+ "optional": true,
422
+ "os": [
423
+ "openharmony"
424
+ ],
425
+ "engines": {
426
+ "node": ">=18"
427
+ }
428
+ },
429
+ "node_modules/@esbuild/sunos-x64": {
430
+ "version": "0.27.3",
431
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
432
+ "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
433
+ "cpu": [
434
+ "x64"
435
+ ],
436
+ "dev": true,
437
+ "license": "MIT",
438
+ "optional": true,
439
+ "os": [
440
+ "sunos"
441
+ ],
442
+ "engines": {
443
+ "node": ">=18"
444
+ }
445
+ },
446
+ "node_modules/@esbuild/win32-arm64": {
447
+ "version": "0.27.3",
448
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
449
+ "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
450
+ "cpu": [
451
+ "arm64"
452
+ ],
453
+ "dev": true,
454
+ "license": "MIT",
455
+ "optional": true,
456
+ "os": [
457
+ "win32"
458
+ ],
459
+ "engines": {
460
+ "node": ">=18"
461
+ }
462
+ },
463
+ "node_modules/@esbuild/win32-ia32": {
464
+ "version": "0.27.3",
465
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
466
+ "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
467
+ "cpu": [
468
+ "ia32"
469
+ ],
470
+ "dev": true,
471
+ "license": "MIT",
472
+ "optional": true,
473
+ "os": [
474
+ "win32"
475
+ ],
476
+ "engines": {
477
+ "node": ">=18"
478
+ }
479
+ },
480
+ "node_modules/@esbuild/win32-x64": {
481
+ "version": "0.27.3",
482
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
483
+ "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
484
+ "cpu": [
485
+ "x64"
486
+ ],
487
+ "dev": true,
488
+ "license": "MIT",
489
+ "optional": true,
490
+ "os": [
491
+ "win32"
492
+ ],
493
+ "engines": {
494
+ "node": ">=18"
495
+ }
496
+ },
497
+ "node_modules/@inquirer/ansi": {
498
+ "version": "1.0.2",
499
+ "license": "MIT",
500
+ "engines": {
501
+ "node": ">=18"
502
+ }
503
+ },
504
+ "node_modules/@inquirer/checkbox": {
505
+ "version": "4.3.2",
506
+ "license": "MIT",
507
+ "dependencies": {
508
+ "@inquirer/ansi": "^1.0.2",
509
+ "@inquirer/core": "^10.3.2",
510
+ "@inquirer/figures": "^1.0.15",
511
+ "@inquirer/type": "^3.0.10",
512
+ "yoctocolors-cjs": "^2.1.3"
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/confirm": {
527
+ "version": "5.1.21",
528
+ "license": "MIT",
529
+ "dependencies": {
530
+ "@inquirer/core": "^10.3.2",
531
+ "@inquirer/type": "^3.0.10"
532
+ },
533
+ "engines": {
534
+ "node": ">=18"
535
+ },
536
+ "peerDependencies": {
537
+ "@types/node": ">=18"
538
+ },
539
+ "peerDependenciesMeta": {
540
+ "@types/node": {
541
+ "optional": true
542
+ }
543
+ }
544
+ },
545
+ "node_modules/@inquirer/core": {
546
+ "version": "10.3.2",
547
+ "license": "MIT",
548
+ "dependencies": {
549
+ "@inquirer/ansi": "^1.0.2",
550
+ "@inquirer/figures": "^1.0.15",
551
+ "@inquirer/type": "^3.0.10",
552
+ "cli-width": "^4.1.0",
553
+ "mute-stream": "^2.0.0",
554
+ "signal-exit": "^4.1.0",
555
+ "wrap-ansi": "^6.2.0",
556
+ "yoctocolors-cjs": "^2.1.3"
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/core/node_modules/signal-exit": {
571
+ "version": "4.1.0",
572
+ "license": "ISC",
573
+ "engines": {
574
+ "node": ">=14"
575
+ },
576
+ "funding": {
577
+ "url": "https://github.com/sponsors/isaacs"
578
+ }
579
+ },
580
+ "node_modules/@inquirer/editor": {
581
+ "version": "4.2.23",
582
+ "license": "MIT",
583
+ "dependencies": {
584
+ "@inquirer/core": "^10.3.2",
585
+ "@inquirer/external-editor": "^1.0.3",
586
+ "@inquirer/type": "^3.0.10"
587
+ },
588
+ "engines": {
589
+ "node": ">=18"
590
+ },
591
+ "peerDependencies": {
592
+ "@types/node": ">=18"
593
+ },
594
+ "peerDependenciesMeta": {
595
+ "@types/node": {
596
+ "optional": true
597
+ }
598
+ }
599
+ },
600
+ "node_modules/@inquirer/expand": {
601
+ "version": "4.0.23",
602
+ "license": "MIT",
603
+ "dependencies": {
604
+ "@inquirer/core": "^10.3.2",
605
+ "@inquirer/type": "^3.0.10",
606
+ "yoctocolors-cjs": "^2.1.3"
607
+ },
608
+ "engines": {
609
+ "node": ">=18"
610
+ },
611
+ "peerDependencies": {
612
+ "@types/node": ">=18"
613
+ },
614
+ "peerDependenciesMeta": {
615
+ "@types/node": {
616
+ "optional": true
617
+ }
618
+ }
619
+ },
620
+ "node_modules/@inquirer/external-editor": {
621
+ "version": "1.0.3",
622
+ "license": "MIT",
623
+ "dependencies": {
624
+ "chardet": "^2.1.1",
625
+ "iconv-lite": "^0.7.0"
626
+ },
627
+ "engines": {
628
+ "node": ">=18"
629
+ },
630
+ "peerDependencies": {
631
+ "@types/node": ">=18"
632
+ },
633
+ "peerDependenciesMeta": {
634
+ "@types/node": {
635
+ "optional": true
636
+ }
637
+ }
638
+ },
639
+ "node_modules/@inquirer/figures": {
640
+ "version": "1.0.15",
641
+ "license": "MIT",
642
+ "engines": {
643
+ "node": ">=18"
644
+ }
645
+ },
646
+ "node_modules/@inquirer/input": {
647
+ "version": "4.3.1",
648
+ "license": "MIT",
649
+ "dependencies": {
650
+ "@inquirer/core": "^10.3.2",
651
+ "@inquirer/type": "^3.0.10"
652
+ },
653
+ "engines": {
654
+ "node": ">=18"
655
+ },
656
+ "peerDependencies": {
657
+ "@types/node": ">=18"
658
+ },
659
+ "peerDependenciesMeta": {
660
+ "@types/node": {
661
+ "optional": true
662
+ }
663
+ }
664
+ },
665
+ "node_modules/@inquirer/number": {
666
+ "version": "3.0.23",
667
+ "license": "MIT",
668
+ "dependencies": {
669
+ "@inquirer/core": "^10.3.2",
670
+ "@inquirer/type": "^3.0.10"
671
+ },
672
+ "engines": {
673
+ "node": ">=18"
674
+ },
675
+ "peerDependencies": {
676
+ "@types/node": ">=18"
677
+ },
678
+ "peerDependenciesMeta": {
679
+ "@types/node": {
680
+ "optional": true
681
+ }
682
+ }
683
+ },
684
+ "node_modules/@inquirer/password": {
685
+ "version": "4.0.23",
686
+ "license": "MIT",
687
+ "dependencies": {
688
+ "@inquirer/ansi": "^1.0.2",
689
+ "@inquirer/core": "^10.3.2",
690
+ "@inquirer/type": "^3.0.10"
691
+ },
692
+ "engines": {
693
+ "node": ">=18"
694
+ },
695
+ "peerDependencies": {
696
+ "@types/node": ">=18"
697
+ },
698
+ "peerDependenciesMeta": {
699
+ "@types/node": {
700
+ "optional": true
701
+ }
702
+ }
703
+ },
704
+ "node_modules/@inquirer/prompts": {
705
+ "version": "7.10.1",
706
+ "license": "MIT",
707
+ "dependencies": {
708
+ "@inquirer/checkbox": "^4.3.2",
709
+ "@inquirer/confirm": "^5.1.21",
710
+ "@inquirer/editor": "^4.2.23",
711
+ "@inquirer/expand": "^4.0.23",
712
+ "@inquirer/input": "^4.3.1",
713
+ "@inquirer/number": "^3.0.23",
714
+ "@inquirer/password": "^4.0.23",
715
+ "@inquirer/rawlist": "^4.1.11",
716
+ "@inquirer/search": "^3.2.2",
717
+ "@inquirer/select": "^4.4.2"
718
+ },
719
+ "engines": {
720
+ "node": ">=18"
721
+ },
722
+ "peerDependencies": {
723
+ "@types/node": ">=18"
724
+ },
725
+ "peerDependenciesMeta": {
726
+ "@types/node": {
727
+ "optional": true
728
+ }
729
+ }
730
+ },
731
+ "node_modules/@inquirer/rawlist": {
732
+ "version": "4.1.11",
733
+ "license": "MIT",
734
+ "dependencies": {
735
+ "@inquirer/core": "^10.3.2",
736
+ "@inquirer/type": "^3.0.10",
737
+ "yoctocolors-cjs": "^2.1.3"
738
+ },
739
+ "engines": {
740
+ "node": ">=18"
741
+ },
742
+ "peerDependencies": {
743
+ "@types/node": ">=18"
744
+ },
745
+ "peerDependenciesMeta": {
746
+ "@types/node": {
747
+ "optional": true
748
+ }
749
+ }
750
+ },
751
+ "node_modules/@inquirer/search": {
752
+ "version": "3.2.2",
753
+ "license": "MIT",
754
+ "dependencies": {
755
+ "@inquirer/core": "^10.3.2",
756
+ "@inquirer/figures": "^1.0.15",
757
+ "@inquirer/type": "^3.0.10",
758
+ "yoctocolors-cjs": "^2.1.3"
759
+ },
760
+ "engines": {
761
+ "node": ">=18"
762
+ },
763
+ "peerDependencies": {
764
+ "@types/node": ">=18"
765
+ },
766
+ "peerDependenciesMeta": {
767
+ "@types/node": {
768
+ "optional": true
769
+ }
770
+ }
771
+ },
772
+ "node_modules/@inquirer/select": {
773
+ "version": "4.4.2",
774
+ "license": "MIT",
775
+ "dependencies": {
776
+ "@inquirer/ansi": "^1.0.2",
777
+ "@inquirer/core": "^10.3.2",
778
+ "@inquirer/figures": "^1.0.15",
779
+ "@inquirer/type": "^3.0.10",
780
+ "yoctocolors-cjs": "^2.1.3"
781
+ },
782
+ "engines": {
783
+ "node": ">=18"
784
+ },
785
+ "peerDependencies": {
786
+ "@types/node": ">=18"
787
+ },
788
+ "peerDependenciesMeta": {
789
+ "@types/node": {
790
+ "optional": true
791
+ }
792
+ }
793
+ },
794
+ "node_modules/@inquirer/type": {
795
+ "version": "3.0.10",
796
+ "license": "MIT",
797
+ "engines": {
798
+ "node": ">=18"
799
+ },
800
+ "peerDependencies": {
801
+ "@types/node": ">=18"
802
+ },
803
+ "peerDependenciesMeta": {
804
+ "@types/node": {
805
+ "optional": true
806
+ }
807
+ }
808
+ },
809
+ "node_modules/@jridgewell/sourcemap-codec": {
810
+ "version": "1.5.5",
811
+ "dev": true,
812
+ "license": "MIT"
813
+ },
814
+ "node_modules/@kwsites/file-exists": {
815
+ "version": "1.1.1",
816
+ "license": "MIT",
817
+ "dependencies": {
818
+ "debug": "^4.1.1"
819
+ }
820
+ },
821
+ "node_modules/@kwsites/promise-deferred": {
822
+ "version": "1.1.1",
823
+ "license": "MIT"
824
+ },
825
+ "node_modules/@rollup/rollup-android-arm-eabi": {
826
+ "version": "4.57.1",
827
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.57.1.tgz",
828
+ "integrity": "sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==",
829
+ "cpu": [
830
+ "arm"
831
+ ],
832
+ "dev": true,
833
+ "license": "MIT",
834
+ "optional": true,
835
+ "os": [
836
+ "android"
837
+ ]
838
+ },
839
+ "node_modules/@rollup/rollup-android-arm64": {
840
+ "version": "4.57.1",
841
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.57.1.tgz",
842
+ "integrity": "sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==",
843
+ "cpu": [
844
+ "arm64"
845
+ ],
846
+ "dev": true,
847
+ "license": "MIT",
848
+ "optional": true,
849
+ "os": [
850
+ "android"
851
+ ]
852
+ },
853
+ "node_modules/@rollup/rollup-darwin-arm64": {
854
+ "version": "4.57.1",
855
+ "cpu": [
856
+ "arm64"
857
+ ],
858
+ "dev": true,
859
+ "license": "MIT",
860
+ "optional": true,
861
+ "os": [
862
+ "darwin"
863
+ ]
864
+ },
865
+ "node_modules/@rollup/rollup-darwin-x64": {
866
+ "version": "4.57.1",
867
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.57.1.tgz",
868
+ "integrity": "sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==",
869
+ "cpu": [
870
+ "x64"
871
+ ],
872
+ "dev": true,
873
+ "license": "MIT",
874
+ "optional": true,
875
+ "os": [
876
+ "darwin"
877
+ ]
878
+ },
879
+ "node_modules/@rollup/rollup-freebsd-arm64": {
880
+ "version": "4.57.1",
881
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.57.1.tgz",
882
+ "integrity": "sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==",
883
+ "cpu": [
884
+ "arm64"
885
+ ],
886
+ "dev": true,
887
+ "license": "MIT",
888
+ "optional": true,
889
+ "os": [
890
+ "freebsd"
891
+ ]
892
+ },
893
+ "node_modules/@rollup/rollup-freebsd-x64": {
894
+ "version": "4.57.1",
895
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.57.1.tgz",
896
+ "integrity": "sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==",
897
+ "cpu": [
898
+ "x64"
899
+ ],
900
+ "dev": true,
901
+ "license": "MIT",
902
+ "optional": true,
903
+ "os": [
904
+ "freebsd"
905
+ ]
906
+ },
907
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
908
+ "version": "4.57.1",
909
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.57.1.tgz",
910
+ "integrity": "sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==",
911
+ "cpu": [
912
+ "arm"
913
+ ],
914
+ "dev": true,
915
+ "libc": [
916
+ "glibc"
917
+ ],
918
+ "license": "MIT",
919
+ "optional": true,
920
+ "os": [
921
+ "linux"
922
+ ]
923
+ },
924
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
925
+ "version": "4.57.1",
926
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.57.1.tgz",
927
+ "integrity": "sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==",
928
+ "cpu": [
929
+ "arm"
930
+ ],
931
+ "dev": true,
932
+ "libc": [
933
+ "musl"
934
+ ],
935
+ "license": "MIT",
936
+ "optional": true,
937
+ "os": [
938
+ "linux"
939
+ ]
940
+ },
941
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
942
+ "version": "4.57.1",
943
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.57.1.tgz",
944
+ "integrity": "sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==",
945
+ "cpu": [
946
+ "arm64"
947
+ ],
948
+ "dev": true,
949
+ "libc": [
950
+ "glibc"
951
+ ],
952
+ "license": "MIT",
953
+ "optional": true,
954
+ "os": [
955
+ "linux"
956
+ ]
957
+ },
958
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
959
+ "version": "4.57.1",
960
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.57.1.tgz",
961
+ "integrity": "sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==",
962
+ "cpu": [
963
+ "arm64"
964
+ ],
965
+ "dev": true,
966
+ "libc": [
967
+ "musl"
968
+ ],
969
+ "license": "MIT",
970
+ "optional": true,
971
+ "os": [
972
+ "linux"
973
+ ]
974
+ },
975
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
976
+ "version": "4.57.1",
977
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.57.1.tgz",
978
+ "integrity": "sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==",
979
+ "cpu": [
980
+ "loong64"
981
+ ],
982
+ "dev": true,
983
+ "libc": [
984
+ "glibc"
985
+ ],
986
+ "license": "MIT",
987
+ "optional": true,
988
+ "os": [
989
+ "linux"
990
+ ]
991
+ },
992
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
993
+ "version": "4.57.1",
994
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.57.1.tgz",
995
+ "integrity": "sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==",
996
+ "cpu": [
997
+ "loong64"
998
+ ],
999
+ "dev": true,
1000
+ "libc": [
1001
+ "musl"
1002
+ ],
1003
+ "license": "MIT",
1004
+ "optional": true,
1005
+ "os": [
1006
+ "linux"
1007
+ ]
1008
+ },
1009
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1010
+ "version": "4.57.1",
1011
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.57.1.tgz",
1012
+ "integrity": "sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==",
1013
+ "cpu": [
1014
+ "ppc64"
1015
+ ],
1016
+ "dev": true,
1017
+ "libc": [
1018
+ "glibc"
1019
+ ],
1020
+ "license": "MIT",
1021
+ "optional": true,
1022
+ "os": [
1023
+ "linux"
1024
+ ]
1025
+ },
1026
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
1027
+ "version": "4.57.1",
1028
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.57.1.tgz",
1029
+ "integrity": "sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==",
1030
+ "cpu": [
1031
+ "ppc64"
1032
+ ],
1033
+ "dev": true,
1034
+ "libc": [
1035
+ "musl"
1036
+ ],
1037
+ "license": "MIT",
1038
+ "optional": true,
1039
+ "os": [
1040
+ "linux"
1041
+ ]
1042
+ },
1043
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1044
+ "version": "4.57.1",
1045
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.57.1.tgz",
1046
+ "integrity": "sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==",
1047
+ "cpu": [
1048
+ "riscv64"
1049
+ ],
1050
+ "dev": true,
1051
+ "libc": [
1052
+ "glibc"
1053
+ ],
1054
+ "license": "MIT",
1055
+ "optional": true,
1056
+ "os": [
1057
+ "linux"
1058
+ ]
1059
+ },
1060
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1061
+ "version": "4.57.1",
1062
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.57.1.tgz",
1063
+ "integrity": "sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==",
1064
+ "cpu": [
1065
+ "riscv64"
1066
+ ],
1067
+ "dev": true,
1068
+ "libc": [
1069
+ "musl"
1070
+ ],
1071
+ "license": "MIT",
1072
+ "optional": true,
1073
+ "os": [
1074
+ "linux"
1075
+ ]
1076
+ },
1077
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1078
+ "version": "4.57.1",
1079
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.57.1.tgz",
1080
+ "integrity": "sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==",
1081
+ "cpu": [
1082
+ "s390x"
1083
+ ],
1084
+ "dev": true,
1085
+ "libc": [
1086
+ "glibc"
1087
+ ],
1088
+ "license": "MIT",
1089
+ "optional": true,
1090
+ "os": [
1091
+ "linux"
1092
+ ]
1093
+ },
1094
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1095
+ "version": "4.57.1",
1096
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.57.1.tgz",
1097
+ "integrity": "sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==",
1098
+ "cpu": [
1099
+ "x64"
1100
+ ],
1101
+ "dev": true,
1102
+ "libc": [
1103
+ "glibc"
1104
+ ],
1105
+ "license": "MIT",
1106
+ "optional": true,
1107
+ "os": [
1108
+ "linux"
1109
+ ]
1110
+ },
1111
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1112
+ "version": "4.57.1",
1113
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.57.1.tgz",
1114
+ "integrity": "sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==",
1115
+ "cpu": [
1116
+ "x64"
1117
+ ],
1118
+ "dev": true,
1119
+ "libc": [
1120
+ "musl"
1121
+ ],
1122
+ "license": "MIT",
1123
+ "optional": true,
1124
+ "os": [
1125
+ "linux"
1126
+ ]
1127
+ },
1128
+ "node_modules/@rollup/rollup-openbsd-x64": {
1129
+ "version": "4.57.1",
1130
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.57.1.tgz",
1131
+ "integrity": "sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==",
1132
+ "cpu": [
1133
+ "x64"
1134
+ ],
1135
+ "dev": true,
1136
+ "license": "MIT",
1137
+ "optional": true,
1138
+ "os": [
1139
+ "openbsd"
1140
+ ]
1141
+ },
1142
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1143
+ "version": "4.57.1",
1144
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.57.1.tgz",
1145
+ "integrity": "sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==",
1146
+ "cpu": [
1147
+ "arm64"
1148
+ ],
1149
+ "dev": true,
1150
+ "license": "MIT",
1151
+ "optional": true,
1152
+ "os": [
1153
+ "openharmony"
1154
+ ]
1155
+ },
1156
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1157
+ "version": "4.57.1",
1158
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.57.1.tgz",
1159
+ "integrity": "sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==",
1160
+ "cpu": [
1161
+ "arm64"
1162
+ ],
1163
+ "dev": true,
1164
+ "license": "MIT",
1165
+ "optional": true,
1166
+ "os": [
1167
+ "win32"
1168
+ ]
1169
+ },
1170
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1171
+ "version": "4.57.1",
1172
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.57.1.tgz",
1173
+ "integrity": "sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==",
1174
+ "cpu": [
1175
+ "ia32"
1176
+ ],
1177
+ "dev": true,
1178
+ "license": "MIT",
1179
+ "optional": true,
1180
+ "os": [
1181
+ "win32"
1182
+ ]
1183
+ },
1184
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1185
+ "version": "4.57.1",
1186
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.57.1.tgz",
1187
+ "integrity": "sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==",
1188
+ "cpu": [
1189
+ "x64"
1190
+ ],
1191
+ "dev": true,
1192
+ "license": "MIT",
1193
+ "optional": true,
1194
+ "os": [
1195
+ "win32"
1196
+ ]
1197
+ },
1198
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1199
+ "version": "4.57.1",
1200
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.57.1.tgz",
1201
+ "integrity": "sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==",
1202
+ "cpu": [
1203
+ "x64"
1204
+ ],
1205
+ "dev": true,
1206
+ "license": "MIT",
1207
+ "optional": true,
1208
+ "os": [
1209
+ "win32"
1210
+ ]
1211
+ },
1212
+ "node_modules/@simple-git/args-pathspec": {
1213
+ "version": "1.0.3",
1214
+ "license": "MIT"
1215
+ },
1216
+ "node_modules/@simple-git/argv-parser": {
1217
+ "version": "1.1.1",
1218
+ "license": "MIT",
1219
+ "dependencies": {
1220
+ "@simple-git/args-pathspec": "^1.0.3"
1221
+ }
1222
+ },
1223
+ "node_modules/@sindresorhus/is": {
1224
+ "version": "4.6.0",
1225
+ "license": "MIT",
1226
+ "engines": {
1227
+ "node": ">=10"
1228
+ },
1229
+ "funding": {
1230
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
1231
+ }
1232
+ },
1233
+ "node_modules/@types/cardinal": {
1234
+ "version": "2.1.1",
1235
+ "dev": true,
1236
+ "license": "MIT"
1237
+ },
1238
+ "node_modules/@types/diff": {
1239
+ "version": "6.0.0",
1240
+ "dev": true,
1241
+ "license": "MIT"
1242
+ },
1243
+ "node_modules/@types/estree": {
1244
+ "version": "1.0.8",
1245
+ "dev": true,
1246
+ "license": "MIT"
1247
+ },
1248
+ "node_modules/@types/marked-terminal": {
1249
+ "version": "6.1.1",
1250
+ "dev": true,
1251
+ "license": "MIT",
1252
+ "dependencies": {
1253
+ "@types/cardinal": "^2.1",
1254
+ "@types/node": "*",
1255
+ "chalk": "^5.3.0",
1256
+ "marked": ">=6.0.0 <12"
1257
+ }
1258
+ },
1259
+ "node_modules/@types/marked-terminal/node_modules/marked": {
1260
+ "version": "11.2.0",
1261
+ "dev": true,
1262
+ "license": "MIT",
1263
+ "bin": {
1264
+ "marked": "bin/marked.js"
1265
+ },
1266
+ "engines": {
1267
+ "node": ">= 18"
1268
+ }
1269
+ },
1270
+ "node_modules/@types/node": {
1271
+ "version": "22.19.10",
1272
+ "devOptional": true,
1273
+ "license": "MIT",
1274
+ "dependencies": {
1275
+ "undici-types": "~6.21.0"
1276
+ }
1277
+ },
1278
+ "node_modules/@types/proper-lockfile": {
1279
+ "version": "4.1.4",
1280
+ "license": "MIT",
1281
+ "dependencies": {
1282
+ "@types/retry": "*"
1283
+ }
1284
+ },
1285
+ "node_modules/@types/retry": {
1286
+ "version": "0.12.5",
1287
+ "license": "MIT"
1288
+ },
1289
+ "node_modules/@vitest/expect": {
1290
+ "version": "2.1.9",
1291
+ "dev": true,
1292
+ "license": "MIT",
1293
+ "dependencies": {
1294
+ "@vitest/spy": "2.1.9",
1295
+ "@vitest/utils": "2.1.9",
1296
+ "chai": "^5.1.2",
1297
+ "tinyrainbow": "^1.2.0"
1298
+ },
1299
+ "funding": {
1300
+ "url": "https://opencollective.com/vitest"
1301
+ }
1302
+ },
1303
+ "node_modules/@vitest/mocker": {
1304
+ "version": "2.1.9",
1305
+ "dev": true,
1306
+ "license": "MIT",
1307
+ "dependencies": {
1308
+ "@vitest/spy": "2.1.9",
1309
+ "estree-walker": "^3.0.3",
1310
+ "magic-string": "^0.30.12"
1311
+ },
1312
+ "funding": {
1313
+ "url": "https://opencollective.com/vitest"
1314
+ },
1315
+ "peerDependencies": {
1316
+ "msw": "^2.4.9",
1317
+ "vite": "^5.0.0"
1318
+ },
1319
+ "peerDependenciesMeta": {
1320
+ "msw": {
1321
+ "optional": true
1322
+ },
1323
+ "vite": {
1324
+ "optional": true
1325
+ }
1326
+ }
1327
+ },
1328
+ "node_modules/@vitest/pretty-format": {
1329
+ "version": "2.1.9",
1330
+ "dev": true,
1331
+ "license": "MIT",
1332
+ "dependencies": {
1333
+ "tinyrainbow": "^1.2.0"
1334
+ },
1335
+ "funding": {
1336
+ "url": "https://opencollective.com/vitest"
1337
+ }
1338
+ },
1339
+ "node_modules/@vitest/runner": {
1340
+ "version": "2.1.9",
1341
+ "dev": true,
1342
+ "license": "MIT",
1343
+ "dependencies": {
1344
+ "@vitest/utils": "2.1.9",
1345
+ "pathe": "^1.1.2"
1346
+ },
1347
+ "funding": {
1348
+ "url": "https://opencollective.com/vitest"
1349
+ }
1350
+ },
1351
+ "node_modules/@vitest/snapshot": {
1352
+ "version": "2.1.9",
1353
+ "dev": true,
1354
+ "license": "MIT",
1355
+ "dependencies": {
1356
+ "@vitest/pretty-format": "2.1.9",
1357
+ "magic-string": "^0.30.12",
1358
+ "pathe": "^1.1.2"
1359
+ },
1360
+ "funding": {
1361
+ "url": "https://opencollective.com/vitest"
1362
+ }
1363
+ },
1364
+ "node_modules/@vitest/spy": {
1365
+ "version": "2.1.9",
1366
+ "dev": true,
1367
+ "license": "MIT",
1368
+ "dependencies": {
1369
+ "tinyspy": "^3.0.2"
1370
+ },
1371
+ "funding": {
1372
+ "url": "https://opencollective.com/vitest"
1373
+ }
1374
+ },
1375
+ "node_modules/@vitest/utils": {
1376
+ "version": "2.1.9",
1377
+ "dev": true,
1378
+ "license": "MIT",
1379
+ "dependencies": {
1380
+ "@vitest/pretty-format": "2.1.9",
1381
+ "loupe": "^3.1.2",
1382
+ "tinyrainbow": "^1.2.0"
1383
+ },
1384
+ "funding": {
1385
+ "url": "https://opencollective.com/vitest"
1386
+ }
1387
+ },
1388
+ "node_modules/@xterm/headless": {
1389
+ "version": "6.0.0",
1390
+ "license": "MIT",
1391
+ "workspaces": [
1392
+ "addons/*"
1393
+ ]
1394
+ },
1395
+ "node_modules/@zed-industries/agent-client-protocol": {
1396
+ "version": "0.4.5",
1397
+ "license": "Apache-2.0",
1398
+ "dependencies": {
1399
+ "zod": "^3.0.0"
1400
+ }
1401
+ },
1402
+ "node_modules/@zed-industries/agent-client-protocol/node_modules/zod": {
1403
+ "version": "3.25.76",
1404
+ "license": "MIT",
1405
+ "funding": {
1406
+ "url": "https://github.com/sponsors/colinhacks"
1407
+ }
1408
+ },
1409
+ "node_modules/ansi-escapes": {
1410
+ "version": "7.3.0",
1411
+ "license": "MIT",
1412
+ "dependencies": {
1413
+ "environment": "^1.0.0"
1414
+ },
1415
+ "engines": {
1416
+ "node": ">=18"
1417
+ },
1418
+ "funding": {
1419
+ "url": "https://github.com/sponsors/sindresorhus"
1420
+ }
1421
+ },
1422
+ "node_modules/ansi-regex": {
1423
+ "version": "6.2.2",
1424
+ "license": "MIT",
1425
+ "engines": {
1426
+ "node": ">=12"
1427
+ },
1428
+ "funding": {
1429
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
1430
+ }
1431
+ },
1432
+ "node_modules/ansi-styles": {
1433
+ "version": "4.3.0",
1434
+ "license": "MIT",
1435
+ "dependencies": {
1436
+ "color-convert": "^2.0.1"
1437
+ },
1438
+ "engines": {
1439
+ "node": ">=8"
1440
+ },
1441
+ "funding": {
1442
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1443
+ }
1444
+ },
1445
+ "node_modules/any-promise": {
1446
+ "version": "1.3.0",
1447
+ "license": "MIT"
1448
+ },
1449
+ "node_modules/assertion-error": {
1450
+ "version": "2.0.1",
1451
+ "dev": true,
1452
+ "license": "MIT",
1453
+ "engines": {
1454
+ "node": ">=12"
1455
+ }
1456
+ },
1457
+ "node_modules/cac": {
1458
+ "version": "6.7.14",
1459
+ "dev": true,
1460
+ "license": "MIT",
1461
+ "engines": {
1462
+ "node": ">=8"
1463
+ }
1464
+ },
1465
+ "node_modules/chai": {
1466
+ "version": "5.3.3",
1467
+ "dev": true,
1468
+ "license": "MIT",
1469
+ "dependencies": {
1470
+ "assertion-error": "^2.0.1",
1471
+ "check-error": "^2.1.1",
1472
+ "deep-eql": "^5.0.1",
1473
+ "loupe": "^3.1.0",
1474
+ "pathval": "^2.0.0"
1475
+ },
1476
+ "engines": {
1477
+ "node": ">=18"
1478
+ }
1479
+ },
1480
+ "node_modules/chalk": {
1481
+ "version": "5.6.2",
1482
+ "license": "MIT",
1483
+ "engines": {
1484
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1485
+ },
1486
+ "funding": {
1487
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1488
+ }
1489
+ },
1490
+ "node_modules/char-regex": {
1491
+ "version": "1.0.2",
1492
+ "license": "MIT",
1493
+ "engines": {
1494
+ "node": ">=10"
1495
+ }
1496
+ },
1497
+ "node_modules/chardet": {
1498
+ "version": "2.1.1",
1499
+ "license": "MIT"
1500
+ },
1501
+ "node_modules/check-error": {
1502
+ "version": "2.1.3",
1503
+ "dev": true,
1504
+ "license": "MIT",
1505
+ "engines": {
1506
+ "node": ">= 16"
1507
+ }
1508
+ },
1509
+ "node_modules/cli-cursor": {
1510
+ "version": "5.0.0",
1511
+ "license": "MIT",
1512
+ "dependencies": {
1513
+ "restore-cursor": "^5.0.0"
1514
+ },
1515
+ "engines": {
1516
+ "node": ">=18"
1517
+ },
1518
+ "funding": {
1519
+ "url": "https://github.com/sponsors/sindresorhus"
1520
+ }
1521
+ },
1522
+ "node_modules/cli-highlight": {
1523
+ "version": "2.1.11",
1524
+ "license": "ISC",
1525
+ "dependencies": {
1526
+ "chalk": "^4.0.0",
1527
+ "highlight.js": "^10.7.1",
1528
+ "mz": "^2.4.0",
1529
+ "parse5": "^5.1.1",
1530
+ "parse5-htmlparser2-tree-adapter": "^6.0.0",
1531
+ "yargs": "^16.0.0"
1532
+ },
1533
+ "bin": {
1534
+ "highlight": "bin/highlight"
1535
+ },
1536
+ "engines": {
1537
+ "node": ">=8.0.0",
1538
+ "npm": ">=5.0.0"
1539
+ }
1540
+ },
1541
+ "node_modules/cli-highlight/node_modules/chalk": {
1542
+ "version": "4.1.2",
1543
+ "license": "MIT",
1544
+ "dependencies": {
1545
+ "ansi-styles": "^4.1.0",
1546
+ "supports-color": "^7.1.0"
1547
+ },
1548
+ "engines": {
1549
+ "node": ">=10"
1550
+ },
1551
+ "funding": {
1552
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1553
+ }
1554
+ },
1555
+ "node_modules/cli-spinners": {
1556
+ "version": "2.9.2",
1557
+ "license": "MIT",
1558
+ "engines": {
1559
+ "node": ">=6"
1560
+ },
1561
+ "funding": {
1562
+ "url": "https://github.com/sponsors/sindresorhus"
1563
+ }
1564
+ },
1565
+ "node_modules/cli-table3": {
1566
+ "version": "0.6.5",
1567
+ "license": "MIT",
1568
+ "dependencies": {
1569
+ "string-width": "^4.2.0"
1570
+ },
1571
+ "engines": {
1572
+ "node": "10.* || >= 12.*"
1573
+ },
1574
+ "optionalDependencies": {
1575
+ "@colors/colors": "1.5.0"
1576
+ }
1577
+ },
1578
+ "node_modules/cli-table3/node_modules/string-width": {
1579
+ "version": "4.2.3",
1580
+ "license": "MIT",
1581
+ "dependencies": {
1582
+ "emoji-regex": "^8.0.0",
1583
+ "is-fullwidth-code-point": "^3.0.0",
1584
+ "strip-ansi": "^6.0.1"
1585
+ },
1586
+ "engines": {
1587
+ "node": ">=8"
1588
+ }
1589
+ },
1590
+ "node_modules/cli-table3/node_modules/string-width/node_modules/emoji-regex": {
1591
+ "version": "8.0.0",
1592
+ "license": "MIT"
1593
+ },
1594
+ "node_modules/cli-table3/node_modules/string-width/node_modules/strip-ansi": {
1595
+ "version": "6.0.1",
1596
+ "license": "MIT",
1597
+ "dependencies": {
1598
+ "ansi-regex": "^5.0.1"
1599
+ },
1600
+ "engines": {
1601
+ "node": ">=8"
1602
+ }
1603
+ },
1604
+ "node_modules/cli-table3/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex": {
1605
+ "version": "5.0.1",
1606
+ "license": "MIT",
1607
+ "engines": {
1608
+ "node": ">=8"
1609
+ }
1610
+ },
1611
+ "node_modules/cli-width": {
1612
+ "version": "4.1.0",
1613
+ "license": "ISC",
1614
+ "engines": {
1615
+ "node": ">= 12"
1616
+ }
1617
+ },
1618
+ "node_modules/cliui": {
1619
+ "version": "7.0.4",
1620
+ "license": "ISC",
1621
+ "dependencies": {
1622
+ "string-width": "^4.2.0",
1623
+ "strip-ansi": "^6.0.0",
1624
+ "wrap-ansi": "^7.0.0"
1625
+ }
1626
+ },
1627
+ "node_modules/cliui/node_modules/string-width": {
1628
+ "version": "4.2.3",
1629
+ "license": "MIT",
1630
+ "dependencies": {
1631
+ "emoji-regex": "^8.0.0",
1632
+ "is-fullwidth-code-point": "^3.0.0",
1633
+ "strip-ansi": "^6.0.1"
1634
+ },
1635
+ "engines": {
1636
+ "node": ">=8"
1637
+ }
1638
+ },
1639
+ "node_modules/cliui/node_modules/string-width/node_modules/emoji-regex": {
1640
+ "version": "8.0.0",
1641
+ "license": "MIT"
1642
+ },
1643
+ "node_modules/cliui/node_modules/strip-ansi": {
1644
+ "version": "6.0.1",
1645
+ "license": "MIT",
1646
+ "dependencies": {
1647
+ "ansi-regex": "^5.0.1"
1648
+ },
1649
+ "engines": {
1650
+ "node": ">=8"
1651
+ }
1652
+ },
1653
+ "node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex": {
1654
+ "version": "5.0.1",
1655
+ "license": "MIT",
1656
+ "engines": {
1657
+ "node": ">=8"
1658
+ }
1659
+ },
1660
+ "node_modules/cliui/node_modules/wrap-ansi": {
1661
+ "version": "7.0.0",
1662
+ "license": "MIT",
1663
+ "dependencies": {
1664
+ "ansi-styles": "^4.0.0",
1665
+ "string-width": "^4.1.0",
1666
+ "strip-ansi": "^6.0.0"
1667
+ },
1668
+ "engines": {
1669
+ "node": ">=10"
1670
+ },
1671
+ "funding": {
1672
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
1673
+ }
1674
+ },
1675
+ "node_modules/color-convert": {
1676
+ "version": "2.0.1",
1677
+ "license": "MIT",
1678
+ "dependencies": {
1679
+ "color-name": "~1.1.4"
1680
+ },
1681
+ "engines": {
1682
+ "node": ">=7.0.0"
1683
+ }
1684
+ },
1685
+ "node_modules/color-name": {
1686
+ "version": "1.1.4",
1687
+ "license": "MIT"
1688
+ },
1689
+ "node_modules/commander": {
1690
+ "version": "12.1.0",
1691
+ "license": "MIT",
1692
+ "engines": {
1693
+ "node": ">=18"
1694
+ }
1695
+ },
1696
+ "node_modules/croner": {
1697
+ "version": "9.1.0",
1698
+ "license": "MIT",
1699
+ "engines": {
1700
+ "node": ">=18.0"
1701
+ }
1702
+ },
1703
+ "node_modules/debug": {
1704
+ "version": "4.4.3",
1705
+ "license": "MIT",
1706
+ "dependencies": {
1707
+ "ms": "^2.1.3"
1708
+ },
1709
+ "engines": {
1710
+ "node": ">=6.0"
1711
+ },
1712
+ "peerDependenciesMeta": {
1713
+ "supports-color": {
1714
+ "optional": true
1715
+ }
1716
+ }
1717
+ },
1718
+ "node_modules/deep-eql": {
1719
+ "version": "5.0.2",
1720
+ "dev": true,
1721
+ "license": "MIT",
1722
+ "engines": {
1723
+ "node": ">=6"
1724
+ }
1725
+ },
1726
+ "node_modules/diff": {
1727
+ "version": "8.0.4",
1728
+ "license": "BSD-3-Clause",
1729
+ "engines": {
1730
+ "node": ">=0.3.1"
1731
+ }
1732
+ },
1733
+ "node_modules/emoji-regex": {
1734
+ "version": "10.6.0",
1735
+ "license": "MIT"
1736
+ },
1737
+ "node_modules/emojilib": {
1738
+ "version": "2.4.0",
1739
+ "license": "MIT"
1740
+ },
1741
+ "node_modules/environment": {
1742
+ "version": "1.1.0",
1743
+ "license": "MIT",
1744
+ "engines": {
1745
+ "node": ">=18"
1746
+ },
1747
+ "funding": {
1748
+ "url": "https://github.com/sponsors/sindresorhus"
1749
+ }
1750
+ },
1751
+ "node_modules/es-module-lexer": {
1752
+ "version": "1.7.0",
1753
+ "dev": true,
1754
+ "license": "MIT"
1755
+ },
1756
+ "node_modules/esbuild": {
1757
+ "version": "0.27.3",
1758
+ "dev": true,
1759
+ "hasInstallScript": true,
1760
+ "license": "MIT",
1761
+ "bin": {
1762
+ "esbuild": "bin/esbuild"
1763
+ },
1764
+ "engines": {
1765
+ "node": ">=18"
1766
+ },
1767
+ "optionalDependencies": {
1768
+ "@esbuild/aix-ppc64": "0.27.3",
1769
+ "@esbuild/android-arm": "0.27.3",
1770
+ "@esbuild/android-arm64": "0.27.3",
1771
+ "@esbuild/android-x64": "0.27.3",
1772
+ "@esbuild/darwin-arm64": "0.27.3",
1773
+ "@esbuild/darwin-x64": "0.27.3",
1774
+ "@esbuild/freebsd-arm64": "0.27.3",
1775
+ "@esbuild/freebsd-x64": "0.27.3",
1776
+ "@esbuild/linux-arm": "0.27.3",
1777
+ "@esbuild/linux-arm64": "0.27.3",
1778
+ "@esbuild/linux-ia32": "0.27.3",
1779
+ "@esbuild/linux-loong64": "0.27.3",
1780
+ "@esbuild/linux-mips64el": "0.27.3",
1781
+ "@esbuild/linux-ppc64": "0.27.3",
1782
+ "@esbuild/linux-riscv64": "0.27.3",
1783
+ "@esbuild/linux-s390x": "0.27.3",
1784
+ "@esbuild/linux-x64": "0.27.3",
1785
+ "@esbuild/netbsd-arm64": "0.27.3",
1786
+ "@esbuild/netbsd-x64": "0.27.3",
1787
+ "@esbuild/openbsd-arm64": "0.27.3",
1788
+ "@esbuild/openbsd-x64": "0.27.3",
1789
+ "@esbuild/openharmony-arm64": "0.27.3",
1790
+ "@esbuild/sunos-x64": "0.27.3",
1791
+ "@esbuild/win32-arm64": "0.27.3",
1792
+ "@esbuild/win32-ia32": "0.27.3",
1793
+ "@esbuild/win32-x64": "0.27.3"
1794
+ }
1795
+ },
1796
+ "node_modules/escalade": {
1797
+ "version": "3.2.0",
1798
+ "license": "MIT",
1799
+ "engines": {
1800
+ "node": ">=6"
1801
+ }
1802
+ },
1803
+ "node_modules/estree-walker": {
1804
+ "version": "3.0.3",
1805
+ "dev": true,
1806
+ "license": "MIT",
1807
+ "dependencies": {
1808
+ "@types/estree": "^1.0.0"
1809
+ }
1810
+ },
1811
+ "node_modules/expect-type": {
1812
+ "version": "1.3.0",
1813
+ "dev": true,
1814
+ "license": "Apache-2.0",
1815
+ "engines": {
1816
+ "node": ">=12.0.0"
1817
+ }
1818
+ },
1819
+ "node_modules/fsevents": {
1820
+ "version": "2.3.2",
1821
+ "dev": true,
1822
+ "license": "MIT",
1823
+ "optional": true,
1824
+ "os": [
1825
+ "darwin"
1826
+ ],
1827
+ "engines": {
1828
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1829
+ }
1830
+ },
1831
+ "node_modules/get-caller-file": {
1832
+ "version": "2.0.5",
1833
+ "license": "ISC",
1834
+ "engines": {
1835
+ "node": "6.* || 8.* || >= 10.*"
1836
+ }
1837
+ },
1838
+ "node_modules/get-east-asian-width": {
1839
+ "version": "1.4.0",
1840
+ "license": "MIT",
1841
+ "engines": {
1842
+ "node": ">=18"
1843
+ },
1844
+ "funding": {
1845
+ "url": "https://github.com/sponsors/sindresorhus"
1846
+ }
1847
+ },
1848
+ "node_modules/get-tsconfig": {
1849
+ "version": "4.13.6",
1850
+ "dev": true,
1851
+ "license": "MIT",
1852
+ "dependencies": {
1853
+ "resolve-pkg-maps": "^1.0.0"
1854
+ },
1855
+ "funding": {
1856
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
1857
+ }
1858
+ },
1859
+ "node_modules/graceful-fs": {
1860
+ "version": "4.2.11",
1861
+ "license": "ISC"
1862
+ },
1863
+ "node_modules/has-flag": {
1864
+ "version": "4.0.0",
1865
+ "license": "MIT",
1866
+ "engines": {
1867
+ "node": ">=8"
1868
+ }
1869
+ },
1870
+ "node_modules/highlight.js": {
1871
+ "version": "10.7.3",
1872
+ "license": "BSD-3-Clause",
1873
+ "engines": {
1874
+ "node": "*"
1875
+ }
1876
+ },
1877
+ "node_modules/iconv-lite": {
1878
+ "version": "0.7.2",
1879
+ "license": "MIT",
1880
+ "dependencies": {
1881
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1882
+ },
1883
+ "engines": {
1884
+ "node": ">=0.10.0"
1885
+ },
1886
+ "funding": {
1887
+ "type": "opencollective",
1888
+ "url": "https://opencollective.com/express"
1889
+ }
1890
+ },
1891
+ "node_modules/is-fullwidth-code-point": {
1892
+ "version": "3.0.0",
1893
+ "license": "MIT",
1894
+ "engines": {
1895
+ "node": ">=8"
1896
+ }
1897
+ },
1898
+ "node_modules/is-interactive": {
1899
+ "version": "2.0.0",
1900
+ "license": "MIT",
1901
+ "engines": {
1902
+ "node": ">=12"
1903
+ },
1904
+ "funding": {
1905
+ "url": "https://github.com/sponsors/sindresorhus"
1906
+ }
1907
+ },
1908
+ "node_modules/is-unicode-supported": {
1909
+ "version": "2.1.0",
1910
+ "license": "MIT",
1911
+ "engines": {
1912
+ "node": ">=18"
1913
+ },
1914
+ "funding": {
1915
+ "url": "https://github.com/sponsors/sindresorhus"
1916
+ }
1917
+ },
1918
+ "node_modules/log-symbols": {
1919
+ "version": "6.0.0",
1920
+ "license": "MIT",
1921
+ "dependencies": {
1922
+ "chalk": "^5.3.0",
1923
+ "is-unicode-supported": "^1.3.0"
1924
+ },
1925
+ "engines": {
1926
+ "node": ">=18"
1927
+ },
1928
+ "funding": {
1929
+ "url": "https://github.com/sponsors/sindresorhus"
1930
+ }
1931
+ },
1932
+ "node_modules/log-symbols/node_modules/is-unicode-supported": {
1933
+ "version": "1.3.0",
1934
+ "license": "MIT",
1935
+ "engines": {
1936
+ "node": ">=12"
1937
+ },
1938
+ "funding": {
1939
+ "url": "https://github.com/sponsors/sindresorhus"
1940
+ }
1941
+ },
1942
+ "node_modules/loupe": {
1943
+ "version": "3.2.1",
1944
+ "dev": true,
1945
+ "license": "MIT"
1946
+ },
1947
+ "node_modules/magic-string": {
1948
+ "version": "0.30.21",
1949
+ "dev": true,
1950
+ "license": "MIT",
1951
+ "dependencies": {
1952
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1953
+ }
1954
+ },
1955
+ "node_modules/marked": {
1956
+ "version": "15.0.12",
1957
+ "license": "MIT",
1958
+ "bin": {
1959
+ "marked": "bin/marked.js"
1960
+ },
1961
+ "engines": {
1962
+ "node": ">= 18"
1963
+ }
1964
+ },
1965
+ "node_modules/marked-terminal": {
1966
+ "version": "7.3.0",
1967
+ "license": "MIT",
1968
+ "dependencies": {
1969
+ "ansi-escapes": "^7.0.0",
1970
+ "ansi-regex": "^6.1.0",
1971
+ "chalk": "^5.4.1",
1972
+ "cli-highlight": "^2.1.11",
1973
+ "cli-table3": "^0.6.5",
1974
+ "node-emoji": "^2.2.0",
1975
+ "supports-hyperlinks": "^3.1.0"
1976
+ },
1977
+ "engines": {
1978
+ "node": ">=16.0.0"
1979
+ },
1980
+ "peerDependencies": {
1981
+ "marked": ">=1 <16"
1982
+ }
1983
+ },
1984
+ "node_modules/mimic-function": {
1985
+ "version": "5.0.1",
1986
+ "license": "MIT",
1987
+ "engines": {
1988
+ "node": ">=18"
1989
+ },
1990
+ "funding": {
1991
+ "url": "https://github.com/sponsors/sindresorhus"
1992
+ }
1993
+ },
1994
+ "node_modules/ms": {
1995
+ "version": "2.1.3",
1996
+ "license": "MIT"
1997
+ },
1998
+ "node_modules/mute-stream": {
1999
+ "version": "2.0.0",
2000
+ "license": "ISC",
2001
+ "engines": {
2002
+ "node": "^18.17.0 || >=20.5.0"
2003
+ }
2004
+ },
2005
+ "node_modules/mz": {
2006
+ "version": "2.7.0",
2007
+ "license": "MIT",
2008
+ "dependencies": {
2009
+ "any-promise": "^1.0.0",
2010
+ "object-assign": "^4.0.1",
2011
+ "thenify-all": "^1.0.0"
2012
+ }
2013
+ },
2014
+ "node_modules/nanoid": {
2015
+ "version": "3.3.11",
2016
+ "dev": true,
2017
+ "funding": [
2018
+ {
2019
+ "type": "github",
2020
+ "url": "https://github.com/sponsors/ai"
2021
+ }
2022
+ ],
2023
+ "license": "MIT",
2024
+ "bin": {
2025
+ "nanoid": "bin/nanoid.cjs"
2026
+ },
2027
+ "engines": {
2028
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2029
+ }
2030
+ },
2031
+ "node_modules/node-addon-api": {
2032
+ "version": "7.1.1",
2033
+ "license": "MIT"
2034
+ },
2035
+ "node_modules/node-emoji": {
2036
+ "version": "2.2.0",
2037
+ "license": "MIT",
2038
+ "dependencies": {
2039
+ "@sindresorhus/is": "^4.6.0",
2040
+ "char-regex": "^1.0.2",
2041
+ "emojilib": "^2.4.0",
2042
+ "skin-tone": "^2.0.0"
2043
+ },
2044
+ "engines": {
2045
+ "node": ">=18"
2046
+ }
2047
+ },
2048
+ "node_modules/node-pty": {
2049
+ "version": "1.1.0",
2050
+ "hasInstallScript": true,
2051
+ "license": "MIT",
2052
+ "dependencies": {
2053
+ "node-addon-api": "^7.1.0"
2054
+ }
2055
+ },
2056
+ "node_modules/object-assign": {
2057
+ "version": "4.1.1",
2058
+ "license": "MIT",
2059
+ "engines": {
2060
+ "node": ">=0.10.0"
2061
+ }
2062
+ },
2063
+ "node_modules/onetime": {
2064
+ "version": "7.0.0",
2065
+ "license": "MIT",
2066
+ "dependencies": {
2067
+ "mimic-function": "^5.0.0"
2068
+ },
2069
+ "engines": {
2070
+ "node": ">=18"
2071
+ },
2072
+ "funding": {
2073
+ "url": "https://github.com/sponsors/sindresorhus"
2074
+ }
2075
+ },
2076
+ "node_modules/ora": {
2077
+ "version": "8.2.0",
2078
+ "license": "MIT",
2079
+ "dependencies": {
2080
+ "chalk": "^5.3.0",
2081
+ "cli-cursor": "^5.0.0",
2082
+ "cli-spinners": "^2.9.2",
2083
+ "is-interactive": "^2.0.0",
2084
+ "is-unicode-supported": "^2.0.0",
2085
+ "log-symbols": "^6.0.0",
2086
+ "stdin-discarder": "^0.2.2",
2087
+ "string-width": "^7.2.0",
2088
+ "strip-ansi": "^7.1.0"
2089
+ },
2090
+ "engines": {
2091
+ "node": ">=18"
2092
+ },
2093
+ "funding": {
2094
+ "url": "https://github.com/sponsors/sindresorhus"
2095
+ }
2096
+ },
2097
+ "node_modules/parse5": {
2098
+ "version": "5.1.1",
2099
+ "license": "MIT"
2100
+ },
2101
+ "node_modules/parse5-htmlparser2-tree-adapter": {
2102
+ "version": "6.0.1",
2103
+ "license": "MIT",
2104
+ "dependencies": {
2105
+ "parse5": "^6.0.1"
2106
+ }
2107
+ },
2108
+ "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
2109
+ "version": "6.0.1",
2110
+ "license": "MIT"
2111
+ },
2112
+ "node_modules/pathe": {
2113
+ "version": "1.1.2",
2114
+ "dev": true,
2115
+ "license": "MIT"
2116
+ },
2117
+ "node_modules/pathval": {
2118
+ "version": "2.0.1",
2119
+ "dev": true,
2120
+ "license": "MIT",
2121
+ "engines": {
2122
+ "node": ">= 14.16"
2123
+ }
2124
+ },
2125
+ "node_modules/picocolors": {
2126
+ "version": "1.1.1",
2127
+ "dev": true,
2128
+ "license": "ISC"
2129
+ },
2130
+ "node_modules/playwright": {
2131
+ "version": "1.59.1",
2132
+ "dev": true,
2133
+ "license": "Apache-2.0",
2134
+ "dependencies": {
2135
+ "playwright-core": "1.59.1"
2136
+ },
2137
+ "bin": {
2138
+ "playwright": "cli.js"
2139
+ },
2140
+ "engines": {
2141
+ "node": ">=18"
2142
+ },
2143
+ "optionalDependencies": {
2144
+ "fsevents": "2.3.2"
2145
+ }
2146
+ },
2147
+ "node_modules/playwright-core": {
2148
+ "version": "1.59.1",
2149
+ "dev": true,
2150
+ "license": "Apache-2.0",
2151
+ "bin": {
2152
+ "playwright-core": "cli.js"
2153
+ },
2154
+ "engines": {
2155
+ "node": ">=18"
2156
+ }
2157
+ },
2158
+ "node_modules/postcss": {
2159
+ "version": "8.5.6",
2160
+ "dev": true,
2161
+ "funding": [
2162
+ {
2163
+ "type": "opencollective",
2164
+ "url": "https://opencollective.com/postcss/"
2165
+ },
2166
+ {
2167
+ "type": "tidelift",
2168
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2169
+ },
2170
+ {
2171
+ "type": "github",
2172
+ "url": "https://github.com/sponsors/ai"
2173
+ }
2174
+ ],
2175
+ "license": "MIT",
2176
+ "dependencies": {
2177
+ "nanoid": "^3.3.11",
2178
+ "picocolors": "^1.1.1",
2179
+ "source-map-js": "^1.2.1"
2180
+ },
2181
+ "engines": {
2182
+ "node": "^10 || ^12 || >=14"
2183
+ }
2184
+ },
2185
+ "node_modules/proper-lockfile": {
2186
+ "version": "4.1.2",
2187
+ "license": "MIT",
2188
+ "dependencies": {
2189
+ "graceful-fs": "^4.2.4",
2190
+ "retry": "^0.12.0",
2191
+ "signal-exit": "^3.0.2"
2192
+ }
2193
+ },
2194
+ "node_modules/require-directory": {
2195
+ "version": "2.1.1",
2196
+ "license": "MIT",
2197
+ "engines": {
2198
+ "node": ">=0.10.0"
2199
+ }
2200
+ },
2201
+ "node_modules/resolve-pkg-maps": {
2202
+ "version": "1.0.0",
2203
+ "dev": true,
2204
+ "license": "MIT",
2205
+ "funding": {
2206
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
2207
+ }
2208
+ },
2209
+ "node_modules/restore-cursor": {
2210
+ "version": "5.1.0",
2211
+ "license": "MIT",
2212
+ "dependencies": {
2213
+ "onetime": "^7.0.0",
2214
+ "signal-exit": "^4.1.0"
2215
+ },
2216
+ "engines": {
2217
+ "node": ">=18"
2218
+ },
2219
+ "funding": {
2220
+ "url": "https://github.com/sponsors/sindresorhus"
2221
+ }
2222
+ },
2223
+ "node_modules/restore-cursor/node_modules/signal-exit": {
2224
+ "version": "4.1.0",
2225
+ "license": "ISC",
2226
+ "engines": {
2227
+ "node": ">=14"
2228
+ },
2229
+ "funding": {
2230
+ "url": "https://github.com/sponsors/isaacs"
2231
+ }
2232
+ },
2233
+ "node_modules/retry": {
2234
+ "version": "0.12.0",
2235
+ "license": "MIT",
2236
+ "engines": {
2237
+ "node": ">= 4"
2238
+ }
2239
+ },
2240
+ "node_modules/rollup": {
2241
+ "version": "4.57.1",
2242
+ "dev": true,
2243
+ "license": "MIT",
2244
+ "dependencies": {
2245
+ "@types/estree": "1.0.8"
2246
+ },
2247
+ "bin": {
2248
+ "rollup": "dist/bin/rollup"
2249
+ },
2250
+ "engines": {
2251
+ "node": ">=18.0.0",
2252
+ "npm": ">=8.0.0"
2253
+ },
2254
+ "optionalDependencies": {
2255
+ "@rollup/rollup-android-arm-eabi": "4.57.1",
2256
+ "@rollup/rollup-android-arm64": "4.57.1",
2257
+ "@rollup/rollup-darwin-arm64": "4.57.1",
2258
+ "@rollup/rollup-darwin-x64": "4.57.1",
2259
+ "@rollup/rollup-freebsd-arm64": "4.57.1",
2260
+ "@rollup/rollup-freebsd-x64": "4.57.1",
2261
+ "@rollup/rollup-linux-arm-gnueabihf": "4.57.1",
2262
+ "@rollup/rollup-linux-arm-musleabihf": "4.57.1",
2263
+ "@rollup/rollup-linux-arm64-gnu": "4.57.1",
2264
+ "@rollup/rollup-linux-arm64-musl": "4.57.1",
2265
+ "@rollup/rollup-linux-loong64-gnu": "4.57.1",
2266
+ "@rollup/rollup-linux-loong64-musl": "4.57.1",
2267
+ "@rollup/rollup-linux-ppc64-gnu": "4.57.1",
2268
+ "@rollup/rollup-linux-ppc64-musl": "4.57.1",
2269
+ "@rollup/rollup-linux-riscv64-gnu": "4.57.1",
2270
+ "@rollup/rollup-linux-riscv64-musl": "4.57.1",
2271
+ "@rollup/rollup-linux-s390x-gnu": "4.57.1",
2272
+ "@rollup/rollup-linux-x64-gnu": "4.57.1",
2273
+ "@rollup/rollup-linux-x64-musl": "4.57.1",
2274
+ "@rollup/rollup-openbsd-x64": "4.57.1",
2275
+ "@rollup/rollup-openharmony-arm64": "4.57.1",
2276
+ "@rollup/rollup-win32-arm64-msvc": "4.57.1",
2277
+ "@rollup/rollup-win32-ia32-msvc": "4.57.1",
2278
+ "@rollup/rollup-win32-x64-gnu": "4.57.1",
2279
+ "@rollup/rollup-win32-x64-msvc": "4.57.1",
2280
+ "fsevents": "~2.3.2"
2281
+ }
2282
+ },
2283
+ "node_modules/rollup/node_modules/fsevents": {
2284
+ "version": "2.3.3",
2285
+ "dev": true,
2286
+ "license": "MIT",
2287
+ "optional": true,
2288
+ "os": [
2289
+ "darwin"
2290
+ ],
2291
+ "engines": {
2292
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2293
+ }
2294
+ },
2295
+ "node_modules/safer-buffer": {
2296
+ "version": "2.1.2",
2297
+ "license": "MIT"
2298
+ },
2299
+ "node_modules/siginfo": {
2300
+ "version": "2.0.0",
2301
+ "dev": true,
2302
+ "license": "ISC"
2303
+ },
2304
+ "node_modules/signal-exit": {
2305
+ "version": "3.0.7",
2306
+ "license": "ISC"
2307
+ },
2308
+ "node_modules/simple-git": {
2309
+ "version": "3.36.0",
2310
+ "license": "MIT",
2311
+ "dependencies": {
2312
+ "@kwsites/file-exists": "^1.1.1",
2313
+ "@kwsites/promise-deferred": "^1.1.1",
2314
+ "@simple-git/args-pathspec": "^1.0.3",
2315
+ "@simple-git/argv-parser": "^1.1.0",
2316
+ "debug": "^4.4.0"
2317
+ },
2318
+ "funding": {
2319
+ "type": "github",
2320
+ "url": "https://github.com/steveukx/git-js?sponsor=1"
2321
+ }
2322
+ },
2323
+ "node_modules/skin-tone": {
2324
+ "version": "2.0.0",
2325
+ "license": "MIT",
2326
+ "dependencies": {
2327
+ "unicode-emoji-modifier-base": "^1.0.0"
2328
+ },
2329
+ "engines": {
2330
+ "node": ">=8"
2331
+ }
2332
+ },
2333
+ "node_modules/smol-toml": {
2334
+ "version": "1.6.1",
2335
+ "license": "BSD-3-Clause",
2336
+ "engines": {
2337
+ "node": ">= 18"
2338
+ },
2339
+ "funding": {
2340
+ "url": "https://github.com/sponsors/cyyynthia"
2341
+ }
2342
+ },
2343
+ "node_modules/source-map-js": {
2344
+ "version": "1.2.1",
2345
+ "dev": true,
2346
+ "license": "BSD-3-Clause",
2347
+ "engines": {
2348
+ "node": ">=0.10.0"
2349
+ }
2350
+ },
2351
+ "node_modules/stackback": {
2352
+ "version": "0.0.2",
2353
+ "dev": true,
2354
+ "license": "MIT"
2355
+ },
2356
+ "node_modules/std-env": {
2357
+ "version": "3.10.0",
2358
+ "dev": true,
2359
+ "license": "MIT"
2360
+ },
2361
+ "node_modules/stdin-discarder": {
2362
+ "version": "0.2.2",
2363
+ "license": "MIT",
2364
+ "engines": {
2365
+ "node": ">=18"
2366
+ },
2367
+ "funding": {
2368
+ "url": "https://github.com/sponsors/sindresorhus"
2369
+ }
2370
+ },
2371
+ "node_modules/string-width": {
2372
+ "version": "7.2.0",
2373
+ "license": "MIT",
2374
+ "dependencies": {
2375
+ "emoji-regex": "^10.3.0",
2376
+ "get-east-asian-width": "^1.0.0",
2377
+ "strip-ansi": "^7.1.0"
2378
+ },
2379
+ "engines": {
2380
+ "node": ">=18"
2381
+ },
2382
+ "funding": {
2383
+ "url": "https://github.com/sponsors/sindresorhus"
2384
+ }
2385
+ },
2386
+ "node_modules/strip-ansi": {
2387
+ "version": "7.1.2",
2388
+ "license": "MIT",
2389
+ "dependencies": {
2390
+ "ansi-regex": "^6.0.1"
2391
+ },
2392
+ "engines": {
2393
+ "node": ">=12"
2394
+ },
2395
+ "funding": {
2396
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2397
+ }
2398
+ },
2399
+ "node_modules/supports-color": {
2400
+ "version": "7.2.0",
2401
+ "license": "MIT",
2402
+ "dependencies": {
2403
+ "has-flag": "^4.0.0"
2404
+ },
2405
+ "engines": {
2406
+ "node": ">=8"
2407
+ }
2408
+ },
2409
+ "node_modules/supports-hyperlinks": {
2410
+ "version": "3.2.0",
2411
+ "license": "MIT",
2412
+ "dependencies": {
2413
+ "has-flag": "^4.0.0",
2414
+ "supports-color": "^7.0.0"
2415
+ },
2416
+ "engines": {
2417
+ "node": ">=14.18"
2418
+ },
2419
+ "funding": {
2420
+ "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
2421
+ }
2422
+ },
2423
+ "node_modules/thenify": {
2424
+ "version": "3.3.1",
2425
+ "license": "MIT",
2426
+ "dependencies": {
2427
+ "any-promise": "^1.0.0"
2428
+ }
2429
+ },
2430
+ "node_modules/thenify-all": {
2431
+ "version": "1.6.0",
2432
+ "license": "MIT",
2433
+ "dependencies": {
2434
+ "thenify": ">= 3.1.0 < 4"
2435
+ },
2436
+ "engines": {
2437
+ "node": ">=0.8"
2438
+ }
2439
+ },
2440
+ "node_modules/tinybench": {
2441
+ "version": "2.9.0",
2442
+ "dev": true,
2443
+ "license": "MIT"
2444
+ },
2445
+ "node_modules/tinyexec": {
2446
+ "version": "0.3.2",
2447
+ "dev": true,
2448
+ "license": "MIT"
2449
+ },
2450
+ "node_modules/tinypool": {
2451
+ "version": "1.1.1",
2452
+ "dev": true,
2453
+ "license": "MIT",
2454
+ "engines": {
2455
+ "node": "^18.0.0 || >=20.0.0"
2456
+ }
2457
+ },
2458
+ "node_modules/tinyrainbow": {
2459
+ "version": "1.2.0",
2460
+ "dev": true,
2461
+ "license": "MIT",
2462
+ "engines": {
2463
+ "node": ">=14.0.0"
2464
+ }
2465
+ },
2466
+ "node_modules/tinyspy": {
2467
+ "version": "3.0.2",
2468
+ "dev": true,
2469
+ "license": "MIT",
2470
+ "engines": {
2471
+ "node": ">=14.0.0"
2472
+ }
2473
+ },
2474
+ "node_modules/tsx": {
2475
+ "version": "4.21.0",
2476
+ "dev": true,
2477
+ "license": "MIT",
2478
+ "dependencies": {
2479
+ "esbuild": "~0.27.0",
2480
+ "get-tsconfig": "^4.7.5"
2481
+ },
2482
+ "bin": {
2483
+ "tsx": "dist/cli.mjs"
2484
+ },
2485
+ "engines": {
2486
+ "node": ">=18.0.0"
2487
+ },
2488
+ "optionalDependencies": {
2489
+ "fsevents": "~2.3.3"
2490
+ }
2491
+ },
2492
+ "node_modules/tsx/node_modules/fsevents": {
2493
+ "version": "2.3.3",
2494
+ "dev": true,
2495
+ "license": "MIT",
2496
+ "optional": true,
2497
+ "os": [
2498
+ "darwin"
2499
+ ],
2500
+ "engines": {
2501
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2502
+ }
2503
+ },
2504
+ "node_modules/typescript": {
2505
+ "version": "5.9.3",
2506
+ "dev": true,
2507
+ "license": "Apache-2.0",
2508
+ "bin": {
2509
+ "tsc": "bin/tsc",
2510
+ "tsserver": "bin/tsserver"
2511
+ },
2512
+ "engines": {
2513
+ "node": ">=14.17"
2514
+ }
2515
+ },
2516
+ "node_modules/undici-types": {
2517
+ "version": "6.21.0",
2518
+ "devOptional": true,
2519
+ "license": "MIT"
2520
+ },
2521
+ "node_modules/unicode-emoji-modifier-base": {
2522
+ "version": "1.0.0",
2523
+ "license": "MIT",
2524
+ "engines": {
2525
+ "node": ">=4"
2526
+ }
2527
+ },
2528
+ "node_modules/vite": {
2529
+ "version": "5.4.21",
2530
+ "dev": true,
2531
+ "license": "MIT",
2532
+ "dependencies": {
2533
+ "esbuild": "^0.21.3",
2534
+ "postcss": "^8.4.43",
2535
+ "rollup": "^4.20.0"
2536
+ },
2537
+ "bin": {
2538
+ "vite": "bin/vite.js"
2539
+ },
2540
+ "engines": {
2541
+ "node": "^18.0.0 || >=20.0.0"
2542
+ },
2543
+ "funding": {
2544
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2545
+ },
2546
+ "optionalDependencies": {
2547
+ "fsevents": "~2.3.3"
2548
+ },
2549
+ "peerDependencies": {
2550
+ "@types/node": "^18.0.0 || >=20.0.0",
2551
+ "less": "*",
2552
+ "lightningcss": "^1.21.0",
2553
+ "sass": "*",
2554
+ "sass-embedded": "*",
2555
+ "stylus": "*",
2556
+ "sugarss": "*",
2557
+ "terser": "^5.4.0"
2558
+ },
2559
+ "peerDependenciesMeta": {
2560
+ "@types/node": {
2561
+ "optional": true
2562
+ },
2563
+ "less": {
2564
+ "optional": true
2565
+ },
2566
+ "lightningcss": {
2567
+ "optional": true
2568
+ },
2569
+ "sass": {
2570
+ "optional": true
2571
+ },
2572
+ "sass-embedded": {
2573
+ "optional": true
2574
+ },
2575
+ "stylus": {
2576
+ "optional": true
2577
+ },
2578
+ "sugarss": {
2579
+ "optional": true
2580
+ },
2581
+ "terser": {
2582
+ "optional": true
2583
+ }
2584
+ }
2585
+ },
2586
+ "node_modules/vite-node": {
2587
+ "version": "2.1.9",
2588
+ "dev": true,
2589
+ "license": "MIT",
2590
+ "dependencies": {
2591
+ "cac": "^6.7.14",
2592
+ "debug": "^4.3.7",
2593
+ "es-module-lexer": "^1.5.4",
2594
+ "pathe": "^1.1.2",
2595
+ "vite": "^5.0.0"
2596
+ },
2597
+ "bin": {
2598
+ "vite-node": "vite-node.mjs"
2599
+ },
2600
+ "engines": {
2601
+ "node": "^18.0.0 || >=20.0.0"
2602
+ },
2603
+ "funding": {
2604
+ "url": "https://opencollective.com/vitest"
2605
+ }
2606
+ },
2607
+ "node_modules/vite/node_modules/@esbuild/aix-ppc64": {
2608
+ "version": "0.21.5",
2609
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
2610
+ "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
2611
+ "cpu": [
2612
+ "ppc64"
2613
+ ],
2614
+ "dev": true,
2615
+ "license": "MIT",
2616
+ "optional": true,
2617
+ "os": [
2618
+ "aix"
2619
+ ],
2620
+ "engines": {
2621
+ "node": ">=12"
2622
+ }
2623
+ },
2624
+ "node_modules/vite/node_modules/@esbuild/android-arm": {
2625
+ "version": "0.21.5",
2626
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
2627
+ "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
2628
+ "cpu": [
2629
+ "arm"
2630
+ ],
2631
+ "dev": true,
2632
+ "license": "MIT",
2633
+ "optional": true,
2634
+ "os": [
2635
+ "android"
2636
+ ],
2637
+ "engines": {
2638
+ "node": ">=12"
2639
+ }
2640
+ },
2641
+ "node_modules/vite/node_modules/@esbuild/android-arm64": {
2642
+ "version": "0.21.5",
2643
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
2644
+ "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
2645
+ "cpu": [
2646
+ "arm64"
2647
+ ],
2648
+ "dev": true,
2649
+ "license": "MIT",
2650
+ "optional": true,
2651
+ "os": [
2652
+ "android"
2653
+ ],
2654
+ "engines": {
2655
+ "node": ">=12"
2656
+ }
2657
+ },
2658
+ "node_modules/vite/node_modules/@esbuild/android-x64": {
2659
+ "version": "0.21.5",
2660
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
2661
+ "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
2662
+ "cpu": [
2663
+ "x64"
2664
+ ],
2665
+ "dev": true,
2666
+ "license": "MIT",
2667
+ "optional": true,
2668
+ "os": [
2669
+ "android"
2670
+ ],
2671
+ "engines": {
2672
+ "node": ">=12"
2673
+ }
2674
+ },
2675
+ "node_modules/vite/node_modules/@esbuild/darwin-x64": {
2676
+ "version": "0.21.5",
2677
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
2678
+ "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
2679
+ "cpu": [
2680
+ "x64"
2681
+ ],
2682
+ "dev": true,
2683
+ "license": "MIT",
2684
+ "optional": true,
2685
+ "os": [
2686
+ "darwin"
2687
+ ],
2688
+ "engines": {
2689
+ "node": ">=12"
2690
+ }
2691
+ },
2692
+ "node_modules/vite/node_modules/@esbuild/freebsd-arm64": {
2693
+ "version": "0.21.5",
2694
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
2695
+ "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
2696
+ "cpu": [
2697
+ "arm64"
2698
+ ],
2699
+ "dev": true,
2700
+ "license": "MIT",
2701
+ "optional": true,
2702
+ "os": [
2703
+ "freebsd"
2704
+ ],
2705
+ "engines": {
2706
+ "node": ">=12"
2707
+ }
2708
+ },
2709
+ "node_modules/vite/node_modules/@esbuild/freebsd-x64": {
2710
+ "version": "0.21.5",
2711
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
2712
+ "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
2713
+ "cpu": [
2714
+ "x64"
2715
+ ],
2716
+ "dev": true,
2717
+ "license": "MIT",
2718
+ "optional": true,
2719
+ "os": [
2720
+ "freebsd"
2721
+ ],
2722
+ "engines": {
2723
+ "node": ">=12"
2724
+ }
2725
+ },
2726
+ "node_modules/vite/node_modules/@esbuild/linux-arm": {
2727
+ "version": "0.21.5",
2728
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
2729
+ "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
2730
+ "cpu": [
2731
+ "arm"
2732
+ ],
2733
+ "dev": true,
2734
+ "license": "MIT",
2735
+ "optional": true,
2736
+ "os": [
2737
+ "linux"
2738
+ ],
2739
+ "engines": {
2740
+ "node": ">=12"
2741
+ }
2742
+ },
2743
+ "node_modules/vite/node_modules/@esbuild/linux-arm64": {
2744
+ "version": "0.21.5",
2745
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
2746
+ "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
2747
+ "cpu": [
2748
+ "arm64"
2749
+ ],
2750
+ "dev": true,
2751
+ "license": "MIT",
2752
+ "optional": true,
2753
+ "os": [
2754
+ "linux"
2755
+ ],
2756
+ "engines": {
2757
+ "node": ">=12"
2758
+ }
2759
+ },
2760
+ "node_modules/vite/node_modules/@esbuild/linux-ia32": {
2761
+ "version": "0.21.5",
2762
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
2763
+ "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
2764
+ "cpu": [
2765
+ "ia32"
2766
+ ],
2767
+ "dev": true,
2768
+ "license": "MIT",
2769
+ "optional": true,
2770
+ "os": [
2771
+ "linux"
2772
+ ],
2773
+ "engines": {
2774
+ "node": ">=12"
2775
+ }
2776
+ },
2777
+ "node_modules/vite/node_modules/@esbuild/linux-loong64": {
2778
+ "version": "0.21.5",
2779
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
2780
+ "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
2781
+ "cpu": [
2782
+ "loong64"
2783
+ ],
2784
+ "dev": true,
2785
+ "license": "MIT",
2786
+ "optional": true,
2787
+ "os": [
2788
+ "linux"
2789
+ ],
2790
+ "engines": {
2791
+ "node": ">=12"
2792
+ }
2793
+ },
2794
+ "node_modules/vite/node_modules/@esbuild/linux-mips64el": {
2795
+ "version": "0.21.5",
2796
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
2797
+ "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
2798
+ "cpu": [
2799
+ "mips64el"
2800
+ ],
2801
+ "dev": true,
2802
+ "license": "MIT",
2803
+ "optional": true,
2804
+ "os": [
2805
+ "linux"
2806
+ ],
2807
+ "engines": {
2808
+ "node": ">=12"
2809
+ }
2810
+ },
2811
+ "node_modules/vite/node_modules/@esbuild/linux-ppc64": {
2812
+ "version": "0.21.5",
2813
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
2814
+ "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
2815
+ "cpu": [
2816
+ "ppc64"
2817
+ ],
2818
+ "dev": true,
2819
+ "license": "MIT",
2820
+ "optional": true,
2821
+ "os": [
2822
+ "linux"
2823
+ ],
2824
+ "engines": {
2825
+ "node": ">=12"
2826
+ }
2827
+ },
2828
+ "node_modules/vite/node_modules/@esbuild/linux-riscv64": {
2829
+ "version": "0.21.5",
2830
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
2831
+ "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
2832
+ "cpu": [
2833
+ "riscv64"
2834
+ ],
2835
+ "dev": true,
2836
+ "license": "MIT",
2837
+ "optional": true,
2838
+ "os": [
2839
+ "linux"
2840
+ ],
2841
+ "engines": {
2842
+ "node": ">=12"
2843
+ }
2844
+ },
2845
+ "node_modules/vite/node_modules/@esbuild/linux-s390x": {
2846
+ "version": "0.21.5",
2847
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
2848
+ "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
2849
+ "cpu": [
2850
+ "s390x"
2851
+ ],
2852
+ "dev": true,
2853
+ "license": "MIT",
2854
+ "optional": true,
2855
+ "os": [
2856
+ "linux"
2857
+ ],
2858
+ "engines": {
2859
+ "node": ">=12"
2860
+ }
2861
+ },
2862
+ "node_modules/vite/node_modules/@esbuild/linux-x64": {
2863
+ "version": "0.21.5",
2864
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
2865
+ "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
2866
+ "cpu": [
2867
+ "x64"
2868
+ ],
2869
+ "dev": true,
2870
+ "license": "MIT",
2871
+ "optional": true,
2872
+ "os": [
2873
+ "linux"
2874
+ ],
2875
+ "engines": {
2876
+ "node": ">=12"
2877
+ }
2878
+ },
2879
+ "node_modules/vite/node_modules/@esbuild/netbsd-x64": {
2880
+ "version": "0.21.5",
2881
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
2882
+ "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
2883
+ "cpu": [
2884
+ "x64"
2885
+ ],
2886
+ "dev": true,
2887
+ "license": "MIT",
2888
+ "optional": true,
2889
+ "os": [
2890
+ "netbsd"
2891
+ ],
2892
+ "engines": {
2893
+ "node": ">=12"
2894
+ }
2895
+ },
2896
+ "node_modules/vite/node_modules/@esbuild/openbsd-x64": {
2897
+ "version": "0.21.5",
2898
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
2899
+ "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
2900
+ "cpu": [
2901
+ "x64"
2902
+ ],
2903
+ "dev": true,
2904
+ "license": "MIT",
2905
+ "optional": true,
2906
+ "os": [
2907
+ "openbsd"
2908
+ ],
2909
+ "engines": {
2910
+ "node": ">=12"
2911
+ }
2912
+ },
2913
+ "node_modules/vite/node_modules/@esbuild/sunos-x64": {
2914
+ "version": "0.21.5",
2915
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
2916
+ "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
2917
+ "cpu": [
2918
+ "x64"
2919
+ ],
2920
+ "dev": true,
2921
+ "license": "MIT",
2922
+ "optional": true,
2923
+ "os": [
2924
+ "sunos"
2925
+ ],
2926
+ "engines": {
2927
+ "node": ">=12"
2928
+ }
2929
+ },
2930
+ "node_modules/vite/node_modules/@esbuild/win32-arm64": {
2931
+ "version": "0.21.5",
2932
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
2933
+ "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
2934
+ "cpu": [
2935
+ "arm64"
2936
+ ],
2937
+ "dev": true,
2938
+ "license": "MIT",
2939
+ "optional": true,
2940
+ "os": [
2941
+ "win32"
2942
+ ],
2943
+ "engines": {
2944
+ "node": ">=12"
2945
+ }
2946
+ },
2947
+ "node_modules/vite/node_modules/@esbuild/win32-ia32": {
2948
+ "version": "0.21.5",
2949
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
2950
+ "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
2951
+ "cpu": [
2952
+ "ia32"
2953
+ ],
2954
+ "dev": true,
2955
+ "license": "MIT",
2956
+ "optional": true,
2957
+ "os": [
2958
+ "win32"
2959
+ ],
2960
+ "engines": {
2961
+ "node": ">=12"
2962
+ }
2963
+ },
2964
+ "node_modules/vite/node_modules/@esbuild/win32-x64": {
2965
+ "version": "0.21.5",
2966
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
2967
+ "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
2968
+ "cpu": [
2969
+ "x64"
2970
+ ],
2971
+ "dev": true,
2972
+ "license": "MIT",
2973
+ "optional": true,
2974
+ "os": [
2975
+ "win32"
2976
+ ],
2977
+ "engines": {
2978
+ "node": ">=12"
2979
+ }
2980
+ },
2981
+ "node_modules/vite/node_modules/esbuild": {
2982
+ "version": "0.21.5",
2983
+ "dev": true,
2984
+ "hasInstallScript": true,
2985
+ "license": "MIT",
2986
+ "bin": {
2987
+ "esbuild": "bin/esbuild"
2988
+ },
2989
+ "engines": {
2990
+ "node": ">=12"
2991
+ },
2992
+ "optionalDependencies": {
2993
+ "@esbuild/aix-ppc64": "0.21.5",
2994
+ "@esbuild/android-arm": "0.21.5",
2995
+ "@esbuild/android-arm64": "0.21.5",
2996
+ "@esbuild/android-x64": "0.21.5",
2997
+ "@esbuild/darwin-arm64": "0.21.5",
2998
+ "@esbuild/darwin-x64": "0.21.5",
2999
+ "@esbuild/freebsd-arm64": "0.21.5",
3000
+ "@esbuild/freebsd-x64": "0.21.5",
3001
+ "@esbuild/linux-arm": "0.21.5",
3002
+ "@esbuild/linux-arm64": "0.21.5",
3003
+ "@esbuild/linux-ia32": "0.21.5",
3004
+ "@esbuild/linux-loong64": "0.21.5",
3005
+ "@esbuild/linux-mips64el": "0.21.5",
3006
+ "@esbuild/linux-ppc64": "0.21.5",
3007
+ "@esbuild/linux-riscv64": "0.21.5",
3008
+ "@esbuild/linux-s390x": "0.21.5",
3009
+ "@esbuild/linux-x64": "0.21.5",
3010
+ "@esbuild/netbsd-x64": "0.21.5",
3011
+ "@esbuild/openbsd-x64": "0.21.5",
3012
+ "@esbuild/sunos-x64": "0.21.5",
3013
+ "@esbuild/win32-arm64": "0.21.5",
3014
+ "@esbuild/win32-ia32": "0.21.5",
3015
+ "@esbuild/win32-x64": "0.21.5"
3016
+ }
3017
+ },
3018
+ "node_modules/vite/node_modules/esbuild/node_modules/@esbuild/darwin-arm64": {
3019
+ "version": "0.21.5",
3020
+ "cpu": [
3021
+ "arm64"
3022
+ ],
3023
+ "dev": true,
3024
+ "license": "MIT",
3025
+ "optional": true,
3026
+ "os": [
3027
+ "darwin"
3028
+ ],
3029
+ "engines": {
3030
+ "node": ">=12"
3031
+ }
3032
+ },
3033
+ "node_modules/vite/node_modules/fsevents": {
3034
+ "version": "2.3.3",
3035
+ "dev": true,
3036
+ "license": "MIT",
3037
+ "optional": true,
3038
+ "os": [
3039
+ "darwin"
3040
+ ],
3041
+ "engines": {
3042
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
3043
+ }
3044
+ },
3045
+ "node_modules/vitest": {
3046
+ "version": "2.1.9",
3047
+ "dev": true,
3048
+ "license": "MIT",
3049
+ "dependencies": {
3050
+ "@vitest/expect": "2.1.9",
3051
+ "@vitest/mocker": "2.1.9",
3052
+ "@vitest/pretty-format": "^2.1.9",
3053
+ "@vitest/runner": "2.1.9",
3054
+ "@vitest/snapshot": "2.1.9",
3055
+ "@vitest/spy": "2.1.9",
3056
+ "@vitest/utils": "2.1.9",
3057
+ "chai": "^5.1.2",
3058
+ "debug": "^4.3.7",
3059
+ "expect-type": "^1.1.0",
3060
+ "magic-string": "^0.30.12",
3061
+ "pathe": "^1.1.2",
3062
+ "std-env": "^3.8.0",
3063
+ "tinybench": "^2.9.0",
3064
+ "tinyexec": "^0.3.1",
3065
+ "tinypool": "^1.0.1",
3066
+ "tinyrainbow": "^1.2.0",
3067
+ "vite": "^5.0.0",
3068
+ "vite-node": "2.1.9",
3069
+ "why-is-node-running": "^2.3.0"
3070
+ },
3071
+ "bin": {
3072
+ "vitest": "vitest.mjs"
3073
+ },
3074
+ "engines": {
3075
+ "node": "^18.0.0 || >=20.0.0"
3076
+ },
3077
+ "funding": {
3078
+ "url": "https://opencollective.com/vitest"
3079
+ },
3080
+ "peerDependencies": {
3081
+ "@edge-runtime/vm": "*",
3082
+ "@types/node": "^18.0.0 || >=20.0.0",
3083
+ "@vitest/browser": "2.1.9",
3084
+ "@vitest/ui": "2.1.9",
3085
+ "happy-dom": "*",
3086
+ "jsdom": "*"
3087
+ },
3088
+ "peerDependenciesMeta": {
3089
+ "@edge-runtime/vm": {
3090
+ "optional": true
3091
+ },
3092
+ "@types/node": {
3093
+ "optional": true
3094
+ },
3095
+ "@vitest/browser": {
3096
+ "optional": true
3097
+ },
3098
+ "@vitest/ui": {
3099
+ "optional": true
3100
+ },
3101
+ "happy-dom": {
3102
+ "optional": true
3103
+ },
3104
+ "jsdom": {
3105
+ "optional": true
3106
+ }
3107
+ }
3108
+ },
3109
+ "node_modules/why-is-node-running": {
3110
+ "version": "2.3.0",
3111
+ "dev": true,
3112
+ "license": "MIT",
3113
+ "dependencies": {
3114
+ "siginfo": "^2.0.0",
3115
+ "stackback": "0.0.2"
3116
+ },
3117
+ "bin": {
3118
+ "why-is-node-running": "cli.js"
3119
+ },
3120
+ "engines": {
3121
+ "node": ">=8"
3122
+ }
3123
+ },
3124
+ "node_modules/wrap-ansi": {
3125
+ "version": "6.2.0",
3126
+ "license": "MIT",
3127
+ "dependencies": {
3128
+ "ansi-styles": "^4.0.0",
3129
+ "string-width": "^4.1.0",
3130
+ "strip-ansi": "^6.0.0"
3131
+ },
3132
+ "engines": {
3133
+ "node": ">=8"
3134
+ }
3135
+ },
3136
+ "node_modules/wrap-ansi/node_modules/string-width": {
3137
+ "version": "4.2.3",
3138
+ "license": "MIT",
3139
+ "dependencies": {
3140
+ "emoji-regex": "^8.0.0",
3141
+ "is-fullwidth-code-point": "^3.0.0",
3142
+ "strip-ansi": "^6.0.1"
3143
+ },
3144
+ "engines": {
3145
+ "node": ">=8"
3146
+ }
3147
+ },
3148
+ "node_modules/wrap-ansi/node_modules/string-width/node_modules/emoji-regex": {
3149
+ "version": "8.0.0",
3150
+ "license": "MIT"
3151
+ },
3152
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
3153
+ "version": "6.0.1",
3154
+ "license": "MIT",
3155
+ "dependencies": {
3156
+ "ansi-regex": "^5.0.1"
3157
+ },
3158
+ "engines": {
3159
+ "node": ">=8"
3160
+ }
3161
+ },
3162
+ "node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex": {
3163
+ "version": "5.0.1",
3164
+ "license": "MIT",
3165
+ "engines": {
3166
+ "node": ">=8"
3167
+ }
3168
+ },
3169
+ "node_modules/y18n": {
3170
+ "version": "5.0.8",
3171
+ "license": "ISC",
3172
+ "engines": {
3173
+ "node": ">=10"
3174
+ }
3175
+ },
3176
+ "node_modules/yaml": {
3177
+ "version": "2.8.3",
3178
+ "license": "ISC",
3179
+ "bin": {
3180
+ "yaml": "bin.mjs"
3181
+ },
3182
+ "engines": {
3183
+ "node": ">= 14.6"
3184
+ },
3185
+ "funding": {
3186
+ "url": "https://github.com/sponsors/eemeli"
3187
+ }
3188
+ },
3189
+ "node_modules/yargs": {
3190
+ "version": "16.2.0",
3191
+ "license": "MIT",
3192
+ "dependencies": {
3193
+ "cliui": "^7.0.2",
3194
+ "escalade": "^3.1.1",
3195
+ "get-caller-file": "^2.0.5",
3196
+ "require-directory": "^2.1.1",
3197
+ "string-width": "^4.2.0",
3198
+ "y18n": "^5.0.5",
3199
+ "yargs-parser": "^20.2.2"
3200
+ },
3201
+ "engines": {
3202
+ "node": ">=10"
3203
+ }
3204
+ },
3205
+ "node_modules/yargs-parser": {
3206
+ "version": "20.2.9",
3207
+ "license": "ISC",
3208
+ "engines": {
3209
+ "node": ">=10"
3210
+ }
3211
+ },
3212
+ "node_modules/yargs/node_modules/string-width": {
3213
+ "version": "4.2.3",
3214
+ "license": "MIT",
3215
+ "dependencies": {
3216
+ "emoji-regex": "^8.0.0",
3217
+ "is-fullwidth-code-point": "^3.0.0",
3218
+ "strip-ansi": "^6.0.1"
3219
+ },
3220
+ "engines": {
3221
+ "node": ">=8"
3222
+ }
3223
+ },
3224
+ "node_modules/yargs/node_modules/string-width/node_modules/emoji-regex": {
3225
+ "version": "8.0.0",
3226
+ "license": "MIT"
3227
+ },
3228
+ "node_modules/yargs/node_modules/string-width/node_modules/strip-ansi": {
3229
+ "version": "6.0.1",
3230
+ "license": "MIT",
3231
+ "dependencies": {
3232
+ "ansi-regex": "^5.0.1"
3233
+ },
3234
+ "engines": {
3235
+ "node": ">=8"
3236
+ }
3237
+ },
3238
+ "node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex": {
3239
+ "version": "5.0.1",
3240
+ "license": "MIT",
3241
+ "engines": {
3242
+ "node": ">=8"
3243
+ }
3244
+ },
3245
+ "node_modules/yoctocolors-cjs": {
3246
+ "version": "2.1.3",
3247
+ "license": "MIT",
3248
+ "engines": {
3249
+ "node": ">=18"
3250
+ },
3251
+ "funding": {
3252
+ "url": "https://github.com/sponsors/sindresorhus"
3253
+ }
3254
+ }
3255
+ }
3256
+ }