cabloy 5.1.61 → 5.1.63
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 +55 -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 +27 -30
- 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 +571 -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 +423 -682
- package/zova/src/suite/a-demo/modules/demo-basic/src/page/toolOne/render.tsx +5 -3
- package/zova/src/suite/a-home/modules/home-login/src/page/login/render.tsx +5 -3
- 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 +57 -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 +53 -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-app/package.json +60 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/.metadata/index.ts +137 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/.metadata/locales.ts +7 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/.metadata/this.ts +2 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/bean/behavior.appModal.tsx +260 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/config/config.ts +39 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/config/locale/en-us.ts +7 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/config/locale/zh-cn.ts +7 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/index.ts +4 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/lib/appModalItem.ts +16 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/lib/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/monkey.ts +38 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/monkeySys.ts +14 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/service/appModal.ts +89 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/types/appModal.ts +52 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/types/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/tsconfig.build.json +13 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/tsconfig.json +5 -0
- package/zova/src/suite/cabloy-basic/modules/basic-commands/package.json +6 -1
- package/zova/src/suite/cabloy-basic/modules/basic-commands/src/.metadata/index.ts +16 -0
- package/zova/src/suite/cabloy-basic/modules/basic-commands/src/bean/command.alert.tsx +8 -14
- package/zova/src/suite/cabloy-basic/modules/basic-commands/src/bean/command.confirm.tsx +10 -7
- package/zova/src/suite/cabloy-basic/modules/basic-commands/src/bean/command.prompt.tsx +30 -0
- package/zova/src/suite/cabloy-basic/modules/basic-pageentry/src/component/blockForm/controller.tsx +5 -3
- 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/cabloy-basic/modules/basic-table/package.json +6 -1
- package/zova/src/suite/cabloy-basic/modules/basic-table/src/bean/tableCell.actionDelete.tsx +4 -2
- package/zova/src/suite/cabloy-basic/package.json +1 -0
- 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
|
|
@@ -213,6 +213,9 @@ importers:
|
|
|
213
213
|
zova-module-basic-adapter:
|
|
214
214
|
specifier: workspace:^
|
|
215
215
|
version: link:src/suite/cabloy-basic/modules/basic-adapter
|
|
216
|
+
zova-module-basic-app:
|
|
217
|
+
specifier: workspace:^
|
|
218
|
+
version: link:src/suite/cabloy-basic/modules/basic-app
|
|
216
219
|
zova-module-basic-captcha:
|
|
217
220
|
specifier: workspace:^
|
|
218
221
|
version: link:src/suite/cabloy-basic/modules/basic-captcha
|
|
@@ -294,19 +297,22 @@ importers:
|
|
|
294
297
|
zova-module-rest-resource:
|
|
295
298
|
specifier: workspace:^
|
|
296
299
|
version: link:src/suite-vendor/a-cabloy/modules/rest-resource
|
|
300
|
+
zova-module-training-student:
|
|
301
|
+
specifier: workspace:^
|
|
302
|
+
version: link:src/suite/a-training/modules/training-student
|
|
297
303
|
devDependencies:
|
|
298
304
|
'@cabloy/cli':
|
|
299
305
|
specifier: ^3.1.18
|
|
300
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
306
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
301
307
|
'@cabloy/lint':
|
|
302
308
|
specifier: ^5.1.27
|
|
303
|
-
version: 5.1.
|
|
309
|
+
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
310
|
'@cabloy/openapi-typescript':
|
|
305
311
|
specifier: ^7.9.2
|
|
306
312
|
version: 7.9.2(typescript@5.9.3)
|
|
307
313
|
'@quasar/app-vite':
|
|
308
314
|
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.
|
|
315
|
+
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
316
|
'@types/luxon':
|
|
311
317
|
specifier: ^3.7.1
|
|
312
318
|
version: 3.7.1
|
|
@@ -327,10 +333,10 @@ importers:
|
|
|
327
333
|
version: 0.45.0
|
|
328
334
|
oxlint:
|
|
329
335
|
specifier: ^1.65.0
|
|
330
|
-
version: 1.
|
|
336
|
+
version: 1.70.0
|
|
331
337
|
quasar-app-extension-zova:
|
|
332
338
|
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.
|
|
339
|
+
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
340
|
sass:
|
|
335
341
|
specifier: ^1.101.0
|
|
336
342
|
version: 1.101.0
|
|
@@ -360,7 +366,7 @@ importers:
|
|
|
360
366
|
version: 3.0.18
|
|
361
367
|
vue-tsc:
|
|
362
368
|
specifier: ^3.3.1
|
|
363
|
-
version: 3.3.
|
|
369
|
+
version: 3.3.5(typescript@5.9.3)
|
|
364
370
|
zova-openapi:
|
|
365
371
|
specifier: ^1.1.17
|
|
366
372
|
version: link:packages-utils/zova-openapi
|
|
@@ -372,7 +378,7 @@ importers:
|
|
|
372
378
|
dependencies:
|
|
373
379
|
'@cabloy/cli':
|
|
374
380
|
specifier: ^3.1.18
|
|
375
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
381
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
376
382
|
'@cabloy/process-helper':
|
|
377
383
|
specifier: ^3.1.8
|
|
378
384
|
version: 3.1.8
|
|
@@ -383,7 +389,7 @@ importers:
|
|
|
383
389
|
specifier: ^7.6.2
|
|
384
390
|
version: 7.8.4
|
|
385
391
|
zova-cli-set-front:
|
|
386
|
-
specifier: ^1.2.
|
|
392
|
+
specifier: ^1.2.78
|
|
387
393
|
version: link:../cli-set-front
|
|
388
394
|
devDependencies:
|
|
389
395
|
clean-package:
|
|
@@ -406,7 +412,7 @@ importers:
|
|
|
406
412
|
version: 7.29.7(@babel/core@7.29.7)
|
|
407
413
|
'@cabloy/cli':
|
|
408
414
|
specifier: ^3.1.18
|
|
409
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
415
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
410
416
|
'@cabloy/extend':
|
|
411
417
|
specifier: ^3.2.8
|
|
412
418
|
version: 3.2.8
|
|
@@ -421,7 +427,7 @@ importers:
|
|
|
421
427
|
version: 2.1.22
|
|
422
428
|
'@cabloy/vite-plugin-babel':
|
|
423
429
|
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.
|
|
430
|
+
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
431
|
'@cabloy/vue-babel-plugin-jsx':
|
|
426
432
|
specifier: ^2.0.1
|
|
427
433
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -433,7 +439,7 @@ importers:
|
|
|
433
439
|
version: 7.0.0-dev.20260610.1
|
|
434
440
|
'@vitejs/plugin-vue-jsx':
|
|
435
441
|
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.
|
|
442
|
+
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
443
|
babel-plugin-transform-typescript-metadata:
|
|
438
444
|
specifier: ^0.4.0
|
|
439
445
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -469,13 +475,13 @@ importers:
|
|
|
469
475
|
version: 1.1.0
|
|
470
476
|
rolldown-plugin-dts:
|
|
471
477
|
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.
|
|
478
|
+
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
479
|
svgo:
|
|
474
480
|
specifier: ^3.2.0
|
|
475
481
|
version: 3.3.3
|
|
476
482
|
tsdown:
|
|
477
483
|
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.
|
|
484
|
+
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
485
|
typescript:
|
|
480
486
|
specifier: ^5.9.3
|
|
481
487
|
version: 5.9.3
|
|
@@ -484,7 +490,7 @@ importers:
|
|
|
484
490
|
version: 4.9.0
|
|
485
491
|
vite:
|
|
486
492
|
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.
|
|
493
|
+
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
494
|
yaml:
|
|
489
495
|
specifier: ^2.8.3
|
|
490
496
|
version: 2.9.0
|
|
@@ -708,7 +714,7 @@ importers:
|
|
|
708
714
|
version: 2.0.0
|
|
709
715
|
'@cabloy/vite-plugin-babel':
|
|
710
716
|
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.
|
|
717
|
+
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
718
|
'@cabloy/vue-babel-plugin-jsx':
|
|
713
719
|
specifier: ^2.0.1
|
|
714
720
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -738,7 +744,7 @@ importers:
|
|
|
738
744
|
version: 22.19.21
|
|
739
745
|
'@vitejs/plugin-vue-jsx':
|
|
740
746
|
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.
|
|
747
|
+
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
748
|
babel-plugin-transform-typescript-metadata:
|
|
743
749
|
specifier: ^0.4.0
|
|
744
750
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -777,10 +783,10 @@ importers:
|
|
|
777
783
|
version: 0.2.7
|
|
778
784
|
vite:
|
|
779
785
|
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.
|
|
786
|
+
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
787
|
vite-plugin-devtools-json:
|
|
782
788
|
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.
|
|
789
|
+
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
790
|
vite-plugin-fake-server-turbo:
|
|
785
791
|
specifier: ^3.0.18
|
|
786
792
|
version: 3.0.18
|
|
@@ -804,7 +810,7 @@ importers:
|
|
|
804
810
|
specifier: ^5.1.57
|
|
805
811
|
version: link:../zova-core
|
|
806
812
|
zova-suite-a-zova:
|
|
807
|
-
specifier: ^5.1.
|
|
813
|
+
specifier: ^5.1.103
|
|
808
814
|
version: link:../../src/suite-vendor/a-zova
|
|
809
815
|
devDependencies:
|
|
810
816
|
clean-package:
|
|
@@ -897,7 +903,7 @@ importers:
|
|
|
897
903
|
version: 6.1.3
|
|
898
904
|
vite:
|
|
899
905
|
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.
|
|
906
|
+
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
907
|
|
|
902
908
|
src/suite-vendor/a-cabloy:
|
|
903
909
|
dependencies:
|
|
@@ -983,7 +989,7 @@ importers:
|
|
|
983
989
|
specifier: ^5.1.29
|
|
984
990
|
version: link:modules/a-style
|
|
985
991
|
zova-module-a-table:
|
|
986
|
-
specifier: ^5.1.
|
|
992
|
+
specifier: ^5.1.32
|
|
987
993
|
version: link:modules/a-table
|
|
988
994
|
zova-module-a-zod:
|
|
989
995
|
specifier: ^5.1.30
|
|
@@ -1333,7 +1339,7 @@ importers:
|
|
|
1333
1339
|
devDependencies:
|
|
1334
1340
|
'@cabloy/cli':
|
|
1335
1341
|
specifier: ^3.1.18
|
|
1336
|
-
version: 3.1.18(vue@3.5.38(typescript@5.9.3))
|
|
1342
|
+
version: 3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
1337
1343
|
'@types/luxon':
|
|
1338
1344
|
specifier: ^3.7.1
|
|
1339
1345
|
version: 3.7.1
|
|
@@ -1527,11 +1533,29 @@ importers:
|
|
|
1527
1533
|
specifier: ^6.1.3
|
|
1528
1534
|
version: 6.1.3
|
|
1529
1535
|
|
|
1536
|
+
src/suite/a-training:
|
|
1537
|
+
dependencies:
|
|
1538
|
+
zova-module-training-student:
|
|
1539
|
+
specifier: ^5.0.0
|
|
1540
|
+
version: link:modules/training-student
|
|
1541
|
+
|
|
1542
|
+
src/suite/a-training/modules/training-student:
|
|
1543
|
+
devDependencies:
|
|
1544
|
+
clean-package:
|
|
1545
|
+
specifier: ^2.2.0
|
|
1546
|
+
version: 2.2.0
|
|
1547
|
+
rimraf:
|
|
1548
|
+
specifier: ^6.1.3
|
|
1549
|
+
version: 6.1.3
|
|
1550
|
+
|
|
1530
1551
|
src/suite/cabloy-basic:
|
|
1531
1552
|
dependencies:
|
|
1532
1553
|
zova-module-basic-adapter:
|
|
1533
1554
|
specifier: ^5.0.5
|
|
1534
1555
|
version: link:modules/basic-adapter
|
|
1556
|
+
zova-module-basic-app:
|
|
1557
|
+
specifier: ^5.0.0
|
|
1558
|
+
version: link:modules/basic-app
|
|
1535
1559
|
zova-module-basic-captcha:
|
|
1536
1560
|
specifier: ^5.0.8
|
|
1537
1561
|
version: link:modules/basic-captcha
|
|
@@ -1581,6 +1605,15 @@ importers:
|
|
|
1581
1605
|
specifier: ^6.1.3
|
|
1582
1606
|
version: 6.1.3
|
|
1583
1607
|
|
|
1608
|
+
src/suite/cabloy-basic/modules/basic-app:
|
|
1609
|
+
devDependencies:
|
|
1610
|
+
clean-package:
|
|
1611
|
+
specifier: ^2.2.0
|
|
1612
|
+
version: 2.2.0
|
|
1613
|
+
rimraf:
|
|
1614
|
+
specifier: ^6.1.3
|
|
1615
|
+
version: 6.1.3
|
|
1616
|
+
|
|
1584
1617
|
src/suite/cabloy-basic/modules/basic-captcha:
|
|
1585
1618
|
devDependencies:
|
|
1586
1619
|
clean-package:
|
|
@@ -1907,8 +1940,8 @@ packages:
|
|
|
1907
1940
|
'@cabloy/json5@1.1.9':
|
|
1908
1941
|
resolution: {integrity: sha512-jV0WqPaTuLOw5UvFWOVD/1HNaWHKABs8Xd652C7jq7vhKPZsKzBy5de+Az4kd3jgn4JxaPLJgVTID/svynAzFA==}
|
|
1909
1942
|
|
|
1910
|
-
'@cabloy/lint@5.1.
|
|
1911
|
-
resolution: {integrity: sha512-
|
|
1943
|
+
'@cabloy/lint@5.1.30':
|
|
1944
|
+
resolution: {integrity: sha512-j7PokkRKdDpFjn0eTeFizgdYzb5WiXc0S/+s6BQ0Tzy2L5v+NHzTwE8itZ1JR6aiCWBDwTwzHZzj7lHhZ9fLMw==}
|
|
1912
1945
|
peerDependencies:
|
|
1913
1946
|
oxfmt: '>=0.45.0'
|
|
1914
1947
|
oxlint: '>=1.65.0'
|
|
@@ -3258,124 +3291,124 @@ packages:
|
|
|
3258
3291
|
cpu: [x64]
|
|
3259
3292
|
os: [win32]
|
|
3260
3293
|
|
|
3261
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
3262
|
-
resolution: {integrity: sha512-
|
|
3294
|
+
'@oxlint/binding-android-arm-eabi@1.70.0':
|
|
3295
|
+
resolution: {integrity: sha512-zFh0P4cswmRvw6nkyb89dr18rRanuaCPAsEXsFDoQY8WdaquI8Pt4NWFjaMJg6L23cy5NeN8J9cBnREbWzZhaw==}
|
|
3263
3296
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3264
3297
|
cpu: [arm]
|
|
3265
3298
|
os: [android]
|
|
3266
3299
|
|
|
3267
|
-
'@oxlint/binding-android-arm64@1.
|
|
3268
|
-
resolution: {integrity: sha512-
|
|
3300
|
+
'@oxlint/binding-android-arm64@1.70.0':
|
|
3301
|
+
resolution: {integrity: sha512-qI8o4HZjeGiBrWv+pJv4lH0Yi2Gl/JSp/EumBUApezJprIKa5PS4nU0lQsQngtky8k+SplQIOjv6hwu0SSxeyg==}
|
|
3269
3302
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3270
3303
|
cpu: [arm64]
|
|
3271
3304
|
os: [android]
|
|
3272
3305
|
|
|
3273
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
3274
|
-
resolution: {integrity: sha512-
|
|
3306
|
+
'@oxlint/binding-darwin-arm64@1.70.0':
|
|
3307
|
+
resolution: {integrity: sha512-8KjgVVHI5F9nVwHCRwwA78Ty7zNKP4Wd9OeN5PSv3iu/F/u1RVXoOCgLhWqust6HmwQG6xc8c+RCyaWENy24+w==}
|
|
3275
3308
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3276
3309
|
cpu: [arm64]
|
|
3277
3310
|
os: [darwin]
|
|
3278
3311
|
|
|
3279
|
-
'@oxlint/binding-darwin-x64@1.
|
|
3280
|
-
resolution: {integrity: sha512-
|
|
3312
|
+
'@oxlint/binding-darwin-x64@1.70.0':
|
|
3313
|
+
resolution: {integrity: sha512-WVydssv5PSUBXFJTdNBWlmGkbNmvPGaFt/2SUT/EZRB6bq6bEOHmMlbnupZD5jmlEvi9+mZJHi8TCw15lyfSfQ==}
|
|
3281
3314
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3282
3315
|
cpu: [x64]
|
|
3283
3316
|
os: [darwin]
|
|
3284
3317
|
|
|
3285
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
3286
|
-
resolution: {integrity: sha512-
|
|
3318
|
+
'@oxlint/binding-freebsd-x64@1.70.0':
|
|
3319
|
+
resolution: {integrity: sha512-hJucmUf8OlinHNb1R7fI4Fw6WsAstOz7i8nmkWQfiHoZXtbufNm+MxiDTIMk1ggh2Ro4vLzgQ+bKvRY54MZoRA==}
|
|
3287
3320
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3288
3321
|
cpu: [x64]
|
|
3289
3322
|
os: [freebsd]
|
|
3290
3323
|
|
|
3291
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
3292
|
-
resolution: {integrity: sha512-
|
|
3324
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.70.0':
|
|
3325
|
+
resolution: {integrity: sha512-1BnS7wbCYDSXwWzJJ+mc3NURoha6m6m6RT5c6vgAY3oz7C3OVXP+S0awo2mRq97arrJkVvO3qRQfyAHL+76xtQ==}
|
|
3293
3326
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3294
3327
|
cpu: [arm]
|
|
3295
3328
|
os: [linux]
|
|
3296
3329
|
|
|
3297
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
3298
|
-
resolution: {integrity: sha512-
|
|
3330
|
+
'@oxlint/binding-linux-arm-musleabihf@1.70.0':
|
|
3331
|
+
resolution: {integrity: sha512-yKy/UdbR55+M2yEcuiV5DCNC/gdQAjr/GioUy50QwBzSrKm8ueWADqyRLS9Xk+qjNeCYGg6A8FvUBds56ttfqg==}
|
|
3299
3332
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3300
3333
|
cpu: [arm]
|
|
3301
3334
|
os: [linux]
|
|
3302
3335
|
|
|
3303
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
3304
|
-
resolution: {integrity: sha512-
|
|
3336
|
+
'@oxlint/binding-linux-arm64-gnu@1.70.0':
|
|
3337
|
+
resolution: {integrity: sha512-0A5XJ4alvmqFUFP/4oYSyaO+qLto/HrKEWTSaegiVl+HOufFngK2BjYw9x4RbwBt/du5QG6l5q1zeWiJYYG5yg==}
|
|
3305
3338
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3306
3339
|
cpu: [arm64]
|
|
3307
3340
|
os: [linux]
|
|
3308
3341
|
libc: [glibc]
|
|
3309
3342
|
|
|
3310
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
3311
|
-
resolution: {integrity: sha512-
|
|
3343
|
+
'@oxlint/binding-linux-arm64-musl@1.70.0':
|
|
3344
|
+
resolution: {integrity: sha512-JiylyurlB0CLSedNtx1gzv3FvfWPF1h/2Y3BJszPLNt5XQFlBsH5ke0Jle3iJb3uqu5m2e7A/DwzpuCAHdiU+A==}
|
|
3312
3345
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3313
3346
|
cpu: [arm64]
|
|
3314
3347
|
os: [linux]
|
|
3315
3348
|
libc: [musl]
|
|
3316
3349
|
|
|
3317
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
3318
|
-
resolution: {integrity: sha512-
|
|
3350
|
+
'@oxlint/binding-linux-ppc64-gnu@1.70.0':
|
|
3351
|
+
resolution: {integrity: sha512-J8VPG7I3/HmgaU4u8pNU2kFx2+0U+vPLS1dXFxXOaR/2TQ0f8AC7DRz0SRGRI1bfphnX2hVYTTtLuhL4nYKL+Q==}
|
|
3319
3352
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3320
3353
|
cpu: [ppc64]
|
|
3321
3354
|
os: [linux]
|
|
3322
3355
|
libc: [glibc]
|
|
3323
3356
|
|
|
3324
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
3325
|
-
resolution: {integrity: sha512-
|
|
3357
|
+
'@oxlint/binding-linux-riscv64-gnu@1.70.0':
|
|
3358
|
+
resolution: {integrity: sha512-N2+4lV2KLN+oXTIIIwmWDhwkrnvqf5oX7Hw0zPjk+RuIVgiBQSOlJWF7uQoFx2siEYX0ZQ5cfSbEAHm+J3t7Wg==}
|
|
3326
3359
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3327
3360
|
cpu: [riscv64]
|
|
3328
3361
|
os: [linux]
|
|
3329
3362
|
libc: [glibc]
|
|
3330
3363
|
|
|
3331
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
3332
|
-
resolution: {integrity: sha512-
|
|
3364
|
+
'@oxlint/binding-linux-riscv64-musl@1.70.0':
|
|
3365
|
+
resolution: {integrity: sha512-1e2L7cFCvx9QDzq6NPP+0tABKb5z6nWHyddWTNKprEsjO9xNrAtPowuCGpjNXxkTdsMiZ4jc8YQ5SstZd4XK6g==}
|
|
3333
3366
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3334
3367
|
cpu: [riscv64]
|
|
3335
3368
|
os: [linux]
|
|
3336
3369
|
libc: [musl]
|
|
3337
3370
|
|
|
3338
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
3339
|
-
resolution: {integrity: sha512-
|
|
3371
|
+
'@oxlint/binding-linux-s390x-gnu@1.70.0':
|
|
3372
|
+
resolution: {integrity: sha512-Kwu/l/8GcYibCWA9m9N5pRXMIKVSsL/YbgpLzYkqDhWTiqdRfnNJ/+nqIKRKQiFbHWsdlHEhzMwruJK+qcEruA==}
|
|
3340
3373
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3341
3374
|
cpu: [s390x]
|
|
3342
3375
|
os: [linux]
|
|
3343
3376
|
libc: [glibc]
|
|
3344
3377
|
|
|
3345
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
3346
|
-
resolution: {integrity: sha512-
|
|
3378
|
+
'@oxlint/binding-linux-x64-gnu@1.70.0':
|
|
3379
|
+
resolution: {integrity: sha512-tap04CsHYOl0nSAQJfPNIuBxqEPB2HnhQqwaOXLg1jnp2XfRo8Fa814dA4QC4zpvTWXCjAAaCY1W5LOORkEQuQ==}
|
|
3347
3380
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3348
3381
|
cpu: [x64]
|
|
3349
3382
|
os: [linux]
|
|
3350
3383
|
libc: [glibc]
|
|
3351
3384
|
|
|
3352
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
3353
|
-
resolution: {integrity: sha512-
|
|
3385
|
+
'@oxlint/binding-linux-x64-musl@1.70.0':
|
|
3386
|
+
resolution: {integrity: sha512-hzJa/WgvtJpbBD9rgfy0qe+MjbxOXNUT0bfR1S6EQQzfTtBFA9xg5q8KSwRrQ2QfSS+TaP4j+4mVPQrfNc6UNg==}
|
|
3354
3387
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3355
3388
|
cpu: [x64]
|
|
3356
3389
|
os: [linux]
|
|
3357
3390
|
libc: [musl]
|
|
3358
3391
|
|
|
3359
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
3360
|
-
resolution: {integrity: sha512-
|
|
3392
|
+
'@oxlint/binding-openharmony-arm64@1.70.0':
|
|
3393
|
+
resolution: {integrity: sha512-xbsaNSNzVSnaJACCUYr1HQMyY/Q/Q1LkePmHG3UvZPvGCYGNxrsZp9OmtA6ick8xH47ltRRbRrPCM1YXYcyC+A==}
|
|
3361
3394
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3362
3395
|
cpu: [arm64]
|
|
3363
3396
|
os: [openharmony]
|
|
3364
3397
|
|
|
3365
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
3366
|
-
resolution: {integrity: sha512-
|
|
3398
|
+
'@oxlint/binding-win32-arm64-msvc@1.70.0':
|
|
3399
|
+
resolution: {integrity: sha512-icAEsUI7JbW1TMRdEXV83mVAInhRVQYuuAlPpxdGwJ95chNdnCzjloRW8GglT0WvzOEZSio6fnYSk2DJ2Hv7LQ==}
|
|
3367
3400
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3368
3401
|
cpu: [arm64]
|
|
3369
3402
|
os: [win32]
|
|
3370
3403
|
|
|
3371
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
3372
|
-
resolution: {integrity: sha512-
|
|
3404
|
+
'@oxlint/binding-win32-ia32-msvc@1.70.0':
|
|
3405
|
+
resolution: {integrity: sha512-FHMSWbVsPVs/f+Jcl04ws4JJ2wUnauyTzlpxWRG/lSO/8GpX08Fo2gQZqdA6CrRFI+zvkxl+N/KwJGWfUwYVZA==}
|
|
3373
3406
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3374
3407
|
cpu: [ia32]
|
|
3375
3408
|
os: [win32]
|
|
3376
3409
|
|
|
3377
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
3378
|
-
resolution: {integrity: sha512-
|
|
3410
|
+
'@oxlint/binding-win32-x64-msvc@1.70.0':
|
|
3411
|
+
resolution: {integrity: sha512-ptOlKwCz7n4AKs5VweMqG6DAg677FmKOK+vBkkL9DMNgFATIQ+upqUYBTOEwRQyRAx1ncGlPlXleV2hIcm3z4g==}
|
|
3379
3412
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3380
3413
|
cpu: [x64]
|
|
3381
3414
|
os: [win32]
|
|
@@ -3788,144 +3821,6 @@ packages:
|
|
|
3788
3821
|
'@rolldown/pluginutils@1.0.1':
|
|
3789
3822
|
resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
|
|
3790
3823
|
|
|
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
3824
|
'@sindresorhus/merge-streams@2.3.0':
|
|
3930
3825
|
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
|
|
3931
3826
|
engines: {node: '>=18'}
|
|
@@ -3940,69 +3835,69 @@ packages:
|
|
|
3940
3835
|
peerDependencies:
|
|
3941
3836
|
eslint: ^9.0.0 || ^10.0.0
|
|
3942
3837
|
|
|
3943
|
-
'@tailwindcss/node@4.3.
|
|
3944
|
-
resolution: {integrity: sha512-
|
|
3838
|
+
'@tailwindcss/node@4.3.1':
|
|
3839
|
+
resolution: {integrity: sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==}
|
|
3945
3840
|
|
|
3946
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
3947
|
-
resolution: {integrity: sha512-
|
|
3841
|
+
'@tailwindcss/oxide-android-arm64@4.3.1':
|
|
3842
|
+
resolution: {integrity: sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==}
|
|
3948
3843
|
engines: {node: '>= 20'}
|
|
3949
3844
|
cpu: [arm64]
|
|
3950
3845
|
os: [android]
|
|
3951
3846
|
|
|
3952
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
3953
|
-
resolution: {integrity: sha512-
|
|
3847
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.1':
|
|
3848
|
+
resolution: {integrity: sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==}
|
|
3954
3849
|
engines: {node: '>= 20'}
|
|
3955
3850
|
cpu: [arm64]
|
|
3956
3851
|
os: [darwin]
|
|
3957
3852
|
|
|
3958
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
3959
|
-
resolution: {integrity: sha512-
|
|
3853
|
+
'@tailwindcss/oxide-darwin-x64@4.3.1':
|
|
3854
|
+
resolution: {integrity: sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==}
|
|
3960
3855
|
engines: {node: '>= 20'}
|
|
3961
3856
|
cpu: [x64]
|
|
3962
3857
|
os: [darwin]
|
|
3963
3858
|
|
|
3964
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
3965
|
-
resolution: {integrity: sha512-
|
|
3859
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.1':
|
|
3860
|
+
resolution: {integrity: sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==}
|
|
3966
3861
|
engines: {node: '>= 20'}
|
|
3967
3862
|
cpu: [x64]
|
|
3968
3863
|
os: [freebsd]
|
|
3969
3864
|
|
|
3970
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
3971
|
-
resolution: {integrity: sha512
|
|
3865
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
|
|
3866
|
+
resolution: {integrity: sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==}
|
|
3972
3867
|
engines: {node: '>= 20'}
|
|
3973
3868
|
cpu: [arm]
|
|
3974
3869
|
os: [linux]
|
|
3975
3870
|
|
|
3976
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
3977
|
-
resolution: {integrity: sha512-
|
|
3871
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
|
|
3872
|
+
resolution: {integrity: sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==}
|
|
3978
3873
|
engines: {node: '>= 20'}
|
|
3979
3874
|
cpu: [arm64]
|
|
3980
3875
|
os: [linux]
|
|
3981
3876
|
libc: [glibc]
|
|
3982
3877
|
|
|
3983
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
3984
|
-
resolution: {integrity: sha512-
|
|
3878
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.1':
|
|
3879
|
+
resolution: {integrity: sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==}
|
|
3985
3880
|
engines: {node: '>= 20'}
|
|
3986
3881
|
cpu: [arm64]
|
|
3987
3882
|
os: [linux]
|
|
3988
3883
|
libc: [musl]
|
|
3989
3884
|
|
|
3990
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
3991
|
-
resolution: {integrity: sha512-
|
|
3885
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.1':
|
|
3886
|
+
resolution: {integrity: sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==}
|
|
3992
3887
|
engines: {node: '>= 20'}
|
|
3993
3888
|
cpu: [x64]
|
|
3994
3889
|
os: [linux]
|
|
3995
3890
|
libc: [glibc]
|
|
3996
3891
|
|
|
3997
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
3998
|
-
resolution: {integrity: sha512-
|
|
3892
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.1':
|
|
3893
|
+
resolution: {integrity: sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==}
|
|
3999
3894
|
engines: {node: '>= 20'}
|
|
4000
3895
|
cpu: [x64]
|
|
4001
3896
|
os: [linux]
|
|
4002
3897
|
libc: [musl]
|
|
4003
3898
|
|
|
4004
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
4005
|
-
resolution: {integrity: sha512-
|
|
3899
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.1':
|
|
3900
|
+
resolution: {integrity: sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==}
|
|
4006
3901
|
engines: {node: '>=14.0.0'}
|
|
4007
3902
|
cpu: [wasm32]
|
|
4008
3903
|
bundledDependencies:
|
|
@@ -4013,24 +3908,24 @@ packages:
|
|
|
4013
3908
|
- '@emnapi/wasi-threads'
|
|
4014
3909
|
- tslib
|
|
4015
3910
|
|
|
4016
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
4017
|
-
resolution: {integrity: sha512-
|
|
3911
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
|
|
3912
|
+
resolution: {integrity: sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==}
|
|
4018
3913
|
engines: {node: '>= 20'}
|
|
4019
3914
|
cpu: [arm64]
|
|
4020
3915
|
os: [win32]
|
|
4021
3916
|
|
|
4022
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
4023
|
-
resolution: {integrity: sha512-
|
|
3917
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.1':
|
|
3918
|
+
resolution: {integrity: sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==}
|
|
4024
3919
|
engines: {node: '>= 20'}
|
|
4025
3920
|
cpu: [x64]
|
|
4026
3921
|
os: [win32]
|
|
4027
3922
|
|
|
4028
|
-
'@tailwindcss/oxide@4.3.
|
|
4029
|
-
resolution: {integrity: sha512-
|
|
3923
|
+
'@tailwindcss/oxide@4.3.1':
|
|
3924
|
+
resolution: {integrity: sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==}
|
|
4030
3925
|
engines: {node: '>= 20'}
|
|
4031
3926
|
|
|
4032
|
-
'@tailwindcss/postcss@4.3.
|
|
4033
|
-
resolution: {integrity: sha512-
|
|
3927
|
+
'@tailwindcss/postcss@4.3.1':
|
|
3928
|
+
resolution: {integrity: sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==}
|
|
4034
3929
|
|
|
4035
3930
|
'@tailwindcss/typography@0.5.20':
|
|
4036
3931
|
resolution: {integrity: sha512-hwbzQuNUfcPvbegQFatVPl/MY/tcM9KLl963hQ5laJKPh81TEZ1+dNG9PirGvcaDBkp+BCshExAyKVPW91dozw==}
|
|
@@ -4263,70 +4158,70 @@ packages:
|
|
|
4263
4158
|
'@types/unist@3.0.3':
|
|
4264
4159
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
4265
4160
|
|
|
4266
|
-
'@typescript-eslint/eslint-plugin@8.61.
|
|
4267
|
-
resolution: {integrity: sha512-
|
|
4161
|
+
'@typescript-eslint/eslint-plugin@8.61.1':
|
|
4162
|
+
resolution: {integrity: sha512-ZPlVl3PB3et/59Ne0fv/sci6ZXz4T4Hp4nTJ56i/Y0gR89ARb+KphojTq6j+56E5PIezmOIOOWyY+aWQFd+IkQ==}
|
|
4268
4163
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4269
4164
|
peerDependencies:
|
|
4270
|
-
'@typescript-eslint/parser': ^8.61.
|
|
4165
|
+
'@typescript-eslint/parser': ^8.61.1
|
|
4271
4166
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4272
4167
|
typescript: '>=4.8.4 <6.1.0'
|
|
4273
4168
|
|
|
4274
|
-
'@typescript-eslint/parser@8.61.
|
|
4275
|
-
resolution: {integrity: sha512-
|
|
4169
|
+
'@typescript-eslint/parser@8.61.1':
|
|
4170
|
+
resolution: {integrity: sha512-PJ5vePq5/ognBbrIcoC5+SHO5dfpeLPzP9FpLkzWrguoYQEeeSjlJpVwOpo1JRSTEi7dRcwNy4h4dzV70PqHcg==}
|
|
4276
4171
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4277
4172
|
peerDependencies:
|
|
4278
4173
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4279
4174
|
typescript: '>=4.8.4 <6.1.0'
|
|
4280
4175
|
|
|
4281
|
-
'@typescript-eslint/project-service@8.61.
|
|
4282
|
-
resolution: {integrity: sha512-
|
|
4176
|
+
'@typescript-eslint/project-service@8.61.1':
|
|
4177
|
+
resolution: {integrity: sha512-PrC4JYGmR241lYnfhmKGTXkFqv8+ymbTFgSAY0fVXpY82/QkMw5TZPl+vGzuDDU2QYJk9fIDOBTntF+yDv9LEA==}
|
|
4283
4178
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4284
4179
|
peerDependencies:
|
|
4285
4180
|
typescript: '>=4.8.4 <6.1.0'
|
|
4286
4181
|
|
|
4287
|
-
'@typescript-eslint/rule-tester@8.61.
|
|
4288
|
-
resolution: {integrity: sha512-
|
|
4182
|
+
'@typescript-eslint/rule-tester@8.61.1':
|
|
4183
|
+
resolution: {integrity: sha512-x7xp2GZaFcrXv2tuGN5Lcdd05BcPDaL2wSPpARPSbbRE7N2N46za+9NTAtb8NX5a9FfoDLkhLYDbJjngV8xYDA==}
|
|
4289
4184
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4290
4185
|
peerDependencies:
|
|
4291
4186
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4292
4187
|
typescript: '>=4.8.4 <6.1.0'
|
|
4293
4188
|
|
|
4294
|
-
'@typescript-eslint/scope-manager@8.61.
|
|
4295
|
-
resolution: {integrity: sha512-
|
|
4189
|
+
'@typescript-eslint/scope-manager@8.61.1':
|
|
4190
|
+
resolution: {integrity: sha512-L2bdIeoQS8FlKAvONAr20w6OcLXeB+qiDKbAooS9A0Ben+iSIkBef0FxqwKWYqt5sa0i4KJtxVyVmhMylKzF5w==}
|
|
4296
4191
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4297
4192
|
|
|
4298
|
-
'@typescript-eslint/tsconfig-utils@8.61.
|
|
4299
|
-
resolution: {integrity: sha512-
|
|
4193
|
+
'@typescript-eslint/tsconfig-utils@8.61.1':
|
|
4194
|
+
resolution: {integrity: sha512-UN/H4di+OO7EWx2ovME+8t31YO+KVnK0RRKEHR3kOt21/Ay8BOq3M1OMvWs5vNiqcFCYGYoxK3MXPZzmMUE+yg==}
|
|
4300
4195
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4301
4196
|
peerDependencies:
|
|
4302
4197
|
typescript: '>=4.8.4 <6.1.0'
|
|
4303
4198
|
|
|
4304
|
-
'@typescript-eslint/type-utils@8.61.
|
|
4305
|
-
resolution: {integrity: sha512-
|
|
4199
|
+
'@typescript-eslint/type-utils@8.61.1':
|
|
4200
|
+
resolution: {integrity: sha512-GYRicKmVK0C4fsKgaACaknOUAq9Oa2kwsjnpFhFcS/5p4Ht5IP9OVLbgIgcK4SRk92nVHFluurg1lumD9dBcLw==}
|
|
4306
4201
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4307
4202
|
peerDependencies:
|
|
4308
4203
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4309
4204
|
typescript: '>=4.8.4 <6.1.0'
|
|
4310
4205
|
|
|
4311
|
-
'@typescript-eslint/types@8.61.
|
|
4312
|
-
resolution: {integrity: sha512-
|
|
4206
|
+
'@typescript-eslint/types@8.61.1':
|
|
4207
|
+
resolution: {integrity: sha512-G+CRlPqLv7Bz1IZVs03x5K59F1veqL0EJUROAdGhKsEq8qOiRiZbI+HUojPq5l0fEGOKModD9br6lObhB8zkoA==}
|
|
4313
4208
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4314
4209
|
|
|
4315
|
-
'@typescript-eslint/typescript-estree@8.61.
|
|
4316
|
-
resolution: {integrity: sha512-
|
|
4210
|
+
'@typescript-eslint/typescript-estree@8.61.1':
|
|
4211
|
+
resolution: {integrity: sha512-u+oQD3BqYWPc8YV9Zab4vaJElJuwOLPRc10Jm1o/qS+6Qwen14HCWwx0Seo4LnSn2wxea2Ik8DxPt2/FHmuhrg==}
|
|
4317
4212
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4318
4213
|
peerDependencies:
|
|
4319
4214
|
typescript: '>=4.8.4 <6.1.0'
|
|
4320
4215
|
|
|
4321
|
-
'@typescript-eslint/utils@8.61.
|
|
4322
|
-
resolution: {integrity: sha512-
|
|
4216
|
+
'@typescript-eslint/utils@8.61.1':
|
|
4217
|
+
resolution: {integrity: sha512-1+P/3Dj6jvtybE1q0HQ6yBt/gq+oKJyLdEv4HdnqasaEXRSYCAsD59mXEVQnM/ULNdQxbX77tdG4jPRjIS6knA==}
|
|
4323
4218
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4324
4219
|
peerDependencies:
|
|
4325
4220
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4326
4221
|
typescript: '>=4.8.4 <6.1.0'
|
|
4327
4222
|
|
|
4328
|
-
'@typescript-eslint/visitor-keys@8.61.
|
|
4329
|
-
resolution: {integrity: sha512-
|
|
4223
|
+
'@typescript-eslint/visitor-keys@8.61.1':
|
|
4224
|
+
resolution: {integrity: sha512-6fJ9MHWtK14C1DSkiMlHUSOmrVebL7150xZJBlJiL62jjhIA4JmOq6flwBgDxIdBKKdoiZRel+dfPD5MLfny3w==}
|
|
4330
4225
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4331
4226
|
|
|
4332
4227
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260610.1':
|
|
@@ -4425,8 +4320,8 @@ packages:
|
|
|
4425
4320
|
'@vue/devtools-api@6.6.4':
|
|
4426
4321
|
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
|
|
4427
4322
|
|
|
4428
|
-
'@vue/language-core@3.3.
|
|
4429
|
-
resolution: {integrity: sha512-
|
|
4323
|
+
'@vue/language-core@3.3.5':
|
|
4324
|
+
resolution: {integrity: sha512-UkKu5nhX89fg4VhlG/FOeI10G3cj/7radKT/cy9BT4Q9qJmJlSTAc/dP63Xqs29aypN4f39xUV6PsLNk/dcD6g==}
|
|
4430
4325
|
|
|
4431
4326
|
'@vue/shared@3.5.13':
|
|
4432
4327
|
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
|
|
@@ -4618,8 +4513,8 @@ packages:
|
|
|
4618
4513
|
bare-path@3.0.1:
|
|
4619
4514
|
resolution: {integrity: sha512-ghj2DSK/2e99a1anTVPCV4m4YIYtrbXhfM7V3D7XZLOTsybnYyaJloymGqssQc8l/or0UoDyRtNQkmkEF/ysgQ==}
|
|
4620
4515
|
|
|
4621
|
-
bare-stream@2.13.
|
|
4622
|
-
resolution: {integrity: sha512-
|
|
4516
|
+
bare-stream@2.13.3:
|
|
4517
|
+
resolution: {integrity: sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==}
|
|
4623
4518
|
peerDependencies:
|
|
4624
4519
|
bare-abort-controller: '*'
|
|
4625
4520
|
bare-buffer: '*'
|
|
@@ -4656,8 +4551,8 @@ packages:
|
|
|
4656
4551
|
bl@1.2.3:
|
|
4657
4552
|
resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
|
|
4658
4553
|
|
|
4659
|
-
body-parser@2.
|
|
4660
|
-
resolution: {integrity: sha512-
|
|
4554
|
+
body-parser@2.3.0:
|
|
4555
|
+
resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==}
|
|
4661
4556
|
engines: {node: '>=18'}
|
|
4662
4557
|
|
|
4663
4558
|
boolbase@1.0.0:
|
|
@@ -5206,8 +5101,8 @@ packages:
|
|
|
5206
5101
|
end-of-stream@1.4.5:
|
|
5207
5102
|
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
5208
5103
|
|
|
5209
|
-
enhanced-resolve@5.
|
|
5210
|
-
resolution: {integrity: sha512-
|
|
5104
|
+
enhanced-resolve@5.21.6:
|
|
5105
|
+
resolution: {integrity: sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==}
|
|
5211
5106
|
engines: {node: '>=10.13.0'}
|
|
5212
5107
|
|
|
5213
5108
|
enquirer@2.4.1:
|
|
@@ -5384,8 +5279,8 @@ packages:
|
|
|
5384
5279
|
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
5385
5280
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5386
5281
|
|
|
5387
|
-
eslint@10.
|
|
5388
|
-
resolution: {integrity: sha512-
|
|
5282
|
+
eslint@10.5.0:
|
|
5283
|
+
resolution: {integrity: sha512-1y+7C+vi12bUK1IpZeaV3gsH9fHLBmPvYmPx42pvT/E9yG0IC8g3PUZZgp0+JLJl7ZDK0flc2gc+Aw9dpCvIsQ==}
|
|
5389
5284
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5390
5285
|
hasBin: true
|
|
5391
5286
|
peerDependencies:
|
|
@@ -5739,8 +5634,8 @@ packages:
|
|
|
5739
5634
|
header-case@2.0.4:
|
|
5740
5635
|
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
|
|
5741
5636
|
|
|
5742
|
-
hono@4.12.
|
|
5743
|
-
resolution: {integrity: sha512-
|
|
5637
|
+
hono@4.12.26:
|
|
5638
|
+
resolution: {integrity: sha512-uyZtpnYxM9CmQ7QsQknM4zN8EftNqhON1qYeIKM0Se67CCEe2c44xyGURwB0axX2fBDu1dqHrHAc1hmNT8ITkw==}
|
|
5744
5639
|
engines: {node: '>=16.9.0'}
|
|
5745
5640
|
|
|
5746
5641
|
hookable@6.1.1:
|
|
@@ -6078,10 +5973,6 @@ packages:
|
|
|
6078
5973
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
6079
5974
|
hasBin: true
|
|
6080
5975
|
|
|
6081
|
-
js-yaml@4.2.0:
|
|
6082
|
-
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
6083
|
-
hasBin: true
|
|
6084
|
-
|
|
6085
5976
|
jsdoc-type-pratt-parser@7.1.1:
|
|
6086
5977
|
resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
|
|
6087
5978
|
engines: {node: '>=20.0.0'}
|
|
@@ -6712,8 +6603,8 @@ packages:
|
|
|
6712
6603
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6713
6604
|
hasBin: true
|
|
6714
6605
|
|
|
6715
|
-
oxlint@1.
|
|
6716
|
-
resolution: {integrity: sha512-
|
|
6606
|
+
oxlint@1.70.0:
|
|
6607
|
+
resolution: {integrity: sha512-D6JgHtzkhRwvEC+A0Nw5AEc5bk8x5i1pHzvZIEf/a0C4hOzmAACNGtkDGPyFaxxX3ZVGxCPeig3P3rMM8XU3/g==}
|
|
6717
6608
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6718
6609
|
hasBin: true
|
|
6719
6610
|
peerDependencies:
|
|
@@ -6950,8 +6841,8 @@ packages:
|
|
|
6950
6841
|
quasar-app-extension-zova@1.3.1:
|
|
6951
6842
|
resolution: {integrity: sha512-JKOXATq28dlNVzF534QosguSHnpR3RN+O8jqWMA8yUk58oj4q/iqFlOV8dnW5Cu/24JMN1Z+bKW2cOLdkpOzxw==}
|
|
6952
6843
|
|
|
6953
|
-
quasar@2.
|
|
6954
|
-
resolution: {integrity: sha512-
|
|
6844
|
+
quasar@2.20.1:
|
|
6845
|
+
resolution: {integrity: sha512-C+uFyt9/D2B2Dad/c9tGSlyWLMsrz+ROJLm3FKFdY9i+vc1Mk2q/+JyHBmQnuvQCEpUrdiXqcWQbpmZhuvo60A==}
|
|
6955
6846
|
engines: {node: '>= 10.18.1', npm: '>= 6.13.4', yarn: '>= 1.21.1'}
|
|
6956
6847
|
|
|
6957
6848
|
queue-microtask@1.2.3:
|
|
@@ -7129,11 +7020,6 @@ packages:
|
|
|
7129
7020
|
rollup:
|
|
7130
7021
|
optional: true
|
|
7131
7022
|
|
|
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
7023
|
router@2.2.0:
|
|
7138
7024
|
resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
|
|
7139
7025
|
engines: {node: '>= 18'}
|
|
@@ -7323,8 +7209,8 @@ packages:
|
|
|
7323
7209
|
sentence-case@3.0.4:
|
|
7324
7210
|
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
|
|
7325
7211
|
|
|
7326
|
-
serialize-javascript@7.0.
|
|
7327
|
-
resolution: {integrity: sha512-
|
|
7212
|
+
serialize-javascript@7.0.6:
|
|
7213
|
+
resolution: {integrity: sha512-ATTK5Q4gFVg0YDp1my2vqygyvhcklD/UV5GIlYHooGTn/NogJqIzpetkD6E5kmuVULqz/S9inUL25XcAgDRJQg==}
|
|
7328
7214
|
engines: {node: '>=20.0.0'}
|
|
7329
7215
|
|
|
7330
7216
|
serve-static@2.2.1:
|
|
@@ -7449,8 +7335,8 @@ packages:
|
|
|
7449
7335
|
resolution: {integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==}
|
|
7450
7336
|
engines: {node: '>=0.10'}
|
|
7451
7337
|
|
|
7452
|
-
streamx@2.
|
|
7453
|
-
resolution: {integrity: sha512-
|
|
7338
|
+
streamx@2.28.0:
|
|
7339
|
+
resolution: {integrity: sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==}
|
|
7454
7340
|
|
|
7455
7341
|
string-hash@1.1.3:
|
|
7456
7342
|
resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
|
|
@@ -7535,8 +7421,8 @@ packages:
|
|
|
7535
7421
|
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
|
|
7536
7422
|
engines: {node: '>=20'}
|
|
7537
7423
|
|
|
7538
|
-
tailwindcss@4.3.
|
|
7539
|
-
resolution: {integrity: sha512-
|
|
7424
|
+
tailwindcss@4.3.1:
|
|
7425
|
+
resolution: {integrity: sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==}
|
|
7540
7426
|
|
|
7541
7427
|
tapable@2.3.3:
|
|
7542
7428
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
@@ -7702,8 +7588,8 @@ packages:
|
|
|
7702
7588
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
7703
7589
|
engines: {node: '>= 0.4'}
|
|
7704
7590
|
|
|
7705
|
-
typescript-eslint@8.61.
|
|
7706
|
-
resolution: {integrity: sha512-
|
|
7591
|
+
typescript-eslint@8.61.1:
|
|
7592
|
+
resolution: {integrity: sha512-V7PayAfJokV3pEHgN7/v03D1SpujhRfQtYLbLIiBfDDncdg4PAiRBfoS4cnCANK4jmAPncczi59QO3afiXUlNw==}
|
|
7707
7593
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
7708
7594
|
peerDependencies:
|
|
7709
7595
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -7922,8 +7808,8 @@ packages:
|
|
|
7922
7808
|
peerDependencies:
|
|
7923
7809
|
vue: ^3.5.13
|
|
7924
7810
|
|
|
7925
|
-
vue-tsc@3.3.
|
|
7926
|
-
resolution: {integrity: sha512-
|
|
7811
|
+
vue-tsc@3.3.5:
|
|
7812
|
+
resolution: {integrity: sha512-Rzh/G2MmNlMSAMTiQEjDrsb4dgB/jbtEM47rVN2NtidF1dfb/q4w4QvpQBtW5+y3y5H27Hjh7deVwk+YB02fNg==}
|
|
7927
7813
|
hasBin: true
|
|
7928
7814
|
peerDependencies:
|
|
7929
7815
|
typescript: '>=5.0.0'
|
|
@@ -8339,7 +8225,7 @@ snapshots:
|
|
|
8339
8225
|
|
|
8340
8226
|
'@bufbuild/protobuf@2.12.0': {}
|
|
8341
8227
|
|
|
8342
|
-
'@cabloy/cli@3.1.18(vue@3.5.38(typescript@5.9.3))':
|
|
8228
|
+
'@cabloy/cli@3.1.18(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
|
|
8343
8229
|
dependencies:
|
|
8344
8230
|
'@babel/parser': 7.29.7
|
|
8345
8231
|
'@cabloy/module-glob': 5.3.13
|
|
@@ -8348,7 +8234,7 @@ snapshots:
|
|
|
8348
8234
|
'@cabloy/utils': 2.1.22
|
|
8349
8235
|
'@cabloy/word-utils': link:packages-utils/word-utils
|
|
8350
8236
|
'@npmcli/config': 10.10.0
|
|
8351
|
-
'@zhennann/common-bin': 4.0.1
|
|
8237
|
+
'@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
|
|
8352
8238
|
'@zhennann/ejs': 3.0.1
|
|
8353
8239
|
boxen: 4.2.0
|
|
8354
8240
|
chalk: 3.0.0
|
|
@@ -8386,27 +8272,27 @@ snapshots:
|
|
|
8386
8272
|
dependencies:
|
|
8387
8273
|
json5: 2.2.3
|
|
8388
8274
|
|
|
8389
|
-
'@cabloy/lint@5.1.
|
|
8275
|
+
'@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
8276
|
dependencies:
|
|
8391
|
-
'@e18e/eslint-plugin': 0.2.0(eslint@10.
|
|
8277
|
+
'@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.70.0)
|
|
8392
8278
|
'@eslint/json': 1.2.0
|
|
8393
8279
|
'@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.
|
|
8280
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
8281
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
8282
|
+
eslint-plugin-antfu: 3.2.3(eslint@10.5.0(jiti@2.7.0))
|
|
8283
|
+
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))
|
|
8284
|
+
eslint-plugin-eslint-comments: 3.2.0(eslint@10.5.0(jiti@2.7.0))
|
|
8285
|
+
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))
|
|
8286
|
+
eslint-plugin-pnpm: 1.6.1(eslint@10.5.0(jiti@2.7.0))
|
|
8287
|
+
eslint-plugin-regexp: 3.1.0(eslint@10.5.0(jiti@2.7.0))
|
|
8288
|
+
eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)
|
|
8289
|
+
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))
|
|
8290
|
+
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)))
|
|
8291
|
+
eslint-plugin-yml: 3.4.0(eslint@10.5.0(jiti@2.7.0))
|
|
8406
8292
|
globals: 17.6.0
|
|
8407
8293
|
oxfmt: 0.45.0
|
|
8408
|
-
oxlint: 1.
|
|
8409
|
-
typescript-eslint: 8.61.
|
|
8294
|
+
oxlint: 1.70.0
|
|
8295
|
+
typescript-eslint: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8410
8296
|
transitivePeerDependencies:
|
|
8411
8297
|
- '@typescript-eslint/eslint-plugin'
|
|
8412
8298
|
- '@typescript-eslint/rule-tester'
|
|
@@ -8443,11 +8329,11 @@ snapshots:
|
|
|
8443
8329
|
|
|
8444
8330
|
'@cabloy/process-helper@3.1.8': {}
|
|
8445
8331
|
|
|
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.
|
|
8332
|
+
'@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
8333
|
dependencies:
|
|
8448
8334
|
'@quasar/render-ssr-error': 1.0.4
|
|
8449
8335
|
'@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.
|
|
8336
|
+
'@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
8337
|
'@types/chrome': 0.1.43
|
|
8452
8338
|
'@types/compression': 1.8.1
|
|
8453
8339
|
'@types/cordova': 11.0.3
|
|
@@ -8474,11 +8360,11 @@ snapshots:
|
|
|
8474
8360
|
minimist: 1.2.8
|
|
8475
8361
|
mlly: 1.8.2
|
|
8476
8362
|
open: 11.0.0
|
|
8477
|
-
quasar: 2.
|
|
8478
|
-
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.0)
|
|
8363
|
+
quasar: 2.20.1
|
|
8364
|
+
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.0)
|
|
8479
8365
|
sass-embedded: 1.100.0
|
|
8480
8366
|
semver: 7.8.4
|
|
8481
|
-
serialize-javascript: 7.0.
|
|
8367
|
+
serialize-javascript: 7.0.6
|
|
8482
8368
|
tinyglobby: 0.2.17
|
|
8483
8369
|
ts-essentials: 10.2.1(typescript@5.9.3)
|
|
8484
8370
|
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 +8373,7 @@ snapshots:
|
|
|
8487
8373
|
webpack-merge: 6.0.1
|
|
8488
8374
|
zova-vite: link:packages-utils/zova-vite
|
|
8489
8375
|
optionalDependencies:
|
|
8490
|
-
eslint: 10.
|
|
8376
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
8491
8377
|
typescript: 5.9.3
|
|
8492
8378
|
transitivePeerDependencies:
|
|
8493
8379
|
- '@types/node'
|
|
@@ -8507,10 +8393,10 @@ snapshots:
|
|
|
8507
8393
|
- tsx
|
|
8508
8394
|
- yaml
|
|
8509
8395
|
|
|
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.
|
|
8396
|
+
'@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
8397
|
dependencies:
|
|
8512
8398
|
'@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.
|
|
8399
|
+
quasar: 2.20.1
|
|
8514
8400
|
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
8401
|
vue: 3.5.38(typescript@5.9.3)
|
|
8516
8402
|
|
|
@@ -8523,17 +8409,17 @@ snapshots:
|
|
|
8523
8409
|
'@marcbachmann/cel-js': 7.6.1
|
|
8524
8410
|
object-hash: 3.0.0
|
|
8525
8411
|
|
|
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.
|
|
8412
|
+
'@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
8413
|
dependencies:
|
|
8528
8414
|
'@babel/core': 7.29.7
|
|
8529
8415
|
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.
|
|
8416
|
+
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
8417
|
|
|
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.
|
|
8418
|
+
'@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
8419
|
dependencies:
|
|
8534
8420
|
'@babel/core': 7.29.7
|
|
8535
8421
|
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.
|
|
8422
|
+
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
8423
|
|
|
8538
8424
|
'@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)':
|
|
8539
8425
|
dependencies:
|
|
@@ -8632,12 +8518,12 @@ snapshots:
|
|
|
8632
8518
|
'@colors/colors@1.5.0':
|
|
8633
8519
|
optional: true
|
|
8634
8520
|
|
|
8635
|
-
'@e18e/eslint-plugin@0.2.0(eslint@10.
|
|
8521
|
+
'@e18e/eslint-plugin@0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.70.0)':
|
|
8636
8522
|
dependencies:
|
|
8637
|
-
eslint-plugin-depend: 1.5.0(eslint@10.
|
|
8523
|
+
eslint-plugin-depend: 1.5.0(eslint@10.5.0(jiti@2.7.0))
|
|
8638
8524
|
optionalDependencies:
|
|
8639
|
-
eslint: 10.
|
|
8640
|
-
oxlint: 1.
|
|
8525
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
8526
|
+
oxlint: 1.70.0
|
|
8641
8527
|
|
|
8642
8528
|
'@eggjs/yauzl@2.11.0':
|
|
8643
8529
|
dependencies:
|
|
@@ -8663,7 +8549,7 @@ snapshots:
|
|
|
8663
8549
|
'@es-joy/jsdoccomment@0.84.0':
|
|
8664
8550
|
dependencies:
|
|
8665
8551
|
'@types/estree': 1.0.9
|
|
8666
|
-
'@typescript-eslint/types': 8.61.
|
|
8552
|
+
'@typescript-eslint/types': 8.61.1
|
|
8667
8553
|
comment-parser: 1.4.5
|
|
8668
8554
|
esquery: 1.7.0
|
|
8669
8555
|
jsdoc-type-pratt-parser: 7.1.1
|
|
@@ -9043,9 +8929,9 @@ snapshots:
|
|
|
9043
8929
|
'@esbuild/win32-x64@0.27.7':
|
|
9044
8930
|
optional: true
|
|
9045
8931
|
|
|
9046
|
-
'@eslint-community/eslint-utils@4.9.1(eslint@10.
|
|
8932
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@10.5.0(jiti@2.7.0))':
|
|
9047
8933
|
dependencies:
|
|
9048
|
-
eslint: 10.
|
|
8934
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
9049
8935
|
eslint-visitor-keys: 3.4.3
|
|
9050
8936
|
|
|
9051
8937
|
'@eslint-community/regexpp@4.12.2': {}
|
|
@@ -9112,9 +8998,9 @@ snapshots:
|
|
|
9112
8998
|
|
|
9113
8999
|
'@gar/promise-retry@1.0.3': {}
|
|
9114
9000
|
|
|
9115
|
-
'@hono/node-server@1.19.14(hono@4.12.
|
|
9001
|
+
'@hono/node-server@1.19.14(hono@4.12.26)':
|
|
9116
9002
|
dependencies:
|
|
9117
|
-
hono: 4.12.
|
|
9003
|
+
hono: 4.12.26
|
|
9118
9004
|
|
|
9119
9005
|
'@humanfs/core@0.19.2':
|
|
9120
9006
|
dependencies:
|
|
@@ -9298,7 +9184,7 @@ snapshots:
|
|
|
9298
9184
|
|
|
9299
9185
|
'@modelcontextprotocol/sdk@1.29.0(@cabloy/zod@4.3.6)':
|
|
9300
9186
|
dependencies:
|
|
9301
|
-
'@hono/node-server': 1.19.14(hono@4.12.
|
|
9187
|
+
'@hono/node-server': 1.19.14(hono@4.12.26)
|
|
9302
9188
|
ajv: 8.20.0
|
|
9303
9189
|
ajv-formats: 3.0.1(ajv@8.20.0)
|
|
9304
9190
|
content-type: 1.0.5
|
|
@@ -9308,7 +9194,7 @@ snapshots:
|
|
|
9308
9194
|
eventsource-parser: 3.1.0
|
|
9309
9195
|
express: 5.2.1(supports-color@10.2.2)
|
|
9310
9196
|
express-rate-limit: 8.5.2(express@5.2.1(supports-color@10.2.2))
|
|
9311
|
-
hono: 4.12.
|
|
9197
|
+
hono: 4.12.26
|
|
9312
9198
|
jose: 6.2.3
|
|
9313
9199
|
json-schema-typed: 8.0.2
|
|
9314
9200
|
pkce-challenge: 5.0.1
|
|
@@ -9447,61 +9333,61 @@ snapshots:
|
|
|
9447
9333
|
'@oxfmt/binding-win32-x64-msvc@0.45.0':
|
|
9448
9334
|
optional: true
|
|
9449
9335
|
|
|
9450
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
9336
|
+
'@oxlint/binding-android-arm-eabi@1.70.0':
|
|
9451
9337
|
optional: true
|
|
9452
9338
|
|
|
9453
|
-
'@oxlint/binding-android-arm64@1.
|
|
9339
|
+
'@oxlint/binding-android-arm64@1.70.0':
|
|
9454
9340
|
optional: true
|
|
9455
9341
|
|
|
9456
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
9342
|
+
'@oxlint/binding-darwin-arm64@1.70.0':
|
|
9457
9343
|
optional: true
|
|
9458
9344
|
|
|
9459
|
-
'@oxlint/binding-darwin-x64@1.
|
|
9345
|
+
'@oxlint/binding-darwin-x64@1.70.0':
|
|
9460
9346
|
optional: true
|
|
9461
9347
|
|
|
9462
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
9348
|
+
'@oxlint/binding-freebsd-x64@1.70.0':
|
|
9463
9349
|
optional: true
|
|
9464
9350
|
|
|
9465
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
9351
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.70.0':
|
|
9466
9352
|
optional: true
|
|
9467
9353
|
|
|
9468
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
9354
|
+
'@oxlint/binding-linux-arm-musleabihf@1.70.0':
|
|
9469
9355
|
optional: true
|
|
9470
9356
|
|
|
9471
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
9357
|
+
'@oxlint/binding-linux-arm64-gnu@1.70.0':
|
|
9472
9358
|
optional: true
|
|
9473
9359
|
|
|
9474
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
9360
|
+
'@oxlint/binding-linux-arm64-musl@1.70.0':
|
|
9475
9361
|
optional: true
|
|
9476
9362
|
|
|
9477
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
9363
|
+
'@oxlint/binding-linux-ppc64-gnu@1.70.0':
|
|
9478
9364
|
optional: true
|
|
9479
9365
|
|
|
9480
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
9366
|
+
'@oxlint/binding-linux-riscv64-gnu@1.70.0':
|
|
9481
9367
|
optional: true
|
|
9482
9368
|
|
|
9483
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
9369
|
+
'@oxlint/binding-linux-riscv64-musl@1.70.0':
|
|
9484
9370
|
optional: true
|
|
9485
9371
|
|
|
9486
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
9372
|
+
'@oxlint/binding-linux-s390x-gnu@1.70.0':
|
|
9487
9373
|
optional: true
|
|
9488
9374
|
|
|
9489
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
9375
|
+
'@oxlint/binding-linux-x64-gnu@1.70.0':
|
|
9490
9376
|
optional: true
|
|
9491
9377
|
|
|
9492
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
9378
|
+
'@oxlint/binding-linux-x64-musl@1.70.0':
|
|
9493
9379
|
optional: true
|
|
9494
9380
|
|
|
9495
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
9381
|
+
'@oxlint/binding-openharmony-arm64@1.70.0':
|
|
9496
9382
|
optional: true
|
|
9497
9383
|
|
|
9498
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
9384
|
+
'@oxlint/binding-win32-arm64-msvc@1.70.0':
|
|
9499
9385
|
optional: true
|
|
9500
9386
|
|
|
9501
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
9387
|
+
'@oxlint/binding-win32-ia32-msvc@1.70.0':
|
|
9502
9388
|
optional: true
|
|
9503
9389
|
|
|
9504
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
9390
|
+
'@oxlint/binding-win32-x64-msvc@1.70.0':
|
|
9505
9391
|
optional: true
|
|
9506
9392
|
|
|
9507
9393
|
'@parcel/watcher-android-arm64@2.5.6':
|
|
@@ -9757,168 +9643,93 @@ snapshots:
|
|
|
9757
9643
|
|
|
9758
9644
|
'@rolldown/pluginutils@1.0.1': {}
|
|
9759
9645
|
|
|
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
9646
|
'@sindresorhus/merge-streams@2.3.0': {}
|
|
9836
9647
|
|
|
9837
9648
|
'@sindresorhus/merge-streams@4.0.0': {}
|
|
9838
9649
|
|
|
9839
|
-
'@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
9650
|
+
'@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0))':
|
|
9840
9651
|
dependencies:
|
|
9841
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
9842
|
-
'@typescript-eslint/types': 8.61.
|
|
9843
|
-
eslint: 10.
|
|
9652
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
9653
|
+
'@typescript-eslint/types': 8.61.1
|
|
9654
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
9844
9655
|
eslint-visitor-keys: 4.2.1
|
|
9845
9656
|
espree: 10.4.0
|
|
9846
9657
|
estraverse: 5.3.0
|
|
9847
9658
|
picomatch: 4.0.4
|
|
9848
9659
|
|
|
9849
|
-
'@tailwindcss/node@4.3.
|
|
9660
|
+
'@tailwindcss/node@4.3.1':
|
|
9850
9661
|
dependencies:
|
|
9851
9662
|
'@jridgewell/remapping': 2.3.5
|
|
9852
|
-
enhanced-resolve: 5.
|
|
9663
|
+
enhanced-resolve: 5.21.6
|
|
9853
9664
|
jiti: 2.7.0
|
|
9854
9665
|
lightningcss: 1.32.0
|
|
9855
9666
|
magic-string: 0.30.21
|
|
9856
9667
|
source-map-js: 1.2.1
|
|
9857
|
-
tailwindcss: 4.3.
|
|
9668
|
+
tailwindcss: 4.3.1
|
|
9858
9669
|
|
|
9859
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
9670
|
+
'@tailwindcss/oxide-android-arm64@4.3.1':
|
|
9860
9671
|
optional: true
|
|
9861
9672
|
|
|
9862
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
9673
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.1':
|
|
9863
9674
|
optional: true
|
|
9864
9675
|
|
|
9865
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
9676
|
+
'@tailwindcss/oxide-darwin-x64@4.3.1':
|
|
9866
9677
|
optional: true
|
|
9867
9678
|
|
|
9868
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
9679
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.1':
|
|
9869
9680
|
optional: true
|
|
9870
9681
|
|
|
9871
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
9682
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
|
|
9872
9683
|
optional: true
|
|
9873
9684
|
|
|
9874
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
9685
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
|
|
9875
9686
|
optional: true
|
|
9876
9687
|
|
|
9877
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
9688
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.1':
|
|
9878
9689
|
optional: true
|
|
9879
9690
|
|
|
9880
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
9691
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.1':
|
|
9881
9692
|
optional: true
|
|
9882
9693
|
|
|
9883
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
9694
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.1':
|
|
9884
9695
|
optional: true
|
|
9885
9696
|
|
|
9886
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
9697
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.1':
|
|
9887
9698
|
optional: true
|
|
9888
9699
|
|
|
9889
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
9700
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
|
|
9890
9701
|
optional: true
|
|
9891
9702
|
|
|
9892
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
9703
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.1':
|
|
9893
9704
|
optional: true
|
|
9894
9705
|
|
|
9895
|
-
'@tailwindcss/oxide@4.3.
|
|
9706
|
+
'@tailwindcss/oxide@4.3.1':
|
|
9896
9707
|
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.
|
|
9708
|
+
'@tailwindcss/oxide-android-arm64': 4.3.1
|
|
9709
|
+
'@tailwindcss/oxide-darwin-arm64': 4.3.1
|
|
9710
|
+
'@tailwindcss/oxide-darwin-x64': 4.3.1
|
|
9711
|
+
'@tailwindcss/oxide-freebsd-x64': 4.3.1
|
|
9712
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.1
|
|
9713
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.1
|
|
9714
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.3.1
|
|
9715
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.3.1
|
|
9716
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.3.1
|
|
9717
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.3.1
|
|
9718
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.1
|
|
9719
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.3.1
|
|
9720
|
+
|
|
9721
|
+
'@tailwindcss/postcss@4.3.1':
|
|
9911
9722
|
dependencies:
|
|
9912
9723
|
'@alloc/quick-lru': 5.2.0
|
|
9913
|
-
'@tailwindcss/node': 4.3.
|
|
9914
|
-
'@tailwindcss/oxide': 4.3.
|
|
9724
|
+
'@tailwindcss/node': 4.3.1
|
|
9725
|
+
'@tailwindcss/oxide': 4.3.1
|
|
9915
9726
|
postcss: 8.5.15
|
|
9916
|
-
tailwindcss: 4.3.
|
|
9727
|
+
tailwindcss: 4.3.1
|
|
9917
9728
|
|
|
9918
|
-
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.
|
|
9729
|
+
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.1)':
|
|
9919
9730
|
dependencies:
|
|
9920
9731
|
postcss-selector-parser: 6.0.10
|
|
9921
|
-
tailwindcss: 4.3.
|
|
9732
|
+
tailwindcss: 4.3.1
|
|
9922
9733
|
|
|
9923
9734
|
'@tanstack/devtools-event-client@0.4.3': {}
|
|
9924
9735
|
|
|
@@ -10036,7 +9847,7 @@ snapshots:
|
|
|
10036
9847
|
'@textlint/types': 15.7.1
|
|
10037
9848
|
chalk: 4.1.2
|
|
10038
9849
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10039
|
-
js-yaml: 4.
|
|
9850
|
+
js-yaml: 4.1.1
|
|
10040
9851
|
lodash: 4.18.1
|
|
10041
9852
|
pluralize: 2.0.0
|
|
10042
9853
|
string-width: 4.2.3
|
|
@@ -10235,15 +10046,15 @@ snapshots:
|
|
|
10235
10046
|
|
|
10236
10047
|
'@types/unist@3.0.3': {}
|
|
10237
10048
|
|
|
10238
|
-
'@typescript-eslint/eslint-plugin@8.61.
|
|
10049
|
+
'@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
10050
|
dependencies:
|
|
10240
10051
|
'@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.
|
|
10052
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10053
|
+
'@typescript-eslint/scope-manager': 8.61.1
|
|
10054
|
+
'@typescript-eslint/type-utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10055
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10056
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10057
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10247
10058
|
ignore: 7.0.5
|
|
10248
10059
|
natural-compare: 1.4.0
|
|
10249
10060
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -10251,34 +10062,34 @@ snapshots:
|
|
|
10251
10062
|
transitivePeerDependencies:
|
|
10252
10063
|
- supports-color
|
|
10253
10064
|
|
|
10254
|
-
'@typescript-eslint/parser@8.61.
|
|
10065
|
+
'@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10255
10066
|
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.
|
|
10067
|
+
'@typescript-eslint/scope-manager': 8.61.1
|
|
10068
|
+
'@typescript-eslint/types': 8.61.1
|
|
10069
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10070
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10260
10071
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10261
|
-
eslint: 10.
|
|
10072
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10262
10073
|
typescript: 5.9.3
|
|
10263
10074
|
transitivePeerDependencies:
|
|
10264
10075
|
- supports-color
|
|
10265
10076
|
|
|
10266
|
-
'@typescript-eslint/project-service@8.61.
|
|
10077
|
+
'@typescript-eslint/project-service@8.61.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10267
10078
|
dependencies:
|
|
10268
|
-
'@typescript-eslint/tsconfig-utils': 8.61.
|
|
10269
|
-
'@typescript-eslint/types': 8.61.
|
|
10079
|
+
'@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3)
|
|
10080
|
+
'@typescript-eslint/types': 8.61.1
|
|
10270
10081
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10271
10082
|
typescript: 5.9.3
|
|
10272
10083
|
transitivePeerDependencies:
|
|
10273
10084
|
- supports-color
|
|
10274
10085
|
|
|
10275
|
-
'@typescript-eslint/rule-tester@8.61.
|
|
10086
|
+
'@typescript-eslint/rule-tester@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10276
10087
|
dependencies:
|
|
10277
|
-
'@typescript-eslint/parser': 8.61.
|
|
10278
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
10279
|
-
'@typescript-eslint/utils': 8.61.
|
|
10088
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10089
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10090
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10280
10091
|
ajv: 6.15.0
|
|
10281
|
-
eslint: 10.
|
|
10092
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10282
10093
|
json-stable-stringify-without-jsonify: 1.0.1
|
|
10283
10094
|
lodash.merge: 4.6.2
|
|
10284
10095
|
semver: 7.8.4
|
|
@@ -10286,35 +10097,35 @@ snapshots:
|
|
|
10286
10097
|
transitivePeerDependencies:
|
|
10287
10098
|
- supports-color
|
|
10288
10099
|
|
|
10289
|
-
'@typescript-eslint/scope-manager@8.61.
|
|
10100
|
+
'@typescript-eslint/scope-manager@8.61.1':
|
|
10290
10101
|
dependencies:
|
|
10291
|
-
'@typescript-eslint/types': 8.61.
|
|
10292
|
-
'@typescript-eslint/visitor-keys': 8.61.
|
|
10102
|
+
'@typescript-eslint/types': 8.61.1
|
|
10103
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10293
10104
|
|
|
10294
|
-
'@typescript-eslint/tsconfig-utils@8.61.
|
|
10105
|
+
'@typescript-eslint/tsconfig-utils@8.61.1(typescript@5.9.3)':
|
|
10295
10106
|
dependencies:
|
|
10296
10107
|
typescript: 5.9.3
|
|
10297
10108
|
|
|
10298
|
-
'@typescript-eslint/type-utils@8.61.
|
|
10109
|
+
'@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10299
10110
|
dependencies:
|
|
10300
|
-
'@typescript-eslint/types': 8.61.
|
|
10301
|
-
'@typescript-eslint/typescript-estree': 8.61.
|
|
10302
|
-
'@typescript-eslint/utils': 8.61.
|
|
10111
|
+
'@typescript-eslint/types': 8.61.1
|
|
10112
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10113
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10303
10114
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10304
|
-
eslint: 10.
|
|
10115
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10305
10116
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
10306
10117
|
typescript: 5.9.3
|
|
10307
10118
|
transitivePeerDependencies:
|
|
10308
10119
|
- supports-color
|
|
10309
10120
|
|
|
10310
|
-
'@typescript-eslint/types@8.61.
|
|
10121
|
+
'@typescript-eslint/types@8.61.1': {}
|
|
10311
10122
|
|
|
10312
|
-
'@typescript-eslint/typescript-estree@8.61.
|
|
10123
|
+
'@typescript-eslint/typescript-estree@8.61.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10313
10124
|
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.
|
|
10125
|
+
'@typescript-eslint/project-service': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10126
|
+
'@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3)
|
|
10127
|
+
'@typescript-eslint/types': 8.61.1
|
|
10128
|
+
'@typescript-eslint/visitor-keys': 8.61.1
|
|
10318
10129
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10319
10130
|
minimatch: 10.2.5
|
|
10320
10131
|
semver: 7.8.4
|
|
@@ -10324,20 +10135,20 @@ snapshots:
|
|
|
10324
10135
|
transitivePeerDependencies:
|
|
10325
10136
|
- supports-color
|
|
10326
10137
|
|
|
10327
|
-
'@typescript-eslint/utils@8.61.
|
|
10138
|
+
'@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10328
10139
|
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.
|
|
10140
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
10141
|
+
'@typescript-eslint/scope-manager': 8.61.1
|
|
10142
|
+
'@typescript-eslint/types': 8.61.1
|
|
10143
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10144
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
10334
10145
|
typescript: 5.9.3
|
|
10335
10146
|
transitivePeerDependencies:
|
|
10336
10147
|
- supports-color
|
|
10337
10148
|
|
|
10338
|
-
'@typescript-eslint/visitor-keys@8.61.
|
|
10149
|
+
'@typescript-eslint/visitor-keys@8.61.1':
|
|
10339
10150
|
dependencies:
|
|
10340
|
-
'@typescript-eslint/types': 8.61.
|
|
10151
|
+
'@typescript-eslint/types': 8.61.1
|
|
10341
10152
|
eslint-visitor-keys: 5.0.1
|
|
10342
10153
|
|
|
10343
10154
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260610.1':
|
|
@@ -10371,26 +10182,26 @@ snapshots:
|
|
|
10371
10182
|
'@typescript/native-preview-win32-arm64': 7.0.0-dev.20260610.1
|
|
10372
10183
|
'@typescript/native-preview-win32-x64': 7.0.0-dev.20260610.1
|
|
10373
10184
|
|
|
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.
|
|
10185
|
+
'@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
10186
|
dependencies:
|
|
10376
10187
|
'@babel/core': 7.29.7
|
|
10377
10188
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10378
10189
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10379
10190
|
'@rolldown/pluginutils': 1.0.1
|
|
10380
10191
|
'@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.
|
|
10192
|
+
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
10193
|
vue: 3.5.13(typescript@5.9.3)
|
|
10383
10194
|
transitivePeerDependencies:
|
|
10384
10195
|
- supports-color
|
|
10385
10196
|
|
|
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.
|
|
10197
|
+
'@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
10198
|
dependencies:
|
|
10388
10199
|
'@babel/core': 7.29.7
|
|
10389
10200
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10390
10201
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10391
10202
|
'@rolldown/pluginutils': 1.0.1
|
|
10392
10203
|
'@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.
|
|
10204
|
+
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
10205
|
vue: 3.5.38(typescript@5.9.3)
|
|
10395
10206
|
transitivePeerDependencies:
|
|
10396
10207
|
- supports-color
|
|
@@ -10459,7 +10270,7 @@ snapshots:
|
|
|
10459
10270
|
|
|
10460
10271
|
'@vue/devtools-api@6.6.4': {}
|
|
10461
10272
|
|
|
10462
|
-
'@vue/language-core@3.3.
|
|
10273
|
+
'@vue/language-core@3.3.5':
|
|
10463
10274
|
dependencies:
|
|
10464
10275
|
'@volar/language-core': 2.4.28
|
|
10465
10276
|
'@vue/compiler-dom': 3.5.13
|
|
@@ -10471,7 +10282,7 @@ snapshots:
|
|
|
10471
10282
|
|
|
10472
10283
|
'@vue/shared@3.5.13': {}
|
|
10473
10284
|
|
|
10474
|
-
'@zhennann/common-bin@4.0.1':
|
|
10285
|
+
'@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
|
|
10475
10286
|
dependencies:
|
|
10476
10287
|
chalk: 4.1.2
|
|
10477
10288
|
change-case: 4.1.2
|
|
@@ -10646,7 +10457,7 @@ snapshots:
|
|
|
10646
10457
|
dependencies:
|
|
10647
10458
|
bare-events: 2.9.1
|
|
10648
10459
|
bare-path: 3.0.1
|
|
10649
|
-
bare-stream: 2.13.
|
|
10460
|
+
bare-stream: 2.13.3(bare-events@2.9.1)
|
|
10650
10461
|
bare-url: 2.4.5
|
|
10651
10462
|
fast-fifo: 1.3.2
|
|
10652
10463
|
transitivePeerDependencies:
|
|
@@ -10659,9 +10470,10 @@ snapshots:
|
|
|
10659
10470
|
dependencies:
|
|
10660
10471
|
bare-os: 3.9.1
|
|
10661
10472
|
|
|
10662
|
-
bare-stream@2.13.
|
|
10473
|
+
bare-stream@2.13.3(bare-events@2.9.1):
|
|
10663
10474
|
dependencies:
|
|
10664
|
-
|
|
10475
|
+
b4a: 1.8.1
|
|
10476
|
+
streamx: 2.28.0
|
|
10665
10477
|
teex: 1.0.1
|
|
10666
10478
|
optionalDependencies:
|
|
10667
10479
|
bare-events: 2.9.1
|
|
@@ -10687,10 +10499,10 @@ snapshots:
|
|
|
10687
10499
|
readable-stream: 2.3.8
|
|
10688
10500
|
safe-buffer: 5.2.1
|
|
10689
10501
|
|
|
10690
|
-
body-parser@2.
|
|
10502
|
+
body-parser@2.3.0(supports-color@10.2.2):
|
|
10691
10503
|
dependencies:
|
|
10692
10504
|
bytes: 3.1.2
|
|
10693
|
-
content-type:
|
|
10505
|
+
content-type: 2.0.0
|
|
10694
10506
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10695
10507
|
http-errors: 2.0.1
|
|
10696
10508
|
iconv-lite: 0.7.2
|
|
@@ -10957,7 +10769,7 @@ snapshots:
|
|
|
10957
10769
|
|
|
10958
10770
|
compressible@2.0.18:
|
|
10959
10771
|
dependencies:
|
|
10960
|
-
mime-db: 1.
|
|
10772
|
+
mime-db: 1.52.0
|
|
10961
10773
|
|
|
10962
10774
|
compressing@1.10.5:
|
|
10963
10775
|
dependencies:
|
|
@@ -11259,7 +11071,7 @@ snapshots:
|
|
|
11259
11071
|
dependencies:
|
|
11260
11072
|
once: 1.4.0
|
|
11261
11073
|
|
|
11262
|
-
enhanced-resolve@5.
|
|
11074
|
+
enhanced-resolve@5.21.6:
|
|
11263
11075
|
dependencies:
|
|
11264
11076
|
graceful-fs: 4.2.11
|
|
11265
11077
|
tapable: 2.3.3
|
|
@@ -11448,58 +11260,58 @@ snapshots:
|
|
|
11448
11260
|
|
|
11449
11261
|
escape-string-regexp@5.0.0: {}
|
|
11450
11262
|
|
|
11451
|
-
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11263
|
+
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
11264
|
dependencies:
|
|
11453
|
-
eslint: 10.
|
|
11265
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11454
11266
|
esquery: 1.7.0
|
|
11455
11267
|
jsonc-eslint-parser: 3.1.0
|
|
11456
11268
|
optionalDependencies:
|
|
11457
11269
|
'@eslint/json': 1.2.0
|
|
11458
11270
|
|
|
11459
|
-
eslint-plugin-antfu@3.2.3(eslint@10.
|
|
11271
|
+
eslint-plugin-antfu@3.2.3(eslint@10.5.0(jiti@2.7.0)):
|
|
11460
11272
|
dependencies:
|
|
11461
|
-
eslint: 10.
|
|
11273
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11462
11274
|
|
|
11463
|
-
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.61.
|
|
11275
|
+
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
11276
|
dependencies:
|
|
11465
11277
|
'@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.
|
|
11278
|
+
'@typescript-eslint/rule-tester': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11279
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
11280
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11281
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11470
11282
|
|
|
11471
|
-
eslint-plugin-depend@1.5.0(eslint@10.
|
|
11283
|
+
eslint-plugin-depend@1.5.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11472
11284
|
dependencies:
|
|
11473
11285
|
empathic: 2.0.1
|
|
11474
|
-
eslint: 10.
|
|
11286
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11475
11287
|
module-replacements: 2.11.0
|
|
11476
11288
|
semver: 7.8.4
|
|
11477
11289
|
|
|
11478
|
-
eslint-plugin-eslint-comments@3.2.0(eslint@10.
|
|
11290
|
+
eslint-plugin-eslint-comments@3.2.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11479
11291
|
dependencies:
|
|
11480
11292
|
escape-string-regexp: 1.0.5
|
|
11481
|
-
eslint: 10.
|
|
11293
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11482
11294
|
ignore: 5.3.2
|
|
11483
11295
|
|
|
11484
|
-
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
11296
|
+
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0)):
|
|
11485
11297
|
dependencies:
|
|
11486
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11298
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11487
11299
|
'@eslint/core': 1.2.1
|
|
11488
11300
|
'@eslint/plugin-kit': 0.7.2
|
|
11489
11301
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11490
11302
|
diff-sequences: 29.6.3
|
|
11491
|
-
eslint: 10.
|
|
11492
|
-
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11303
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11304
|
+
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
11305
|
jsonc-eslint-parser: 3.1.0
|
|
11494
11306
|
natural-compare: 1.4.0
|
|
11495
11307
|
synckit: 0.11.13
|
|
11496
11308
|
transitivePeerDependencies:
|
|
11497
11309
|
- '@eslint/json'
|
|
11498
11310
|
|
|
11499
|
-
eslint-plugin-pnpm@1.6.1(eslint@10.
|
|
11311
|
+
eslint-plugin-pnpm@1.6.1(eslint@10.5.0(jiti@2.7.0)):
|
|
11500
11312
|
dependencies:
|
|
11501
11313
|
empathic: 2.0.1
|
|
11502
|
-
eslint: 10.
|
|
11314
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11503
11315
|
jsonc-eslint-parser: 3.1.0
|
|
11504
11316
|
pathe: 2.0.3
|
|
11505
11317
|
pnpm-workspace-yaml: 1.6.1
|
|
@@ -11507,56 +11319,56 @@ snapshots:
|
|
|
11507
11319
|
yaml: 2.9.0
|
|
11508
11320
|
yaml-eslint-parser: 2.0.0
|
|
11509
11321
|
|
|
11510
|
-
eslint-plugin-regexp@3.1.0(eslint@10.
|
|
11322
|
+
eslint-plugin-regexp@3.1.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11511
11323
|
dependencies:
|
|
11512
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11324
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11513
11325
|
'@eslint-community/regexpp': 4.12.2
|
|
11514
11326
|
comment-parser: 1.4.7
|
|
11515
|
-
eslint: 10.
|
|
11327
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11516
11328
|
jsdoc-type-pratt-parser: 7.2.0
|
|
11517
11329
|
refa: 0.12.1
|
|
11518
11330
|
regexp-ast-analysis: 0.7.1
|
|
11519
11331
|
scslre: 0.3.0
|
|
11520
11332
|
|
|
11521
|
-
eslint-plugin-toml@1.4.0(eslint@10.
|
|
11333
|
+
eslint-plugin-toml@1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2):
|
|
11522
11334
|
dependencies:
|
|
11523
11335
|
'@eslint/core': 1.2.1
|
|
11524
11336
|
'@eslint/plugin-kit': 0.7.2
|
|
11525
11337
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11526
11338
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11527
|
-
eslint: 10.
|
|
11339
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11528
11340
|
toml-eslint-parser: 1.0.3
|
|
11529
11341
|
transitivePeerDependencies:
|
|
11530
11342
|
- supports-color
|
|
11531
11343
|
|
|
11532
|
-
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.61.
|
|
11344
|
+
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
11345
|
dependencies:
|
|
11534
|
-
eslint: 10.
|
|
11346
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11535
11347
|
optionalDependencies:
|
|
11536
|
-
'@typescript-eslint/eslint-plugin': 8.61.
|
|
11348
|
+
'@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
11349
|
|
|
11538
|
-
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
11350
|
+
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
11351
|
dependencies:
|
|
11540
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11541
|
-
eslint: 10.
|
|
11352
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11353
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11542
11354
|
natural-compare: 1.4.0
|
|
11543
11355
|
nth-check: 2.1.1
|
|
11544
11356
|
postcss-selector-parser: 7.1.2
|
|
11545
11357
|
semver: 7.8.4
|
|
11546
|
-
vue-eslint-parser: 10.4.1(eslint@10.
|
|
11358
|
+
vue-eslint-parser: 10.4.1(eslint@10.5.0(jiti@2.7.0))
|
|
11547
11359
|
xml-name-validator: 4.0.0
|
|
11548
11360
|
optionalDependencies:
|
|
11549
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
11550
|
-
'@typescript-eslint/parser': 8.61.
|
|
11361
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
11362
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
11551
11363
|
|
|
11552
|
-
eslint-plugin-yml@3.4.0(eslint@10.
|
|
11364
|
+
eslint-plugin-yml@3.4.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11553
11365
|
dependencies:
|
|
11554
11366
|
'@eslint/core': 1.2.1
|
|
11555
11367
|
'@eslint/plugin-kit': 0.7.2
|
|
11556
11368
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11557
11369
|
diff-sequences: 29.6.3
|
|
11558
11370
|
escape-string-regexp: 5.0.0
|
|
11559
|
-
eslint: 10.
|
|
11371
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
11560
11372
|
natural-compare: 1.4.0
|
|
11561
11373
|
yaml-eslint-parser: 2.0.0
|
|
11562
11374
|
|
|
@@ -11573,9 +11385,9 @@ snapshots:
|
|
|
11573
11385
|
|
|
11574
11386
|
eslint-visitor-keys@5.0.1: {}
|
|
11575
11387
|
|
|
11576
|
-
eslint@10.
|
|
11388
|
+
eslint@10.5.0(jiti@2.7.0):
|
|
11577
11389
|
dependencies:
|
|
11578
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11390
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11579
11391
|
'@eslint-community/regexpp': 4.12.2
|
|
11580
11392
|
'@eslint/config-array': 0.23.5
|
|
11581
11393
|
'@eslint/config-helpers': 0.6.0
|
|
@@ -11668,7 +11480,7 @@ snapshots:
|
|
|
11668
11480
|
express@5.2.1(supports-color@10.2.2):
|
|
11669
11481
|
dependencies:
|
|
11670
11482
|
accepts: 2.0.0
|
|
11671
|
-
body-parser: 2.
|
|
11483
|
+
body-parser: 2.3.0(supports-color@10.2.2)
|
|
11672
11484
|
content-disposition: 1.1.0
|
|
11673
11485
|
content-type: 1.0.5
|
|
11674
11486
|
cookie: 0.7.2
|
|
@@ -12000,7 +11812,7 @@ snapshots:
|
|
|
12000
11812
|
capital-case: 1.0.4
|
|
12001
11813
|
tslib: 2.8.1
|
|
12002
11814
|
|
|
12003
|
-
hono@4.12.
|
|
11815
|
+
hono@4.12.26: {}
|
|
12004
11816
|
|
|
12005
11817
|
hookable@6.1.1: {}
|
|
12006
11818
|
|
|
@@ -12293,10 +12105,6 @@ snapshots:
|
|
|
12293
12105
|
dependencies:
|
|
12294
12106
|
argparse: 2.0.1
|
|
12295
12107
|
|
|
12296
|
-
js-yaml@4.2.0:
|
|
12297
|
-
dependencies:
|
|
12298
|
-
argparse: 2.0.1
|
|
12299
|
-
|
|
12300
12108
|
jsdoc-type-pratt-parser@7.1.1: {}
|
|
12301
12109
|
|
|
12302
12110
|
jsdoc-type-pratt-parser@7.2.0: {}
|
|
@@ -13136,27 +12944,27 @@ snapshots:
|
|
|
13136
12944
|
'@oxfmt/binding-win32-ia32-msvc': 0.45.0
|
|
13137
12945
|
'@oxfmt/binding-win32-x64-msvc': 0.45.0
|
|
13138
12946
|
|
|
13139
|
-
oxlint@1.
|
|
12947
|
+
oxlint@1.70.0:
|
|
13140
12948
|
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.
|
|
12949
|
+
'@oxlint/binding-android-arm-eabi': 1.70.0
|
|
12950
|
+
'@oxlint/binding-android-arm64': 1.70.0
|
|
12951
|
+
'@oxlint/binding-darwin-arm64': 1.70.0
|
|
12952
|
+
'@oxlint/binding-darwin-x64': 1.70.0
|
|
12953
|
+
'@oxlint/binding-freebsd-x64': 1.70.0
|
|
12954
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.70.0
|
|
12955
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.70.0
|
|
12956
|
+
'@oxlint/binding-linux-arm64-gnu': 1.70.0
|
|
12957
|
+
'@oxlint/binding-linux-arm64-musl': 1.70.0
|
|
12958
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.70.0
|
|
12959
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.70.0
|
|
12960
|
+
'@oxlint/binding-linux-riscv64-musl': 1.70.0
|
|
12961
|
+
'@oxlint/binding-linux-s390x-gnu': 1.70.0
|
|
12962
|
+
'@oxlint/binding-linux-x64-gnu': 1.70.0
|
|
12963
|
+
'@oxlint/binding-linux-x64-musl': 1.70.0
|
|
12964
|
+
'@oxlint/binding-openharmony-arm64': 1.70.0
|
|
12965
|
+
'@oxlint/binding-win32-arm64-msvc': 1.70.0
|
|
12966
|
+
'@oxlint/binding-win32-ia32-msvc': 1.70.0
|
|
12967
|
+
'@oxlint/binding-win32-x64-msvc': 1.70.0
|
|
13160
12968
|
|
|
13161
12969
|
p-limit@2.3.0:
|
|
13162
12970
|
dependencies:
|
|
@@ -13369,10 +13177,10 @@ snapshots:
|
|
|
13369
13177
|
|
|
13370
13178
|
quansync@1.0.0: {}
|
|
13371
13179
|
|
|
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.
|
|
13180
|
+
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
13181
|
dependencies:
|
|
13374
13182
|
'@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.
|
|
13183
|
+
'@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
13184
|
chalk: 3.0.0
|
|
13377
13185
|
esbuild: 0.25.12
|
|
13378
13186
|
fs-extra: 11.3.5
|
|
@@ -13406,7 +13214,7 @@ snapshots:
|
|
|
13406
13214
|
- workbox-build
|
|
13407
13215
|
- yaml
|
|
13408
13216
|
|
|
13409
|
-
quasar@2.
|
|
13217
|
+
quasar@2.20.1: {}
|
|
13410
13218
|
|
|
13411
13219
|
queue-microtask@1.2.3: {}
|
|
13412
13220
|
|
|
@@ -13422,7 +13230,7 @@ snapshots:
|
|
|
13422
13230
|
rc-config-loader@4.1.4:
|
|
13423
13231
|
dependencies:
|
|
13424
13232
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13425
|
-
js-yaml: 4.
|
|
13233
|
+
js-yaml: 4.1.1
|
|
13426
13234
|
json5: 2.2.3
|
|
13427
13235
|
require-from-string: 2.0.2
|
|
13428
13236
|
transitivePeerDependencies:
|
|
@@ -13545,7 +13353,7 @@ snapshots:
|
|
|
13545
13353
|
glob: 13.0.6
|
|
13546
13354
|
package-json-from-dist: 1.0.1
|
|
13547
13355
|
|
|
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.
|
|
13356
|
+
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
13357
|
dependencies:
|
|
13550
13358
|
'@babel/generator': 8.0.0-rc.2
|
|
13551
13359
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
@@ -13560,11 +13368,11 @@ snapshots:
|
|
|
13560
13368
|
optionalDependencies:
|
|
13561
13369
|
'@typescript/native-preview': 7.0.0-dev.20260610.1
|
|
13562
13370
|
typescript: 5.9.3
|
|
13563
|
-
vue-tsc: 3.3.
|
|
13371
|
+
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13564
13372
|
transitivePeerDependencies:
|
|
13565
13373
|
- oxc-resolver
|
|
13566
13374
|
|
|
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.
|
|
13375
|
+
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
13376
|
dependencies:
|
|
13569
13377
|
'@babel/generator': 8.0.0-rc.3
|
|
13570
13378
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
@@ -13580,7 +13388,7 @@ snapshots:
|
|
|
13580
13388
|
optionalDependencies:
|
|
13581
13389
|
'@typescript/native-preview': 7.0.0-dev.20260610.1
|
|
13582
13390
|
typescript: 5.9.3
|
|
13583
|
-
vue-tsc: 3.3.
|
|
13391
|
+
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13584
13392
|
transitivePeerDependencies:
|
|
13585
13393
|
- oxc-resolver
|
|
13586
13394
|
|
|
@@ -13647,7 +13455,7 @@ snapshots:
|
|
|
13647
13455
|
'@rolldown/binding-win32-arm64-msvc': 1.1.0
|
|
13648
13456
|
'@rolldown/binding-win32-x64-msvc': 1.1.0
|
|
13649
13457
|
|
|
13650
|
-
rollup-plugin-visualizer@7.0.1(rolldown@1.1.0)
|
|
13458
|
+
rollup-plugin-visualizer@7.0.1(rolldown@1.1.0):
|
|
13651
13459
|
dependencies:
|
|
13652
13460
|
open: 11.0.0
|
|
13653
13461
|
picomatch: 4.0.4
|
|
@@ -13655,39 +13463,6 @@ snapshots:
|
|
|
13655
13463
|
yargs: 18.0.0
|
|
13656
13464
|
optionalDependencies:
|
|
13657
13465
|
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
13466
|
|
|
13692
13467
|
router@2.2.0(supports-color@10.2.2):
|
|
13693
13468
|
dependencies:
|
|
@@ -13868,7 +13643,7 @@ snapshots:
|
|
|
13868
13643
|
tslib: 2.8.1
|
|
13869
13644
|
upper-case-first: 2.0.2
|
|
13870
13645
|
|
|
13871
|
-
serialize-javascript@7.0.
|
|
13646
|
+
serialize-javascript@7.0.6: {}
|
|
13872
13647
|
|
|
13873
13648
|
serve-static@2.2.1:
|
|
13874
13649
|
dependencies:
|
|
@@ -14001,7 +13776,7 @@ snapshots:
|
|
|
14001
13776
|
|
|
14002
13777
|
streamifier@0.1.1: {}
|
|
14003
13778
|
|
|
14004
|
-
streamx@2.
|
|
13779
|
+
streamx@2.28.0:
|
|
14005
13780
|
dependencies:
|
|
14006
13781
|
events-universal: 1.0.1
|
|
14007
13782
|
fast-fifo: 1.3.2
|
|
@@ -14104,7 +13879,7 @@ snapshots:
|
|
|
14104
13879
|
|
|
14105
13880
|
tagged-tag@1.0.0: {}
|
|
14106
13881
|
|
|
14107
|
-
tailwindcss@4.3.
|
|
13882
|
+
tailwindcss@4.3.1: {}
|
|
14108
13883
|
|
|
14109
13884
|
tapable@2.3.3: {}
|
|
14110
13885
|
|
|
@@ -14123,7 +13898,7 @@ snapshots:
|
|
|
14123
13898
|
b4a: 1.8.1
|
|
14124
13899
|
bare-fs: 4.7.2
|
|
14125
13900
|
fast-fifo: 1.3.2
|
|
14126
|
-
streamx: 2.
|
|
13901
|
+
streamx: 2.28.0
|
|
14127
13902
|
transitivePeerDependencies:
|
|
14128
13903
|
- bare-abort-controller
|
|
14129
13904
|
- bare-buffer
|
|
@@ -14131,7 +13906,7 @@ snapshots:
|
|
|
14131
13906
|
|
|
14132
13907
|
teex@1.0.1:
|
|
14133
13908
|
dependencies:
|
|
14134
|
-
streamx: 2.
|
|
13909
|
+
streamx: 2.28.0
|
|
14135
13910
|
transitivePeerDependencies:
|
|
14136
13911
|
- bare-abort-controller
|
|
14137
13912
|
- react-native-b4a
|
|
@@ -14252,7 +14027,7 @@ snapshots:
|
|
|
14252
14027
|
optionalDependencies:
|
|
14253
14028
|
typescript: 5.9.3
|
|
14254
14029
|
|
|
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.
|
|
14030
|
+
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
14031
|
dependencies:
|
|
14257
14032
|
ansis: 4.3.1
|
|
14258
14033
|
cac: 7.0.0
|
|
@@ -14263,7 +14038,7 @@ snapshots:
|
|
|
14263
14038
|
obug: 2.1.2
|
|
14264
14039
|
picomatch: 4.0.4
|
|
14265
14040
|
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.
|
|
14041
|
+
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
14042
|
semver: 7.8.4
|
|
14268
14043
|
tinyexec: 1.2.4
|
|
14269
14044
|
tinyglobby: 0.2.17
|
|
@@ -14305,13 +14080,13 @@ snapshots:
|
|
|
14305
14080
|
es-errors: 1.3.0
|
|
14306
14081
|
is-typed-array: 1.1.15
|
|
14307
14082
|
|
|
14308
|
-
typescript-eslint@8.61.
|
|
14083
|
+
typescript-eslint@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3):
|
|
14309
14084
|
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.
|
|
14085
|
+
'@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)
|
|
14086
|
+
'@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
14087
|
+
'@typescript-eslint/typescript-estree': 8.61.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
14088
|
+
'@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14089
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
14315
14090
|
typescript: 5.9.3
|
|
14316
14091
|
transitivePeerDependencies:
|
|
14317
14092
|
- supports-color
|
|
@@ -14459,10 +14234,10 @@ snapshots:
|
|
|
14459
14234
|
unist-util-stringify-position: 2.0.3
|
|
14460
14235
|
vfile-message: 2.0.4
|
|
14461
14236
|
|
|
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.
|
|
14237
|
+
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
14238
|
dependencies:
|
|
14464
14239
|
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.
|
|
14240
|
+
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
14241
|
|
|
14467
14242
|
vite-plugin-fake-server-turbo@3.0.18:
|
|
14468
14243
|
dependencies:
|
|
@@ -14474,23 +14249,6 @@ snapshots:
|
|
|
14474
14249
|
path-to-regexp: 8.4.2
|
|
14475
14250
|
picocolors: 1.1.1
|
|
14476
14251
|
|
|
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
14252
|
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
14253
|
dependencies:
|
|
14496
14254
|
lightningcss: 1.32.0
|
|
@@ -14508,23 +14266,6 @@ snapshots:
|
|
|
14508
14266
|
terser: 5.48.0
|
|
14509
14267
|
yaml: 2.9.0
|
|
14510
14268
|
|
|
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
14269
|
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
14270
|
dependencies:
|
|
14530
14271
|
lightningcss: 1.32.0
|
|
@@ -14548,10 +14289,10 @@ snapshots:
|
|
|
14548
14289
|
dependencies:
|
|
14549
14290
|
vue: 3.5.38(typescript@5.9.3)
|
|
14550
14291
|
|
|
14551
|
-
vue-eslint-parser@10.4.1(eslint@10.
|
|
14292
|
+
vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)):
|
|
14552
14293
|
dependencies:
|
|
14553
14294
|
debug: 4.4.3(supports-color@10.2.2)
|
|
14554
|
-
eslint: 10.
|
|
14295
|
+
eslint: 10.5.0(jiti@2.7.0)
|
|
14555
14296
|
eslint-scope: 9.1.2
|
|
14556
14297
|
eslint-visitor-keys: 5.0.1
|
|
14557
14298
|
espree: 11.2.0
|
|
@@ -14564,10 +14305,10 @@ snapshots:
|
|
|
14564
14305
|
dependencies:
|
|
14565
14306
|
vue: 3.5.38(typescript@5.9.3)
|
|
14566
14307
|
|
|
14567
|
-
vue-tsc@3.3.
|
|
14308
|
+
vue-tsc@3.3.5(typescript@5.9.3):
|
|
14568
14309
|
dependencies:
|
|
14569
14310
|
'@volar/typescript': 2.4.28
|
|
14570
|
-
'@vue/language-core': 3.3.
|
|
14311
|
+
'@vue/language-core': 3.3.5
|
|
14571
14312
|
typescript: 5.9.3
|
|
14572
14313
|
|
|
14573
14314
|
vue3-browser-compiler-yx@1.0.4(vue@3.5.38(typescript@5.9.3)):
|