cabloy 5.1.61 → 5.1.62
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/.claude/skills/cabloy-backend-scaffold/SKILL.md +2 -0
- package/.claude/skills/cabloy-backend-scaffold/references/follow-up-checklist.md +1 -1
- package/.claude/skills/cabloy-domain-planning/SKILL.md +212 -0
- package/.claude/skills/cabloy-frontend-scaffold/SKILL.md +2 -0
- package/CHANGELOG.md +42 -0
- package/CLAUDE.md +1 -0
- package/cabloy-docs/.vitepress/config.mjs +158 -12
- package/cabloy-docs/ai/docs-skills-rules-mapping.md +8 -0
- package/cabloy-docs/ai/future-skill-roadmap.md +2 -0
- package/cabloy-docs/ai/skills.md +1 -0
- package/cabloy-docs/backend/backend-contract-emission-output-inspection.md +189 -0
- package/cabloy-docs/backend/backend-contract-emission-source-reading-map.md +160 -0
- package/cabloy-docs/backend/backend-contract-emission-specimen.md +170 -0
- package/cabloy-docs/backend/backend-resource-module-contract-chain.md +323 -0
- package/cabloy-docs/backend/backend-source-reading-debug-checklist.md +173 -0
- package/cabloy-docs/backend/backend-source-reading-roadmap.md +129 -0
- package/cabloy-docs/backend/backend-source-reading-verify-playbook.md +166 -0
- package/cabloy-docs/backend/bean-scene-authoring.md +4 -4
- package/cabloy-docs/backend/broadcast-guide.md +3 -3
- package/cabloy-docs/backend/cli.md +20 -11
- package/cabloy-docs/backend/config-guide.md +4 -4
- package/cabloy-docs/backend/controller-aop-guide.md +10 -10
- package/cabloy-docs/backend/controller-guide.md +12 -2
- package/cabloy-docs/backend/crud-workflow.md +7 -3
- package/cabloy-docs/backend/dto-guide.md +12 -2
- package/cabloy-docs/backend/dto-infer-generation.md +201 -25
- package/cabloy-docs/backend/election-guide.md +2 -2
- package/cabloy-docs/backend/entity-guide.md +12 -3
- package/cabloy-docs/backend/error-guide.md +3 -3
- package/cabloy-docs/backend/event-guide.md +4 -4
- package/cabloy-docs/backend/external-aop-guide.md +2 -2
- package/cabloy-docs/backend/field-indexes.md +9 -3
- package/cabloy-docs/backend/foundation.md +8 -8
- package/cabloy-docs/backend/i18n-guide.md +6 -6
- package/cabloy-docs/backend/internal-aop-guide.md +2 -2
- package/cabloy-docs/backend/introduction.md +13 -0
- package/cabloy-docs/backend/migration-and-changes.md +3 -3
- package/cabloy-docs/backend/model-guide.md +16 -6
- package/cabloy-docs/backend/openapi-guide.md +3 -0
- package/cabloy-docs/backend/queue-guide.md +3 -3
- package/cabloy-docs/backend/redlock-guide.md +2 -2
- package/cabloy-docs/backend/schedule-guide.md +2 -2
- package/cabloy-docs/backend/scripts.md +8 -0
- package/cabloy-docs/backend/serialization-guide.md +2 -2
- package/cabloy-docs/backend/service-guide.md +18 -9
- package/cabloy-docs/backend/startup-guide.md +5 -5
- package/cabloy-docs/backend/status-guide.md +7 -7
- package/cabloy-docs/backend/unit-testing.md +3 -3
- package/cabloy-docs/backend/vona-source-reading-map.md +157 -0
- package/cabloy-docs/backend/websocket-protocol-guide.md +5 -5
- package/cabloy-docs/backend/websocket-usage-guide.md +15 -8
- package/cabloy-docs/frontend/a-model-under-the-hood.md +281 -0
- package/cabloy-docs/frontend/a-openapi-under-the-hood.md +248 -0
- package/cabloy-docs/frontend/a-router-guide.md +307 -0
- package/cabloy-docs/frontend/api-guide.md +4 -4
- package/cabloy-docs/frontend/api-schema-guide.md +1 -0
- package/cabloy-docs/frontend/app-startup-guide.md +7 -4
- package/cabloy-docs/frontend/bean-scene-authoring.md +1 -1
- package/cabloy-docs/frontend/behavior-guide.md +16 -16
- package/cabloy-docs/frontend/cli.md +5 -5
- package/cabloy-docs/frontend/command-scene-authoring.md +17 -8
- package/cabloy-docs/frontend/component-guide.md +5 -5
- package/cabloy-docs/frontend/component-props-guide.md +1 -1
- package/cabloy-docs/frontend/component-v-model-guide.md +2 -2
- package/cabloy-docs/frontend/filter-query-select-data-flow-guide.md +260 -0
- package/cabloy-docs/frontend/form-guide.md +19 -28
- package/cabloy-docs/frontend/form-scene-to-page-meta-guide.md +303 -0
- package/cabloy-docs/frontend/foundation.md +10 -6
- package/cabloy-docs/frontend/frontend-source-reading-roadmap.md +249 -0
- package/cabloy-docs/frontend/generated-contract-consumption-debug-checklist.md +190 -0
- package/cabloy-docs/frontend/generated-contract-consumption-entry-branch.md +205 -0
- package/cabloy-docs/frontend/generated-contract-consumption-list-branch.md +157 -0
- package/cabloy-docs/frontend/generated-contract-consumption-specimen.md +203 -0
- package/cabloy-docs/frontend/generated-contract-consumption-verify-playbook.md +189 -0
- package/cabloy-docs/frontend/generic-component-guide.md +1 -1
- package/cabloy-docs/frontend/introduction.md +29 -7
- package/cabloy-docs/frontend/model-architecture.md +38 -2
- package/cabloy-docs/frontend/model-resource-cookbook.md +11 -8
- package/cabloy-docs/frontend/model-resource-internals-deep-dive.md +238 -0
- package/cabloy-docs/frontend/model-resource-owner-pattern.md +22 -2
- package/cabloy-docs/frontend/model-resource-usage-guide.md +22 -6
- package/cabloy-docs/frontend/model-state-guide.md +12 -9
- package/cabloy-docs/frontend/module-scope.md +8 -8
- package/cabloy-docs/frontend/modules-and-suites.md +2 -1
- package/cabloy-docs/frontend/navigation-guards-guide.md +7 -0
- package/cabloy-docs/frontend/openapi-sdk-guide.md +12 -4
- package/cabloy-docs/frontend/page-guide.md +9 -9
- package/cabloy-docs/frontend/page-meta-guide.md +466 -0
- package/cabloy-docs/frontend/page-params-guide.md +3 -3
- package/cabloy-docs/frontend/page-query-guide.md +2 -2
- package/cabloy-docs/frontend/page-route-guide.md +6 -0
- package/cabloy-docs/frontend/permission-formscene-action-visibility-guide.md +263 -0
- package/cabloy-docs/frontend/quickstart.md +14 -2
- package/cabloy-docs/frontend/resource-entry-page-deep-dive.md +271 -0
- package/cabloy-docs/frontend/resource-list-page-deep-dive.md +279 -0
- package/cabloy-docs/frontend/rest-resource-source-reading-map.md +522 -0
- package/cabloy-docs/frontend/rest-resource-under-the-hood.md +622 -0
- package/cabloy-docs/frontend/root-behaviors-guide.md +282 -0
- package/cabloy-docs/frontend/route-alias-guide.md +6 -0
- package/cabloy-docs/frontend/router-stack-guide.md +229 -0
- package/cabloy-docs/frontend/router-tabs-introduction.md +26 -3
- package/cabloy-docs/frontend/router-tabs-layout-integration.md +367 -0
- package/cabloy-docs/frontend/router-tabs-mechanism.md +6 -0
- package/cabloy-docs/frontend/router-tabs-route-meta-cookbook.md +7 -0
- package/cabloy-docs/frontend/router-tabs-vs-stack.md +167 -0
- package/cabloy-docs/frontend/router-view-hosts-guide.md +450 -0
- package/cabloy-docs/frontend/server-data.md +2 -1
- package/cabloy-docs/frontend/system-startup-guide.md +2 -2
- package/cabloy-docs/frontend/table-action-visibility-permission-flow-guide.md +263 -0
- package/cabloy-docs/frontend/table-cell-cookbook.md +568 -0
- package/cabloy-docs/frontend/table-guide.md +373 -0
- package/cabloy-docs/frontend/table-resource-crud-cookbook.md +496 -0
- package/cabloy-docs/frontend/zova-app-guide.md +251 -0
- package/cabloy-docs/frontend/zova-form-source-reading-map.md +7 -9
- package/cabloy-docs/frontend/zova-form-under-the-hood.md +5 -0
- package/cabloy-docs/frontend/zova-router-under-the-hood.md +561 -0
- package/cabloy-docs/frontend/zova-source-reading-map.md +101 -7
- package/cabloy-docs/frontend/zova-table-controller-render-supplement.md +225 -0
- package/cabloy-docs/frontend/zova-table-source-reading-map.md +317 -0
- package/cabloy-docs/frontend/zova-table-under-the-hood.md +532 -0
- package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions-debug-checklist.md +245 -0
- package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions-source-reading-map.md +139 -0
- package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions-verify-playbook.md +248 -0
- package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions.md +511 -0
- package/cabloy-docs/fullstack/contract-loop-playbook.md +8 -2
- package/cabloy-docs/fullstack/edition-collaboration-differences.md +6 -0
- package/cabloy-docs/fullstack/frontend-metadata-to-backend.md +181 -48
- package/cabloy-docs/fullstack/introduction.md +3 -0
- package/cabloy-docs/fullstack/openapi-to-sdk.md +116 -2
- package/cabloy-docs/fullstack/suites-and-modules.md +333 -0
- package/cabloy-docs/fullstack/tutorial-1-first-module.md +3 -0
- package/cabloy-docs/fullstack/tutorial-2-first-crud.md +4 -0
- package/cabloy-docs/fullstack/tutorial-3-frontend-metadata-sharing.md +4 -0
- package/cabloy-docs/fullstack/tutorial-4-custom-level-renderers.md +31 -19
- package/cabloy-docs/fullstack/tutorial-5-backend-contract-sharing.md +5 -0
- package/cabloy-docs/fullstack/tutorial-6-one-contract-four-uses.md +4 -0
- package/cabloy-docs/fullstack/tutorials-overview.md +1 -1
- package/cabloy-docs/reference/bean-scene-boilerplates.md +13 -13
- package/cabloy-docs/reference/package-map.md +4 -3
- package/package.json +1 -1
- package/vona/pnpm-lock.yaml +22 -258
- package/vona/src/suite/a-training/modules/training-student/package.json +53 -0
- package/vona/src/suite/a-training/modules/training-student/src/.metadata/index.ts +400 -0
- package/vona/src/suite/a-training/modules/training-student/src/.metadata/locales.ts +18 -0
- package/vona/src/suite/a-training/modules/training-student/src/.metadata/this.ts +2 -0
- package/vona/src/suite/a-training/modules/training-student/src/bean/meta.index.ts +12 -0
- package/vona/src/suite/a-training/modules/training-student/src/bean/meta.version.ts +21 -0
- package/vona/src/suite/a-training/modules/training-student/src/bean/ssrMenu.student.ts +29 -0
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +15 -0
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +15 -0
- package/vona/src/suite/a-training/modules/training-student/src/controller/student.ts +74 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentCreate.tsx +28 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectReq.tsx +44 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectRes.tsx +11 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectResItem.tsx +45 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentSummary.tsx +42 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentUpdate.tsx +28 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentView.tsx +25 -0
- package/vona/src/suite/a-training/modules/training-student/src/entity/student.tsx +84 -0
- package/vona/src/suite/a-training/modules/training-student/src/index.ts +2 -0
- package/vona/src/suite/a-training/modules/training-student/src/model/student.ts +10 -0
- package/vona/src/suite/a-training/modules/training-student/src/service/student.ts +57 -0
- package/vona/src/suite/a-training/modules/training-student/test/student.test.ts +173 -0
- package/vona/src/suite/a-training/modules/training-student/tsconfig.build.json +11 -0
- package/vona/src/suite/a-training/modules/training-student/tsconfig.json +7 -0
- package/vona/src/suite/a-training/package.json +12 -0
- package/vona/src/suite/a-training/tsconfig.base.json +4 -0
- package/vona/src/suite/a-training/tsconfig.json +10 -0
- package/zova/packages-zova/zova/package.json +2 -2
- package/zova/pnpm-lock.yaml +406 -680
- package/zova/src/suite/a-training/modules/training-student/cli/openapi.config.ts +9 -0
- package/zova/src/suite/a-training/modules/training-student/package.json +52 -0
- package/zova/src/suite/a-training/modules/training-student/src/.metadata/component/formFieldLevel.ts +31 -0
- package/zova/src/suite/a-training/modules/training-student/src/.metadata/index.ts +258 -0
- package/zova/src/suite/a-training/modules/training-student/src/.metadata/locales.ts +7 -0
- package/zova/src/suite/a-training/modules/training-student/src/.metadata/this.ts +2 -0
- package/zova/src/suite/a-training/modules/training-student/src/api/openapi/baseURL.ts +5 -0
- package/zova/src/suite/a-training/modules/training-student/src/api/openapi/index.ts +3 -0
- package/zova/src/suite/a-training/modules/training-student/src/api/openapi/schemas.ts +196 -0
- package/zova/src/suite/a-training/modules/training-student/src/api/openapi/types.ts +4146 -0
- package/zova/src/suite/a-training/modules/training-student/src/api/trainingStudent.ts +151 -0
- package/zova/src/suite/a-training/modules/training-student/src/apiSchema/trainingStudent.ts +43 -0
- package/zova/src/suite/a-training/modules/training-student/src/bean/tableCell.actionDeleteForce.tsx +51 -0
- package/zova/src/suite/a-training/modules/training-student/src/bean/tableCell.actionSummary.tsx +56 -0
- package/zova/src/suite/a-training/modules/training-student/src/bean/tableCell.level.tsx +63 -0
- package/zova/src/suite/a-training/modules/training-student/src/component/formFieldLevel/controller.tsx +117 -0
- package/zova/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +9 -0
- package/zova/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +9 -0
- package/zova/src/suite/a-training/modules/training-student/src/index.ts +2 -0
- package/zova/src/suite/a-training/modules/training-student/src/model/student.ts +42 -0
- package/zova/src/suite/a-training/modules/training-student/tsconfig.build.json +13 -0
- package/zova/src/suite/a-training/modules/training-student/tsconfig.json +5 -0
- package/zova/src/suite/a-training/package.json +12 -0
- package/zova/src/suite/a-training/tsconfig.base.json +4 -0
- package/zova/src/suite/a-training/tsconfig.json +4 -0
- package/zova/src/suite/cabloy-basic/modules/basic-select/src/component/formFieldSelect/controller.tsx +29 -7
- package/zova/src/suite/cabloy-basic/modules/basic-select/src/component/select/controller.tsx +34 -11
- package/zova/src/suite-vendor/a-zova/modules/a-table/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-table/src/component/table/controller.tsx +3 -3
- package/zova/src/suite-vendor/a-zova/modules/a-table/src/lib/tableCell.ts +1 -1
- package/zova/src/suite-vendor/a-zova/package.json +2 -2
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -50,10 +50,10 @@ importers:
|
|
|
50
50
|
version: 1.1.9
|
|
51
51
|
'@tailwindcss/postcss':
|
|
52
52
|
specifier: ^4.2.2
|
|
53
|
-
version: 4.3.
|
|
53
|
+
version: 4.3.1
|
|
54
54
|
'@tailwindcss/typography':
|
|
55
55
|
specifier: ^0.5.19
|
|
56
|
-
version: 0.5.20(tailwindcss@4.3.
|
|
56
|
+
version: 0.5.20(tailwindcss@4.3.1)
|
|
57
57
|
'@tanstack/query-core':
|
|
58
58
|
specifier: ^5.100.10
|
|
59
59
|
version: 5.101.0
|
|
@@ -110,13 +110,13 @@ importers:
|
|
|
110
110
|
version: 8.5.15
|
|
111
111
|
quasar:
|
|
112
112
|
specifier: ^2.19.3
|
|
113
|
-
version: 2.
|
|
113
|
+
version: 2.20.1
|
|
114
114
|
table-identity:
|
|
115
115
|
specifier: ^1.1.7
|
|
116
116
|
version: 1.1.7
|
|
117
117
|
tailwindcss:
|
|
118
118
|
specifier: ^4.2.2
|
|
119
|
-
version: 4.3.
|
|
119
|
+
version: 4.3.1
|
|
120
120
|
typestyle:
|
|
121
121
|
specifier: ^2.4.0
|
|
122
122
|
version: 2.4.0
|
|
@@ -294,19 +294,22 @@ importers:
|
|
|
294
294
|
zova-module-rest-resource:
|
|
295
295
|
specifier: workspace:^
|
|
296
296
|
version: link:src/suite-vendor/a-cabloy/modules/rest-resource
|
|
297
|
+
zova-module-training-student:
|
|
298
|
+
specifier: workspace:^
|
|
299
|
+
version: link:src/suite/a-training/modules/training-student
|
|
297
300
|
devDependencies:
|
|
298
301
|
'@cabloy/cli':
|
|
299
302
|
specifier: ^3.1.18
|
|
300
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
303
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
301
304
|
'@cabloy/lint':
|
|
302
305
|
specifier: ^5.1.27
|
|
303
|
-
version: 5.1.
|
|
306
|
+
version: 5.1.30(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3))(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.70.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
|
|
304
307
|
'@cabloy/openapi-typescript':
|
|
305
308
|
specifier: ^7.9.2
|
|
306
309
|
version: 7.9.2(typescript@5.9.3)
|
|
307
310
|
'@quasar/app-vite':
|
|
308
311
|
specifier: npm:@cabloy/quasar-app-vite@^2.5.10
|
|
309
|
-
version: '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.
|
|
312
|
+
version: '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)'
|
|
310
313
|
'@types/luxon':
|
|
311
314
|
specifier: ^3.7.1
|
|
312
315
|
version: 3.7.1
|
|
@@ -327,10 +330,10 @@ importers:
|
|
|
327
330
|
version: 0.45.0
|
|
328
331
|
oxlint:
|
|
329
332
|
specifier: ^1.65.0
|
|
330
|
-
version: 1.
|
|
333
|
+
version: 1.70.0
|
|
331
334
|
quasar-app-extension-zova:
|
|
332
335
|
specifier: ^1.3.1
|
|
333
|
-
version: 1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.
|
|
336
|
+
version: 1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)
|
|
334
337
|
sass:
|
|
335
338
|
specifier: ^1.101.0
|
|
336
339
|
version: 1.101.0
|
|
@@ -360,7 +363,7 @@ importers:
|
|
|
360
363
|
version: 3.0.18
|
|
361
364
|
vue-tsc:
|
|
362
365
|
specifier: ^3.3.1
|
|
363
|
-
version: 3.3.
|
|
366
|
+
version: 3.3.5(typescript@5.9.3)
|
|
364
367
|
zova-openapi:
|
|
365
368
|
specifier: ^1.1.17
|
|
366
369
|
version: link:packages-utils/zova-openapi
|
|
@@ -372,7 +375,7 @@ importers:
|
|
|
372
375
|
dependencies:
|
|
373
376
|
'@cabloy/cli':
|
|
374
377
|
specifier: ^3.1.18
|
|
375
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
378
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
376
379
|
'@cabloy/process-helper':
|
|
377
380
|
specifier: ^3.1.8
|
|
378
381
|
version: 3.1.8
|
|
@@ -383,7 +386,7 @@ importers:
|
|
|
383
386
|
specifier: ^7.6.2
|
|
384
387
|
version: 7.8.4
|
|
385
388
|
zova-cli-set-front:
|
|
386
|
-
specifier: ^1.2.
|
|
389
|
+
specifier: ^1.2.78
|
|
387
390
|
version: link:../cli-set-front
|
|
388
391
|
devDependencies:
|
|
389
392
|
clean-package:
|
|
@@ -406,7 +409,7 @@ importers:
|
|
|
406
409
|
version: 7.29.7(@babel/core@7.29.7)
|
|
407
410
|
'@cabloy/cli':
|
|
408
411
|
specifier: ^3.1.18
|
|
409
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
412
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
410
413
|
'@cabloy/extend':
|
|
411
414
|
specifier: ^3.2.8
|
|
412
415
|
version: 3.2.8
|
|
@@ -421,7 +424,7 @@ importers:
|
|
|
421
424
|
version: 2.1.22
|
|
422
425
|
'@cabloy/vite-plugin-babel':
|
|
423
426
|
specifier: ^1.3.3
|
|
424
|
-
version: 1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
427
|
+
version: 1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))
|
|
425
428
|
'@cabloy/vue-babel-plugin-jsx':
|
|
426
429
|
specifier: ^2.0.1
|
|
427
430
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -433,7 +436,7 @@ importers:
|
|
|
433
436
|
version: 7.0.0-dev.20260610.1
|
|
434
437
|
'@vitejs/plugin-vue-jsx':
|
|
435
438
|
specifier: ^5.1.5
|
|
436
|
-
version: 5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
439
|
+
version: 5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
|
|
437
440
|
babel-plugin-transform-typescript-metadata:
|
|
438
441
|
specifier: ^0.4.0
|
|
439
442
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -469,13 +472,13 @@ importers:
|
|
|
469
472
|
version: 1.1.0
|
|
470
473
|
rolldown-plugin-dts:
|
|
471
474
|
specifier: ^0.22.5
|
|
472
|
-
version: 0.22.5(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.1.0)(typescript@5.9.3)(vue-tsc@3.3.
|
|
475
|
+
version: 0.22.5(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.1.0)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3))
|
|
473
476
|
svgo:
|
|
474
477
|
specifier: ^3.2.0
|
|
475
478
|
version: 3.3.3
|
|
476
479
|
tsdown:
|
|
477
480
|
specifier: ^0.21.7
|
|
478
|
-
version: 0.21.10(@typescript/native-preview@7.0.0-dev.20260610.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.
|
|
481
|
+
version: 0.21.10(@typescript/native-preview@7.0.0-dev.20260610.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3))
|
|
479
482
|
typescript:
|
|
480
483
|
specifier: ^5.9.3
|
|
481
484
|
version: 5.9.3
|
|
@@ -484,7 +487,7 @@ importers:
|
|
|
484
487
|
version: 4.9.0
|
|
485
488
|
vite:
|
|
486
489
|
specifier: ^8.0.14
|
|
487
|
-
version: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
490
|
+
version: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
488
491
|
yaml:
|
|
489
492
|
specifier: ^2.8.3
|
|
490
493
|
version: 2.9.0
|
|
@@ -708,7 +711,7 @@ importers:
|
|
|
708
711
|
version: 2.0.0
|
|
709
712
|
'@cabloy/vite-plugin-babel':
|
|
710
713
|
specifier: ^1.3.3
|
|
711
|
-
version: 1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
714
|
+
version: 1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))
|
|
712
715
|
'@cabloy/vue-babel-plugin-jsx':
|
|
713
716
|
specifier: ^2.0.1
|
|
714
717
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -738,7 +741,7 @@ importers:
|
|
|
738
741
|
version: 22.19.21
|
|
739
742
|
'@vitejs/plugin-vue-jsx':
|
|
740
743
|
specifier: ^5.1.5
|
|
741
|
-
version: 5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
744
|
+
version: 5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.13(typescript@5.9.3))
|
|
742
745
|
babel-plugin-transform-typescript-metadata:
|
|
743
746
|
specifier: ^0.4.0
|
|
744
747
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -777,10 +780,10 @@ importers:
|
|
|
777
780
|
version: 0.2.7
|
|
778
781
|
vite:
|
|
779
782
|
specifier: ^8.0.14
|
|
780
|
-
version: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
783
|
+
version: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
781
784
|
vite-plugin-devtools-json:
|
|
782
785
|
specifier: ^1.0.0
|
|
783
|
-
version: 1.0.0(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
786
|
+
version: 1.0.0(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))
|
|
784
787
|
vite-plugin-fake-server-turbo:
|
|
785
788
|
specifier: ^3.0.18
|
|
786
789
|
version: 3.0.18
|
|
@@ -897,7 +900,7 @@ importers:
|
|
|
897
900
|
version: 6.1.3
|
|
898
901
|
vite:
|
|
899
902
|
specifier: ^8.0.14
|
|
900
|
-
version: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
903
|
+
version: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
901
904
|
|
|
902
905
|
src/suite-vendor/a-cabloy:
|
|
903
906
|
dependencies:
|
|
@@ -1333,7 +1336,7 @@ importers:
|
|
|
1333
1336
|
devDependencies:
|
|
1334
1337
|
'@cabloy/cli':
|
|
1335
1338
|
specifier: ^3.1.18
|
|
1336
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
1339
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
1337
1340
|
'@types/luxon':
|
|
1338
1341
|
specifier: ^3.7.1
|
|
1339
1342
|
version: 3.7.1
|
|
@@ -1527,6 +1530,21 @@ importers:
|
|
|
1527
1530
|
specifier: ^6.1.3
|
|
1528
1531
|
version: 6.1.3
|
|
1529
1532
|
|
|
1533
|
+
src/suite/a-training:
|
|
1534
|
+
dependencies:
|
|
1535
|
+
zova-module-training-student:
|
|
1536
|
+
specifier: ^5.0.0
|
|
1537
|
+
version: link:modules/training-student
|
|
1538
|
+
|
|
1539
|
+
src/suite/a-training/modules/training-student:
|
|
1540
|
+
devDependencies:
|
|
1541
|
+
clean-package:
|
|
1542
|
+
specifier: ^2.2.0
|
|
1543
|
+
version: 2.2.0
|
|
1544
|
+
rimraf:
|
|
1545
|
+
specifier: ^6.1.3
|
|
1546
|
+
version: 6.1.3
|
|
1547
|
+
|
|
1530
1548
|
src/suite/cabloy-basic:
|
|
1531
1549
|
dependencies:
|
|
1532
1550
|
zova-module-basic-adapter:
|
|
@@ -1907,8 +1925,8 @@ packages:
|
|
|
1907
1925
|
'@cabloy/json5@1.1.9':
|
|
1908
1926
|
resolution: {integrity: sha512-jV0WqPaTuLOw5UvFWOVD/1HNaWHKABs8Xd652C7jq7vhKPZsKzBy5de+Az4kd3jgn4JxaPLJgVTID/svynAzFA==}
|
|
1909
1927
|
|
|
1910
|
-
'@cabloy/lint@5.1.
|
|
1911
|
-
resolution: {integrity: sha512-
|
|
1928
|
+
'@cabloy/lint@5.1.30':
|
|
1929
|
+
resolution: {integrity: sha512-j7PokkRKdDpFjn0eTeFizgdYzb5WiXc0S/+s6BQ0Tzy2L5v+NHzTwE8itZ1JR6aiCWBDwTwzHZzj7lHhZ9fLMw==}
|
|
1912
1930
|
peerDependencies:
|
|
1913
1931
|
oxfmt: '>=0.45.0'
|
|
1914
1932
|
oxlint: '>=1.65.0'
|
|
@@ -3258,124 +3276,124 @@ packages:
|
|
|
3258
3276
|
cpu: [x64]
|
|
3259
3277
|
os: [win32]
|
|
3260
3278
|
|
|
3261
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
3262
|
-
resolution: {integrity: sha512-
|
|
3279
|
+
'@oxlint/binding-android-arm-eabi@1.70.0':
|
|
3280
|
+
resolution: {integrity: sha512-zFh0P4cswmRvw6nkyb89dr18rRanuaCPAsEXsFDoQY8WdaquI8Pt4NWFjaMJg6L23cy5NeN8J9cBnREbWzZhaw==}
|
|
3263
3281
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3264
3282
|
cpu: [arm]
|
|
3265
3283
|
os: [android]
|
|
3266
3284
|
|
|
3267
|
-
'@oxlint/binding-android-arm64@1.
|
|
3268
|
-
resolution: {integrity: sha512-
|
|
3285
|
+
'@oxlint/binding-android-arm64@1.70.0':
|
|
3286
|
+
resolution: {integrity: sha512-qI8o4HZjeGiBrWv+pJv4lH0Yi2Gl/JSp/EumBUApezJprIKa5PS4nU0lQsQngtky8k+SplQIOjv6hwu0SSxeyg==}
|
|
3269
3287
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3270
3288
|
cpu: [arm64]
|
|
3271
3289
|
os: [android]
|
|
3272
3290
|
|
|
3273
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
3274
|
-
resolution: {integrity: sha512-
|
|
3291
|
+
'@oxlint/binding-darwin-arm64@1.70.0':
|
|
3292
|
+
resolution: {integrity: sha512-8KjgVVHI5F9nVwHCRwwA78Ty7zNKP4Wd9OeN5PSv3iu/F/u1RVXoOCgLhWqust6HmwQG6xc8c+RCyaWENy24+w==}
|
|
3275
3293
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3276
3294
|
cpu: [arm64]
|
|
3277
3295
|
os: [darwin]
|
|
3278
3296
|
|
|
3279
|
-
'@oxlint/binding-darwin-x64@1.
|
|
3280
|
-
resolution: {integrity: sha512-
|
|
3297
|
+
'@oxlint/binding-darwin-x64@1.70.0':
|
|
3298
|
+
resolution: {integrity: sha512-WVydssv5PSUBXFJTdNBWlmGkbNmvPGaFt/2SUT/EZRB6bq6bEOHmMlbnupZD5jmlEvi9+mZJHi8TCw15lyfSfQ==}
|
|
3281
3299
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3282
3300
|
cpu: [x64]
|
|
3283
3301
|
os: [darwin]
|
|
3284
3302
|
|
|
3285
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
3286
|
-
resolution: {integrity: sha512-
|
|
3303
|
+
'@oxlint/binding-freebsd-x64@1.70.0':
|
|
3304
|
+
resolution: {integrity: sha512-hJucmUf8OlinHNb1R7fI4Fw6WsAstOz7i8nmkWQfiHoZXtbufNm+MxiDTIMk1ggh2Ro4vLzgQ+bKvRY54MZoRA==}
|
|
3287
3305
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3288
3306
|
cpu: [x64]
|
|
3289
3307
|
os: [freebsd]
|
|
3290
3308
|
|
|
3291
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
3292
|
-
resolution: {integrity: sha512-
|
|
3309
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.70.0':
|
|
3310
|
+
resolution: {integrity: sha512-1BnS7wbCYDSXwWzJJ+mc3NURoha6m6m6RT5c6vgAY3oz7C3OVXP+S0awo2mRq97arrJkVvO3qRQfyAHL+76xtQ==}
|
|
3293
3311
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3294
3312
|
cpu: [arm]
|
|
3295
3313
|
os: [linux]
|
|
3296
3314
|
|
|
3297
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
3298
|
-
resolution: {integrity: sha512-
|
|
3315
|
+
'@oxlint/binding-linux-arm-musleabihf@1.70.0':
|
|
3316
|
+
resolution: {integrity: sha512-yKy/UdbR55+M2yEcuiV5DCNC/gdQAjr/GioUy50QwBzSrKm8ueWADqyRLS9Xk+qjNeCYGg6A8FvUBds56ttfqg==}
|
|
3299
3317
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3300
3318
|
cpu: [arm]
|
|
3301
3319
|
os: [linux]
|
|
3302
3320
|
|
|
3303
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
3304
|
-
resolution: {integrity: sha512-
|
|
3321
|
+
'@oxlint/binding-linux-arm64-gnu@1.70.0':
|
|
3322
|
+
resolution: {integrity: sha512-0A5XJ4alvmqFUFP/4oYSyaO+qLto/HrKEWTSaegiVl+HOufFngK2BjYw9x4RbwBt/du5QG6l5q1zeWiJYYG5yg==}
|
|
3305
3323
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3306
3324
|
cpu: [arm64]
|
|
3307
3325
|
os: [linux]
|
|
3308
3326
|
libc: [glibc]
|
|
3309
3327
|
|
|
3310
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
3311
|
-
resolution: {integrity: sha512-
|
|
3328
|
+
'@oxlint/binding-linux-arm64-musl@1.70.0':
|
|
3329
|
+
resolution: {integrity: sha512-JiylyurlB0CLSedNtx1gzv3FvfWPF1h/2Y3BJszPLNt5XQFlBsH5ke0Jle3iJb3uqu5m2e7A/DwzpuCAHdiU+A==}
|
|
3312
3330
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3313
3331
|
cpu: [arm64]
|
|
3314
3332
|
os: [linux]
|
|
3315
3333
|
libc: [musl]
|
|
3316
3334
|
|
|
3317
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
3318
|
-
resolution: {integrity: sha512-
|
|
3335
|
+
'@oxlint/binding-linux-ppc64-gnu@1.70.0':
|
|
3336
|
+
resolution: {integrity: sha512-J8VPG7I3/HmgaU4u8pNU2kFx2+0U+vPLS1dXFxXOaR/2TQ0f8AC7DRz0SRGRI1bfphnX2hVYTTtLuhL4nYKL+Q==}
|
|
3319
3337
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3320
3338
|
cpu: [ppc64]
|
|
3321
3339
|
os: [linux]
|
|
3322
3340
|
libc: [glibc]
|
|
3323
3341
|
|
|
3324
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
3325
|
-
resolution: {integrity: sha512-
|
|
3342
|
+
'@oxlint/binding-linux-riscv64-gnu@1.70.0':
|
|
3343
|
+
resolution: {integrity: sha512-N2+4lV2KLN+oXTIIIwmWDhwkrnvqf5oX7Hw0zPjk+RuIVgiBQSOlJWF7uQoFx2siEYX0ZQ5cfSbEAHm+J3t7Wg==}
|
|
3326
3344
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3327
3345
|
cpu: [riscv64]
|
|
3328
3346
|
os: [linux]
|
|
3329
3347
|
libc: [glibc]
|
|
3330
3348
|
|
|
3331
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
3332
|
-
resolution: {integrity: sha512-
|
|
3349
|
+
'@oxlint/binding-linux-riscv64-musl@1.70.0':
|
|
3350
|
+
resolution: {integrity: sha512-1e2L7cFCvx9QDzq6NPP+0tABKb5z6nWHyddWTNKprEsjO9xNrAtPowuCGpjNXxkTdsMiZ4jc8YQ5SstZd4XK6g==}
|
|
3333
3351
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3334
3352
|
cpu: [riscv64]
|
|
3335
3353
|
os: [linux]
|
|
3336
3354
|
libc: [musl]
|
|
3337
3355
|
|
|
3338
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
3339
|
-
resolution: {integrity: sha512-
|
|
3356
|
+
'@oxlint/binding-linux-s390x-gnu@1.70.0':
|
|
3357
|
+
resolution: {integrity: sha512-Kwu/l/8GcYibCWA9m9N5pRXMIKVSsL/YbgpLzYkqDhWTiqdRfnNJ/+nqIKRKQiFbHWsdlHEhzMwruJK+qcEruA==}
|
|
3340
3358
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3341
3359
|
cpu: [s390x]
|
|
3342
3360
|
os: [linux]
|
|
3343
3361
|
libc: [glibc]
|
|
3344
3362
|
|
|
3345
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
3346
|
-
resolution: {integrity: sha512-
|
|
3363
|
+
'@oxlint/binding-linux-x64-gnu@1.70.0':
|
|
3364
|
+
resolution: {integrity: sha512-tap04CsHYOl0nSAQJfPNIuBxqEPB2HnhQqwaOXLg1jnp2XfRo8Fa814dA4QC4zpvTWXCjAAaCY1W5LOORkEQuQ==}
|
|
3347
3365
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3348
3366
|
cpu: [x64]
|
|
3349
3367
|
os: [linux]
|
|
3350
3368
|
libc: [glibc]
|
|
3351
3369
|
|
|
3352
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
3353
|
-
resolution: {integrity: sha512-
|
|
3370
|
+
'@oxlint/binding-linux-x64-musl@1.70.0':
|
|
3371
|
+
resolution: {integrity: sha512-hzJa/WgvtJpbBD9rgfy0qe+MjbxOXNUT0bfR1S6EQQzfTtBFA9xg5q8KSwRrQ2QfSS+TaP4j+4mVPQrfNc6UNg==}
|
|
3354
3372
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3355
3373
|
cpu: [x64]
|
|
3356
3374
|
os: [linux]
|
|
3357
3375
|
libc: [musl]
|
|
3358
3376
|
|
|
3359
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
3360
|
-
resolution: {integrity: sha512-
|
|
3377
|
+
'@oxlint/binding-openharmony-arm64@1.70.0':
|
|
3378
|
+
resolution: {integrity: sha512-xbsaNSNzVSnaJACCUYr1HQMyY/Q/Q1LkePmHG3UvZPvGCYGNxrsZp9OmtA6ick8xH47ltRRbRrPCM1YXYcyC+A==}
|
|
3361
3379
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3362
3380
|
cpu: [arm64]
|
|
3363
3381
|
os: [openharmony]
|
|
3364
3382
|
|
|
3365
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
3366
|
-
resolution: {integrity: sha512-
|
|
3383
|
+
'@oxlint/binding-win32-arm64-msvc@1.70.0':
|
|
3384
|
+
resolution: {integrity: sha512-icAEsUI7JbW1TMRdEXV83mVAInhRVQYuuAlPpxdGwJ95chNdnCzjloRW8GglT0WvzOEZSio6fnYSk2DJ2Hv7LQ==}
|
|
3367
3385
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3368
3386
|
cpu: [arm64]
|
|
3369
3387
|
os: [win32]
|
|
3370
3388
|
|
|
3371
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
3372
|
-
resolution: {integrity: sha512-
|
|
3389
|
+
'@oxlint/binding-win32-ia32-msvc@1.70.0':
|
|
3390
|
+
resolution: {integrity: sha512-FHMSWbVsPVs/f+Jcl04ws4JJ2wUnauyTzlpxWRG/lSO/8GpX08Fo2gQZqdA6CrRFI+zvkxl+N/KwJGWfUwYVZA==}
|
|
3373
3391
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3374
3392
|
cpu: [ia32]
|
|
3375
3393
|
os: [win32]
|
|
3376
3394
|
|
|
3377
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
3378
|
-
resolution: {integrity: sha512-
|
|
3395
|
+
'@oxlint/binding-win32-x64-msvc@1.70.0':
|
|
3396
|
+
resolution: {integrity: sha512-ptOlKwCz7n4AKs5VweMqG6DAg677FmKOK+vBkkL9DMNgFATIQ+upqUYBTOEwRQyRAx1ncGlPlXleV2hIcm3z4g==}
|
|
3379
3397
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3380
3398
|
cpu: [x64]
|
|
3381
3399
|
os: [win32]
|
|
@@ -3788,144 +3806,6 @@ packages:
|
|
|
3788
3806
|
'@rolldown/pluginutils@1.0.1':
|
|
3789
3807
|
resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
|
|
3790
3808
|
|
|
3791
|
-
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
3792
|
-
resolution: {integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==}
|
|
3793
|
-
cpu: [arm]
|
|
3794
|
-
os: [android]
|
|
3795
|
-
|
|
3796
|
-
'@rollup/rollup-android-arm64@4.61.1':
|
|
3797
|
-
resolution: {integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==}
|
|
3798
|
-
cpu: [arm64]
|
|
3799
|
-
os: [android]
|
|
3800
|
-
|
|
3801
|
-
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
3802
|
-
resolution: {integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==}
|
|
3803
|
-
cpu: [arm64]
|
|
3804
|
-
os: [darwin]
|
|
3805
|
-
|
|
3806
|
-
'@rollup/rollup-darwin-x64@4.61.1':
|
|
3807
|
-
resolution: {integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==}
|
|
3808
|
-
cpu: [x64]
|
|
3809
|
-
os: [darwin]
|
|
3810
|
-
|
|
3811
|
-
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
3812
|
-
resolution: {integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==}
|
|
3813
|
-
cpu: [arm64]
|
|
3814
|
-
os: [freebsd]
|
|
3815
|
-
|
|
3816
|
-
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
3817
|
-
resolution: {integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==}
|
|
3818
|
-
cpu: [x64]
|
|
3819
|
-
os: [freebsd]
|
|
3820
|
-
|
|
3821
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
3822
|
-
resolution: {integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==}
|
|
3823
|
-
cpu: [arm]
|
|
3824
|
-
os: [linux]
|
|
3825
|
-
libc: [glibc]
|
|
3826
|
-
|
|
3827
|
-
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
3828
|
-
resolution: {integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==}
|
|
3829
|
-
cpu: [arm]
|
|
3830
|
-
os: [linux]
|
|
3831
|
-
libc: [musl]
|
|
3832
|
-
|
|
3833
|
-
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
3834
|
-
resolution: {integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==}
|
|
3835
|
-
cpu: [arm64]
|
|
3836
|
-
os: [linux]
|
|
3837
|
-
libc: [glibc]
|
|
3838
|
-
|
|
3839
|
-
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
3840
|
-
resolution: {integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==}
|
|
3841
|
-
cpu: [arm64]
|
|
3842
|
-
os: [linux]
|
|
3843
|
-
libc: [musl]
|
|
3844
|
-
|
|
3845
|
-
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
3846
|
-
resolution: {integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==}
|
|
3847
|
-
cpu: [loong64]
|
|
3848
|
-
os: [linux]
|
|
3849
|
-
libc: [glibc]
|
|
3850
|
-
|
|
3851
|
-
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
3852
|
-
resolution: {integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==}
|
|
3853
|
-
cpu: [loong64]
|
|
3854
|
-
os: [linux]
|
|
3855
|
-
libc: [musl]
|
|
3856
|
-
|
|
3857
|
-
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
3858
|
-
resolution: {integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==}
|
|
3859
|
-
cpu: [ppc64]
|
|
3860
|
-
os: [linux]
|
|
3861
|
-
libc: [glibc]
|
|
3862
|
-
|
|
3863
|
-
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
3864
|
-
resolution: {integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==}
|
|
3865
|
-
cpu: [ppc64]
|
|
3866
|
-
os: [linux]
|
|
3867
|
-
libc: [musl]
|
|
3868
|
-
|
|
3869
|
-
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
3870
|
-
resolution: {integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==}
|
|
3871
|
-
cpu: [riscv64]
|
|
3872
|
-
os: [linux]
|
|
3873
|
-
libc: [glibc]
|
|
3874
|
-
|
|
3875
|
-
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
3876
|
-
resolution: {integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==}
|
|
3877
|
-
cpu: [riscv64]
|
|
3878
|
-
os: [linux]
|
|
3879
|
-
libc: [musl]
|
|
3880
|
-
|
|
3881
|
-
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
3882
|
-
resolution: {integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==}
|
|
3883
|
-
cpu: [s390x]
|
|
3884
|
-
os: [linux]
|
|
3885
|
-
libc: [glibc]
|
|
3886
|
-
|
|
3887
|
-
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
3888
|
-
resolution: {integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==}
|
|
3889
|
-
cpu: [x64]
|
|
3890
|
-
os: [linux]
|
|
3891
|
-
libc: [glibc]
|
|
3892
|
-
|
|
3893
|
-
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
3894
|
-
resolution: {integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==}
|
|
3895
|
-
cpu: [x64]
|
|
3896
|
-
os: [linux]
|
|
3897
|
-
libc: [musl]
|
|
3898
|
-
|
|
3899
|
-
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
3900
|
-
resolution: {integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==}
|
|
3901
|
-
cpu: [x64]
|
|
3902
|
-
os: [openbsd]
|
|
3903
|
-
|
|
3904
|
-
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
3905
|
-
resolution: {integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==}
|
|
3906
|
-
cpu: [arm64]
|
|
3907
|
-
os: [openharmony]
|
|
3908
|
-
|
|
3909
|
-
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
3910
|
-
resolution: {integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==}
|
|
3911
|
-
cpu: [arm64]
|
|
3912
|
-
os: [win32]
|
|
3913
|
-
|
|
3914
|
-
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
3915
|
-
resolution: {integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==}
|
|
3916
|
-
cpu: [ia32]
|
|
3917
|
-
os: [win32]
|
|
3918
|
-
|
|
3919
|
-
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
3920
|
-
resolution: {integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==}
|
|
3921
|
-
cpu: [x64]
|
|
3922
|
-
os: [win32]
|
|
3923
|
-
|
|
3924
|
-
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
3925
|
-
resolution: {integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==}
|
|
3926
|
-
cpu: [x64]
|
|
3927
|
-
os: [win32]
|
|
3928
|
-
|
|
3929
3809
|
'@sindresorhus/merge-streams@2.3.0':
|
|
3930
3810
|
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
|
|
3931
3811
|
engines: {node: '>=18'}
|
|
@@ -3940,69 +3820,69 @@ packages:
|
|
|
3940
3820
|
peerDependencies:
|
|
3941
3821
|
eslint: ^9.0.0 || ^10.0.0
|
|
3942
3822
|
|
|
3943
|
-
'@tailwindcss/node@4.3.
|
|
3944
|
-
resolution: {integrity: sha512-
|
|
3823
|
+
'@tailwindcss/node@4.3.1':
|
|
3824
|
+
resolution: {integrity: sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==}
|
|
3945
3825
|
|
|
3946
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
3947
|
-
resolution: {integrity: sha512-
|
|
3826
|
+
'@tailwindcss/oxide-android-arm64@4.3.1':
|
|
3827
|
+
resolution: {integrity: sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==}
|
|
3948
3828
|
engines: {node: '>= 20'}
|
|
3949
3829
|
cpu: [arm64]
|
|
3950
3830
|
os: [android]
|
|
3951
3831
|
|
|
3952
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
3953
|
-
resolution: {integrity: sha512-
|
|
3832
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.1':
|
|
3833
|
+
resolution: {integrity: sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==}
|
|
3954
3834
|
engines: {node: '>= 20'}
|
|
3955
3835
|
cpu: [arm64]
|
|
3956
3836
|
os: [darwin]
|
|
3957
3837
|
|
|
3958
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
3959
|
-
resolution: {integrity: sha512-
|
|
3838
|
+
'@tailwindcss/oxide-darwin-x64@4.3.1':
|
|
3839
|
+
resolution: {integrity: sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==}
|
|
3960
3840
|
engines: {node: '>= 20'}
|
|
3961
3841
|
cpu: [x64]
|
|
3962
3842
|
os: [darwin]
|
|
3963
3843
|
|
|
3964
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
3965
|
-
resolution: {integrity: sha512-
|
|
3844
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.1':
|
|
3845
|
+
resolution: {integrity: sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==}
|
|
3966
3846
|
engines: {node: '>= 20'}
|
|
3967
3847
|
cpu: [x64]
|
|
3968
3848
|
os: [freebsd]
|
|
3969
3849
|
|
|
3970
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
3971
|
-
resolution: {integrity: sha512
|
|
3850
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
|
|
3851
|
+
resolution: {integrity: sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==}
|
|
3972
3852
|
engines: {node: '>= 20'}
|
|
3973
3853
|
cpu: [arm]
|
|
3974
3854
|
os: [linux]
|
|
3975
3855
|
|
|
3976
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
3977
|
-
resolution: {integrity: sha512-
|
|
3856
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
|
|
3857
|
+
resolution: {integrity: sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==}
|
|
3978
3858
|
engines: {node: '>= 20'}
|
|
3979
3859
|
cpu: [arm64]
|
|
3980
3860
|
os: [linux]
|
|
3981
3861
|
libc: [glibc]
|
|
3982
3862
|
|
|
3983
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
3984
|
-
resolution: {integrity: sha512-
|
|
3863
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.1':
|
|
3864
|
+
resolution: {integrity: sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==}
|
|
3985
3865
|
engines: {node: '>= 20'}
|
|
3986
3866
|
cpu: [arm64]
|
|
3987
3867
|
os: [linux]
|
|
3988
3868
|
libc: [musl]
|
|
3989
3869
|
|
|
3990
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
3991
|
-
resolution: {integrity: sha512-
|
|
3870
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.1':
|
|
3871
|
+
resolution: {integrity: sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==}
|
|
3992
3872
|
engines: {node: '>= 20'}
|
|
3993
3873
|
cpu: [x64]
|
|
3994
3874
|
os: [linux]
|
|
3995
3875
|
libc: [glibc]
|
|
3996
3876
|
|
|
3997
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
3998
|
-
resolution: {integrity: sha512-
|
|
3877
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.1':
|
|
3878
|
+
resolution: {integrity: sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==}
|
|
3999
3879
|
engines: {node: '>= 20'}
|
|
4000
3880
|
cpu: [x64]
|
|
4001
3881
|
os: [linux]
|
|
4002
3882
|
libc: [musl]
|
|
4003
3883
|
|
|
4004
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
4005
|
-
resolution: {integrity: sha512-
|
|
3884
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.1':
|
|
3885
|
+
resolution: {integrity: sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==}
|
|
4006
3886
|
engines: {node: '>=14.0.0'}
|
|
4007
3887
|
cpu: [wasm32]
|
|
4008
3888
|
bundledDependencies:
|
|
@@ -4013,24 +3893,24 @@ packages:
|
|
|
4013
3893
|
- '@emnapi/wasi-threads'
|
|
4014
3894
|
- tslib
|
|
4015
3895
|
|
|
4016
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
4017
|
-
resolution: {integrity: sha512-
|
|
3896
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
|
|
3897
|
+
resolution: {integrity: sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==}
|
|
4018
3898
|
engines: {node: '>= 20'}
|
|
4019
3899
|
cpu: [arm64]
|
|
4020
3900
|
os: [win32]
|
|
4021
3901
|
|
|
4022
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
4023
|
-
resolution: {integrity: sha512-
|
|
3902
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.1':
|
|
3903
|
+
resolution: {integrity: sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==}
|
|
4024
3904
|
engines: {node: '>= 20'}
|
|
4025
3905
|
cpu: [x64]
|
|
4026
3906
|
os: [win32]
|
|
4027
3907
|
|
|
4028
|
-
'@tailwindcss/oxide@4.3.
|
|
4029
|
-
resolution: {integrity: sha512-
|
|
3908
|
+
'@tailwindcss/oxide@4.3.1':
|
|
3909
|
+
resolution: {integrity: sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==}
|
|
4030
3910
|
engines: {node: '>= 20'}
|
|
4031
3911
|
|
|
4032
|
-
'@tailwindcss/postcss@4.3.
|
|
4033
|
-
resolution: {integrity: sha512-
|
|
3912
|
+
'@tailwindcss/postcss@4.3.1':
|
|
3913
|
+
resolution: {integrity: sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==}
|
|
4034
3914
|
|
|
4035
3915
|
'@tailwindcss/typography@0.5.20':
|
|
4036
3916
|
resolution: {integrity: sha512-hwbzQuNUfcPvbegQFatVPl/MY/tcM9KLl963hQ5laJKPh81TEZ1+dNG9PirGvcaDBkp+BCshExAyKVPW91dozw==}
|
|
@@ -4263,70 +4143,70 @@ packages:
|
|
|
4263
4143
|
'@types/unist@3.0.3':
|
|
4264
4144
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
4265
4145
|
|
|
4266
|
-
'@typescript-eslint/eslint-plugin@8.61.
|
|
4267
|
-
resolution: {integrity: sha512-
|
|
4146
|
+
'@typescript-eslint/eslint-plugin@8.61.1':
|
|
4147
|
+
resolution: {integrity: sha512-ZPlVl3PB3et/59Ne0fv/sci6ZXz4T4Hp4nTJ56i/Y0gR89ARb+KphojTq6j+56E5PIezmOIOOWyY+aWQFd+IkQ==}
|
|
4268
4148
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4269
4149
|
peerDependencies:
|
|
4270
|
-
'@typescript-eslint/parser': ^8.61.
|
|
4150
|
+
'@typescript-eslint/parser': ^8.61.1
|
|
4271
4151
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4272
4152
|
typescript: '>=4.8.4 <6.1.0'
|
|
4273
4153
|
|
|
4274
|
-
'@typescript-eslint/parser@8.61.
|
|
4275
|
-
resolution: {integrity: sha512-
|
|
4154
|
+
'@typescript-eslint/parser@8.61.1':
|
|
4155
|
+
resolution: {integrity: sha512-PJ5vePq5/ognBbrIcoC5+SHO5dfpeLPzP9FpLkzWrguoYQEeeSjlJpVwOpo1JRSTEi7dRcwNy4h4dzV70PqHcg==}
|
|
4276
4156
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4277
4157
|
peerDependencies:
|
|
4278
4158
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4279
4159
|
typescript: '>=4.8.4 <6.1.0'
|
|
4280
4160
|
|
|
4281
|
-
'@typescript-eslint/project-service@8.61.
|
|
4282
|
-
resolution: {integrity: sha512-
|
|
4161
|
+
'@typescript-eslint/project-service@8.61.1':
|
|
4162
|
+
resolution: {integrity: sha512-PrC4JYGmR241lYnfhmKGTXkFqv8+ymbTFgSAY0fVXpY82/QkMw5TZPl+vGzuDDU2QYJk9fIDOBTntF+yDv9LEA==}
|
|
4283
4163
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4284
4164
|
peerDependencies:
|
|
4285
4165
|
typescript: '>=4.8.4 <6.1.0'
|
|
4286
4166
|
|
|
4287
|
-
'@typescript-eslint/rule-tester@8.61.
|
|
4288
|
-
resolution: {integrity: sha512-
|
|
4167
|
+
'@typescript-eslint/rule-tester@8.61.1':
|
|
4168
|
+
resolution: {integrity: sha512-x7xp2GZaFcrXv2tuGN5Lcdd05BcPDaL2wSPpARPSbbRE7N2N46za+9NTAtb8NX5a9FfoDLkhLYDbJjngV8xYDA==}
|
|
4289
4169
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4290
4170
|
peerDependencies:
|
|
4291
4171
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4292
4172
|
typescript: '>=4.8.4 <6.1.0'
|
|
4293
4173
|
|
|
4294
|
-
'@typescript-eslint/scope-manager@8.61.
|
|
4295
|
-
resolution: {integrity: sha512-
|
|
4174
|
+
'@typescript-eslint/scope-manager@8.61.1':
|
|
4175
|
+
resolution: {integrity: sha512-L2bdIeoQS8FlKAvONAr20w6OcLXeB+qiDKbAooS9A0Ben+iSIkBef0FxqwKWYqt5sa0i4KJtxVyVmhMylKzF5w==}
|
|
4296
4176
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4297
4177
|
|
|
4298
|
-
'@typescript-eslint/tsconfig-utils@8.61.
|
|
4299
|
-
resolution: {integrity: sha512-
|
|
4178
|
+
'@typescript-eslint/tsconfig-utils@8.61.1':
|
|
4179
|
+
resolution: {integrity: sha512-UN/H4di+OO7EWx2ovME+8t31YO+KVnK0RRKEHR3kOt21/Ay8BOq3M1OMvWs5vNiqcFCYGYoxK3MXPZzmMUE+yg==}
|
|
4300
4180
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4301
4181
|
peerDependencies:
|
|
4302
4182
|
typescript: '>=4.8.4 <6.1.0'
|
|
4303
4183
|
|
|
4304
|
-
'@typescript-eslint/type-utils@8.61.
|
|
4305
|
-
resolution: {integrity: sha512-
|
|
4184
|
+
'@typescript-eslint/type-utils@8.61.1':
|
|
4185
|
+
resolution: {integrity: sha512-GYRicKmVK0C4fsKgaACaknOUAq9Oa2kwsjnpFhFcS/5p4Ht5IP9OVLbgIgcK4SRk92nVHFluurg1lumD9dBcLw==}
|
|
4306
4186
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4307
4187
|
peerDependencies:
|
|
4308
4188
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4309
4189
|
typescript: '>=4.8.4 <6.1.0'
|
|
4310
4190
|
|
|
4311
|
-
'@typescript-eslint/types@8.61.
|
|
4312
|
-
resolution: {integrity: sha512-
|
|
4191
|
+
'@typescript-eslint/types@8.61.1':
|
|
4192
|
+
resolution: {integrity: sha512-G+CRlPqLv7Bz1IZVs03x5K59F1veqL0EJUROAdGhKsEq8qOiRiZbI+HUojPq5l0fEGOKModD9br6lObhB8zkoA==}
|
|
4313
4193
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4314
4194
|
|
|
4315
|
-
'@typescript-eslint/typescript-estree@8.61.
|
|
4316
|
-
resolution: {integrity: sha512-
|
|
4195
|
+
'@typescript-eslint/typescript-estree@8.61.1':
|
|
4196
|
+
resolution: {integrity: sha512-u+oQD3BqYWPc8YV9Zab4vaJElJuwOLPRc10Jm1o/qS+6Qwen14HCWwx0Seo4LnSn2wxea2Ik8DxPt2/FHmuhrg==}
|
|
4317
4197
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4318
4198
|
peerDependencies:
|
|
4319
4199
|
typescript: '>=4.8.4 <6.1.0'
|
|
4320
4200
|
|
|
4321
|
-
'@typescript-eslint/utils@8.61.
|
|
4322
|
-
resolution: {integrity: sha512-
|
|
4201
|
+
'@typescript-eslint/utils@8.61.1':
|
|
4202
|
+
resolution: {integrity: sha512-1+P/3Dj6jvtybE1q0HQ6yBt/gq+oKJyLdEv4HdnqasaEXRSYCAsD59mXEVQnM/ULNdQxbX77tdG4jPRjIS6knA==}
|
|
4323
4203
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4324
4204
|
peerDependencies:
|
|
4325
4205
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4326
4206
|
typescript: '>=4.8.4 <6.1.0'
|
|
4327
4207
|
|
|
4328
|
-
'@typescript-eslint/visitor-keys@8.61.
|
|
4329
|
-
resolution: {integrity: sha512-
|
|
4208
|
+
'@typescript-eslint/visitor-keys@8.61.1':
|
|
4209
|
+
resolution: {integrity: sha512-6fJ9MHWtK14C1DSkiMlHUSOmrVebL7150xZJBlJiL62jjhIA4JmOq6flwBgDxIdBKKdoiZRel+dfPD5MLfny3w==}
|
|
4330
4210
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4331
4211
|
|
|
4332
4212
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260610.1':
|
|
@@ -4425,8 +4305,8 @@ packages:
|
|
|
4425
4305
|
'@vue/devtools-api@6.6.4':
|
|
4426
4306
|
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
|
|
4427
4307
|
|
|
4428
|
-
'@vue/language-core@3.3.
|
|
4429
|
-
resolution: {integrity: sha512-
|
|
4308
|
+
'@vue/language-core@3.3.5':
|
|
4309
|
+
resolution: {integrity: sha512-UkKu5nhX89fg4VhlG/FOeI10G3cj/7radKT/cy9BT4Q9qJmJlSTAc/dP63Xqs29aypN4f39xUV6PsLNk/dcD6g==}
|
|
4430
4310
|
|
|
4431
4311
|
'@vue/shared@3.5.13':
|
|
4432
4312
|
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
|
|
@@ -4618,8 +4498,8 @@ packages:
|
|
|
4618
4498
|
bare-path@3.0.1:
|
|
4619
4499
|
resolution: {integrity: sha512-ghj2DSK/2e99a1anTVPCV4m4YIYtrbXhfM7V3D7XZLOTsybnYyaJloymGqssQc8l/or0UoDyRtNQkmkEF/ysgQ==}
|
|
4620
4500
|
|
|
4621
|
-
bare-stream@2.13.
|
|
4622
|
-
resolution: {integrity: sha512-
|
|
4501
|
+
bare-stream@2.13.3:
|
|
4502
|
+
resolution: {integrity: sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==}
|
|
4623
4503
|
peerDependencies:
|
|
4624
4504
|
bare-abort-controller: '*'
|
|
4625
4505
|
bare-buffer: '*'
|
|
@@ -4656,8 +4536,8 @@ packages:
|
|
|
4656
4536
|
bl@1.2.3:
|
|
4657
4537
|
resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
|
|
4658
4538
|
|
|
4659
|
-
body-parser@2.
|
|
4660
|
-
resolution: {integrity: sha512-
|
|
4539
|
+
body-parser@2.3.0:
|
|
4540
|
+
resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==}
|
|
4661
4541
|
engines: {node: '>=18'}
|
|
4662
4542
|
|
|
4663
4543
|
boolbase@1.0.0:
|
|
@@ -5206,8 +5086,8 @@ packages:
|
|
|
5206
5086
|
end-of-stream@1.4.5:
|
|
5207
5087
|
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
5208
5088
|
|
|
5209
|
-
enhanced-resolve@5.
|
|
5210
|
-
resolution: {integrity: sha512-
|
|
5089
|
+
enhanced-resolve@5.21.6:
|
|
5090
|
+
resolution: {integrity: sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==}
|
|
5211
5091
|
engines: {node: '>=10.13.0'}
|
|
5212
5092
|
|
|
5213
5093
|
enquirer@2.4.1:
|
|
@@ -5384,8 +5264,8 @@ packages:
|
|
|
5384
5264
|
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
5385
5265
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5386
5266
|
|
|
5387
|
-
eslint@10.
|
|
5388
|
-
resolution: {integrity: sha512-
|
|
5267
|
+
eslint@10.5.0:
|
|
5268
|
+
resolution: {integrity: sha512-1y+7C+vi12bUK1IpZeaV3gsH9fHLBmPvYmPx42pvT/E9yG0IC8g3PUZZgp0+JLJl7ZDK0flc2gc+Aw9dpCvIsQ==}
|
|
5389
5269
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5390
5270
|
hasBin: true
|
|
5391
5271
|
peerDependencies:
|
|
@@ -5739,8 +5619,8 @@ packages:
|
|
|
5739
5619
|
header-case@2.0.4:
|
|
5740
5620
|
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
|
|
5741
5621
|
|
|
5742
|
-
hono@4.12.
|
|
5743
|
-
resolution: {integrity: sha512-
|
|
5622
|
+
hono@4.12.26:
|
|
5623
|
+
resolution: {integrity: sha512-uyZtpnYxM9CmQ7QsQknM4zN8EftNqhON1qYeIKM0Se67CCEe2c44xyGURwB0axX2fBDu1dqHrHAc1hmNT8ITkw==}
|
|
5744
5624
|
engines: {node: '>=16.9.0'}
|
|
5745
5625
|
|
|
5746
5626
|
hookable@6.1.1:
|
|
@@ -6078,10 +5958,6 @@ packages:
|
|
|
6078
5958
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
6079
5959
|
hasBin: true
|
|
6080
5960
|
|
|
6081
|
-
js-yaml@4.2.0:
|
|
6082
|
-
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
6083
|
-
hasBin: true
|
|
6084
|
-
|
|
6085
5961
|
jsdoc-type-pratt-parser@7.1.1:
|
|
6086
5962
|
resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
|
|
6087
5963
|
engines: {node: '>=20.0.0'}
|
|
@@ -6712,8 +6588,8 @@ packages:
|
|
|
6712
6588
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6713
6589
|
hasBin: true
|
|
6714
6590
|
|
|
6715
|
-
oxlint@1.
|
|
6716
|
-
resolution: {integrity: sha512-
|
|
6591
|
+
oxlint@1.70.0:
|
|
6592
|
+
resolution: {integrity: sha512-D6JgHtzkhRwvEC+A0Nw5AEc5bk8x5i1pHzvZIEf/a0C4hOzmAACNGtkDGPyFaxxX3ZVGxCPeig3P3rMM8XU3/g==}
|
|
6717
6593
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6718
6594
|
hasBin: true
|
|
6719
6595
|
peerDependencies:
|
|
@@ -6950,8 +6826,8 @@ packages:
|
|
|
6950
6826
|
quasar-app-extension-zova@1.3.1:
|
|
6951
6827
|
resolution: {integrity: sha512-JKOXATq28dlNVzF534QosguSHnpR3RN+O8jqWMA8yUk58oj4q/iqFlOV8dnW5Cu/24JMN1Z+bKW2cOLdkpOzxw==}
|
|
6952
6828
|
|
|
6953
|
-
quasar@2.
|
|
6954
|
-
resolution: {integrity: sha512-
|
|
6829
|
+
quasar@2.20.1:
|
|
6830
|
+
resolution: {integrity: sha512-C+uFyt9/D2B2Dad/c9tGSlyWLMsrz+ROJLm3FKFdY9i+vc1Mk2q/+JyHBmQnuvQCEpUrdiXqcWQbpmZhuvo60A==}
|
|
6955
6831
|
engines: {node: '>= 10.18.1', npm: '>= 6.13.4', yarn: '>= 1.21.1'}
|
|
6956
6832
|
|
|
6957
6833
|
queue-microtask@1.2.3:
|
|
@@ -7129,11 +7005,6 @@ packages:
|
|
|
7129
7005
|
rollup:
|
|
7130
7006
|
optional: true
|
|
7131
7007
|
|
|
7132
|
-
rollup@4.61.1:
|
|
7133
|
-
resolution: {integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==}
|
|
7134
|
-
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
7135
|
-
hasBin: true
|
|
7136
|
-
|
|
7137
7008
|
router@2.2.0:
|
|
7138
7009
|
resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
|
|
7139
7010
|
engines: {node: '>= 18'}
|
|
@@ -7323,8 +7194,8 @@ packages:
|
|
|
7323
7194
|
sentence-case@3.0.4:
|
|
7324
7195
|
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
|
|
7325
7196
|
|
|
7326
|
-
serialize-javascript@7.0.
|
|
7327
|
-
resolution: {integrity: sha512-
|
|
7197
|
+
serialize-javascript@7.0.6:
|
|
7198
|
+
resolution: {integrity: sha512-ATTK5Q4gFVg0YDp1my2vqygyvhcklD/UV5GIlYHooGTn/NogJqIzpetkD6E5kmuVULqz/S9inUL25XcAgDRJQg==}
|
|
7328
7199
|
engines: {node: '>=20.0.0'}
|
|
7329
7200
|
|
|
7330
7201
|
serve-static@2.2.1:
|
|
@@ -7449,8 +7320,8 @@ packages:
|
|
|
7449
7320
|
resolution: {integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==}
|
|
7450
7321
|
engines: {node: '>=0.10'}
|
|
7451
7322
|
|
|
7452
|
-
streamx@2.
|
|
7453
|
-
resolution: {integrity: sha512-
|
|
7323
|
+
streamx@2.28.0:
|
|
7324
|
+
resolution: {integrity: sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==}
|
|
7454
7325
|
|
|
7455
7326
|
string-hash@1.1.3:
|
|
7456
7327
|
resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
|
|
@@ -7535,8 +7406,8 @@ packages:
|
|
|
7535
7406
|
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
|
|
7536
7407
|
engines: {node: '>=20'}
|
|
7537
7408
|
|
|
7538
|
-
tailwindcss@4.3.
|
|
7539
|
-
resolution: {integrity: sha512-
|
|
7409
|
+
tailwindcss@4.3.1:
|
|
7410
|
+
resolution: {integrity: sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==}
|
|
7540
7411
|
|
|
7541
7412
|
tapable@2.3.3:
|
|
7542
7413
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
@@ -7702,8 +7573,8 @@ packages:
|
|
|
7702
7573
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
7703
7574
|
engines: {node: '>= 0.4'}
|
|
7704
7575
|
|
|
7705
|
-
typescript-eslint@8.61.
|
|
7706
|
-
resolution: {integrity: sha512-
|
|
7576
|
+
typescript-eslint@8.61.1:
|
|
7577
|
+
resolution: {integrity: sha512-V7PayAfJokV3pEHgN7/v03D1SpujhRfQtYLbLIiBfDDncdg4PAiRBfoS4cnCANK4jmAPncczi59QO3afiXUlNw==}
|
|
7707
7578
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
7708
7579
|
peerDependencies:
|
|
7709
7580
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -7922,8 +7793,8 @@ packages:
|
|
|
7922
7793
|
peerDependencies:
|
|
7923
7794
|
vue: ^3.5.13
|
|
7924
7795
|
|
|
7925
|
-
vue-tsc@3.3.
|
|
7926
|
-
resolution: {integrity: sha512-
|
|
7796
|
+
vue-tsc@3.3.5:
|
|
7797
|
+
resolution: {integrity: sha512-Rzh/G2MmNlMSAMTiQEjDrsb4dgB/jbtEM47rVN2NtidF1dfb/q4w4QvpQBtW5+y3y5H27Hjh7deVwk+YB02fNg==}
|
|
7927
7798
|
hasBin: true
|
|
7928
7799
|
peerDependencies:
|
|
7929
7800
|
typescript: '>=5.0.0'
|
|
@@ -8339,7 +8210,7 @@ snapshots:
|
|
|
8339
8210
|
|
|
8340
8211
|
'@bufbuild/protobuf@2.12.0': {}
|
|
8341
8212
|
|
|
8342
|
-
'@cabloy/cli@3.1.18(vue@3.5.38(typescript@5.9.3))':
|
|
8213
|
+
'@cabloy/cli@3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
|
|
8343
8214
|
dependencies:
|
|
8344
8215
|
'@babel/parser': 7.29.7
|
|
8345
8216
|
'@cabloy/module-glob': 5.3.13
|
|
@@ -8348,7 +8219,7 @@ snapshots:
|
|
|
8348
8219
|
'@cabloy/utils': 2.1.22
|
|
8349
8220
|
'@cabloy/word-utils': link:packages-utils/word-utils
|
|
8350
8221
|
'@npmcli/config': 10.10.0
|
|
8351
|
-
'@zhennann/common-bin': 4.0.1
|
|
8222
|
+
'@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
|
|
8352
8223
|
'@zhennann/ejs': 3.0.1
|
|
8353
8224
|
boxen: 4.2.0
|
|
8354
8225
|
chalk: 3.0.0
|
|
@@ -8386,27 +8257,27 @@ snapshots:
|
|
|
8386
8257
|
dependencies:
|
|
8387
8258
|
json5: 2.2.3
|
|
8388
8259
|
|
|
8389
|
-
'@cabloy/lint@5.1.
|
|
8260
|
+
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3))(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.70.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))':
|
|
8390
8261
|
dependencies:
|
|
8391
|
-
'@e18e/eslint-plugin': 0.2.0(eslint@10.
|
|
8262
|
+
'@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.70.0)
|
|
8392
8263
|
'@eslint/json': 1.2.0
|
|
8393
8264
|
'@eslint/markdown': 7.5.1(supports-color@10.2.2)
|
|
8394
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
8395
|
-
'@typescript-eslint/parser': 8.61.
|
|
8396
|
-
eslint-plugin-antfu: 3.2.3(eslint@10.
|
|
8397
|
-
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.61.
|
|
8398
|
-
eslint-plugin-eslint-comments: 3.2.0(eslint@10.
|
|
8399
|
-
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
8400
|
-
eslint-plugin-pnpm: 1.6.1(eslint@10.
|
|
8401
|
-
eslint-plugin-regexp: 3.1.0(eslint@10.
|
|
8402
|
-
eslint-plugin-toml: 1.4.0(eslint@10.
|
|
8403
|
-
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.61.
|
|
8404
|
-
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
8405
|
-
eslint-plugin-yml: 3.4.0(eslint@10.
|
|
8265
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
8266
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
8267
|
+
eslint-plugin-antfu: 3.2.3(eslint@10.5.0(jiti@2.7.0))
|
|
8268
|
+
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3))(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))
|
|
8269
|
+
eslint-plugin-eslint-comments: 3.2.0(eslint@10.5.0(jiti@2.7.0))
|
|
8270
|
+
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))
|
|
8271
|
+
eslint-plugin-pnpm: 1.6.1(eslint@10.5.0(jiti@2.7.0))
|
|
8272
|
+
eslint-plugin-regexp: 3.1.0(eslint@10.5.0(jiti@2.7.0))
|
|
8273
|
+
eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)
|
|
8274
|
+
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))
|
|
8275
|
+
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
|
|
8276
|
+
eslint-plugin-yml: 3.4.0(eslint@10.5.0(jiti@2.7.0))
|
|
8406
8277
|
globals: 17.6.0
|
|
8407
8278
|
oxfmt: 0.45.0
|
|
8408
|
-
oxlint: 1.
|
|
8409
|
-
typescript-eslint: 8.61.
|
|
8279
|
+
oxlint: 1.70.0
|
|
8280
|
+
typescript-eslint: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8410
8281
|
transitivePeerDependencies:
|
|
8411
8282
|
- '@typescript-eslint/eslint-plugin'
|
|
8412
8283
|
- '@typescript-eslint/rule-tester'
|
|
@@ -8443,11 +8314,11 @@ snapshots:
|
|
|
8443
8314
|
|
|
8444
8315
|
'@cabloy/process-helper@3.1.8': {}
|
|
8445
8316
|
|
|
8446
|
-
'@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.
|
|
8317
|
+
'@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)':
|
|
8447
8318
|
dependencies:
|
|
8448
8319
|
'@quasar/render-ssr-error': 1.0.4
|
|
8449
8320
|
'@quasar/ssl-certificate': 1.0.0
|
|
8450
|
-
'@quasar/vite-plugin': '@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.
|
|
8321
|
+
'@quasar/vite-plugin': '@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.20.1)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))'
|
|
8451
8322
|
'@types/chrome': 0.1.43
|
|
8452
8323
|
'@types/compression': 1.8.1
|
|
8453
8324
|
'@types/cordova': 11.0.3
|
|
@@ -8474,11 +8345,11 @@ snapshots:
|
|
|
8474
8345
|
minimist: 1.2.8
|
|
8475
8346
|
mlly: 1.8.2
|
|
8476
8347
|
open: 11.0.0
|
|
8477
|
-
quasar: 2.
|
|
8478
|
-
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.0)
|
|
8348
|
+
quasar: 2.20.1
|
|
8349
|
+
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.0)
|
|
8479
8350
|
sass-embedded: 1.100.0
|
|
8480
8351
|
semver: 7.8.4
|
|
8481
|
-
serialize-javascript: 7.0.
|
|
8352
|
+
serialize-javascript: 7.0.6
|
|
8482
8353
|
tinyglobby: 0.2.17
|
|
8483
8354
|
ts-essentials: 10.2.1(typescript@5.9.3)
|
|
8484
8355
|
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
@@ -8487,7 +8358,7 @@ snapshots:
|
|
|
8487
8358
|
webpack-merge: 6.0.1
|
|
8488
8359
|
zova-vite: link:packages-utils/zova-vite
|
|
8489
8360
|
optionalDependencies:
|
|
8490
|
-
eslint: 10.
|
|
8361
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
8491
8362
|
typescript: 5.9.3
|
|
8492
8363
|
transitivePeerDependencies:
|
|
8493
8364
|
- '@types/node'
|
|
@@ -8507,10 +8378,10 @@ snapshots:
|
|
|
8507
8378
|
- tsx
|
|
8508
8379
|
- yaml
|
|
8509
8380
|
|
|
8510
|
-
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.
|
|
8381
|
+
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.20.1)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
|
|
8511
8382
|
dependencies:
|
|
8512
8383
|
'@vitejs/plugin-vue': 6.0.7(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
|
|
8513
|
-
quasar: 2.
|
|
8384
|
+
quasar: 2.20.1
|
|
8514
8385
|
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
8515
8386
|
vue: 3.5.38(typescript@5.9.3)
|
|
8516
8387
|
|
|
@@ -8523,17 +8394,17 @@ snapshots:
|
|
|
8523
8394
|
'@marcbachmann/cel-js': 7.6.1
|
|
8524
8395
|
object-hash: 3.0.0
|
|
8525
8396
|
|
|
8526
|
-
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
8397
|
+
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))':
|
|
8527
8398
|
dependencies:
|
|
8528
8399
|
'@babel/core': 7.29.7
|
|
8529
8400
|
esbuild: 0.20.2
|
|
8530
|
-
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
8401
|
+
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
8531
8402
|
|
|
8532
|
-
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
8403
|
+
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))':
|
|
8533
8404
|
dependencies:
|
|
8534
8405
|
'@babel/core': 7.29.7
|
|
8535
8406
|
esbuild: 0.20.2
|
|
8536
|
-
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
8407
|
+
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
8537
8408
|
|
|
8538
8409
|
'@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)':
|
|
8539
8410
|
dependencies:
|
|
@@ -8632,12 +8503,12 @@ snapshots:
|
|
|
8632
8503
|
'@colors/colors@1.5.0':
|
|
8633
8504
|
optional: true
|
|
8634
8505
|
|
|
8635
|
-
'@e18e/eslint-plugin@0.2.0(eslint@10.
|
|
8506
|
+
'@e18e/eslint-plugin@0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.70.0)':
|
|
8636
8507
|
dependencies:
|
|
8637
|
-
eslint-plugin-depend: 1.5.0(eslint@10.
|
|
8508
|
+
eslint-plugin-depend: 1.5.0(eslint@10.5.0(jiti@2.7.0))
|
|
8638
8509
|
optionalDependencies:
|
|
8639
|
-
eslint: 10.
|
|
8640
|
-
oxlint: 1.
|
|
8510
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
8511
|
+
oxlint: 1.70.0
|
|
8641
8512
|
|
|
8642
8513
|
'@eggjs/yauzl@2.11.0':
|
|
8643
8514
|
dependencies:
|
|
@@ -8663,7 +8534,7 @@ snapshots:
|
|
|
8663
8534
|
'@es-joy/jsdoccomment@0.84.0':
|
|
8664
8535
|
dependencies:
|
|
8665
8536
|
'@types/estree': 1.0.9
|
|
8666
|
-
'@typescript-eslint/types': 8.61.
|
|
8537
|
+
'@typescript-eslint/types': 8.61.1
|
|
8667
8538
|
comment-parser: 1.4.5
|
|
8668
8539
|
esquery: 1.7.0
|
|
8669
8540
|
jsdoc-type-pratt-parser: 7.1.1
|
|
@@ -9043,9 +8914,9 @@ snapshots:
|
|
|
9043
8914
|
'@esbuild/win32-x64@0.27.7':
|
|
9044
8915
|
optional: true
|
|
9045
8916
|
|
|
9046
|
-
'@eslint-community/eslint-utils@4.9.1(eslint@10.
|
|
8917
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@10.5.0(jiti@2.7.0))':
|
|
9047
8918
|
dependencies:
|
|
9048
|
-
eslint: 10.
|
|
8919
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
9049
8920
|
eslint-visitor-keys: 3.4.3
|
|
9050
8921
|
|
|
9051
8922
|
'@eslint-community/regexpp@4.12.2': {}
|
|
@@ -9112,9 +8983,9 @@ snapshots:
|
|
|
9112
8983
|
|
|
9113
8984
|
'@gar/promise-retry@1.0.3': {}
|
|
9114
8985
|
|
|
9115
|
-
'@hono/node-server@1.19.14(hono@4.12.
|
|
8986
|
+
'@hono/node-server@1.19.14(hono@4.12.26)':
|
|
9116
8987
|
dependencies:
|
|
9117
|
-
hono: 4.12.
|
|
8988
|
+
hono: 4.12.26
|
|
9118
8989
|
|
|
9119
8990
|
'@humanfs/core@0.19.2':
|
|
9120
8991
|
dependencies:
|
|
@@ -9298,7 +9169,7 @@ snapshots:
|
|
|
9298
9169
|
|
|
9299
9170
|
'@modelcontextprotocol/sdk@1.29.0(@cabloy/zod@4.3.6)':
|
|
9300
9171
|
dependencies:
|
|
9301
|
-
'@hono/node-server': 1.19.14(hono@4.12.
|
|
9172
|
+
'@hono/node-server': 1.19.14(hono@4.12.26)
|
|
9302
9173
|
ajv: 8.20.0
|
|
9303
9174
|
ajv-formats: 3.0.1(ajv@8.20.0)
|
|
9304
9175
|
content-type: 1.0.5
|
|
@@ -9308,7 +9179,7 @@ snapshots:
|
|
|
9308
9179
|
eventsource-parser: 3.1.0
|
|
9309
9180
|
express: 5.2.1(supports-color@10.2.2)
|
|
9310
9181
|
express-rate-limit: 8.5.2(express@5.2.1(supports-color@10.2.2))
|
|
9311
|
-
hono: 4.12.
|
|
9182
|
+
hono: 4.12.26
|
|
9312
9183
|
jose: 6.2.3
|
|
9313
9184
|
json-schema-typed: 8.0.2
|
|
9314
9185
|
pkce-challenge: 5.0.1
|
|
@@ -9447,61 +9318,61 @@ snapshots:
|
|
|
9447
9318
|
'@oxfmt/binding-win32-x64-msvc@0.45.0':
|
|
9448
9319
|
optional: true
|
|
9449
9320
|
|
|
9450
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
9321
|
+
'@oxlint/binding-android-arm-eabi@1.70.0':
|
|
9451
9322
|
optional: true
|
|
9452
9323
|
|
|
9453
|
-
'@oxlint/binding-android-arm64@1.
|
|
9324
|
+
'@oxlint/binding-android-arm64@1.70.0':
|
|
9454
9325
|
optional: true
|
|
9455
9326
|
|
|
9456
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
9327
|
+
'@oxlint/binding-darwin-arm64@1.70.0':
|
|
9457
9328
|
optional: true
|
|
9458
9329
|
|
|
9459
|
-
'@oxlint/binding-darwin-x64@1.
|
|
9330
|
+
'@oxlint/binding-darwin-x64@1.70.0':
|
|
9460
9331
|
optional: true
|
|
9461
9332
|
|
|
9462
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
9333
|
+
'@oxlint/binding-freebsd-x64@1.70.0':
|
|
9463
9334
|
optional: true
|
|
9464
9335
|
|
|
9465
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
9336
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.70.0':
|
|
9466
9337
|
optional: true
|
|
9467
9338
|
|
|
9468
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
9339
|
+
'@oxlint/binding-linux-arm-musleabihf@1.70.0':
|
|
9469
9340
|
optional: true
|
|
9470
9341
|
|
|
9471
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
9342
|
+
'@oxlint/binding-linux-arm64-gnu@1.70.0':
|
|
9472
9343
|
optional: true
|
|
9473
9344
|
|
|
9474
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
9345
|
+
'@oxlint/binding-linux-arm64-musl@1.70.0':
|
|
9475
9346
|
optional: true
|
|
9476
9347
|
|
|
9477
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
9348
|
+
'@oxlint/binding-linux-ppc64-gnu@1.70.0':
|
|
9478
9349
|
optional: true
|
|
9479
9350
|
|
|
9480
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
9351
|
+
'@oxlint/binding-linux-riscv64-gnu@1.70.0':
|
|
9481
9352
|
optional: true
|
|
9482
9353
|
|
|
9483
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
9354
|
+
'@oxlint/binding-linux-riscv64-musl@1.70.0':
|
|
9484
9355
|
optional: true
|
|
9485
9356
|
|
|
9486
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
9357
|
+
'@oxlint/binding-linux-s390x-gnu@1.70.0':
|
|
9487
9358
|
optional: true
|
|
9488
9359
|
|
|
9489
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
9360
|
+
'@oxlint/binding-linux-x64-gnu@1.70.0':
|
|
9490
9361
|
optional: true
|
|
9491
9362
|
|
|
9492
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
9363
|
+
'@oxlint/binding-linux-x64-musl@1.70.0':
|
|
9493
9364
|
optional: true
|
|
9494
9365
|
|
|
9495
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
9366
|
+
'@oxlint/binding-openharmony-arm64@1.70.0':
|
|
9496
9367
|
optional: true
|
|
9497
9368
|
|
|
9498
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
9369
|
+
'@oxlint/binding-win32-arm64-msvc@1.70.0':
|
|
9499
9370
|
optional: true
|
|
9500
9371
|
|
|
9501
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
9372
|
+
'@oxlint/binding-win32-ia32-msvc@1.70.0':
|
|
9502
9373
|
optional: true
|
|
9503
9374
|
|
|
9504
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
9375
|
+
'@oxlint/binding-win32-x64-msvc@1.70.0':
|
|
9505
9376
|
optional: true
|
|
9506
9377
|
|
|
9507
9378
|
'@parcel/watcher-android-arm64@2.5.6':
|
|
@@ -9757,168 +9628,93 @@ snapshots:
|
|
|
9757
9628
|
|
|
9758
9629
|
'@rolldown/pluginutils@1.0.1': {}
|
|
9759
9630
|
|
|
9760
|
-
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
9761
|
-
optional: true
|
|
9762
|
-
|
|
9763
|
-
'@rollup/rollup-android-arm64@4.61.1':
|
|
9764
|
-
optional: true
|
|
9765
|
-
|
|
9766
|
-
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
9767
|
-
optional: true
|
|
9768
|
-
|
|
9769
|
-
'@rollup/rollup-darwin-x64@4.61.1':
|
|
9770
|
-
optional: true
|
|
9771
|
-
|
|
9772
|
-
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
9773
|
-
optional: true
|
|
9774
|
-
|
|
9775
|
-
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
9776
|
-
optional: true
|
|
9777
|
-
|
|
9778
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
9779
|
-
optional: true
|
|
9780
|
-
|
|
9781
|
-
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
9782
|
-
optional: true
|
|
9783
|
-
|
|
9784
|
-
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
9785
|
-
optional: true
|
|
9786
|
-
|
|
9787
|
-
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
9788
|
-
optional: true
|
|
9789
|
-
|
|
9790
|
-
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
9791
|
-
optional: true
|
|
9792
|
-
|
|
9793
|
-
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
9794
|
-
optional: true
|
|
9795
|
-
|
|
9796
|
-
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
9797
|
-
optional: true
|
|
9798
|
-
|
|
9799
|
-
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
9800
|
-
optional: true
|
|
9801
|
-
|
|
9802
|
-
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
9803
|
-
optional: true
|
|
9804
|
-
|
|
9805
|
-
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
9806
|
-
optional: true
|
|
9807
|
-
|
|
9808
|
-
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
9809
|
-
optional: true
|
|
9810
|
-
|
|
9811
|
-
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
9812
|
-
optional: true
|
|
9813
|
-
|
|
9814
|
-
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
9815
|
-
optional: true
|
|
9816
|
-
|
|
9817
|
-
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
9818
|
-
optional: true
|
|
9819
|
-
|
|
9820
|
-
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
9821
|
-
optional: true
|
|
9822
|
-
|
|
9823
|
-
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
9824
|
-
optional: true
|
|
9825
|
-
|
|
9826
|
-
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
9827
|
-
optional: true
|
|
9828
|
-
|
|
9829
|
-
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
9830
|
-
optional: true
|
|
9831
|
-
|
|
9832
|
-
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
9833
|
-
optional: true
|
|
9834
|
-
|
|
9835
9631
|
'@sindresorhus/merge-streams@2.3.0': {}
|
|
9836
9632
|
|
|
9837
9633
|
'@sindresorhus/merge-streams@4.0.0': {}
|
|
9838
9634
|
|
|
9839
|
-
'@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
9635
|
+
'@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0))':
|
|
9840
9636
|
dependencies:
|
|
9841
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
9842
|
-
'@typescript-eslint/types': 8.61.
|
|
9843
|
-
eslint: 10.
|
|
9637
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
9638
|
+
'@typescript-eslint/types': 8.61.1
|
|
9639
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
9844
9640
|
eslint-visitor-keys: 4.2.1
|
|
9845
9641
|
espree: 10.4.0
|
|
9846
9642
|
estraverse: 5.3.0
|
|
9847
9643
|
picomatch: 4.0.4
|
|
9848
9644
|
|
|
9849
|
-
'@tailwindcss/node@4.3.
|
|
9645
|
+
'@tailwindcss/node@4.3.1':
|
|
9850
9646
|
dependencies:
|
|
9851
9647
|
'@jridgewell/remapping': 2.3.5
|
|
9852
|
-
enhanced-resolve: 5.
|
|
9648
|
+
enhanced-resolve: 5.21.6
|
|
9853
9649
|
jiti: 2.7.0
|
|
9854
9650
|
lightningcss: 1.32.0
|
|
9855
9651
|
magic-string: 0.30.21
|
|
9856
9652
|
source-map-js: 1.2.1
|
|
9857
|
-
tailwindcss: 4.3.
|
|
9653
|
+
tailwindcss: 4.3.1
|
|
9858
9654
|
|
|
9859
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
9655
|
+
'@tailwindcss/oxide-android-arm64@4.3.1':
|
|
9860
9656
|
optional: true
|
|
9861
9657
|
|
|
9862
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
9658
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.1':
|
|
9863
9659
|
optional: true
|
|
9864
9660
|
|
|
9865
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
9661
|
+
'@tailwindcss/oxide-darwin-x64@4.3.1':
|
|
9866
9662
|
optional: true
|
|
9867
9663
|
|
|
9868
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
9664
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.1':
|
|
9869
9665
|
optional: true
|
|
9870
9666
|
|
|
9871
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
9667
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
|
|
9872
9668
|
optional: true
|
|
9873
9669
|
|
|
9874
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
9670
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
|
|
9875
9671
|
optional: true
|
|
9876
9672
|
|
|
9877
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
9673
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.1':
|
|
9878
9674
|
optional: true
|
|
9879
9675
|
|
|
9880
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
9676
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.1':
|
|
9881
9677
|
optional: true
|
|
9882
9678
|
|
|
9883
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
9679
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.1':
|
|
9884
9680
|
optional: true
|
|
9885
9681
|
|
|
9886
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
9682
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.1':
|
|
9887
9683
|
optional: true
|
|
9888
9684
|
|
|
9889
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
9685
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
|
|
9890
9686
|
optional: true
|
|
9891
9687
|
|
|
9892
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
9688
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.1':
|
|
9893
9689
|
optional: true
|
|
9894
9690
|
|
|
9895
|
-
'@tailwindcss/oxide@4.3.
|
|
9691
|
+
'@tailwindcss/oxide@4.3.1':
|
|
9896
9692
|
optionalDependencies:
|
|
9897
|
-
'@tailwindcss/oxide-android-arm64': 4.3.
|
|
9898
|
-
'@tailwindcss/oxide-darwin-arm64': 4.3.
|
|
9899
|
-
'@tailwindcss/oxide-darwin-x64': 4.3.
|
|
9900
|
-
'@tailwindcss/oxide-freebsd-x64': 4.3.
|
|
9901
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.
|
|
9902
|
-
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.
|
|
9903
|
-
'@tailwindcss/oxide-linux-arm64-musl': 4.3.
|
|
9904
|
-
'@tailwindcss/oxide-linux-x64-gnu': 4.3.
|
|
9905
|
-
'@tailwindcss/oxide-linux-x64-musl': 4.3.
|
|
9906
|
-
'@tailwindcss/oxide-wasm32-wasi': 4.3.
|
|
9907
|
-
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.
|
|
9908
|
-
'@tailwindcss/oxide-win32-x64-msvc': 4.3.
|
|
9909
|
-
|
|
9910
|
-
'@tailwindcss/postcss@4.3.
|
|
9693
|
+
'@tailwindcss/oxide-android-arm64': 4.3.1
|
|
9694
|
+
'@tailwindcss/oxide-darwin-arm64': 4.3.1
|
|
9695
|
+
'@tailwindcss/oxide-darwin-x64': 4.3.1
|
|
9696
|
+
'@tailwindcss/oxide-freebsd-x64': 4.3.1
|
|
9697
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.1
|
|
9698
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.1
|
|
9699
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.3.1
|
|
9700
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.3.1
|
|
9701
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.3.1
|
|
9702
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.3.1
|
|
9703
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.1
|
|
9704
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.3.1
|
|
9705
|
+
|
|
9706
|
+
'@tailwindcss/postcss@4.3.1':
|
|
9911
9707
|
dependencies:
|
|
9912
9708
|
'@alloc/quick-lru': 5.2.0
|
|
9913
|
-
'@tailwindcss/node': 4.3.
|
|
9914
|
-
'@tailwindcss/oxide': 4.3.
|
|
9709
|
+
'@tailwindcss/node': 4.3.1
|
|
9710
|
+
'@tailwindcss/oxide': 4.3.1
|
|
9915
9711
|
postcss: 8.5.15
|
|
9916
|
-
tailwindcss: 4.3.
|
|
9712
|
+
tailwindcss: 4.3.1
|
|
9917
9713
|
|
|
9918
|
-
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.
|
|
9714
|
+
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.1)':
|
|
9919
9715
|
dependencies:
|
|
9920
9716
|
postcss-selector-parser: 6.0.10
|
|
9921
|
-
tailwindcss: 4.3.
|
|
9717
|
+
tailwindcss: 4.3.1
|
|
9922
9718
|
|
|
9923
9719
|
'@tanstack/devtools-event-client@0.4.3': {}
|
|
9924
9720
|
|
|
@@ -10036,7 +9832,7 @@ snapshots:
|
|
|
10036
9832
|
'@textlint/types': 15.7.1
|
|
10037
9833
|
chalk: 4.1.2
|
|
10038
9834
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10039
|
-
js-yaml: 4.
|
|
9835
|
+
js-yaml: 4.1.1
|
|
10040
9836
|
lodash: 4.18.1
|
|
10041
9837
|
pluralize: 2.0.0
|
|
10042
9838
|
string-width: 4.2.3
|
|
@@ -10235,15 +10031,15 @@ snapshots:
|
|
|
10235
10031
|
|
|
10236
10032
|
'@types/unist@3.0.3': {}
|
|
10237
10033
|
|
|
10238
|
-
'@typescript-eslint/eslint-plugin@8.61.
|
|
10034
|
+
'@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10239
10035
|
dependencies:
|
|
10240
10036
|
'@eslint-community/regexpp': 4.12.2
|
|
10241
|
-
'@typescript-eslint/parser': 8.61.
|
|
10242
|
-
'@typescript-eslint/scope-manager': 8.61.
|
|
10243
|
-
'@typescript-eslint/type-utils': 8.61.
|
|
10244
|
-
'@typescript-eslint/utils': 8.61.
|
|
10245
|
-
'@typescript-eslint/visitor-keys': 8.61.
|
|
10246
|
-
eslint: 10.
|
|
10037
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10038
|
+
'@typescript-eslint/scope-manager': 8.61.1
|
|
10039
|
+
'@typescript-eslint/type-utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10040
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10041
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10042
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10247
10043
|
ignore: 7.0.5
|
|
10248
10044
|
natural-compare: 1.4.0
|
|
10249
10045
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -10251,34 +10047,34 @@ snapshots:
|
|
|
10251
10047
|
transitivePeerDependencies:
|
|
10252
10048
|
- supports-color
|
|
10253
10049
|
|
|
10254
|
-
'@typescript-eslint/parser@8.61.
|
|
10050
|
+
'@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10255
10051
|
dependencies:
|
|
10256
|
-
'@typescript-eslint/scope-manager': 8.61.
|
|
10257
|
-
'@typescript-eslint/types': 8.61.
|
|
10258
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
10259
|
-
'@typescript-eslint/visitor-keys': 8.61.
|
|
10052
|
+
'@typescript-eslint/scope-manager': 8.61.1
|
|
10053
|
+
'@typescript-eslint/types': 8.61.1
|
|
10054
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10055
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10260
10056
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10261
|
-
eslint: 10.
|
|
10057
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10262
10058
|
typescript: 5.9.3
|
|
10263
10059
|
transitivePeerDependencies:
|
|
10264
10060
|
- supports-color
|
|
10265
10061
|
|
|
10266
|
-
'@typescript-eslint/project-service@8.61.
|
|
10062
|
+
'@typescript-eslint/project-service@8.61.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10267
10063
|
dependencies:
|
|
10268
|
-
'@typescript-eslint/tsconfig-utils': 8.61.
|
|
10269
|
-
'@typescript-eslint/types': 8.61.
|
|
10064
|
+
'@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3)
|
|
10065
|
+
'@typescript-eslint/types': 8.61.1
|
|
10270
10066
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10271
10067
|
typescript: 5.9.3
|
|
10272
10068
|
transitivePeerDependencies:
|
|
10273
10069
|
- supports-color
|
|
10274
10070
|
|
|
10275
|
-
'@typescript-eslint/rule-tester@8.61.
|
|
10071
|
+
'@typescript-eslint/rule-tester@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10276
10072
|
dependencies:
|
|
10277
|
-
'@typescript-eslint/parser': 8.61.
|
|
10278
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
10279
|
-
'@typescript-eslint/utils': 8.61.
|
|
10073
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10074
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10075
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10280
10076
|
ajv: 6.15.0
|
|
10281
|
-
eslint: 10.
|
|
10077
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10282
10078
|
json-stable-stringify-without-jsonify: 1.0.1
|
|
10283
10079
|
lodash.merge: 4.6.2
|
|
10284
10080
|
semver: 7.8.4
|
|
@@ -10286,35 +10082,35 @@ snapshots:
|
|
|
10286
10082
|
transitivePeerDependencies:
|
|
10287
10083
|
- supports-color
|
|
10288
10084
|
|
|
10289
|
-
'@typescript-eslint/scope-manager@8.61.
|
|
10085
|
+
'@typescript-eslint/scope-manager@8.61.1':
|
|
10290
10086
|
dependencies:
|
|
10291
|
-
'@typescript-eslint/types': 8.61.
|
|
10292
|
-
'@typescript-eslint/visitor-keys': 8.61.
|
|
10087
|
+
'@typescript-eslint/types': 8.61.1
|
|
10088
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10293
10089
|
|
|
10294
|
-
'@typescript-eslint/tsconfig-utils@8.61.
|
|
10090
|
+
'@typescript-eslint/tsconfig-utils@8.61.1(typescript@5.9.3)':
|
|
10295
10091
|
dependencies:
|
|
10296
10092
|
typescript: 5.9.3
|
|
10297
10093
|
|
|
10298
|
-
'@typescript-eslint/type-utils@8.61.
|
|
10094
|
+
'@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10299
10095
|
dependencies:
|
|
10300
|
-
'@typescript-eslint/types': 8.61.
|
|
10301
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
10302
|
-
'@typescript-eslint/utils': 8.61.
|
|
10096
|
+
'@typescript-eslint/types': 8.61.1
|
|
10097
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10098
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10303
10099
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10304
|
-
eslint: 10.
|
|
10100
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10305
10101
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
10306
10102
|
typescript: 5.9.3
|
|
10307
10103
|
transitivePeerDependencies:
|
|
10308
10104
|
- supports-color
|
|
10309
10105
|
|
|
10310
|
-
'@typescript-eslint/types@8.61.
|
|
10106
|
+
'@typescript-eslint/types@8.61.1': {}
|
|
10311
10107
|
|
|
10312
|
-
'@typescript-eslint/typescript-estree@8.61.
|
|
10108
|
+
'@typescript-eslint/typescript-estree@8.61.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10313
10109
|
dependencies:
|
|
10314
|
-
'@typescript-eslint/project-service': 8.61.
|
|
10315
|
-
'@typescript-eslint/tsconfig-utils': 8.61.
|
|
10316
|
-
'@typescript-eslint/types': 8.61.
|
|
10317
|
-
'@typescript-eslint/visitor-keys': 8.61.
|
|
10110
|
+
'@typescript-eslint/project-service': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10111
|
+
'@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3)
|
|
10112
|
+
'@typescript-eslint/types': 8.61.1
|
|
10113
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10318
10114
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10319
10115
|
minimatch: 10.2.5
|
|
10320
10116
|
semver: 7.8.4
|
|
@@ -10324,20 +10120,20 @@ snapshots:
|
|
|
10324
10120
|
transitivePeerDependencies:
|
|
10325
10121
|
- supports-color
|
|
10326
10122
|
|
|
10327
|
-
'@typescript-eslint/utils@8.61.
|
|
10123
|
+
'@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10328
10124
|
dependencies:
|
|
10329
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
10330
|
-
'@typescript-eslint/scope-manager': 8.61.
|
|
10331
|
-
'@typescript-eslint/types': 8.61.
|
|
10332
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
10333
|
-
eslint: 10.
|
|
10125
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
10126
|
+
'@typescript-eslint/scope-manager': 8.61.1
|
|
10127
|
+
'@typescript-eslint/types': 8.61.1
|
|
10128
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10129
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10334
10130
|
typescript: 5.9.3
|
|
10335
10131
|
transitivePeerDependencies:
|
|
10336
10132
|
- supports-color
|
|
10337
10133
|
|
|
10338
|
-
'@typescript-eslint/visitor-keys@8.61.
|
|
10134
|
+
'@typescript-eslint/visitor-keys@8.61.1':
|
|
10339
10135
|
dependencies:
|
|
10340
|
-
'@typescript-eslint/types': 8.61.
|
|
10136
|
+
'@typescript-eslint/types': 8.61.1
|
|
10341
10137
|
eslint-visitor-keys: 5.0.1
|
|
10342
10138
|
|
|
10343
10139
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260610.1':
|
|
@@ -10371,26 +10167,26 @@ snapshots:
|
|
|
10371
10167
|
'@typescript/native-preview-win32-arm64': 7.0.0-dev.20260610.1
|
|
10372
10168
|
'@typescript/native-preview-win32-x64': 7.0.0-dev.20260610.1
|
|
10373
10169
|
|
|
10374
|
-
'@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
10170
|
+
'@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.13(typescript@5.9.3))':
|
|
10375
10171
|
dependencies:
|
|
10376
10172
|
'@babel/core': 7.29.7
|
|
10377
10173
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10378
10174
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10379
10175
|
'@rolldown/pluginutils': 1.0.1
|
|
10380
10176
|
'@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
|
|
10381
|
-
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
10177
|
+
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
10382
10178
|
vue: 3.5.13(typescript@5.9.3)
|
|
10383
10179
|
transitivePeerDependencies:
|
|
10384
10180
|
- supports-color
|
|
10385
10181
|
|
|
10386
|
-
'@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
10182
|
+
'@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
|
|
10387
10183
|
dependencies:
|
|
10388
10184
|
'@babel/core': 7.29.7
|
|
10389
10185
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10390
10186
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10391
10187
|
'@rolldown/pluginutils': 1.0.1
|
|
10392
10188
|
'@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
|
|
10393
|
-
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
10189
|
+
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
10394
10190
|
vue: 3.5.38(typescript@5.9.3)
|
|
10395
10191
|
transitivePeerDependencies:
|
|
10396
10192
|
- supports-color
|
|
@@ -10459,7 +10255,7 @@ snapshots:
|
|
|
10459
10255
|
|
|
10460
10256
|
'@vue/devtools-api@6.6.4': {}
|
|
10461
10257
|
|
|
10462
|
-
'@vue/language-core@3.3.
|
|
10258
|
+
'@vue/language-core@3.3.5':
|
|
10463
10259
|
dependencies:
|
|
10464
10260
|
'@volar/language-core': 2.4.28
|
|
10465
10261
|
'@vue/compiler-dom': 3.5.13
|
|
@@ -10471,7 +10267,7 @@ snapshots:
|
|
|
10471
10267
|
|
|
10472
10268
|
'@vue/shared@3.5.13': {}
|
|
10473
10269
|
|
|
10474
|
-
'@zhennann/common-bin@4.0.1':
|
|
10270
|
+
'@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
|
|
10475
10271
|
dependencies:
|
|
10476
10272
|
chalk: 4.1.2
|
|
10477
10273
|
change-case: 4.1.2
|
|
@@ -10646,7 +10442,7 @@ snapshots:
|
|
|
10646
10442
|
dependencies:
|
|
10647
10443
|
bare-events: 2.9.1
|
|
10648
10444
|
bare-path: 3.0.1
|
|
10649
|
-
bare-stream: 2.13.
|
|
10445
|
+
bare-stream: 2.13.3(bare-events@2.9.1)
|
|
10650
10446
|
bare-url: 2.4.5
|
|
10651
10447
|
fast-fifo: 1.3.2
|
|
10652
10448
|
transitivePeerDependencies:
|
|
@@ -10659,9 +10455,10 @@ snapshots:
|
|
|
10659
10455
|
dependencies:
|
|
10660
10456
|
bare-os: 3.9.1
|
|
10661
10457
|
|
|
10662
|
-
bare-stream@2.13.
|
|
10458
|
+
bare-stream@2.13.3(bare-events@2.9.1):
|
|
10663
10459
|
dependencies:
|
|
10664
|
-
|
|
10460
|
+
b4a: 1.8.1
|
|
10461
|
+
streamx: 2.28.0
|
|
10665
10462
|
teex: 1.0.1
|
|
10666
10463
|
optionalDependencies:
|
|
10667
10464
|
bare-events: 2.9.1
|
|
@@ -10687,10 +10484,10 @@ snapshots:
|
|
|
10687
10484
|
readable-stream: 2.3.8
|
|
10688
10485
|
safe-buffer: 5.2.1
|
|
10689
10486
|
|
|
10690
|
-
body-parser@2.
|
|
10487
|
+
body-parser@2.3.0(supports-color@10.2.2):
|
|
10691
10488
|
dependencies:
|
|
10692
10489
|
bytes: 3.1.2
|
|
10693
|
-
content-type:
|
|
10490
|
+
content-type: 2.0.0
|
|
10694
10491
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10695
10492
|
http-errors: 2.0.1
|
|
10696
10493
|
iconv-lite: 0.7.2
|
|
@@ -10957,7 +10754,7 @@ snapshots:
|
|
|
10957
10754
|
|
|
10958
10755
|
compressible@2.0.18:
|
|
10959
10756
|
dependencies:
|
|
10960
|
-
mime-db: 1.
|
|
10757
|
+
mime-db: 1.52.0
|
|
10961
10758
|
|
|
10962
10759
|
compressing@1.10.5:
|
|
10963
10760
|
dependencies:
|
|
@@ -11259,7 +11056,7 @@ snapshots:
|
|
|
11259
11056
|
dependencies:
|
|
11260
11057
|
once: 1.4.0
|
|
11261
11058
|
|
|
11262
|
-
enhanced-resolve@5.
|
|
11059
|
+
enhanced-resolve@5.21.6:
|
|
11263
11060
|
dependencies:
|
|
11264
11061
|
graceful-fs: 4.2.11
|
|
11265
11062
|
tapable: 2.3.3
|
|
@@ -11448,58 +11245,58 @@ snapshots:
|
|
|
11448
11245
|
|
|
11449
11246
|
escape-string-regexp@5.0.0: {}
|
|
11450
11247
|
|
|
11451
|
-
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11248
|
+
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0):
|
|
11452
11249
|
dependencies:
|
|
11453
|
-
eslint: 10.
|
|
11250
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11454
11251
|
esquery: 1.7.0
|
|
11455
11252
|
jsonc-eslint-parser: 3.1.0
|
|
11456
11253
|
optionalDependencies:
|
|
11457
11254
|
'@eslint/json': 1.2.0
|
|
11458
11255
|
|
|
11459
|
-
eslint-plugin-antfu@3.2.3(eslint@10.
|
|
11256
|
+
eslint-plugin-antfu@3.2.3(eslint@10.5.0(jiti@2.7.0)):
|
|
11460
11257
|
dependencies:
|
|
11461
|
-
eslint: 10.
|
|
11258
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11462
11259
|
|
|
11463
|
-
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.61.
|
|
11260
|
+
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3))(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0)):
|
|
11464
11261
|
dependencies:
|
|
11465
11262
|
'@es-joy/jsdoccomment': 0.84.0
|
|
11466
|
-
'@typescript-eslint/rule-tester': 8.61.
|
|
11467
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
11468
|
-
'@typescript-eslint/utils': 8.61.
|
|
11469
|
-
eslint: 10.
|
|
11263
|
+
'@typescript-eslint/rule-tester': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11264
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
11265
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11266
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11470
11267
|
|
|
11471
|
-
eslint-plugin-depend@1.5.0(eslint@10.
|
|
11268
|
+
eslint-plugin-depend@1.5.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11472
11269
|
dependencies:
|
|
11473
11270
|
empathic: 2.0.1
|
|
11474
|
-
eslint: 10.
|
|
11271
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11475
11272
|
module-replacements: 2.11.0
|
|
11476
11273
|
semver: 7.8.4
|
|
11477
11274
|
|
|
11478
|
-
eslint-plugin-eslint-comments@3.2.0(eslint@10.
|
|
11275
|
+
eslint-plugin-eslint-comments@3.2.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11479
11276
|
dependencies:
|
|
11480
11277
|
escape-string-regexp: 1.0.5
|
|
11481
|
-
eslint: 10.
|
|
11278
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11482
11279
|
ignore: 5.3.2
|
|
11483
11280
|
|
|
11484
|
-
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
11281
|
+
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0)):
|
|
11485
11282
|
dependencies:
|
|
11486
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11283
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11487
11284
|
'@eslint/core': 1.2.1
|
|
11488
11285
|
'@eslint/plugin-kit': 0.7.2
|
|
11489
11286
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11490
11287
|
diff-sequences: 29.6.3
|
|
11491
|
-
eslint: 10.
|
|
11492
|
-
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11288
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11289
|
+
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0)
|
|
11493
11290
|
jsonc-eslint-parser: 3.1.0
|
|
11494
11291
|
natural-compare: 1.4.0
|
|
11495
11292
|
synckit: 0.11.13
|
|
11496
11293
|
transitivePeerDependencies:
|
|
11497
11294
|
- '@eslint/json'
|
|
11498
11295
|
|
|
11499
|
-
eslint-plugin-pnpm@1.6.1(eslint@10.
|
|
11296
|
+
eslint-plugin-pnpm@1.6.1(eslint@10.5.0(jiti@2.7.0)):
|
|
11500
11297
|
dependencies:
|
|
11501
11298
|
empathic: 2.0.1
|
|
11502
|
-
eslint: 10.
|
|
11299
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11503
11300
|
jsonc-eslint-parser: 3.1.0
|
|
11504
11301
|
pathe: 2.0.3
|
|
11505
11302
|
pnpm-workspace-yaml: 1.6.1
|
|
@@ -11507,56 +11304,56 @@ snapshots:
|
|
|
11507
11304
|
yaml: 2.9.0
|
|
11508
11305
|
yaml-eslint-parser: 2.0.0
|
|
11509
11306
|
|
|
11510
|
-
eslint-plugin-regexp@3.1.0(eslint@10.
|
|
11307
|
+
eslint-plugin-regexp@3.1.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11511
11308
|
dependencies:
|
|
11512
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11309
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11513
11310
|
'@eslint-community/regexpp': 4.12.2
|
|
11514
11311
|
comment-parser: 1.4.7
|
|
11515
|
-
eslint: 10.
|
|
11312
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11516
11313
|
jsdoc-type-pratt-parser: 7.2.0
|
|
11517
11314
|
refa: 0.12.1
|
|
11518
11315
|
regexp-ast-analysis: 0.7.1
|
|
11519
11316
|
scslre: 0.3.0
|
|
11520
11317
|
|
|
11521
|
-
eslint-plugin-toml@1.4.0(eslint@10.
|
|
11318
|
+
eslint-plugin-toml@1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2):
|
|
11522
11319
|
dependencies:
|
|
11523
11320
|
'@eslint/core': 1.2.1
|
|
11524
11321
|
'@eslint/plugin-kit': 0.7.2
|
|
11525
11322
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11526
11323
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11527
|
-
eslint: 10.
|
|
11324
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11528
11325
|
toml-eslint-parser: 1.0.3
|
|
11529
11326
|
transitivePeerDependencies:
|
|
11530
11327
|
- supports-color
|
|
11531
11328
|
|
|
11532
|
-
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.61.
|
|
11329
|
+
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0)):
|
|
11533
11330
|
dependencies:
|
|
11534
|
-
eslint: 10.
|
|
11331
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11535
11332
|
optionalDependencies:
|
|
11536
|
-
'@typescript-eslint/eslint-plugin': 8.61.
|
|
11333
|
+
'@typescript-eslint/eslint-plugin': 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11537
11334
|
|
|
11538
|
-
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
11335
|
+
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))):
|
|
11539
11336
|
dependencies:
|
|
11540
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11541
|
-
eslint: 10.
|
|
11337
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11338
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11542
11339
|
natural-compare: 1.4.0
|
|
11543
11340
|
nth-check: 2.1.1
|
|
11544
11341
|
postcss-selector-parser: 7.1.2
|
|
11545
11342
|
semver: 7.8.4
|
|
11546
|
-
vue-eslint-parser: 10.4.1(eslint@10.
|
|
11343
|
+
vue-eslint-parser: 10.4.1(eslint@10.5.0(jiti@2.7.0))
|
|
11547
11344
|
xml-name-validator: 4.0.0
|
|
11548
11345
|
optionalDependencies:
|
|
11549
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
11550
|
-
'@typescript-eslint/parser': 8.61.
|
|
11346
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
11347
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
11551
11348
|
|
|
11552
|
-
eslint-plugin-yml@3.4.0(eslint@10.
|
|
11349
|
+
eslint-plugin-yml@3.4.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11553
11350
|
dependencies:
|
|
11554
11351
|
'@eslint/core': 1.2.1
|
|
11555
11352
|
'@eslint/plugin-kit': 0.7.2
|
|
11556
11353
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11557
11354
|
diff-sequences: 29.6.3
|
|
11558
11355
|
escape-string-regexp: 5.0.0
|
|
11559
|
-
eslint: 10.
|
|
11356
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11560
11357
|
natural-compare: 1.4.0
|
|
11561
11358
|
yaml-eslint-parser: 2.0.0
|
|
11562
11359
|
|
|
@@ -11573,9 +11370,9 @@ snapshots:
|
|
|
11573
11370
|
|
|
11574
11371
|
eslint-visitor-keys@5.0.1: {}
|
|
11575
11372
|
|
|
11576
|
-
eslint@10.
|
|
11373
|
+
eslint@10.5.0(jiti@2.7.0):
|
|
11577
11374
|
dependencies:
|
|
11578
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11375
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11579
11376
|
'@eslint-community/regexpp': 4.12.2
|
|
11580
11377
|
'@eslint/config-array': 0.23.5
|
|
11581
11378
|
'@eslint/config-helpers': 0.6.0
|
|
@@ -11668,7 +11465,7 @@ snapshots:
|
|
|
11668
11465
|
express@5.2.1(supports-color@10.2.2):
|
|
11669
11466
|
dependencies:
|
|
11670
11467
|
accepts: 2.0.0
|
|
11671
|
-
body-parser: 2.
|
|
11468
|
+
body-parser: 2.3.0(supports-color@10.2.2)
|
|
11672
11469
|
content-disposition: 1.1.0
|
|
11673
11470
|
content-type: 1.0.5
|
|
11674
11471
|
cookie: 0.7.2
|
|
@@ -12000,7 +11797,7 @@ snapshots:
|
|
|
12000
11797
|
capital-case: 1.0.4
|
|
12001
11798
|
tslib: 2.8.1
|
|
12002
11799
|
|
|
12003
|
-
hono@4.12.
|
|
11800
|
+
hono@4.12.26: {}
|
|
12004
11801
|
|
|
12005
11802
|
hookable@6.1.1: {}
|
|
12006
11803
|
|
|
@@ -12293,10 +12090,6 @@ snapshots:
|
|
|
12293
12090
|
dependencies:
|
|
12294
12091
|
argparse: 2.0.1
|
|
12295
12092
|
|
|
12296
|
-
js-yaml@4.2.0:
|
|
12297
|
-
dependencies:
|
|
12298
|
-
argparse: 2.0.1
|
|
12299
|
-
|
|
12300
12093
|
jsdoc-type-pratt-parser@7.1.1: {}
|
|
12301
12094
|
|
|
12302
12095
|
jsdoc-type-pratt-parser@7.2.0: {}
|
|
@@ -13136,27 +12929,27 @@ snapshots:
|
|
|
13136
12929
|
'@oxfmt/binding-win32-ia32-msvc': 0.45.0
|
|
13137
12930
|
'@oxfmt/binding-win32-x64-msvc': 0.45.0
|
|
13138
12931
|
|
|
13139
|
-
oxlint@1.
|
|
12932
|
+
oxlint@1.70.0:
|
|
13140
12933
|
optionalDependencies:
|
|
13141
|
-
'@oxlint/binding-android-arm-eabi': 1.
|
|
13142
|
-
'@oxlint/binding-android-arm64': 1.
|
|
13143
|
-
'@oxlint/binding-darwin-arm64': 1.
|
|
13144
|
-
'@oxlint/binding-darwin-x64': 1.
|
|
13145
|
-
'@oxlint/binding-freebsd-x64': 1.
|
|
13146
|
-
'@oxlint/binding-linux-arm-gnueabihf': 1.
|
|
13147
|
-
'@oxlint/binding-linux-arm-musleabihf': 1.
|
|
13148
|
-
'@oxlint/binding-linux-arm64-gnu': 1.
|
|
13149
|
-
'@oxlint/binding-linux-arm64-musl': 1.
|
|
13150
|
-
'@oxlint/binding-linux-ppc64-gnu': 1.
|
|
13151
|
-
'@oxlint/binding-linux-riscv64-gnu': 1.
|
|
13152
|
-
'@oxlint/binding-linux-riscv64-musl': 1.
|
|
13153
|
-
'@oxlint/binding-linux-s390x-gnu': 1.
|
|
13154
|
-
'@oxlint/binding-linux-x64-gnu': 1.
|
|
13155
|
-
'@oxlint/binding-linux-x64-musl': 1.
|
|
13156
|
-
'@oxlint/binding-openharmony-arm64': 1.
|
|
13157
|
-
'@oxlint/binding-win32-arm64-msvc': 1.
|
|
13158
|
-
'@oxlint/binding-win32-ia32-msvc': 1.
|
|
13159
|
-
'@oxlint/binding-win32-x64-msvc': 1.
|
|
12934
|
+
'@oxlint/binding-android-arm-eabi': 1.70.0
|
|
12935
|
+
'@oxlint/binding-android-arm64': 1.70.0
|
|
12936
|
+
'@oxlint/binding-darwin-arm64': 1.70.0
|
|
12937
|
+
'@oxlint/binding-darwin-x64': 1.70.0
|
|
12938
|
+
'@oxlint/binding-freebsd-x64': 1.70.0
|
|
12939
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.70.0
|
|
12940
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.70.0
|
|
12941
|
+
'@oxlint/binding-linux-arm64-gnu': 1.70.0
|
|
12942
|
+
'@oxlint/binding-linux-arm64-musl': 1.70.0
|
|
12943
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.70.0
|
|
12944
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.70.0
|
|
12945
|
+
'@oxlint/binding-linux-riscv64-musl': 1.70.0
|
|
12946
|
+
'@oxlint/binding-linux-s390x-gnu': 1.70.0
|
|
12947
|
+
'@oxlint/binding-linux-x64-gnu': 1.70.0
|
|
12948
|
+
'@oxlint/binding-linux-x64-musl': 1.70.0
|
|
12949
|
+
'@oxlint/binding-openharmony-arm64': 1.70.0
|
|
12950
|
+
'@oxlint/binding-win32-arm64-msvc': 1.70.0
|
|
12951
|
+
'@oxlint/binding-win32-ia32-msvc': 1.70.0
|
|
12952
|
+
'@oxlint/binding-win32-x64-msvc': 1.70.0
|
|
13160
12953
|
|
|
13161
12954
|
p-limit@2.3.0:
|
|
13162
12955
|
dependencies:
|
|
@@ -13369,10 +13162,10 @@ snapshots:
|
|
|
13369
13162
|
|
|
13370
13163
|
quansync@1.0.0: {}
|
|
13371
13164
|
|
|
13372
|
-
quasar-app-extension-zova@1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.
|
|
13165
|
+
quasar-app-extension-zova@1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0):
|
|
13373
13166
|
dependencies:
|
|
13374
13167
|
'@cabloy/module-info': 2.0.0
|
|
13375
|
-
'@quasar/app-vite': '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.
|
|
13168
|
+
'@quasar/app-vite': '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.19.21)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)'
|
|
13376
13169
|
chalk: 3.0.0
|
|
13377
13170
|
esbuild: 0.25.12
|
|
13378
13171
|
fs-extra: 11.3.5
|
|
@@ -13406,7 +13199,7 @@ snapshots:
|
|
|
13406
13199
|
- workbox-build
|
|
13407
13200
|
- yaml
|
|
13408
13201
|
|
|
13409
|
-
quasar@2.
|
|
13202
|
+
quasar@2.20.1: {}
|
|
13410
13203
|
|
|
13411
13204
|
queue-microtask@1.2.3: {}
|
|
13412
13205
|
|
|
@@ -13422,7 +13215,7 @@ snapshots:
|
|
|
13422
13215
|
rc-config-loader@4.1.4:
|
|
13423
13216
|
dependencies:
|
|
13424
13217
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13425
|
-
js-yaml: 4.
|
|
13218
|
+
js-yaml: 4.1.1
|
|
13426
13219
|
json5: 2.2.3
|
|
13427
13220
|
require-from-string: 2.0.2
|
|
13428
13221
|
transitivePeerDependencies:
|
|
@@ -13545,7 +13338,7 @@ snapshots:
|
|
|
13545
13338
|
glob: 13.0.6
|
|
13546
13339
|
package-json-from-dist: 1.0.1
|
|
13547
13340
|
|
|
13548
|
-
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.1.0)(typescript@5.9.3)(vue-tsc@3.3.
|
|
13341
|
+
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.1.0)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3)):
|
|
13549
13342
|
dependencies:
|
|
13550
13343
|
'@babel/generator': 8.0.0-rc.2
|
|
13551
13344
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
@@ -13560,11 +13353,11 @@ snapshots:
|
|
|
13560
13353
|
optionalDependencies:
|
|
13561
13354
|
'@typescript/native-preview': 7.0.0-dev.20260610.1
|
|
13562
13355
|
typescript: 5.9.3
|
|
13563
|
-
vue-tsc: 3.3.
|
|
13356
|
+
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13564
13357
|
transitivePeerDependencies:
|
|
13565
13358
|
- oxc-resolver
|
|
13566
13359
|
|
|
13567
|
-
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.
|
|
13360
|
+
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3)):
|
|
13568
13361
|
dependencies:
|
|
13569
13362
|
'@babel/generator': 8.0.0-rc.3
|
|
13570
13363
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
@@ -13580,7 +13373,7 @@ snapshots:
|
|
|
13580
13373
|
optionalDependencies:
|
|
13581
13374
|
'@typescript/native-preview': 7.0.0-dev.20260610.1
|
|
13582
13375
|
typescript: 5.9.3
|
|
13583
|
-
vue-tsc: 3.3.
|
|
13376
|
+
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13584
13377
|
transitivePeerDependencies:
|
|
13585
13378
|
- oxc-resolver
|
|
13586
13379
|
|
|
@@ -13647,7 +13440,7 @@ snapshots:
|
|
|
13647
13440
|
'@rolldown/binding-win32-arm64-msvc': 1.1.0
|
|
13648
13441
|
'@rolldown/binding-win32-x64-msvc': 1.1.0
|
|
13649
13442
|
|
|
13650
|
-
rollup-plugin-visualizer@7.0.1(rolldown@1.1.0)
|
|
13443
|
+
rollup-plugin-visualizer@7.0.1(rolldown@1.1.0):
|
|
13651
13444
|
dependencies:
|
|
13652
13445
|
open: 11.0.0
|
|
13653
13446
|
picomatch: 4.0.4
|
|
@@ -13655,39 +13448,6 @@ snapshots:
|
|
|
13655
13448
|
yargs: 18.0.0
|
|
13656
13449
|
optionalDependencies:
|
|
13657
13450
|
rolldown: 1.1.0
|
|
13658
|
-
rollup: 4.61.1
|
|
13659
|
-
|
|
13660
|
-
rollup@4.61.1:
|
|
13661
|
-
dependencies:
|
|
13662
|
-
'@types/estree': 1.0.9
|
|
13663
|
-
optionalDependencies:
|
|
13664
|
-
'@rollup/rollup-android-arm-eabi': 4.61.1
|
|
13665
|
-
'@rollup/rollup-android-arm64': 4.61.1
|
|
13666
|
-
'@rollup/rollup-darwin-arm64': 4.61.1
|
|
13667
|
-
'@rollup/rollup-darwin-x64': 4.61.1
|
|
13668
|
-
'@rollup/rollup-freebsd-arm64': 4.61.1
|
|
13669
|
-
'@rollup/rollup-freebsd-x64': 4.61.1
|
|
13670
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.61.1
|
|
13671
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.61.1
|
|
13672
|
-
'@rollup/rollup-linux-arm64-gnu': 4.61.1
|
|
13673
|
-
'@rollup/rollup-linux-arm64-musl': 4.61.1
|
|
13674
|
-
'@rollup/rollup-linux-loong64-gnu': 4.61.1
|
|
13675
|
-
'@rollup/rollup-linux-loong64-musl': 4.61.1
|
|
13676
|
-
'@rollup/rollup-linux-ppc64-gnu': 4.61.1
|
|
13677
|
-
'@rollup/rollup-linux-ppc64-musl': 4.61.1
|
|
13678
|
-
'@rollup/rollup-linux-riscv64-gnu': 4.61.1
|
|
13679
|
-
'@rollup/rollup-linux-riscv64-musl': 4.61.1
|
|
13680
|
-
'@rollup/rollup-linux-s390x-gnu': 4.61.1
|
|
13681
|
-
'@rollup/rollup-linux-x64-gnu': 4.61.1
|
|
13682
|
-
'@rollup/rollup-linux-x64-musl': 4.61.1
|
|
13683
|
-
'@rollup/rollup-openbsd-x64': 4.61.1
|
|
13684
|
-
'@rollup/rollup-openharmony-arm64': 4.61.1
|
|
13685
|
-
'@rollup/rollup-win32-arm64-msvc': 4.61.1
|
|
13686
|
-
'@rollup/rollup-win32-ia32-msvc': 4.61.1
|
|
13687
|
-
'@rollup/rollup-win32-x64-gnu': 4.61.1
|
|
13688
|
-
'@rollup/rollup-win32-x64-msvc': 4.61.1
|
|
13689
|
-
fsevents: 2.3.3
|
|
13690
|
-
optional: true
|
|
13691
13451
|
|
|
13692
13452
|
router@2.2.0(supports-color@10.2.2):
|
|
13693
13453
|
dependencies:
|
|
@@ -13868,7 +13628,7 @@ snapshots:
|
|
|
13868
13628
|
tslib: 2.8.1
|
|
13869
13629
|
upper-case-first: 2.0.2
|
|
13870
13630
|
|
|
13871
|
-
serialize-javascript@7.0.
|
|
13631
|
+
serialize-javascript@7.0.6: {}
|
|
13872
13632
|
|
|
13873
13633
|
serve-static@2.2.1:
|
|
13874
13634
|
dependencies:
|
|
@@ -14001,7 +13761,7 @@ snapshots:
|
|
|
14001
13761
|
|
|
14002
13762
|
streamifier@0.1.1: {}
|
|
14003
13763
|
|
|
14004
|
-
streamx@2.
|
|
13764
|
+
streamx@2.28.0:
|
|
14005
13765
|
dependencies:
|
|
14006
13766
|
events-universal: 1.0.1
|
|
14007
13767
|
fast-fifo: 1.3.2
|
|
@@ -14104,7 +13864,7 @@ snapshots:
|
|
|
14104
13864
|
|
|
14105
13865
|
tagged-tag@1.0.0: {}
|
|
14106
13866
|
|
|
14107
|
-
tailwindcss@4.3.
|
|
13867
|
+
tailwindcss@4.3.1: {}
|
|
14108
13868
|
|
|
14109
13869
|
tapable@2.3.3: {}
|
|
14110
13870
|
|
|
@@ -14123,7 +13883,7 @@ snapshots:
|
|
|
14123
13883
|
b4a: 1.8.1
|
|
14124
13884
|
bare-fs: 4.7.2
|
|
14125
13885
|
fast-fifo: 1.3.2
|
|
14126
|
-
streamx: 2.
|
|
13886
|
+
streamx: 2.28.0
|
|
14127
13887
|
transitivePeerDependencies:
|
|
14128
13888
|
- bare-abort-controller
|
|
14129
13889
|
- bare-buffer
|
|
@@ -14131,7 +13891,7 @@ snapshots:
|
|
|
14131
13891
|
|
|
14132
13892
|
teex@1.0.1:
|
|
14133
13893
|
dependencies:
|
|
14134
|
-
streamx: 2.
|
|
13894
|
+
streamx: 2.28.0
|
|
14135
13895
|
transitivePeerDependencies:
|
|
14136
13896
|
- bare-abort-controller
|
|
14137
13897
|
- react-native-b4a
|
|
@@ -14252,7 +14012,7 @@ snapshots:
|
|
|
14252
14012
|
optionalDependencies:
|
|
14253
14013
|
typescript: 5.9.3
|
|
14254
14014
|
|
|
14255
|
-
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.20260610.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.
|
|
14015
|
+
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.20260610.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3)):
|
|
14256
14016
|
dependencies:
|
|
14257
14017
|
ansis: 4.3.1
|
|
14258
14018
|
cac: 7.0.0
|
|
@@ -14263,7 +14023,7 @@ snapshots:
|
|
|
14263
14023
|
obug: 2.1.2
|
|
14264
14024
|
picomatch: 4.0.4
|
|
14265
14025
|
rolldown: 1.0.0-rc.17
|
|
14266
|
-
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.
|
|
14026
|
+
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260610.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3))
|
|
14267
14027
|
semver: 7.8.4
|
|
14268
14028
|
tinyexec: 1.2.4
|
|
14269
14029
|
tinyglobby: 0.2.17
|
|
@@ -14305,13 +14065,13 @@ snapshots:
|
|
|
14305
14065
|
es-errors: 1.3.0
|
|
14306
14066
|
is-typed-array: 1.1.15
|
|
14307
14067
|
|
|
14308
|
-
typescript-eslint@8.61.
|
|
14068
|
+
typescript-eslint@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3):
|
|
14309
14069
|
dependencies:
|
|
14310
|
-
'@typescript-eslint/eslint-plugin': 8.61.
|
|
14311
|
-
'@typescript-eslint/parser': 8.61.
|
|
14312
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
14313
|
-
'@typescript-eslint/utils': 8.61.
|
|
14314
|
-
eslint: 10.
|
|
14070
|
+
'@typescript-eslint/eslint-plugin': 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14071
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
14072
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
14073
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14074
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
14315
14075
|
typescript: 5.9.3
|
|
14316
14076
|
transitivePeerDependencies:
|
|
14317
14077
|
- supports-color
|
|
@@ -14459,10 +14219,10 @@ snapshots:
|
|
|
14459
14219
|
unist-util-stringify-position: 2.0.3
|
|
14460
14220
|
vfile-message: 2.0.4
|
|
14461
14221
|
|
|
14462
|
-
vite-plugin-devtools-json@1.0.0(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
14222
|
+
vite-plugin-devtools-json@1.0.0(vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)):
|
|
14463
14223
|
dependencies:
|
|
14464
14224
|
uuid: 11.1.1
|
|
14465
|
-
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.
|
|
14225
|
+
vite: 8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
14466
14226
|
|
|
14467
14227
|
vite-plugin-fake-server-turbo@3.0.18:
|
|
14468
14228
|
dependencies:
|
|
@@ -14474,23 +14234,6 @@ snapshots:
|
|
|
14474
14234
|
path-to-regexp: 8.4.2
|
|
14475
14235
|
picocolors: 1.1.1
|
|
14476
14236
|
|
|
14477
|
-
vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(yaml@2.9.0):
|
|
14478
|
-
dependencies:
|
|
14479
|
-
lightningcss: 1.32.0
|
|
14480
|
-
picomatch: 4.0.4
|
|
14481
|
-
postcss: 8.5.15
|
|
14482
|
-
rolldown: 1.0.3
|
|
14483
|
-
tinyglobby: 0.2.17
|
|
14484
|
-
optionalDependencies:
|
|
14485
|
-
'@types/node': 22.19.21
|
|
14486
|
-
esbuild: 0.25.12
|
|
14487
|
-
fsevents: 2.3.3
|
|
14488
|
-
jiti: 2.7.0
|
|
14489
|
-
sass: 1.100.0
|
|
14490
|
-
sass-embedded: 1.100.0
|
|
14491
|
-
terser: 5.48.0
|
|
14492
|
-
yaml: 2.9.0
|
|
14493
|
-
|
|
14494
14237
|
vite@8.0.16(@types/node@22.19.21)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0):
|
|
14495
14238
|
dependencies:
|
|
14496
14239
|
lightningcss: 1.32.0
|
|
@@ -14508,23 +14251,6 @@ snapshots:
|
|
|
14508
14251
|
terser: 5.48.0
|
|
14509
14252
|
yaml: 2.9.0
|
|
14510
14253
|
|
|
14511
|
-
vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(yaml@2.9.0):
|
|
14512
|
-
dependencies:
|
|
14513
|
-
lightningcss: 1.32.0
|
|
14514
|
-
picomatch: 4.0.4
|
|
14515
|
-
postcss: 8.5.15
|
|
14516
|
-
rolldown: 1.0.3
|
|
14517
|
-
tinyglobby: 0.2.17
|
|
14518
|
-
optionalDependencies:
|
|
14519
|
-
'@types/node': 22.19.21
|
|
14520
|
-
esbuild: 0.27.7
|
|
14521
|
-
fsevents: 2.3.3
|
|
14522
|
-
jiti: 2.7.0
|
|
14523
|
-
sass: 1.100.0
|
|
14524
|
-
sass-embedded: 1.100.0
|
|
14525
|
-
terser: 5.48.0
|
|
14526
|
-
yaml: 2.9.0
|
|
14527
|
-
|
|
14528
14254
|
vite@8.0.16(@types/node@22.19.21)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0):
|
|
14529
14255
|
dependencies:
|
|
14530
14256
|
lightningcss: 1.32.0
|
|
@@ -14548,10 +14274,10 @@ snapshots:
|
|
|
14548
14274
|
dependencies:
|
|
14549
14275
|
vue: 3.5.38(typescript@5.9.3)
|
|
14550
14276
|
|
|
14551
|
-
vue-eslint-parser@10.4.1(eslint@10.
|
|
14277
|
+
vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)):
|
|
14552
14278
|
dependencies:
|
|
14553
14279
|
debug: 4.4.3(supports-color@10.2.2)
|
|
14554
|
-
eslint: 10.
|
|
14280
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
14555
14281
|
eslint-scope: 9.1.2
|
|
14556
14282
|
eslint-visitor-keys: 5.0.1
|
|
14557
14283
|
espree: 11.2.0
|
|
@@ -14564,10 +14290,10 @@ snapshots:
|
|
|
14564
14290
|
dependencies:
|
|
14565
14291
|
vue: 3.5.38(typescript@5.9.3)
|
|
14566
14292
|
|
|
14567
|
-
vue-tsc@3.3.
|
|
14293
|
+
vue-tsc@3.3.5(typescript@5.9.3):
|
|
14568
14294
|
dependencies:
|
|
14569
14295
|
'@volar/typescript': 2.4.28
|
|
14570
|
-
'@vue/language-core': 3.3.
|
|
14296
|
+
'@vue/language-core': 3.3.5
|
|
14571
14297
|
typescript: 5.9.3
|
|
14572
14298
|
|
|
14573
14299
|
vue3-browser-compiler-yx@1.0.4(vue@3.5.38(typescript@5.9.3)):
|