@phnx-labs/agents-cli 1.19.1 → 1.20.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 (109) hide show
  1. package/CHANGELOG.md +67 -0
  2. package/README.md +70 -10
  3. package/dist/commands/browser.js +88 -16
  4. package/dist/commands/cli.d.ts +14 -0
  5. package/dist/commands/cli.js +244 -0
  6. package/dist/commands/commands.js +3 -3
  7. package/dist/commands/computer.js +18 -1
  8. package/dist/commands/doctor.d.ts +1 -1
  9. package/dist/commands/doctor.js +2 -2
  10. package/dist/commands/exec.js +3 -3
  11. package/dist/commands/factory.d.ts +3 -14
  12. package/dist/commands/factory.js +3 -3
  13. package/dist/commands/hooks.js +3 -3
  14. package/dist/commands/mcp.js +29 -0
  15. package/dist/commands/plugins.js +11 -4
  16. package/dist/commands/profiles.js +1 -1
  17. package/dist/commands/prune.js +39 -160
  18. package/dist/commands/pull.js +56 -3
  19. package/dist/commands/routines.js +106 -13
  20. package/dist/commands/secrets.js +6 -8
  21. package/dist/commands/sessions.d.ts +36 -7
  22. package/dist/commands/sessions.js +130 -53
  23. package/dist/commands/setup.d.ts +1 -0
  24. package/dist/commands/setup.js +37 -28
  25. package/dist/commands/skills.js +3 -3
  26. package/dist/commands/teams.js +13 -0
  27. package/dist/commands/versions.d.ts +4 -3
  28. package/dist/commands/versions.js +147 -124
  29. package/dist/commands/view.js +12 -12
  30. package/dist/index.js +34 -6
  31. package/dist/lib/acp/harnesses.js +8 -0
  32. package/dist/lib/agents.js +162 -9
  33. package/dist/lib/browser/cdp.d.ts +8 -1
  34. package/dist/lib/browser/cdp.js +40 -3
  35. package/dist/lib/browser/chrome.d.ts +13 -0
  36. package/dist/lib/browser/chrome.js +42 -3
  37. package/dist/lib/browser/domain-skills.d.ts +51 -0
  38. package/dist/lib/browser/domain-skills.js +157 -0
  39. package/dist/lib/browser/drivers/local.js +45 -4
  40. package/dist/lib/browser/drivers/ssh.js +1 -1
  41. package/dist/lib/browser/ipc.d.ts +8 -1
  42. package/dist/lib/browser/ipc.js +37 -28
  43. package/dist/lib/browser/profiles.d.ts +13 -0
  44. package/dist/lib/browser/profiles.js +41 -1
  45. package/dist/lib/browser/service.d.ts +3 -0
  46. package/dist/lib/browser/service.js +21 -5
  47. package/dist/lib/browser/types.d.ts +7 -0
  48. package/dist/lib/cli-resources.d.ts +109 -0
  49. package/dist/lib/cli-resources.js +255 -0
  50. package/dist/lib/cloud/rush.js +5 -5
  51. package/dist/lib/command-skills.js +0 -2
  52. package/dist/lib/computer-rpc.d.ts +3 -0
  53. package/dist/lib/computer-rpc.js +53 -0
  54. package/dist/lib/daemon.js +20 -0
  55. package/dist/lib/exec.d.ts +3 -2
  56. package/dist/lib/exec.js +62 -6
  57. package/dist/lib/hooks.js +182 -0
  58. package/dist/lib/mcp.js +6 -0
  59. package/dist/lib/migrate.js +1 -1
  60. package/dist/lib/overdue.d.ts +26 -0
  61. package/dist/lib/overdue.js +101 -0
  62. package/dist/lib/permissions.js +5 -1
  63. package/dist/lib/plugin-marketplace.js +1 -1
  64. package/dist/lib/profiles-presets.js +37 -0
  65. package/dist/lib/registry.d.ts +18 -0
  66. package/dist/lib/registry.js +44 -0
  67. package/dist/lib/resources/mcp.js +43 -1
  68. package/dist/lib/resources/types.d.ts +1 -1
  69. package/dist/lib/resources.d.ts +1 -1
  70. package/dist/lib/rotate.js +10 -4
  71. package/dist/lib/routines-format.d.ts +35 -0
  72. package/dist/lib/routines-format.js +173 -0
  73. package/dist/lib/routines.d.ts +7 -1
  74. package/dist/lib/routines.js +32 -12
  75. package/dist/lib/runner.js +19 -5
  76. package/dist/lib/scheduler.js +8 -1
  77. package/dist/lib/secrets/{AgentsKeychain.app → Agents CLI.app}/Contents/CodeResources +0 -0
  78. package/dist/lib/secrets/{AgentsKeychain.app/Contents/Info.plist → Agents CLI.app/Contents/Info.plist } +4 -2
  79. package/dist/lib/secrets/Agents CLI.app/Contents/MacOS/Agents CLI +0 -0
  80. package/dist/lib/secrets/bundles.d.ts +33 -2
  81. package/dist/lib/secrets/bundles.js +249 -26
  82. package/dist/lib/secrets/index.d.ts +10 -1
  83. package/dist/lib/secrets/index.js +143 -48
  84. package/dist/lib/session/active.d.ts +8 -0
  85. package/dist/lib/session/active.js +3 -2
  86. package/dist/lib/session/db.d.ts +10 -4
  87. package/dist/lib/session/db.js +16 -16
  88. package/dist/lib/session/parse.d.ts +1 -0
  89. package/dist/lib/session/parse.js +44 -0
  90. package/dist/lib/session/types.d.ts +1 -1
  91. package/dist/lib/session/types.js +1 -1
  92. package/dist/lib/shims.d.ts +6 -2
  93. package/dist/lib/shims.js +88 -10
  94. package/dist/lib/state.d.ts +0 -1
  95. package/dist/lib/state.js +2 -15
  96. package/dist/lib/teams/agents.js +1 -1
  97. package/dist/lib/teams/parsers.d.ts +1 -1
  98. package/dist/lib/teams/parsers.js +153 -3
  99. package/dist/lib/teams/summarizer.js +18 -2
  100. package/dist/lib/teams/worktree.js +14 -3
  101. package/dist/lib/types.d.ts +7 -4
  102. package/dist/lib/types.js +6 -3
  103. package/dist/lib/versions.d.ts +10 -2
  104. package/dist/lib/versions.js +227 -35
  105. package/package.json +9 -9
  106. package/dist/lib/secrets/AgentsKeychain.app/Contents/MacOS/AgentsKeychain +0 -0
  107. package/npm-shrinkwrap.json +0 -3162
  108. /package/dist/lib/secrets/{AgentsKeychain.app → Agents CLI.app}/Contents/_CodeSignature/CodeResources +0 -0
  109. /package/dist/lib/secrets/{AgentsKeychain.app → Agents CLI.app}/Contents/embedded.provisionprofile +0 -0
@@ -1,3162 +0,0 @@
1
- {
2
- "name": "@phnx-labs/agents-cli",
3
- "version": "1.19.0",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "@phnx-labs/agents-cli",
9
- "version": "1.19.0",
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
- "computer": "dist/computer.js"
35
- },
36
- "devDependencies": {
37
- "@types/diff": "6.0.0",
38
- "@types/marked-terminal": "6.1.1",
39
- "@types/node": "22.19.10",
40
- "playwright": "1.59.1",
41
- "tsx": "4.22.2",
42
- "typescript": "5.9.3",
43
- "vitest": "4.1.6"
44
- },
45
- "engines": {
46
- "node": ">=22.5.0",
47
- "npm": ">=9"
48
- }
49
- },
50
- "node_modules/@colors/colors": {
51
- "version": "1.5.0",
52
- "license": "MIT",
53
- "optional": true,
54
- "engines": {
55
- "node": ">=0.1.90"
56
- }
57
- },
58
- "node_modules/@emnapi/core": {
59
- "version": "1.10.0",
60
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
61
- "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
62
- "dev": true,
63
- "license": "MIT",
64
- "optional": true,
65
- "dependencies": {
66
- "@emnapi/wasi-threads": "1.2.1",
67
- "tslib": "^2.4.0"
68
- }
69
- },
70
- "node_modules/@emnapi/runtime": {
71
- "version": "1.10.0",
72
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
73
- "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
74
- "dev": true,
75
- "license": "MIT",
76
- "optional": true,
77
- "dependencies": {
78
- "tslib": "^2.4.0"
79
- }
80
- },
81
- "node_modules/@emnapi/wasi-threads": {
82
- "version": "1.2.1",
83
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
84
- "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
85
- "dev": true,
86
- "license": "MIT",
87
- "optional": true,
88
- "dependencies": {
89
- "tslib": "^2.4.0"
90
- }
91
- },
92
- "node_modules/@esbuild/aix-ppc64": {
93
- "version": "0.28.0",
94
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.0.tgz",
95
- "integrity": "sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==",
96
- "cpu": [
97
- "ppc64"
98
- ],
99
- "dev": true,
100
- "license": "MIT",
101
- "optional": true,
102
- "os": [
103
- "aix"
104
- ],
105
- "engines": {
106
- "node": ">=18"
107
- }
108
- },
109
- "node_modules/@esbuild/android-arm": {
110
- "version": "0.28.0",
111
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.0.tgz",
112
- "integrity": "sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==",
113
- "cpu": [
114
- "arm"
115
- ],
116
- "dev": true,
117
- "license": "MIT",
118
- "optional": true,
119
- "os": [
120
- "android"
121
- ],
122
- "engines": {
123
- "node": ">=18"
124
- }
125
- },
126
- "node_modules/@esbuild/android-arm64": {
127
- "version": "0.28.0",
128
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.0.tgz",
129
- "integrity": "sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==",
130
- "cpu": [
131
- "arm64"
132
- ],
133
- "dev": true,
134
- "license": "MIT",
135
- "optional": true,
136
- "os": [
137
- "android"
138
- ],
139
- "engines": {
140
- "node": ">=18"
141
- }
142
- },
143
- "node_modules/@esbuild/android-x64": {
144
- "version": "0.28.0",
145
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.0.tgz",
146
- "integrity": "sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==",
147
- "cpu": [
148
- "x64"
149
- ],
150
- "dev": true,
151
- "license": "MIT",
152
- "optional": true,
153
- "os": [
154
- "android"
155
- ],
156
- "engines": {
157
- "node": ">=18"
158
- }
159
- },
160
- "node_modules/@esbuild/darwin-arm64": {
161
- "version": "0.28.0",
162
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.0.tgz",
163
- "integrity": "sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==",
164
- "cpu": [
165
- "arm64"
166
- ],
167
- "dev": true,
168
- "license": "MIT",
169
- "optional": true,
170
- "os": [
171
- "darwin"
172
- ],
173
- "engines": {
174
- "node": ">=18"
175
- }
176
- },
177
- "node_modules/@esbuild/darwin-x64": {
178
- "version": "0.28.0",
179
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.0.tgz",
180
- "integrity": "sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==",
181
- "cpu": [
182
- "x64"
183
- ],
184
- "dev": true,
185
- "license": "MIT",
186
- "optional": true,
187
- "os": [
188
- "darwin"
189
- ],
190
- "engines": {
191
- "node": ">=18"
192
- }
193
- },
194
- "node_modules/@esbuild/freebsd-arm64": {
195
- "version": "0.28.0",
196
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.0.tgz",
197
- "integrity": "sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==",
198
- "cpu": [
199
- "arm64"
200
- ],
201
- "dev": true,
202
- "license": "MIT",
203
- "optional": true,
204
- "os": [
205
- "freebsd"
206
- ],
207
- "engines": {
208
- "node": ">=18"
209
- }
210
- },
211
- "node_modules/@esbuild/freebsd-x64": {
212
- "version": "0.28.0",
213
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.0.tgz",
214
- "integrity": "sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==",
215
- "cpu": [
216
- "x64"
217
- ],
218
- "dev": true,
219
- "license": "MIT",
220
- "optional": true,
221
- "os": [
222
- "freebsd"
223
- ],
224
- "engines": {
225
- "node": ">=18"
226
- }
227
- },
228
- "node_modules/@esbuild/linux-arm": {
229
- "version": "0.28.0",
230
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.0.tgz",
231
- "integrity": "sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==",
232
- "cpu": [
233
- "arm"
234
- ],
235
- "dev": true,
236
- "license": "MIT",
237
- "optional": true,
238
- "os": [
239
- "linux"
240
- ],
241
- "engines": {
242
- "node": ">=18"
243
- }
244
- },
245
- "node_modules/@esbuild/linux-arm64": {
246
- "version": "0.28.0",
247
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.0.tgz",
248
- "integrity": "sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==",
249
- "cpu": [
250
- "arm64"
251
- ],
252
- "dev": true,
253
- "license": "MIT",
254
- "optional": true,
255
- "os": [
256
- "linux"
257
- ],
258
- "engines": {
259
- "node": ">=18"
260
- }
261
- },
262
- "node_modules/@esbuild/linux-ia32": {
263
- "version": "0.28.0",
264
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.0.tgz",
265
- "integrity": "sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==",
266
- "cpu": [
267
- "ia32"
268
- ],
269
- "dev": true,
270
- "license": "MIT",
271
- "optional": true,
272
- "os": [
273
- "linux"
274
- ],
275
- "engines": {
276
- "node": ">=18"
277
- }
278
- },
279
- "node_modules/@esbuild/linux-loong64": {
280
- "version": "0.28.0",
281
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.0.tgz",
282
- "integrity": "sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==",
283
- "cpu": [
284
- "loong64"
285
- ],
286
- "dev": true,
287
- "license": "MIT",
288
- "optional": true,
289
- "os": [
290
- "linux"
291
- ],
292
- "engines": {
293
- "node": ">=18"
294
- }
295
- },
296
- "node_modules/@esbuild/linux-mips64el": {
297
- "version": "0.28.0",
298
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.0.tgz",
299
- "integrity": "sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==",
300
- "cpu": [
301
- "mips64el"
302
- ],
303
- "dev": true,
304
- "license": "MIT",
305
- "optional": true,
306
- "os": [
307
- "linux"
308
- ],
309
- "engines": {
310
- "node": ">=18"
311
- }
312
- },
313
- "node_modules/@esbuild/linux-ppc64": {
314
- "version": "0.28.0",
315
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.0.tgz",
316
- "integrity": "sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==",
317
- "cpu": [
318
- "ppc64"
319
- ],
320
- "dev": true,
321
- "license": "MIT",
322
- "optional": true,
323
- "os": [
324
- "linux"
325
- ],
326
- "engines": {
327
- "node": ">=18"
328
- }
329
- },
330
- "node_modules/@esbuild/linux-riscv64": {
331
- "version": "0.28.0",
332
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.0.tgz",
333
- "integrity": "sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==",
334
- "cpu": [
335
- "riscv64"
336
- ],
337
- "dev": true,
338
- "license": "MIT",
339
- "optional": true,
340
- "os": [
341
- "linux"
342
- ],
343
- "engines": {
344
- "node": ">=18"
345
- }
346
- },
347
- "node_modules/@esbuild/linux-s390x": {
348
- "version": "0.28.0",
349
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.0.tgz",
350
- "integrity": "sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==",
351
- "cpu": [
352
- "s390x"
353
- ],
354
- "dev": true,
355
- "license": "MIT",
356
- "optional": true,
357
- "os": [
358
- "linux"
359
- ],
360
- "engines": {
361
- "node": ">=18"
362
- }
363
- },
364
- "node_modules/@esbuild/linux-x64": {
365
- "version": "0.28.0",
366
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.0.tgz",
367
- "integrity": "sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==",
368
- "cpu": [
369
- "x64"
370
- ],
371
- "dev": true,
372
- "license": "MIT",
373
- "optional": true,
374
- "os": [
375
- "linux"
376
- ],
377
- "engines": {
378
- "node": ">=18"
379
- }
380
- },
381
- "node_modules/@esbuild/netbsd-arm64": {
382
- "version": "0.28.0",
383
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.0.tgz",
384
- "integrity": "sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==",
385
- "cpu": [
386
- "arm64"
387
- ],
388
- "dev": true,
389
- "license": "MIT",
390
- "optional": true,
391
- "os": [
392
- "netbsd"
393
- ],
394
- "engines": {
395
- "node": ">=18"
396
- }
397
- },
398
- "node_modules/@esbuild/netbsd-x64": {
399
- "version": "0.28.0",
400
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.0.tgz",
401
- "integrity": "sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==",
402
- "cpu": [
403
- "x64"
404
- ],
405
- "dev": true,
406
- "license": "MIT",
407
- "optional": true,
408
- "os": [
409
- "netbsd"
410
- ],
411
- "engines": {
412
- "node": ">=18"
413
- }
414
- },
415
- "node_modules/@esbuild/openbsd-arm64": {
416
- "version": "0.28.0",
417
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.0.tgz",
418
- "integrity": "sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==",
419
- "cpu": [
420
- "arm64"
421
- ],
422
- "dev": true,
423
- "license": "MIT",
424
- "optional": true,
425
- "os": [
426
- "openbsd"
427
- ],
428
- "engines": {
429
- "node": ">=18"
430
- }
431
- },
432
- "node_modules/@esbuild/openbsd-x64": {
433
- "version": "0.28.0",
434
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.0.tgz",
435
- "integrity": "sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==",
436
- "cpu": [
437
- "x64"
438
- ],
439
- "dev": true,
440
- "license": "MIT",
441
- "optional": true,
442
- "os": [
443
- "openbsd"
444
- ],
445
- "engines": {
446
- "node": ">=18"
447
- }
448
- },
449
- "node_modules/@esbuild/openharmony-arm64": {
450
- "version": "0.28.0",
451
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.0.tgz",
452
- "integrity": "sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==",
453
- "cpu": [
454
- "arm64"
455
- ],
456
- "dev": true,
457
- "license": "MIT",
458
- "optional": true,
459
- "os": [
460
- "openharmony"
461
- ],
462
- "engines": {
463
- "node": ">=18"
464
- }
465
- },
466
- "node_modules/@esbuild/sunos-x64": {
467
- "version": "0.28.0",
468
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.0.tgz",
469
- "integrity": "sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==",
470
- "cpu": [
471
- "x64"
472
- ],
473
- "dev": true,
474
- "license": "MIT",
475
- "optional": true,
476
- "os": [
477
- "sunos"
478
- ],
479
- "engines": {
480
- "node": ">=18"
481
- }
482
- },
483
- "node_modules/@esbuild/win32-arm64": {
484
- "version": "0.28.0",
485
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.0.tgz",
486
- "integrity": "sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==",
487
- "cpu": [
488
- "arm64"
489
- ],
490
- "dev": true,
491
- "license": "MIT",
492
- "optional": true,
493
- "os": [
494
- "win32"
495
- ],
496
- "engines": {
497
- "node": ">=18"
498
- }
499
- },
500
- "node_modules/@esbuild/win32-ia32": {
501
- "version": "0.28.0",
502
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.0.tgz",
503
- "integrity": "sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==",
504
- "cpu": [
505
- "ia32"
506
- ],
507
- "dev": true,
508
- "license": "MIT",
509
- "optional": true,
510
- "os": [
511
- "win32"
512
- ],
513
- "engines": {
514
- "node": ">=18"
515
- }
516
- },
517
- "node_modules/@esbuild/win32-x64": {
518
- "version": "0.28.0",
519
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.0.tgz",
520
- "integrity": "sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==",
521
- "cpu": [
522
- "x64"
523
- ],
524
- "dev": true,
525
- "license": "MIT",
526
- "optional": true,
527
- "os": [
528
- "win32"
529
- ],
530
- "engines": {
531
- "node": ">=18"
532
- }
533
- },
534
- "node_modules/@inquirer/ansi": {
535
- "version": "1.0.2",
536
- "license": "MIT",
537
- "engines": {
538
- "node": ">=18"
539
- }
540
- },
541
- "node_modules/@inquirer/checkbox": {
542
- "version": "4.3.2",
543
- "license": "MIT",
544
- "dependencies": {
545
- "@inquirer/ansi": "^1.0.2",
546
- "@inquirer/core": "^10.3.2",
547
- "@inquirer/figures": "^1.0.15",
548
- "@inquirer/type": "^3.0.10",
549
- "yoctocolors-cjs": "^2.1.3"
550
- },
551
- "engines": {
552
- "node": ">=18"
553
- },
554
- "peerDependencies": {
555
- "@types/node": ">=18"
556
- },
557
- "peerDependenciesMeta": {
558
- "@types/node": {
559
- "optional": true
560
- }
561
- }
562
- },
563
- "node_modules/@inquirer/confirm": {
564
- "version": "5.1.21",
565
- "license": "MIT",
566
- "dependencies": {
567
- "@inquirer/core": "^10.3.2",
568
- "@inquirer/type": "^3.0.10"
569
- },
570
- "engines": {
571
- "node": ">=18"
572
- },
573
- "peerDependencies": {
574
- "@types/node": ">=18"
575
- },
576
- "peerDependenciesMeta": {
577
- "@types/node": {
578
- "optional": true
579
- }
580
- }
581
- },
582
- "node_modules/@inquirer/core": {
583
- "version": "10.3.2",
584
- "license": "MIT",
585
- "dependencies": {
586
- "@inquirer/ansi": "^1.0.2",
587
- "@inquirer/figures": "^1.0.15",
588
- "@inquirer/type": "^3.0.10",
589
- "cli-width": "^4.1.0",
590
- "mute-stream": "^2.0.0",
591
- "signal-exit": "^4.1.0",
592
- "wrap-ansi": "^6.2.0",
593
- "yoctocolors-cjs": "^2.1.3"
594
- },
595
- "engines": {
596
- "node": ">=18"
597
- },
598
- "peerDependencies": {
599
- "@types/node": ">=18"
600
- },
601
- "peerDependenciesMeta": {
602
- "@types/node": {
603
- "optional": true
604
- }
605
- }
606
- },
607
- "node_modules/@inquirer/core/node_modules/signal-exit": {
608
- "version": "4.1.0",
609
- "license": "ISC",
610
- "engines": {
611
- "node": ">=14"
612
- },
613
- "funding": {
614
- "url": "https://github.com/sponsors/isaacs"
615
- }
616
- },
617
- "node_modules/@inquirer/editor": {
618
- "version": "4.2.23",
619
- "license": "MIT",
620
- "dependencies": {
621
- "@inquirer/core": "^10.3.2",
622
- "@inquirer/external-editor": "^1.0.3",
623
- "@inquirer/type": "^3.0.10"
624
- },
625
- "engines": {
626
- "node": ">=18"
627
- },
628
- "peerDependencies": {
629
- "@types/node": ">=18"
630
- },
631
- "peerDependenciesMeta": {
632
- "@types/node": {
633
- "optional": true
634
- }
635
- }
636
- },
637
- "node_modules/@inquirer/expand": {
638
- "version": "4.0.23",
639
- "license": "MIT",
640
- "dependencies": {
641
- "@inquirer/core": "^10.3.2",
642
- "@inquirer/type": "^3.0.10",
643
- "yoctocolors-cjs": "^2.1.3"
644
- },
645
- "engines": {
646
- "node": ">=18"
647
- },
648
- "peerDependencies": {
649
- "@types/node": ">=18"
650
- },
651
- "peerDependenciesMeta": {
652
- "@types/node": {
653
- "optional": true
654
- }
655
- }
656
- },
657
- "node_modules/@inquirer/external-editor": {
658
- "version": "1.0.3",
659
- "license": "MIT",
660
- "dependencies": {
661
- "chardet": "^2.1.1",
662
- "iconv-lite": "^0.7.0"
663
- },
664
- "engines": {
665
- "node": ">=18"
666
- },
667
- "peerDependencies": {
668
- "@types/node": ">=18"
669
- },
670
- "peerDependenciesMeta": {
671
- "@types/node": {
672
- "optional": true
673
- }
674
- }
675
- },
676
- "node_modules/@inquirer/figures": {
677
- "version": "1.0.15",
678
- "license": "MIT",
679
- "engines": {
680
- "node": ">=18"
681
- }
682
- },
683
- "node_modules/@inquirer/input": {
684
- "version": "4.3.1",
685
- "license": "MIT",
686
- "dependencies": {
687
- "@inquirer/core": "^10.3.2",
688
- "@inquirer/type": "^3.0.10"
689
- },
690
- "engines": {
691
- "node": ">=18"
692
- },
693
- "peerDependencies": {
694
- "@types/node": ">=18"
695
- },
696
- "peerDependenciesMeta": {
697
- "@types/node": {
698
- "optional": true
699
- }
700
- }
701
- },
702
- "node_modules/@inquirer/number": {
703
- "version": "3.0.23",
704
- "license": "MIT",
705
- "dependencies": {
706
- "@inquirer/core": "^10.3.2",
707
- "@inquirer/type": "^3.0.10"
708
- },
709
- "engines": {
710
- "node": ">=18"
711
- },
712
- "peerDependencies": {
713
- "@types/node": ">=18"
714
- },
715
- "peerDependenciesMeta": {
716
- "@types/node": {
717
- "optional": true
718
- }
719
- }
720
- },
721
- "node_modules/@inquirer/password": {
722
- "version": "4.0.23",
723
- "license": "MIT",
724
- "dependencies": {
725
- "@inquirer/ansi": "^1.0.2",
726
- "@inquirer/core": "^10.3.2",
727
- "@inquirer/type": "^3.0.10"
728
- },
729
- "engines": {
730
- "node": ">=18"
731
- },
732
- "peerDependencies": {
733
- "@types/node": ">=18"
734
- },
735
- "peerDependenciesMeta": {
736
- "@types/node": {
737
- "optional": true
738
- }
739
- }
740
- },
741
- "node_modules/@inquirer/prompts": {
742
- "version": "7.10.1",
743
- "license": "MIT",
744
- "dependencies": {
745
- "@inquirer/checkbox": "^4.3.2",
746
- "@inquirer/confirm": "^5.1.21",
747
- "@inquirer/editor": "^4.2.23",
748
- "@inquirer/expand": "^4.0.23",
749
- "@inquirer/input": "^4.3.1",
750
- "@inquirer/number": "^3.0.23",
751
- "@inquirer/password": "^4.0.23",
752
- "@inquirer/rawlist": "^4.1.11",
753
- "@inquirer/search": "^3.2.2",
754
- "@inquirer/select": "^4.4.2"
755
- },
756
- "engines": {
757
- "node": ">=18"
758
- },
759
- "peerDependencies": {
760
- "@types/node": ">=18"
761
- },
762
- "peerDependenciesMeta": {
763
- "@types/node": {
764
- "optional": true
765
- }
766
- }
767
- },
768
- "node_modules/@inquirer/rawlist": {
769
- "version": "4.1.11",
770
- "license": "MIT",
771
- "dependencies": {
772
- "@inquirer/core": "^10.3.2",
773
- "@inquirer/type": "^3.0.10",
774
- "yoctocolors-cjs": "^2.1.3"
775
- },
776
- "engines": {
777
- "node": ">=18"
778
- },
779
- "peerDependencies": {
780
- "@types/node": ">=18"
781
- },
782
- "peerDependenciesMeta": {
783
- "@types/node": {
784
- "optional": true
785
- }
786
- }
787
- },
788
- "node_modules/@inquirer/search": {
789
- "version": "3.2.2",
790
- "license": "MIT",
791
- "dependencies": {
792
- "@inquirer/core": "^10.3.2",
793
- "@inquirer/figures": "^1.0.15",
794
- "@inquirer/type": "^3.0.10",
795
- "yoctocolors-cjs": "^2.1.3"
796
- },
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/@inquirer/select": {
810
- "version": "4.4.2",
811
- "license": "MIT",
812
- "dependencies": {
813
- "@inquirer/ansi": "^1.0.2",
814
- "@inquirer/core": "^10.3.2",
815
- "@inquirer/figures": "^1.0.15",
816
- "@inquirer/type": "^3.0.10",
817
- "yoctocolors-cjs": "^2.1.3"
818
- },
819
- "engines": {
820
- "node": ">=18"
821
- },
822
- "peerDependencies": {
823
- "@types/node": ">=18"
824
- },
825
- "peerDependenciesMeta": {
826
- "@types/node": {
827
- "optional": true
828
- }
829
- }
830
- },
831
- "node_modules/@inquirer/type": {
832
- "version": "3.0.10",
833
- "license": "MIT",
834
- "engines": {
835
- "node": ">=18"
836
- },
837
- "peerDependencies": {
838
- "@types/node": ">=18"
839
- },
840
- "peerDependenciesMeta": {
841
- "@types/node": {
842
- "optional": true
843
- }
844
- }
845
- },
846
- "node_modules/@jridgewell/sourcemap-codec": {
847
- "version": "1.5.5",
848
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
849
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
850
- "dev": true,
851
- "license": "MIT"
852
- },
853
- "node_modules/@kwsites/file-exists": {
854
- "version": "1.1.1",
855
- "license": "MIT",
856
- "dependencies": {
857
- "debug": "^4.1.1"
858
- }
859
- },
860
- "node_modules/@kwsites/promise-deferred": {
861
- "version": "1.1.1",
862
- "license": "MIT"
863
- },
864
- "node_modules/@napi-rs/wasm-runtime": {
865
- "version": "1.1.4",
866
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
867
- "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
868
- "dev": true,
869
- "license": "MIT",
870
- "optional": true,
871
- "dependencies": {
872
- "@tybys/wasm-util": "^0.10.1"
873
- },
874
- "funding": {
875
- "type": "github",
876
- "url": "https://github.com/sponsors/Brooooooklyn"
877
- },
878
- "peerDependencies": {
879
- "@emnapi/core": "^1.7.1",
880
- "@emnapi/runtime": "^1.7.1"
881
- }
882
- },
883
- "node_modules/@oxc-project/types": {
884
- "version": "0.130.0",
885
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.130.0.tgz",
886
- "integrity": "sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==",
887
- "dev": true,
888
- "license": "MIT",
889
- "funding": {
890
- "url": "https://github.com/sponsors/Boshen"
891
- }
892
- },
893
- "node_modules/@rolldown/binding-android-arm64": {
894
- "version": "1.0.1",
895
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.1.tgz",
896
- "integrity": "sha512-fJI3I0r3C3Oj/zdBCpaCmBRZYf07xpaq4yCfDDoSFm+beWNzbIl26puW8RraUdugoJw/95zerNOn6jasAhzSmg==",
897
- "cpu": [
898
- "arm64"
899
- ],
900
- "dev": true,
901
- "license": "MIT",
902
- "optional": true,
903
- "os": [
904
- "android"
905
- ],
906
- "engines": {
907
- "node": "^20.19.0 || >=22.12.0"
908
- }
909
- },
910
- "node_modules/@rolldown/binding-darwin-arm64": {
911
- "version": "1.0.1",
912
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.1.tgz",
913
- "integrity": "sha512-cKnAhWEsV7TPcA/5EAteDp6KcJZBQ2G+BqE7zayMMi7kMvwRsbv7WT9aOnn0WNl4SKEIf43vjS31iUPu80nzXg==",
914
- "cpu": [
915
- "arm64"
916
- ],
917
- "dev": true,
918
- "license": "MIT",
919
- "optional": true,
920
- "os": [
921
- "darwin"
922
- ],
923
- "engines": {
924
- "node": "^20.19.0 || >=22.12.0"
925
- }
926
- },
927
- "node_modules/@rolldown/binding-darwin-x64": {
928
- "version": "1.0.1",
929
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.1.tgz",
930
- "integrity": "sha512-YKrVwQjIRBPo+5G/u03wGjbdy4q7pyzCe93DK9VJ7zkVmeg8LJ7GbgsiHWdR4xSoe4CAXRD7Bcjgbtr64bkXNg==",
931
- "cpu": [
932
- "x64"
933
- ],
934
- "dev": true,
935
- "license": "MIT",
936
- "optional": true,
937
- "os": [
938
- "darwin"
939
- ],
940
- "engines": {
941
- "node": "^20.19.0 || >=22.12.0"
942
- }
943
- },
944
- "node_modules/@rolldown/binding-freebsd-x64": {
945
- "version": "1.0.1",
946
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.1.tgz",
947
- "integrity": "sha512-z/oBsREo46SsFqBwYtFe0kpJeBijAT48O/WXLI4suiCLBkr03RTtTJMCzSdDd2znlh8VJizL09XVkQgk8IZonw==",
948
- "cpu": [
949
- "x64"
950
- ],
951
- "dev": true,
952
- "license": "MIT",
953
- "optional": true,
954
- "os": [
955
- "freebsd"
956
- ],
957
- "engines": {
958
- "node": "^20.19.0 || >=22.12.0"
959
- }
960
- },
961
- "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
962
- "version": "1.0.1",
963
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.1.tgz",
964
- "integrity": "sha512-ik8q7GM11zxvYxFc2PeDcT6TBvhCQMaUxfph/M5l9sKuTs/Sjg3L+Byw0F7w0ZVLBZmx30P+gG0ECzzN+MFcmQ==",
965
- "cpu": [
966
- "arm"
967
- ],
968
- "dev": true,
969
- "license": "MIT",
970
- "optional": true,
971
- "os": [
972
- "linux"
973
- ],
974
- "engines": {
975
- "node": "^20.19.0 || >=22.12.0"
976
- }
977
- },
978
- "node_modules/@rolldown/binding-linux-arm64-gnu": {
979
- "version": "1.0.1",
980
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.1.tgz",
981
- "integrity": "sha512-QoSx2EkyrrdZ6kcyE8stqZ62t0Yra8Fs5ia9lOxJrh6TMQJK7gQKmscdTHf7pOXKREKrVwOtJcQG3qVSfc866A==",
982
- "cpu": [
983
- "arm64"
984
- ],
985
- "dev": true,
986
- "libc": [
987
- "glibc"
988
- ],
989
- "license": "MIT",
990
- "optional": true,
991
- "os": [
992
- "linux"
993
- ],
994
- "engines": {
995
- "node": "^20.19.0 || >=22.12.0"
996
- }
997
- },
998
- "node_modules/@rolldown/binding-linux-arm64-musl": {
999
- "version": "1.0.1",
1000
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.1.tgz",
1001
- "integrity": "sha512-uwNwFpwKeNiZawfAWBgg0VIztPTV3ihhh1vV334h9ivnNLorxnQMU6Fz8wG1Zb4Qh9LC1/MkcyT3YlDXG3Rsgg==",
1002
- "cpu": [
1003
- "arm64"
1004
- ],
1005
- "dev": true,
1006
- "libc": [
1007
- "musl"
1008
- ],
1009
- "license": "MIT",
1010
- "optional": true,
1011
- "os": [
1012
- "linux"
1013
- ],
1014
- "engines": {
1015
- "node": "^20.19.0 || >=22.12.0"
1016
- }
1017
- },
1018
- "node_modules/@rolldown/binding-linux-ppc64-gnu": {
1019
- "version": "1.0.1",
1020
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.1.tgz",
1021
- "integrity": "sha512-zY1bul7OWr7DFBiJ++wofXvnr8B45ce3QsQUhKrIhXsygAh7bTkwyeM1bi1a2g5C/yC/N8TZyGDEoMfm/l9mpg==",
1022
- "cpu": [
1023
- "ppc64"
1024
- ],
1025
- "dev": true,
1026
- "libc": [
1027
- "glibc"
1028
- ],
1029
- "license": "MIT",
1030
- "optional": true,
1031
- "os": [
1032
- "linux"
1033
- ],
1034
- "engines": {
1035
- "node": "^20.19.0 || >=22.12.0"
1036
- }
1037
- },
1038
- "node_modules/@rolldown/binding-linux-s390x-gnu": {
1039
- "version": "1.0.1",
1040
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.1.tgz",
1041
- "integrity": "sha512-0frlsT/f4Ft6I7SMESTKnF3cZsdicQn1dCMkF/jT9wDLE+gGoiQfv1nmT9e+s7s/fekvvy6tZM2jHvI2tkbJDQ==",
1042
- "cpu": [
1043
- "s390x"
1044
- ],
1045
- "dev": true,
1046
- "libc": [
1047
- "glibc"
1048
- ],
1049
- "license": "MIT",
1050
- "optional": true,
1051
- "os": [
1052
- "linux"
1053
- ],
1054
- "engines": {
1055
- "node": "^20.19.0 || >=22.12.0"
1056
- }
1057
- },
1058
- "node_modules/@rolldown/binding-linux-x64-gnu": {
1059
- "version": "1.0.1",
1060
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.1.tgz",
1061
- "integrity": "sha512-XABVmGp9Tg0WspTVvwduTc4fpqy6JnAUrSQe6OuyqD/03nI7r0O9OWUkMIwFrjKAIqolvqoA4ZrJppgwE0Gxmw==",
1062
- "cpu": [
1063
- "x64"
1064
- ],
1065
- "dev": true,
1066
- "libc": [
1067
- "glibc"
1068
- ],
1069
- "license": "MIT",
1070
- "optional": true,
1071
- "os": [
1072
- "linux"
1073
- ],
1074
- "engines": {
1075
- "node": "^20.19.0 || >=22.12.0"
1076
- }
1077
- },
1078
- "node_modules/@rolldown/binding-linux-x64-musl": {
1079
- "version": "1.0.1",
1080
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.1.tgz",
1081
- "integrity": "sha512-bV4fzswuzVcKD90o/VM6QqKxnxlDq0g2BISDLNVmxrnhpv1DDbyPhCIjYfvzYLV+MvkKKnQt2Q6AO86SEBULUQ==",
1082
- "cpu": [
1083
- "x64"
1084
- ],
1085
- "dev": true,
1086
- "libc": [
1087
- "musl"
1088
- ],
1089
- "license": "MIT",
1090
- "optional": true,
1091
- "os": [
1092
- "linux"
1093
- ],
1094
- "engines": {
1095
- "node": "^20.19.0 || >=22.12.0"
1096
- }
1097
- },
1098
- "node_modules/@rolldown/binding-openharmony-arm64": {
1099
- "version": "1.0.1",
1100
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.1.tgz",
1101
- "integrity": "sha512-/Mh0Zhq3OP7fVs0kcQHZP6lZEthMGTaSf8UBQYSFEZDWGXXlEC+nJ6EqenaK2t4LBXMe3A+K/G2BVXXdtOr4PQ==",
1102
- "cpu": [
1103
- "arm64"
1104
- ],
1105
- "dev": true,
1106
- "license": "MIT",
1107
- "optional": true,
1108
- "os": [
1109
- "openharmony"
1110
- ],
1111
- "engines": {
1112
- "node": "^20.19.0 || >=22.12.0"
1113
- }
1114
- },
1115
- "node_modules/@rolldown/binding-wasm32-wasi": {
1116
- "version": "1.0.1",
1117
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.1.tgz",
1118
- "integrity": "sha512-+1xc9X45l8ufsBAm6Gjvx2qDRIY9lTVt0cgWNcJ+1gdhXvkbxePA60yRTwSTuXL09CMhyJmjpV7E3NoyxbqFQQ==",
1119
- "cpu": [
1120
- "wasm32"
1121
- ],
1122
- "dev": true,
1123
- "license": "MIT",
1124
- "optional": true,
1125
- "dependencies": {
1126
- "@emnapi/core": "1.10.0",
1127
- "@emnapi/runtime": "1.10.0",
1128
- "@napi-rs/wasm-runtime": "^1.1.4"
1129
- },
1130
- "engines": {
1131
- "node": "^20.19.0 || >=22.12.0"
1132
- }
1133
- },
1134
- "node_modules/@rolldown/binding-win32-arm64-msvc": {
1135
- "version": "1.0.1",
1136
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.1.tgz",
1137
- "integrity": "sha512-1D+UqZdfnuR+Jy1GgMJwi85bD40H21uNmOPRWQhw4oRSuolZ/B5rixZ45DK2KXOTCvmVCecauWgEhbw8bI7tOw==",
1138
- "cpu": [
1139
- "arm64"
1140
- ],
1141
- "dev": true,
1142
- "license": "MIT",
1143
- "optional": true,
1144
- "os": [
1145
- "win32"
1146
- ],
1147
- "engines": {
1148
- "node": "^20.19.0 || >=22.12.0"
1149
- }
1150
- },
1151
- "node_modules/@rolldown/binding-win32-x64-msvc": {
1152
- "version": "1.0.1",
1153
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.1.tgz",
1154
- "integrity": "sha512-INAycaWuhlOK3wk4mRHGsdgwYWmd9cChdPdE9bwWmy6rn9VqVNYNFGhOdXrofXUxwHIncSiPNb8tNm8knDVIeQ==",
1155
- "cpu": [
1156
- "x64"
1157
- ],
1158
- "dev": true,
1159
- "license": "MIT",
1160
- "optional": true,
1161
- "os": [
1162
- "win32"
1163
- ],
1164
- "engines": {
1165
- "node": "^20.19.0 || >=22.12.0"
1166
- }
1167
- },
1168
- "node_modules/@rolldown/pluginutils": {
1169
- "version": "1.0.1",
1170
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
1171
- "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
1172
- "dev": true,
1173
- "license": "MIT"
1174
- },
1175
- "node_modules/@simple-git/args-pathspec": {
1176
- "version": "1.0.3",
1177
- "license": "MIT"
1178
- },
1179
- "node_modules/@simple-git/argv-parser": {
1180
- "version": "1.1.1",
1181
- "license": "MIT",
1182
- "dependencies": {
1183
- "@simple-git/args-pathspec": "^1.0.3"
1184
- }
1185
- },
1186
- "node_modules/@sindresorhus/is": {
1187
- "version": "4.6.0",
1188
- "license": "MIT",
1189
- "engines": {
1190
- "node": ">=10"
1191
- },
1192
- "funding": {
1193
- "url": "https://github.com/sindresorhus/is?sponsor=1"
1194
- }
1195
- },
1196
- "node_modules/@standard-schema/spec": {
1197
- "version": "1.1.0",
1198
- "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
1199
- "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
1200
- "dev": true,
1201
- "license": "MIT"
1202
- },
1203
- "node_modules/@tybys/wasm-util": {
1204
- "version": "0.10.2",
1205
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
1206
- "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
1207
- "dev": true,
1208
- "license": "MIT",
1209
- "optional": true,
1210
- "dependencies": {
1211
- "tslib": "^2.4.0"
1212
- }
1213
- },
1214
- "node_modules/@types/cardinal": {
1215
- "version": "2.1.1",
1216
- "dev": true,
1217
- "license": "MIT"
1218
- },
1219
- "node_modules/@types/chai": {
1220
- "version": "5.2.3",
1221
- "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
1222
- "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
1223
- "dev": true,
1224
- "license": "MIT",
1225
- "dependencies": {
1226
- "@types/deep-eql": "*",
1227
- "assertion-error": "^2.0.1"
1228
- }
1229
- },
1230
- "node_modules/@types/deep-eql": {
1231
- "version": "4.0.2",
1232
- "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
1233
- "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
1234
- "dev": true,
1235
- "license": "MIT"
1236
- },
1237
- "node_modules/@types/diff": {
1238
- "version": "6.0.0",
1239
- "dev": true,
1240
- "license": "MIT"
1241
- },
1242
- "node_modules/@types/estree": {
1243
- "version": "1.0.9",
1244
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
1245
- "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
1246
- "dev": true,
1247
- "license": "MIT"
1248
- },
1249
- "node_modules/@types/marked-terminal": {
1250
- "version": "6.1.1",
1251
- "dev": true,
1252
- "license": "MIT",
1253
- "dependencies": {
1254
- "@types/cardinal": "^2.1",
1255
- "@types/node": "*",
1256
- "chalk": "^5.3.0",
1257
- "marked": ">=6.0.0 <12"
1258
- }
1259
- },
1260
- "node_modules/@types/marked-terminal/node_modules/marked": {
1261
- "version": "11.2.0",
1262
- "dev": true,
1263
- "license": "MIT",
1264
- "bin": {
1265
- "marked": "bin/marked.js"
1266
- },
1267
- "engines": {
1268
- "node": ">= 18"
1269
- }
1270
- },
1271
- "node_modules/@types/node": {
1272
- "version": "22.19.10",
1273
- "devOptional": true,
1274
- "license": "MIT",
1275
- "dependencies": {
1276
- "undici-types": "~6.21.0"
1277
- }
1278
- },
1279
- "node_modules/@types/proper-lockfile": {
1280
- "version": "4.1.4",
1281
- "license": "MIT",
1282
- "dependencies": {
1283
- "@types/retry": "*"
1284
- }
1285
- },
1286
- "node_modules/@types/retry": {
1287
- "version": "0.12.5",
1288
- "license": "MIT"
1289
- },
1290
- "node_modules/@vitest/expect": {
1291
- "version": "4.1.6",
1292
- "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.6.tgz",
1293
- "integrity": "sha512-7EHDquPthALSV0jhhjgEW8FXaviMx7rSqu8W6oqCoAuOhKov814P99QDV1pxMA3QPv21YudvJngIhjrNI4opLg==",
1294
- "dev": true,
1295
- "license": "MIT",
1296
- "dependencies": {
1297
- "@standard-schema/spec": "^1.1.0",
1298
- "@types/chai": "^5.2.2",
1299
- "@vitest/spy": "4.1.6",
1300
- "@vitest/utils": "4.1.6",
1301
- "chai": "^6.2.2",
1302
- "tinyrainbow": "^3.1.0"
1303
- },
1304
- "funding": {
1305
- "url": "https://opencollective.com/vitest"
1306
- }
1307
- },
1308
- "node_modules/@vitest/mocker": {
1309
- "version": "4.1.6",
1310
- "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.6.tgz",
1311
- "integrity": "sha512-MCFc63czMjEInOlcY2cpQCvCN+KgbAn+60xu9cMgP4sKaLC5JNAKw7JH8QdAnoAC88hW1IiSNZ+GgVXlN1UcMQ==",
1312
- "dev": true,
1313
- "license": "MIT",
1314
- "dependencies": {
1315
- "@vitest/spy": "4.1.6",
1316
- "estree-walker": "^3.0.3",
1317
- "magic-string": "^0.30.21"
1318
- },
1319
- "funding": {
1320
- "url": "https://opencollective.com/vitest"
1321
- },
1322
- "peerDependencies": {
1323
- "msw": "^2.4.9",
1324
- "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
1325
- },
1326
- "peerDependenciesMeta": {
1327
- "msw": {
1328
- "optional": true
1329
- },
1330
- "vite": {
1331
- "optional": true
1332
- }
1333
- }
1334
- },
1335
- "node_modules/@vitest/pretty-format": {
1336
- "version": "4.1.6",
1337
- "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.6.tgz",
1338
- "integrity": "sha512-h5SxD/IzNhZYnrSZRsUZQIC+vD0GY8cUvq0iwsmkFKixRCKLLWqCXa/FIQ4S1R+sI+PGoojkHsdNrbZiM9Qpgw==",
1339
- "dev": true,
1340
- "license": "MIT",
1341
- "dependencies": {
1342
- "tinyrainbow": "^3.1.0"
1343
- },
1344
- "funding": {
1345
- "url": "https://opencollective.com/vitest"
1346
- }
1347
- },
1348
- "node_modules/@vitest/runner": {
1349
- "version": "4.1.6",
1350
- "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.6.tgz",
1351
- "integrity": "sha512-nOPCmn2+yD0ZNmKdsXGv/UxMMWbMuKeD6GyYncNwdkYDxpQvrPSKYj2rWuDjC2Y4b6w6hjip5dBKFzEUuZe3vA==",
1352
- "dev": true,
1353
- "license": "MIT",
1354
- "dependencies": {
1355
- "@vitest/utils": "4.1.6",
1356
- "pathe": "^2.0.3"
1357
- },
1358
- "funding": {
1359
- "url": "https://opencollective.com/vitest"
1360
- }
1361
- },
1362
- "node_modules/@vitest/snapshot": {
1363
- "version": "4.1.6",
1364
- "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.6.tgz",
1365
- "integrity": "sha512-YhsdE6xAVfTDmzjxL2ZDUvjj+ZsgyOKe+TdQzqkD72wIOmHka8NuGQ6NpTNZv9D2Z63fbwWKJPeVpEw4EQgYxw==",
1366
- "dev": true,
1367
- "license": "MIT",
1368
- "dependencies": {
1369
- "@vitest/pretty-format": "4.1.6",
1370
- "@vitest/utils": "4.1.6",
1371
- "magic-string": "^0.30.21",
1372
- "pathe": "^2.0.3"
1373
- },
1374
- "funding": {
1375
- "url": "https://opencollective.com/vitest"
1376
- }
1377
- },
1378
- "node_modules/@vitest/spy": {
1379
- "version": "4.1.6",
1380
- "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.6.tgz",
1381
- "integrity": "sha512-JFKxMx6udhwKh/Ldo270e17QX710vgunMkuPAvXjHSvC6oqLWAHhVhjg/I71q0u0CBSErIODV1Kjv0FQNSWjdg==",
1382
- "dev": true,
1383
- "license": "MIT",
1384
- "funding": {
1385
- "url": "https://opencollective.com/vitest"
1386
- }
1387
- },
1388
- "node_modules/@vitest/utils": {
1389
- "version": "4.1.6",
1390
- "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.6.tgz",
1391
- "integrity": "sha512-FxIY+U81R3LGKCxaHHFRQ5+g6/iRgGLmeHWdp2Amj4ljQRrEIWHmZyDfDYBRZlpyqA7qKxtS9DD1dhk8RnRIVQ==",
1392
- "dev": true,
1393
- "license": "MIT",
1394
- "dependencies": {
1395
- "@vitest/pretty-format": "4.1.6",
1396
- "convert-source-map": "^2.0.0",
1397
- "tinyrainbow": "^3.1.0"
1398
- },
1399
- "funding": {
1400
- "url": "https://opencollective.com/vitest"
1401
- }
1402
- },
1403
- "node_modules/@xterm/headless": {
1404
- "version": "6.0.0",
1405
- "license": "MIT",
1406
- "workspaces": [
1407
- "addons/*"
1408
- ]
1409
- },
1410
- "node_modules/@zed-industries/agent-client-protocol": {
1411
- "version": "0.4.5",
1412
- "license": "Apache-2.0",
1413
- "dependencies": {
1414
- "zod": "^3.0.0"
1415
- }
1416
- },
1417
- "node_modules/@zed-industries/agent-client-protocol/node_modules/zod": {
1418
- "version": "3.25.76",
1419
- "license": "MIT",
1420
- "funding": {
1421
- "url": "https://github.com/sponsors/colinhacks"
1422
- }
1423
- },
1424
- "node_modules/ansi-escapes": {
1425
- "version": "7.3.0",
1426
- "license": "MIT",
1427
- "dependencies": {
1428
- "environment": "^1.0.0"
1429
- },
1430
- "engines": {
1431
- "node": ">=18"
1432
- },
1433
- "funding": {
1434
- "url": "https://github.com/sponsors/sindresorhus"
1435
- }
1436
- },
1437
- "node_modules/ansi-regex": {
1438
- "version": "6.2.2",
1439
- "license": "MIT",
1440
- "engines": {
1441
- "node": ">=12"
1442
- },
1443
- "funding": {
1444
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
1445
- }
1446
- },
1447
- "node_modules/ansi-styles": {
1448
- "version": "4.3.0",
1449
- "license": "MIT",
1450
- "dependencies": {
1451
- "color-convert": "^2.0.1"
1452
- },
1453
- "engines": {
1454
- "node": ">=8"
1455
- },
1456
- "funding": {
1457
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1458
- }
1459
- },
1460
- "node_modules/any-promise": {
1461
- "version": "1.3.0",
1462
- "license": "MIT"
1463
- },
1464
- "node_modules/assertion-error": {
1465
- "version": "2.0.1",
1466
- "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
1467
- "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
1468
- "dev": true,
1469
- "license": "MIT",
1470
- "engines": {
1471
- "node": ">=12"
1472
- }
1473
- },
1474
- "node_modules/chai": {
1475
- "version": "6.2.2",
1476
- "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
1477
- "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
1478
- "dev": true,
1479
- "license": "MIT",
1480
- "engines": {
1481
- "node": ">=18"
1482
- }
1483
- },
1484
- "node_modules/chalk": {
1485
- "version": "5.6.2",
1486
- "license": "MIT",
1487
- "engines": {
1488
- "node": "^12.17.0 || ^14.13 || >=16.0.0"
1489
- },
1490
- "funding": {
1491
- "url": "https://github.com/chalk/chalk?sponsor=1"
1492
- }
1493
- },
1494
- "node_modules/char-regex": {
1495
- "version": "1.0.2",
1496
- "license": "MIT",
1497
- "engines": {
1498
- "node": ">=10"
1499
- }
1500
- },
1501
- "node_modules/chardet": {
1502
- "version": "2.1.1",
1503
- "license": "MIT"
1504
- },
1505
- "node_modules/cli-cursor": {
1506
- "version": "5.0.0",
1507
- "license": "MIT",
1508
- "dependencies": {
1509
- "restore-cursor": "^5.0.0"
1510
- },
1511
- "engines": {
1512
- "node": ">=18"
1513
- },
1514
- "funding": {
1515
- "url": "https://github.com/sponsors/sindresorhus"
1516
- }
1517
- },
1518
- "node_modules/cli-highlight": {
1519
- "version": "2.1.11",
1520
- "license": "ISC",
1521
- "dependencies": {
1522
- "chalk": "^4.0.0",
1523
- "highlight.js": "^10.7.1",
1524
- "mz": "^2.4.0",
1525
- "parse5": "^5.1.1",
1526
- "parse5-htmlparser2-tree-adapter": "^6.0.0",
1527
- "yargs": "^16.0.0"
1528
- },
1529
- "bin": {
1530
- "highlight": "bin/highlight"
1531
- },
1532
- "engines": {
1533
- "node": ">=8.0.0",
1534
- "npm": ">=5.0.0"
1535
- }
1536
- },
1537
- "node_modules/cli-highlight/node_modules/chalk": {
1538
- "version": "4.1.2",
1539
- "license": "MIT",
1540
- "dependencies": {
1541
- "ansi-styles": "^4.1.0",
1542
- "supports-color": "^7.1.0"
1543
- },
1544
- "engines": {
1545
- "node": ">=10"
1546
- },
1547
- "funding": {
1548
- "url": "https://github.com/chalk/chalk?sponsor=1"
1549
- }
1550
- },
1551
- "node_modules/cli-spinners": {
1552
- "version": "2.9.2",
1553
- "license": "MIT",
1554
- "engines": {
1555
- "node": ">=6"
1556
- },
1557
- "funding": {
1558
- "url": "https://github.com/sponsors/sindresorhus"
1559
- }
1560
- },
1561
- "node_modules/cli-table3": {
1562
- "version": "0.6.5",
1563
- "license": "MIT",
1564
- "dependencies": {
1565
- "string-width": "^4.2.0"
1566
- },
1567
- "engines": {
1568
- "node": "10.* || >= 12.*"
1569
- },
1570
- "optionalDependencies": {
1571
- "@colors/colors": "1.5.0"
1572
- }
1573
- },
1574
- "node_modules/cli-table3/node_modules/string-width": {
1575
- "version": "4.2.3",
1576
- "license": "MIT",
1577
- "dependencies": {
1578
- "emoji-regex": "^8.0.0",
1579
- "is-fullwidth-code-point": "^3.0.0",
1580
- "strip-ansi": "^6.0.1"
1581
- },
1582
- "engines": {
1583
- "node": ">=8"
1584
- }
1585
- },
1586
- "node_modules/cli-table3/node_modules/string-width/node_modules/emoji-regex": {
1587
- "version": "8.0.0",
1588
- "license": "MIT"
1589
- },
1590
- "node_modules/cli-table3/node_modules/string-width/node_modules/strip-ansi": {
1591
- "version": "6.0.1",
1592
- "license": "MIT",
1593
- "dependencies": {
1594
- "ansi-regex": "^5.0.1"
1595
- },
1596
- "engines": {
1597
- "node": ">=8"
1598
- }
1599
- },
1600
- "node_modules/cli-table3/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex": {
1601
- "version": "5.0.1",
1602
- "license": "MIT",
1603
- "engines": {
1604
- "node": ">=8"
1605
- }
1606
- },
1607
- "node_modules/cli-width": {
1608
- "version": "4.1.0",
1609
- "license": "ISC",
1610
- "engines": {
1611
- "node": ">= 12"
1612
- }
1613
- },
1614
- "node_modules/cliui": {
1615
- "version": "7.0.4",
1616
- "license": "ISC",
1617
- "dependencies": {
1618
- "string-width": "^4.2.0",
1619
- "strip-ansi": "^6.0.0",
1620
- "wrap-ansi": "^7.0.0"
1621
- }
1622
- },
1623
- "node_modules/cliui/node_modules/string-width": {
1624
- "version": "4.2.3",
1625
- "license": "MIT",
1626
- "dependencies": {
1627
- "emoji-regex": "^8.0.0",
1628
- "is-fullwidth-code-point": "^3.0.0",
1629
- "strip-ansi": "^6.0.1"
1630
- },
1631
- "engines": {
1632
- "node": ">=8"
1633
- }
1634
- },
1635
- "node_modules/cliui/node_modules/string-width/node_modules/emoji-regex": {
1636
- "version": "8.0.0",
1637
- "license": "MIT"
1638
- },
1639
- "node_modules/cliui/node_modules/strip-ansi": {
1640
- "version": "6.0.1",
1641
- "license": "MIT",
1642
- "dependencies": {
1643
- "ansi-regex": "^5.0.1"
1644
- },
1645
- "engines": {
1646
- "node": ">=8"
1647
- }
1648
- },
1649
- "node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex": {
1650
- "version": "5.0.1",
1651
- "license": "MIT",
1652
- "engines": {
1653
- "node": ">=8"
1654
- }
1655
- },
1656
- "node_modules/cliui/node_modules/wrap-ansi": {
1657
- "version": "7.0.0",
1658
- "license": "MIT",
1659
- "dependencies": {
1660
- "ansi-styles": "^4.0.0",
1661
- "string-width": "^4.1.0",
1662
- "strip-ansi": "^6.0.0"
1663
- },
1664
- "engines": {
1665
- "node": ">=10"
1666
- },
1667
- "funding": {
1668
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
1669
- }
1670
- },
1671
- "node_modules/color-convert": {
1672
- "version": "2.0.1",
1673
- "license": "MIT",
1674
- "dependencies": {
1675
- "color-name": "~1.1.4"
1676
- },
1677
- "engines": {
1678
- "node": ">=7.0.0"
1679
- }
1680
- },
1681
- "node_modules/color-name": {
1682
- "version": "1.1.4",
1683
- "license": "MIT"
1684
- },
1685
- "node_modules/commander": {
1686
- "version": "12.1.0",
1687
- "license": "MIT",
1688
- "engines": {
1689
- "node": ">=18"
1690
- }
1691
- },
1692
- "node_modules/convert-source-map": {
1693
- "version": "2.0.0",
1694
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
1695
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1696
- "dev": true,
1697
- "license": "MIT"
1698
- },
1699
- "node_modules/croner": {
1700
- "version": "9.1.0",
1701
- "license": "MIT",
1702
- "engines": {
1703
- "node": ">=18.0"
1704
- }
1705
- },
1706
- "node_modules/debug": {
1707
- "version": "4.4.3",
1708
- "license": "MIT",
1709
- "dependencies": {
1710
- "ms": "^2.1.3"
1711
- },
1712
- "engines": {
1713
- "node": ">=6.0"
1714
- },
1715
- "peerDependenciesMeta": {
1716
- "supports-color": {
1717
- "optional": true
1718
- }
1719
- }
1720
- },
1721
- "node_modules/detect-libc": {
1722
- "version": "2.1.2",
1723
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1724
- "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1725
- "dev": true,
1726
- "license": "Apache-2.0",
1727
- "engines": {
1728
- "node": ">=8"
1729
- }
1730
- },
1731
- "node_modules/diff": {
1732
- "version": "8.0.4",
1733
- "license": "BSD-3-Clause",
1734
- "engines": {
1735
- "node": ">=0.3.1"
1736
- }
1737
- },
1738
- "node_modules/emoji-regex": {
1739
- "version": "10.6.0",
1740
- "license": "MIT"
1741
- },
1742
- "node_modules/emojilib": {
1743
- "version": "2.4.0",
1744
- "license": "MIT"
1745
- },
1746
- "node_modules/environment": {
1747
- "version": "1.1.0",
1748
- "license": "MIT",
1749
- "engines": {
1750
- "node": ">=18"
1751
- },
1752
- "funding": {
1753
- "url": "https://github.com/sponsors/sindresorhus"
1754
- }
1755
- },
1756
- "node_modules/es-module-lexer": {
1757
- "version": "2.1.0",
1758
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
1759
- "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
1760
- "dev": true,
1761
- "license": "MIT"
1762
- },
1763
- "node_modules/esbuild": {
1764
- "version": "0.28.0",
1765
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.0.tgz",
1766
- "integrity": "sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==",
1767
- "dev": true,
1768
- "hasInstallScript": true,
1769
- "license": "MIT",
1770
- "bin": {
1771
- "esbuild": "bin/esbuild"
1772
- },
1773
- "engines": {
1774
- "node": ">=18"
1775
- },
1776
- "optionalDependencies": {
1777
- "@esbuild/aix-ppc64": "0.28.0",
1778
- "@esbuild/android-arm": "0.28.0",
1779
- "@esbuild/android-arm64": "0.28.0",
1780
- "@esbuild/android-x64": "0.28.0",
1781
- "@esbuild/darwin-arm64": "0.28.0",
1782
- "@esbuild/darwin-x64": "0.28.0",
1783
- "@esbuild/freebsd-arm64": "0.28.0",
1784
- "@esbuild/freebsd-x64": "0.28.0",
1785
- "@esbuild/linux-arm": "0.28.0",
1786
- "@esbuild/linux-arm64": "0.28.0",
1787
- "@esbuild/linux-ia32": "0.28.0",
1788
- "@esbuild/linux-loong64": "0.28.0",
1789
- "@esbuild/linux-mips64el": "0.28.0",
1790
- "@esbuild/linux-ppc64": "0.28.0",
1791
- "@esbuild/linux-riscv64": "0.28.0",
1792
- "@esbuild/linux-s390x": "0.28.0",
1793
- "@esbuild/linux-x64": "0.28.0",
1794
- "@esbuild/netbsd-arm64": "0.28.0",
1795
- "@esbuild/netbsd-x64": "0.28.0",
1796
- "@esbuild/openbsd-arm64": "0.28.0",
1797
- "@esbuild/openbsd-x64": "0.28.0",
1798
- "@esbuild/openharmony-arm64": "0.28.0",
1799
- "@esbuild/sunos-x64": "0.28.0",
1800
- "@esbuild/win32-arm64": "0.28.0",
1801
- "@esbuild/win32-ia32": "0.28.0",
1802
- "@esbuild/win32-x64": "0.28.0"
1803
- }
1804
- },
1805
- "node_modules/escalade": {
1806
- "version": "3.2.0",
1807
- "license": "MIT",
1808
- "engines": {
1809
- "node": ">=6"
1810
- }
1811
- },
1812
- "node_modules/estree-walker": {
1813
- "version": "3.0.3",
1814
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
1815
- "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
1816
- "dev": true,
1817
- "license": "MIT",
1818
- "dependencies": {
1819
- "@types/estree": "^1.0.0"
1820
- }
1821
- },
1822
- "node_modules/expect-type": {
1823
- "version": "1.3.0",
1824
- "dev": true,
1825
- "license": "Apache-2.0",
1826
- "engines": {
1827
- "node": ">=12.0.0"
1828
- }
1829
- },
1830
- "node_modules/fdir": {
1831
- "version": "6.5.0",
1832
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1833
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1834
- "dev": true,
1835
- "license": "MIT",
1836
- "engines": {
1837
- "node": ">=12.0.0"
1838
- },
1839
- "peerDependencies": {
1840
- "picomatch": "^3 || ^4"
1841
- },
1842
- "peerDependenciesMeta": {
1843
- "picomatch": {
1844
- "optional": true
1845
- }
1846
- }
1847
- },
1848
- "node_modules/fsevents": {
1849
- "version": "2.3.2",
1850
- "dev": true,
1851
- "license": "MIT",
1852
- "optional": true,
1853
- "os": [
1854
- "darwin"
1855
- ],
1856
- "engines": {
1857
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1858
- }
1859
- },
1860
- "node_modules/get-caller-file": {
1861
- "version": "2.0.5",
1862
- "license": "ISC",
1863
- "engines": {
1864
- "node": "6.* || 8.* || >= 10.*"
1865
- }
1866
- },
1867
- "node_modules/get-east-asian-width": {
1868
- "version": "1.4.0",
1869
- "license": "MIT",
1870
- "engines": {
1871
- "node": ">=18"
1872
- },
1873
- "funding": {
1874
- "url": "https://github.com/sponsors/sindresorhus"
1875
- }
1876
- },
1877
- "node_modules/graceful-fs": {
1878
- "version": "4.2.11",
1879
- "license": "ISC"
1880
- },
1881
- "node_modules/has-flag": {
1882
- "version": "4.0.0",
1883
- "license": "MIT",
1884
- "engines": {
1885
- "node": ">=8"
1886
- }
1887
- },
1888
- "node_modules/highlight.js": {
1889
- "version": "10.7.3",
1890
- "license": "BSD-3-Clause",
1891
- "engines": {
1892
- "node": "*"
1893
- }
1894
- },
1895
- "node_modules/iconv-lite": {
1896
- "version": "0.7.2",
1897
- "license": "MIT",
1898
- "dependencies": {
1899
- "safer-buffer": ">= 2.1.2 < 3.0.0"
1900
- },
1901
- "engines": {
1902
- "node": ">=0.10.0"
1903
- },
1904
- "funding": {
1905
- "type": "opencollective",
1906
- "url": "https://opencollective.com/express"
1907
- }
1908
- },
1909
- "node_modules/is-fullwidth-code-point": {
1910
- "version": "3.0.0",
1911
- "license": "MIT",
1912
- "engines": {
1913
- "node": ">=8"
1914
- }
1915
- },
1916
- "node_modules/is-interactive": {
1917
- "version": "2.0.0",
1918
- "license": "MIT",
1919
- "engines": {
1920
- "node": ">=12"
1921
- },
1922
- "funding": {
1923
- "url": "https://github.com/sponsors/sindresorhus"
1924
- }
1925
- },
1926
- "node_modules/is-unicode-supported": {
1927
- "version": "2.1.0",
1928
- "license": "MIT",
1929
- "engines": {
1930
- "node": ">=18"
1931
- },
1932
- "funding": {
1933
- "url": "https://github.com/sponsors/sindresorhus"
1934
- }
1935
- },
1936
- "node_modules/lightningcss": {
1937
- "version": "1.32.0",
1938
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
1939
- "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1940
- "dev": true,
1941
- "license": "MPL-2.0",
1942
- "dependencies": {
1943
- "detect-libc": "^2.0.3"
1944
- },
1945
- "engines": {
1946
- "node": ">= 12.0.0"
1947
- },
1948
- "funding": {
1949
- "type": "opencollective",
1950
- "url": "https://opencollective.com/parcel"
1951
- },
1952
- "optionalDependencies": {
1953
- "lightningcss-android-arm64": "1.32.0",
1954
- "lightningcss-darwin-arm64": "1.32.0",
1955
- "lightningcss-darwin-x64": "1.32.0",
1956
- "lightningcss-freebsd-x64": "1.32.0",
1957
- "lightningcss-linux-arm-gnueabihf": "1.32.0",
1958
- "lightningcss-linux-arm64-gnu": "1.32.0",
1959
- "lightningcss-linux-arm64-musl": "1.32.0",
1960
- "lightningcss-linux-x64-gnu": "1.32.0",
1961
- "lightningcss-linux-x64-musl": "1.32.0",
1962
- "lightningcss-win32-arm64-msvc": "1.32.0",
1963
- "lightningcss-win32-x64-msvc": "1.32.0"
1964
- }
1965
- },
1966
- "node_modules/lightningcss-android-arm64": {
1967
- "version": "1.32.0",
1968
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1969
- "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1970
- "cpu": [
1971
- "arm64"
1972
- ],
1973
- "dev": true,
1974
- "license": "MPL-2.0",
1975
- "optional": true,
1976
- "os": [
1977
- "android"
1978
- ],
1979
- "engines": {
1980
- "node": ">= 12.0.0"
1981
- },
1982
- "funding": {
1983
- "type": "opencollective",
1984
- "url": "https://opencollective.com/parcel"
1985
- }
1986
- },
1987
- "node_modules/lightningcss-darwin-arm64": {
1988
- "version": "1.32.0",
1989
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
1990
- "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
1991
- "cpu": [
1992
- "arm64"
1993
- ],
1994
- "dev": true,
1995
- "license": "MPL-2.0",
1996
- "optional": true,
1997
- "os": [
1998
- "darwin"
1999
- ],
2000
- "engines": {
2001
- "node": ">= 12.0.0"
2002
- },
2003
- "funding": {
2004
- "type": "opencollective",
2005
- "url": "https://opencollective.com/parcel"
2006
- }
2007
- },
2008
- "node_modules/lightningcss-darwin-x64": {
2009
- "version": "1.32.0",
2010
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
2011
- "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
2012
- "cpu": [
2013
- "x64"
2014
- ],
2015
- "dev": true,
2016
- "license": "MPL-2.0",
2017
- "optional": true,
2018
- "os": [
2019
- "darwin"
2020
- ],
2021
- "engines": {
2022
- "node": ">= 12.0.0"
2023
- },
2024
- "funding": {
2025
- "type": "opencollective",
2026
- "url": "https://opencollective.com/parcel"
2027
- }
2028
- },
2029
- "node_modules/lightningcss-freebsd-x64": {
2030
- "version": "1.32.0",
2031
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
2032
- "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
2033
- "cpu": [
2034
- "x64"
2035
- ],
2036
- "dev": true,
2037
- "license": "MPL-2.0",
2038
- "optional": true,
2039
- "os": [
2040
- "freebsd"
2041
- ],
2042
- "engines": {
2043
- "node": ">= 12.0.0"
2044
- },
2045
- "funding": {
2046
- "type": "opencollective",
2047
- "url": "https://opencollective.com/parcel"
2048
- }
2049
- },
2050
- "node_modules/lightningcss-linux-arm-gnueabihf": {
2051
- "version": "1.32.0",
2052
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
2053
- "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
2054
- "cpu": [
2055
- "arm"
2056
- ],
2057
- "dev": true,
2058
- "license": "MPL-2.0",
2059
- "optional": true,
2060
- "os": [
2061
- "linux"
2062
- ],
2063
- "engines": {
2064
- "node": ">= 12.0.0"
2065
- },
2066
- "funding": {
2067
- "type": "opencollective",
2068
- "url": "https://opencollective.com/parcel"
2069
- }
2070
- },
2071
- "node_modules/lightningcss-linux-arm64-gnu": {
2072
- "version": "1.32.0",
2073
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
2074
- "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
2075
- "cpu": [
2076
- "arm64"
2077
- ],
2078
- "dev": true,
2079
- "libc": [
2080
- "glibc"
2081
- ],
2082
- "license": "MPL-2.0",
2083
- "optional": true,
2084
- "os": [
2085
- "linux"
2086
- ],
2087
- "engines": {
2088
- "node": ">= 12.0.0"
2089
- },
2090
- "funding": {
2091
- "type": "opencollective",
2092
- "url": "https://opencollective.com/parcel"
2093
- }
2094
- },
2095
- "node_modules/lightningcss-linux-arm64-musl": {
2096
- "version": "1.32.0",
2097
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
2098
- "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
2099
- "cpu": [
2100
- "arm64"
2101
- ],
2102
- "dev": true,
2103
- "libc": [
2104
- "musl"
2105
- ],
2106
- "license": "MPL-2.0",
2107
- "optional": true,
2108
- "os": [
2109
- "linux"
2110
- ],
2111
- "engines": {
2112
- "node": ">= 12.0.0"
2113
- },
2114
- "funding": {
2115
- "type": "opencollective",
2116
- "url": "https://opencollective.com/parcel"
2117
- }
2118
- },
2119
- "node_modules/lightningcss-linux-x64-gnu": {
2120
- "version": "1.32.0",
2121
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
2122
- "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
2123
- "cpu": [
2124
- "x64"
2125
- ],
2126
- "dev": true,
2127
- "libc": [
2128
- "glibc"
2129
- ],
2130
- "license": "MPL-2.0",
2131
- "optional": true,
2132
- "os": [
2133
- "linux"
2134
- ],
2135
- "engines": {
2136
- "node": ">= 12.0.0"
2137
- },
2138
- "funding": {
2139
- "type": "opencollective",
2140
- "url": "https://opencollective.com/parcel"
2141
- }
2142
- },
2143
- "node_modules/lightningcss-linux-x64-musl": {
2144
- "version": "1.32.0",
2145
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
2146
- "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
2147
- "cpu": [
2148
- "x64"
2149
- ],
2150
- "dev": true,
2151
- "libc": [
2152
- "musl"
2153
- ],
2154
- "license": "MPL-2.0",
2155
- "optional": true,
2156
- "os": [
2157
- "linux"
2158
- ],
2159
- "engines": {
2160
- "node": ">= 12.0.0"
2161
- },
2162
- "funding": {
2163
- "type": "opencollective",
2164
- "url": "https://opencollective.com/parcel"
2165
- }
2166
- },
2167
- "node_modules/lightningcss-win32-arm64-msvc": {
2168
- "version": "1.32.0",
2169
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
2170
- "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
2171
- "cpu": [
2172
- "arm64"
2173
- ],
2174
- "dev": true,
2175
- "license": "MPL-2.0",
2176
- "optional": true,
2177
- "os": [
2178
- "win32"
2179
- ],
2180
- "engines": {
2181
- "node": ">= 12.0.0"
2182
- },
2183
- "funding": {
2184
- "type": "opencollective",
2185
- "url": "https://opencollective.com/parcel"
2186
- }
2187
- },
2188
- "node_modules/lightningcss-win32-x64-msvc": {
2189
- "version": "1.32.0",
2190
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2191
- "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2192
- "cpu": [
2193
- "x64"
2194
- ],
2195
- "dev": true,
2196
- "license": "MPL-2.0",
2197
- "optional": true,
2198
- "os": [
2199
- "win32"
2200
- ],
2201
- "engines": {
2202
- "node": ">= 12.0.0"
2203
- },
2204
- "funding": {
2205
- "type": "opencollective",
2206
- "url": "https://opencollective.com/parcel"
2207
- }
2208
- },
2209
- "node_modules/log-symbols": {
2210
- "version": "6.0.0",
2211
- "license": "MIT",
2212
- "dependencies": {
2213
- "chalk": "^5.3.0",
2214
- "is-unicode-supported": "^1.3.0"
2215
- },
2216
- "engines": {
2217
- "node": ">=18"
2218
- },
2219
- "funding": {
2220
- "url": "https://github.com/sponsors/sindresorhus"
2221
- }
2222
- },
2223
- "node_modules/log-symbols/node_modules/is-unicode-supported": {
2224
- "version": "1.3.0",
2225
- "license": "MIT",
2226
- "engines": {
2227
- "node": ">=12"
2228
- },
2229
- "funding": {
2230
- "url": "https://github.com/sponsors/sindresorhus"
2231
- }
2232
- },
2233
- "node_modules/magic-string": {
2234
- "version": "0.30.21",
2235
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2236
- "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2237
- "dev": true,
2238
- "license": "MIT",
2239
- "dependencies": {
2240
- "@jridgewell/sourcemap-codec": "^1.5.5"
2241
- }
2242
- },
2243
- "node_modules/marked": {
2244
- "version": "15.0.12",
2245
- "license": "MIT",
2246
- "bin": {
2247
- "marked": "bin/marked.js"
2248
- },
2249
- "engines": {
2250
- "node": ">= 18"
2251
- }
2252
- },
2253
- "node_modules/marked-terminal": {
2254
- "version": "7.3.0",
2255
- "license": "MIT",
2256
- "dependencies": {
2257
- "ansi-escapes": "^7.0.0",
2258
- "ansi-regex": "^6.1.0",
2259
- "chalk": "^5.4.1",
2260
- "cli-highlight": "^2.1.11",
2261
- "cli-table3": "^0.6.5",
2262
- "node-emoji": "^2.2.0",
2263
- "supports-hyperlinks": "^3.1.0"
2264
- },
2265
- "engines": {
2266
- "node": ">=16.0.0"
2267
- },
2268
- "peerDependencies": {
2269
- "marked": ">=1 <16"
2270
- }
2271
- },
2272
- "node_modules/mimic-function": {
2273
- "version": "5.0.1",
2274
- "license": "MIT",
2275
- "engines": {
2276
- "node": ">=18"
2277
- },
2278
- "funding": {
2279
- "url": "https://github.com/sponsors/sindresorhus"
2280
- }
2281
- },
2282
- "node_modules/ms": {
2283
- "version": "2.1.3",
2284
- "license": "MIT"
2285
- },
2286
- "node_modules/mute-stream": {
2287
- "version": "2.0.0",
2288
- "license": "ISC",
2289
- "engines": {
2290
- "node": "^18.17.0 || >=20.5.0"
2291
- }
2292
- },
2293
- "node_modules/mz": {
2294
- "version": "2.7.0",
2295
- "license": "MIT",
2296
- "dependencies": {
2297
- "any-promise": "^1.0.0",
2298
- "object-assign": "^4.0.1",
2299
- "thenify-all": "^1.0.0"
2300
- }
2301
- },
2302
- "node_modules/nanoid": {
2303
- "version": "3.3.12",
2304
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
2305
- "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
2306
- "dev": true,
2307
- "funding": [
2308
- {
2309
- "type": "github",
2310
- "url": "https://github.com/sponsors/ai"
2311
- }
2312
- ],
2313
- "license": "MIT",
2314
- "bin": {
2315
- "nanoid": "bin/nanoid.cjs"
2316
- },
2317
- "engines": {
2318
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2319
- }
2320
- },
2321
- "node_modules/node-addon-api": {
2322
- "version": "7.1.1",
2323
- "license": "MIT"
2324
- },
2325
- "node_modules/node-emoji": {
2326
- "version": "2.2.0",
2327
- "license": "MIT",
2328
- "dependencies": {
2329
- "@sindresorhus/is": "^4.6.0",
2330
- "char-regex": "^1.0.2",
2331
- "emojilib": "^2.4.0",
2332
- "skin-tone": "^2.0.0"
2333
- },
2334
- "engines": {
2335
- "node": ">=18"
2336
- }
2337
- },
2338
- "node_modules/node-pty": {
2339
- "version": "1.1.0",
2340
- "hasInstallScript": true,
2341
- "license": "MIT",
2342
- "dependencies": {
2343
- "node-addon-api": "^7.1.0"
2344
- }
2345
- },
2346
- "node_modules/object-assign": {
2347
- "version": "4.1.1",
2348
- "license": "MIT",
2349
- "engines": {
2350
- "node": ">=0.10.0"
2351
- }
2352
- },
2353
- "node_modules/obug": {
2354
- "version": "2.1.1",
2355
- "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
2356
- "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
2357
- "dev": true,
2358
- "funding": [
2359
- "https://github.com/sponsors/sxzz",
2360
- "https://opencollective.com/debug"
2361
- ],
2362
- "license": "MIT"
2363
- },
2364
- "node_modules/onetime": {
2365
- "version": "7.0.0",
2366
- "license": "MIT",
2367
- "dependencies": {
2368
- "mimic-function": "^5.0.0"
2369
- },
2370
- "engines": {
2371
- "node": ">=18"
2372
- },
2373
- "funding": {
2374
- "url": "https://github.com/sponsors/sindresorhus"
2375
- }
2376
- },
2377
- "node_modules/ora": {
2378
- "version": "8.2.0",
2379
- "license": "MIT",
2380
- "dependencies": {
2381
- "chalk": "^5.3.0",
2382
- "cli-cursor": "^5.0.0",
2383
- "cli-spinners": "^2.9.2",
2384
- "is-interactive": "^2.0.0",
2385
- "is-unicode-supported": "^2.0.0",
2386
- "log-symbols": "^6.0.0",
2387
- "stdin-discarder": "^0.2.2",
2388
- "string-width": "^7.2.0",
2389
- "strip-ansi": "^7.1.0"
2390
- },
2391
- "engines": {
2392
- "node": ">=18"
2393
- },
2394
- "funding": {
2395
- "url": "https://github.com/sponsors/sindresorhus"
2396
- }
2397
- },
2398
- "node_modules/parse5": {
2399
- "version": "5.1.1",
2400
- "license": "MIT"
2401
- },
2402
- "node_modules/parse5-htmlparser2-tree-adapter": {
2403
- "version": "6.0.1",
2404
- "license": "MIT",
2405
- "dependencies": {
2406
- "parse5": "^6.0.1"
2407
- }
2408
- },
2409
- "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
2410
- "version": "6.0.1",
2411
- "license": "MIT"
2412
- },
2413
- "node_modules/pathe": {
2414
- "version": "2.0.3",
2415
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
2416
- "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
2417
- "dev": true,
2418
- "license": "MIT"
2419
- },
2420
- "node_modules/picocolors": {
2421
- "version": "1.1.1",
2422
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2423
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2424
- "dev": true,
2425
- "license": "ISC"
2426
- },
2427
- "node_modules/picomatch": {
2428
- "version": "4.0.4",
2429
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
2430
- "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
2431
- "dev": true,
2432
- "license": "MIT",
2433
- "engines": {
2434
- "node": ">=12"
2435
- },
2436
- "funding": {
2437
- "url": "https://github.com/sponsors/jonschlinkert"
2438
- }
2439
- },
2440
- "node_modules/playwright": {
2441
- "version": "1.59.1",
2442
- "dev": true,
2443
- "license": "Apache-2.0",
2444
- "dependencies": {
2445
- "playwright-core": "1.59.1"
2446
- },
2447
- "bin": {
2448
- "playwright": "cli.js"
2449
- },
2450
- "engines": {
2451
- "node": ">=18"
2452
- },
2453
- "optionalDependencies": {
2454
- "fsevents": "2.3.2"
2455
- }
2456
- },
2457
- "node_modules/playwright-core": {
2458
- "version": "1.59.1",
2459
- "dev": true,
2460
- "license": "Apache-2.0",
2461
- "bin": {
2462
- "playwright-core": "cli.js"
2463
- },
2464
- "engines": {
2465
- "node": ">=18"
2466
- }
2467
- },
2468
- "node_modules/postcss": {
2469
- "version": "8.5.14",
2470
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
2471
- "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
2472
- "dev": true,
2473
- "funding": [
2474
- {
2475
- "type": "opencollective",
2476
- "url": "https://opencollective.com/postcss/"
2477
- },
2478
- {
2479
- "type": "tidelift",
2480
- "url": "https://tidelift.com/funding/github/npm/postcss"
2481
- },
2482
- {
2483
- "type": "github",
2484
- "url": "https://github.com/sponsors/ai"
2485
- }
2486
- ],
2487
- "license": "MIT",
2488
- "dependencies": {
2489
- "nanoid": "^3.3.11",
2490
- "picocolors": "^1.1.1",
2491
- "source-map-js": "^1.2.1"
2492
- },
2493
- "engines": {
2494
- "node": "^10 || ^12 || >=14"
2495
- }
2496
- },
2497
- "node_modules/proper-lockfile": {
2498
- "version": "4.1.2",
2499
- "license": "MIT",
2500
- "dependencies": {
2501
- "graceful-fs": "^4.2.4",
2502
- "retry": "^0.12.0",
2503
- "signal-exit": "^3.0.2"
2504
- }
2505
- },
2506
- "node_modules/require-directory": {
2507
- "version": "2.1.1",
2508
- "license": "MIT",
2509
- "engines": {
2510
- "node": ">=0.10.0"
2511
- }
2512
- },
2513
- "node_modules/restore-cursor": {
2514
- "version": "5.1.0",
2515
- "license": "MIT",
2516
- "dependencies": {
2517
- "onetime": "^7.0.0",
2518
- "signal-exit": "^4.1.0"
2519
- },
2520
- "engines": {
2521
- "node": ">=18"
2522
- },
2523
- "funding": {
2524
- "url": "https://github.com/sponsors/sindresorhus"
2525
- }
2526
- },
2527
- "node_modules/restore-cursor/node_modules/signal-exit": {
2528
- "version": "4.1.0",
2529
- "license": "ISC",
2530
- "engines": {
2531
- "node": ">=14"
2532
- },
2533
- "funding": {
2534
- "url": "https://github.com/sponsors/isaacs"
2535
- }
2536
- },
2537
- "node_modules/retry": {
2538
- "version": "0.12.0",
2539
- "license": "MIT",
2540
- "engines": {
2541
- "node": ">= 4"
2542
- }
2543
- },
2544
- "node_modules/rolldown": {
2545
- "version": "1.0.1",
2546
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.1.tgz",
2547
- "integrity": "sha512-X0KQHljNnEkWNqqiz9zJrGunh1B0HgOxLXvnFpCOcadzcy5qohZ3tqMEUg00vncoRovXuK3ZqCT9KnnKzoInFQ==",
2548
- "dev": true,
2549
- "license": "MIT",
2550
- "dependencies": {
2551
- "@oxc-project/types": "=0.130.0",
2552
- "@rolldown/pluginutils": "^1.0.0"
2553
- },
2554
- "bin": {
2555
- "rolldown": "bin/cli.mjs"
2556
- },
2557
- "engines": {
2558
- "node": "^20.19.0 || >=22.12.0"
2559
- },
2560
- "optionalDependencies": {
2561
- "@rolldown/binding-android-arm64": "1.0.1",
2562
- "@rolldown/binding-darwin-arm64": "1.0.1",
2563
- "@rolldown/binding-darwin-x64": "1.0.1",
2564
- "@rolldown/binding-freebsd-x64": "1.0.1",
2565
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.1",
2566
- "@rolldown/binding-linux-arm64-gnu": "1.0.1",
2567
- "@rolldown/binding-linux-arm64-musl": "1.0.1",
2568
- "@rolldown/binding-linux-ppc64-gnu": "1.0.1",
2569
- "@rolldown/binding-linux-s390x-gnu": "1.0.1",
2570
- "@rolldown/binding-linux-x64-gnu": "1.0.1",
2571
- "@rolldown/binding-linux-x64-musl": "1.0.1",
2572
- "@rolldown/binding-openharmony-arm64": "1.0.1",
2573
- "@rolldown/binding-wasm32-wasi": "1.0.1",
2574
- "@rolldown/binding-win32-arm64-msvc": "1.0.1",
2575
- "@rolldown/binding-win32-x64-msvc": "1.0.1"
2576
- }
2577
- },
2578
- "node_modules/safer-buffer": {
2579
- "version": "2.1.2",
2580
- "license": "MIT"
2581
- },
2582
- "node_modules/siginfo": {
2583
- "version": "2.0.0",
2584
- "dev": true,
2585
- "license": "ISC"
2586
- },
2587
- "node_modules/signal-exit": {
2588
- "version": "3.0.7",
2589
- "license": "ISC"
2590
- },
2591
- "node_modules/simple-git": {
2592
- "version": "3.36.0",
2593
- "license": "MIT",
2594
- "dependencies": {
2595
- "@kwsites/file-exists": "^1.1.1",
2596
- "@kwsites/promise-deferred": "^1.1.1",
2597
- "@simple-git/args-pathspec": "^1.0.3",
2598
- "@simple-git/argv-parser": "^1.1.0",
2599
- "debug": "^4.4.0"
2600
- },
2601
- "funding": {
2602
- "type": "github",
2603
- "url": "https://github.com/steveukx/git-js?sponsor=1"
2604
- }
2605
- },
2606
- "node_modules/skin-tone": {
2607
- "version": "2.0.0",
2608
- "license": "MIT",
2609
- "dependencies": {
2610
- "unicode-emoji-modifier-base": "^1.0.0"
2611
- },
2612
- "engines": {
2613
- "node": ">=8"
2614
- }
2615
- },
2616
- "node_modules/smol-toml": {
2617
- "version": "1.6.1",
2618
- "license": "BSD-3-Clause",
2619
- "engines": {
2620
- "node": ">= 18"
2621
- },
2622
- "funding": {
2623
- "url": "https://github.com/sponsors/cyyynthia"
2624
- }
2625
- },
2626
- "node_modules/source-map-js": {
2627
- "version": "1.2.1",
2628
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2629
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2630
- "dev": true,
2631
- "license": "BSD-3-Clause",
2632
- "engines": {
2633
- "node": ">=0.10.0"
2634
- }
2635
- },
2636
- "node_modules/stackback": {
2637
- "version": "0.0.2",
2638
- "dev": true,
2639
- "license": "MIT"
2640
- },
2641
- "node_modules/std-env": {
2642
- "version": "4.1.0",
2643
- "resolved": "https://registry.npmjs.org/std-env/-/std-env-4.1.0.tgz",
2644
- "integrity": "sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==",
2645
- "dev": true,
2646
- "license": "MIT"
2647
- },
2648
- "node_modules/stdin-discarder": {
2649
- "version": "0.2.2",
2650
- "license": "MIT",
2651
- "engines": {
2652
- "node": ">=18"
2653
- },
2654
- "funding": {
2655
- "url": "https://github.com/sponsors/sindresorhus"
2656
- }
2657
- },
2658
- "node_modules/string-width": {
2659
- "version": "7.2.0",
2660
- "license": "MIT",
2661
- "dependencies": {
2662
- "emoji-regex": "^10.3.0",
2663
- "get-east-asian-width": "^1.0.0",
2664
- "strip-ansi": "^7.1.0"
2665
- },
2666
- "engines": {
2667
- "node": ">=18"
2668
- },
2669
- "funding": {
2670
- "url": "https://github.com/sponsors/sindresorhus"
2671
- }
2672
- },
2673
- "node_modules/strip-ansi": {
2674
- "version": "7.1.2",
2675
- "license": "MIT",
2676
- "dependencies": {
2677
- "ansi-regex": "^6.0.1"
2678
- },
2679
- "engines": {
2680
- "node": ">=12"
2681
- },
2682
- "funding": {
2683
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2684
- }
2685
- },
2686
- "node_modules/supports-color": {
2687
- "version": "7.2.0",
2688
- "license": "MIT",
2689
- "dependencies": {
2690
- "has-flag": "^4.0.0"
2691
- },
2692
- "engines": {
2693
- "node": ">=8"
2694
- }
2695
- },
2696
- "node_modules/supports-hyperlinks": {
2697
- "version": "3.2.0",
2698
- "license": "MIT",
2699
- "dependencies": {
2700
- "has-flag": "^4.0.0",
2701
- "supports-color": "^7.0.0"
2702
- },
2703
- "engines": {
2704
- "node": ">=14.18"
2705
- },
2706
- "funding": {
2707
- "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
2708
- }
2709
- },
2710
- "node_modules/thenify": {
2711
- "version": "3.3.1",
2712
- "license": "MIT",
2713
- "dependencies": {
2714
- "any-promise": "^1.0.0"
2715
- }
2716
- },
2717
- "node_modules/thenify-all": {
2718
- "version": "1.6.0",
2719
- "license": "MIT",
2720
- "dependencies": {
2721
- "thenify": ">= 3.1.0 < 4"
2722
- },
2723
- "engines": {
2724
- "node": ">=0.8"
2725
- }
2726
- },
2727
- "node_modules/tinybench": {
2728
- "version": "2.9.0",
2729
- "dev": true,
2730
- "license": "MIT"
2731
- },
2732
- "node_modules/tinyexec": {
2733
- "version": "1.1.2",
2734
- "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.1.2.tgz",
2735
- "integrity": "sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==",
2736
- "dev": true,
2737
- "license": "MIT",
2738
- "engines": {
2739
- "node": ">=18"
2740
- }
2741
- },
2742
- "node_modules/tinyglobby": {
2743
- "version": "0.2.16",
2744
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
2745
- "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
2746
- "dev": true,
2747
- "license": "MIT",
2748
- "dependencies": {
2749
- "fdir": "^6.5.0",
2750
- "picomatch": "^4.0.4"
2751
- },
2752
- "engines": {
2753
- "node": ">=12.0.0"
2754
- },
2755
- "funding": {
2756
- "url": "https://github.com/sponsors/SuperchupuDev"
2757
- }
2758
- },
2759
- "node_modules/tinyrainbow": {
2760
- "version": "3.1.0",
2761
- "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz",
2762
- "integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==",
2763
- "dev": true,
2764
- "license": "MIT",
2765
- "engines": {
2766
- "node": ">=14.0.0"
2767
- }
2768
- },
2769
- "node_modules/tslib": {
2770
- "version": "2.8.1",
2771
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2772
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2773
- "dev": true,
2774
- "license": "0BSD",
2775
- "optional": true
2776
- },
2777
- "node_modules/tsx": {
2778
- "version": "4.22.2",
2779
- "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.22.2.tgz",
2780
- "integrity": "sha512-6w9FwtT8WQqRAyTNR+Z+86kghRqpmOLjXUrBlBT6T+CQGDuIMm0VmAqaFUFBIeKDTGobE6/YSigZYLeomzBaRg==",
2781
- "dev": true,
2782
- "license": "MIT",
2783
- "dependencies": {
2784
- "esbuild": "~0.28.0"
2785
- },
2786
- "bin": {
2787
- "tsx": "dist/cli.mjs"
2788
- },
2789
- "engines": {
2790
- "node": ">=18.0.0"
2791
- },
2792
- "optionalDependencies": {
2793
- "fsevents": "~2.3.3"
2794
- }
2795
- },
2796
- "node_modules/tsx/node_modules/fsevents": {
2797
- "version": "2.3.3",
2798
- "dev": true,
2799
- "license": "MIT",
2800
- "optional": true,
2801
- "os": [
2802
- "darwin"
2803
- ],
2804
- "engines": {
2805
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2806
- }
2807
- },
2808
- "node_modules/typescript": {
2809
- "version": "5.9.3",
2810
- "dev": true,
2811
- "license": "Apache-2.0",
2812
- "bin": {
2813
- "tsc": "bin/tsc",
2814
- "tsserver": "bin/tsserver"
2815
- },
2816
- "engines": {
2817
- "node": ">=14.17"
2818
- }
2819
- },
2820
- "node_modules/undici-types": {
2821
- "version": "6.21.0",
2822
- "devOptional": true,
2823
- "license": "MIT"
2824
- },
2825
- "node_modules/unicode-emoji-modifier-base": {
2826
- "version": "1.0.0",
2827
- "license": "MIT",
2828
- "engines": {
2829
- "node": ">=4"
2830
- }
2831
- },
2832
- "node_modules/vite": {
2833
- "version": "8.0.13",
2834
- "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.13.tgz",
2835
- "integrity": "sha512-MFtjBYgzmSxmgA4RAfjIyXWpGe1oALnjgUTzzV7QLx/TKxCzjtMH6Fd9/eVK+5Fg1qNoz5VAwsmMs/NofrmJvw==",
2836
- "dev": true,
2837
- "license": "MIT",
2838
- "dependencies": {
2839
- "lightningcss": "^1.32.0",
2840
- "picomatch": "^4.0.4",
2841
- "postcss": "^8.5.14",
2842
- "rolldown": "1.0.1",
2843
- "tinyglobby": "^0.2.16"
2844
- },
2845
- "bin": {
2846
- "vite": "bin/vite.js"
2847
- },
2848
- "engines": {
2849
- "node": "^20.19.0 || >=22.12.0"
2850
- },
2851
- "funding": {
2852
- "url": "https://github.com/vitejs/vite?sponsor=1"
2853
- },
2854
- "optionalDependencies": {
2855
- "fsevents": "~2.3.3"
2856
- },
2857
- "peerDependencies": {
2858
- "@types/node": "^20.19.0 || >=22.12.0",
2859
- "@vitejs/devtools": "^0.1.18",
2860
- "esbuild": "^0.27.0 || ^0.28.0",
2861
- "jiti": ">=1.21.0",
2862
- "less": "^4.0.0",
2863
- "sass": "^1.70.0",
2864
- "sass-embedded": "^1.70.0",
2865
- "stylus": ">=0.54.8",
2866
- "sugarss": "^5.0.0",
2867
- "terser": "^5.16.0",
2868
- "tsx": "^4.8.1",
2869
- "yaml": "^2.4.2"
2870
- },
2871
- "peerDependenciesMeta": {
2872
- "@types/node": {
2873
- "optional": true
2874
- },
2875
- "@vitejs/devtools": {
2876
- "optional": true
2877
- },
2878
- "esbuild": {
2879
- "optional": true
2880
- },
2881
- "jiti": {
2882
- "optional": true
2883
- },
2884
- "less": {
2885
- "optional": true
2886
- },
2887
- "sass": {
2888
- "optional": true
2889
- },
2890
- "sass-embedded": {
2891
- "optional": true
2892
- },
2893
- "stylus": {
2894
- "optional": true
2895
- },
2896
- "sugarss": {
2897
- "optional": true
2898
- },
2899
- "terser": {
2900
- "optional": true
2901
- },
2902
- "tsx": {
2903
- "optional": true
2904
- },
2905
- "yaml": {
2906
- "optional": true
2907
- }
2908
- }
2909
- },
2910
- "node_modules/vite/node_modules/fsevents": {
2911
- "version": "2.3.3",
2912
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2913
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2914
- "dev": true,
2915
- "hasInstallScript": true,
2916
- "license": "MIT",
2917
- "optional": true,
2918
- "os": [
2919
- "darwin"
2920
- ],
2921
- "engines": {
2922
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2923
- }
2924
- },
2925
- "node_modules/vitest": {
2926
- "version": "4.1.6",
2927
- "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.6.tgz",
2928
- "integrity": "sha512-6lvjbS3p9b4CrdCmguzbh2/4uoXhGE2q71R4OX5sqF9R1bo9Xd6fGrMAfvp5wnCzlBnFVdCOp6onuTQVbo8iUQ==",
2929
- "dev": true,
2930
- "license": "MIT",
2931
- "dependencies": {
2932
- "@vitest/expect": "4.1.6",
2933
- "@vitest/mocker": "4.1.6",
2934
- "@vitest/pretty-format": "4.1.6",
2935
- "@vitest/runner": "4.1.6",
2936
- "@vitest/snapshot": "4.1.6",
2937
- "@vitest/spy": "4.1.6",
2938
- "@vitest/utils": "4.1.6",
2939
- "es-module-lexer": "^2.0.0",
2940
- "expect-type": "^1.3.0",
2941
- "magic-string": "^0.30.21",
2942
- "obug": "^2.1.1",
2943
- "pathe": "^2.0.3",
2944
- "picomatch": "^4.0.3",
2945
- "std-env": "^4.0.0-rc.1",
2946
- "tinybench": "^2.9.0",
2947
- "tinyexec": "^1.0.2",
2948
- "tinyglobby": "^0.2.15",
2949
- "tinyrainbow": "^3.1.0",
2950
- "vite": "^6.0.0 || ^7.0.0 || ^8.0.0",
2951
- "why-is-node-running": "^2.3.0"
2952
- },
2953
- "bin": {
2954
- "vitest": "vitest.mjs"
2955
- },
2956
- "engines": {
2957
- "node": "^20.0.0 || ^22.0.0 || >=24.0.0"
2958
- },
2959
- "funding": {
2960
- "url": "https://opencollective.com/vitest"
2961
- },
2962
- "peerDependencies": {
2963
- "@edge-runtime/vm": "*",
2964
- "@opentelemetry/api": "^1.9.0",
2965
- "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
2966
- "@vitest/browser-playwright": "4.1.6",
2967
- "@vitest/browser-preview": "4.1.6",
2968
- "@vitest/browser-webdriverio": "4.1.6",
2969
- "@vitest/coverage-istanbul": "4.1.6",
2970
- "@vitest/coverage-v8": "4.1.6",
2971
- "@vitest/ui": "4.1.6",
2972
- "happy-dom": "*",
2973
- "jsdom": "*",
2974
- "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
2975
- },
2976
- "peerDependenciesMeta": {
2977
- "@edge-runtime/vm": {
2978
- "optional": true
2979
- },
2980
- "@opentelemetry/api": {
2981
- "optional": true
2982
- },
2983
- "@types/node": {
2984
- "optional": true
2985
- },
2986
- "@vitest/browser-playwright": {
2987
- "optional": true
2988
- },
2989
- "@vitest/browser-preview": {
2990
- "optional": true
2991
- },
2992
- "@vitest/browser-webdriverio": {
2993
- "optional": true
2994
- },
2995
- "@vitest/coverage-istanbul": {
2996
- "optional": true
2997
- },
2998
- "@vitest/coverage-v8": {
2999
- "optional": true
3000
- },
3001
- "@vitest/ui": {
3002
- "optional": true
3003
- },
3004
- "happy-dom": {
3005
- "optional": true
3006
- },
3007
- "jsdom": {
3008
- "optional": true
3009
- },
3010
- "vite": {
3011
- "optional": false
3012
- }
3013
- }
3014
- },
3015
- "node_modules/why-is-node-running": {
3016
- "version": "2.3.0",
3017
- "dev": true,
3018
- "license": "MIT",
3019
- "dependencies": {
3020
- "siginfo": "^2.0.0",
3021
- "stackback": "0.0.2"
3022
- },
3023
- "bin": {
3024
- "why-is-node-running": "cli.js"
3025
- },
3026
- "engines": {
3027
- "node": ">=8"
3028
- }
3029
- },
3030
- "node_modules/wrap-ansi": {
3031
- "version": "6.2.0",
3032
- "license": "MIT",
3033
- "dependencies": {
3034
- "ansi-styles": "^4.0.0",
3035
- "string-width": "^4.1.0",
3036
- "strip-ansi": "^6.0.0"
3037
- },
3038
- "engines": {
3039
- "node": ">=8"
3040
- }
3041
- },
3042
- "node_modules/wrap-ansi/node_modules/string-width": {
3043
- "version": "4.2.3",
3044
- "license": "MIT",
3045
- "dependencies": {
3046
- "emoji-regex": "^8.0.0",
3047
- "is-fullwidth-code-point": "^3.0.0",
3048
- "strip-ansi": "^6.0.1"
3049
- },
3050
- "engines": {
3051
- "node": ">=8"
3052
- }
3053
- },
3054
- "node_modules/wrap-ansi/node_modules/string-width/node_modules/emoji-regex": {
3055
- "version": "8.0.0",
3056
- "license": "MIT"
3057
- },
3058
- "node_modules/wrap-ansi/node_modules/strip-ansi": {
3059
- "version": "6.0.1",
3060
- "license": "MIT",
3061
- "dependencies": {
3062
- "ansi-regex": "^5.0.1"
3063
- },
3064
- "engines": {
3065
- "node": ">=8"
3066
- }
3067
- },
3068
- "node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex": {
3069
- "version": "5.0.1",
3070
- "license": "MIT",
3071
- "engines": {
3072
- "node": ">=8"
3073
- }
3074
- },
3075
- "node_modules/y18n": {
3076
- "version": "5.0.8",
3077
- "license": "ISC",
3078
- "engines": {
3079
- "node": ">=10"
3080
- }
3081
- },
3082
- "node_modules/yaml": {
3083
- "version": "2.8.3",
3084
- "license": "ISC",
3085
- "bin": {
3086
- "yaml": "bin.mjs"
3087
- },
3088
- "engines": {
3089
- "node": ">= 14.6"
3090
- },
3091
- "funding": {
3092
- "url": "https://github.com/sponsors/eemeli"
3093
- }
3094
- },
3095
- "node_modules/yargs": {
3096
- "version": "16.2.0",
3097
- "license": "MIT",
3098
- "dependencies": {
3099
- "cliui": "^7.0.2",
3100
- "escalade": "^3.1.1",
3101
- "get-caller-file": "^2.0.5",
3102
- "require-directory": "^2.1.1",
3103
- "string-width": "^4.2.0",
3104
- "y18n": "^5.0.5",
3105
- "yargs-parser": "^20.2.2"
3106
- },
3107
- "engines": {
3108
- "node": ">=10"
3109
- }
3110
- },
3111
- "node_modules/yargs-parser": {
3112
- "version": "20.2.9",
3113
- "license": "ISC",
3114
- "engines": {
3115
- "node": ">=10"
3116
- }
3117
- },
3118
- "node_modules/yargs/node_modules/string-width": {
3119
- "version": "4.2.3",
3120
- "license": "MIT",
3121
- "dependencies": {
3122
- "emoji-regex": "^8.0.0",
3123
- "is-fullwidth-code-point": "^3.0.0",
3124
- "strip-ansi": "^6.0.1"
3125
- },
3126
- "engines": {
3127
- "node": ">=8"
3128
- }
3129
- },
3130
- "node_modules/yargs/node_modules/string-width/node_modules/emoji-regex": {
3131
- "version": "8.0.0",
3132
- "license": "MIT"
3133
- },
3134
- "node_modules/yargs/node_modules/string-width/node_modules/strip-ansi": {
3135
- "version": "6.0.1",
3136
- "license": "MIT",
3137
- "dependencies": {
3138
- "ansi-regex": "^5.0.1"
3139
- },
3140
- "engines": {
3141
- "node": ">=8"
3142
- }
3143
- },
3144
- "node_modules/yargs/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex": {
3145
- "version": "5.0.1",
3146
- "license": "MIT",
3147
- "engines": {
3148
- "node": ">=8"
3149
- }
3150
- },
3151
- "node_modules/yoctocolors-cjs": {
3152
- "version": "2.1.3",
3153
- "license": "MIT",
3154
- "engines": {
3155
- "node": ">=18"
3156
- },
3157
- "funding": {
3158
- "url": "https://github.com/sponsors/sindresorhus"
3159
- }
3160
- }
3161
- }
3162
- }