@rubytech/create-realagent 1.0.615 → 1.0.617
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.
- package/package.json +1 -1
- package/payload/platform/lib/mcp-stderr-tee/dist/index.d.ts +23 -13
- package/payload/platform/lib/mcp-stderr-tee/dist/index.d.ts.map +1 -1
- package/payload/platform/lib/mcp-stderr-tee/dist/index.js +86 -89
- package/payload/platform/lib/mcp-stderr-tee/dist/index.js.map +1 -1
- package/payload/platform/lib/mcp-stderr-tee/src/index.ts +86 -101
- package/payload/platform/package-lock.json +1547 -1
- package/payload/platform/plugins/admin/mcp/dist/index.js +33 -2
- package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/admin/skills/stream-log-review/SKILL.md +22 -8
- package/payload/platform/plugins/cloudflare/PLUGIN.md +5 -4
- package/payload/platform/plugins/cloudflare/mcp/__tests__/auth-binding.test.ts +195 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/index.js +160 -214
- package/payload/platform/plugins/cloudflare/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.d.ts +203 -42
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.d.ts.map +1 -1
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.js +623 -195
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.js.map +1 -1
- package/payload/platform/plugins/cloudflare/mcp/package.json +5 -2
- package/payload/platform/plugins/cloudflare/mcp/vitest.config.ts +10 -0
- package/payload/platform/plugins/cloudflare/references/setup-guide.md +26 -30
- package/payload/platform/plugins/cloudflare/skills/setup-tunnel/SKILL.md +28 -4
- package/payload/platform/plugins/docs/PLUGIN.md +2 -0
- package/payload/platform/plugins/docs/references/cloudflare.md +51 -0
- package/payload/platform/plugins/docs/references/plugins-guide.md +8 -6
- package/payload/platform/scripts/logs-read.sh +114 -54
- package/payload/platform/templates/specialists/agents/personal-assistant.md +12 -8
- package/payload/server/server.js +387 -70
|
@@ -130,6 +130,448 @@
|
|
|
130
130
|
"node": ">=6.9.0"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
134
|
+
"version": "0.27.7",
|
|
135
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
|
|
136
|
+
"integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
|
|
137
|
+
"cpu": [
|
|
138
|
+
"ppc64"
|
|
139
|
+
],
|
|
140
|
+
"dev": true,
|
|
141
|
+
"license": "MIT",
|
|
142
|
+
"optional": true,
|
|
143
|
+
"os": [
|
|
144
|
+
"aix"
|
|
145
|
+
],
|
|
146
|
+
"engines": {
|
|
147
|
+
"node": ">=18"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"node_modules/@esbuild/android-arm": {
|
|
151
|
+
"version": "0.27.7",
|
|
152
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
|
|
153
|
+
"integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
|
|
154
|
+
"cpu": [
|
|
155
|
+
"arm"
|
|
156
|
+
],
|
|
157
|
+
"dev": true,
|
|
158
|
+
"license": "MIT",
|
|
159
|
+
"optional": true,
|
|
160
|
+
"os": [
|
|
161
|
+
"android"
|
|
162
|
+
],
|
|
163
|
+
"engines": {
|
|
164
|
+
"node": ">=18"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"node_modules/@esbuild/android-arm64": {
|
|
168
|
+
"version": "0.27.7",
|
|
169
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
|
|
170
|
+
"integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
|
|
171
|
+
"cpu": [
|
|
172
|
+
"arm64"
|
|
173
|
+
],
|
|
174
|
+
"dev": true,
|
|
175
|
+
"license": "MIT",
|
|
176
|
+
"optional": true,
|
|
177
|
+
"os": [
|
|
178
|
+
"android"
|
|
179
|
+
],
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=18"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/@esbuild/android-x64": {
|
|
185
|
+
"version": "0.27.7",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
|
|
187
|
+
"integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
|
|
188
|
+
"cpu": [
|
|
189
|
+
"x64"
|
|
190
|
+
],
|
|
191
|
+
"dev": true,
|
|
192
|
+
"license": "MIT",
|
|
193
|
+
"optional": true,
|
|
194
|
+
"os": [
|
|
195
|
+
"android"
|
|
196
|
+
],
|
|
197
|
+
"engines": {
|
|
198
|
+
"node": ">=18"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
202
|
+
"version": "0.27.7",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
|
|
204
|
+
"integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
|
|
205
|
+
"cpu": [
|
|
206
|
+
"arm64"
|
|
207
|
+
],
|
|
208
|
+
"dev": true,
|
|
209
|
+
"license": "MIT",
|
|
210
|
+
"optional": true,
|
|
211
|
+
"os": [
|
|
212
|
+
"darwin"
|
|
213
|
+
],
|
|
214
|
+
"engines": {
|
|
215
|
+
"node": ">=18"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
219
|
+
"version": "0.27.7",
|
|
220
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
|
|
221
|
+
"integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
|
|
222
|
+
"cpu": [
|
|
223
|
+
"x64"
|
|
224
|
+
],
|
|
225
|
+
"dev": true,
|
|
226
|
+
"license": "MIT",
|
|
227
|
+
"optional": true,
|
|
228
|
+
"os": [
|
|
229
|
+
"darwin"
|
|
230
|
+
],
|
|
231
|
+
"engines": {
|
|
232
|
+
"node": ">=18"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
236
|
+
"version": "0.27.7",
|
|
237
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
|
|
238
|
+
"integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
|
|
239
|
+
"cpu": [
|
|
240
|
+
"arm64"
|
|
241
|
+
],
|
|
242
|
+
"dev": true,
|
|
243
|
+
"license": "MIT",
|
|
244
|
+
"optional": true,
|
|
245
|
+
"os": [
|
|
246
|
+
"freebsd"
|
|
247
|
+
],
|
|
248
|
+
"engines": {
|
|
249
|
+
"node": ">=18"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
253
|
+
"version": "0.27.7",
|
|
254
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
|
|
255
|
+
"integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
|
|
256
|
+
"cpu": [
|
|
257
|
+
"x64"
|
|
258
|
+
],
|
|
259
|
+
"dev": true,
|
|
260
|
+
"license": "MIT",
|
|
261
|
+
"optional": true,
|
|
262
|
+
"os": [
|
|
263
|
+
"freebsd"
|
|
264
|
+
],
|
|
265
|
+
"engines": {
|
|
266
|
+
"node": ">=18"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"node_modules/@esbuild/linux-arm": {
|
|
270
|
+
"version": "0.27.7",
|
|
271
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
|
|
272
|
+
"integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
|
|
273
|
+
"cpu": [
|
|
274
|
+
"arm"
|
|
275
|
+
],
|
|
276
|
+
"dev": true,
|
|
277
|
+
"license": "MIT",
|
|
278
|
+
"optional": true,
|
|
279
|
+
"os": [
|
|
280
|
+
"linux"
|
|
281
|
+
],
|
|
282
|
+
"engines": {
|
|
283
|
+
"node": ">=18"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
287
|
+
"version": "0.27.7",
|
|
288
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
|
|
289
|
+
"integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
|
|
290
|
+
"cpu": [
|
|
291
|
+
"arm64"
|
|
292
|
+
],
|
|
293
|
+
"dev": true,
|
|
294
|
+
"license": "MIT",
|
|
295
|
+
"optional": true,
|
|
296
|
+
"os": [
|
|
297
|
+
"linux"
|
|
298
|
+
],
|
|
299
|
+
"engines": {
|
|
300
|
+
"node": ">=18"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
304
|
+
"version": "0.27.7",
|
|
305
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
|
|
306
|
+
"integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
|
|
307
|
+
"cpu": [
|
|
308
|
+
"ia32"
|
|
309
|
+
],
|
|
310
|
+
"dev": true,
|
|
311
|
+
"license": "MIT",
|
|
312
|
+
"optional": true,
|
|
313
|
+
"os": [
|
|
314
|
+
"linux"
|
|
315
|
+
],
|
|
316
|
+
"engines": {
|
|
317
|
+
"node": ">=18"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
321
|
+
"version": "0.27.7",
|
|
322
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
|
|
323
|
+
"integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
|
|
324
|
+
"cpu": [
|
|
325
|
+
"loong64"
|
|
326
|
+
],
|
|
327
|
+
"dev": true,
|
|
328
|
+
"license": "MIT",
|
|
329
|
+
"optional": true,
|
|
330
|
+
"os": [
|
|
331
|
+
"linux"
|
|
332
|
+
],
|
|
333
|
+
"engines": {
|
|
334
|
+
"node": ">=18"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
338
|
+
"version": "0.27.7",
|
|
339
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
|
|
340
|
+
"integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
|
|
341
|
+
"cpu": [
|
|
342
|
+
"mips64el"
|
|
343
|
+
],
|
|
344
|
+
"dev": true,
|
|
345
|
+
"license": "MIT",
|
|
346
|
+
"optional": true,
|
|
347
|
+
"os": [
|
|
348
|
+
"linux"
|
|
349
|
+
],
|
|
350
|
+
"engines": {
|
|
351
|
+
"node": ">=18"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
355
|
+
"version": "0.27.7",
|
|
356
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
|
|
357
|
+
"integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
|
|
358
|
+
"cpu": [
|
|
359
|
+
"ppc64"
|
|
360
|
+
],
|
|
361
|
+
"dev": true,
|
|
362
|
+
"license": "MIT",
|
|
363
|
+
"optional": true,
|
|
364
|
+
"os": [
|
|
365
|
+
"linux"
|
|
366
|
+
],
|
|
367
|
+
"engines": {
|
|
368
|
+
"node": ">=18"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
372
|
+
"version": "0.27.7",
|
|
373
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
|
|
374
|
+
"integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
|
|
375
|
+
"cpu": [
|
|
376
|
+
"riscv64"
|
|
377
|
+
],
|
|
378
|
+
"dev": true,
|
|
379
|
+
"license": "MIT",
|
|
380
|
+
"optional": true,
|
|
381
|
+
"os": [
|
|
382
|
+
"linux"
|
|
383
|
+
],
|
|
384
|
+
"engines": {
|
|
385
|
+
"node": ">=18"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
389
|
+
"version": "0.27.7",
|
|
390
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
|
|
391
|
+
"integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
|
|
392
|
+
"cpu": [
|
|
393
|
+
"s390x"
|
|
394
|
+
],
|
|
395
|
+
"dev": true,
|
|
396
|
+
"license": "MIT",
|
|
397
|
+
"optional": true,
|
|
398
|
+
"os": [
|
|
399
|
+
"linux"
|
|
400
|
+
],
|
|
401
|
+
"engines": {
|
|
402
|
+
"node": ">=18"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"node_modules/@esbuild/linux-x64": {
|
|
406
|
+
"version": "0.27.7",
|
|
407
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
|
|
408
|
+
"integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
|
|
409
|
+
"cpu": [
|
|
410
|
+
"x64"
|
|
411
|
+
],
|
|
412
|
+
"dev": true,
|
|
413
|
+
"license": "MIT",
|
|
414
|
+
"optional": true,
|
|
415
|
+
"os": [
|
|
416
|
+
"linux"
|
|
417
|
+
],
|
|
418
|
+
"engines": {
|
|
419
|
+
"node": ">=18"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
423
|
+
"version": "0.27.7",
|
|
424
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
|
|
425
|
+
"integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
|
|
426
|
+
"cpu": [
|
|
427
|
+
"arm64"
|
|
428
|
+
],
|
|
429
|
+
"dev": true,
|
|
430
|
+
"license": "MIT",
|
|
431
|
+
"optional": true,
|
|
432
|
+
"os": [
|
|
433
|
+
"netbsd"
|
|
434
|
+
],
|
|
435
|
+
"engines": {
|
|
436
|
+
"node": ">=18"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
440
|
+
"version": "0.27.7",
|
|
441
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
|
|
442
|
+
"integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
|
|
443
|
+
"cpu": [
|
|
444
|
+
"x64"
|
|
445
|
+
],
|
|
446
|
+
"dev": true,
|
|
447
|
+
"license": "MIT",
|
|
448
|
+
"optional": true,
|
|
449
|
+
"os": [
|
|
450
|
+
"netbsd"
|
|
451
|
+
],
|
|
452
|
+
"engines": {
|
|
453
|
+
"node": ">=18"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
457
|
+
"version": "0.27.7",
|
|
458
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
|
|
459
|
+
"integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
|
|
460
|
+
"cpu": [
|
|
461
|
+
"arm64"
|
|
462
|
+
],
|
|
463
|
+
"dev": true,
|
|
464
|
+
"license": "MIT",
|
|
465
|
+
"optional": true,
|
|
466
|
+
"os": [
|
|
467
|
+
"openbsd"
|
|
468
|
+
],
|
|
469
|
+
"engines": {
|
|
470
|
+
"node": ">=18"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
474
|
+
"version": "0.27.7",
|
|
475
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
|
|
476
|
+
"integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
|
|
477
|
+
"cpu": [
|
|
478
|
+
"x64"
|
|
479
|
+
],
|
|
480
|
+
"dev": true,
|
|
481
|
+
"license": "MIT",
|
|
482
|
+
"optional": true,
|
|
483
|
+
"os": [
|
|
484
|
+
"openbsd"
|
|
485
|
+
],
|
|
486
|
+
"engines": {
|
|
487
|
+
"node": ">=18"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
491
|
+
"version": "0.27.7",
|
|
492
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
|
|
493
|
+
"integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
|
|
494
|
+
"cpu": [
|
|
495
|
+
"arm64"
|
|
496
|
+
],
|
|
497
|
+
"dev": true,
|
|
498
|
+
"license": "MIT",
|
|
499
|
+
"optional": true,
|
|
500
|
+
"os": [
|
|
501
|
+
"openharmony"
|
|
502
|
+
],
|
|
503
|
+
"engines": {
|
|
504
|
+
"node": ">=18"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
508
|
+
"version": "0.27.7",
|
|
509
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
|
|
510
|
+
"integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
|
|
511
|
+
"cpu": [
|
|
512
|
+
"x64"
|
|
513
|
+
],
|
|
514
|
+
"dev": true,
|
|
515
|
+
"license": "MIT",
|
|
516
|
+
"optional": true,
|
|
517
|
+
"os": [
|
|
518
|
+
"sunos"
|
|
519
|
+
],
|
|
520
|
+
"engines": {
|
|
521
|
+
"node": ">=18"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
525
|
+
"version": "0.27.7",
|
|
526
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
|
|
527
|
+
"integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
|
|
528
|
+
"cpu": [
|
|
529
|
+
"arm64"
|
|
530
|
+
],
|
|
531
|
+
"dev": true,
|
|
532
|
+
"license": "MIT",
|
|
533
|
+
"optional": true,
|
|
534
|
+
"os": [
|
|
535
|
+
"win32"
|
|
536
|
+
],
|
|
537
|
+
"engines": {
|
|
538
|
+
"node": ">=18"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
542
|
+
"version": "0.27.7",
|
|
543
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
|
|
544
|
+
"integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
|
|
545
|
+
"cpu": [
|
|
546
|
+
"ia32"
|
|
547
|
+
],
|
|
548
|
+
"dev": true,
|
|
549
|
+
"license": "MIT",
|
|
550
|
+
"optional": true,
|
|
551
|
+
"os": [
|
|
552
|
+
"win32"
|
|
553
|
+
],
|
|
554
|
+
"engines": {
|
|
555
|
+
"node": ">=18"
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
"node_modules/@esbuild/win32-x64": {
|
|
559
|
+
"version": "0.27.7",
|
|
560
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
|
|
561
|
+
"integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
|
|
562
|
+
"cpu": [
|
|
563
|
+
"x64"
|
|
564
|
+
],
|
|
565
|
+
"dev": true,
|
|
566
|
+
"license": "MIT",
|
|
567
|
+
"optional": true,
|
|
568
|
+
"os": [
|
|
569
|
+
"win32"
|
|
570
|
+
],
|
|
571
|
+
"engines": {
|
|
572
|
+
"node": ">=18"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
133
575
|
"node_modules/@hono/node-server": {
|
|
134
576
|
"version": "1.19.11",
|
|
135
577
|
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.11.tgz",
|
|
@@ -142,6 +584,13 @@
|
|
|
142
584
|
"hono": "^4"
|
|
143
585
|
}
|
|
144
586
|
},
|
|
587
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
588
|
+
"version": "1.5.5",
|
|
589
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
590
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
591
|
+
"dev": true,
|
|
592
|
+
"license": "MIT"
|
|
593
|
+
},
|
|
145
594
|
"node_modules/@maxy/admin": {
|
|
146
595
|
"resolved": "plugins/admin/mcp",
|
|
147
596
|
"link": true
|
|
@@ -236,6 +685,381 @@
|
|
|
236
685
|
"integrity": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==",
|
|
237
686
|
"license": "MIT"
|
|
238
687
|
},
|
|
688
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
689
|
+
"version": "4.60.2",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz",
|
|
691
|
+
"integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==",
|
|
692
|
+
"cpu": [
|
|
693
|
+
"arm"
|
|
694
|
+
],
|
|
695
|
+
"dev": true,
|
|
696
|
+
"license": "MIT",
|
|
697
|
+
"optional": true,
|
|
698
|
+
"os": [
|
|
699
|
+
"android"
|
|
700
|
+
]
|
|
701
|
+
},
|
|
702
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
703
|
+
"version": "4.60.2",
|
|
704
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz",
|
|
705
|
+
"integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==",
|
|
706
|
+
"cpu": [
|
|
707
|
+
"arm64"
|
|
708
|
+
],
|
|
709
|
+
"dev": true,
|
|
710
|
+
"license": "MIT",
|
|
711
|
+
"optional": true,
|
|
712
|
+
"os": [
|
|
713
|
+
"android"
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
717
|
+
"version": "4.60.2",
|
|
718
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.2.tgz",
|
|
719
|
+
"integrity": "sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==",
|
|
720
|
+
"cpu": [
|
|
721
|
+
"arm64"
|
|
722
|
+
],
|
|
723
|
+
"dev": true,
|
|
724
|
+
"license": "MIT",
|
|
725
|
+
"optional": true,
|
|
726
|
+
"os": [
|
|
727
|
+
"darwin"
|
|
728
|
+
]
|
|
729
|
+
},
|
|
730
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
731
|
+
"version": "4.60.2",
|
|
732
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz",
|
|
733
|
+
"integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==",
|
|
734
|
+
"cpu": [
|
|
735
|
+
"x64"
|
|
736
|
+
],
|
|
737
|
+
"dev": true,
|
|
738
|
+
"license": "MIT",
|
|
739
|
+
"optional": true,
|
|
740
|
+
"os": [
|
|
741
|
+
"darwin"
|
|
742
|
+
]
|
|
743
|
+
},
|
|
744
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
745
|
+
"version": "4.60.2",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz",
|
|
747
|
+
"integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==",
|
|
748
|
+
"cpu": [
|
|
749
|
+
"arm64"
|
|
750
|
+
],
|
|
751
|
+
"dev": true,
|
|
752
|
+
"license": "MIT",
|
|
753
|
+
"optional": true,
|
|
754
|
+
"os": [
|
|
755
|
+
"freebsd"
|
|
756
|
+
]
|
|
757
|
+
},
|
|
758
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
759
|
+
"version": "4.60.2",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz",
|
|
761
|
+
"integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==",
|
|
762
|
+
"cpu": [
|
|
763
|
+
"x64"
|
|
764
|
+
],
|
|
765
|
+
"dev": true,
|
|
766
|
+
"license": "MIT",
|
|
767
|
+
"optional": true,
|
|
768
|
+
"os": [
|
|
769
|
+
"freebsd"
|
|
770
|
+
]
|
|
771
|
+
},
|
|
772
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
773
|
+
"version": "4.60.2",
|
|
774
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz",
|
|
775
|
+
"integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==",
|
|
776
|
+
"cpu": [
|
|
777
|
+
"arm"
|
|
778
|
+
],
|
|
779
|
+
"dev": true,
|
|
780
|
+
"license": "MIT",
|
|
781
|
+
"optional": true,
|
|
782
|
+
"os": [
|
|
783
|
+
"linux"
|
|
784
|
+
]
|
|
785
|
+
},
|
|
786
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
787
|
+
"version": "4.60.2",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz",
|
|
789
|
+
"integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==",
|
|
790
|
+
"cpu": [
|
|
791
|
+
"arm"
|
|
792
|
+
],
|
|
793
|
+
"dev": true,
|
|
794
|
+
"license": "MIT",
|
|
795
|
+
"optional": true,
|
|
796
|
+
"os": [
|
|
797
|
+
"linux"
|
|
798
|
+
]
|
|
799
|
+
},
|
|
800
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
801
|
+
"version": "4.60.2",
|
|
802
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz",
|
|
803
|
+
"integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==",
|
|
804
|
+
"cpu": [
|
|
805
|
+
"arm64"
|
|
806
|
+
],
|
|
807
|
+
"dev": true,
|
|
808
|
+
"license": "MIT",
|
|
809
|
+
"optional": true,
|
|
810
|
+
"os": [
|
|
811
|
+
"linux"
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
815
|
+
"version": "4.60.2",
|
|
816
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz",
|
|
817
|
+
"integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==",
|
|
818
|
+
"cpu": [
|
|
819
|
+
"arm64"
|
|
820
|
+
],
|
|
821
|
+
"dev": true,
|
|
822
|
+
"license": "MIT",
|
|
823
|
+
"optional": true,
|
|
824
|
+
"os": [
|
|
825
|
+
"linux"
|
|
826
|
+
]
|
|
827
|
+
},
|
|
828
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
829
|
+
"version": "4.60.2",
|
|
830
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz",
|
|
831
|
+
"integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==",
|
|
832
|
+
"cpu": [
|
|
833
|
+
"loong64"
|
|
834
|
+
],
|
|
835
|
+
"dev": true,
|
|
836
|
+
"license": "MIT",
|
|
837
|
+
"optional": true,
|
|
838
|
+
"os": [
|
|
839
|
+
"linux"
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
843
|
+
"version": "4.60.2",
|
|
844
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz",
|
|
845
|
+
"integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==",
|
|
846
|
+
"cpu": [
|
|
847
|
+
"loong64"
|
|
848
|
+
],
|
|
849
|
+
"dev": true,
|
|
850
|
+
"license": "MIT",
|
|
851
|
+
"optional": true,
|
|
852
|
+
"os": [
|
|
853
|
+
"linux"
|
|
854
|
+
]
|
|
855
|
+
},
|
|
856
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
857
|
+
"version": "4.60.2",
|
|
858
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz",
|
|
859
|
+
"integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==",
|
|
860
|
+
"cpu": [
|
|
861
|
+
"ppc64"
|
|
862
|
+
],
|
|
863
|
+
"dev": true,
|
|
864
|
+
"license": "MIT",
|
|
865
|
+
"optional": true,
|
|
866
|
+
"os": [
|
|
867
|
+
"linux"
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
871
|
+
"version": "4.60.2",
|
|
872
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz",
|
|
873
|
+
"integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==",
|
|
874
|
+
"cpu": [
|
|
875
|
+
"ppc64"
|
|
876
|
+
],
|
|
877
|
+
"dev": true,
|
|
878
|
+
"license": "MIT",
|
|
879
|
+
"optional": true,
|
|
880
|
+
"os": [
|
|
881
|
+
"linux"
|
|
882
|
+
]
|
|
883
|
+
},
|
|
884
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
885
|
+
"version": "4.60.2",
|
|
886
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz",
|
|
887
|
+
"integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==",
|
|
888
|
+
"cpu": [
|
|
889
|
+
"riscv64"
|
|
890
|
+
],
|
|
891
|
+
"dev": true,
|
|
892
|
+
"license": "MIT",
|
|
893
|
+
"optional": true,
|
|
894
|
+
"os": [
|
|
895
|
+
"linux"
|
|
896
|
+
]
|
|
897
|
+
},
|
|
898
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
899
|
+
"version": "4.60.2",
|
|
900
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz",
|
|
901
|
+
"integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==",
|
|
902
|
+
"cpu": [
|
|
903
|
+
"riscv64"
|
|
904
|
+
],
|
|
905
|
+
"dev": true,
|
|
906
|
+
"license": "MIT",
|
|
907
|
+
"optional": true,
|
|
908
|
+
"os": [
|
|
909
|
+
"linux"
|
|
910
|
+
]
|
|
911
|
+
},
|
|
912
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
913
|
+
"version": "4.60.2",
|
|
914
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz",
|
|
915
|
+
"integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==",
|
|
916
|
+
"cpu": [
|
|
917
|
+
"s390x"
|
|
918
|
+
],
|
|
919
|
+
"dev": true,
|
|
920
|
+
"license": "MIT",
|
|
921
|
+
"optional": true,
|
|
922
|
+
"os": [
|
|
923
|
+
"linux"
|
|
924
|
+
]
|
|
925
|
+
},
|
|
926
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
927
|
+
"version": "4.60.2",
|
|
928
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz",
|
|
929
|
+
"integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==",
|
|
930
|
+
"cpu": [
|
|
931
|
+
"x64"
|
|
932
|
+
],
|
|
933
|
+
"dev": true,
|
|
934
|
+
"license": "MIT",
|
|
935
|
+
"optional": true,
|
|
936
|
+
"os": [
|
|
937
|
+
"linux"
|
|
938
|
+
]
|
|
939
|
+
},
|
|
940
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
941
|
+
"version": "4.60.2",
|
|
942
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz",
|
|
943
|
+
"integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==",
|
|
944
|
+
"cpu": [
|
|
945
|
+
"x64"
|
|
946
|
+
],
|
|
947
|
+
"dev": true,
|
|
948
|
+
"license": "MIT",
|
|
949
|
+
"optional": true,
|
|
950
|
+
"os": [
|
|
951
|
+
"linux"
|
|
952
|
+
]
|
|
953
|
+
},
|
|
954
|
+
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
955
|
+
"version": "4.60.2",
|
|
956
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz",
|
|
957
|
+
"integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==",
|
|
958
|
+
"cpu": [
|
|
959
|
+
"x64"
|
|
960
|
+
],
|
|
961
|
+
"dev": true,
|
|
962
|
+
"license": "MIT",
|
|
963
|
+
"optional": true,
|
|
964
|
+
"os": [
|
|
965
|
+
"openbsd"
|
|
966
|
+
]
|
|
967
|
+
},
|
|
968
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
969
|
+
"version": "4.60.2",
|
|
970
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz",
|
|
971
|
+
"integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==",
|
|
972
|
+
"cpu": [
|
|
973
|
+
"arm64"
|
|
974
|
+
],
|
|
975
|
+
"dev": true,
|
|
976
|
+
"license": "MIT",
|
|
977
|
+
"optional": true,
|
|
978
|
+
"os": [
|
|
979
|
+
"openharmony"
|
|
980
|
+
]
|
|
981
|
+
},
|
|
982
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
983
|
+
"version": "4.60.2",
|
|
984
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz",
|
|
985
|
+
"integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==",
|
|
986
|
+
"cpu": [
|
|
987
|
+
"arm64"
|
|
988
|
+
],
|
|
989
|
+
"dev": true,
|
|
990
|
+
"license": "MIT",
|
|
991
|
+
"optional": true,
|
|
992
|
+
"os": [
|
|
993
|
+
"win32"
|
|
994
|
+
]
|
|
995
|
+
},
|
|
996
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
997
|
+
"version": "4.60.2",
|
|
998
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz",
|
|
999
|
+
"integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==",
|
|
1000
|
+
"cpu": [
|
|
1001
|
+
"ia32"
|
|
1002
|
+
],
|
|
1003
|
+
"dev": true,
|
|
1004
|
+
"license": "MIT",
|
|
1005
|
+
"optional": true,
|
|
1006
|
+
"os": [
|
|
1007
|
+
"win32"
|
|
1008
|
+
]
|
|
1009
|
+
},
|
|
1010
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1011
|
+
"version": "4.60.2",
|
|
1012
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz",
|
|
1013
|
+
"integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==",
|
|
1014
|
+
"cpu": [
|
|
1015
|
+
"x64"
|
|
1016
|
+
],
|
|
1017
|
+
"dev": true,
|
|
1018
|
+
"license": "MIT",
|
|
1019
|
+
"optional": true,
|
|
1020
|
+
"os": [
|
|
1021
|
+
"win32"
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1025
|
+
"version": "4.60.2",
|
|
1026
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz",
|
|
1027
|
+
"integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==",
|
|
1028
|
+
"cpu": [
|
|
1029
|
+
"x64"
|
|
1030
|
+
],
|
|
1031
|
+
"dev": true,
|
|
1032
|
+
"license": "MIT",
|
|
1033
|
+
"optional": true,
|
|
1034
|
+
"os": [
|
|
1035
|
+
"win32"
|
|
1036
|
+
]
|
|
1037
|
+
},
|
|
1038
|
+
"node_modules/@types/chai": {
|
|
1039
|
+
"version": "5.2.3",
|
|
1040
|
+
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
|
|
1041
|
+
"integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
|
|
1042
|
+
"dev": true,
|
|
1043
|
+
"license": "MIT",
|
|
1044
|
+
"dependencies": {
|
|
1045
|
+
"@types/deep-eql": "*",
|
|
1046
|
+
"assertion-error": "^2.0.1"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"node_modules/@types/deep-eql": {
|
|
1050
|
+
"version": "4.0.2",
|
|
1051
|
+
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
1052
|
+
"integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
|
|
1053
|
+
"dev": true,
|
|
1054
|
+
"license": "MIT"
|
|
1055
|
+
},
|
|
1056
|
+
"node_modules/@types/estree": {
|
|
1057
|
+
"version": "1.0.8",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1059
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1060
|
+
"dev": true,
|
|
1061
|
+
"license": "MIT"
|
|
1062
|
+
},
|
|
239
1063
|
"node_modules/@types/node": {
|
|
240
1064
|
"version": "22.19.15",
|
|
241
1065
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.15.tgz",
|
|
@@ -275,6 +1099,121 @@
|
|
|
275
1099
|
"@types/node": "*"
|
|
276
1100
|
}
|
|
277
1101
|
},
|
|
1102
|
+
"node_modules/@vitest/expect": {
|
|
1103
|
+
"version": "3.2.4",
|
|
1104
|
+
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz",
|
|
1105
|
+
"integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==",
|
|
1106
|
+
"dev": true,
|
|
1107
|
+
"license": "MIT",
|
|
1108
|
+
"dependencies": {
|
|
1109
|
+
"@types/chai": "^5.2.2",
|
|
1110
|
+
"@vitest/spy": "3.2.4",
|
|
1111
|
+
"@vitest/utils": "3.2.4",
|
|
1112
|
+
"chai": "^5.2.0",
|
|
1113
|
+
"tinyrainbow": "^2.0.0"
|
|
1114
|
+
},
|
|
1115
|
+
"funding": {
|
|
1116
|
+
"url": "https://opencollective.com/vitest"
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
"node_modules/@vitest/mocker": {
|
|
1120
|
+
"version": "3.2.4",
|
|
1121
|
+
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz",
|
|
1122
|
+
"integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==",
|
|
1123
|
+
"dev": true,
|
|
1124
|
+
"license": "MIT",
|
|
1125
|
+
"dependencies": {
|
|
1126
|
+
"@vitest/spy": "3.2.4",
|
|
1127
|
+
"estree-walker": "^3.0.3",
|
|
1128
|
+
"magic-string": "^0.30.17"
|
|
1129
|
+
},
|
|
1130
|
+
"funding": {
|
|
1131
|
+
"url": "https://opencollective.com/vitest"
|
|
1132
|
+
},
|
|
1133
|
+
"peerDependencies": {
|
|
1134
|
+
"msw": "^2.4.9",
|
|
1135
|
+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
|
|
1136
|
+
},
|
|
1137
|
+
"peerDependenciesMeta": {
|
|
1138
|
+
"msw": {
|
|
1139
|
+
"optional": true
|
|
1140
|
+
},
|
|
1141
|
+
"vite": {
|
|
1142
|
+
"optional": true
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
"node_modules/@vitest/pretty-format": {
|
|
1147
|
+
"version": "3.2.4",
|
|
1148
|
+
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz",
|
|
1149
|
+
"integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==",
|
|
1150
|
+
"dev": true,
|
|
1151
|
+
"license": "MIT",
|
|
1152
|
+
"dependencies": {
|
|
1153
|
+
"tinyrainbow": "^2.0.0"
|
|
1154
|
+
},
|
|
1155
|
+
"funding": {
|
|
1156
|
+
"url": "https://opencollective.com/vitest"
|
|
1157
|
+
}
|
|
1158
|
+
},
|
|
1159
|
+
"node_modules/@vitest/runner": {
|
|
1160
|
+
"version": "3.2.4",
|
|
1161
|
+
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz",
|
|
1162
|
+
"integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==",
|
|
1163
|
+
"dev": true,
|
|
1164
|
+
"license": "MIT",
|
|
1165
|
+
"dependencies": {
|
|
1166
|
+
"@vitest/utils": "3.2.4",
|
|
1167
|
+
"pathe": "^2.0.3",
|
|
1168
|
+
"strip-literal": "^3.0.0"
|
|
1169
|
+
},
|
|
1170
|
+
"funding": {
|
|
1171
|
+
"url": "https://opencollective.com/vitest"
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1174
|
+
"node_modules/@vitest/snapshot": {
|
|
1175
|
+
"version": "3.2.4",
|
|
1176
|
+
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz",
|
|
1177
|
+
"integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==",
|
|
1178
|
+
"dev": true,
|
|
1179
|
+
"license": "MIT",
|
|
1180
|
+
"dependencies": {
|
|
1181
|
+
"@vitest/pretty-format": "3.2.4",
|
|
1182
|
+
"magic-string": "^0.30.17",
|
|
1183
|
+
"pathe": "^2.0.3"
|
|
1184
|
+
},
|
|
1185
|
+
"funding": {
|
|
1186
|
+
"url": "https://opencollective.com/vitest"
|
|
1187
|
+
}
|
|
1188
|
+
},
|
|
1189
|
+
"node_modules/@vitest/spy": {
|
|
1190
|
+
"version": "3.2.4",
|
|
1191
|
+
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz",
|
|
1192
|
+
"integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==",
|
|
1193
|
+
"dev": true,
|
|
1194
|
+
"license": "MIT",
|
|
1195
|
+
"dependencies": {
|
|
1196
|
+
"tinyspy": "^4.0.3"
|
|
1197
|
+
},
|
|
1198
|
+
"funding": {
|
|
1199
|
+
"url": "https://opencollective.com/vitest"
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
"node_modules/@vitest/utils": {
|
|
1203
|
+
"version": "3.2.4",
|
|
1204
|
+
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz",
|
|
1205
|
+
"integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==",
|
|
1206
|
+
"dev": true,
|
|
1207
|
+
"license": "MIT",
|
|
1208
|
+
"dependencies": {
|
|
1209
|
+
"@vitest/pretty-format": "3.2.4",
|
|
1210
|
+
"loupe": "^3.1.4",
|
|
1211
|
+
"tinyrainbow": "^2.0.0"
|
|
1212
|
+
},
|
|
1213
|
+
"funding": {
|
|
1214
|
+
"url": "https://opencollective.com/vitest"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
278
1217
|
"node_modules/@zone-eu/mailsplit": {
|
|
279
1218
|
"version": "5.4.8",
|
|
280
1219
|
"resolved": "https://registry.npmjs.org/@zone-eu/mailsplit/-/mailsplit-5.4.8.tgz",
|
|
@@ -380,6 +1319,16 @@
|
|
|
380
1319
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
381
1320
|
}
|
|
382
1321
|
},
|
|
1322
|
+
"node_modules/assertion-error": {
|
|
1323
|
+
"version": "2.0.1",
|
|
1324
|
+
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
|
|
1325
|
+
"integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
|
|
1326
|
+
"dev": true,
|
|
1327
|
+
"license": "MIT",
|
|
1328
|
+
"engines": {
|
|
1329
|
+
"node": ">=12"
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
383
1332
|
"node_modules/asynckit": {
|
|
384
1333
|
"version": "0.4.0",
|
|
385
1334
|
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
@@ -472,6 +1421,16 @@
|
|
|
472
1421
|
"node": ">= 0.8"
|
|
473
1422
|
}
|
|
474
1423
|
},
|
|
1424
|
+
"node_modules/cac": {
|
|
1425
|
+
"version": "6.7.14",
|
|
1426
|
+
"resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
|
|
1427
|
+
"integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
|
|
1428
|
+
"dev": true,
|
|
1429
|
+
"license": "MIT",
|
|
1430
|
+
"engines": {
|
|
1431
|
+
"node": ">=8"
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
475
1434
|
"node_modules/call-bind-apply-helpers": {
|
|
476
1435
|
"version": "1.0.2",
|
|
477
1436
|
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
@@ -510,6 +1469,33 @@
|
|
|
510
1469
|
"node": ">=6"
|
|
511
1470
|
}
|
|
512
1471
|
},
|
|
1472
|
+
"node_modules/chai": {
|
|
1473
|
+
"version": "5.3.3",
|
|
1474
|
+
"resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz",
|
|
1475
|
+
"integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==",
|
|
1476
|
+
"dev": true,
|
|
1477
|
+
"license": "MIT",
|
|
1478
|
+
"dependencies": {
|
|
1479
|
+
"assertion-error": "^2.0.1",
|
|
1480
|
+
"check-error": "^2.1.1",
|
|
1481
|
+
"deep-eql": "^5.0.1",
|
|
1482
|
+
"loupe": "^3.1.0",
|
|
1483
|
+
"pathval": "^2.0.0"
|
|
1484
|
+
},
|
|
1485
|
+
"engines": {
|
|
1486
|
+
"node": ">=18"
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1489
|
+
"node_modules/check-error": {
|
|
1490
|
+
"version": "2.1.3",
|
|
1491
|
+
"resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz",
|
|
1492
|
+
"integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==",
|
|
1493
|
+
"dev": true,
|
|
1494
|
+
"license": "MIT",
|
|
1495
|
+
"engines": {
|
|
1496
|
+
"node": ">= 16"
|
|
1497
|
+
}
|
|
1498
|
+
},
|
|
513
1499
|
"node_modules/cliui": {
|
|
514
1500
|
"version": "6.0.0",
|
|
515
1501
|
"resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
|
|
@@ -690,6 +1676,16 @@
|
|
|
690
1676
|
"node": ">=0.10.0"
|
|
691
1677
|
}
|
|
692
1678
|
},
|
|
1679
|
+
"node_modules/deep-eql": {
|
|
1680
|
+
"version": "5.0.2",
|
|
1681
|
+
"resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz",
|
|
1682
|
+
"integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==",
|
|
1683
|
+
"dev": true,
|
|
1684
|
+
"license": "MIT",
|
|
1685
|
+
"engines": {
|
|
1686
|
+
"node": ">=6"
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
693
1689
|
"node_modules/delayed-stream": {
|
|
694
1690
|
"version": "1.0.0",
|
|
695
1691
|
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
@@ -776,6 +1772,13 @@
|
|
|
776
1772
|
"node": ">= 0.4"
|
|
777
1773
|
}
|
|
778
1774
|
},
|
|
1775
|
+
"node_modules/es-module-lexer": {
|
|
1776
|
+
"version": "1.7.0",
|
|
1777
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
|
|
1778
|
+
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
|
|
1779
|
+
"dev": true,
|
|
1780
|
+
"license": "MIT"
|
|
1781
|
+
},
|
|
779
1782
|
"node_modules/es-object-atoms": {
|
|
780
1783
|
"version": "1.1.1",
|
|
781
1784
|
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
@@ -803,12 +1806,64 @@
|
|
|
803
1806
|
"node": ">= 0.4"
|
|
804
1807
|
}
|
|
805
1808
|
},
|
|
1809
|
+
"node_modules/esbuild": {
|
|
1810
|
+
"version": "0.27.7",
|
|
1811
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
|
|
1812
|
+
"integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
|
|
1813
|
+
"dev": true,
|
|
1814
|
+
"hasInstallScript": true,
|
|
1815
|
+
"license": "MIT",
|
|
1816
|
+
"bin": {
|
|
1817
|
+
"esbuild": "bin/esbuild"
|
|
1818
|
+
},
|
|
1819
|
+
"engines": {
|
|
1820
|
+
"node": ">=18"
|
|
1821
|
+
},
|
|
1822
|
+
"optionalDependencies": {
|
|
1823
|
+
"@esbuild/aix-ppc64": "0.27.7",
|
|
1824
|
+
"@esbuild/android-arm": "0.27.7",
|
|
1825
|
+
"@esbuild/android-arm64": "0.27.7",
|
|
1826
|
+
"@esbuild/android-x64": "0.27.7",
|
|
1827
|
+
"@esbuild/darwin-arm64": "0.27.7",
|
|
1828
|
+
"@esbuild/darwin-x64": "0.27.7",
|
|
1829
|
+
"@esbuild/freebsd-arm64": "0.27.7",
|
|
1830
|
+
"@esbuild/freebsd-x64": "0.27.7",
|
|
1831
|
+
"@esbuild/linux-arm": "0.27.7",
|
|
1832
|
+
"@esbuild/linux-arm64": "0.27.7",
|
|
1833
|
+
"@esbuild/linux-ia32": "0.27.7",
|
|
1834
|
+
"@esbuild/linux-loong64": "0.27.7",
|
|
1835
|
+
"@esbuild/linux-mips64el": "0.27.7",
|
|
1836
|
+
"@esbuild/linux-ppc64": "0.27.7",
|
|
1837
|
+
"@esbuild/linux-riscv64": "0.27.7",
|
|
1838
|
+
"@esbuild/linux-s390x": "0.27.7",
|
|
1839
|
+
"@esbuild/linux-x64": "0.27.7",
|
|
1840
|
+
"@esbuild/netbsd-arm64": "0.27.7",
|
|
1841
|
+
"@esbuild/netbsd-x64": "0.27.7",
|
|
1842
|
+
"@esbuild/openbsd-arm64": "0.27.7",
|
|
1843
|
+
"@esbuild/openbsd-x64": "0.27.7",
|
|
1844
|
+
"@esbuild/openharmony-arm64": "0.27.7",
|
|
1845
|
+
"@esbuild/sunos-x64": "0.27.7",
|
|
1846
|
+
"@esbuild/win32-arm64": "0.27.7",
|
|
1847
|
+
"@esbuild/win32-ia32": "0.27.7",
|
|
1848
|
+
"@esbuild/win32-x64": "0.27.7"
|
|
1849
|
+
}
|
|
1850
|
+
},
|
|
806
1851
|
"node_modules/escape-html": {
|
|
807
1852
|
"version": "1.0.3",
|
|
808
1853
|
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
809
1854
|
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
|
810
1855
|
"license": "MIT"
|
|
811
1856
|
},
|
|
1857
|
+
"node_modules/estree-walker": {
|
|
1858
|
+
"version": "3.0.3",
|
|
1859
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
1860
|
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
1861
|
+
"dev": true,
|
|
1862
|
+
"license": "MIT",
|
|
1863
|
+
"dependencies": {
|
|
1864
|
+
"@types/estree": "^1.0.0"
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
812
1867
|
"node_modules/etag": {
|
|
813
1868
|
"version": "1.8.1",
|
|
814
1869
|
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
@@ -858,6 +1913,16 @@
|
|
|
858
1913
|
"node": ">=18.0.0"
|
|
859
1914
|
}
|
|
860
1915
|
},
|
|
1916
|
+
"node_modules/expect-type": {
|
|
1917
|
+
"version": "1.3.0",
|
|
1918
|
+
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz",
|
|
1919
|
+
"integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==",
|
|
1920
|
+
"dev": true,
|
|
1921
|
+
"license": "Apache-2.0",
|
|
1922
|
+
"engines": {
|
|
1923
|
+
"node": ">=12.0.0"
|
|
1924
|
+
}
|
|
1925
|
+
},
|
|
861
1926
|
"node_modules/express": {
|
|
862
1927
|
"version": "5.2.1",
|
|
863
1928
|
"resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
|
|
@@ -941,6 +2006,24 @@
|
|
|
941
2006
|
],
|
|
942
2007
|
"license": "BSD-3-Clause"
|
|
943
2008
|
},
|
|
2009
|
+
"node_modules/fdir": {
|
|
2010
|
+
"version": "6.5.0",
|
|
2011
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
2012
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
2013
|
+
"dev": true,
|
|
2014
|
+
"license": "MIT",
|
|
2015
|
+
"engines": {
|
|
2016
|
+
"node": ">=12.0.0"
|
|
2017
|
+
},
|
|
2018
|
+
"peerDependencies": {
|
|
2019
|
+
"picomatch": "^3 || ^4"
|
|
2020
|
+
},
|
|
2021
|
+
"peerDependenciesMeta": {
|
|
2022
|
+
"picomatch": {
|
|
2023
|
+
"optional": true
|
|
2024
|
+
}
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
944
2027
|
"node_modules/finalhandler": {
|
|
945
2028
|
"version": "2.1.1",
|
|
946
2029
|
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
|
|
@@ -1049,6 +2132,21 @@
|
|
|
1049
2132
|
"node": ">= 0.8"
|
|
1050
2133
|
}
|
|
1051
2134
|
},
|
|
2135
|
+
"node_modules/fsevents": {
|
|
2136
|
+
"version": "2.3.3",
|
|
2137
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2138
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2139
|
+
"dev": true,
|
|
2140
|
+
"hasInstallScript": true,
|
|
2141
|
+
"license": "MIT",
|
|
2142
|
+
"optional": true,
|
|
2143
|
+
"os": [
|
|
2144
|
+
"darwin"
|
|
2145
|
+
],
|
|
2146
|
+
"engines": {
|
|
2147
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
1052
2150
|
"node_modules/function-bind": {
|
|
1053
2151
|
"version": "1.1.2",
|
|
1054
2152
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
@@ -1309,6 +2407,13 @@
|
|
|
1309
2407
|
"url": "https://github.com/sponsors/panva"
|
|
1310
2408
|
}
|
|
1311
2409
|
},
|
|
2410
|
+
"node_modules/js-tokens": {
|
|
2411
|
+
"version": "9.0.1",
|
|
2412
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz",
|
|
2413
|
+
"integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
|
|
2414
|
+
"dev": true,
|
|
2415
|
+
"license": "MIT"
|
|
2416
|
+
},
|
|
1312
2417
|
"node_modules/json-schema-to-ts": {
|
|
1313
2418
|
"version": "3.1.1",
|
|
1314
2419
|
"resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
|
|
@@ -1382,6 +2487,13 @@
|
|
|
1382
2487
|
"node": ">=8"
|
|
1383
2488
|
}
|
|
1384
2489
|
},
|
|
2490
|
+
"node_modules/loupe": {
|
|
2491
|
+
"version": "3.2.1",
|
|
2492
|
+
"resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz",
|
|
2493
|
+
"integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==",
|
|
2494
|
+
"dev": true,
|
|
2495
|
+
"license": "MIT"
|
|
2496
|
+
},
|
|
1385
2497
|
"node_modules/luxon": {
|
|
1386
2498
|
"version": "3.7.2",
|
|
1387
2499
|
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.2.tgz",
|
|
@@ -1391,6 +2503,16 @@
|
|
|
1391
2503
|
"node": ">=12"
|
|
1392
2504
|
}
|
|
1393
2505
|
},
|
|
2506
|
+
"node_modules/magic-string": {
|
|
2507
|
+
"version": "0.30.21",
|
|
2508
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
2509
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
2510
|
+
"dev": true,
|
|
2511
|
+
"license": "MIT",
|
|
2512
|
+
"dependencies": {
|
|
2513
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
1394
2516
|
"node_modules/math-intrinsics": {
|
|
1395
2517
|
"version": "1.1.0",
|
|
1396
2518
|
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
@@ -1680,6 +2802,43 @@
|
|
|
1680
2802
|
"url": "https://opencollective.com/express"
|
|
1681
2803
|
}
|
|
1682
2804
|
},
|
|
2805
|
+
"node_modules/pathe": {
|
|
2806
|
+
"version": "2.0.3",
|
|
2807
|
+
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
2808
|
+
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
2809
|
+
"dev": true,
|
|
2810
|
+
"license": "MIT"
|
|
2811
|
+
},
|
|
2812
|
+
"node_modules/pathval": {
|
|
2813
|
+
"version": "2.0.1",
|
|
2814
|
+
"resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz",
|
|
2815
|
+
"integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==",
|
|
2816
|
+
"dev": true,
|
|
2817
|
+
"license": "MIT",
|
|
2818
|
+
"engines": {
|
|
2819
|
+
"node": ">= 14.16"
|
|
2820
|
+
}
|
|
2821
|
+
},
|
|
2822
|
+
"node_modules/picocolors": {
|
|
2823
|
+
"version": "1.1.1",
|
|
2824
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2825
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2826
|
+
"dev": true,
|
|
2827
|
+
"license": "ISC"
|
|
2828
|
+
},
|
|
2829
|
+
"node_modules/picomatch": {
|
|
2830
|
+
"version": "4.0.4",
|
|
2831
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
2832
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
2833
|
+
"dev": true,
|
|
2834
|
+
"license": "MIT",
|
|
2835
|
+
"engines": {
|
|
2836
|
+
"node": ">=12"
|
|
2837
|
+
},
|
|
2838
|
+
"funding": {
|
|
2839
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2840
|
+
}
|
|
2841
|
+
},
|
|
1683
2842
|
"node_modules/pino": {
|
|
1684
2843
|
"version": "10.3.1",
|
|
1685
2844
|
"resolved": "https://registry.npmjs.org/pino/-/pino-10.3.1.tgz",
|
|
@@ -1735,6 +2894,54 @@
|
|
|
1735
2894
|
"node": ">=10.13.0"
|
|
1736
2895
|
}
|
|
1737
2896
|
},
|
|
2897
|
+
"node_modules/postcss": {
|
|
2898
|
+
"version": "8.5.10",
|
|
2899
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
|
|
2900
|
+
"integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==",
|
|
2901
|
+
"dev": true,
|
|
2902
|
+
"funding": [
|
|
2903
|
+
{
|
|
2904
|
+
"type": "opencollective",
|
|
2905
|
+
"url": "https://opencollective.com/postcss/"
|
|
2906
|
+
},
|
|
2907
|
+
{
|
|
2908
|
+
"type": "tidelift",
|
|
2909
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2910
|
+
},
|
|
2911
|
+
{
|
|
2912
|
+
"type": "github",
|
|
2913
|
+
"url": "https://github.com/sponsors/ai"
|
|
2914
|
+
}
|
|
2915
|
+
],
|
|
2916
|
+
"license": "MIT",
|
|
2917
|
+
"dependencies": {
|
|
2918
|
+
"nanoid": "^3.3.11",
|
|
2919
|
+
"picocolors": "^1.1.1",
|
|
2920
|
+
"source-map-js": "^1.2.1"
|
|
2921
|
+
},
|
|
2922
|
+
"engines": {
|
|
2923
|
+
"node": "^10 || ^12 || >=14"
|
|
2924
|
+
}
|
|
2925
|
+
},
|
|
2926
|
+
"node_modules/postcss/node_modules/nanoid": {
|
|
2927
|
+
"version": "3.3.11",
|
|
2928
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
2929
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
2930
|
+
"dev": true,
|
|
2931
|
+
"funding": [
|
|
2932
|
+
{
|
|
2933
|
+
"type": "github",
|
|
2934
|
+
"url": "https://github.com/sponsors/ai"
|
|
2935
|
+
}
|
|
2936
|
+
],
|
|
2937
|
+
"license": "MIT",
|
|
2938
|
+
"bin": {
|
|
2939
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2940
|
+
},
|
|
2941
|
+
"engines": {
|
|
2942
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2943
|
+
}
|
|
2944
|
+
},
|
|
1738
2945
|
"node_modules/process": {
|
|
1739
2946
|
"version": "0.11.10",
|
|
1740
2947
|
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
|
@@ -1901,6 +3108,51 @@
|
|
|
1901
3108
|
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
|
|
1902
3109
|
"license": "ISC"
|
|
1903
3110
|
},
|
|
3111
|
+
"node_modules/rollup": {
|
|
3112
|
+
"version": "4.60.2",
|
|
3113
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.2.tgz",
|
|
3114
|
+
"integrity": "sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==",
|
|
3115
|
+
"dev": true,
|
|
3116
|
+
"license": "MIT",
|
|
3117
|
+
"dependencies": {
|
|
3118
|
+
"@types/estree": "1.0.8"
|
|
3119
|
+
},
|
|
3120
|
+
"bin": {
|
|
3121
|
+
"rollup": "dist/bin/rollup"
|
|
3122
|
+
},
|
|
3123
|
+
"engines": {
|
|
3124
|
+
"node": ">=18.0.0",
|
|
3125
|
+
"npm": ">=8.0.0"
|
|
3126
|
+
},
|
|
3127
|
+
"optionalDependencies": {
|
|
3128
|
+
"@rollup/rollup-android-arm-eabi": "4.60.2",
|
|
3129
|
+
"@rollup/rollup-android-arm64": "4.60.2",
|
|
3130
|
+
"@rollup/rollup-darwin-arm64": "4.60.2",
|
|
3131
|
+
"@rollup/rollup-darwin-x64": "4.60.2",
|
|
3132
|
+
"@rollup/rollup-freebsd-arm64": "4.60.2",
|
|
3133
|
+
"@rollup/rollup-freebsd-x64": "4.60.2",
|
|
3134
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.60.2",
|
|
3135
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.60.2",
|
|
3136
|
+
"@rollup/rollup-linux-arm64-gnu": "4.60.2",
|
|
3137
|
+
"@rollup/rollup-linux-arm64-musl": "4.60.2",
|
|
3138
|
+
"@rollup/rollup-linux-loong64-gnu": "4.60.2",
|
|
3139
|
+
"@rollup/rollup-linux-loong64-musl": "4.60.2",
|
|
3140
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.60.2",
|
|
3141
|
+
"@rollup/rollup-linux-ppc64-musl": "4.60.2",
|
|
3142
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.60.2",
|
|
3143
|
+
"@rollup/rollup-linux-riscv64-musl": "4.60.2",
|
|
3144
|
+
"@rollup/rollup-linux-s390x-gnu": "4.60.2",
|
|
3145
|
+
"@rollup/rollup-linux-x64-gnu": "4.60.2",
|
|
3146
|
+
"@rollup/rollup-linux-x64-musl": "4.60.2",
|
|
3147
|
+
"@rollup/rollup-openbsd-x64": "4.60.2",
|
|
3148
|
+
"@rollup/rollup-openharmony-arm64": "4.60.2",
|
|
3149
|
+
"@rollup/rollup-win32-arm64-msvc": "4.60.2",
|
|
3150
|
+
"@rollup/rollup-win32-ia32-msvc": "4.60.2",
|
|
3151
|
+
"@rollup/rollup-win32-x64-gnu": "4.60.2",
|
|
3152
|
+
"@rollup/rollup-win32-x64-msvc": "4.60.2",
|
|
3153
|
+
"fsevents": "~2.3.2"
|
|
3154
|
+
}
|
|
3155
|
+
},
|
|
1904
3156
|
"node_modules/router": {
|
|
1905
3157
|
"version": "2.2.0",
|
|
1906
3158
|
"resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
|
|
@@ -2111,6 +3363,13 @@
|
|
|
2111
3363
|
"url": "https://github.com/sponsors/ljharb"
|
|
2112
3364
|
}
|
|
2113
3365
|
},
|
|
3366
|
+
"node_modules/siginfo": {
|
|
3367
|
+
"version": "2.0.0",
|
|
3368
|
+
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
3369
|
+
"integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
|
|
3370
|
+
"dev": true,
|
|
3371
|
+
"license": "ISC"
|
|
3372
|
+
},
|
|
2114
3373
|
"node_modules/smart-buffer": {
|
|
2115
3374
|
"version": "4.2.0",
|
|
2116
3375
|
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
|
|
@@ -2144,6 +3403,16 @@
|
|
|
2144
3403
|
"atomic-sleep": "^1.0.0"
|
|
2145
3404
|
}
|
|
2146
3405
|
},
|
|
3406
|
+
"node_modules/source-map-js": {
|
|
3407
|
+
"version": "1.2.1",
|
|
3408
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
3409
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
3410
|
+
"dev": true,
|
|
3411
|
+
"license": "BSD-3-Clause",
|
|
3412
|
+
"engines": {
|
|
3413
|
+
"node": ">=0.10.0"
|
|
3414
|
+
}
|
|
3415
|
+
},
|
|
2147
3416
|
"node_modules/split2": {
|
|
2148
3417
|
"version": "4.2.0",
|
|
2149
3418
|
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
@@ -2153,6 +3422,13 @@
|
|
|
2153
3422
|
"node": ">= 10.x"
|
|
2154
3423
|
}
|
|
2155
3424
|
},
|
|
3425
|
+
"node_modules/stackback": {
|
|
3426
|
+
"version": "0.0.2",
|
|
3427
|
+
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
3428
|
+
"integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
|
|
3429
|
+
"dev": true,
|
|
3430
|
+
"license": "MIT"
|
|
3431
|
+
},
|
|
2156
3432
|
"node_modules/statuses": {
|
|
2157
3433
|
"version": "2.0.2",
|
|
2158
3434
|
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
|
|
@@ -2162,6 +3438,13 @@
|
|
|
2162
3438
|
"node": ">= 0.8"
|
|
2163
3439
|
}
|
|
2164
3440
|
},
|
|
3441
|
+
"node_modules/std-env": {
|
|
3442
|
+
"version": "3.10.0",
|
|
3443
|
+
"resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz",
|
|
3444
|
+
"integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==",
|
|
3445
|
+
"dev": true,
|
|
3446
|
+
"license": "MIT"
|
|
3447
|
+
},
|
|
2165
3448
|
"node_modules/string_decoder": {
|
|
2166
3449
|
"version": "1.3.0",
|
|
2167
3450
|
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
@@ -2197,6 +3480,19 @@
|
|
|
2197
3480
|
"node": ">=8"
|
|
2198
3481
|
}
|
|
2199
3482
|
},
|
|
3483
|
+
"node_modules/strip-literal": {
|
|
3484
|
+
"version": "3.1.0",
|
|
3485
|
+
"resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz",
|
|
3486
|
+
"integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==",
|
|
3487
|
+
"dev": true,
|
|
3488
|
+
"license": "MIT",
|
|
3489
|
+
"dependencies": {
|
|
3490
|
+
"js-tokens": "^9.0.1"
|
|
3491
|
+
},
|
|
3492
|
+
"funding": {
|
|
3493
|
+
"url": "https://github.com/sponsors/antfu"
|
|
3494
|
+
}
|
|
3495
|
+
},
|
|
2200
3496
|
"node_modules/thread-stream": {
|
|
2201
3497
|
"version": "4.0.0",
|
|
2202
3498
|
"resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-4.0.0.tgz",
|
|
@@ -2209,6 +3505,67 @@
|
|
|
2209
3505
|
"node": ">=20"
|
|
2210
3506
|
}
|
|
2211
3507
|
},
|
|
3508
|
+
"node_modules/tinybench": {
|
|
3509
|
+
"version": "2.9.0",
|
|
3510
|
+
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
|
3511
|
+
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
|
|
3512
|
+
"dev": true,
|
|
3513
|
+
"license": "MIT"
|
|
3514
|
+
},
|
|
3515
|
+
"node_modules/tinyexec": {
|
|
3516
|
+
"version": "0.3.2",
|
|
3517
|
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
|
|
3518
|
+
"integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
|
|
3519
|
+
"dev": true,
|
|
3520
|
+
"license": "MIT"
|
|
3521
|
+
},
|
|
3522
|
+
"node_modules/tinyglobby": {
|
|
3523
|
+
"version": "0.2.16",
|
|
3524
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
|
|
3525
|
+
"integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
|
|
3526
|
+
"dev": true,
|
|
3527
|
+
"license": "MIT",
|
|
3528
|
+
"dependencies": {
|
|
3529
|
+
"fdir": "^6.5.0",
|
|
3530
|
+
"picomatch": "^4.0.4"
|
|
3531
|
+
},
|
|
3532
|
+
"engines": {
|
|
3533
|
+
"node": ">=12.0.0"
|
|
3534
|
+
},
|
|
3535
|
+
"funding": {
|
|
3536
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3539
|
+
"node_modules/tinypool": {
|
|
3540
|
+
"version": "1.1.1",
|
|
3541
|
+
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz",
|
|
3542
|
+
"integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==",
|
|
3543
|
+
"dev": true,
|
|
3544
|
+
"license": "MIT",
|
|
3545
|
+
"engines": {
|
|
3546
|
+
"node": "^18.0.0 || >=20.0.0"
|
|
3547
|
+
}
|
|
3548
|
+
},
|
|
3549
|
+
"node_modules/tinyrainbow": {
|
|
3550
|
+
"version": "2.0.0",
|
|
3551
|
+
"resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz",
|
|
3552
|
+
"integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==",
|
|
3553
|
+
"dev": true,
|
|
3554
|
+
"license": "MIT",
|
|
3555
|
+
"engines": {
|
|
3556
|
+
"node": ">=14.0.0"
|
|
3557
|
+
}
|
|
3558
|
+
},
|
|
3559
|
+
"node_modules/tinyspy": {
|
|
3560
|
+
"version": "4.0.4",
|
|
3561
|
+
"resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz",
|
|
3562
|
+
"integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==",
|
|
3563
|
+
"dev": true,
|
|
3564
|
+
"license": "MIT",
|
|
3565
|
+
"engines": {
|
|
3566
|
+
"node": ">=14.0.0"
|
|
3567
|
+
}
|
|
3568
|
+
},
|
|
2212
3569
|
"node_modules/toidentifier": {
|
|
2213
3570
|
"version": "1.0.1",
|
|
2214
3571
|
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
@@ -2288,6 +3645,177 @@
|
|
|
2288
3645
|
"node": ">= 0.8"
|
|
2289
3646
|
}
|
|
2290
3647
|
},
|
|
3648
|
+
"node_modules/vite": {
|
|
3649
|
+
"version": "7.3.2",
|
|
3650
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
|
|
3651
|
+
"integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
|
|
3652
|
+
"dev": true,
|
|
3653
|
+
"license": "MIT",
|
|
3654
|
+
"dependencies": {
|
|
3655
|
+
"esbuild": "^0.27.0",
|
|
3656
|
+
"fdir": "^6.5.0",
|
|
3657
|
+
"picomatch": "^4.0.3",
|
|
3658
|
+
"postcss": "^8.5.6",
|
|
3659
|
+
"rollup": "^4.43.0",
|
|
3660
|
+
"tinyglobby": "^0.2.15"
|
|
3661
|
+
},
|
|
3662
|
+
"bin": {
|
|
3663
|
+
"vite": "bin/vite.js"
|
|
3664
|
+
},
|
|
3665
|
+
"engines": {
|
|
3666
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
3667
|
+
},
|
|
3668
|
+
"funding": {
|
|
3669
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
3670
|
+
},
|
|
3671
|
+
"optionalDependencies": {
|
|
3672
|
+
"fsevents": "~2.3.3"
|
|
3673
|
+
},
|
|
3674
|
+
"peerDependencies": {
|
|
3675
|
+
"@types/node": "^20.19.0 || >=22.12.0",
|
|
3676
|
+
"jiti": ">=1.21.0",
|
|
3677
|
+
"less": "^4.0.0",
|
|
3678
|
+
"lightningcss": "^1.21.0",
|
|
3679
|
+
"sass": "^1.70.0",
|
|
3680
|
+
"sass-embedded": "^1.70.0",
|
|
3681
|
+
"stylus": ">=0.54.8",
|
|
3682
|
+
"sugarss": "^5.0.0",
|
|
3683
|
+
"terser": "^5.16.0",
|
|
3684
|
+
"tsx": "^4.8.1",
|
|
3685
|
+
"yaml": "^2.4.2"
|
|
3686
|
+
},
|
|
3687
|
+
"peerDependenciesMeta": {
|
|
3688
|
+
"@types/node": {
|
|
3689
|
+
"optional": true
|
|
3690
|
+
},
|
|
3691
|
+
"jiti": {
|
|
3692
|
+
"optional": true
|
|
3693
|
+
},
|
|
3694
|
+
"less": {
|
|
3695
|
+
"optional": true
|
|
3696
|
+
},
|
|
3697
|
+
"lightningcss": {
|
|
3698
|
+
"optional": true
|
|
3699
|
+
},
|
|
3700
|
+
"sass": {
|
|
3701
|
+
"optional": true
|
|
3702
|
+
},
|
|
3703
|
+
"sass-embedded": {
|
|
3704
|
+
"optional": true
|
|
3705
|
+
},
|
|
3706
|
+
"stylus": {
|
|
3707
|
+
"optional": true
|
|
3708
|
+
},
|
|
3709
|
+
"sugarss": {
|
|
3710
|
+
"optional": true
|
|
3711
|
+
},
|
|
3712
|
+
"terser": {
|
|
3713
|
+
"optional": true
|
|
3714
|
+
},
|
|
3715
|
+
"tsx": {
|
|
3716
|
+
"optional": true
|
|
3717
|
+
},
|
|
3718
|
+
"yaml": {
|
|
3719
|
+
"optional": true
|
|
3720
|
+
}
|
|
3721
|
+
}
|
|
3722
|
+
},
|
|
3723
|
+
"node_modules/vite-node": {
|
|
3724
|
+
"version": "3.2.4",
|
|
3725
|
+
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz",
|
|
3726
|
+
"integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==",
|
|
3727
|
+
"dev": true,
|
|
3728
|
+
"license": "MIT",
|
|
3729
|
+
"dependencies": {
|
|
3730
|
+
"cac": "^6.7.14",
|
|
3731
|
+
"debug": "^4.4.1",
|
|
3732
|
+
"es-module-lexer": "^1.7.0",
|
|
3733
|
+
"pathe": "^2.0.3",
|
|
3734
|
+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
|
|
3735
|
+
},
|
|
3736
|
+
"bin": {
|
|
3737
|
+
"vite-node": "vite-node.mjs"
|
|
3738
|
+
},
|
|
3739
|
+
"engines": {
|
|
3740
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
3741
|
+
},
|
|
3742
|
+
"funding": {
|
|
3743
|
+
"url": "https://opencollective.com/vitest"
|
|
3744
|
+
}
|
|
3745
|
+
},
|
|
3746
|
+
"node_modules/vitest": {
|
|
3747
|
+
"version": "3.2.4",
|
|
3748
|
+
"resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz",
|
|
3749
|
+
"integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==",
|
|
3750
|
+
"dev": true,
|
|
3751
|
+
"license": "MIT",
|
|
3752
|
+
"dependencies": {
|
|
3753
|
+
"@types/chai": "^5.2.2",
|
|
3754
|
+
"@vitest/expect": "3.2.4",
|
|
3755
|
+
"@vitest/mocker": "3.2.4",
|
|
3756
|
+
"@vitest/pretty-format": "^3.2.4",
|
|
3757
|
+
"@vitest/runner": "3.2.4",
|
|
3758
|
+
"@vitest/snapshot": "3.2.4",
|
|
3759
|
+
"@vitest/spy": "3.2.4",
|
|
3760
|
+
"@vitest/utils": "3.2.4",
|
|
3761
|
+
"chai": "^5.2.0",
|
|
3762
|
+
"debug": "^4.4.1",
|
|
3763
|
+
"expect-type": "^1.2.1",
|
|
3764
|
+
"magic-string": "^0.30.17",
|
|
3765
|
+
"pathe": "^2.0.3",
|
|
3766
|
+
"picomatch": "^4.0.2",
|
|
3767
|
+
"std-env": "^3.9.0",
|
|
3768
|
+
"tinybench": "^2.9.0",
|
|
3769
|
+
"tinyexec": "^0.3.2",
|
|
3770
|
+
"tinyglobby": "^0.2.14",
|
|
3771
|
+
"tinypool": "^1.1.1",
|
|
3772
|
+
"tinyrainbow": "^2.0.0",
|
|
3773
|
+
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0",
|
|
3774
|
+
"vite-node": "3.2.4",
|
|
3775
|
+
"why-is-node-running": "^2.3.0"
|
|
3776
|
+
},
|
|
3777
|
+
"bin": {
|
|
3778
|
+
"vitest": "vitest.mjs"
|
|
3779
|
+
},
|
|
3780
|
+
"engines": {
|
|
3781
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
3782
|
+
},
|
|
3783
|
+
"funding": {
|
|
3784
|
+
"url": "https://opencollective.com/vitest"
|
|
3785
|
+
},
|
|
3786
|
+
"peerDependencies": {
|
|
3787
|
+
"@edge-runtime/vm": "*",
|
|
3788
|
+
"@types/debug": "^4.1.12",
|
|
3789
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
3790
|
+
"@vitest/browser": "3.2.4",
|
|
3791
|
+
"@vitest/ui": "3.2.4",
|
|
3792
|
+
"happy-dom": "*",
|
|
3793
|
+
"jsdom": "*"
|
|
3794
|
+
},
|
|
3795
|
+
"peerDependenciesMeta": {
|
|
3796
|
+
"@edge-runtime/vm": {
|
|
3797
|
+
"optional": true
|
|
3798
|
+
},
|
|
3799
|
+
"@types/debug": {
|
|
3800
|
+
"optional": true
|
|
3801
|
+
},
|
|
3802
|
+
"@types/node": {
|
|
3803
|
+
"optional": true
|
|
3804
|
+
},
|
|
3805
|
+
"@vitest/browser": {
|
|
3806
|
+
"optional": true
|
|
3807
|
+
},
|
|
3808
|
+
"@vitest/ui": {
|
|
3809
|
+
"optional": true
|
|
3810
|
+
},
|
|
3811
|
+
"happy-dom": {
|
|
3812
|
+
"optional": true
|
|
3813
|
+
},
|
|
3814
|
+
"jsdom": {
|
|
3815
|
+
"optional": true
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
},
|
|
2291
3819
|
"node_modules/web-streams-polyfill": {
|
|
2292
3820
|
"version": "4.0.0-beta.3",
|
|
2293
3821
|
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz",
|
|
@@ -2334,6 +3862,23 @@
|
|
|
2334
3862
|
"integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
|
|
2335
3863
|
"license": "ISC"
|
|
2336
3864
|
},
|
|
3865
|
+
"node_modules/why-is-node-running": {
|
|
3866
|
+
"version": "2.3.0",
|
|
3867
|
+
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
3868
|
+
"integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
|
|
3869
|
+
"dev": true,
|
|
3870
|
+
"license": "MIT",
|
|
3871
|
+
"dependencies": {
|
|
3872
|
+
"siginfo": "^2.0.0",
|
|
3873
|
+
"stackback": "0.0.2"
|
|
3874
|
+
},
|
|
3875
|
+
"bin": {
|
|
3876
|
+
"why-is-node-running": "cli.js"
|
|
3877
|
+
},
|
|
3878
|
+
"engines": {
|
|
3879
|
+
"node": ">=8"
|
|
3880
|
+
}
|
|
3881
|
+
},
|
|
2337
3882
|
"node_modules/wrap-ansi": {
|
|
2338
3883
|
"version": "6.2.0",
|
|
2339
3884
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
|
@@ -2436,7 +3981,8 @@
|
|
|
2436
3981
|
},
|
|
2437
3982
|
"devDependencies": {
|
|
2438
3983
|
"@types/node": "^22.0.0",
|
|
2439
|
-
"typescript": "^5.7.0"
|
|
3984
|
+
"typescript": "^5.7.0",
|
|
3985
|
+
"vitest": "^3.2.4"
|
|
2440
3986
|
}
|
|
2441
3987
|
},
|
|
2442
3988
|
"plugins/contacts/mcp": {
|