@coze-arch/cli 0.0.18 → 0.0.19-alpha.235d9c
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/lib/__templates__/expo/.coze +1 -0
- package/lib/__templates__/expo/.cozeproj/scripts/validate.sh +8 -0
- package/lib/__templates__/expo/package.json +2 -1
- package/lib/__templates__/nextjs/.coze +1 -0
- package/lib/__templates__/nextjs/package.json +3 -1
- package/lib/__templates__/nextjs/scripts/validate.sh +10 -0
- package/lib/__templates__/nuxt-vue/.coze +1 -0
- package/lib/__templates__/nuxt-vue/eslint.config.mjs +25 -0
- package/lib/__templates__/nuxt-vue/package.json +9 -2
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +790 -10
- package/lib/__templates__/nuxt-vue/scripts/validate.sh +10 -0
- package/lib/__templates__/pi-agent/.coze +10 -0
- package/lib/__templates__/pi-agent/AGENTS.md +144 -0
- package/lib/__templates__/pi-agent/README.md +216 -0
- package/lib/__templates__/pi-agent/_gitignore +3 -0
- package/lib/__templates__/pi-agent/_npmrc +23 -0
- package/lib/__templates__/pi-agent/bin/pi-bot.ts +8 -0
- package/lib/__templates__/pi-agent/docs/project-overview.md +374 -0
- package/lib/__templates__/pi-agent/docs/user/getting-started.md +47 -0
- package/lib/__templates__/pi-agent/package.json +63 -0
- package/lib/__templates__/pi-agent/pi-resources/SYSTEM.md +15 -0
- package/lib/__templates__/pi-agent/pi-resources/extensions/preference-memory/index.ts +355 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-asr/SKILL.md +36 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-asr/scripts/asr.mjs +9 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-image-gen/SKILL.md +41 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-image-gen/scripts/gen.mjs +9 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-tts/SKILL.md +85 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-tts/scripts/tts.mjs +9 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-video-gen/SKILL.md +53 -0
- package/lib/__templates__/pi-agent/pi-resources/skills/coze-video-gen/scripts/gen.mjs +9 -0
- package/lib/__templates__/pi-agent/pnpm-lock.yaml +8282 -0
- package/lib/__templates__/pi-agent/scripts/dev.sh +14 -0
- package/lib/__templates__/pi-agent/scripts/prepare.sh +35 -0
- package/lib/__templates__/pi-agent/src/agent.ts +363 -0
- package/lib/__templates__/pi-agent/src/channels/feishu/index.ts +760 -0
- package/lib/__templates__/pi-agent/src/channels/feishu/streaming-card.ts +297 -0
- package/lib/__templates__/pi-agent/src/channels/wechat/index.ts +171 -0
- package/lib/__templates__/pi-agent/src/cli.ts +117 -0
- package/lib/__templates__/pi-agent/src/config.ts +708 -0
- package/lib/__templates__/pi-agent/src/core.ts +218 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/channels.ts +104 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/docs.ts +204 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/models.ts +98 -0
- package/lib/__templates__/pi-agent/src/dashboard/api/overview.ts +33 -0
- package/lib/__templates__/pi-agent/src/dashboard/config-store.ts +64 -0
- package/lib/__templates__/pi-agent/src/dashboard/index.ts +39 -0
- package/lib/__templates__/pi-agent/src/dashboard/server.ts +622 -0
- package/lib/__templates__/pi-agent/src/dashboard/types.ts +25 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/index.html +13 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/postcss.config.cjs +7 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/app-layout.tsx +186 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/page-title.tsx +17 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/alert.tsx +22 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/badge.tsx +25 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/button.tsx +40 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/card.tsx +29 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/input.tsx +18 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/label.tsx +8 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/select.tsx +80 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/components/ui/separator.tsx +23 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/hooks/use-fetch.ts +32 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/hooks/use-local-storage-state.ts +23 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/main.tsx +30 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/channels-page.tsx +188 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/chat-page.tsx +451 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/docs-page.tsx +65 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/models-page.tsx +122 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/pages/overview-page.tsx +134 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/services/chat-ws-service.ts +167 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/styles.css +294 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/src/utils/index.ts +11 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/tsconfig.json +13 -0
- package/lib/__templates__/pi-agent/src/dashboard/web/vite.config.ts +17 -0
- package/lib/__templates__/pi-agent/src/index.ts +123 -0
- package/lib/__templates__/pi-agent/src/pi-resources.ts +125 -0
- package/lib/__templates__/pi-agent/src/session-store.ts +223 -0
- package/lib/__templates__/pi-agent/src/tools/common/format-coze-error.ts +12 -0
- package/lib/__templates__/pi-agent/src/tools/index.ts +2 -0
- package/lib/__templates__/pi-agent/src/tools/web-fetch/index.ts +195 -0
- package/lib/__templates__/pi-agent/src/tools/web-search/index.ts +206 -0
- package/lib/__templates__/pi-agent/template.config.js +45 -0
- package/lib/__templates__/pi-agent/tests/cli.test.ts +136 -0
- package/lib/__templates__/pi-agent/tests/config.test.ts +315 -0
- package/lib/__templates__/pi-agent/tests/dashboard-docs-api.test.ts +125 -0
- package/lib/__templates__/pi-agent/tests/dashboard-models-api.test.ts +171 -0
- package/lib/__templates__/pi-agent/tests/feishu-channel.test.ts +149 -0
- package/lib/__templates__/pi-agent/tests/feishu-streaming-card.test.ts +15 -0
- package/lib/__templates__/pi-agent/tests/pi-resources.test.ts +73 -0
- package/lib/__templates__/pi-agent/tests/preference-memory.test.ts +43 -0
- package/lib/__templates__/pi-agent/tests/session-store.test.ts +61 -0
- package/lib/__templates__/pi-agent/tests/smoke/run-smoke.ts +275 -0
- package/lib/__templates__/pi-agent/tests/web-fetch.test.ts +157 -0
- package/lib/__templates__/pi-agent/tests/web-search.test.ts +208 -0
- package/lib/__templates__/pi-agent/tsconfig.json +21 -0
- package/lib/__templates__/pi-agent/types/larksuiteoapi-node-sdk.d.ts +113 -0
- package/lib/__templates__/taro/.coze +1 -0
- package/lib/__templates__/taro/.cozeproj/scripts/validate.sh +8 -0
- package/lib/__templates__/taro/package.json +1 -1
- package/lib/__templates__/templates.json +24 -0
- package/lib/__templates__/vite/.coze +1 -0
- package/lib/__templates__/vite/package.json +3 -1
- package/lib/__templates__/vite/scripts/validate.sh +10 -0
- package/lib/cli.js +13 -2
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ importers:
|
|
|
13
13
|
version: 1.11.0(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)
|
|
14
14
|
nuxt:
|
|
15
15
|
specifier: ^4.3.1
|
|
16
|
-
version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
16
|
+
version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
17
17
|
tailwind-merge:
|
|
18
18
|
specifier: ^2.6.0
|
|
19
19
|
version: 2.6.1
|
|
@@ -36,6 +36,12 @@ importers:
|
|
|
36
36
|
coze-coding-dev-sdk:
|
|
37
37
|
specifier: ^0.7.16
|
|
38
38
|
version: 0.7.17(openai@6.27.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
|
|
39
|
+
eslint:
|
|
40
|
+
specifier: ^9
|
|
41
|
+
version: 9.39.4(jiti@2.6.1)
|
|
42
|
+
eslint-plugin-vue:
|
|
43
|
+
specifier: ^10
|
|
44
|
+
version: 10.9.0(@typescript-eslint/parser@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1)))
|
|
39
45
|
only-allow:
|
|
40
46
|
specifier: ^1.2.2
|
|
41
47
|
version: 1.2.2
|
|
@@ -48,6 +54,9 @@ importers:
|
|
|
48
54
|
typescript:
|
|
49
55
|
specifier: ^5
|
|
50
56
|
version: 5.9.3
|
|
57
|
+
typescript-eslint:
|
|
58
|
+
specifier: ^8
|
|
59
|
+
version: 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
51
60
|
|
|
52
61
|
packages:
|
|
53
62
|
|
|
@@ -383,10 +392,68 @@ packages:
|
|
|
383
392
|
cpu: [x64]
|
|
384
393
|
os: [win32]
|
|
385
394
|
|
|
395
|
+
'@eslint-community/eslint-utils@4.9.1':
|
|
396
|
+
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
397
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
398
|
+
peerDependencies:
|
|
399
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
400
|
+
|
|
401
|
+
'@eslint-community/regexpp@4.12.2':
|
|
402
|
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
403
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
404
|
+
|
|
405
|
+
'@eslint/config-array@0.21.2':
|
|
406
|
+
resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
|
|
407
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
408
|
+
|
|
409
|
+
'@eslint/config-helpers@0.4.2':
|
|
410
|
+
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
|
|
411
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
412
|
+
|
|
413
|
+
'@eslint/core@0.17.0':
|
|
414
|
+
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
|
415
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
416
|
+
|
|
417
|
+
'@eslint/eslintrc@3.3.5':
|
|
418
|
+
resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
|
|
419
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
420
|
+
|
|
421
|
+
'@eslint/js@9.39.4':
|
|
422
|
+
resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==}
|
|
423
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
424
|
+
|
|
425
|
+
'@eslint/object-schema@2.1.7':
|
|
426
|
+
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
|
|
427
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
428
|
+
|
|
429
|
+
'@eslint/plugin-kit@0.4.1':
|
|
430
|
+
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
431
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
432
|
+
|
|
386
433
|
'@fastify/accept-negotiator@1.1.0':
|
|
387
434
|
resolution: {integrity: sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ==}
|
|
388
435
|
engines: {node: '>=14'}
|
|
389
436
|
|
|
437
|
+
'@humanfs/core@0.19.2':
|
|
438
|
+
resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
|
|
439
|
+
engines: {node: '>=18.18.0'}
|
|
440
|
+
|
|
441
|
+
'@humanfs/node@0.16.8':
|
|
442
|
+
resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
|
|
443
|
+
engines: {node: '>=18.18.0'}
|
|
444
|
+
|
|
445
|
+
'@humanfs/types@0.15.0':
|
|
446
|
+
resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
|
|
447
|
+
engines: {node: '>=18.18.0'}
|
|
448
|
+
|
|
449
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
450
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
451
|
+
engines: {node: '>=12.22'}
|
|
452
|
+
|
|
453
|
+
'@humanwhocodes/retry@0.4.3':
|
|
454
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
455
|
+
engines: {node: '>=18.18'}
|
|
456
|
+
|
|
390
457
|
'@ioredis/commands@1.5.1':
|
|
391
458
|
resolution: {integrity: sha512-JH8ZL/ywcJyR9MmJ5BNqZllXNZQqQbnVZOqpPQqE1vHiFgAw4NHbvE0FOduNU8IX9babitBT46571OnPTT0Zcw==}
|
|
392
459
|
|
|
@@ -1283,9 +1350,15 @@ packages:
|
|
|
1283
1350
|
'@tybys/wasm-util@0.10.1':
|
|
1284
1351
|
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
|
|
1285
1352
|
|
|
1353
|
+
'@types/esrecurse@4.3.1':
|
|
1354
|
+
resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
|
|
1355
|
+
|
|
1286
1356
|
'@types/estree@1.0.8':
|
|
1287
1357
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
1288
1358
|
|
|
1359
|
+
'@types/json-schema@7.0.15':
|
|
1360
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
1361
|
+
|
|
1289
1362
|
'@types/node@20.19.37':
|
|
1290
1363
|
resolution: {integrity: sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==}
|
|
1291
1364
|
|
|
@@ -1301,6 +1374,65 @@ packages:
|
|
|
1301
1374
|
'@types/ws@8.18.1':
|
|
1302
1375
|
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
1303
1376
|
|
|
1377
|
+
'@typescript-eslint/eslint-plugin@8.59.0':
|
|
1378
|
+
resolution: {integrity: sha512-HyAZtpdkgZwpq8Sz3FSUvCR4c+ScbuWa9AksK2Jweub7w4M3yTz4O11AqVJzLYjy/B9ZWPyc81I+mOdJU/bDQw==}
|
|
1379
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1380
|
+
peerDependencies:
|
|
1381
|
+
'@typescript-eslint/parser': ^8.59.0
|
|
1382
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1383
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1384
|
+
|
|
1385
|
+
'@typescript-eslint/parser@8.59.0':
|
|
1386
|
+
resolution: {integrity: sha512-TI1XGwKbDpo9tRW8UDIXCOeLk55qe9ZFGs8MTKU6/M08HWTw52DD/IYhfQtOEhEdPhLMT26Ka/x7p70nd3dzDg==}
|
|
1387
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1388
|
+
peerDependencies:
|
|
1389
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1390
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1391
|
+
|
|
1392
|
+
'@typescript-eslint/project-service@8.59.0':
|
|
1393
|
+
resolution: {integrity: sha512-Lw5ITrR5s5TbC19YSvlr63ZfLaJoU6vtKTHyB0GQOpX0W7d5/Ir6vUahWi/8Sps/nOukZQ0IB3SmlxZnjaKVnw==}
|
|
1394
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1395
|
+
peerDependencies:
|
|
1396
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1397
|
+
|
|
1398
|
+
'@typescript-eslint/scope-manager@8.59.0':
|
|
1399
|
+
resolution: {integrity: sha512-UzR16Ut8IpA3Mc4DbgAShlPPkVm8xXMWafXxB0BocaVRHs8ZGakAxGRskF7FId3sdk9lgGD73GSFaWmWFDE4dg==}
|
|
1400
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1401
|
+
|
|
1402
|
+
'@typescript-eslint/tsconfig-utils@8.59.0':
|
|
1403
|
+
resolution: {integrity: sha512-91Sbl3s4Kb3SybliIY6muFBmHVv+pYXfybC4Oolp3dvk8BvIE3wOPc+403CWIT7mJNkfQRGtdqghzs2+Z91Tqg==}
|
|
1404
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1405
|
+
peerDependencies:
|
|
1406
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1407
|
+
|
|
1408
|
+
'@typescript-eslint/type-utils@8.59.0':
|
|
1409
|
+
resolution: {integrity: sha512-3TRiZaQSltGqGeNrJzzr1+8YcEobKH9rHnqIp/1psfKFmhRQDNMGP5hBufanYTGznwShzVLs3Mz+gDN7HkWfXg==}
|
|
1410
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1411
|
+
peerDependencies:
|
|
1412
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1413
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1414
|
+
|
|
1415
|
+
'@typescript-eslint/types@8.59.0':
|
|
1416
|
+
resolution: {integrity: sha512-nLzdsT1gdOgFxxxwrlNVUBzSNBEEHJ86bblmk4QAS6stfig7rcJzWKqCyxFy3YRRHXDWEkb2NralA1nOYkkm/A==}
|
|
1417
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1418
|
+
|
|
1419
|
+
'@typescript-eslint/typescript-estree@8.59.0':
|
|
1420
|
+
resolution: {integrity: sha512-O9Re9P1BmBLFJyikRbQpLku/QA3/AueZNO9WePLBwQrvkixTmDe8u76B6CYUAITRl/rHawggEqUGn5QIkVRLMw==}
|
|
1421
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1422
|
+
peerDependencies:
|
|
1423
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1424
|
+
|
|
1425
|
+
'@typescript-eslint/utils@8.59.0':
|
|
1426
|
+
resolution: {integrity: sha512-I1R/K7V07XsMJ12Oaxg/O9GfrysGTmCRhvZJBv0RE0NcULMzjqVpR5kRRQjHsz3J/bElU7HwCO7zkqL+MSUz+g==}
|
|
1427
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1428
|
+
peerDependencies:
|
|
1429
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1430
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1431
|
+
|
|
1432
|
+
'@typescript-eslint/visitor-keys@8.59.0':
|
|
1433
|
+
resolution: {integrity: sha512-/uejZt4dSere1bx12WLlPfv8GktzcaDtuJ7s42/HEZ5zGj9oxRaD4bj7qwSunXkf+pbAhFt2zjpHYUiT5lHf0Q==}
|
|
1434
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1435
|
+
|
|
1304
1436
|
'@unhead/vue@2.1.12':
|
|
1305
1437
|
resolution: {integrity: sha512-zEWqg0nZM8acpuTZE40wkeUl8AhIe0tU0OkilVi1D4fmVjACrwoh5HP6aNqJ8kUnKsoy6D+R3Vi/O+fmdNGO7g==}
|
|
1306
1438
|
peerDependencies:
|
|
@@ -1419,6 +1551,11 @@ packages:
|
|
|
1419
1551
|
peerDependencies:
|
|
1420
1552
|
acorn: ^8
|
|
1421
1553
|
|
|
1554
|
+
acorn-jsx@5.3.2:
|
|
1555
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
1556
|
+
peerDependencies:
|
|
1557
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
1558
|
+
|
|
1422
1559
|
acorn@8.16.0:
|
|
1423
1560
|
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
|
|
1424
1561
|
engines: {node: '>=0.4.0'}
|
|
@@ -1428,6 +1565,9 @@ packages:
|
|
|
1428
1565
|
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
|
|
1429
1566
|
engines: {node: '>= 14'}
|
|
1430
1567
|
|
|
1568
|
+
ajv@6.15.0:
|
|
1569
|
+
resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
|
|
1570
|
+
|
|
1431
1571
|
alien-signals@3.1.2:
|
|
1432
1572
|
resolution: {integrity: sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==}
|
|
1433
1573
|
|
|
@@ -1473,6 +1613,9 @@ packages:
|
|
|
1473
1613
|
arg@5.0.2:
|
|
1474
1614
|
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
1475
1615
|
|
|
1616
|
+
argparse@2.0.1:
|
|
1617
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
1618
|
+
|
|
1476
1619
|
ast-kit@2.2.0:
|
|
1477
1620
|
resolution: {integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==}
|
|
1478
1621
|
engines: {node: '>=20.19.0'}
|
|
@@ -1644,6 +1787,10 @@ packages:
|
|
|
1644
1787
|
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
|
1645
1788
|
engines: {node: '>= 0.4'}
|
|
1646
1789
|
|
|
1790
|
+
callsites@3.1.0:
|
|
1791
|
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
1792
|
+
engines: {node: '>=6'}
|
|
1793
|
+
|
|
1647
1794
|
camelcase-css@2.0.1:
|
|
1648
1795
|
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
|
1649
1796
|
engines: {node: '>= 6'}
|
|
@@ -1938,6 +2085,9 @@ packages:
|
|
|
1938
2085
|
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
1939
2086
|
engines: {node: '>=4.0.0'}
|
|
1940
2087
|
|
|
2088
|
+
deep-is@0.1.4:
|
|
2089
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
2090
|
+
|
|
1941
2091
|
deepmerge@4.3.1:
|
|
1942
2092
|
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
|
1943
2093
|
engines: {node: '>=0.10.0'}
|
|
@@ -2103,16 +2253,88 @@ packages:
|
|
|
2103
2253
|
escape-html@1.0.3:
|
|
2104
2254
|
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
|
|
2105
2255
|
|
|
2256
|
+
escape-string-regexp@4.0.0:
|
|
2257
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
2258
|
+
engines: {node: '>=10'}
|
|
2259
|
+
|
|
2106
2260
|
escape-string-regexp@5.0.0:
|
|
2107
2261
|
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
|
2108
2262
|
engines: {node: '>=12'}
|
|
2109
2263
|
|
|
2264
|
+
eslint-plugin-vue@10.9.0:
|
|
2265
|
+
resolution: {integrity: sha512-EFNNzu4HqtTRb5DJINpyd+u3bDdzETWDMpCzG+UBHz1tpsnMDCeOcf61u4Wy/cbXnMymK+MT9bjH7KcG1fItSw==}
|
|
2266
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2267
|
+
peerDependencies:
|
|
2268
|
+
'@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
|
|
2269
|
+
'@typescript-eslint/parser': ^7.0.0 || ^8.0.0
|
|
2270
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2271
|
+
vue-eslint-parser: ^10.0.0
|
|
2272
|
+
peerDependenciesMeta:
|
|
2273
|
+
'@stylistic/eslint-plugin':
|
|
2274
|
+
optional: true
|
|
2275
|
+
'@typescript-eslint/parser':
|
|
2276
|
+
optional: true
|
|
2277
|
+
|
|
2278
|
+
eslint-scope@8.4.0:
|
|
2279
|
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
|
|
2280
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2281
|
+
|
|
2282
|
+
eslint-scope@9.1.2:
|
|
2283
|
+
resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
|
|
2284
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
2285
|
+
|
|
2286
|
+
eslint-visitor-keys@3.4.3:
|
|
2287
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
2288
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
2289
|
+
|
|
2290
|
+
eslint-visitor-keys@4.2.1:
|
|
2291
|
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
|
2292
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2293
|
+
|
|
2294
|
+
eslint-visitor-keys@5.0.1:
|
|
2295
|
+
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
2296
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
2297
|
+
|
|
2298
|
+
eslint@9.39.4:
|
|
2299
|
+
resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==}
|
|
2300
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2301
|
+
hasBin: true
|
|
2302
|
+
peerDependencies:
|
|
2303
|
+
jiti: '*'
|
|
2304
|
+
peerDependenciesMeta:
|
|
2305
|
+
jiti:
|
|
2306
|
+
optional: true
|
|
2307
|
+
|
|
2308
|
+
espree@10.4.0:
|
|
2309
|
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
|
2310
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2311
|
+
|
|
2312
|
+
espree@11.2.0:
|
|
2313
|
+
resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
|
|
2314
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
2315
|
+
|
|
2316
|
+
esquery@1.7.0:
|
|
2317
|
+
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
2318
|
+
engines: {node: '>=0.10'}
|
|
2319
|
+
|
|
2320
|
+
esrecurse@4.3.0:
|
|
2321
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
2322
|
+
engines: {node: '>=4.0'}
|
|
2323
|
+
|
|
2324
|
+
estraverse@5.3.0:
|
|
2325
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
2326
|
+
engines: {node: '>=4.0'}
|
|
2327
|
+
|
|
2110
2328
|
estree-walker@2.0.2:
|
|
2111
2329
|
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
|
2112
2330
|
|
|
2113
2331
|
estree-walker@3.0.3:
|
|
2114
2332
|
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
2115
2333
|
|
|
2334
|
+
esutils@2.0.3:
|
|
2335
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
2336
|
+
engines: {node: '>=0.10.0'}
|
|
2337
|
+
|
|
2116
2338
|
etag@1.8.1:
|
|
2117
2339
|
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
|
|
2118
2340
|
engines: {node: '>= 0.6'}
|
|
@@ -2142,6 +2364,9 @@ packages:
|
|
|
2142
2364
|
exsolve@1.0.8:
|
|
2143
2365
|
resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
|
|
2144
2366
|
|
|
2367
|
+
fast-deep-equal@3.1.3:
|
|
2368
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
2369
|
+
|
|
2145
2370
|
fast-fifo@1.3.2:
|
|
2146
2371
|
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
|
|
2147
2372
|
|
|
@@ -2149,6 +2374,12 @@ packages:
|
|
|
2149
2374
|
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
2150
2375
|
engines: {node: '>=8.6.0'}
|
|
2151
2376
|
|
|
2377
|
+
fast-json-stable-stringify@2.1.0:
|
|
2378
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
2379
|
+
|
|
2380
|
+
fast-levenshtein@2.0.6:
|
|
2381
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
2382
|
+
|
|
2152
2383
|
fast-npm-meta@1.4.2:
|
|
2153
2384
|
resolution: {integrity: sha512-XXyd9d3ie/JeIIjm6WeKalvapGGFI4ShAjPJM78vgUFYzoEsuNSjvvVTuht0XZcwbVdOnEEGzhxwguRbxkIcDg==}
|
|
2154
2385
|
hasBin: true
|
|
@@ -2165,6 +2396,10 @@ packages:
|
|
|
2165
2396
|
picomatch:
|
|
2166
2397
|
optional: true
|
|
2167
2398
|
|
|
2399
|
+
file-entry-cache@8.0.0:
|
|
2400
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
2401
|
+
engines: {node: '>=16.0.0'}
|
|
2402
|
+
|
|
2168
2403
|
file-uri-to-path@1.0.0:
|
|
2169
2404
|
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
|
|
2170
2405
|
|
|
@@ -2172,6 +2407,17 @@ packages:
|
|
|
2172
2407
|
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
2173
2408
|
engines: {node: '>=8'}
|
|
2174
2409
|
|
|
2410
|
+
find-up@5.0.0:
|
|
2411
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
2412
|
+
engines: {node: '>=10'}
|
|
2413
|
+
|
|
2414
|
+
flat-cache@4.0.1:
|
|
2415
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
2416
|
+
engines: {node: '>=16'}
|
|
2417
|
+
|
|
2418
|
+
flatted@3.4.2:
|
|
2419
|
+
resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
|
|
2420
|
+
|
|
2175
2421
|
follow-redirects@1.15.11:
|
|
2176
2422
|
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
|
|
2177
2423
|
engines: {node: '>=4.0'}
|
|
@@ -2287,6 +2533,10 @@ packages:
|
|
|
2287
2533
|
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
|
|
2288
2534
|
engines: {node: '>=18'}
|
|
2289
2535
|
|
|
2536
|
+
globals@14.0.0:
|
|
2537
|
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
2538
|
+
engines: {node: '>=18'}
|
|
2539
|
+
|
|
2290
2540
|
globby@16.1.1:
|
|
2291
2541
|
resolution: {integrity: sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==}
|
|
2292
2542
|
engines: {node: '>=20'}
|
|
@@ -2369,6 +2619,10 @@ packages:
|
|
|
2369
2619
|
ieee754@1.2.1:
|
|
2370
2620
|
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
2371
2621
|
|
|
2622
|
+
ignore@5.3.2:
|
|
2623
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
2624
|
+
engines: {node: '>= 4'}
|
|
2625
|
+
|
|
2372
2626
|
ignore@7.0.5:
|
|
2373
2627
|
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
2374
2628
|
engines: {node: '>= 4'}
|
|
@@ -2376,9 +2630,17 @@ packages:
|
|
|
2376
2630
|
image-meta@0.2.2:
|
|
2377
2631
|
resolution: {integrity: sha512-3MOLanc3sb3LNGWQl1RlQlNWURE5g32aUphrDyFeCsxBTk08iE3VNe4CwsUZ0Qs1X+EfX0+r29Sxdpza4B+yRA==}
|
|
2378
2632
|
|
|
2633
|
+
import-fresh@3.3.1:
|
|
2634
|
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
2635
|
+
engines: {node: '>=6'}
|
|
2636
|
+
|
|
2379
2637
|
impound@1.1.5:
|
|
2380
2638
|
resolution: {integrity: sha512-5AUn+QE0UofqNHu5f2Skf6Svukdg4ehOIq8O0EtqIx4jta0CDZYBPqpIHt0zrlUTiFVYlLpeH39DoikXBjPKpA==}
|
|
2381
2639
|
|
|
2640
|
+
imurmurhash@0.1.4:
|
|
2641
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
2642
|
+
engines: {node: '>=0.8.19'}
|
|
2643
|
+
|
|
2382
2644
|
inflight@1.0.6:
|
|
2383
2645
|
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
|
2384
2646
|
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
|
|
@@ -2521,11 +2783,24 @@ packages:
|
|
|
2521
2783
|
js-tokens@9.0.1:
|
|
2522
2784
|
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
|
|
2523
2785
|
|
|
2786
|
+
js-yaml@4.1.1:
|
|
2787
|
+
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
2788
|
+
hasBin: true
|
|
2789
|
+
|
|
2524
2790
|
jsesc@3.1.0:
|
|
2525
2791
|
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
2526
2792
|
engines: {node: '>=6'}
|
|
2527
2793
|
hasBin: true
|
|
2528
2794
|
|
|
2795
|
+
json-buffer@3.0.1:
|
|
2796
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
2797
|
+
|
|
2798
|
+
json-schema-traverse@0.4.1:
|
|
2799
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
2800
|
+
|
|
2801
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
2802
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
2803
|
+
|
|
2529
2804
|
json5@2.2.3:
|
|
2530
2805
|
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
2531
2806
|
engines: {node: '>=6'}
|
|
@@ -2539,6 +2814,9 @@ packages:
|
|
|
2539
2814
|
engines: {node: '>= 0.6'}
|
|
2540
2815
|
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
2541
2816
|
|
|
2817
|
+
keyv@4.5.4:
|
|
2818
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
2819
|
+
|
|
2542
2820
|
kleur@4.1.5:
|
|
2543
2821
|
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
|
|
2544
2822
|
engines: {node: '>=6'}
|
|
@@ -2593,6 +2871,10 @@ packages:
|
|
|
2593
2871
|
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
|
|
2594
2872
|
engines: {node: '>= 0.6.3'}
|
|
2595
2873
|
|
|
2874
|
+
levn@0.4.1:
|
|
2875
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
2876
|
+
engines: {node: '>= 0.8.0'}
|
|
2877
|
+
|
|
2596
2878
|
lightningcss-android-arm64@1.31.1:
|
|
2597
2879
|
resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
|
|
2598
2880
|
engines: {node: '>= 12.0.0'}
|
|
@@ -2682,6 +2964,10 @@ packages:
|
|
|
2682
2964
|
resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
|
|
2683
2965
|
engines: {node: '>=14'}
|
|
2684
2966
|
|
|
2967
|
+
locate-path@6.0.0:
|
|
2968
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
2969
|
+
engines: {node: '>=10'}
|
|
2970
|
+
|
|
2685
2971
|
lodash.defaults@4.2.0:
|
|
2686
2972
|
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
|
|
2687
2973
|
|
|
@@ -2691,6 +2977,9 @@ packages:
|
|
|
2691
2977
|
lodash.memoize@4.1.2:
|
|
2692
2978
|
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
|
|
2693
2979
|
|
|
2980
|
+
lodash.merge@4.6.2:
|
|
2981
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
2982
|
+
|
|
2694
2983
|
lodash.uniq@4.5.0:
|
|
2695
2984
|
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
|
|
2696
2985
|
|
|
@@ -2844,6 +3133,9 @@ packages:
|
|
|
2844
3133
|
napi-build-utils@2.0.0:
|
|
2845
3134
|
resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
|
|
2846
3135
|
|
|
3136
|
+
natural-compare@1.4.0:
|
|
3137
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
3138
|
+
|
|
2847
3139
|
negotiator@0.6.3:
|
|
2848
3140
|
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
2849
3141
|
engines: {node: '>= 0.6'}
|
|
@@ -2998,6 +3290,10 @@ packages:
|
|
|
2998
3290
|
zod:
|
|
2999
3291
|
optional: true
|
|
3000
3292
|
|
|
3293
|
+
optionator@0.9.4:
|
|
3294
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
3295
|
+
engines: {node: '>= 0.8.0'}
|
|
3296
|
+
|
|
3001
3297
|
oxc-minify@0.112.0:
|
|
3002
3298
|
resolution: {integrity: sha512-rkVSeeIRSt+RYI9uX6xonBpLUpvZyegxIg0UL87ev7YAfUqp7IIZlRjkgQN5Us1lyXD//TOo0Dcuuro/TYOWoQ==}
|
|
3003
3299
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -3019,6 +3315,14 @@ packages:
|
|
|
3019
3315
|
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
|
|
3020
3316
|
engines: {node: '>=4'}
|
|
3021
3317
|
|
|
3318
|
+
p-limit@3.1.0:
|
|
3319
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
3320
|
+
engines: {node: '>=10'}
|
|
3321
|
+
|
|
3322
|
+
p-locate@5.0.0:
|
|
3323
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
3324
|
+
engines: {node: '>=10'}
|
|
3325
|
+
|
|
3022
3326
|
p-queue@6.6.2:
|
|
3023
3327
|
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
|
|
3024
3328
|
engines: {node: '>=8'}
|
|
@@ -3030,6 +3334,10 @@ packages:
|
|
|
3030
3334
|
package-json-from-dist@1.0.1:
|
|
3031
3335
|
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
|
|
3032
3336
|
|
|
3337
|
+
parent-module@1.0.1:
|
|
3338
|
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
3339
|
+
engines: {node: '>=6'}
|
|
3340
|
+
|
|
3033
3341
|
parseurl@1.3.3:
|
|
3034
3342
|
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
|
3035
3343
|
engines: {node: '>= 0.8'}
|
|
@@ -3037,6 +3345,10 @@ packages:
|
|
|
3037
3345
|
path-browserify@1.0.1:
|
|
3038
3346
|
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
|
|
3039
3347
|
|
|
3348
|
+
path-exists@4.0.0:
|
|
3349
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
3350
|
+
engines: {node: '>=8'}
|
|
3351
|
+
|
|
3040
3352
|
path-is-absolute@1.0.1:
|
|
3041
3353
|
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
|
3042
3354
|
engines: {node: '>=0.10.0'}
|
|
@@ -3072,6 +3384,9 @@ packages:
|
|
|
3072
3384
|
perfect-debounce@2.1.0:
|
|
3073
3385
|
resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
|
|
3074
3386
|
|
|
3387
|
+
pg-cloudflare@1.3.0:
|
|
3388
|
+
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
3389
|
+
|
|
3075
3390
|
pg-connection-string@2.12.0:
|
|
3076
3391
|
resolution: {integrity: sha512-U7qg+bpswf3Cs5xLzRqbXbQl85ng0mfSV/J0nnA31MCLgvEaAo7CIhmeyrmJpOr7o+zm0rXK+hNnT5l9RHkCkQ==}
|
|
3077
3392
|
|
|
@@ -3373,6 +3688,10 @@ packages:
|
|
|
3373
3688
|
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
3374
3689
|
hasBin: true
|
|
3375
3690
|
|
|
3691
|
+
prelude-ls@1.2.1:
|
|
3692
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
3693
|
+
engines: {node: '>= 0.8.0'}
|
|
3694
|
+
|
|
3376
3695
|
pretty-bytes@7.1.0:
|
|
3377
3696
|
resolution: {integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==}
|
|
3378
3697
|
engines: {node: '>=20'}
|
|
@@ -3390,6 +3709,10 @@ packages:
|
|
|
3390
3709
|
pump@3.0.4:
|
|
3391
3710
|
resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
|
|
3392
3711
|
|
|
3712
|
+
punycode@2.3.1:
|
|
3713
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
3714
|
+
engines: {node: '>=6'}
|
|
3715
|
+
|
|
3393
3716
|
quansync@0.2.11:
|
|
3394
3717
|
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
|
|
3395
3718
|
|
|
@@ -3466,6 +3789,10 @@ packages:
|
|
|
3466
3789
|
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
3467
3790
|
engines: {node: '>=0.10.0'}
|
|
3468
3791
|
|
|
3792
|
+
resolve-from@4.0.0:
|
|
3793
|
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
3794
|
+
engines: {node: '>=4'}
|
|
3795
|
+
|
|
3469
3796
|
resolve-from@5.0.0:
|
|
3470
3797
|
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
|
3471
3798
|
engines: {node: '>=8'}
|
|
@@ -3685,6 +4012,10 @@ packages:
|
|
|
3685
4012
|
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
|
3686
4013
|
engines: {node: '>=0.10.0'}
|
|
3687
4014
|
|
|
4015
|
+
strip-json-comments@3.1.1:
|
|
4016
|
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
4017
|
+
engines: {node: '>=8'}
|
|
4018
|
+
|
|
3688
4019
|
strip-literal@3.1.0:
|
|
3689
4020
|
resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
|
|
3690
4021
|
|
|
@@ -3808,6 +4139,12 @@ packages:
|
|
|
3808
4139
|
tr46@0.0.3:
|
|
3809
4140
|
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
|
3810
4141
|
|
|
4142
|
+
ts-api-utils@2.5.0:
|
|
4143
|
+
resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
|
|
4144
|
+
engines: {node: '>=18.12'}
|
|
4145
|
+
peerDependencies:
|
|
4146
|
+
typescript: '>=4.8.4'
|
|
4147
|
+
|
|
3811
4148
|
ts-interface-checker@0.1.13:
|
|
3812
4149
|
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
|
3813
4150
|
|
|
@@ -3821,6 +4158,10 @@ packages:
|
|
|
3821
4158
|
tunnel-agent@0.6.0:
|
|
3822
4159
|
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
3823
4160
|
|
|
4161
|
+
type-check@0.4.0:
|
|
4162
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
4163
|
+
engines: {node: '>= 0.8.0'}
|
|
4164
|
+
|
|
3824
4165
|
type-fest@5.4.4:
|
|
3825
4166
|
resolution: {integrity: sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw==}
|
|
3826
4167
|
engines: {node: '>=20'}
|
|
@@ -3832,6 +4173,13 @@ packages:
|
|
|
3832
4173
|
type-level-regexp@0.1.17:
|
|
3833
4174
|
resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
|
|
3834
4175
|
|
|
4176
|
+
typescript-eslint@8.59.0:
|
|
4177
|
+
resolution: {integrity: sha512-BU3ONW9X+v90EcCH9ZS6LMackcVtxRLlI3XrYyqZIwVSHIk7Qf7bFw1z0M9Q0IUxhTMZCf8piY9hTYaNEIASrw==}
|
|
4178
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4179
|
+
peerDependencies:
|
|
4180
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4181
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
4182
|
+
|
|
3835
4183
|
typescript@5.9.3:
|
|
3836
4184
|
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
3837
4185
|
engines: {node: '>=14.17'}
|
|
@@ -3977,6 +4325,9 @@ packages:
|
|
|
3977
4325
|
uqr@0.1.2:
|
|
3978
4326
|
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
|
|
3979
4327
|
|
|
4328
|
+
uri-js@4.4.1:
|
|
4329
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
4330
|
+
|
|
3980
4331
|
util-deprecate@1.0.2:
|
|
3981
4332
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
3982
4333
|
|
|
@@ -4109,6 +4460,12 @@ packages:
|
|
|
4109
4460
|
vue-devtools-stub@0.1.0:
|
|
4110
4461
|
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
|
|
4111
4462
|
|
|
4463
|
+
vue-eslint-parser@10.4.0:
|
|
4464
|
+
resolution: {integrity: sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==}
|
|
4465
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4466
|
+
peerDependencies:
|
|
4467
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4468
|
+
|
|
4112
4469
|
vue-router@4.6.4:
|
|
4113
4470
|
resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
|
|
4114
4471
|
peerDependencies:
|
|
@@ -4145,6 +4502,10 @@ packages:
|
|
|
4145
4502
|
engines: {node: ^18.17.0 || >=20.5.0}
|
|
4146
4503
|
hasBin: true
|
|
4147
4504
|
|
|
4505
|
+
word-wrap@1.2.5:
|
|
4506
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
4507
|
+
engines: {node: '>=0.10.0'}
|
|
4508
|
+
|
|
4148
4509
|
wrap-ansi@7.0.0:
|
|
4149
4510
|
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
4150
4511
|
engines: {node: '>=10'}
|
|
@@ -4172,6 +4533,10 @@ packages:
|
|
|
4172
4533
|
resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
|
|
4173
4534
|
engines: {node: '>=18'}
|
|
4174
4535
|
|
|
4536
|
+
xml-name-validator@4.0.0:
|
|
4537
|
+
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
|
|
4538
|
+
engines: {node: '>=12'}
|
|
4539
|
+
|
|
4175
4540
|
xss@1.0.15:
|
|
4176
4541
|
resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==}
|
|
4177
4542
|
engines: {node: '>= 0.10.0'}
|
|
@@ -4209,6 +4574,10 @@ packages:
|
|
|
4209
4574
|
resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
|
|
4210
4575
|
engines: {node: '>= 4.0.0'}
|
|
4211
4576
|
|
|
4577
|
+
yocto-queue@0.1.0:
|
|
4578
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
4579
|
+
engines: {node: '>=10'}
|
|
4580
|
+
|
|
4212
4581
|
youch-core@0.3.3:
|
|
4213
4582
|
resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==}
|
|
4214
4583
|
|
|
@@ -4526,9 +4895,71 @@ snapshots:
|
|
|
4526
4895
|
'@esbuild/win32-x64@0.27.3':
|
|
4527
4896
|
optional: true
|
|
4528
4897
|
|
|
4898
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.6.1))':
|
|
4899
|
+
dependencies:
|
|
4900
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
4901
|
+
eslint-visitor-keys: 3.4.3
|
|
4902
|
+
|
|
4903
|
+
'@eslint-community/regexpp@4.12.2': {}
|
|
4904
|
+
|
|
4905
|
+
'@eslint/config-array@0.21.2':
|
|
4906
|
+
dependencies:
|
|
4907
|
+
'@eslint/object-schema': 2.1.7
|
|
4908
|
+
debug: 4.4.3
|
|
4909
|
+
minimatch: 3.1.5
|
|
4910
|
+
transitivePeerDependencies:
|
|
4911
|
+
- supports-color
|
|
4912
|
+
|
|
4913
|
+
'@eslint/config-helpers@0.4.2':
|
|
4914
|
+
dependencies:
|
|
4915
|
+
'@eslint/core': 0.17.0
|
|
4916
|
+
|
|
4917
|
+
'@eslint/core@0.17.0':
|
|
4918
|
+
dependencies:
|
|
4919
|
+
'@types/json-schema': 7.0.15
|
|
4920
|
+
|
|
4921
|
+
'@eslint/eslintrc@3.3.5':
|
|
4922
|
+
dependencies:
|
|
4923
|
+
ajv: 6.15.0
|
|
4924
|
+
debug: 4.4.3
|
|
4925
|
+
espree: 10.4.0
|
|
4926
|
+
globals: 14.0.0
|
|
4927
|
+
ignore: 5.3.2
|
|
4928
|
+
import-fresh: 3.3.1
|
|
4929
|
+
js-yaml: 4.1.1
|
|
4930
|
+
minimatch: 3.1.5
|
|
4931
|
+
strip-json-comments: 3.1.1
|
|
4932
|
+
transitivePeerDependencies:
|
|
4933
|
+
- supports-color
|
|
4934
|
+
|
|
4935
|
+
'@eslint/js@9.39.4': {}
|
|
4936
|
+
|
|
4937
|
+
'@eslint/object-schema@2.1.7': {}
|
|
4938
|
+
|
|
4939
|
+
'@eslint/plugin-kit@0.4.1':
|
|
4940
|
+
dependencies:
|
|
4941
|
+
'@eslint/core': 0.17.0
|
|
4942
|
+
levn: 0.4.1
|
|
4943
|
+
|
|
4529
4944
|
'@fastify/accept-negotiator@1.1.0':
|
|
4530
4945
|
optional: true
|
|
4531
4946
|
|
|
4947
|
+
'@humanfs/core@0.19.2':
|
|
4948
|
+
dependencies:
|
|
4949
|
+
'@humanfs/types': 0.15.0
|
|
4950
|
+
|
|
4951
|
+
'@humanfs/node@0.16.8':
|
|
4952
|
+
dependencies:
|
|
4953
|
+
'@humanfs/core': 0.19.2
|
|
4954
|
+
'@humanfs/types': 0.15.0
|
|
4955
|
+
'@humanwhocodes/retry': 0.4.3
|
|
4956
|
+
|
|
4957
|
+
'@humanfs/types@0.15.0': {}
|
|
4958
|
+
|
|
4959
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
4960
|
+
|
|
4961
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
4962
|
+
|
|
4532
4963
|
'@ioredis/commands@1.5.1': {}
|
|
4533
4964
|
|
|
4534
4965
|
'@isaacs/cliui@8.0.2':
|
|
@@ -4836,7 +5267,7 @@ snapshots:
|
|
|
4836
5267
|
transitivePeerDependencies:
|
|
4837
5268
|
- magicast
|
|
4838
5269
|
|
|
4839
|
-
'@nuxt/nitro-server@4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
|
5270
|
+
'@nuxt/nitro-server@4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
|
4840
5271
|
dependencies:
|
|
4841
5272
|
'@nuxt/devalue': 2.0.2
|
|
4842
5273
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
@@ -4854,7 +5285,7 @@ snapshots:
|
|
|
4854
5285
|
klona: 2.0.6
|
|
4855
5286
|
mocked-exports: 0.1.1
|
|
4856
5287
|
nitropack: 2.13.1
|
|
4857
|
-
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
5288
|
+
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
4858
5289
|
ohash: 2.0.11
|
|
4859
5290
|
pathe: 2.0.3
|
|
4860
5291
|
pkg-types: 2.3.0
|
|
@@ -4919,7 +5350,7 @@ snapshots:
|
|
|
4919
5350
|
rc9: 3.0.0
|
|
4920
5351
|
std-env: 3.10.0
|
|
4921
5352
|
|
|
4922
|
-
'@nuxt/vite-builder@4.3.1(@types/node@20.19.37)(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)':
|
|
5353
|
+
'@nuxt/vite-builder@4.3.1(@types/node@20.19.37)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)':
|
|
4923
5354
|
dependencies:
|
|
4924
5355
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
4925
5356
|
'@rollup/plugin-replace': 6.0.3(rollup@4.59.0)
|
|
@@ -4938,7 +5369,7 @@ snapshots:
|
|
|
4938
5369
|
magic-string: 0.30.21
|
|
4939
5370
|
mlly: 1.8.1
|
|
4940
5371
|
mocked-exports: 0.1.1
|
|
4941
|
-
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
5372
|
+
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
|
4942
5373
|
pathe: 2.0.3
|
|
4943
5374
|
pkg-types: 2.3.0
|
|
4944
5375
|
postcss: 8.5.8
|
|
@@ -4949,7 +5380,7 @@ snapshots:
|
|
|
4949
5380
|
unenv: 2.0.0-rc.24
|
|
4950
5381
|
vite: 7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
4951
5382
|
vite-node: 5.3.0(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
4952
|
-
vite-plugin-checker: 0.12.0(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
5383
|
+
vite-plugin-checker: 0.12.0(eslint@9.39.4(jiti@2.6.1))(optionator@0.9.4)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))
|
|
4953
5384
|
vue: 3.5.30(typescript@5.9.3)
|
|
4954
5385
|
vue-bundle-renderer: 2.2.0
|
|
4955
5386
|
transitivePeerDependencies:
|
|
@@ -5464,8 +5895,12 @@ snapshots:
|
|
|
5464
5895
|
tslib: 2.8.1
|
|
5465
5896
|
optional: true
|
|
5466
5897
|
|
|
5898
|
+
'@types/esrecurse@4.3.1': {}
|
|
5899
|
+
|
|
5467
5900
|
'@types/estree@1.0.8': {}
|
|
5468
5901
|
|
|
5902
|
+
'@types/json-schema@7.0.15': {}
|
|
5903
|
+
|
|
5469
5904
|
'@types/node@20.19.37':
|
|
5470
5905
|
dependencies:
|
|
5471
5906
|
undici-types: 6.21.0
|
|
@@ -5480,6 +5915,97 @@ snapshots:
|
|
|
5480
5915
|
dependencies:
|
|
5481
5916
|
'@types/node': 20.19.37
|
|
5482
5917
|
|
|
5918
|
+
'@typescript-eslint/eslint-plugin@8.59.0(@typescript-eslint/parser@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
|
|
5919
|
+
dependencies:
|
|
5920
|
+
'@eslint-community/regexpp': 4.12.2
|
|
5921
|
+
'@typescript-eslint/parser': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
5922
|
+
'@typescript-eslint/scope-manager': 8.59.0
|
|
5923
|
+
'@typescript-eslint/type-utils': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
5924
|
+
'@typescript-eslint/utils': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
5925
|
+
'@typescript-eslint/visitor-keys': 8.59.0
|
|
5926
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
5927
|
+
ignore: 7.0.5
|
|
5928
|
+
natural-compare: 1.4.0
|
|
5929
|
+
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
5930
|
+
typescript: 5.9.3
|
|
5931
|
+
transitivePeerDependencies:
|
|
5932
|
+
- supports-color
|
|
5933
|
+
|
|
5934
|
+
'@typescript-eslint/parser@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
|
|
5935
|
+
dependencies:
|
|
5936
|
+
'@typescript-eslint/scope-manager': 8.59.0
|
|
5937
|
+
'@typescript-eslint/types': 8.59.0
|
|
5938
|
+
'@typescript-eslint/typescript-estree': 8.59.0(typescript@5.9.3)
|
|
5939
|
+
'@typescript-eslint/visitor-keys': 8.59.0
|
|
5940
|
+
debug: 4.4.3
|
|
5941
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
5942
|
+
typescript: 5.9.3
|
|
5943
|
+
transitivePeerDependencies:
|
|
5944
|
+
- supports-color
|
|
5945
|
+
|
|
5946
|
+
'@typescript-eslint/project-service@8.59.0(typescript@5.9.3)':
|
|
5947
|
+
dependencies:
|
|
5948
|
+
'@typescript-eslint/tsconfig-utils': 8.59.0(typescript@5.9.3)
|
|
5949
|
+
'@typescript-eslint/types': 8.59.0
|
|
5950
|
+
debug: 4.4.3
|
|
5951
|
+
typescript: 5.9.3
|
|
5952
|
+
transitivePeerDependencies:
|
|
5953
|
+
- supports-color
|
|
5954
|
+
|
|
5955
|
+
'@typescript-eslint/scope-manager@8.59.0':
|
|
5956
|
+
dependencies:
|
|
5957
|
+
'@typescript-eslint/types': 8.59.0
|
|
5958
|
+
'@typescript-eslint/visitor-keys': 8.59.0
|
|
5959
|
+
|
|
5960
|
+
'@typescript-eslint/tsconfig-utils@8.59.0(typescript@5.9.3)':
|
|
5961
|
+
dependencies:
|
|
5962
|
+
typescript: 5.9.3
|
|
5963
|
+
|
|
5964
|
+
'@typescript-eslint/type-utils@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
|
|
5965
|
+
dependencies:
|
|
5966
|
+
'@typescript-eslint/types': 8.59.0
|
|
5967
|
+
'@typescript-eslint/typescript-estree': 8.59.0(typescript@5.9.3)
|
|
5968
|
+
'@typescript-eslint/utils': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
5969
|
+
debug: 4.4.3
|
|
5970
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
5971
|
+
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
5972
|
+
typescript: 5.9.3
|
|
5973
|
+
transitivePeerDependencies:
|
|
5974
|
+
- supports-color
|
|
5975
|
+
|
|
5976
|
+
'@typescript-eslint/types@8.59.0': {}
|
|
5977
|
+
|
|
5978
|
+
'@typescript-eslint/typescript-estree@8.59.0(typescript@5.9.3)':
|
|
5979
|
+
dependencies:
|
|
5980
|
+
'@typescript-eslint/project-service': 8.59.0(typescript@5.9.3)
|
|
5981
|
+
'@typescript-eslint/tsconfig-utils': 8.59.0(typescript@5.9.3)
|
|
5982
|
+
'@typescript-eslint/types': 8.59.0
|
|
5983
|
+
'@typescript-eslint/visitor-keys': 8.59.0
|
|
5984
|
+
debug: 4.4.3
|
|
5985
|
+
minimatch: 10.2.4
|
|
5986
|
+
semver: 7.7.4
|
|
5987
|
+
tinyglobby: 0.2.15
|
|
5988
|
+
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
5989
|
+
typescript: 5.9.3
|
|
5990
|
+
transitivePeerDependencies:
|
|
5991
|
+
- supports-color
|
|
5992
|
+
|
|
5993
|
+
'@typescript-eslint/utils@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
|
|
5994
|
+
dependencies:
|
|
5995
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
|
|
5996
|
+
'@typescript-eslint/scope-manager': 8.59.0
|
|
5997
|
+
'@typescript-eslint/types': 8.59.0
|
|
5998
|
+
'@typescript-eslint/typescript-estree': 8.59.0(typescript@5.9.3)
|
|
5999
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
6000
|
+
typescript: 5.9.3
|
|
6001
|
+
transitivePeerDependencies:
|
|
6002
|
+
- supports-color
|
|
6003
|
+
|
|
6004
|
+
'@typescript-eslint/visitor-keys@8.59.0':
|
|
6005
|
+
dependencies:
|
|
6006
|
+
'@typescript-eslint/types': 8.59.0
|
|
6007
|
+
eslint-visitor-keys: 5.0.1
|
|
6008
|
+
|
|
5483
6009
|
'@unhead/vue@2.1.12(vue@3.5.30(typescript@5.9.3))':
|
|
5484
6010
|
dependencies:
|
|
5485
6011
|
hookable: 6.0.1
|
|
@@ -5664,10 +6190,21 @@ snapshots:
|
|
|
5664
6190
|
dependencies:
|
|
5665
6191
|
acorn: 8.16.0
|
|
5666
6192
|
|
|
6193
|
+
acorn-jsx@5.3.2(acorn@8.16.0):
|
|
6194
|
+
dependencies:
|
|
6195
|
+
acorn: 8.16.0
|
|
6196
|
+
|
|
5667
6197
|
acorn@8.16.0: {}
|
|
5668
6198
|
|
|
5669
6199
|
agent-base@7.1.4: {}
|
|
5670
6200
|
|
|
6201
|
+
ajv@6.15.0:
|
|
6202
|
+
dependencies:
|
|
6203
|
+
fast-deep-equal: 3.1.3
|
|
6204
|
+
fast-json-stable-stringify: 2.1.0
|
|
6205
|
+
json-schema-traverse: 0.4.1
|
|
6206
|
+
uri-js: 4.4.1
|
|
6207
|
+
|
|
5671
6208
|
alien-signals@3.1.2: {}
|
|
5672
6209
|
|
|
5673
6210
|
ansi-regex@5.0.1: {}
|
|
@@ -5717,6 +6254,8 @@ snapshots:
|
|
|
5717
6254
|
|
|
5718
6255
|
arg@5.0.2: {}
|
|
5719
6256
|
|
|
6257
|
+
argparse@2.0.1: {}
|
|
6258
|
+
|
|
5720
6259
|
ast-kit@2.2.0:
|
|
5721
6260
|
dependencies:
|
|
5722
6261
|
'@babel/parser': 7.29.0
|
|
@@ -5892,6 +6431,8 @@ snapshots:
|
|
|
5892
6431
|
call-bind-apply-helpers: 1.0.2
|
|
5893
6432
|
get-intrinsic: 1.3.0
|
|
5894
6433
|
|
|
6434
|
+
callsites@3.1.0: {}
|
|
6435
|
+
|
|
5895
6436
|
camelcase-css@2.0.1: {}
|
|
5896
6437
|
|
|
5897
6438
|
camelcase@6.3.0: {}
|
|
@@ -6185,6 +6726,8 @@ snapshots:
|
|
|
6185
6726
|
deep-extend@0.6.0:
|
|
6186
6727
|
optional: true
|
|
6187
6728
|
|
|
6729
|
+
deep-is@0.1.4: {}
|
|
6730
|
+
|
|
6188
6731
|
deepmerge@4.3.1: {}
|
|
6189
6732
|
|
|
6190
6733
|
default-browser-id@5.0.1: {}
|
|
@@ -6333,14 +6876,112 @@ snapshots:
|
|
|
6333
6876
|
|
|
6334
6877
|
escape-html@1.0.3: {}
|
|
6335
6878
|
|
|
6879
|
+
escape-string-regexp@4.0.0: {}
|
|
6880
|
+
|
|
6336
6881
|
escape-string-regexp@5.0.0: {}
|
|
6337
6882
|
|
|
6883
|
+
eslint-plugin-vue@10.9.0(@typescript-eslint/parser@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1))):
|
|
6884
|
+
dependencies:
|
|
6885
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
|
|
6886
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
6887
|
+
natural-compare: 1.4.0
|
|
6888
|
+
nth-check: 2.1.1
|
|
6889
|
+
postcss-selector-parser: 7.1.1
|
|
6890
|
+
semver: 7.7.4
|
|
6891
|
+
vue-eslint-parser: 10.4.0(eslint@9.39.4(jiti@2.6.1))
|
|
6892
|
+
xml-name-validator: 4.0.0
|
|
6893
|
+
optionalDependencies:
|
|
6894
|
+
'@typescript-eslint/parser': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
6895
|
+
|
|
6896
|
+
eslint-scope@8.4.0:
|
|
6897
|
+
dependencies:
|
|
6898
|
+
esrecurse: 4.3.0
|
|
6899
|
+
estraverse: 5.3.0
|
|
6900
|
+
|
|
6901
|
+
eslint-scope@9.1.2:
|
|
6902
|
+
dependencies:
|
|
6903
|
+
'@types/esrecurse': 4.3.1
|
|
6904
|
+
'@types/estree': 1.0.8
|
|
6905
|
+
esrecurse: 4.3.0
|
|
6906
|
+
estraverse: 5.3.0
|
|
6907
|
+
|
|
6908
|
+
eslint-visitor-keys@3.4.3: {}
|
|
6909
|
+
|
|
6910
|
+
eslint-visitor-keys@4.2.1: {}
|
|
6911
|
+
|
|
6912
|
+
eslint-visitor-keys@5.0.1: {}
|
|
6913
|
+
|
|
6914
|
+
eslint@9.39.4(jiti@2.6.1):
|
|
6915
|
+
dependencies:
|
|
6916
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
|
|
6917
|
+
'@eslint-community/regexpp': 4.12.2
|
|
6918
|
+
'@eslint/config-array': 0.21.2
|
|
6919
|
+
'@eslint/config-helpers': 0.4.2
|
|
6920
|
+
'@eslint/core': 0.17.0
|
|
6921
|
+
'@eslint/eslintrc': 3.3.5
|
|
6922
|
+
'@eslint/js': 9.39.4
|
|
6923
|
+
'@eslint/plugin-kit': 0.4.1
|
|
6924
|
+
'@humanfs/node': 0.16.8
|
|
6925
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
6926
|
+
'@humanwhocodes/retry': 0.4.3
|
|
6927
|
+
'@types/estree': 1.0.8
|
|
6928
|
+
ajv: 6.15.0
|
|
6929
|
+
chalk: 4.1.2
|
|
6930
|
+
cross-spawn: 7.0.6
|
|
6931
|
+
debug: 4.4.3
|
|
6932
|
+
escape-string-regexp: 4.0.0
|
|
6933
|
+
eslint-scope: 8.4.0
|
|
6934
|
+
eslint-visitor-keys: 4.2.1
|
|
6935
|
+
espree: 10.4.0
|
|
6936
|
+
esquery: 1.7.0
|
|
6937
|
+
esutils: 2.0.3
|
|
6938
|
+
fast-deep-equal: 3.1.3
|
|
6939
|
+
file-entry-cache: 8.0.0
|
|
6940
|
+
find-up: 5.0.0
|
|
6941
|
+
glob-parent: 6.0.2
|
|
6942
|
+
ignore: 5.3.2
|
|
6943
|
+
imurmurhash: 0.1.4
|
|
6944
|
+
is-glob: 4.0.3
|
|
6945
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
6946
|
+
lodash.merge: 4.6.2
|
|
6947
|
+
minimatch: 3.1.5
|
|
6948
|
+
natural-compare: 1.4.0
|
|
6949
|
+
optionator: 0.9.4
|
|
6950
|
+
optionalDependencies:
|
|
6951
|
+
jiti: 2.6.1
|
|
6952
|
+
transitivePeerDependencies:
|
|
6953
|
+
- supports-color
|
|
6954
|
+
|
|
6955
|
+
espree@10.4.0:
|
|
6956
|
+
dependencies:
|
|
6957
|
+
acorn: 8.16.0
|
|
6958
|
+
acorn-jsx: 5.3.2(acorn@8.16.0)
|
|
6959
|
+
eslint-visitor-keys: 4.2.1
|
|
6960
|
+
|
|
6961
|
+
espree@11.2.0:
|
|
6962
|
+
dependencies:
|
|
6963
|
+
acorn: 8.16.0
|
|
6964
|
+
acorn-jsx: 5.3.2(acorn@8.16.0)
|
|
6965
|
+
eslint-visitor-keys: 5.0.1
|
|
6966
|
+
|
|
6967
|
+
esquery@1.7.0:
|
|
6968
|
+
dependencies:
|
|
6969
|
+
estraverse: 5.3.0
|
|
6970
|
+
|
|
6971
|
+
esrecurse@4.3.0:
|
|
6972
|
+
dependencies:
|
|
6973
|
+
estraverse: 5.3.0
|
|
6974
|
+
|
|
6975
|
+
estraverse@5.3.0: {}
|
|
6976
|
+
|
|
6338
6977
|
estree-walker@2.0.2: {}
|
|
6339
6978
|
|
|
6340
6979
|
estree-walker@3.0.3:
|
|
6341
6980
|
dependencies:
|
|
6342
6981
|
'@types/estree': 1.0.8
|
|
6343
6982
|
|
|
6983
|
+
esutils@2.0.3: {}
|
|
6984
|
+
|
|
6344
6985
|
etag@1.8.1: {}
|
|
6345
6986
|
|
|
6346
6987
|
event-target-shim@5.0.1: {}
|
|
@@ -6372,6 +7013,8 @@ snapshots:
|
|
|
6372
7013
|
|
|
6373
7014
|
exsolve@1.0.8: {}
|
|
6374
7015
|
|
|
7016
|
+
fast-deep-equal@3.1.3: {}
|
|
7017
|
+
|
|
6375
7018
|
fast-fifo@1.3.2: {}
|
|
6376
7019
|
|
|
6377
7020
|
fast-glob@3.3.3:
|
|
@@ -6382,6 +7025,10 @@ snapshots:
|
|
|
6382
7025
|
merge2: 1.4.1
|
|
6383
7026
|
micromatch: 4.0.8
|
|
6384
7027
|
|
|
7028
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
7029
|
+
|
|
7030
|
+
fast-levenshtein@2.0.6: {}
|
|
7031
|
+
|
|
6385
7032
|
fast-npm-meta@1.4.2: {}
|
|
6386
7033
|
|
|
6387
7034
|
fastq@1.20.1:
|
|
@@ -6392,12 +7039,28 @@ snapshots:
|
|
|
6392
7039
|
optionalDependencies:
|
|
6393
7040
|
picomatch: 4.0.3
|
|
6394
7041
|
|
|
7042
|
+
file-entry-cache@8.0.0:
|
|
7043
|
+
dependencies:
|
|
7044
|
+
flat-cache: 4.0.1
|
|
7045
|
+
|
|
6395
7046
|
file-uri-to-path@1.0.0: {}
|
|
6396
7047
|
|
|
6397
7048
|
fill-range@7.1.1:
|
|
6398
7049
|
dependencies:
|
|
6399
7050
|
to-regex-range: 5.0.1
|
|
6400
7051
|
|
|
7052
|
+
find-up@5.0.0:
|
|
7053
|
+
dependencies:
|
|
7054
|
+
locate-path: 6.0.0
|
|
7055
|
+
path-exists: 4.0.0
|
|
7056
|
+
|
|
7057
|
+
flat-cache@4.0.1:
|
|
7058
|
+
dependencies:
|
|
7059
|
+
flatted: 3.4.2
|
|
7060
|
+
keyv: 4.5.4
|
|
7061
|
+
|
|
7062
|
+
flatted@3.4.2: {}
|
|
7063
|
+
|
|
6401
7064
|
follow-redirects@1.15.11: {}
|
|
6402
7065
|
|
|
6403
7066
|
foreground-child@3.3.1:
|
|
@@ -6518,6 +7181,8 @@ snapshots:
|
|
|
6518
7181
|
dependencies:
|
|
6519
7182
|
ini: 4.1.1
|
|
6520
7183
|
|
|
7184
|
+
globals@14.0.0: {}
|
|
7185
|
+
|
|
6521
7186
|
globby@16.1.1:
|
|
6522
7187
|
dependencies:
|
|
6523
7188
|
'@sindresorhus/merge-streams': 4.0.0
|
|
@@ -6612,10 +7277,17 @@ snapshots:
|
|
|
6612
7277
|
|
|
6613
7278
|
ieee754@1.2.1: {}
|
|
6614
7279
|
|
|
7280
|
+
ignore@5.3.2: {}
|
|
7281
|
+
|
|
6615
7282
|
ignore@7.0.5: {}
|
|
6616
7283
|
|
|
6617
7284
|
image-meta@0.2.2: {}
|
|
6618
7285
|
|
|
7286
|
+
import-fresh@3.3.1:
|
|
7287
|
+
dependencies:
|
|
7288
|
+
parent-module: 1.0.1
|
|
7289
|
+
resolve-from: 4.0.0
|
|
7290
|
+
|
|
6619
7291
|
impound@1.1.5:
|
|
6620
7292
|
dependencies:
|
|
6621
7293
|
'@jridgewell/trace-mapping': 0.3.31
|
|
@@ -6624,6 +7296,8 @@ snapshots:
|
|
|
6624
7296
|
unplugin: 3.0.0
|
|
6625
7297
|
unplugin-utils: 0.3.1
|
|
6626
7298
|
|
|
7299
|
+
imurmurhash@0.1.4: {}
|
|
7300
|
+
|
|
6627
7301
|
inflight@1.0.6:
|
|
6628
7302
|
dependencies:
|
|
6629
7303
|
once: 1.4.0
|
|
@@ -6794,8 +7468,18 @@ snapshots:
|
|
|
6794
7468
|
|
|
6795
7469
|
js-tokens@9.0.1: {}
|
|
6796
7470
|
|
|
7471
|
+
js-yaml@4.1.1:
|
|
7472
|
+
dependencies:
|
|
7473
|
+
argparse: 2.0.1
|
|
7474
|
+
|
|
6797
7475
|
jsesc@3.1.0: {}
|
|
6798
7476
|
|
|
7477
|
+
json-buffer@3.0.1: {}
|
|
7478
|
+
|
|
7479
|
+
json-schema-traverse@0.4.1: {}
|
|
7480
|
+
|
|
7481
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
7482
|
+
|
|
6799
7483
|
json5@2.2.3: {}
|
|
6800
7484
|
|
|
6801
7485
|
jsonfile@6.2.0:
|
|
@@ -6808,6 +7492,10 @@ snapshots:
|
|
|
6808
7492
|
dependencies:
|
|
6809
7493
|
tsscmp: 1.0.6
|
|
6810
7494
|
|
|
7495
|
+
keyv@4.5.4:
|
|
7496
|
+
dependencies:
|
|
7497
|
+
json-buffer: 3.0.1
|
|
7498
|
+
|
|
6811
7499
|
kleur@4.1.5: {}
|
|
6812
7500
|
|
|
6813
7501
|
klona@2.0.6: {}
|
|
@@ -6884,6 +7572,11 @@ snapshots:
|
|
|
6884
7572
|
dependencies:
|
|
6885
7573
|
readable-stream: 2.3.8
|
|
6886
7574
|
|
|
7575
|
+
levn@0.4.1:
|
|
7576
|
+
dependencies:
|
|
7577
|
+
prelude-ls: 1.2.1
|
|
7578
|
+
type-check: 0.4.0
|
|
7579
|
+
|
|
6887
7580
|
lightningcss-android-arm64@1.31.1:
|
|
6888
7581
|
optional: true
|
|
6889
7582
|
|
|
@@ -6965,12 +7658,18 @@ snapshots:
|
|
|
6965
7658
|
pkg-types: 2.3.0
|
|
6966
7659
|
quansync: 0.2.11
|
|
6967
7660
|
|
|
7661
|
+
locate-path@6.0.0:
|
|
7662
|
+
dependencies:
|
|
7663
|
+
p-locate: 5.0.0
|
|
7664
|
+
|
|
6968
7665
|
lodash.defaults@4.2.0: {}
|
|
6969
7666
|
|
|
6970
7667
|
lodash.isarguments@3.1.0: {}
|
|
6971
7668
|
|
|
6972
7669
|
lodash.memoize@4.1.2: {}
|
|
6973
7670
|
|
|
7671
|
+
lodash.merge@4.6.2: {}
|
|
7672
|
+
|
|
6974
7673
|
lodash.uniq@4.5.0: {}
|
|
6975
7674
|
|
|
6976
7675
|
lodash@4.17.23: {}
|
|
@@ -7106,6 +7805,8 @@ snapshots:
|
|
|
7106
7805
|
napi-build-utils@2.0.0:
|
|
7107
7806
|
optional: true
|
|
7108
7807
|
|
|
7808
|
+
natural-compare@1.4.0: {}
|
|
7809
|
+
|
|
7109
7810
|
negotiator@0.6.3: {}
|
|
7110
7811
|
|
|
7111
7812
|
nitropack@2.13.1:
|
|
@@ -7254,16 +7955,16 @@ snapshots:
|
|
|
7254
7955
|
dependencies:
|
|
7255
7956
|
boolbase: 1.0.0
|
|
7256
7957
|
|
|
7257
|
-
nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2):
|
|
7958
|
+
nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2):
|
|
7258
7959
|
dependencies:
|
|
7259
7960
|
'@dxup/nuxt': 0.3.2(magicast@0.5.2)
|
|
7260
7961
|
'@nuxt/cli': 3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(commander@11.1.0)(magicast@0.5.2)
|
|
7261
7962
|
'@nuxt/devtools': 3.2.3(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
|
|
7262
7963
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
7263
|
-
'@nuxt/nitro-server': 4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)
|
|
7964
|
+
'@nuxt/nitro-server': 4.3.1(db0@0.3.4)(ioredis@5.10.0)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)
|
|
7264
7965
|
'@nuxt/schema': 4.3.1
|
|
7265
7966
|
'@nuxt/telemetry': 2.7.0(@nuxt/kit@4.3.1(magicast@0.5.2))
|
|
7266
|
-
'@nuxt/vite-builder': 4.3.1(@types/node@20.19.37)(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)
|
|
7967
|
+
'@nuxt/vite-builder': 4.3.1(@types/node@20.19.37)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.31.1)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@20.19.37)(@vue/compiler-sfc@3.5.30)(cac@6.7.14)(commander@11.1.0)(db0@0.3.4)(eslint@9.39.4(jiti@2.6.1))(ioredis@5.10.0)(lightningcss@1.31.1)(magicast@0.5.2)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)
|
|
7267
7968
|
'@unhead/vue': 2.1.12(vue@3.5.30(typescript@5.9.3))
|
|
7268
7969
|
'@vue/shared': 3.5.30
|
|
7269
7970
|
c12: 3.3.3(magicast@0.5.2)
|
|
@@ -7443,6 +8144,15 @@ snapshots:
|
|
|
7443
8144
|
ws: 8.19.0
|
|
7444
8145
|
zod: 4.3.6
|
|
7445
8146
|
|
|
8147
|
+
optionator@0.9.4:
|
|
8148
|
+
dependencies:
|
|
8149
|
+
deep-is: 0.1.4
|
|
8150
|
+
fast-levenshtein: 2.0.6
|
|
8151
|
+
levn: 0.4.1
|
|
8152
|
+
prelude-ls: 1.2.1
|
|
8153
|
+
type-check: 0.4.0
|
|
8154
|
+
word-wrap: 1.2.5
|
|
8155
|
+
|
|
7446
8156
|
oxc-minify@0.112.0:
|
|
7447
8157
|
optionalDependencies:
|
|
7448
8158
|
'@oxc-minify/binding-android-arm-eabi': 0.112.0
|
|
@@ -7521,6 +8231,14 @@ snapshots:
|
|
|
7521
8231
|
|
|
7522
8232
|
p-finally@1.0.0: {}
|
|
7523
8233
|
|
|
8234
|
+
p-limit@3.1.0:
|
|
8235
|
+
dependencies:
|
|
8236
|
+
yocto-queue: 0.1.0
|
|
8237
|
+
|
|
8238
|
+
p-locate@5.0.0:
|
|
8239
|
+
dependencies:
|
|
8240
|
+
p-limit: 3.1.0
|
|
8241
|
+
|
|
7524
8242
|
p-queue@6.6.2:
|
|
7525
8243
|
dependencies:
|
|
7526
8244
|
eventemitter3: 4.0.7
|
|
@@ -7532,10 +8250,16 @@ snapshots:
|
|
|
7532
8250
|
|
|
7533
8251
|
package-json-from-dist@1.0.1: {}
|
|
7534
8252
|
|
|
8253
|
+
parent-module@1.0.1:
|
|
8254
|
+
dependencies:
|
|
8255
|
+
callsites: 3.1.0
|
|
8256
|
+
|
|
7535
8257
|
parseurl@1.3.3: {}
|
|
7536
8258
|
|
|
7537
8259
|
path-browserify@1.0.1: {}
|
|
7538
8260
|
|
|
8261
|
+
path-exists@4.0.0: {}
|
|
8262
|
+
|
|
7539
8263
|
path-is-absolute@1.0.1: {}
|
|
7540
8264
|
|
|
7541
8265
|
path-key@3.1.1: {}
|
|
@@ -7562,6 +8286,9 @@ snapshots:
|
|
|
7562
8286
|
|
|
7563
8287
|
perfect-debounce@2.1.0: {}
|
|
7564
8288
|
|
|
8289
|
+
pg-cloudflare@1.3.0:
|
|
8290
|
+
optional: true
|
|
8291
|
+
|
|
7565
8292
|
pg-connection-string@2.12.0: {}
|
|
7566
8293
|
|
|
7567
8294
|
pg-int8@1.0.1: {}
|
|
@@ -7587,6 +8314,8 @@ snapshots:
|
|
|
7587
8314
|
pg-protocol: 1.13.0
|
|
7588
8315
|
pg-types: 2.2.0
|
|
7589
8316
|
pgpass: 1.0.5
|
|
8317
|
+
optionalDependencies:
|
|
8318
|
+
pg-cloudflare: 1.3.0
|
|
7590
8319
|
|
|
7591
8320
|
pgpass@1.0.5:
|
|
7592
8321
|
dependencies:
|
|
@@ -7846,6 +8575,8 @@ snapshots:
|
|
|
7846
8575
|
tunnel-agent: 0.6.0
|
|
7847
8576
|
optional: true
|
|
7848
8577
|
|
|
8578
|
+
prelude-ls@1.2.1: {}
|
|
8579
|
+
|
|
7849
8580
|
pretty-bytes@7.1.0: {}
|
|
7850
8581
|
|
|
7851
8582
|
process-nextick-args@2.0.1: {}
|
|
@@ -7860,6 +8591,8 @@ snapshots:
|
|
|
7860
8591
|
once: 1.4.0
|
|
7861
8592
|
optional: true
|
|
7862
8593
|
|
|
8594
|
+
punycode@2.3.1: {}
|
|
8595
|
+
|
|
7863
8596
|
quansync@0.2.11: {}
|
|
7864
8597
|
|
|
7865
8598
|
queue-microtask@1.2.3: {}
|
|
@@ -7947,6 +8680,8 @@ snapshots:
|
|
|
7947
8680
|
|
|
7948
8681
|
require-directory@2.1.1: {}
|
|
7949
8682
|
|
|
8683
|
+
resolve-from@4.0.0: {}
|
|
8684
|
+
|
|
7950
8685
|
resolve-from@5.0.0: {}
|
|
7951
8686
|
|
|
7952
8687
|
resolve-path@1.4.0:
|
|
@@ -8197,6 +8932,8 @@ snapshots:
|
|
|
8197
8932
|
strip-json-comments@2.0.1:
|
|
8198
8933
|
optional: true
|
|
8199
8934
|
|
|
8935
|
+
strip-json-comments@3.1.1: {}
|
|
8936
|
+
|
|
8200
8937
|
strip-literal@3.1.0:
|
|
8201
8938
|
dependencies:
|
|
8202
8939
|
js-tokens: 9.0.1
|
|
@@ -8392,6 +9129,10 @@ snapshots:
|
|
|
8392
9129
|
|
|
8393
9130
|
tr46@0.0.3: {}
|
|
8394
9131
|
|
|
9132
|
+
ts-api-utils@2.5.0(typescript@5.9.3):
|
|
9133
|
+
dependencies:
|
|
9134
|
+
typescript: 5.9.3
|
|
9135
|
+
|
|
8395
9136
|
ts-interface-checker@0.1.13: {}
|
|
8396
9137
|
|
|
8397
9138
|
tslib@2.8.1: {}
|
|
@@ -8403,6 +9144,10 @@ snapshots:
|
|
|
8403
9144
|
safe-buffer: 5.2.1
|
|
8404
9145
|
optional: true
|
|
8405
9146
|
|
|
9147
|
+
type-check@0.4.0:
|
|
9148
|
+
dependencies:
|
|
9149
|
+
prelude-ls: 1.2.1
|
|
9150
|
+
|
|
8406
9151
|
type-fest@5.4.4:
|
|
8407
9152
|
dependencies:
|
|
8408
9153
|
tagged-tag: 1.0.0
|
|
@@ -8414,6 +9159,17 @@ snapshots:
|
|
|
8414
9159
|
|
|
8415
9160
|
type-level-regexp@0.1.17: {}
|
|
8416
9161
|
|
|
9162
|
+
typescript-eslint@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
|
|
9163
|
+
dependencies:
|
|
9164
|
+
'@typescript-eslint/eslint-plugin': 8.59.0(@typescript-eslint/parser@8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
9165
|
+
'@typescript-eslint/parser': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
9166
|
+
'@typescript-eslint/typescript-estree': 8.59.0(typescript@5.9.3)
|
|
9167
|
+
'@typescript-eslint/utils': 8.59.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
|
|
9168
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
9169
|
+
typescript: 5.9.3
|
|
9170
|
+
transitivePeerDependencies:
|
|
9171
|
+
- supports-color
|
|
9172
|
+
|
|
8417
9173
|
typescript@5.9.3: {}
|
|
8418
9174
|
|
|
8419
9175
|
ufo@1.6.3: {}
|
|
@@ -8550,6 +9306,10 @@ snapshots:
|
|
|
8550
9306
|
|
|
8551
9307
|
uqr@0.1.2: {}
|
|
8552
9308
|
|
|
9309
|
+
uri-js@4.4.1:
|
|
9310
|
+
dependencies:
|
|
9311
|
+
punycode: 2.3.1
|
|
9312
|
+
|
|
8553
9313
|
util-deprecate@1.0.2: {}
|
|
8554
9314
|
|
|
8555
9315
|
uuid@10.0.0: {}
|
|
@@ -8588,7 +9348,7 @@ snapshots:
|
|
|
8588
9348
|
- tsx
|
|
8589
9349
|
- yaml
|
|
8590
9350
|
|
|
8591
|
-
vite-plugin-checker@0.12.0(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
9351
|
+
vite-plugin-checker@0.12.0(eslint@9.39.4(jiti@2.6.1))(optionator@0.9.4)(typescript@5.9.3)(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
8592
9352
|
dependencies:
|
|
8593
9353
|
'@babel/code-frame': 7.29.0
|
|
8594
9354
|
chokidar: 4.0.3
|
|
@@ -8600,6 +9360,8 @@ snapshots:
|
|
|
8600
9360
|
vite: 7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)
|
|
8601
9361
|
vscode-uri: 3.1.0
|
|
8602
9362
|
optionalDependencies:
|
|
9363
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
9364
|
+
optionator: 0.9.4
|
|
8603
9365
|
typescript: 5.9.3
|
|
8604
9366
|
|
|
8605
9367
|
vite-plugin-inspect@11.3.3(@nuxt/kit@4.3.1(magicast@0.5.2))(vite@7.3.1(@types/node@20.19.37)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
@@ -8653,6 +9415,18 @@ snapshots:
|
|
|
8653
9415
|
|
|
8654
9416
|
vue-devtools-stub@0.1.0: {}
|
|
8655
9417
|
|
|
9418
|
+
vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1)):
|
|
9419
|
+
dependencies:
|
|
9420
|
+
debug: 4.4.3
|
|
9421
|
+
eslint: 9.39.4(jiti@2.6.1)
|
|
9422
|
+
eslint-scope: 9.1.2
|
|
9423
|
+
eslint-visitor-keys: 5.0.1
|
|
9424
|
+
espree: 11.2.0
|
|
9425
|
+
esquery: 1.7.0
|
|
9426
|
+
semver: 7.7.4
|
|
9427
|
+
transitivePeerDependencies:
|
|
9428
|
+
- supports-color
|
|
9429
|
+
|
|
8656
9430
|
vue-router@4.6.4(vue@3.5.30(typescript@5.9.3)):
|
|
8657
9431
|
dependencies:
|
|
8658
9432
|
'@vue/devtools-api': 6.6.4
|
|
@@ -8687,6 +9461,8 @@ snapshots:
|
|
|
8687
9461
|
dependencies:
|
|
8688
9462
|
isexe: 3.1.5
|
|
8689
9463
|
|
|
9464
|
+
word-wrap@1.2.5: {}
|
|
9465
|
+
|
|
8690
9466
|
wrap-ansi@7.0.0:
|
|
8691
9467
|
dependencies:
|
|
8692
9468
|
ansi-styles: 4.3.0
|
|
@@ -8707,6 +9483,8 @@ snapshots:
|
|
|
8707
9483
|
dependencies:
|
|
8708
9484
|
is-wsl: 3.1.1
|
|
8709
9485
|
|
|
9486
|
+
xml-name-validator@4.0.0: {}
|
|
9487
|
+
|
|
8710
9488
|
xss@1.0.15:
|
|
8711
9489
|
dependencies:
|
|
8712
9490
|
commander: 2.20.3
|
|
@@ -8737,6 +9515,8 @@ snapshots:
|
|
|
8737
9515
|
|
|
8738
9516
|
ylru@1.4.0: {}
|
|
8739
9517
|
|
|
9518
|
+
yocto-queue@0.1.0: {}
|
|
9519
|
+
|
|
8740
9520
|
youch-core@0.3.3:
|
|
8741
9521
|
dependencies:
|
|
8742
9522
|
'@poppinss/exception': 1.2.3
|