cabloy 5.1.64 → 5.1.66
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/CHANGELOG.md +50 -0
- package/cabloy-docs/.vitepress/config.mjs +1 -1
- package/cabloy-docs/backend/crud-workflow.md +33 -0
- package/cabloy-docs/backend/master-detail-workflow.md +149 -0
- package/cabloy-docs/frontend/bean-scene-authoring.md +1 -1
- package/cabloy-docs/frontend/cli.md +12 -1
- package/cabloy-docs/frontend/command-scene-authoring.md +12 -1
- package/cabloy-docs/frontend/component-guide.md +10 -0
- package/cabloy-docs/frontend/permission-formscene-action-visibility-guide.md +69 -7
- package/cabloy-docs/frontend/table-cell-cookbook.md +10 -0
- package/cabloy-docs/fullstack/backend-metadata-to-frontend-table-actions.md +83 -2
- package/cabloy-docs/reference/bean-scene-boilerplates.md +9 -4
- package/package.json +1 -1
- package/vona/packages-cli/cabloy-cli/package.json +1 -1
- package/vona/packages-cli/cabloy-cli/src/lib/local.helper.ts +38 -0
- package/vona/packages-cli/cli/package.json +1 -1
- package/vona/packages-cli/cli-set-api/cli/templates/tools/masterDetail/boilerplate/dto/<%=argv.detailDtoBaseName%>.tsx_ +18 -0
- package/vona/packages-cli/cli-set-api/cli/templates/tools/masterDetail/boilerplate/dto/<%=argv.detailDtoMutateName%>.tsx_ +17 -0
- package/vona/packages-cli/cli-set-api/cli/templates/tools/masterDetail/boilerplate/dto/<%=argv.detailDtoResItemName%>.tsx_ +60 -0
- package/vona/packages-cli/cli-set-api/cli/templates/tools/masterDetail/boilerplate/dto/<%=argv.detailDtoViewName%>.tsx_ +17 -0
- package/vona/packages-cli/cli-set-api/package.json +1 -1
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.create.bean.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.create.module.ts +3 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.create.suite.ts +1 -1
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.create.test.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.asset.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.config.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.constant.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.error.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.lib.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.locale.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.main.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.monkey.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.static.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.init.types.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.tools.crud.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.tools.crudBasic.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.tools.crudStart.ts +2 -6
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.tools.masterDetail.ts +699 -0
- package/vona/packages-cli/cli-set-api/src/lib/bean/cli.tools.metadata.ts +1 -2
- package/vona/packages-cli/cli-set-api/src/lib/beans.ts +2 -0
- package/vona/packages-cli/cli-set-api/src/lib/command/tools.masterDetail.ts +78 -0
- package/vona/packages-cli/cli-set-api/src/lib/commands.ts +2 -0
- package/vona/packages-vona/vona/package.json +1 -1
- package/vona/packages-vona/vona-core/package.json +1 -1
- package/vona/packages-vona/vona-core/src/lib/mappedClass/type.ts +1 -0
- package/vona/packages-vona/vona-core/src/lib/mappedClass/utils.ts +36 -14
- package/vona/packages-vona/vona-mock/package.json +1 -1
- package/vona/pnpm-lock.yaml +29 -11
- package/vona/src/suite/a-training/modules/training-record/src/entity/record.tsx +1 -7
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +3 -0
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +3 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordBase.tsx +8 -2
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordMutate.tsx +1 -15
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordResItem.tsx +27 -8
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordView.tsx +1 -12
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentCreate.tsx +6 -4
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentSelectReq.tsx +3 -6
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentSummary.tsx +1 -1
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentUpdate.tsx +14 -1
- package/vona/src/suite/a-training/modules/training-student/src/dto/studentView.tsx +14 -1
- package/vona/src/suite/a-training/modules/training-student/src/entity/student.tsx +1 -5
- package/vona/src/suite/a-training/modules/training-student/src/service/student.ts +9 -4
- package/vona/src/suite-vendor/a-vona/modules/a-core/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-openapiutils/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-openapiutils/src/lib/const/decorator.ts +3 -1
- package/vona/src/suite-vendor/a-vona/modules/a-openapiutils/src/lib/schema/makeSchemaLikes.ts +21 -17
- package/vona/src/suite-vendor/a-vona/modules/a-openapiutils/src/lib/utils.ts +44 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoGet.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoMutate.ts +8 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/relations_.ts +32 -16
- package/vona/src/suite-vendor/a-vona/modules/a-web/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-web/src/lib/decorator/bean.ts +26 -5
- package/vona/src/suite-vendor/a-vona/package.json +1 -1
- package/zova/packages-cli/cli/package.json +3 -3
- package/zova/packages-cli/cli-set-front/cli/templates/create/component/boilerplateDetailsActionBulk/controller.tsx_ +31 -0
- package/zova/packages-cli/cli-set-front/cli/templates/rest/component.ts +24 -2
- package/zova/packages-cli/cli-set-front/cli/templates/rest/render.ts +4 -0
- package/zova/packages-cli/cli-set-front/package.json +2 -2
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.create.bean.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.create.mock.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.create.module.ts +3 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.create.suite.ts +1 -1
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.asset.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.config.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.constant.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.error.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.icon.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.lib.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.locale.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.main.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.mainSys.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.monkey.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.monkeySys.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.init.types.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.openapi.config.ts +1 -4
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.openapi.generate.ts +2 -2
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.anotherRender.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.anotherStyle.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.componentEmits.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.componentGeneric.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.componentModel.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.componentProps.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.componentSlots.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.firstRender.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.firstStyle.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.pageParams.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.pageQuery.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.refactor.renameComponent.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/bean/cli.tools.metadata.ts +1 -2
- package/zova/packages-cli/cli-set-front/src/lib/common/cliCreateComponent.ts +2 -6
- package/zova/packages-cli/cli-set-front/src/lib/common/cliCreatePage.ts +2 -6
- package/zova/packages-zova/zova/package.json +2 -2
- package/zova/pnpm-lock.yaml +744 -884
- package/zova/src/suite/a-training/modules/training-student/package.json +2 -1
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/bean/behavior.appModal.tsx +131 -13
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/config/config.ts +15 -0
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/service/appModal.ts +23 -5
- package/zova/src/suite/cabloy-basic/modules/basic-app/src/types/appModal.ts +30 -4
- package/zova/src/suite/cabloy-basic/modules/basic-details/package.json +6 -1
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/.metadata/component/blockForm.ts +31 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/.metadata/component/blockTable.ts +31 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/.metadata/component/blockToolbarBulk.ts +31 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/.metadata/index.ts +204 -9
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/bean/command.delete.tsx +47 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/bean/tableCell.actionDelete.tsx +52 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/bean/tableCell.actionOperationsRow.tsx +72 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/bean/tableCell.actionUpdate.tsx +73 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/bean/tableCell.actionView.tsx +64 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/bean/tableCell.lineNumber.tsx +30 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/actionCreate/controller.tsx +31 -7
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/blockDetails/controller.tsx +28 -12
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/blockForm/controller.tsx +53 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/blockTable/controller.tsx +49 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/{blockDetailsToolbarBulk → blockToolbarBulk}/controller.tsx +6 -4
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/formFieldDetails/controller.tsx +24 -12
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/config/locale/en-us.ts +5 -1
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/config/locale/zh-cn.ts +5 -1
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/lib/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/lib/utils.ts +12 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/service/detail.tsx +172 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/types/detail.ts +18 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/types/details.ts +11 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/types/dialogForm.ts +22 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/types/index.ts +2 -0
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/package.json +1 -1
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/src/page/entry/controller.tsx +1 -2
- package/zova/src/suite-vendor/a-cabloy/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-command/cli/command/boilerplate/{{sceneName}}.{{beanName}}.tsx_ +6 -1
- package/zova/src/suite-vendor/a-zova/modules/a-command/cli/commandBulk/boilerplate/{{sceneName}}.{{beanName}}.tsx_ +6 -1
- package/zova/src/suite-vendor/a-zova/modules/a-command/cli/commandDetailsRow/boilerplate/{{sceneName}}.{{beanName}}.tsx_ +20 -0
- package/zova/src/suite-vendor/a-zova/modules/a-command/cli/commandRow/boilerplate/{{sceneName}}.{{beanName}}.tsx_ +6 -1
- package/zova/src/suite-vendor/a-zova/modules/a-command/package.json +3 -2
- package/zova/src/suite-vendor/a-zova/modules/a-command/src/types/command.ts +2 -0
- package/zova/src/suite-vendor/a-zova/modules/a-form/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-form/src/component/form/controller.tsx +1 -0
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/lib/schema.ts +20 -4
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/action.ts +2 -1
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/detail/detail.ts +10 -0
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/detail/details.ts +4 -1
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/detail/detailsActionRow.ts +24 -0
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/detail/index.ts +2 -0
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/permissions.ts +4 -0
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/types/rest.ts +2 -0
- package/zova/src/suite-vendor/a-zova/modules/a-table/cli/detailsActionRow/boilerplate/{{sceneName}}.{{beanName}}.tsx_ +24 -0
- package/zova/src/suite-vendor/a-zova/modules/a-table/package.json +3 -2
- package/zova/src/suite-vendor/a-zova/modules/a-table/src/component/table/controller.tsx +5 -3
- package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/package.json +6 -6
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/.metadata/component/blockDetailsToolbarBulk.ts +0 -31
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -56,7 +56,7 @@ importers:
|
|
|
56
56
|
version: 0.5.20(tailwindcss@4.3.1)
|
|
57
57
|
'@tanstack/query-core':
|
|
58
58
|
specifier: ^5.100.10
|
|
59
|
-
version: 5.101.
|
|
59
|
+
version: 5.101.1
|
|
60
60
|
'@tanstack/table-core':
|
|
61
61
|
specifier: ^8.21.3
|
|
62
62
|
version: 8.21.3
|
|
@@ -65,16 +65,16 @@ importers:
|
|
|
65
65
|
version: 1.33.0(vue@3.5.38(typescript@5.9.3))
|
|
66
66
|
'@tanstack/vue-query':
|
|
67
67
|
specifier: ^5.100.10
|
|
68
|
-
version: 5.101.
|
|
68
|
+
version: 5.101.1(vue@3.5.38(typescript@5.9.3))
|
|
69
69
|
'@tanstack/vue-table':
|
|
70
70
|
specifier: ^8.21.3
|
|
71
71
|
version: 8.21.3(vue@3.5.38(typescript@5.9.3))
|
|
72
72
|
autoprefixer:
|
|
73
73
|
specifier: ^10.4.27
|
|
74
|
-
version: 10.5.
|
|
74
|
+
version: 10.5.1(postcss@8.5.15)
|
|
75
75
|
axios:
|
|
76
76
|
specifier: ^1.16.1
|
|
77
|
-
version: 1.
|
|
77
|
+
version: 1.18.1
|
|
78
78
|
compression:
|
|
79
79
|
specifier: ^1.8.1
|
|
80
80
|
version: 1.8.1
|
|
@@ -95,7 +95,7 @@ importers:
|
|
|
95
95
|
version: 6.1.7
|
|
96
96
|
express:
|
|
97
97
|
specifier: ^5.2.1
|
|
98
|
-
version: 5.2.1
|
|
98
|
+
version: 5.2.1
|
|
99
99
|
luxon:
|
|
100
100
|
specifier: ^3.7.2
|
|
101
101
|
version: 3.7.2
|
|
@@ -305,26 +305,26 @@ importers:
|
|
|
305
305
|
version: link:src/suite/a-training/modules/training-student
|
|
306
306
|
devDependencies:
|
|
307
307
|
'@cabloy/cli':
|
|
308
|
-
specifier: ^3.1.
|
|
309
|
-
version: 3.1.
|
|
308
|
+
specifier: ^3.1.21
|
|
309
|
+
version: 3.1.21(vue@3.5.38(typescript@5.9.3))
|
|
310
310
|
'@cabloy/lint':
|
|
311
311
|
specifier: ^5.1.27
|
|
312
|
-
version: 5.1.30(@typescript-eslint/eslint-plugin@8.
|
|
312
|
+
version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(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.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(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.71.0)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
|
|
313
313
|
'@cabloy/openapi-typescript':
|
|
314
314
|
specifier: ^7.9.2
|
|
315
315
|
version: 7.9.2(typescript@5.9.3)
|
|
316
316
|
'@quasar/app-vite':
|
|
317
317
|
specifier: npm:@cabloy/quasar-app-vite@^2.5.10
|
|
318
|
-
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.
|
|
318
|
+
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.20.0)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.3)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)'
|
|
319
319
|
'@types/luxon':
|
|
320
320
|
specifier: ^3.7.1
|
|
321
|
-
version: 3.7.
|
|
321
|
+
version: 3.7.2
|
|
322
322
|
'@types/node':
|
|
323
323
|
specifier: ^22.19.17
|
|
324
|
-
version: 22.
|
|
324
|
+
version: 22.20.0
|
|
325
325
|
'@vitejs/plugin-vue':
|
|
326
326
|
specifier: ^6.0.7
|
|
327
|
-
version: 6.0.7(vite@8.0
|
|
327
|
+
version: 6.0.7(vite@8.1.0(@types/node@22.20.0)(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))
|
|
328
328
|
concurrently:
|
|
329
329
|
specifier: ^8.2.2
|
|
330
330
|
version: 8.2.2
|
|
@@ -336,16 +336,16 @@ importers:
|
|
|
336
336
|
version: 0.45.0
|
|
337
337
|
oxlint:
|
|
338
338
|
specifier: ^1.65.0
|
|
339
|
-
version: 1.
|
|
339
|
+
version: 1.71.0
|
|
340
340
|
quasar-app-extension-zova:
|
|
341
341
|
specifier: ^1.3.1
|
|
342
|
-
version: 1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.
|
|
342
|
+
version: 1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.3)(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)
|
|
343
343
|
sass:
|
|
344
344
|
specifier: ^1.101.0
|
|
345
345
|
version: 1.101.0
|
|
346
346
|
textlint:
|
|
347
347
|
specifier: ^15.7.0
|
|
348
|
-
version: 15.7.1
|
|
348
|
+
version: 15.7.1
|
|
349
349
|
textlint-rule-en-no-mixed-period:
|
|
350
350
|
specifier: ^3.0.2
|
|
351
351
|
version: 3.0.2
|
|
@@ -363,7 +363,7 @@ importers:
|
|
|
363
363
|
version: 5.9.3
|
|
364
364
|
vite:
|
|
365
365
|
specifier: ^8.0.14
|
|
366
|
-
version: 8.0
|
|
366
|
+
version: 8.1.0(@types/node@22.20.0)(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)
|
|
367
367
|
vite-plugin-fake-server-turbo:
|
|
368
368
|
specifier: ^3.0.18
|
|
369
369
|
version: 3.0.18
|
|
@@ -380,8 +380,8 @@ importers:
|
|
|
380
380
|
packages-cli/cli:
|
|
381
381
|
dependencies:
|
|
382
382
|
'@cabloy/cli':
|
|
383
|
-
specifier: ^3.1.
|
|
384
|
-
version: 3.1.
|
|
383
|
+
specifier: ^3.1.21
|
|
384
|
+
version: 3.1.21(vue@3.5.38(typescript@5.9.3))
|
|
385
385
|
'@cabloy/process-helper':
|
|
386
386
|
specifier: ^3.1.8
|
|
387
387
|
version: 3.1.8
|
|
@@ -390,9 +390,9 @@ importers:
|
|
|
390
390
|
version: 11.3.5
|
|
391
391
|
semver:
|
|
392
392
|
specifier: ^7.6.2
|
|
393
|
-
version: 7.8.
|
|
393
|
+
version: 7.8.5
|
|
394
394
|
zova-cli-set-front:
|
|
395
|
-
specifier: ^1.2.
|
|
395
|
+
specifier: ^1.2.82
|
|
396
396
|
version: link:../cli-set-front
|
|
397
397
|
devDependencies:
|
|
398
398
|
clean-package:
|
|
@@ -414,8 +414,8 @@ importers:
|
|
|
414
414
|
specifier: ^7.28.6
|
|
415
415
|
version: 7.29.7(@babel/core@7.29.7)
|
|
416
416
|
'@cabloy/cli':
|
|
417
|
-
specifier: ^3.1.
|
|
418
|
-
version: 3.1.
|
|
417
|
+
specifier: ^3.1.21
|
|
418
|
+
version: 3.1.21(vue@3.5.38(typescript@5.9.3))
|
|
419
419
|
'@cabloy/extend':
|
|
420
420
|
specifier: ^3.2.8
|
|
421
421
|
version: 3.2.8
|
|
@@ -430,7 +430,7 @@ importers:
|
|
|
430
430
|
version: 2.1.22
|
|
431
431
|
'@cabloy/vite-plugin-babel':
|
|
432
432
|
specifier: ^1.3.3
|
|
433
|
-
version: 1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
433
|
+
version: 1.3.3(@babel/core@7.29.7)(vite@8.1.0(@types/node@22.20.0)(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))
|
|
434
434
|
'@cabloy/vue-babel-plugin-jsx':
|
|
435
435
|
specifier: ^2.0.1
|
|
436
436
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -439,10 +439,10 @@ importers:
|
|
|
439
439
|
version: link:../../packages-utils/word-utils
|
|
440
440
|
'@typescript/native-preview':
|
|
441
441
|
specifier: ^7.0.0-dev.20260320.1
|
|
442
|
-
version: 7.0.0-dev.
|
|
442
|
+
version: 7.0.0-dev.20260624.1
|
|
443
443
|
'@vitejs/plugin-vue-jsx':
|
|
444
444
|
specifier: ^5.1.5
|
|
445
|
-
version: 5.1.
|
|
445
|
+
version: 5.1.6(vite@8.1.0(@types/node@22.20.0)(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))
|
|
446
446
|
babel-plugin-transform-typescript-metadata:
|
|
447
447
|
specifier: ^0.4.0
|
|
448
448
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -475,16 +475,16 @@ importers:
|
|
|
475
475
|
version: 5.0.10
|
|
476
476
|
rolldown:
|
|
477
477
|
specifier: ^1.0.0-rc.11
|
|
478
|
-
version: 1.1.
|
|
478
|
+
version: 1.1.3
|
|
479
479
|
rolldown-plugin-dts:
|
|
480
480
|
specifier: ^0.22.5
|
|
481
|
-
version: 0.22.5(@typescript/native-preview@7.0.0-dev.
|
|
481
|
+
version: 0.22.5(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.1.3)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3))
|
|
482
482
|
svgo:
|
|
483
483
|
specifier: ^3.2.0
|
|
484
484
|
version: 3.3.3
|
|
485
485
|
tsdown:
|
|
486
486
|
specifier: ^0.21.7
|
|
487
|
-
version: 0.21.10(@typescript/native-preview@7.0.0-dev.
|
|
487
|
+
version: 0.21.10(@typescript/native-preview@7.0.0-dev.20260624.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3))
|
|
488
488
|
typescript:
|
|
489
489
|
specifier: ^5.9.3
|
|
490
490
|
version: 5.9.3
|
|
@@ -493,7 +493,7 @@ importers:
|
|
|
493
493
|
version: 4.9.0
|
|
494
494
|
vite:
|
|
495
495
|
specifier: ^8.0.14
|
|
496
|
-
version: 8.0
|
|
496
|
+
version: 8.1.0(@types/node@22.20.0)(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)
|
|
497
497
|
yaml:
|
|
498
498
|
specifier: ^2.8.3
|
|
499
499
|
version: 2.9.0
|
|
@@ -717,7 +717,7 @@ importers:
|
|
|
717
717
|
version: 2.0.0
|
|
718
718
|
'@cabloy/vite-plugin-babel':
|
|
719
719
|
specifier: ^1.3.3
|
|
720
|
-
version: 1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
720
|
+
version: 1.3.3(@babel/core@7.29.7)(vite@8.1.0(@types/node@22.20.0)(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))
|
|
721
721
|
'@cabloy/vue-babel-plugin-jsx':
|
|
722
722
|
specifier: ^2.0.1
|
|
723
723
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -729,7 +729,7 @@ importers:
|
|
|
729
729
|
version: 3.5.16
|
|
730
730
|
'@cabloy/vue-router':
|
|
731
731
|
specifier: ^4.4.16
|
|
732
|
-
version: 4.4.16(vue@3.5.
|
|
732
|
+
version: 4.4.16(vue@3.5.38(typescript@5.9.3))
|
|
733
733
|
'@cabloy/vue-runtime-core':
|
|
734
734
|
specifier: ^3.5.57
|
|
735
735
|
version: 3.5.57
|
|
@@ -738,16 +738,16 @@ importers:
|
|
|
738
738
|
version: 3.5.13
|
|
739
739
|
'@cabloy/vue-server-renderer':
|
|
740
740
|
specifier: ^3.5.18
|
|
741
|
-
version: 3.5.18(vue@3.5.
|
|
741
|
+
version: 3.5.18(vue@3.5.38(typescript@5.9.3))
|
|
742
742
|
'@faker-js/faker':
|
|
743
743
|
specifier: ^8.4.1
|
|
744
744
|
version: 8.4.1
|
|
745
745
|
'@types/node':
|
|
746
746
|
specifier: ^22.19.17
|
|
747
|
-
version: 22.
|
|
747
|
+
version: 22.20.0
|
|
748
748
|
'@vitejs/plugin-vue-jsx':
|
|
749
749
|
specifier: ^5.1.5
|
|
750
|
-
version: 5.1.
|
|
750
|
+
version: 5.1.6(vite@8.1.0(@types/node@22.20.0)(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))
|
|
751
751
|
babel-plugin-transform-typescript-metadata:
|
|
752
752
|
specifier: ^0.4.0
|
|
753
753
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -786,10 +786,10 @@ importers:
|
|
|
786
786
|
version: 0.2.7
|
|
787
787
|
vite:
|
|
788
788
|
specifier: ^8.0.14
|
|
789
|
-
version: 8.0
|
|
789
|
+
version: 8.1.0(@types/node@22.20.0)(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)
|
|
790
790
|
vite-plugin-devtools-json:
|
|
791
791
|
specifier: ^1.0.0
|
|
792
|
-
version: 1.0.0(vite@8.0
|
|
792
|
+
version: 1.0.0(vite@8.1.0(@types/node@22.20.0)(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))
|
|
793
793
|
vite-plugin-fake-server-turbo:
|
|
794
794
|
specifier: ^3.0.18
|
|
795
795
|
version: 3.0.18
|
|
@@ -813,7 +813,7 @@ importers:
|
|
|
813
813
|
specifier: ^5.1.57
|
|
814
814
|
version: link:../zova-core
|
|
815
815
|
zova-suite-a-zova:
|
|
816
|
-
specifier: ^5.1.
|
|
816
|
+
specifier: ^5.1.107
|
|
817
817
|
version: link:../../src/suite-vendor/a-zova
|
|
818
818
|
devDependencies:
|
|
819
819
|
clean-package:
|
|
@@ -906,12 +906,12 @@ importers:
|
|
|
906
906
|
version: 6.1.3
|
|
907
907
|
vite:
|
|
908
908
|
specifier: ^8.0.14
|
|
909
|
-
version: 8.0
|
|
909
|
+
version: 8.1.0(@types/node@22.20.0)(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)
|
|
910
910
|
|
|
911
911
|
src/suite-vendor/a-cabloy:
|
|
912
912
|
dependencies:
|
|
913
913
|
zova-module-rest-resource:
|
|
914
|
-
specifier: ^5.1.
|
|
914
|
+
specifier: ^5.1.37
|
|
915
915
|
version: link:modules/rest-resource
|
|
916
916
|
|
|
917
917
|
src/suite-vendor/a-cabloy/modules/rest-resource:
|
|
@@ -944,13 +944,13 @@ importers:
|
|
|
944
944
|
specifier: ^5.1.18
|
|
945
945
|
version: link:modules/a-boundary
|
|
946
946
|
zova-module-a-command:
|
|
947
|
-
specifier: ^5.1.
|
|
947
|
+
specifier: ^5.1.30
|
|
948
948
|
version: link:modules/a-command
|
|
949
949
|
zova-module-a-fetch:
|
|
950
950
|
specifier: ^5.1.20
|
|
951
951
|
version: link:modules/a-fetch
|
|
952
952
|
zova-module-a-form:
|
|
953
|
-
specifier: ^5.1.
|
|
953
|
+
specifier: ^5.1.36
|
|
954
954
|
version: link:modules/a-form
|
|
955
955
|
zova-module-a-icon:
|
|
956
956
|
specifier: ^5.1.23
|
|
@@ -968,7 +968,7 @@ importers:
|
|
|
968
968
|
specifier: ^5.1.27
|
|
969
969
|
version: link:modules/a-model
|
|
970
970
|
zova-module-a-openapi:
|
|
971
|
-
specifier: ^5.1.
|
|
971
|
+
specifier: ^5.1.37
|
|
972
972
|
version: link:modules/a-openapi
|
|
973
973
|
zova-module-a-router:
|
|
974
974
|
specifier: ^5.1.26
|
|
@@ -992,13 +992,13 @@ importers:
|
|
|
992
992
|
specifier: ^5.1.29
|
|
993
993
|
version: link:modules/a-style
|
|
994
994
|
zova-module-a-table:
|
|
995
|
-
specifier: ^5.1.
|
|
995
|
+
specifier: ^5.1.33
|
|
996
996
|
version: link:modules/a-table
|
|
997
997
|
zova-module-a-zod:
|
|
998
998
|
specifier: ^5.1.30
|
|
999
999
|
version: link:modules/a-zod
|
|
1000
1000
|
zova-module-a-zova:
|
|
1001
|
-
specifier: ^5.1.
|
|
1001
|
+
specifier: ^5.1.72
|
|
1002
1002
|
version: link:modules/a-zova
|
|
1003
1003
|
|
|
1004
1004
|
src/suite-vendor/a-zova/modules/a-api:
|
|
@@ -1072,7 +1072,7 @@ importers:
|
|
|
1072
1072
|
dependencies:
|
|
1073
1073
|
axios:
|
|
1074
1074
|
specifier: ^1.16.1
|
|
1075
|
-
version: 1.
|
|
1075
|
+
version: 1.18.1
|
|
1076
1076
|
devDependencies:
|
|
1077
1077
|
clean-package:
|
|
1078
1078
|
specifier: ^2.2.0
|
|
@@ -1138,13 +1138,13 @@ importers:
|
|
|
1138
1138
|
dependencies:
|
|
1139
1139
|
'@tanstack/query-core':
|
|
1140
1140
|
specifier: ^5.100.10
|
|
1141
|
-
version: 5.101.
|
|
1141
|
+
version: 5.101.1
|
|
1142
1142
|
'@tanstack/query-persist-client-core':
|
|
1143
1143
|
specifier: ^5.97.0
|
|
1144
|
-
version: 5.101.
|
|
1144
|
+
version: 5.101.1
|
|
1145
1145
|
'@tanstack/vue-query':
|
|
1146
1146
|
specifier: ^5.100.10
|
|
1147
|
-
version: 5.101.
|
|
1147
|
+
version: 5.101.1(vue@3.5.38(typescript@5.9.3))
|
|
1148
1148
|
localforage:
|
|
1149
1149
|
specifier: ^1.10.0
|
|
1150
1150
|
version: 1.10.0
|
|
@@ -1165,8 +1165,8 @@ importers:
|
|
|
1165
1165
|
src/suite-vendor/a-zova/modules/a-openapi:
|
|
1166
1166
|
dependencies:
|
|
1167
1167
|
'@cabloy/json-schema-to-zod':
|
|
1168
|
-
specifier: ^2.6.
|
|
1169
|
-
version: 2.6.
|
|
1168
|
+
specifier: ^2.6.5
|
|
1169
|
+
version: 2.6.5
|
|
1170
1170
|
openapi3-ts:
|
|
1171
1171
|
specifier: ^4.5.0
|
|
1172
1172
|
version: 4.6.0
|
|
@@ -1341,11 +1341,11 @@ importers:
|
|
|
1341
1341
|
version: link:../../../../../packages-utils/zova-jsx
|
|
1342
1342
|
devDependencies:
|
|
1343
1343
|
'@cabloy/cli':
|
|
1344
|
-
specifier: ^3.1.
|
|
1345
|
-
version: 3.1.
|
|
1344
|
+
specifier: ^3.1.21
|
|
1345
|
+
version: 3.1.21(vue@3.5.38(typescript@5.9.3))
|
|
1346
1346
|
'@types/luxon':
|
|
1347
1347
|
specifier: ^3.7.1
|
|
1348
|
-
version: 3.7.
|
|
1348
|
+
version: 3.7.2
|
|
1349
1349
|
clean-package:
|
|
1350
1350
|
specifier: ^2.2.0
|
|
1351
1351
|
version: 2.2.0
|
|
@@ -1831,8 +1831,8 @@ packages:
|
|
|
1831
1831
|
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
1832
1832
|
engines: {node: '>=6.9.0'}
|
|
1833
1833
|
|
|
1834
|
-
'@babel/helper-string-parser@8.0.0
|
|
1835
|
-
resolution: {integrity: sha512-
|
|
1834
|
+
'@babel/helper-string-parser@8.0.0':
|
|
1835
|
+
resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==}
|
|
1836
1836
|
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1837
1837
|
|
|
1838
1838
|
'@babel/helper-validator-identifier@7.29.7':
|
|
@@ -1847,6 +1847,10 @@ packages:
|
|
|
1847
1847
|
resolution: {integrity: sha512-8AWCJ2VJJyDFlGBep5GpaaQ9AAaE/FjAcrqI7jyssYhtL7WGV0DOKpJsQqM037xDbpRLHXsY8TwU7zDma7coOw==}
|
|
1848
1848
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1849
1849
|
|
|
1850
|
+
'@babel/helper-validator-identifier@8.0.2':
|
|
1851
|
+
resolution: {integrity: sha512-9Fr9QeyCAyi1BR1jKZ6uYQ24EIhQUx5ReHfQU7drOE+TPOb+w11/dsqLkMOT2U29OdCT71XajrOT8xDc1C7orA==}
|
|
1852
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1853
|
+
|
|
1850
1854
|
'@babel/helper-validator-option@7.29.7':
|
|
1851
1855
|
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
|
|
1852
1856
|
engines: {node: '>=6.9.0'}
|
|
@@ -1860,6 +1864,11 @@ packages:
|
|
|
1860
1864
|
engines: {node: '>=6.0.0'}
|
|
1861
1865
|
hasBin: true
|
|
1862
1866
|
|
|
1867
|
+
'@babel/parser@8.0.0':
|
|
1868
|
+
resolution: {integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ==}
|
|
1869
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1870
|
+
hasBin: true
|
|
1871
|
+
|
|
1863
1872
|
'@babel/parser@8.0.0-rc.2':
|
|
1864
1873
|
resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==}
|
|
1865
1874
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -1922,6 +1931,10 @@ packages:
|
|
|
1922
1931
|
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
1923
1932
|
engines: {node: '>=6.9.0'}
|
|
1924
1933
|
|
|
1934
|
+
'@babel/types@8.0.0':
|
|
1935
|
+
resolution: {integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw==}
|
|
1936
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1937
|
+
|
|
1925
1938
|
'@babel/types@8.0.0-rc.2':
|
|
1926
1939
|
resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==}
|
|
1927
1940
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -1930,11 +1943,11 @@ packages:
|
|
|
1930
1943
|
resolution: {integrity: sha512-mOm5ZrYmphGfqVWoH5YYMTITb3cDXsFgmvFlvkvWDMsR9X8RFnt7a0Wb6yNIdoFsiMO9WjYLq+U/FMtqIYAF8Q==}
|
|
1931
1944
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1932
1945
|
|
|
1933
|
-
'@bufbuild/protobuf@2.12.
|
|
1934
|
-
resolution: {integrity: sha512-
|
|
1946
|
+
'@bufbuild/protobuf@2.12.1':
|
|
1947
|
+
resolution: {integrity: sha512-BvAMfS6LrgZiryOAZ4pBYucu4wG/Ei/9o9DZ9akbREnMLbPJiom2i8b9C8IsKErQoiKqVhrerzt3kOT/RrzLHg==}
|
|
1935
1948
|
|
|
1936
|
-
'@cabloy/cli@3.1.
|
|
1937
|
-
resolution: {integrity: sha512-
|
|
1949
|
+
'@cabloy/cli@3.1.21':
|
|
1950
|
+
resolution: {integrity: sha512-FkNtRya9aoaM/OwiU+y6/4J7hEqsmbdS2XYGKqYf7LPR5rkvNDYpsHcxnS+01Y1TETNyn19R7vYx7GW6pl3l3Q==}
|
|
1938
1951
|
|
|
1939
1952
|
'@cabloy/compose@2.1.8':
|
|
1940
1953
|
resolution: {integrity: sha512-TdEr9BY54BYoIlTjkrOKkzK8yJWmP07OrRTh4punJMnWzM+oDExQ2EGCGAHXnEHjLWqdhyMGm/ejmxnVgBmraQ==}
|
|
@@ -1948,8 +1961,8 @@ packages:
|
|
|
1948
1961
|
'@cabloy/extend@3.2.8':
|
|
1949
1962
|
resolution: {integrity: sha512-BrXYUtlC1kFY33hNxL/hEaS7wW8TsOuu22k0VCEtzg2iw+USkb4BqONth5Uv2pJcIlDMeWx8A8aUIRF3WQ2ckQ==}
|
|
1950
1963
|
|
|
1951
|
-
'@cabloy/json-schema-to-zod@2.6.
|
|
1952
|
-
resolution: {integrity: sha512-
|
|
1964
|
+
'@cabloy/json-schema-to-zod@2.6.5':
|
|
1965
|
+
resolution: {integrity: sha512-y94YrwsrLw+zrISqqHstEuCDgcnfolO/rElOnSmY5I84rmnj3SW52H1pKhnsaozVAcaOEL6Tt3QWHXQKGCYRLA==}
|
|
1953
1966
|
hasBin: true
|
|
1954
1967
|
|
|
1955
1968
|
'@cabloy/json5@1.1.9':
|
|
@@ -2100,12 +2113,21 @@ packages:
|
|
|
2100
2113
|
'@emnapi/core@1.10.0':
|
|
2101
2114
|
resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
|
|
2102
2115
|
|
|
2116
|
+
'@emnapi/core@1.11.1':
|
|
2117
|
+
resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
|
|
2118
|
+
|
|
2103
2119
|
'@emnapi/runtime@1.10.0':
|
|
2104
2120
|
resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
|
|
2105
2121
|
|
|
2122
|
+
'@emnapi/runtime@1.11.1':
|
|
2123
|
+
resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
|
|
2124
|
+
|
|
2106
2125
|
'@emnapi/wasi-threads@1.2.1':
|
|
2107
2126
|
resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
|
|
2108
2127
|
|
|
2128
|
+
'@emnapi/wasi-threads@1.2.2':
|
|
2129
|
+
resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
|
|
2130
|
+
|
|
2109
2131
|
'@es-joy/jsdoccomment@0.84.0':
|
|
2110
2132
|
resolution: {integrity: sha512-0xew1CxOam0gV5OMjh2KjFQZsKL2bByX1+q4j3E73MpYIdyUxcZb/xQct9ccUb+ve5KGUYbCUxyPnYB7RbuP+w==}
|
|
2111
2133
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -3129,8 +3151,8 @@ packages:
|
|
|
3129
3151
|
'@cfworker/json-schema':
|
|
3130
3152
|
optional: true
|
|
3131
3153
|
|
|
3132
|
-
'@napi-rs/wasm-runtime@1.1.
|
|
3133
|
-
resolution: {integrity: sha512-
|
|
3154
|
+
'@napi-rs/wasm-runtime@1.1.6':
|
|
3155
|
+
resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
|
|
3134
3156
|
peerDependencies:
|
|
3135
3157
|
'@emnapi/core': ^1.7.1
|
|
3136
3158
|
'@emnapi/runtime': ^1.7.1
|
|
@@ -3147,8 +3169,8 @@ packages:
|
|
|
3147
3169
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
3148
3170
|
engines: {node: '>= 8'}
|
|
3149
3171
|
|
|
3150
|
-
'@npmcli/config@10.
|
|
3151
|
-
resolution: {integrity: sha512-
|
|
3172
|
+
'@npmcli/config@10.11.0':
|
|
3173
|
+
resolution: {integrity: sha512-YeRrOREeF9rYlwQfqbjJc8bjplzdzz2dapOVfV3gl3kSMFn0wEI9+QZQADmAvdd+MKTeOr/ISgNmdxJj6layAA==}
|
|
3152
3174
|
engines: {node: ^20.17.0 || >=22.9.0}
|
|
3153
3175
|
|
|
3154
3176
|
'@npmcli/git@7.0.2':
|
|
@@ -3178,11 +3200,8 @@ packages:
|
|
|
3178
3200
|
'@oxc-project/types@0.127.0':
|
|
3179
3201
|
resolution: {integrity: sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==}
|
|
3180
3202
|
|
|
3181
|
-
'@oxc-project/types@0.
|
|
3182
|
-
resolution: {integrity: sha512-
|
|
3183
|
-
|
|
3184
|
-
'@oxc-project/types@0.134.0':
|
|
3185
|
-
resolution: {integrity: sha512-T0xuRRKrQFmocH8y+jGfpmSkGcheaJExY9lEihmR1Gm2aH+75B8CzgU2rABRQSzzDxLjZ15Sc0bRVLj5lVeNXQ==}
|
|
3203
|
+
'@oxc-project/types@0.137.0':
|
|
3204
|
+
resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==}
|
|
3186
3205
|
|
|
3187
3206
|
'@oxfmt/binding-android-arm-eabi@0.45.0':
|
|
3188
3207
|
resolution: {integrity: sha512-A/UMxFob1fefCuMeGxQBulGfFE38g2Gm23ynr3u6b+b7fY7/ajGbNsa3ikMIkGMLJW/TRoQaMoP1kME7S+815w==}
|
|
@@ -3306,124 +3325,124 @@ packages:
|
|
|
3306
3325
|
cpu: [x64]
|
|
3307
3326
|
os: [win32]
|
|
3308
3327
|
|
|
3309
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
3310
|
-
resolution: {integrity: sha512-
|
|
3328
|
+
'@oxlint/binding-android-arm-eabi@1.71.0':
|
|
3329
|
+
resolution: {integrity: sha512-ImGmd1njEg4FEJH03jhRnveEegtO3czCtfptvaHivKAZQIYATbVFBrrzbaYMYv0oJioTnxZAZVSyV+oL7W8S2g==}
|
|
3311
3330
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3312
3331
|
cpu: [arm]
|
|
3313
3332
|
os: [android]
|
|
3314
3333
|
|
|
3315
|
-
'@oxlint/binding-android-arm64@1.
|
|
3316
|
-
resolution: {integrity: sha512-
|
|
3334
|
+
'@oxlint/binding-android-arm64@1.71.0':
|
|
3335
|
+
resolution: {integrity: sha512-4A5BEexBrwY1YFF8Kiq/lp/wQPRG79G3BWIE1FuWaM5MvmpYSd+7ZySVcKkHdwo0UDzdQGddp6pD9mpctMqLnw==}
|
|
3317
3336
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3318
3337
|
cpu: [arm64]
|
|
3319
3338
|
os: [android]
|
|
3320
3339
|
|
|
3321
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
3322
|
-
resolution: {integrity: sha512-
|
|
3340
|
+
'@oxlint/binding-darwin-arm64@1.71.0':
|
|
3341
|
+
resolution: {integrity: sha512-9wJA9GJulLwS2usU3CEisI/ESDO1n1z9eyTCvApMDrAkbJ1ve0mORgTMjcWWsKxkzkeZ2N/Gpra5IQE7x8tYgQ==}
|
|
3323
3342
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3324
3343
|
cpu: [arm64]
|
|
3325
3344
|
os: [darwin]
|
|
3326
3345
|
|
|
3327
|
-
'@oxlint/binding-darwin-x64@1.
|
|
3328
|
-
resolution: {integrity: sha512-
|
|
3346
|
+
'@oxlint/binding-darwin-x64@1.71.0':
|
|
3347
|
+
resolution: {integrity: sha512-PlLCjS06V0PeJMAJwzjrExw1sYNW9Gch3JtNlcwwZDXGlTYDuwHNN89zYH8LTXFfgkVtsYvs2nv0FqrzyuFDzg==}
|
|
3329
3348
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3330
3349
|
cpu: [x64]
|
|
3331
3350
|
os: [darwin]
|
|
3332
3351
|
|
|
3333
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
3334
|
-
resolution: {integrity: sha512-
|
|
3352
|
+
'@oxlint/binding-freebsd-x64@1.71.0':
|
|
3353
|
+
resolution: {integrity: sha512-Lhil7bWre0ncxbUoDoxfS0JzpTz17BRQKW7iwoAUY8GJ66+WwJEfYPCFJ1P0WgVZR5/O/b3Q2pENlHOjeXLOGQ==}
|
|
3335
3354
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3336
3355
|
cpu: [x64]
|
|
3337
3356
|
os: [freebsd]
|
|
3338
3357
|
|
|
3339
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
3340
|
-
resolution: {integrity: sha512-
|
|
3358
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.71.0':
|
|
3359
|
+
resolution: {integrity: sha512-Oo9/L58PYD3RC0x05d2upAPLllHytTjHQGsnC06P6Ynn7jKkp5mdImQxXdJ3+FnBaKspNpGogzgVsi6g872LiA==}
|
|
3341
3360
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3342
3361
|
cpu: [arm]
|
|
3343
3362
|
os: [linux]
|
|
3344
3363
|
|
|
3345
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
3346
|
-
resolution: {integrity: sha512-
|
|
3364
|
+
'@oxlint/binding-linux-arm-musleabihf@1.71.0':
|
|
3365
|
+
resolution: {integrity: sha512-mSHfyfgJrEbyIR29ejaeS50BdPk+GoNPlC1dckpDiUZbJAIel68sjSMdOt4WY0/gva+ECC7FNITQkxMJU+vSBw==}
|
|
3347
3366
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3348
3367
|
cpu: [arm]
|
|
3349
3368
|
os: [linux]
|
|
3350
3369
|
|
|
3351
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
3352
|
-
resolution: {integrity: sha512-
|
|
3370
|
+
'@oxlint/binding-linux-arm64-gnu@1.71.0':
|
|
3371
|
+
resolution: {integrity: sha512-n9yY4M2tiy3aij4AqtlnspzpfdpeT5JQfK2/w2d8oyp5W0FRwOb1dIeX99nORNcxGr08iD9bH8N5XFz3I2iy8w==}
|
|
3353
3372
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3354
3373
|
cpu: [arm64]
|
|
3355
3374
|
os: [linux]
|
|
3356
3375
|
libc: [glibc]
|
|
3357
3376
|
|
|
3358
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
3359
|
-
resolution: {integrity: sha512-
|
|
3377
|
+
'@oxlint/binding-linux-arm64-musl@1.71.0':
|
|
3378
|
+
resolution: {integrity: sha512-fJZrs5sDZtTaPIOiemRQQmo82Ezy+vOGXemPc4Ok7iVVsYsFa7SlW6Z5XN819VfsqBHRm3NJ3rTdnR8+bJYJdQ==}
|
|
3360
3379
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3361
3380
|
cpu: [arm64]
|
|
3362
3381
|
os: [linux]
|
|
3363
3382
|
libc: [musl]
|
|
3364
3383
|
|
|
3365
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
3366
|
-
resolution: {integrity: sha512-
|
|
3384
|
+
'@oxlint/binding-linux-ppc64-gnu@1.71.0':
|
|
3385
|
+
resolution: {integrity: sha512-cwl7VKGERIy9p+G+AvZdfy/06q0aHXaTt/mMRReC751iuNYJgqKjB7NydXSS30nBT9vtr2tunciOtrR4fD6FUA==}
|
|
3367
3386
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3368
3387
|
cpu: [ppc64]
|
|
3369
3388
|
os: [linux]
|
|
3370
3389
|
libc: [glibc]
|
|
3371
3390
|
|
|
3372
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
3373
|
-
resolution: {integrity: sha512-
|
|
3391
|
+
'@oxlint/binding-linux-riscv64-gnu@1.71.0':
|
|
3392
|
+
resolution: {integrity: sha512-eZ8ieVXvzGi8jr7+ybQGPK2STw3mldfxZlgA2738iflfB/rzA69sE6m5rDRpQaxC7dpm745Enlh1Tod0QAk9Gg==}
|
|
3374
3393
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3375
3394
|
cpu: [riscv64]
|
|
3376
3395
|
os: [linux]
|
|
3377
3396
|
libc: [glibc]
|
|
3378
3397
|
|
|
3379
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
3380
|
-
resolution: {integrity: sha512-
|
|
3398
|
+
'@oxlint/binding-linux-riscv64-musl@1.71.0':
|
|
3399
|
+
resolution: {integrity: sha512-puMDbQYe6+NXwfMusojoA7CXGn2b3utukmd23PQqc1E3XhVCwyZ+FueSMzDYeNgDV2dUfIVXAAKZBcFDeCL6sA==}
|
|
3381
3400
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3382
3401
|
cpu: [riscv64]
|
|
3383
3402
|
os: [linux]
|
|
3384
3403
|
libc: [musl]
|
|
3385
3404
|
|
|
3386
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
3387
|
-
resolution: {integrity: sha512-
|
|
3405
|
+
'@oxlint/binding-linux-s390x-gnu@1.71.0':
|
|
3406
|
+
resolution: {integrity: sha512-4NJLxBs1ujISCt3L/1FcywLs73PWtJuw+piD6feK2V6h6OS6P7xu9/sWt1DTRLibe6QCzmfZzmM/2HPORoV/Lg==}
|
|
3388
3407
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3389
3408
|
cpu: [s390x]
|
|
3390
3409
|
os: [linux]
|
|
3391
3410
|
libc: [glibc]
|
|
3392
3411
|
|
|
3393
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
3394
|
-
resolution: {integrity: sha512-
|
|
3412
|
+
'@oxlint/binding-linux-x64-gnu@1.71.0':
|
|
3413
|
+
resolution: {integrity: sha512-cFDaiR8L3430qp88tfZnvFlt3KotFhR/DlbIL0nHOMMYiG/9Wy4l+6f7t8G8pTa9bd8Lt8+M0y/qjRQ/xcB74g==}
|
|
3395
3414
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3396
3415
|
cpu: [x64]
|
|
3397
3416
|
os: [linux]
|
|
3398
3417
|
libc: [glibc]
|
|
3399
3418
|
|
|
3400
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
3401
|
-
resolution: {integrity: sha512-
|
|
3419
|
+
'@oxlint/binding-linux-x64-musl@1.71.0':
|
|
3420
|
+
resolution: {integrity: sha512-orfixdt76KlpNly9z0PkWBBNfwjKz+JFVLP/7wnVchlKNU9Dpt9InU/ZggeSej6fC7qwHmHNOGlhLnQXcYoGuA==}
|
|
3402
3421
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3403
3422
|
cpu: [x64]
|
|
3404
3423
|
os: [linux]
|
|
3405
3424
|
libc: [musl]
|
|
3406
3425
|
|
|
3407
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
3408
|
-
resolution: {integrity: sha512-
|
|
3426
|
+
'@oxlint/binding-openharmony-arm64@1.71.0':
|
|
3427
|
+
resolution: {integrity: sha512-9emQu2lAp6yhPB3XuI+++vR+l/o6JR1X+EpxwcumPdQXBWXEPAsquPGL7l158EqU8SebQMXTUa/S5zN98juyHw==}
|
|
3409
3428
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3410
3429
|
cpu: [arm64]
|
|
3411
3430
|
os: [openharmony]
|
|
3412
3431
|
|
|
3413
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
3414
|
-
resolution: {integrity: sha512-
|
|
3432
|
+
'@oxlint/binding-win32-arm64-msvc@1.71.0':
|
|
3433
|
+
resolution: {integrity: sha512-bd5kI8spYwTm3BILDtGhi73zoup5dw8MlPQNT8YB3BD5UIsjNe3K9/4ctrzQMX4SZMoK5HgzVLkLJzacEXB7fA==}
|
|
3415
3434
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3416
3435
|
cpu: [arm64]
|
|
3417
3436
|
os: [win32]
|
|
3418
3437
|
|
|
3419
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
3420
|
-
resolution: {integrity: sha512-
|
|
3438
|
+
'@oxlint/binding-win32-ia32-msvc@1.71.0':
|
|
3439
|
+
resolution: {integrity: sha512-W4HvOHGzVLHcrmFu+bMrJlho+/yrlX5ZNdJZqGe8MEldkQG+RHYhxxad9P4jvWAYFmIqUA5i9DQ8QsJqSU9GIw==}
|
|
3421
3440
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3422
3441
|
cpu: [ia32]
|
|
3423
3442
|
os: [win32]
|
|
3424
3443
|
|
|
3425
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
3426
|
-
resolution: {integrity: sha512-
|
|
3444
|
+
'@oxlint/binding-win32-x64-msvc@1.71.0':
|
|
3445
|
+
resolution: {integrity: sha512-D2kyEIPHk/G/wiZLnwTVC/sVst+T/lKldVOjAFpgTIBUAOlry72e5OiapDbDBF4LfJLkN5ypJb/8Eu6yJzkveQ==}
|
|
3427
3446
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3428
3447
|
cpu: [x64]
|
|
3429
3448
|
os: [win32]
|
|
@@ -3551,14 +3570,8 @@ packages:
|
|
|
3551
3570
|
cpu: [arm64]
|
|
3552
3571
|
os: [android]
|
|
3553
3572
|
|
|
3554
|
-
'@rolldown/binding-android-arm64@1.
|
|
3555
|
-
resolution: {integrity: sha512-
|
|
3556
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3557
|
-
cpu: [arm64]
|
|
3558
|
-
os: [android]
|
|
3559
|
-
|
|
3560
|
-
'@rolldown/binding-android-arm64@1.1.0':
|
|
3561
|
-
resolution: {integrity: sha512-gCYzGOSkYY6Z034suzd20euvds7lPzMEEla62DJGE/ZAlR4OMBnNbvnBSsIGUCAr52gaWMsloGxP4tVGtN5aCA==}
|
|
3573
|
+
'@rolldown/binding-android-arm64@1.1.3':
|
|
3574
|
+
resolution: {integrity: sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==}
|
|
3562
3575
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3563
3576
|
cpu: [arm64]
|
|
3564
3577
|
os: [android]
|
|
@@ -3569,14 +3582,8 @@ packages:
|
|
|
3569
3582
|
cpu: [arm64]
|
|
3570
3583
|
os: [darwin]
|
|
3571
3584
|
|
|
3572
|
-
'@rolldown/binding-darwin-arm64@1.
|
|
3573
|
-
resolution: {integrity: sha512-
|
|
3574
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3575
|
-
cpu: [arm64]
|
|
3576
|
-
os: [darwin]
|
|
3577
|
-
|
|
3578
|
-
'@rolldown/binding-darwin-arm64@1.1.0':
|
|
3579
|
-
resolution: {integrity: sha512-JQBD77MNgu+4Z6RAyg69acugdrhhVoWesr3l47zohYZ2YV2fwkWMArkN/2p4l6Ei+Sno7W5q+UsKdVWq5Ens0w==}
|
|
3585
|
+
'@rolldown/binding-darwin-arm64@1.1.3':
|
|
3586
|
+
resolution: {integrity: sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==}
|
|
3580
3587
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3581
3588
|
cpu: [arm64]
|
|
3582
3589
|
os: [darwin]
|
|
@@ -3587,14 +3594,8 @@ packages:
|
|
|
3587
3594
|
cpu: [x64]
|
|
3588
3595
|
os: [darwin]
|
|
3589
3596
|
|
|
3590
|
-
'@rolldown/binding-darwin-x64@1.
|
|
3591
|
-
resolution: {integrity: sha512-
|
|
3592
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3593
|
-
cpu: [x64]
|
|
3594
|
-
os: [darwin]
|
|
3595
|
-
|
|
3596
|
-
'@rolldown/binding-darwin-x64@1.1.0':
|
|
3597
|
-
resolution: {integrity: sha512-p/8cXUTK4Sob604e+xxPhVSbDFf29E6J0l/xESM9rdCfn3aDai3nEs6TnMHUsdD5aNlFz0+gDbiGlozLKGa2YA==}
|
|
3597
|
+
'@rolldown/binding-darwin-x64@1.1.3':
|
|
3598
|
+
resolution: {integrity: sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==}
|
|
3598
3599
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3599
3600
|
cpu: [x64]
|
|
3600
3601
|
os: [darwin]
|
|
@@ -3605,14 +3606,8 @@ packages:
|
|
|
3605
3606
|
cpu: [x64]
|
|
3606
3607
|
os: [freebsd]
|
|
3607
3608
|
|
|
3608
|
-
'@rolldown/binding-freebsd-x64@1.
|
|
3609
|
-
resolution: {integrity: sha512-
|
|
3610
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3611
|
-
cpu: [x64]
|
|
3612
|
-
os: [freebsd]
|
|
3613
|
-
|
|
3614
|
-
'@rolldown/binding-freebsd-x64@1.1.0':
|
|
3615
|
-
resolution: {integrity: sha512-KbtOSlVv6fElujiZWMcC3aQYhEwLVVf073RcwlSmpGQvIsKZFUqc0ef4sjUuurRwfbiI6JJXji9DQn+86hawmQ==}
|
|
3609
|
+
'@rolldown/binding-freebsd-x64@1.1.3':
|
|
3610
|
+
resolution: {integrity: sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==}
|
|
3616
3611
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3617
3612
|
cpu: [x64]
|
|
3618
3613
|
os: [freebsd]
|
|
@@ -3623,14 +3618,8 @@ packages:
|
|
|
3623
3618
|
cpu: [arm]
|
|
3624
3619
|
os: [linux]
|
|
3625
3620
|
|
|
3626
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.
|
|
3627
|
-
resolution: {integrity: sha512-
|
|
3628
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3629
|
-
cpu: [arm]
|
|
3630
|
-
os: [linux]
|
|
3631
|
-
|
|
3632
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.1.0':
|
|
3633
|
-
resolution: {integrity: sha512-9fZ9i0o0/MQaw7om6Z6TsT7tfCk0jtbEFtC+aPqZL5RNsGWNcHvn6EHgL3dAprjq+AZzPTAQjg2JtpJaMt+6pg==}
|
|
3621
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.1.3':
|
|
3622
|
+
resolution: {integrity: sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==}
|
|
3634
3623
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3635
3624
|
cpu: [arm]
|
|
3636
3625
|
os: [linux]
|
|
@@ -3642,15 +3631,8 @@ packages:
|
|
|
3642
3631
|
os: [linux]
|
|
3643
3632
|
libc: [glibc]
|
|
3644
3633
|
|
|
3645
|
-
'@rolldown/binding-linux-arm64-gnu@1.
|
|
3646
|
-
resolution: {integrity: sha512-
|
|
3647
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3648
|
-
cpu: [arm64]
|
|
3649
|
-
os: [linux]
|
|
3650
|
-
libc: [glibc]
|
|
3651
|
-
|
|
3652
|
-
'@rolldown/binding-linux-arm64-gnu@1.1.0':
|
|
3653
|
-
resolution: {integrity: sha512-+tog7T66i+yFyIuuAnjL6xmW182W/qTBOUt6BtQ6lBIM1Eikh/fSMz4HGgvuCp5uU0zuIVWng7kDYthjCMOHcg==}
|
|
3634
|
+
'@rolldown/binding-linux-arm64-gnu@1.1.3':
|
|
3635
|
+
resolution: {integrity: sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==}
|
|
3654
3636
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3655
3637
|
cpu: [arm64]
|
|
3656
3638
|
os: [linux]
|
|
@@ -3663,15 +3645,8 @@ packages:
|
|
|
3663
3645
|
os: [linux]
|
|
3664
3646
|
libc: [musl]
|
|
3665
3647
|
|
|
3666
|
-
'@rolldown/binding-linux-arm64-musl@1.
|
|
3667
|
-
resolution: {integrity: sha512-
|
|
3668
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3669
|
-
cpu: [arm64]
|
|
3670
|
-
os: [linux]
|
|
3671
|
-
libc: [musl]
|
|
3672
|
-
|
|
3673
|
-
'@rolldown/binding-linux-arm64-musl@1.1.0':
|
|
3674
|
-
resolution: {integrity: sha512-4b7yruLIIj/oZ3GpcLOvxcLCLDMraohn3IhQfN2hBP4w9UekG0DTIajWguJosRGfySf/+h/NwRUiMKoCpxCrqQ==}
|
|
3648
|
+
'@rolldown/binding-linux-arm64-musl@1.1.3':
|
|
3649
|
+
resolution: {integrity: sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==}
|
|
3675
3650
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3676
3651
|
cpu: [arm64]
|
|
3677
3652
|
os: [linux]
|
|
@@ -3684,15 +3659,8 @@ packages:
|
|
|
3684
3659
|
os: [linux]
|
|
3685
3660
|
libc: [glibc]
|
|
3686
3661
|
|
|
3687
|
-
'@rolldown/binding-linux-ppc64-gnu@1.
|
|
3688
|
-
resolution: {integrity: sha512-
|
|
3689
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3690
|
-
cpu: [ppc64]
|
|
3691
|
-
os: [linux]
|
|
3692
|
-
libc: [glibc]
|
|
3693
|
-
|
|
3694
|
-
'@rolldown/binding-linux-ppc64-gnu@1.1.0':
|
|
3695
|
-
resolution: {integrity: sha512-QRDOVZd0bhQ5jLsUsCC3dUxDWdTSVY9WMznowZgCGOrZfLLgctWpelhUASEiBwsXfat/JwYnVd1EaxMhqyT+UQ==}
|
|
3662
|
+
'@rolldown/binding-linux-ppc64-gnu@1.1.3':
|
|
3663
|
+
resolution: {integrity: sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==}
|
|
3696
3664
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3697
3665
|
cpu: [ppc64]
|
|
3698
3666
|
os: [linux]
|
|
@@ -3705,15 +3673,8 @@ packages:
|
|
|
3705
3673
|
os: [linux]
|
|
3706
3674
|
libc: [glibc]
|
|
3707
3675
|
|
|
3708
|
-
'@rolldown/binding-linux-s390x-gnu@1.
|
|
3709
|
-
resolution: {integrity: sha512-
|
|
3710
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3711
|
-
cpu: [s390x]
|
|
3712
|
-
os: [linux]
|
|
3713
|
-
libc: [glibc]
|
|
3714
|
-
|
|
3715
|
-
'@rolldown/binding-linux-s390x-gnu@1.1.0':
|
|
3716
|
-
resolution: {integrity: sha512-ypxT+Hq76NFG7woFbNbySnGEajFuYuIXeKz/jfCU+lXUoxfi3zLE6OG/ZQNeK3RpZSYJlAe2bokpsQ046CaieQ==}
|
|
3676
|
+
'@rolldown/binding-linux-s390x-gnu@1.1.3':
|
|
3677
|
+
resolution: {integrity: sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==}
|
|
3717
3678
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3718
3679
|
cpu: [s390x]
|
|
3719
3680
|
os: [linux]
|
|
@@ -3726,15 +3687,8 @@ packages:
|
|
|
3726
3687
|
os: [linux]
|
|
3727
3688
|
libc: [glibc]
|
|
3728
3689
|
|
|
3729
|
-
'@rolldown/binding-linux-x64-gnu@1.
|
|
3730
|
-
resolution: {integrity: sha512-
|
|
3731
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3732
|
-
cpu: [x64]
|
|
3733
|
-
os: [linux]
|
|
3734
|
-
libc: [glibc]
|
|
3735
|
-
|
|
3736
|
-
'@rolldown/binding-linux-x64-gnu@1.1.0':
|
|
3737
|
-
resolution: {integrity: sha512-IdovCmfROFmpTLahdecTDFL74aLERVYN68F/mLZjfVh6LfoplPfI6deyHNMTcVujbokDV5k05XrFO22zfv+qjg==}
|
|
3690
|
+
'@rolldown/binding-linux-x64-gnu@1.1.3':
|
|
3691
|
+
resolution: {integrity: sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==}
|
|
3738
3692
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3739
3693
|
cpu: [x64]
|
|
3740
3694
|
os: [linux]
|
|
@@ -3747,15 +3701,8 @@ packages:
|
|
|
3747
3701
|
os: [linux]
|
|
3748
3702
|
libc: [musl]
|
|
3749
3703
|
|
|
3750
|
-
'@rolldown/binding-linux-x64-musl@1.
|
|
3751
|
-
resolution: {integrity: sha512-
|
|
3752
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3753
|
-
cpu: [x64]
|
|
3754
|
-
os: [linux]
|
|
3755
|
-
libc: [musl]
|
|
3756
|
-
|
|
3757
|
-
'@rolldown/binding-linux-x64-musl@1.1.0':
|
|
3758
|
-
resolution: {integrity: sha512-pcA8xlFp2tyk9T2R6Fi/rPe3bQ1MA+sSMDNUU5Ogu80GHOatkE4P8YCreGAvZErm5Ho2YRXnyvNrWiRncfVysQ==}
|
|
3704
|
+
'@rolldown/binding-linux-x64-musl@1.1.3':
|
|
3705
|
+
resolution: {integrity: sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==}
|
|
3759
3706
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3760
3707
|
cpu: [x64]
|
|
3761
3708
|
os: [linux]
|
|
@@ -3767,14 +3714,8 @@ packages:
|
|
|
3767
3714
|
cpu: [arm64]
|
|
3768
3715
|
os: [openharmony]
|
|
3769
3716
|
|
|
3770
|
-
'@rolldown/binding-openharmony-arm64@1.
|
|
3771
|
-
resolution: {integrity: sha512-
|
|
3772
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3773
|
-
cpu: [arm64]
|
|
3774
|
-
os: [openharmony]
|
|
3775
|
-
|
|
3776
|
-
'@rolldown/binding-openharmony-arm64@1.1.0':
|
|
3777
|
-
resolution: {integrity: sha512-4+fexHayrLCWpriPh4c6dNvL4an34DEZCG7zOM/FD5QNF6h8DT+bDXzyB/kfC8lDJbaFb7jKShtnjDQFXVQEjg==}
|
|
3717
|
+
'@rolldown/binding-openharmony-arm64@1.1.3':
|
|
3718
|
+
resolution: {integrity: sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==}
|
|
3778
3719
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3779
3720
|
cpu: [arm64]
|
|
3780
3721
|
os: [openharmony]
|
|
@@ -3784,13 +3725,8 @@ packages:
|
|
|
3784
3725
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3785
3726
|
cpu: [wasm32]
|
|
3786
3727
|
|
|
3787
|
-
'@rolldown/binding-wasm32-wasi@1.
|
|
3788
|
-
resolution: {integrity: sha512-
|
|
3789
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3790
|
-
cpu: [wasm32]
|
|
3791
|
-
|
|
3792
|
-
'@rolldown/binding-wasm32-wasi@1.1.0':
|
|
3793
|
-
resolution: {integrity: sha512-SbL++MNmOw6QamrwIGDMSSfM4ceTzFr+RjbOExJSLLBinScU4WI5OdA413h1qwPw2yH7lVF1+H4svQ+6mSXKTQ==}
|
|
3728
|
+
'@rolldown/binding-wasm32-wasi@1.1.3':
|
|
3729
|
+
resolution: {integrity: sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==}
|
|
3794
3730
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3795
3731
|
cpu: [wasm32]
|
|
3796
3732
|
|
|
@@ -3800,14 +3736,8 @@ packages:
|
|
|
3800
3736
|
cpu: [arm64]
|
|
3801
3737
|
os: [win32]
|
|
3802
3738
|
|
|
3803
|
-
'@rolldown/binding-win32-arm64-msvc@1.
|
|
3804
|
-
resolution: {integrity: sha512-
|
|
3805
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3806
|
-
cpu: [arm64]
|
|
3807
|
-
os: [win32]
|
|
3808
|
-
|
|
3809
|
-
'@rolldown/binding-win32-arm64-msvc@1.1.0':
|
|
3810
|
-
resolution: {integrity: sha512-+xTE6XC7wBgk0VKRXGG+QAnyW5S9b8vfsFpiMjf0waQTmSQSU8onsH/beyZ8X4aXVveJnotiy7VDjLOaW8bTrg==}
|
|
3739
|
+
'@rolldown/binding-win32-arm64-msvc@1.1.3':
|
|
3740
|
+
resolution: {integrity: sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==}
|
|
3811
3741
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3812
3742
|
cpu: [arm64]
|
|
3813
3743
|
os: [win32]
|
|
@@ -3818,14 +3748,8 @@ packages:
|
|
|
3818
3748
|
cpu: [x64]
|
|
3819
3749
|
os: [win32]
|
|
3820
3750
|
|
|
3821
|
-
'@rolldown/binding-win32-x64-msvc@1.
|
|
3822
|
-
resolution: {integrity: sha512-
|
|
3823
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3824
|
-
cpu: [x64]
|
|
3825
|
-
os: [win32]
|
|
3826
|
-
|
|
3827
|
-
'@rolldown/binding-win32-x64-msvc@1.1.0':
|
|
3828
|
-
resolution: {integrity: sha512-Ogji1TQNqH3ACLnYr+1Ns1nyrJ0CO2P585u9Hsh02pXvtFiFpgtgT2b3P4PnCOU86VVCvqtAeCN4OftMT8KU4w==}
|
|
3751
|
+
'@rolldown/binding-win32-x64-msvc@1.1.3':
|
|
3752
|
+
resolution: {integrity: sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==}
|
|
3829
3753
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3830
3754
|
cpu: [x64]
|
|
3831
3755
|
os: [win32]
|
|
@@ -3947,8 +3871,8 @@ packages:
|
|
|
3947
3871
|
peerDependencies:
|
|
3948
3872
|
tailwindcss: '>=3.0.0 || >=4.0.0 || insiders'
|
|
3949
3873
|
|
|
3950
|
-
'@tanstack/devtools-event-client@0.4.
|
|
3951
|
-
resolution: {integrity: sha512-
|
|
3874
|
+
'@tanstack/devtools-event-client@0.4.4':
|
|
3875
|
+
resolution: {integrity: sha512-6T5Yop/793YI+H+5J8Hsyj4kCih9sl4t3ElLgKioW5hk3ocn+ZdSJ94tT7vL7uabxSugWYBZlOTMPzEw2puvQw==}
|
|
3952
3876
|
engines: {node: '>=18'}
|
|
3953
3877
|
hasBin: true
|
|
3954
3878
|
|
|
@@ -3963,11 +3887,11 @@ packages:
|
|
|
3963
3887
|
resolution: {integrity: sha512-y/xtNPNt/YeyoVxE/JCx+T7yjEzpezmbb+toK8DDD1P4m7Kzs5YR956+7OKexG3f8aXgC3rLZl7b1V+yNUSy5w==}
|
|
3964
3888
|
engines: {node: '>=18'}
|
|
3965
3889
|
|
|
3966
|
-
'@tanstack/query-core@5.101.
|
|
3967
|
-
resolution: {integrity: sha512-
|
|
3890
|
+
'@tanstack/query-core@5.101.1':
|
|
3891
|
+
resolution: {integrity: sha512-Y6Y92dkXtNqx67m2pMSxUsA3zOCwv862JexZRP8/EPwvKXMPu9m8rv43spiXWzOUIggQ3SQApttALStzhA8B4g==}
|
|
3968
3892
|
|
|
3969
|
-
'@tanstack/query-persist-client-core@5.101.
|
|
3970
|
-
resolution: {integrity: sha512-
|
|
3893
|
+
'@tanstack/query-persist-client-core@5.101.1':
|
|
3894
|
+
resolution: {integrity: sha512-rR5Er6jmdI3Oo8o6Wc0ceM6glDU4umgePu2IxM3Gy2UvPqcQONduxxxSzU1+F17mpS09XHqHKmj0Irhfb2cGYg==}
|
|
3971
3895
|
|
|
3972
3896
|
'@tanstack/store@0.11.0':
|
|
3973
3897
|
resolution: {integrity: sha512-WlzzCt3xi0G6pCAJu1U+2jiECwabETDpQDi3hfkFZvJii9AuZqEKbOiVarX1/bWhTNjU486yQtJCCasi/0q+Cw==}
|
|
@@ -3981,8 +3905,8 @@ packages:
|
|
|
3981
3905
|
peerDependencies:
|
|
3982
3906
|
vue: ^3.4.0
|
|
3983
3907
|
|
|
3984
|
-
'@tanstack/vue-query@5.101.
|
|
3985
|
-
resolution: {integrity: sha512-
|
|
3908
|
+
'@tanstack/vue-query@5.101.1':
|
|
3909
|
+
resolution: {integrity: sha512-w36v/HlCF2xRpdDCz7cygk99AwBWhZaT5No1dJOwqIZ1AR8q7tiovRyPFID/49gkjXG7KgXs/nHfRg+eCydH4Q==}
|
|
3986
3910
|
peerDependencies:
|
|
3987
3911
|
'@vue/composition-api': ^1.1.2
|
|
3988
3912
|
vue: ^2.6.0 || ^3.3.0
|
|
@@ -4059,8 +3983,8 @@ packages:
|
|
|
4059
3983
|
'@textlint/utils@15.7.1':
|
|
4060
3984
|
resolution: {integrity: sha512-+q5Z5fsNk/ixDY5D70ZCQungr7ppzBAAhmi207qDBzSBFeA5MM2ASGwMjPc5aMJ/3DvonI/01B3UIgbpVgIXVA==}
|
|
4061
3985
|
|
|
4062
|
-
'@tybys/wasm-util@0.10.
|
|
4063
|
-
resolution: {integrity: sha512-
|
|
3986
|
+
'@tybys/wasm-util@0.10.3':
|
|
3987
|
+
resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
|
|
4064
3988
|
|
|
4065
3989
|
'@types/babel__core@7.20.5':
|
|
4066
3990
|
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
@@ -4134,8 +4058,8 @@ packages:
|
|
|
4134
4058
|
'@types/lodash@4.17.24':
|
|
4135
4059
|
resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
|
|
4136
4060
|
|
|
4137
|
-
'@types/luxon@3.7.
|
|
4138
|
-
resolution: {integrity: sha512-
|
|
4061
|
+
'@types/luxon@3.7.2':
|
|
4062
|
+
resolution: {integrity: sha512-gW+Oib+vUtGJBtNC8V9Reww0oIpusw+4m81uncg9REGZAJfqOQHfo/nkabnc7w0QReXyPqjrbWMJk6NuAkiX3Q==}
|
|
4139
4063
|
|
|
4140
4064
|
'@types/mdast@3.0.15':
|
|
4141
4065
|
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
|
|
@@ -4149,8 +4073,8 @@ packages:
|
|
|
4149
4073
|
'@types/node-forge@1.3.14':
|
|
4150
4074
|
resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
|
|
4151
4075
|
|
|
4152
|
-
'@types/node@22.
|
|
4153
|
-
resolution: {integrity: sha512-
|
|
4076
|
+
'@types/node@22.20.0':
|
|
4077
|
+
resolution: {integrity: sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==}
|
|
4154
4078
|
|
|
4155
4079
|
'@types/normalize-package-data@2.4.4':
|
|
4156
4080
|
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
|
|
@@ -4173,121 +4097,121 @@ packages:
|
|
|
4173
4097
|
'@types/unist@3.0.3':
|
|
4174
4098
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
4175
4099
|
|
|
4176
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
4177
|
-
resolution: {integrity: sha512-
|
|
4100
|
+
'@typescript-eslint/eslint-plugin@8.62.0':
|
|
4101
|
+
resolution: {integrity: sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==}
|
|
4178
4102
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4179
4103
|
peerDependencies:
|
|
4180
|
-
'@typescript-eslint/parser': ^8.
|
|
4104
|
+
'@typescript-eslint/parser': ^8.62.0
|
|
4181
4105
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4182
4106
|
typescript: '>=4.8.4 <6.1.0'
|
|
4183
4107
|
|
|
4184
|
-
'@typescript-eslint/parser@8.
|
|
4185
|
-
resolution: {integrity: sha512-
|
|
4108
|
+
'@typescript-eslint/parser@8.62.0':
|
|
4109
|
+
resolution: {integrity: sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==}
|
|
4186
4110
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4187
4111
|
peerDependencies:
|
|
4188
4112
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4189
4113
|
typescript: '>=4.8.4 <6.1.0'
|
|
4190
4114
|
|
|
4191
|
-
'@typescript-eslint/project-service@8.
|
|
4192
|
-
resolution: {integrity: sha512-
|
|
4115
|
+
'@typescript-eslint/project-service@8.62.0':
|
|
4116
|
+
resolution: {integrity: sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==}
|
|
4193
4117
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4194
4118
|
peerDependencies:
|
|
4195
4119
|
typescript: '>=4.8.4 <6.1.0'
|
|
4196
4120
|
|
|
4197
|
-
'@typescript-eslint/rule-tester@8.
|
|
4198
|
-
resolution: {integrity: sha512-
|
|
4121
|
+
'@typescript-eslint/rule-tester@8.62.0':
|
|
4122
|
+
resolution: {integrity: sha512-WfzCnmTeOM3AifMf5rXPbFWHGWEru9rZKy4U6CSgpmxfOM6sTdKwjX7gTQEfXwsQp/MjRuEv3XOTBdQzxTCWMw==}
|
|
4199
4123
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4200
4124
|
peerDependencies:
|
|
4201
4125
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4202
4126
|
typescript: '>=4.8.4 <6.1.0'
|
|
4203
4127
|
|
|
4204
|
-
'@typescript-eslint/scope-manager@8.
|
|
4205
|
-
resolution: {integrity: sha512-
|
|
4128
|
+
'@typescript-eslint/scope-manager@8.62.0':
|
|
4129
|
+
resolution: {integrity: sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==}
|
|
4206
4130
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4207
4131
|
|
|
4208
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
4209
|
-
resolution: {integrity: sha512-
|
|
4132
|
+
'@typescript-eslint/tsconfig-utils@8.62.0':
|
|
4133
|
+
resolution: {integrity: sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==}
|
|
4210
4134
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4211
4135
|
peerDependencies:
|
|
4212
4136
|
typescript: '>=4.8.4 <6.1.0'
|
|
4213
4137
|
|
|
4214
|
-
'@typescript-eslint/type-utils@8.
|
|
4215
|
-
resolution: {integrity: sha512
|
|
4138
|
+
'@typescript-eslint/type-utils@8.62.0':
|
|
4139
|
+
resolution: {integrity: sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==}
|
|
4216
4140
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4217
4141
|
peerDependencies:
|
|
4218
4142
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4219
4143
|
typescript: '>=4.8.4 <6.1.0'
|
|
4220
4144
|
|
|
4221
|
-
'@typescript-eslint/types@8.
|
|
4222
|
-
resolution: {integrity: sha512-
|
|
4145
|
+
'@typescript-eslint/types@8.62.0':
|
|
4146
|
+
resolution: {integrity: sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==}
|
|
4223
4147
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4224
4148
|
|
|
4225
|
-
'@typescript-eslint/typescript-estree@8.
|
|
4226
|
-
resolution: {integrity: sha512
|
|
4149
|
+
'@typescript-eslint/typescript-estree@8.62.0':
|
|
4150
|
+
resolution: {integrity: sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==}
|
|
4227
4151
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4228
4152
|
peerDependencies:
|
|
4229
4153
|
typescript: '>=4.8.4 <6.1.0'
|
|
4230
4154
|
|
|
4231
|
-
'@typescript-eslint/utils@8.
|
|
4232
|
-
resolution: {integrity: sha512-
|
|
4155
|
+
'@typescript-eslint/utils@8.62.0':
|
|
4156
|
+
resolution: {integrity: sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==}
|
|
4233
4157
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4234
4158
|
peerDependencies:
|
|
4235
4159
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4236
4160
|
typescript: '>=4.8.4 <6.1.0'
|
|
4237
4161
|
|
|
4238
|
-
'@typescript-eslint/visitor-keys@8.
|
|
4239
|
-
resolution: {integrity: sha512-
|
|
4162
|
+
'@typescript-eslint/visitor-keys@8.62.0':
|
|
4163
|
+
resolution: {integrity: sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==}
|
|
4240
4164
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4241
4165
|
|
|
4242
|
-
'@typescript/native-preview-darwin-arm64@7.0.0-dev.
|
|
4243
|
-
resolution: {integrity: sha512-
|
|
4166
|
+
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
4167
|
+
resolution: {integrity: sha512-g8CqDkYCHTCYdhBHXs5cMraBurOS+KrcMFxE0SsaKZoI6Tnp+le1aWvxUBbzNKJYyThHJqb/1mLopzEJxJCuKA==}
|
|
4244
4168
|
engines: {node: '>=16.20.0'}
|
|
4245
4169
|
cpu: [arm64]
|
|
4246
4170
|
os: [darwin]
|
|
4247
4171
|
|
|
4248
|
-
'@typescript/native-preview-darwin-x64@7.0.0-dev.
|
|
4249
|
-
resolution: {integrity: sha512-
|
|
4172
|
+
'@typescript/native-preview-darwin-x64@7.0.0-dev.20260624.1':
|
|
4173
|
+
resolution: {integrity: sha512-P00JVvSV90eioYDuINAKmOSA8yhFTWLq6RvS5lrCfUuDlcgr2kSOgZAfFHIksHBVz6ZXpAXpa0dHPmc5SJ3Ymw==}
|
|
4250
4174
|
engines: {node: '>=16.20.0'}
|
|
4251
4175
|
cpu: [x64]
|
|
4252
4176
|
os: [darwin]
|
|
4253
4177
|
|
|
4254
|
-
'@typescript/native-preview-linux-arm64@7.0.0-dev.
|
|
4255
|
-
resolution: {integrity: sha512-
|
|
4178
|
+
'@typescript/native-preview-linux-arm64@7.0.0-dev.20260624.1':
|
|
4179
|
+
resolution: {integrity: sha512-cppM2yTZ/Gd1hOXy8NEJcUBxJ0O0zl9CU3OU1ZWZ/OHWWX/ukEzCCr94SUwJhjIWOylBCpIYkrvYoTwxNa94XQ==}
|
|
4256
4180
|
engines: {node: '>=16.20.0'}
|
|
4257
4181
|
cpu: [arm64]
|
|
4258
4182
|
os: [linux]
|
|
4259
4183
|
|
|
4260
|
-
'@typescript/native-preview-linux-arm@7.0.0-dev.
|
|
4261
|
-
resolution: {integrity: sha512-
|
|
4184
|
+
'@typescript/native-preview-linux-arm@7.0.0-dev.20260624.1':
|
|
4185
|
+
resolution: {integrity: sha512-eWHELvfQMkVRjafMd+3ATgM9p9yAergJaM4AOY8AekCNWnHFwUrp/ohh+ryyMUIqque5jjb/kuTiOiGj728I2Q==}
|
|
4262
4186
|
engines: {node: '>=16.20.0'}
|
|
4263
4187
|
cpu: [arm]
|
|
4264
4188
|
os: [linux]
|
|
4265
4189
|
|
|
4266
|
-
'@typescript/native-preview-linux-x64@7.0.0-dev.
|
|
4267
|
-
resolution: {integrity: sha512-
|
|
4190
|
+
'@typescript/native-preview-linux-x64@7.0.0-dev.20260624.1':
|
|
4191
|
+
resolution: {integrity: sha512-FaB8rS+rKYz4nDrEsHsF3b4cn7eCKCYroMJReA375OuQ6PHcmCNQ6QlVetA0dfFBxTTgejmoKyfw9xgAA5P4Yw==}
|
|
4268
4192
|
engines: {node: '>=16.20.0'}
|
|
4269
4193
|
cpu: [x64]
|
|
4270
4194
|
os: [linux]
|
|
4271
4195
|
|
|
4272
|
-
'@typescript/native-preview-win32-arm64@7.0.0-dev.
|
|
4273
|
-
resolution: {integrity: sha512-
|
|
4196
|
+
'@typescript/native-preview-win32-arm64@7.0.0-dev.20260624.1':
|
|
4197
|
+
resolution: {integrity: sha512-BgkqbCmSHDb5UxqWaFlFFJ/DHNT3lEUO4W8627ap6+QthJZuXk2imiHAX3PgYXC6en9fLLyR6jjcseAa4CCshg==}
|
|
4274
4198
|
engines: {node: '>=16.20.0'}
|
|
4275
4199
|
cpu: [arm64]
|
|
4276
4200
|
os: [win32]
|
|
4277
4201
|
|
|
4278
|
-
'@typescript/native-preview-win32-x64@7.0.0-dev.
|
|
4279
|
-
resolution: {integrity: sha512-
|
|
4202
|
+
'@typescript/native-preview-win32-x64@7.0.0-dev.20260624.1':
|
|
4203
|
+
resolution: {integrity: sha512-WaZ+ue63NgB2j/lqjirfevh/TqcsCxSqnKhGGiRnlxHyYIBcoq+x7KngyEnyGIaywJE1PcFeXA+2EMSIPlSEiQ==}
|
|
4280
4204
|
engines: {node: '>=16.20.0'}
|
|
4281
4205
|
cpu: [x64]
|
|
4282
4206
|
os: [win32]
|
|
4283
4207
|
|
|
4284
|
-
'@typescript/native-preview@7.0.0-dev.
|
|
4285
|
-
resolution: {integrity: sha512-
|
|
4208
|
+
'@typescript/native-preview@7.0.0-dev.20260624.1':
|
|
4209
|
+
resolution: {integrity: sha512-ogwfNo1xuAutOF8RbTCo3Ut0q/65u2ucOeHizi6O14q+3vnelNS+u8qVC2QWXubMcwtuN5E9cbfPslvGC4kdwA==}
|
|
4286
4210
|
engines: {node: '>=16.20.0'}
|
|
4287
4211
|
hasBin: true
|
|
4288
4212
|
|
|
4289
|
-
'@vitejs/plugin-vue-jsx@5.1.
|
|
4290
|
-
resolution: {integrity: sha512-
|
|
4213
|
+
'@vitejs/plugin-vue-jsx@5.1.6':
|
|
4214
|
+
resolution: {integrity: sha512-YXvi4as2clxt6DFw5+a0tTA97ntiQXm/raR8ofNj3aNwwdlVGTiG2gp7EvfZW17P50acL/9bP0ccF4XnqNmlgA==}
|
|
4291
4215
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
4292
4216
|
peerDependencies:
|
|
4293
4217
|
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
@@ -4369,8 +4293,8 @@ packages:
|
|
|
4369
4293
|
peerDependencies:
|
|
4370
4294
|
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
4371
4295
|
|
|
4372
|
-
acorn@8.
|
|
4373
|
-
resolution: {integrity: sha512-
|
|
4296
|
+
acorn@8.17.0:
|
|
4297
|
+
resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
|
|
4374
4298
|
engines: {node: '>=0.4.0'}
|
|
4375
4299
|
hasBin: true
|
|
4376
4300
|
|
|
@@ -4449,9 +4373,9 @@ packages:
|
|
|
4449
4373
|
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
|
|
4450
4374
|
engines: {node: '>= 0.4'}
|
|
4451
4375
|
|
|
4452
|
-
ast-kit@3.0.0
|
|
4453
|
-
resolution: {integrity: sha512-
|
|
4454
|
-
engines: {node:
|
|
4376
|
+
ast-kit@3.0.0:
|
|
4377
|
+
resolution: {integrity: sha512-8OG92q3R35qjC/4i6BLBMg8IB+fClWu/1PEwg2Z9Rn+BuNaiEgJzpzn+pxWOdHJWDCAwu2JP0wCDTozAM4QirQ==}
|
|
4378
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
4455
4379
|
|
|
4456
4380
|
ast-types-yx@0.14.2:
|
|
4457
4381
|
resolution: {integrity: sha512-lre9vXZvn5azJcNM60Ub19NzoXsaGS/vJ76ral4BbGSOYJoBo/OrXOXI2uClYzDSzDfRR6D8K+FJrYT3BHUM8w==}
|
|
@@ -4467,8 +4391,8 @@ packages:
|
|
|
4467
4391
|
asynckit@0.4.0:
|
|
4468
4392
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
4469
4393
|
|
|
4470
|
-
autoprefixer@10.5.
|
|
4471
|
-
resolution: {integrity: sha512-
|
|
4394
|
+
autoprefixer@10.5.1:
|
|
4395
|
+
resolution: {integrity: sha512-jwM2pcTuCWUoN70FEvf5XrXyDbUgRURK4FnU8v0jWZZYU/KkVvN9T33mu1sVLFY9JW3kTWzKheEpn6xYLRc/VA==}
|
|
4472
4396
|
engines: {node: ^10 || ^12 || >=14}
|
|
4473
4397
|
hasBin: true
|
|
4474
4398
|
peerDependencies:
|
|
@@ -4478,8 +4402,8 @@ packages:
|
|
|
4478
4402
|
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
|
|
4479
4403
|
engines: {node: '>= 0.4'}
|
|
4480
4404
|
|
|
4481
|
-
axios@1.
|
|
4482
|
-
resolution: {integrity: sha512-
|
|
4405
|
+
axios@1.18.1:
|
|
4406
|
+
resolution: {integrity: sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==}
|
|
4483
4407
|
|
|
4484
4408
|
b4a@1.8.1:
|
|
4485
4409
|
resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==}
|
|
@@ -4548,8 +4472,8 @@ packages:
|
|
|
4548
4472
|
base64-js@1.5.1:
|
|
4549
4473
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
4550
4474
|
|
|
4551
|
-
baseline-browser-mapping@2.10.
|
|
4552
|
-
resolution: {integrity: sha512-
|
|
4475
|
+
baseline-browser-mapping@2.10.38:
|
|
4476
|
+
resolution: {integrity: sha512-31/02mVB4yuQU6adKk5SlY6m+mxDwUq5KZkyYgnLrrKl7TEm1+3PyDtDBz2kOv/wxZz41GHsvV1A/u6RmiyBvw==}
|
|
4553
4477
|
engines: {node: '>=6.0.0'}
|
|
4554
4478
|
hasBin: true
|
|
4555
4479
|
|
|
@@ -4594,8 +4518,8 @@ packages:
|
|
|
4594
4518
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
4595
4519
|
engines: {node: '>=8'}
|
|
4596
4520
|
|
|
4597
|
-
browserslist@4.28.
|
|
4598
|
-
resolution: {integrity: sha512-
|
|
4521
|
+
browserslist@4.28.4:
|
|
4522
|
+
resolution: {integrity: sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==}
|
|
4599
4523
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
4600
4524
|
hasBin: true
|
|
4601
4525
|
|
|
@@ -4658,8 +4582,8 @@ packages:
|
|
|
4658
4582
|
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
|
|
4659
4583
|
engines: {node: '>=6'}
|
|
4660
4584
|
|
|
4661
|
-
caniuse-lite@1.0.
|
|
4662
|
-
resolution: {integrity: sha512-
|
|
4585
|
+
caniuse-lite@1.0.30001799:
|
|
4586
|
+
resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==}
|
|
4663
4587
|
|
|
4664
4588
|
capital-case@1.0.4:
|
|
4665
4589
|
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
|
|
@@ -4699,8 +4623,8 @@ packages:
|
|
|
4699
4623
|
character-reference-invalid@1.1.4:
|
|
4700
4624
|
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
|
|
4701
4625
|
|
|
4702
|
-
chardet@2.
|
|
4703
|
-
resolution: {integrity: sha512-
|
|
4626
|
+
chardet@2.2.0:
|
|
4627
|
+
resolution: {integrity: sha512-rddelWYNPRrXq6PtNEN2S3f6t9ILzvqaN5pVgi4kqt9jHQaXIial9PznB5iSPVlQSLNaaH22ItWz3EJtQ10+OA==}
|
|
4704
4628
|
|
|
4705
4629
|
charenc@0.0.2:
|
|
4706
4630
|
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
|
|
@@ -5078,8 +5002,8 @@ packages:
|
|
|
5078
5002
|
ee-first@1.1.1:
|
|
5079
5003
|
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
5080
5004
|
|
|
5081
|
-
electron-to-chromium@1.5.
|
|
5082
|
-
resolution: {integrity: sha512-
|
|
5005
|
+
electron-to-chromium@1.5.378:
|
|
5006
|
+
resolution: {integrity: sha512-VinvOAuuPmdD1guEgGv5f2Qp7/vlfqOrUOMYNnOD4wj3pit8kRsQHzfIf6teyUGWo15Tg5+bOJaRunvyltpVWQ==}
|
|
5083
5007
|
|
|
5084
5008
|
elementtree@0.1.7:
|
|
5085
5009
|
resolution: {integrity: sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==}
|
|
@@ -5272,8 +5196,8 @@ packages:
|
|
|
5272
5196
|
'@typescript-eslint/parser':
|
|
5273
5197
|
optional: true
|
|
5274
5198
|
|
|
5275
|
-
eslint-plugin-yml@3.
|
|
5276
|
-
resolution: {integrity: sha512-
|
|
5199
|
+
eslint-plugin-yml@3.5.0:
|
|
5200
|
+
resolution: {integrity: sha512-u2UkSIp/+th1wYCt0QWeCI6agf24dxX6PbFfCCN18gGQHmXh3Cn9D/U5OiP5RNYTEwjXCLusj1OJRK+zwdvFqQ==}
|
|
5277
5201
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0}
|
|
5278
5202
|
peerDependencies:
|
|
5279
5203
|
eslint: '>=9.38.0'
|
|
@@ -5495,8 +5419,8 @@ packages:
|
|
|
5495
5419
|
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
|
5496
5420
|
engines: {node: '>=14'}
|
|
5497
5421
|
|
|
5498
|
-
form-data@4.0.
|
|
5499
|
-
resolution: {integrity: sha512-
|
|
5422
|
+
form-data@4.0.6:
|
|
5423
|
+
resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==}
|
|
5500
5424
|
engines: {node: '>= 6'}
|
|
5501
5425
|
|
|
5502
5426
|
format@0.2.2:
|
|
@@ -5594,8 +5518,8 @@ packages:
|
|
|
5594
5518
|
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
5595
5519
|
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
|
5596
5520
|
|
|
5597
|
-
globals@17.
|
|
5598
|
-
resolution: {integrity: sha512-
|
|
5521
|
+
globals@17.7.0:
|
|
5522
|
+
resolution: {integrity: sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==}
|
|
5599
5523
|
engines: {node: '>=18'}
|
|
5600
5524
|
|
|
5601
5525
|
globby@14.1.0:
|
|
@@ -5649,8 +5573,8 @@ packages:
|
|
|
5649
5573
|
header-case@2.0.4:
|
|
5650
5574
|
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
|
|
5651
5575
|
|
|
5652
|
-
hono@4.12.
|
|
5653
|
-
resolution: {integrity: sha512-
|
|
5576
|
+
hono@4.12.27:
|
|
5577
|
+
resolution: {integrity: sha512-1yrb/+w6HWQJrUCLkJ2IF5jNIPvvFkblV5RNOYl6bV+OA6p9GLcMpHFFGTosSvHvcAUibuUukRqhlYI4z32C7Q==}
|
|
5654
5578
|
engines: {node: '>=16.9.0'}
|
|
5655
5579
|
|
|
5656
5580
|
hookable@6.1.1:
|
|
@@ -5726,8 +5650,8 @@ packages:
|
|
|
5726
5650
|
immediate@3.0.6:
|
|
5727
5651
|
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
|
|
5728
5652
|
|
|
5729
|
-
immutable@5.1.
|
|
5730
|
-
resolution: {integrity: sha512-
|
|
5653
|
+
immutable@5.1.7:
|
|
5654
|
+
resolution: {integrity: sha512-47Xb+LFbZ/ZIjQMj6Q5J3IfK7PJFuqRdFOC9FpGgRTK6U2dAEVmkR9hp58qU4FpYux5YXpneDwkj2EP6lppzFA==}
|
|
5731
5655
|
|
|
5732
5656
|
import-from-string@0.0.5:
|
|
5733
5657
|
resolution: {integrity: sha512-z59WIHImWhnGVswc0JoyI10Qn4A8xQw7OKrCFRQHvzGZhhEixX13OtXP9ud3Xjpn16CUoYfh5mTu3tnNODiSAw==}
|
|
@@ -5988,6 +5912,10 @@ packages:
|
|
|
5988
5912
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
5989
5913
|
hasBin: true
|
|
5990
5914
|
|
|
5915
|
+
js-yaml@4.2.0:
|
|
5916
|
+
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
5917
|
+
hasBin: true
|
|
5918
|
+
|
|
5991
5919
|
jsdoc-type-pratt-parser@7.1.1:
|
|
5992
5920
|
resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
|
|
5993
5921
|
engines: {node: '>=20.0.0'}
|
|
@@ -6489,8 +6417,8 @@ packages:
|
|
|
6489
6417
|
resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==}
|
|
6490
6418
|
engines: {node: ^20.17.0 || >=22.9.0}
|
|
6491
6419
|
|
|
6492
|
-
nanoid@3.3.
|
|
6493
|
-
resolution: {integrity: sha512-
|
|
6420
|
+
nanoid@3.3.15:
|
|
6421
|
+
resolution: {integrity: sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==}
|
|
6494
6422
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
6495
6423
|
hasBin: true
|
|
6496
6424
|
|
|
@@ -6523,8 +6451,8 @@ packages:
|
|
|
6523
6451
|
resolution: {integrity: sha512-iwpZdvW6Umz12ICmu9IYPRxg0tOLGmU3Tq2tKetejCj3oZd7b2nUXwP3a7QA5M9glWy8wlPS1G3RwM/CdsUbdQ==}
|
|
6524
6452
|
engines: {node: '>=8.0.0'}
|
|
6525
6453
|
|
|
6526
|
-
node-releases@2.0.
|
|
6527
|
-
resolution: {integrity: sha512-
|
|
6454
|
+
node-releases@2.0.49:
|
|
6455
|
+
resolution: {integrity: sha512-f06bl1D+8ZDkn2oOQQKAh5/otFWqVnM1Q5oerA8Pex7UfT66Tx4IPHIqVVFKqFT3FUtaDstdgkM7yT7JWhqxfw==}
|
|
6528
6456
|
engines: {node: '>=18'}
|
|
6529
6457
|
|
|
6530
6458
|
nopt@9.0.0:
|
|
@@ -6583,8 +6511,8 @@ packages:
|
|
|
6583
6511
|
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
|
|
6584
6512
|
engines: {node: '>= 0.4'}
|
|
6585
6513
|
|
|
6586
|
-
obug@2.1.
|
|
6587
|
-
resolution: {integrity: sha512-
|
|
6514
|
+
obug@2.1.3:
|
|
6515
|
+
resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==}
|
|
6588
6516
|
engines: {node: '>=12.20.0'}
|
|
6589
6517
|
|
|
6590
6518
|
on-finished@2.3.0:
|
|
@@ -6618,8 +6546,8 @@ packages:
|
|
|
6618
6546
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6619
6547
|
hasBin: true
|
|
6620
6548
|
|
|
6621
|
-
oxlint@1.
|
|
6622
|
-
resolution: {integrity: sha512-
|
|
6549
|
+
oxlint@1.71.0:
|
|
6550
|
+
resolution: {integrity: sha512-U1m1X+C0vDj7DC1e13IoZULzEcPczE7UOMTs8VlZGHUEIUaSTZKo5qkPsQEfzpgnQ29Pea/w3Xntk62UCecxZw==}
|
|
6623
6551
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6624
6552
|
hasBin: true
|
|
6625
6553
|
peerDependencies:
|
|
@@ -6789,8 +6717,8 @@ packages:
|
|
|
6789
6717
|
resolution: {integrity: sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==}
|
|
6790
6718
|
engines: {node: '>=4'}
|
|
6791
6719
|
|
|
6792
|
-
postcss-selector-parser@7.1.
|
|
6793
|
-
resolution: {integrity: sha512-
|
|
6720
|
+
postcss-selector-parser@7.1.4:
|
|
6721
|
+
resolution: {integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==}
|
|
6794
6722
|
engines: {node: '>=4'}
|
|
6795
6723
|
|
|
6796
6724
|
postcss-value-parser@4.2.0:
|
|
@@ -7012,13 +6940,8 @@ packages:
|
|
|
7012
6940
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7013
6941
|
hasBin: true
|
|
7014
6942
|
|
|
7015
|
-
rolldown@1.
|
|
7016
|
-
resolution: {integrity: sha512-
|
|
7017
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7018
|
-
hasBin: true
|
|
7019
|
-
|
|
7020
|
-
rolldown@1.1.0:
|
|
7021
|
-
resolution: {integrity: sha512-zpMvlJhs5PkXRTtKc0CaLBVI9AR/VDiJFpM+kx//hgToEca7FgMlGjaRIisXBcb19T76LswgmKECSQ96hjWr5A==}
|
|
6943
|
+
rolldown@1.1.3:
|
|
6944
|
+
resolution: {integrity: sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==}
|
|
7022
6945
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7023
6946
|
hasBin: true
|
|
7024
6947
|
|
|
@@ -7212,8 +7135,8 @@ packages:
|
|
|
7212
7135
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
7213
7136
|
hasBin: true
|
|
7214
7137
|
|
|
7215
|
-
semver@7.8.
|
|
7216
|
-
resolution: {integrity: sha512-
|
|
7138
|
+
semver@7.8.5:
|
|
7139
|
+
resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
|
|
7217
7140
|
engines: {node: '>=10'}
|
|
7218
7141
|
hasBin: true
|
|
7219
7142
|
|
|
@@ -7603,8 +7526,8 @@ packages:
|
|
|
7603
7526
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
7604
7527
|
engines: {node: '>= 0.4'}
|
|
7605
7528
|
|
|
7606
|
-
typescript-eslint@8.
|
|
7607
|
-
resolution: {integrity: sha512-
|
|
7529
|
+
typescript-eslint@8.62.0:
|
|
7530
|
+
resolution: {integrity: sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==}
|
|
7608
7531
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
7609
7532
|
peerDependencies:
|
|
7610
7533
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -7627,8 +7550,8 @@ packages:
|
|
|
7627
7550
|
undici-types@6.21.0:
|
|
7628
7551
|
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
7629
7552
|
|
|
7630
|
-
undici@7.
|
|
7631
|
-
resolution: {integrity: sha512-
|
|
7553
|
+
undici@7.28.0:
|
|
7554
|
+
resolution: {integrity: sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==}
|
|
7632
7555
|
engines: {node: '>=20.18.1'}
|
|
7633
7556
|
|
|
7634
7557
|
unicorn-magic@0.1.0:
|
|
@@ -7755,13 +7678,13 @@ packages:
|
|
|
7755
7678
|
vite-plugin-fake-server-turbo@3.0.18:
|
|
7756
7679
|
resolution: {integrity: sha512-36s5IzXOe03NWU+IeVOUAULDmU/j5gHIGhghPOOK4osnzjREKQsunEmtwydJvU4Xo4I52dcFh8KNDR3Ke7IKwA==}
|
|
7757
7680
|
|
|
7758
|
-
vite@8.0
|
|
7759
|
-
resolution: {integrity: sha512-
|
|
7681
|
+
vite@8.1.0:
|
|
7682
|
+
resolution: {integrity: sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==}
|
|
7760
7683
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7761
7684
|
hasBin: true
|
|
7762
7685
|
peerDependencies:
|
|
7763
7686
|
'@types/node': ^20.19.0 || >=22.12.0
|
|
7764
|
-
'@vitejs/devtools': ^0.
|
|
7687
|
+
'@vitejs/devtools': ^0.3.0
|
|
7765
7688
|
esbuild: ^0.27.0 || ^0.28.0
|
|
7766
7689
|
jiti: '>=1.21.0'
|
|
7767
7690
|
less: ^4.0.0
|
|
@@ -7834,14 +7757,6 @@ packages:
|
|
|
7834
7757
|
peerDependencies:
|
|
7835
7758
|
vue: ^2.0.0||^3.0.0
|
|
7836
7759
|
|
|
7837
|
-
vue@3.5.13:
|
|
7838
|
-
resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
|
|
7839
|
-
peerDependencies:
|
|
7840
|
-
typescript: '*'
|
|
7841
|
-
peerDependenciesMeta:
|
|
7842
|
-
typescript:
|
|
7843
|
-
optional: true
|
|
7844
|
-
|
|
7845
7760
|
vue@3.5.38:
|
|
7846
7761
|
resolution: {integrity: sha512-vAMKHfImQlYSy0C+PBue4s3ERZ2xGKfgZg5GXAsLInq1dyh2H78ILVP5sK0KPFPVW4kv+OGCIvBEondcjpZp7A==}
|
|
7847
7762
|
peerDependencies:
|
|
@@ -7961,8 +7876,8 @@ packages:
|
|
|
7961
7876
|
yargs@13.3.2:
|
|
7962
7877
|
resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==}
|
|
7963
7878
|
|
|
7964
|
-
yargs@17.7.
|
|
7965
|
-
resolution: {integrity: sha512-
|
|
7879
|
+
yargs@17.7.3:
|
|
7880
|
+
resolution: {integrity: sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==}
|
|
7966
7881
|
engines: {node: '>=12'}
|
|
7967
7882
|
|
|
7968
7883
|
yargs@18.0.0:
|
|
@@ -8043,7 +7958,7 @@ snapshots:
|
|
|
8043
7958
|
|
|
8044
7959
|
'@babel/generator@8.0.0-rc.2':
|
|
8045
7960
|
dependencies:
|
|
8046
|
-
'@babel/parser': 8.0.0-rc.
|
|
7961
|
+
'@babel/parser': 8.0.0-rc.2
|
|
8047
7962
|
'@babel/types': 8.0.0-rc.2
|
|
8048
7963
|
'@jridgewell/gen-mapping': 0.3.13
|
|
8049
7964
|
'@jridgewell/trace-mapping': 0.3.31
|
|
@@ -8067,7 +7982,7 @@ snapshots:
|
|
|
8067
7982
|
dependencies:
|
|
8068
7983
|
'@babel/compat-data': 7.29.7
|
|
8069
7984
|
'@babel/helper-validator-option': 7.29.7
|
|
8070
|
-
browserslist: 4.28.
|
|
7985
|
+
browserslist: 4.28.4
|
|
8071
7986
|
lru-cache: 5.1.1
|
|
8072
7987
|
semver: 6.3.1
|
|
8073
7988
|
|
|
@@ -8133,7 +8048,7 @@ snapshots:
|
|
|
8133
8048
|
|
|
8134
8049
|
'@babel/helper-string-parser@7.29.7': {}
|
|
8135
8050
|
|
|
8136
|
-
'@babel/helper-string-parser@8.0.0
|
|
8051
|
+
'@babel/helper-string-parser@8.0.0': {}
|
|
8137
8052
|
|
|
8138
8053
|
'@babel/helper-validator-identifier@7.29.7': {}
|
|
8139
8054
|
|
|
@@ -8141,6 +8056,8 @@ snapshots:
|
|
|
8141
8056
|
|
|
8142
8057
|
'@babel/helper-validator-identifier@8.0.0-rc.3': {}
|
|
8143
8058
|
|
|
8059
|
+
'@babel/helper-validator-identifier@8.0.2': {}
|
|
8060
|
+
|
|
8144
8061
|
'@babel/helper-validator-option@7.29.7': {}
|
|
8145
8062
|
|
|
8146
8063
|
'@babel/helpers@7.29.7':
|
|
@@ -8152,6 +8069,10 @@ snapshots:
|
|
|
8152
8069
|
dependencies:
|
|
8153
8070
|
'@babel/types': 7.29.7
|
|
8154
8071
|
|
|
8072
|
+
'@babel/parser@8.0.0':
|
|
8073
|
+
dependencies:
|
|
8074
|
+
'@babel/types': 8.0.0
|
|
8075
|
+
|
|
8155
8076
|
'@babel/parser@8.0.0-rc.2':
|
|
8156
8077
|
dependencies:
|
|
8157
8078
|
'@babel/types': 8.0.0-rc.2
|
|
@@ -8228,19 +8149,24 @@ snapshots:
|
|
|
8228
8149
|
'@babel/helper-string-parser': 7.29.7
|
|
8229
8150
|
'@babel/helper-validator-identifier': 7.29.7
|
|
8230
8151
|
|
|
8152
|
+
'@babel/types@8.0.0':
|
|
8153
|
+
dependencies:
|
|
8154
|
+
'@babel/helper-string-parser': 8.0.0
|
|
8155
|
+
'@babel/helper-validator-identifier': 8.0.2
|
|
8156
|
+
|
|
8231
8157
|
'@babel/types@8.0.0-rc.2':
|
|
8232
8158
|
dependencies:
|
|
8233
|
-
'@babel/helper-string-parser': 8.0.0
|
|
8159
|
+
'@babel/helper-string-parser': 8.0.0
|
|
8234
8160
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
8235
8161
|
|
|
8236
8162
|
'@babel/types@8.0.0-rc.3':
|
|
8237
8163
|
dependencies:
|
|
8238
|
-
'@babel/helper-string-parser': 8.0.0
|
|
8164
|
+
'@babel/helper-string-parser': 8.0.0
|
|
8239
8165
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
8240
8166
|
|
|
8241
|
-
'@bufbuild/protobuf@2.12.
|
|
8167
|
+
'@bufbuild/protobuf@2.12.1': {}
|
|
8242
8168
|
|
|
8243
|
-
'@cabloy/cli@3.1.
|
|
8169
|
+
'@cabloy/cli@3.1.21(vue@3.5.38(typescript@5.9.3))':
|
|
8244
8170
|
dependencies:
|
|
8245
8171
|
'@babel/parser': 7.29.7
|
|
8246
8172
|
'@cabloy/module-glob': 5.3.13
|
|
@@ -8248,8 +8174,8 @@ snapshots:
|
|
|
8248
8174
|
'@cabloy/process-helper': 3.1.8
|
|
8249
8175
|
'@cabloy/utils': 2.1.22
|
|
8250
8176
|
'@cabloy/word-utils': link:packages-utils/word-utils
|
|
8251
|
-
'@npmcli/config': 10.
|
|
8252
|
-
'@zhennann/common-bin': 4.0.1
|
|
8177
|
+
'@npmcli/config': 10.11.0
|
|
8178
|
+
'@zhennann/common-bin': 4.0.1
|
|
8253
8179
|
'@zhennann/ejs': 3.0.1
|
|
8254
8180
|
boxen: 4.2.0
|
|
8255
8181
|
chalk: 3.0.0
|
|
@@ -8261,7 +8187,7 @@ snapshots:
|
|
|
8261
8187
|
gogocode: 1.0.55(vue@3.5.38(typescript@5.9.3))
|
|
8262
8188
|
is-type-of: 2.2.0
|
|
8263
8189
|
istextorbinary: 3.3.0
|
|
8264
|
-
semver: 7.8.
|
|
8190
|
+
semver: 7.8.5
|
|
8265
8191
|
tmp: 0.2.7
|
|
8266
8192
|
urllib: 4.9.0
|
|
8267
8193
|
transitivePeerDependencies:
|
|
@@ -8281,33 +8207,33 @@ snapshots:
|
|
|
8281
8207
|
|
|
8282
8208
|
'@cabloy/extend@3.2.8': {}
|
|
8283
8209
|
|
|
8284
|
-
'@cabloy/json-schema-to-zod@2.6.
|
|
8210
|
+
'@cabloy/json-schema-to-zod@2.6.5': {}
|
|
8285
8211
|
|
|
8286
8212
|
'@cabloy/json5@1.1.9':
|
|
8287
8213
|
dependencies:
|
|
8288
8214
|
json5: 2.2.3
|
|
8289
8215
|
|
|
8290
|
-
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.
|
|
8216
|
+
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(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.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(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.71.0)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))':
|
|
8291
8217
|
dependencies:
|
|
8292
|
-
'@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.
|
|
8218
|
+
'@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.71.0)
|
|
8293
8219
|
'@eslint/json': 1.2.0
|
|
8294
|
-
'@eslint/markdown': 7.5.1
|
|
8220
|
+
'@eslint/markdown': 7.5.1
|
|
8295
8221
|
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
8296
|
-
'@typescript-eslint/parser': 8.
|
|
8222
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8297
8223
|
eslint-plugin-antfu: 3.2.3(eslint@10.5.0(jiti@2.7.0))
|
|
8298
|
-
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.
|
|
8224
|
+
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))
|
|
8299
8225
|
eslint-plugin-eslint-comments: 3.2.0(eslint@10.5.0(jiti@2.7.0))
|
|
8300
8226
|
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))
|
|
8301
8227
|
eslint-plugin-pnpm: 1.6.1(eslint@10.5.0(jiti@2.7.0))
|
|
8302
8228
|
eslint-plugin-regexp: 3.1.0(eslint@10.5.0(jiti@2.7.0))
|
|
8303
|
-
eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))
|
|
8304
|
-
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.
|
|
8305
|
-
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.
|
|
8306
|
-
eslint-plugin-yml: 3.
|
|
8307
|
-
globals: 17.
|
|
8229
|
+
eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))
|
|
8230
|
+
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(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))
|
|
8231
|
+
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.0(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)))
|
|
8232
|
+
eslint-plugin-yml: 3.5.0(eslint@10.5.0(jiti@2.7.0))
|
|
8233
|
+
globals: 17.7.0
|
|
8308
8234
|
oxfmt: 0.45.0
|
|
8309
|
-
oxlint: 1.
|
|
8310
|
-
typescript-eslint: 8.
|
|
8235
|
+
oxlint: 1.71.0
|
|
8236
|
+
typescript-eslint: 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8311
8237
|
transitivePeerDependencies:
|
|
8312
8238
|
- '@typescript-eslint/eslint-plugin'
|
|
8313
8239
|
- '@typescript-eslint/rule-tester'
|
|
@@ -8328,7 +8254,7 @@ snapshots:
|
|
|
8328
8254
|
chalk: 3.0.0
|
|
8329
8255
|
fs-extra: 11.3.5
|
|
8330
8256
|
globby: 16.2.0
|
|
8331
|
-
semver: 7.8.
|
|
8257
|
+
semver: 7.8.5
|
|
8332
8258
|
|
|
8333
8259
|
'@cabloy/module-info@2.0.0': {}
|
|
8334
8260
|
|
|
@@ -8344,16 +8270,16 @@ snapshots:
|
|
|
8344
8270
|
|
|
8345
8271
|
'@cabloy/process-helper@3.1.8': {}
|
|
8346
8272
|
|
|
8347
|
-
'@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.
|
|
8273
|
+
'@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.3)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)':
|
|
8348
8274
|
dependencies:
|
|
8349
8275
|
'@quasar/render-ssr-error': 1.0.4
|
|
8350
8276
|
'@quasar/ssl-certificate': 1.0.0
|
|
8351
|
-
'@quasar/vite-plugin': '@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0
|
|
8277
|
+
'@quasar/vite-plugin': '@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(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.1.0(@types/node@22.20.0)(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))'
|
|
8352
8278
|
'@types/chrome': 0.1.43
|
|
8353
8279
|
'@types/compression': 1.8.1
|
|
8354
8280
|
'@types/cordova': 11.0.3
|
|
8355
8281
|
'@types/express': 5.0.6
|
|
8356
|
-
'@vitejs/plugin-vue': 6.0.7(vite@8.0
|
|
8282
|
+
'@vitejs/plugin-vue': 6.0.7(vite@8.1.0(@types/node@22.20.0)(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))
|
|
8357
8283
|
archiver: 7.0.1
|
|
8358
8284
|
chokidar: 5.0.0
|
|
8359
8285
|
ci-info: 4.4.0
|
|
@@ -8365,10 +8291,10 @@ snapshots:
|
|
|
8365
8291
|
dotenv-expand: 12.0.3
|
|
8366
8292
|
elementtree: 0.1.7
|
|
8367
8293
|
esbuild: 0.27.7
|
|
8368
|
-
express: 5.2.1
|
|
8294
|
+
express: 5.2.1
|
|
8369
8295
|
fs-extra: 11.3.5
|
|
8370
8296
|
html-minifier-terser: 7.2.0
|
|
8371
|
-
inquirer: 13.4.3(@types/node@22.
|
|
8297
|
+
inquirer: 13.4.3(@types/node@22.20.0)
|
|
8372
8298
|
isbinaryfile: 5.0.7
|
|
8373
8299
|
kolorist: 1.8.0
|
|
8374
8300
|
lodash: 4.18.1
|
|
@@ -8376,13 +8302,13 @@ snapshots:
|
|
|
8376
8302
|
mlly: 1.8.2
|
|
8377
8303
|
open: 11.0.0
|
|
8378
8304
|
quasar: 2.20.1
|
|
8379
|
-
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.
|
|
8305
|
+
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)
|
|
8380
8306
|
sass-embedded: 1.100.0
|
|
8381
|
-
semver: 7.8.
|
|
8307
|
+
semver: 7.8.5
|
|
8382
8308
|
serialize-javascript: 7.0.6
|
|
8383
8309
|
tinyglobby: 0.2.17
|
|
8384
8310
|
ts-essentials: 10.2.1(typescript@5.9.3)
|
|
8385
|
-
vite: 8.0
|
|
8311
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
8386
8312
|
vue: 3.5.38(typescript@5.9.3)
|
|
8387
8313
|
vue-router: '@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3))'
|
|
8388
8314
|
webpack-merge: 6.0.1
|
|
@@ -8408,11 +8334,11 @@ snapshots:
|
|
|
8408
8334
|
- tsx
|
|
8409
8335
|
- yaml
|
|
8410
8336
|
|
|
8411
|
-
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0
|
|
8337
|
+
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(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.1.0(@types/node@22.20.0)(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))':
|
|
8412
8338
|
dependencies:
|
|
8413
|
-
'@vitejs/plugin-vue': 6.0.7(vite@8.0
|
|
8339
|
+
'@vitejs/plugin-vue': 6.0.7(vite@8.1.0(@types/node@22.20.0)(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))
|
|
8414
8340
|
quasar: 2.20.1
|
|
8415
|
-
vite: 8.0
|
|
8341
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
8416
8342
|
vue: 3.5.38(typescript@5.9.3)
|
|
8417
8343
|
|
|
8418
8344
|
'@cabloy/socket@2.1.9': {}
|
|
@@ -8424,17 +8350,17 @@ snapshots:
|
|
|
8424
8350
|
'@marcbachmann/cel-js': 7.6.1
|
|
8425
8351
|
object-hash: 3.0.0
|
|
8426
8352
|
|
|
8427
|
-
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
8353
|
+
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.1.0(@types/node@22.20.0)(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))':
|
|
8428
8354
|
dependencies:
|
|
8429
8355
|
'@babel/core': 7.29.7
|
|
8430
8356
|
esbuild: 0.20.2
|
|
8431
|
-
vite: 8.0
|
|
8357
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
8432
8358
|
|
|
8433
|
-
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
8359
|
+
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.1.0(@types/node@22.20.0)(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))':
|
|
8434
8360
|
dependencies:
|
|
8435
8361
|
'@babel/core': 7.29.7
|
|
8436
8362
|
esbuild: 0.20.2
|
|
8437
|
-
vite: 8.0
|
|
8363
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
8438
8364
|
|
|
8439
8365
|
'@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)':
|
|
8440
8366
|
dependencies:
|
|
@@ -8468,11 +8394,6 @@ snapshots:
|
|
|
8468
8394
|
dependencies:
|
|
8469
8395
|
'@vue/shared': 3.5.13
|
|
8470
8396
|
|
|
8471
|
-
'@cabloy/vue-router@4.4.16(vue@3.5.13(typescript@5.9.3))':
|
|
8472
|
-
dependencies:
|
|
8473
|
-
'@vue/devtools-api': 6.6.4
|
|
8474
|
-
vue: 3.5.13(typescript@5.9.3)
|
|
8475
|
-
|
|
8476
8397
|
'@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3))':
|
|
8477
8398
|
dependencies:
|
|
8478
8399
|
'@vue/devtools-api': 6.6.4
|
|
@@ -8490,12 +8411,6 @@ snapshots:
|
|
|
8490
8411
|
'@vue/shared': 3.5.13
|
|
8491
8412
|
csstype: 3.2.3
|
|
8492
8413
|
|
|
8493
|
-
'@cabloy/vue-server-renderer@3.5.18(vue@3.5.13(typescript@5.9.3))':
|
|
8494
|
-
dependencies:
|
|
8495
|
-
'@vue/compiler-ssr': 3.5.13
|
|
8496
|
-
'@vue/shared': 3.5.13
|
|
8497
|
-
vue: 3.5.13(typescript@5.9.3)
|
|
8498
|
-
|
|
8499
8414
|
'@cabloy/vue-server-renderer@3.5.18(vue@3.5.38(typescript@5.9.3))':
|
|
8500
8415
|
dependencies:
|
|
8501
8416
|
'@vue/compiler-ssr': 3.5.13
|
|
@@ -8533,12 +8448,12 @@ snapshots:
|
|
|
8533
8448
|
'@colors/colors@1.5.0':
|
|
8534
8449
|
optional: true
|
|
8535
8450
|
|
|
8536
|
-
'@e18e/eslint-plugin@0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.
|
|
8451
|
+
'@e18e/eslint-plugin@0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.71.0)':
|
|
8537
8452
|
dependencies:
|
|
8538
8453
|
eslint-plugin-depend: 1.5.0(eslint@10.5.0(jiti@2.7.0))
|
|
8539
8454
|
optionalDependencies:
|
|
8540
8455
|
eslint: 10.5.0(jiti@2.7.0)
|
|
8541
|
-
oxlint: 1.
|
|
8456
|
+
oxlint: 1.71.0
|
|
8542
8457
|
|
|
8543
8458
|
'@eggjs/yauzl@2.11.0':
|
|
8544
8459
|
dependencies:
|
|
@@ -8551,20 +8466,36 @@ snapshots:
|
|
|
8551
8466
|
tslib: 2.8.1
|
|
8552
8467
|
optional: true
|
|
8553
8468
|
|
|
8469
|
+
'@emnapi/core@1.11.1':
|
|
8470
|
+
dependencies:
|
|
8471
|
+
'@emnapi/wasi-threads': 1.2.2
|
|
8472
|
+
tslib: 2.8.1
|
|
8473
|
+
optional: true
|
|
8474
|
+
|
|
8554
8475
|
'@emnapi/runtime@1.10.0':
|
|
8555
8476
|
dependencies:
|
|
8556
8477
|
tslib: 2.8.1
|
|
8557
8478
|
optional: true
|
|
8558
8479
|
|
|
8480
|
+
'@emnapi/runtime@1.11.1':
|
|
8481
|
+
dependencies:
|
|
8482
|
+
tslib: 2.8.1
|
|
8483
|
+
optional: true
|
|
8484
|
+
|
|
8559
8485
|
'@emnapi/wasi-threads@1.2.1':
|
|
8560
8486
|
dependencies:
|
|
8561
8487
|
tslib: 2.8.1
|
|
8562
8488
|
optional: true
|
|
8563
8489
|
|
|
8490
|
+
'@emnapi/wasi-threads@1.2.2':
|
|
8491
|
+
dependencies:
|
|
8492
|
+
tslib: 2.8.1
|
|
8493
|
+
optional: true
|
|
8494
|
+
|
|
8564
8495
|
'@es-joy/jsdoccomment@0.84.0':
|
|
8565
8496
|
dependencies:
|
|
8566
8497
|
'@types/estree': 1.0.9
|
|
8567
|
-
'@typescript-eslint/types': 8.
|
|
8498
|
+
'@typescript-eslint/types': 8.62.0
|
|
8568
8499
|
comment-parser: 1.4.5
|
|
8569
8500
|
esquery: 1.7.0
|
|
8570
8501
|
jsdoc-type-pratt-parser: 7.1.1
|
|
@@ -8978,12 +8909,12 @@ snapshots:
|
|
|
8978
8909
|
'@humanwhocodes/momoa': 3.3.10
|
|
8979
8910
|
natural-compare: 1.4.0
|
|
8980
8911
|
|
|
8981
|
-
'@eslint/markdown@7.5.1
|
|
8912
|
+
'@eslint/markdown@7.5.1':
|
|
8982
8913
|
dependencies:
|
|
8983
8914
|
'@eslint/core': 0.17.0
|
|
8984
8915
|
'@eslint/plugin-kit': 0.4.1
|
|
8985
8916
|
github-slugger: 2.0.0
|
|
8986
|
-
mdast-util-from-markdown: 2.0.3
|
|
8917
|
+
mdast-util-from-markdown: 2.0.3
|
|
8987
8918
|
mdast-util-frontmatter: 2.0.1
|
|
8988
8919
|
mdast-util-gfm: 3.1.0
|
|
8989
8920
|
micromark-extension-frontmatter: 2.0.0
|
|
@@ -9013,9 +8944,9 @@ snapshots:
|
|
|
9013
8944
|
|
|
9014
8945
|
'@gar/promise-retry@1.0.3': {}
|
|
9015
8946
|
|
|
9016
|
-
'@hono/node-server@1.19.14(hono@4.12.
|
|
8947
|
+
'@hono/node-server@1.19.14(hono@4.12.27)':
|
|
9017
8948
|
dependencies:
|
|
9018
|
-
hono: 4.12.
|
|
8949
|
+
hono: 4.12.27
|
|
9019
8950
|
|
|
9020
8951
|
'@humanfs/core@0.19.2':
|
|
9021
8952
|
dependencies:
|
|
@@ -9037,122 +8968,122 @@ snapshots:
|
|
|
9037
8968
|
|
|
9038
8969
|
'@inquirer/ansi@2.0.7': {}
|
|
9039
8970
|
|
|
9040
|
-
'@inquirer/checkbox@5.2.1(@types/node@22.
|
|
8971
|
+
'@inquirer/checkbox@5.2.1(@types/node@22.20.0)':
|
|
9041
8972
|
dependencies:
|
|
9042
8973
|
'@inquirer/ansi': 2.0.7
|
|
9043
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
8974
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9044
8975
|
'@inquirer/figures': 2.0.7
|
|
9045
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
8976
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9046
8977
|
optionalDependencies:
|
|
9047
|
-
'@types/node': 22.
|
|
8978
|
+
'@types/node': 22.20.0
|
|
9048
8979
|
|
|
9049
|
-
'@inquirer/confirm@6.1.1(@types/node@22.
|
|
8980
|
+
'@inquirer/confirm@6.1.1(@types/node@22.20.0)':
|
|
9050
8981
|
dependencies:
|
|
9051
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9052
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
8982
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
8983
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9053
8984
|
optionalDependencies:
|
|
9054
|
-
'@types/node': 22.
|
|
8985
|
+
'@types/node': 22.20.0
|
|
9055
8986
|
|
|
9056
|
-
'@inquirer/core@11.2.1(@types/node@22.
|
|
8987
|
+
'@inquirer/core@11.2.1(@types/node@22.20.0)':
|
|
9057
8988
|
dependencies:
|
|
9058
8989
|
'@inquirer/ansi': 2.0.7
|
|
9059
8990
|
'@inquirer/figures': 2.0.7
|
|
9060
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
8991
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9061
8992
|
cli-width: 4.1.0
|
|
9062
8993
|
fast-wrap-ansi: 0.2.2
|
|
9063
8994
|
mute-stream: 3.0.0
|
|
9064
8995
|
signal-exit: 4.1.0
|
|
9065
8996
|
optionalDependencies:
|
|
9066
|
-
'@types/node': 22.
|
|
8997
|
+
'@types/node': 22.20.0
|
|
9067
8998
|
|
|
9068
|
-
'@inquirer/editor@5.2.2(@types/node@22.
|
|
8999
|
+
'@inquirer/editor@5.2.2(@types/node@22.20.0)':
|
|
9069
9000
|
dependencies:
|
|
9070
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9071
|
-
'@inquirer/external-editor': 3.0.3(@types/node@22.
|
|
9072
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9001
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9002
|
+
'@inquirer/external-editor': 3.0.3(@types/node@22.20.0)
|
|
9003
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9073
9004
|
optionalDependencies:
|
|
9074
|
-
'@types/node': 22.
|
|
9005
|
+
'@types/node': 22.20.0
|
|
9075
9006
|
|
|
9076
|
-
'@inquirer/expand@5.1.1(@types/node@22.
|
|
9007
|
+
'@inquirer/expand@5.1.1(@types/node@22.20.0)':
|
|
9077
9008
|
dependencies:
|
|
9078
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9079
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9009
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9010
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9080
9011
|
optionalDependencies:
|
|
9081
|
-
'@types/node': 22.
|
|
9012
|
+
'@types/node': 22.20.0
|
|
9082
9013
|
|
|
9083
|
-
'@inquirer/external-editor@3.0.3(@types/node@22.
|
|
9014
|
+
'@inquirer/external-editor@3.0.3(@types/node@22.20.0)':
|
|
9084
9015
|
dependencies:
|
|
9085
|
-
chardet: 2.
|
|
9016
|
+
chardet: 2.2.0
|
|
9086
9017
|
iconv-lite: 0.7.2
|
|
9087
9018
|
optionalDependencies:
|
|
9088
|
-
'@types/node': 22.
|
|
9019
|
+
'@types/node': 22.20.0
|
|
9089
9020
|
|
|
9090
9021
|
'@inquirer/figures@2.0.7': {}
|
|
9091
9022
|
|
|
9092
|
-
'@inquirer/input@5.1.2(@types/node@22.
|
|
9023
|
+
'@inquirer/input@5.1.2(@types/node@22.20.0)':
|
|
9093
9024
|
dependencies:
|
|
9094
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9095
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9025
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9026
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9096
9027
|
optionalDependencies:
|
|
9097
|
-
'@types/node': 22.
|
|
9028
|
+
'@types/node': 22.20.0
|
|
9098
9029
|
|
|
9099
|
-
'@inquirer/number@4.1.1(@types/node@22.
|
|
9030
|
+
'@inquirer/number@4.1.1(@types/node@22.20.0)':
|
|
9100
9031
|
dependencies:
|
|
9101
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9102
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9032
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9033
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9103
9034
|
optionalDependencies:
|
|
9104
|
-
'@types/node': 22.
|
|
9035
|
+
'@types/node': 22.20.0
|
|
9105
9036
|
|
|
9106
|
-
'@inquirer/password@5.1.1(@types/node@22.
|
|
9037
|
+
'@inquirer/password@5.1.1(@types/node@22.20.0)':
|
|
9107
9038
|
dependencies:
|
|
9108
9039
|
'@inquirer/ansi': 2.0.7
|
|
9109
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9110
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9040
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9041
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9111
9042
|
optionalDependencies:
|
|
9112
|
-
'@types/node': 22.
|
|
9113
|
-
|
|
9114
|
-
'@inquirer/prompts@8.5.2(@types/node@22.
|
|
9115
|
-
dependencies:
|
|
9116
|
-
'@inquirer/checkbox': 5.2.1(@types/node@22.
|
|
9117
|
-
'@inquirer/confirm': 6.1.1(@types/node@22.
|
|
9118
|
-
'@inquirer/editor': 5.2.2(@types/node@22.
|
|
9119
|
-
'@inquirer/expand': 5.1.1(@types/node@22.
|
|
9120
|
-
'@inquirer/input': 5.1.2(@types/node@22.
|
|
9121
|
-
'@inquirer/number': 4.1.1(@types/node@22.
|
|
9122
|
-
'@inquirer/password': 5.1.1(@types/node@22.
|
|
9123
|
-
'@inquirer/rawlist': 5.3.1(@types/node@22.
|
|
9124
|
-
'@inquirer/search': 4.2.1(@types/node@22.
|
|
9125
|
-
'@inquirer/select': 5.2.1(@types/node@22.
|
|
9043
|
+
'@types/node': 22.20.0
|
|
9044
|
+
|
|
9045
|
+
'@inquirer/prompts@8.5.2(@types/node@22.20.0)':
|
|
9046
|
+
dependencies:
|
|
9047
|
+
'@inquirer/checkbox': 5.2.1(@types/node@22.20.0)
|
|
9048
|
+
'@inquirer/confirm': 6.1.1(@types/node@22.20.0)
|
|
9049
|
+
'@inquirer/editor': 5.2.2(@types/node@22.20.0)
|
|
9050
|
+
'@inquirer/expand': 5.1.1(@types/node@22.20.0)
|
|
9051
|
+
'@inquirer/input': 5.1.2(@types/node@22.20.0)
|
|
9052
|
+
'@inquirer/number': 4.1.1(@types/node@22.20.0)
|
|
9053
|
+
'@inquirer/password': 5.1.1(@types/node@22.20.0)
|
|
9054
|
+
'@inquirer/rawlist': 5.3.1(@types/node@22.20.0)
|
|
9055
|
+
'@inquirer/search': 4.2.1(@types/node@22.20.0)
|
|
9056
|
+
'@inquirer/select': 5.2.1(@types/node@22.20.0)
|
|
9126
9057
|
optionalDependencies:
|
|
9127
|
-
'@types/node': 22.
|
|
9058
|
+
'@types/node': 22.20.0
|
|
9128
9059
|
|
|
9129
|
-
'@inquirer/rawlist@5.3.1(@types/node@22.
|
|
9060
|
+
'@inquirer/rawlist@5.3.1(@types/node@22.20.0)':
|
|
9130
9061
|
dependencies:
|
|
9131
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9132
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9062
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9063
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9133
9064
|
optionalDependencies:
|
|
9134
|
-
'@types/node': 22.
|
|
9065
|
+
'@types/node': 22.20.0
|
|
9135
9066
|
|
|
9136
|
-
'@inquirer/search@4.2.1(@types/node@22.
|
|
9067
|
+
'@inquirer/search@4.2.1(@types/node@22.20.0)':
|
|
9137
9068
|
dependencies:
|
|
9138
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9069
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9139
9070
|
'@inquirer/figures': 2.0.7
|
|
9140
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9071
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9141
9072
|
optionalDependencies:
|
|
9142
|
-
'@types/node': 22.
|
|
9073
|
+
'@types/node': 22.20.0
|
|
9143
9074
|
|
|
9144
|
-
'@inquirer/select@5.2.1(@types/node@22.
|
|
9075
|
+
'@inquirer/select@5.2.1(@types/node@22.20.0)':
|
|
9145
9076
|
dependencies:
|
|
9146
9077
|
'@inquirer/ansi': 2.0.7
|
|
9147
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9078
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9148
9079
|
'@inquirer/figures': 2.0.7
|
|
9149
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9080
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9150
9081
|
optionalDependencies:
|
|
9151
|
-
'@types/node': 22.
|
|
9082
|
+
'@types/node': 22.20.0
|
|
9152
9083
|
|
|
9153
|
-
'@inquirer/type@4.0.7(@types/node@22.
|
|
9084
|
+
'@inquirer/type@4.0.7(@types/node@22.20.0)':
|
|
9154
9085
|
optionalDependencies:
|
|
9155
|
-
'@types/node': 22.
|
|
9086
|
+
'@types/node': 22.20.0
|
|
9156
9087
|
|
|
9157
9088
|
'@isaacs/cliui@8.0.2':
|
|
9158
9089
|
dependencies:
|
|
@@ -9199,7 +9130,7 @@ snapshots:
|
|
|
9199
9130
|
|
|
9200
9131
|
'@modelcontextprotocol/sdk@1.29.0(@cabloy/zod@4.3.6)':
|
|
9201
9132
|
dependencies:
|
|
9202
|
-
'@hono/node-server': 1.19.14(hono@4.12.
|
|
9133
|
+
'@hono/node-server': 1.19.14(hono@4.12.27)
|
|
9203
9134
|
ajv: 8.20.0
|
|
9204
9135
|
ajv-formats: 3.0.1(ajv@8.20.0)
|
|
9205
9136
|
content-type: 1.0.5
|
|
@@ -9207,9 +9138,9 @@ snapshots:
|
|
|
9207
9138
|
cross-spawn: 7.0.6
|
|
9208
9139
|
eventsource: 3.0.7
|
|
9209
9140
|
eventsource-parser: 3.1.0
|
|
9210
|
-
express: 5.2.1
|
|
9211
|
-
express-rate-limit: 8.5.2(express@5.2.1
|
|
9212
|
-
hono: 4.12.
|
|
9141
|
+
express: 5.2.1
|
|
9142
|
+
express-rate-limit: 8.5.2(express@5.2.1)
|
|
9143
|
+
hono: 4.12.27
|
|
9213
9144
|
jose: 6.2.3
|
|
9214
9145
|
json-schema-typed: 8.0.2
|
|
9215
9146
|
pkce-challenge: 5.0.1
|
|
@@ -9219,11 +9150,18 @@ snapshots:
|
|
|
9219
9150
|
transitivePeerDependencies:
|
|
9220
9151
|
- supports-color
|
|
9221
9152
|
|
|
9222
|
-
'@napi-rs/wasm-runtime@1.1.
|
|
9153
|
+
'@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
|
9223
9154
|
dependencies:
|
|
9224
9155
|
'@emnapi/core': 1.10.0
|
|
9225
9156
|
'@emnapi/runtime': 1.10.0
|
|
9226
|
-
'@tybys/wasm-util': 0.10.
|
|
9157
|
+
'@tybys/wasm-util': 0.10.3
|
|
9158
|
+
optional: true
|
|
9159
|
+
|
|
9160
|
+
'@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
|
|
9161
|
+
dependencies:
|
|
9162
|
+
'@emnapi/core': 1.11.1
|
|
9163
|
+
'@emnapi/runtime': 1.11.1
|
|
9164
|
+
'@tybys/wasm-util': 0.10.3
|
|
9227
9165
|
optional: true
|
|
9228
9166
|
|
|
9229
9167
|
'@nodelib/fs.scandir@2.1.5':
|
|
@@ -9238,7 +9176,7 @@ snapshots:
|
|
|
9238
9176
|
'@nodelib/fs.scandir': 2.1.5
|
|
9239
9177
|
fastq: 1.20.1
|
|
9240
9178
|
|
|
9241
|
-
'@npmcli/config@10.
|
|
9179
|
+
'@npmcli/config@10.11.0':
|
|
9242
9180
|
dependencies:
|
|
9243
9181
|
'@npmcli/map-workspaces': 5.0.3
|
|
9244
9182
|
'@npmcli/package-json': 7.0.5
|
|
@@ -9246,7 +9184,7 @@ snapshots:
|
|
|
9246
9184
|
ini: 6.0.0
|
|
9247
9185
|
nopt: 9.0.0
|
|
9248
9186
|
proc-log: 6.1.0
|
|
9249
|
-
semver: 7.8.
|
|
9187
|
+
semver: 7.8.5
|
|
9250
9188
|
walk-up-path: 4.0.0
|
|
9251
9189
|
|
|
9252
9190
|
'@npmcli/git@7.0.2':
|
|
@@ -9257,7 +9195,7 @@ snapshots:
|
|
|
9257
9195
|
lru-cache: 11.5.1
|
|
9258
9196
|
npm-pick-manifest: 11.0.3
|
|
9259
9197
|
proc-log: 6.1.0
|
|
9260
|
-
semver: 7.8.
|
|
9198
|
+
semver: 7.8.5
|
|
9261
9199
|
which: 6.0.1
|
|
9262
9200
|
|
|
9263
9201
|
'@npmcli/map-workspaces@5.0.3':
|
|
@@ -9276,7 +9214,7 @@ snapshots:
|
|
|
9276
9214
|
hosted-git-info: 9.0.3
|
|
9277
9215
|
json-parse-even-better-errors: 5.0.0
|
|
9278
9216
|
proc-log: 6.1.0
|
|
9279
|
-
semver: 7.8.
|
|
9217
|
+
semver: 7.8.5
|
|
9280
9218
|
spdx-expression-parse: 4.0.0
|
|
9281
9219
|
|
|
9282
9220
|
'@npmcli/promise-spawn@9.0.1':
|
|
@@ -9287,9 +9225,7 @@ snapshots:
|
|
|
9287
9225
|
|
|
9288
9226
|
'@oxc-project/types@0.127.0': {}
|
|
9289
9227
|
|
|
9290
|
-
'@oxc-project/types@0.
|
|
9291
|
-
|
|
9292
|
-
'@oxc-project/types@0.134.0': {}
|
|
9228
|
+
'@oxc-project/types@0.137.0': {}
|
|
9293
9229
|
|
|
9294
9230
|
'@oxfmt/binding-android-arm-eabi@0.45.0':
|
|
9295
9231
|
optional: true
|
|
@@ -9348,61 +9284,61 @@ snapshots:
|
|
|
9348
9284
|
'@oxfmt/binding-win32-x64-msvc@0.45.0':
|
|
9349
9285
|
optional: true
|
|
9350
9286
|
|
|
9351
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
9287
|
+
'@oxlint/binding-android-arm-eabi@1.71.0':
|
|
9352
9288
|
optional: true
|
|
9353
9289
|
|
|
9354
|
-
'@oxlint/binding-android-arm64@1.
|
|
9290
|
+
'@oxlint/binding-android-arm64@1.71.0':
|
|
9355
9291
|
optional: true
|
|
9356
9292
|
|
|
9357
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
9293
|
+
'@oxlint/binding-darwin-arm64@1.71.0':
|
|
9358
9294
|
optional: true
|
|
9359
9295
|
|
|
9360
|
-
'@oxlint/binding-darwin-x64@1.
|
|
9296
|
+
'@oxlint/binding-darwin-x64@1.71.0':
|
|
9361
9297
|
optional: true
|
|
9362
9298
|
|
|
9363
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
9299
|
+
'@oxlint/binding-freebsd-x64@1.71.0':
|
|
9364
9300
|
optional: true
|
|
9365
9301
|
|
|
9366
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
9302
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.71.0':
|
|
9367
9303
|
optional: true
|
|
9368
9304
|
|
|
9369
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
9305
|
+
'@oxlint/binding-linux-arm-musleabihf@1.71.0':
|
|
9370
9306
|
optional: true
|
|
9371
9307
|
|
|
9372
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
9308
|
+
'@oxlint/binding-linux-arm64-gnu@1.71.0':
|
|
9373
9309
|
optional: true
|
|
9374
9310
|
|
|
9375
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
9311
|
+
'@oxlint/binding-linux-arm64-musl@1.71.0':
|
|
9376
9312
|
optional: true
|
|
9377
9313
|
|
|
9378
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
9314
|
+
'@oxlint/binding-linux-ppc64-gnu@1.71.0':
|
|
9379
9315
|
optional: true
|
|
9380
9316
|
|
|
9381
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
9317
|
+
'@oxlint/binding-linux-riscv64-gnu@1.71.0':
|
|
9382
9318
|
optional: true
|
|
9383
9319
|
|
|
9384
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
9320
|
+
'@oxlint/binding-linux-riscv64-musl@1.71.0':
|
|
9385
9321
|
optional: true
|
|
9386
9322
|
|
|
9387
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
9323
|
+
'@oxlint/binding-linux-s390x-gnu@1.71.0':
|
|
9388
9324
|
optional: true
|
|
9389
9325
|
|
|
9390
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
9326
|
+
'@oxlint/binding-linux-x64-gnu@1.71.0':
|
|
9391
9327
|
optional: true
|
|
9392
9328
|
|
|
9393
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
9329
|
+
'@oxlint/binding-linux-x64-musl@1.71.0':
|
|
9394
9330
|
optional: true
|
|
9395
9331
|
|
|
9396
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
9332
|
+
'@oxlint/binding-openharmony-arm64@1.71.0':
|
|
9397
9333
|
optional: true
|
|
9398
9334
|
|
|
9399
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
9335
|
+
'@oxlint/binding-win32-arm64-msvc@1.71.0':
|
|
9400
9336
|
optional: true
|
|
9401
9337
|
|
|
9402
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
9338
|
+
'@oxlint/binding-win32-ia32-msvc@1.71.0':
|
|
9403
9339
|
optional: true
|
|
9404
9340
|
|
|
9405
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
9341
|
+
'@oxlint/binding-win32-x64-msvc@1.71.0':
|
|
9406
9342
|
optional: true
|
|
9407
9343
|
|
|
9408
9344
|
'@parcel/watcher-android-arm64@2.5.6':
|
|
@@ -9510,148 +9446,99 @@ snapshots:
|
|
|
9510
9446
|
'@rolldown/binding-android-arm64@1.0.0-rc.17':
|
|
9511
9447
|
optional: true
|
|
9512
9448
|
|
|
9513
|
-
'@rolldown/binding-android-arm64@1.
|
|
9514
|
-
optional: true
|
|
9515
|
-
|
|
9516
|
-
'@rolldown/binding-android-arm64@1.1.0':
|
|
9449
|
+
'@rolldown/binding-android-arm64@1.1.3':
|
|
9517
9450
|
optional: true
|
|
9518
9451
|
|
|
9519
9452
|
'@rolldown/binding-darwin-arm64@1.0.0-rc.17':
|
|
9520
9453
|
optional: true
|
|
9521
9454
|
|
|
9522
|
-
'@rolldown/binding-darwin-arm64@1.
|
|
9523
|
-
optional: true
|
|
9524
|
-
|
|
9525
|
-
'@rolldown/binding-darwin-arm64@1.1.0':
|
|
9455
|
+
'@rolldown/binding-darwin-arm64@1.1.3':
|
|
9526
9456
|
optional: true
|
|
9527
9457
|
|
|
9528
9458
|
'@rolldown/binding-darwin-x64@1.0.0-rc.17':
|
|
9529
9459
|
optional: true
|
|
9530
9460
|
|
|
9531
|
-
'@rolldown/binding-darwin-x64@1.
|
|
9532
|
-
optional: true
|
|
9533
|
-
|
|
9534
|
-
'@rolldown/binding-darwin-x64@1.1.0':
|
|
9461
|
+
'@rolldown/binding-darwin-x64@1.1.3':
|
|
9535
9462
|
optional: true
|
|
9536
9463
|
|
|
9537
9464
|
'@rolldown/binding-freebsd-x64@1.0.0-rc.17':
|
|
9538
9465
|
optional: true
|
|
9539
9466
|
|
|
9540
|
-
'@rolldown/binding-freebsd-x64@1.
|
|
9541
|
-
optional: true
|
|
9542
|
-
|
|
9543
|
-
'@rolldown/binding-freebsd-x64@1.1.0':
|
|
9467
|
+
'@rolldown/binding-freebsd-x64@1.1.3':
|
|
9544
9468
|
optional: true
|
|
9545
9469
|
|
|
9546
9470
|
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.17':
|
|
9547
9471
|
optional: true
|
|
9548
9472
|
|
|
9549
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.
|
|
9550
|
-
optional: true
|
|
9551
|
-
|
|
9552
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.1.0':
|
|
9473
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.1.3':
|
|
9553
9474
|
optional: true
|
|
9554
9475
|
|
|
9555
9476
|
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.17':
|
|
9556
9477
|
optional: true
|
|
9557
9478
|
|
|
9558
|
-
'@rolldown/binding-linux-arm64-gnu@1.
|
|
9559
|
-
optional: true
|
|
9560
|
-
|
|
9561
|
-
'@rolldown/binding-linux-arm64-gnu@1.1.0':
|
|
9479
|
+
'@rolldown/binding-linux-arm64-gnu@1.1.3':
|
|
9562
9480
|
optional: true
|
|
9563
9481
|
|
|
9564
9482
|
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.17':
|
|
9565
9483
|
optional: true
|
|
9566
9484
|
|
|
9567
|
-
'@rolldown/binding-linux-arm64-musl@1.
|
|
9568
|
-
optional: true
|
|
9569
|
-
|
|
9570
|
-
'@rolldown/binding-linux-arm64-musl@1.1.0':
|
|
9485
|
+
'@rolldown/binding-linux-arm64-musl@1.1.3':
|
|
9571
9486
|
optional: true
|
|
9572
9487
|
|
|
9573
9488
|
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.17':
|
|
9574
9489
|
optional: true
|
|
9575
9490
|
|
|
9576
|
-
'@rolldown/binding-linux-ppc64-gnu@1.
|
|
9577
|
-
optional: true
|
|
9578
|
-
|
|
9579
|
-
'@rolldown/binding-linux-ppc64-gnu@1.1.0':
|
|
9491
|
+
'@rolldown/binding-linux-ppc64-gnu@1.1.3':
|
|
9580
9492
|
optional: true
|
|
9581
9493
|
|
|
9582
9494
|
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.17':
|
|
9583
9495
|
optional: true
|
|
9584
9496
|
|
|
9585
|
-
'@rolldown/binding-linux-s390x-gnu@1.
|
|
9586
|
-
optional: true
|
|
9587
|
-
|
|
9588
|
-
'@rolldown/binding-linux-s390x-gnu@1.1.0':
|
|
9497
|
+
'@rolldown/binding-linux-s390x-gnu@1.1.3':
|
|
9589
9498
|
optional: true
|
|
9590
9499
|
|
|
9591
9500
|
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.17':
|
|
9592
9501
|
optional: true
|
|
9593
9502
|
|
|
9594
|
-
'@rolldown/binding-linux-x64-gnu@1.
|
|
9595
|
-
optional: true
|
|
9596
|
-
|
|
9597
|
-
'@rolldown/binding-linux-x64-gnu@1.1.0':
|
|
9503
|
+
'@rolldown/binding-linux-x64-gnu@1.1.3':
|
|
9598
9504
|
optional: true
|
|
9599
9505
|
|
|
9600
9506
|
'@rolldown/binding-linux-x64-musl@1.0.0-rc.17':
|
|
9601
9507
|
optional: true
|
|
9602
9508
|
|
|
9603
|
-
'@rolldown/binding-linux-x64-musl@1.
|
|
9604
|
-
optional: true
|
|
9605
|
-
|
|
9606
|
-
'@rolldown/binding-linux-x64-musl@1.1.0':
|
|
9509
|
+
'@rolldown/binding-linux-x64-musl@1.1.3':
|
|
9607
9510
|
optional: true
|
|
9608
9511
|
|
|
9609
9512
|
'@rolldown/binding-openharmony-arm64@1.0.0-rc.17':
|
|
9610
9513
|
optional: true
|
|
9611
9514
|
|
|
9612
|
-
'@rolldown/binding-openharmony-arm64@1.
|
|
9613
|
-
optional: true
|
|
9614
|
-
|
|
9615
|
-
'@rolldown/binding-openharmony-arm64@1.1.0':
|
|
9515
|
+
'@rolldown/binding-openharmony-arm64@1.1.3':
|
|
9616
9516
|
optional: true
|
|
9617
9517
|
|
|
9618
9518
|
'@rolldown/binding-wasm32-wasi@1.0.0-rc.17':
|
|
9619
9519
|
dependencies:
|
|
9620
9520
|
'@emnapi/core': 1.10.0
|
|
9621
9521
|
'@emnapi/runtime': 1.10.0
|
|
9622
|
-
'@napi-rs/wasm-runtime': 1.1.
|
|
9522
|
+
'@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
|
|
9623
9523
|
optional: true
|
|
9624
9524
|
|
|
9625
|
-
'@rolldown/binding-wasm32-wasi@1.
|
|
9525
|
+
'@rolldown/binding-wasm32-wasi@1.1.3':
|
|
9626
9526
|
dependencies:
|
|
9627
|
-
'@emnapi/core': 1.
|
|
9628
|
-
'@emnapi/runtime': 1.
|
|
9629
|
-
'@napi-rs/wasm-runtime': 1.1.
|
|
9630
|
-
optional: true
|
|
9631
|
-
|
|
9632
|
-
'@rolldown/binding-wasm32-wasi@1.1.0':
|
|
9633
|
-
dependencies:
|
|
9634
|
-
'@emnapi/core': 1.10.0
|
|
9635
|
-
'@emnapi/runtime': 1.10.0
|
|
9636
|
-
'@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
|
|
9527
|
+
'@emnapi/core': 1.11.1
|
|
9528
|
+
'@emnapi/runtime': 1.11.1
|
|
9529
|
+
'@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
|
|
9637
9530
|
optional: true
|
|
9638
9531
|
|
|
9639
9532
|
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.17':
|
|
9640
9533
|
optional: true
|
|
9641
9534
|
|
|
9642
|
-
'@rolldown/binding-win32-arm64-msvc@1.
|
|
9643
|
-
optional: true
|
|
9644
|
-
|
|
9645
|
-
'@rolldown/binding-win32-arm64-msvc@1.1.0':
|
|
9535
|
+
'@rolldown/binding-win32-arm64-msvc@1.1.3':
|
|
9646
9536
|
optional: true
|
|
9647
9537
|
|
|
9648
9538
|
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.17':
|
|
9649
9539
|
optional: true
|
|
9650
9540
|
|
|
9651
|
-
'@rolldown/binding-win32-x64-msvc@1.
|
|
9652
|
-
optional: true
|
|
9653
|
-
|
|
9654
|
-
'@rolldown/binding-win32-x64-msvc@1.1.0':
|
|
9541
|
+
'@rolldown/binding-win32-x64-msvc@1.1.3':
|
|
9655
9542
|
optional: true
|
|
9656
9543
|
|
|
9657
9544
|
'@rolldown/pluginutils@1.0.0-rc.17': {}
|
|
@@ -9665,7 +9552,7 @@ snapshots:
|
|
|
9665
9552
|
'@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0))':
|
|
9666
9553
|
dependencies:
|
|
9667
9554
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
9668
|
-
'@typescript-eslint/types': 8.
|
|
9555
|
+
'@typescript-eslint/types': 8.62.0
|
|
9669
9556
|
eslint: 10.5.0(jiti@2.7.0)
|
|
9670
9557
|
eslint-visitor-keys: 4.2.1
|
|
9671
9558
|
espree: 10.4.0
|
|
@@ -9746,11 +9633,11 @@ snapshots:
|
|
|
9746
9633
|
postcss-selector-parser: 6.0.10
|
|
9747
9634
|
tailwindcss: 4.3.1
|
|
9748
9635
|
|
|
9749
|
-
'@tanstack/devtools-event-client@0.4.
|
|
9636
|
+
'@tanstack/devtools-event-client@0.4.4': {}
|
|
9750
9637
|
|
|
9751
9638
|
'@tanstack/form-core@1.33.0':
|
|
9752
9639
|
dependencies:
|
|
9753
|
-
'@tanstack/devtools-event-client': 0.4.
|
|
9640
|
+
'@tanstack/devtools-event-client': 0.4.4
|
|
9754
9641
|
'@tanstack/pacer-lite': 0.1.1
|
|
9755
9642
|
'@tanstack/store': 0.11.0
|
|
9756
9643
|
|
|
@@ -9760,11 +9647,11 @@ snapshots:
|
|
|
9760
9647
|
|
|
9761
9648
|
'@tanstack/pacer-lite@0.1.1': {}
|
|
9762
9649
|
|
|
9763
|
-
'@tanstack/query-core@5.101.
|
|
9650
|
+
'@tanstack/query-core@5.101.1': {}
|
|
9764
9651
|
|
|
9765
|
-
'@tanstack/query-persist-client-core@5.101.
|
|
9652
|
+
'@tanstack/query-persist-client-core@5.101.1':
|
|
9766
9653
|
dependencies:
|
|
9767
|
-
'@tanstack/query-core': 5.101.
|
|
9654
|
+
'@tanstack/query-core': 5.101.1
|
|
9768
9655
|
|
|
9769
9656
|
'@tanstack/store@0.11.0': {}
|
|
9770
9657
|
|
|
@@ -9778,10 +9665,10 @@ snapshots:
|
|
|
9778
9665
|
transitivePeerDependencies:
|
|
9779
9666
|
- '@vue/composition-api'
|
|
9780
9667
|
|
|
9781
|
-
'@tanstack/vue-query@5.101.
|
|
9668
|
+
'@tanstack/vue-query@5.101.1(vue@3.5.38(typescript@5.9.3))':
|
|
9782
9669
|
dependencies:
|
|
9783
9670
|
'@tanstack/match-sorter-utils': 8.19.4
|
|
9784
|
-
'@tanstack/query-core': 5.101.
|
|
9671
|
+
'@tanstack/query-core': 5.101.1
|
|
9785
9672
|
'@vue/devtools-api': 6.6.4
|
|
9786
9673
|
vue: 3.5.38(typescript@5.9.3)
|
|
9787
9674
|
vue-demi: 0.14.10(vue@3.5.38(typescript@5.9.3))
|
|
@@ -9810,7 +9697,7 @@ snapshots:
|
|
|
9810
9697
|
dependencies:
|
|
9811
9698
|
'@textlint/ast-node-types': 15.7.1
|
|
9812
9699
|
|
|
9813
|
-
'@textlint/config-loader@15.7.1
|
|
9700
|
+
'@textlint/config-loader@15.7.1':
|
|
9814
9701
|
dependencies:
|
|
9815
9702
|
'@textlint/kernel': 15.7.1
|
|
9816
9703
|
'@textlint/module-interop': 15.7.1
|
|
@@ -9824,7 +9711,7 @@ snapshots:
|
|
|
9824
9711
|
|
|
9825
9712
|
'@textlint/feature-flag@15.7.1': {}
|
|
9826
9713
|
|
|
9827
|
-
'@textlint/fixer-formatter@15.7.1
|
|
9714
|
+
'@textlint/fixer-formatter@15.7.1':
|
|
9828
9715
|
dependencies:
|
|
9829
9716
|
'@textlint/module-interop': 15.7.1
|
|
9830
9717
|
'@textlint/resolver': 15.7.1
|
|
@@ -9853,7 +9740,7 @@ snapshots:
|
|
|
9853
9740
|
transitivePeerDependencies:
|
|
9854
9741
|
- supports-color
|
|
9855
9742
|
|
|
9856
|
-
'@textlint/linter-formatter@15.7.1
|
|
9743
|
+
'@textlint/linter-formatter@15.7.1':
|
|
9857
9744
|
dependencies:
|
|
9858
9745
|
'@azu/format-text': 1.0.2
|
|
9859
9746
|
'@azu/style-format': 1.0.1
|
|
@@ -9862,7 +9749,7 @@ snapshots:
|
|
|
9862
9749
|
'@textlint/types': 15.7.1
|
|
9863
9750
|
chalk: 4.1.2
|
|
9864
9751
|
debug: 4.4.3(supports-color@10.2.2)
|
|
9865
|
-
js-yaml: 4.
|
|
9752
|
+
js-yaml: 4.2.0
|
|
9866
9753
|
lodash: 4.18.1
|
|
9867
9754
|
pluralize: 2.0.0
|
|
9868
9755
|
string-width: 4.2.3
|
|
@@ -9872,11 +9759,11 @@ snapshots:
|
|
|
9872
9759
|
transitivePeerDependencies:
|
|
9873
9760
|
- supports-color
|
|
9874
9761
|
|
|
9875
|
-
'@textlint/markdown-to-ast@15.7.1
|
|
9762
|
+
'@textlint/markdown-to-ast@15.7.1':
|
|
9876
9763
|
dependencies:
|
|
9877
9764
|
'@textlint/ast-node-types': 15.7.1
|
|
9878
9765
|
debug: 4.4.3(supports-color@10.2.2)
|
|
9879
|
-
mdast-util-gfm-autolink-literal: 0.1.3
|
|
9766
|
+
mdast-util-gfm-autolink-literal: 0.1.3
|
|
9880
9767
|
neotraverse: 0.6.18
|
|
9881
9768
|
remark-footnotes: 3.0.0
|
|
9882
9769
|
remark-frontmatter: 3.0.0
|
|
@@ -9909,9 +9796,9 @@ snapshots:
|
|
|
9909
9796
|
dependencies:
|
|
9910
9797
|
'@textlint/ast-node-types': 15.7.1
|
|
9911
9798
|
|
|
9912
|
-
'@textlint/textlint-plugin-markdown@15.7.1
|
|
9799
|
+
'@textlint/textlint-plugin-markdown@15.7.1':
|
|
9913
9800
|
dependencies:
|
|
9914
|
-
'@textlint/markdown-to-ast': 15.7.1
|
|
9801
|
+
'@textlint/markdown-to-ast': 15.7.1
|
|
9915
9802
|
'@textlint/types': 15.7.1
|
|
9916
9803
|
transitivePeerDependencies:
|
|
9917
9804
|
- supports-color
|
|
@@ -9927,7 +9814,7 @@ snapshots:
|
|
|
9927
9814
|
|
|
9928
9815
|
'@textlint/utils@15.7.1': {}
|
|
9929
9816
|
|
|
9930
|
-
'@tybys/wasm-util@0.10.
|
|
9817
|
+
'@tybys/wasm-util@0.10.3':
|
|
9931
9818
|
dependencies:
|
|
9932
9819
|
tslib: 2.8.1
|
|
9933
9820
|
optional: true
|
|
@@ -9956,7 +9843,7 @@ snapshots:
|
|
|
9956
9843
|
'@types/body-parser@1.19.6':
|
|
9957
9844
|
dependencies:
|
|
9958
9845
|
'@types/connect': 3.4.38
|
|
9959
|
-
'@types/node': 22.
|
|
9846
|
+
'@types/node': 22.20.0
|
|
9960
9847
|
|
|
9961
9848
|
'@types/chrome@0.1.43':
|
|
9962
9849
|
dependencies:
|
|
@@ -9966,11 +9853,11 @@ snapshots:
|
|
|
9966
9853
|
'@types/compression@1.8.1':
|
|
9967
9854
|
dependencies:
|
|
9968
9855
|
'@types/express': 5.0.6
|
|
9969
|
-
'@types/node': 22.
|
|
9856
|
+
'@types/node': 22.20.0
|
|
9970
9857
|
|
|
9971
9858
|
'@types/connect@3.4.38':
|
|
9972
9859
|
dependencies:
|
|
9973
|
-
'@types/node': 22.
|
|
9860
|
+
'@types/node': 22.20.0
|
|
9974
9861
|
|
|
9975
9862
|
'@types/cordova@11.0.3': {}
|
|
9976
9863
|
|
|
@@ -9984,7 +9871,7 @@ snapshots:
|
|
|
9984
9871
|
|
|
9985
9872
|
'@types/express-serve-static-core@5.1.1':
|
|
9986
9873
|
dependencies:
|
|
9987
|
-
'@types/node': 22.
|
|
9874
|
+
'@types/node': 22.20.0
|
|
9988
9875
|
'@types/qs': 6.15.1
|
|
9989
9876
|
'@types/range-parser': 1.2.7
|
|
9990
9877
|
'@types/send': 1.2.1
|
|
@@ -10004,7 +9891,7 @@ snapshots:
|
|
|
10004
9891
|
'@types/fs-extra@11.0.4':
|
|
10005
9892
|
dependencies:
|
|
10006
9893
|
'@types/jsonfile': 6.1.4
|
|
10007
|
-
'@types/node': 22.
|
|
9894
|
+
'@types/node': 22.20.0
|
|
10008
9895
|
|
|
10009
9896
|
'@types/har-format@1.2.16': {}
|
|
10010
9897
|
|
|
@@ -10018,11 +9905,11 @@ snapshots:
|
|
|
10018
9905
|
|
|
10019
9906
|
'@types/jsonfile@6.1.4':
|
|
10020
9907
|
dependencies:
|
|
10021
|
-
'@types/node': 22.
|
|
9908
|
+
'@types/node': 22.20.0
|
|
10022
9909
|
|
|
10023
9910
|
'@types/lodash@4.17.24': {}
|
|
10024
9911
|
|
|
10025
|
-
'@types/luxon@3.7.
|
|
9912
|
+
'@types/luxon@3.7.2': {}
|
|
10026
9913
|
|
|
10027
9914
|
'@types/mdast@3.0.15':
|
|
10028
9915
|
dependencies:
|
|
@@ -10036,9 +9923,9 @@ snapshots:
|
|
|
10036
9923
|
|
|
10037
9924
|
'@types/node-forge@1.3.14':
|
|
10038
9925
|
dependencies:
|
|
10039
|
-
'@types/node': 22.
|
|
9926
|
+
'@types/node': 22.20.0
|
|
10040
9927
|
|
|
10041
|
-
'@types/node@22.
|
|
9928
|
+
'@types/node@22.20.0':
|
|
10042
9929
|
dependencies:
|
|
10043
9930
|
undici-types: 6.21.0
|
|
10044
9931
|
|
|
@@ -10050,25 +9937,25 @@ snapshots:
|
|
|
10050
9937
|
|
|
10051
9938
|
'@types/send@1.2.1':
|
|
10052
9939
|
dependencies:
|
|
10053
|
-
'@types/node': 22.
|
|
9940
|
+
'@types/node': 22.20.0
|
|
10054
9941
|
|
|
10055
9942
|
'@types/serve-static@2.2.0':
|
|
10056
9943
|
dependencies:
|
|
10057
9944
|
'@types/http-errors': 2.0.5
|
|
10058
|
-
'@types/node': 22.
|
|
9945
|
+
'@types/node': 22.20.0
|
|
10059
9946
|
|
|
10060
9947
|
'@types/unist@2.0.11': {}
|
|
10061
9948
|
|
|
10062
9949
|
'@types/unist@3.0.3': {}
|
|
10063
9950
|
|
|
10064
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
9951
|
+
'@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10065
9952
|
dependencies:
|
|
10066
9953
|
'@eslint-community/regexpp': 4.12.2
|
|
10067
|
-
'@typescript-eslint/parser': 8.
|
|
10068
|
-
'@typescript-eslint/scope-manager': 8.
|
|
10069
|
-
'@typescript-eslint/type-utils': 8.
|
|
10070
|
-
'@typescript-eslint/utils': 8.
|
|
10071
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
9954
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
9955
|
+
'@typescript-eslint/scope-manager': 8.62.0
|
|
9956
|
+
'@typescript-eslint/type-utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
9957
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
9958
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10072
9959
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10073
9960
|
ignore: 7.0.5
|
|
10074
9961
|
natural-compare: 1.4.0
|
|
@@ -10077,55 +9964,55 @@ snapshots:
|
|
|
10077
9964
|
transitivePeerDependencies:
|
|
10078
9965
|
- supports-color
|
|
10079
9966
|
|
|
10080
|
-
'@typescript-eslint/parser@8.
|
|
9967
|
+
'@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10081
9968
|
dependencies:
|
|
10082
|
-
'@typescript-eslint/scope-manager': 8.
|
|
10083
|
-
'@typescript-eslint/types': 8.
|
|
10084
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10085
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
9969
|
+
'@typescript-eslint/scope-manager': 8.62.0
|
|
9970
|
+
'@typescript-eslint/types': 8.62.0
|
|
9971
|
+
'@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
|
|
9972
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10086
9973
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10087
9974
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10088
9975
|
typescript: 5.9.3
|
|
10089
9976
|
transitivePeerDependencies:
|
|
10090
9977
|
- supports-color
|
|
10091
9978
|
|
|
10092
|
-
'@typescript-eslint/project-service@8.
|
|
9979
|
+
'@typescript-eslint/project-service@8.62.0(typescript@5.9.3)':
|
|
10093
9980
|
dependencies:
|
|
10094
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
10095
|
-
'@typescript-eslint/types': 8.
|
|
9981
|
+
'@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
|
|
9982
|
+
'@typescript-eslint/types': 8.62.0
|
|
10096
9983
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10097
9984
|
typescript: 5.9.3
|
|
10098
9985
|
transitivePeerDependencies:
|
|
10099
9986
|
- supports-color
|
|
10100
9987
|
|
|
10101
|
-
'@typescript-eslint/rule-tester@8.
|
|
9988
|
+
'@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10102
9989
|
dependencies:
|
|
10103
|
-
'@typescript-eslint/parser': 8.
|
|
10104
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10105
|
-
'@typescript-eslint/utils': 8.
|
|
9990
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
9991
|
+
'@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
|
|
9992
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10106
9993
|
ajv: 6.15.0
|
|
10107
9994
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10108
9995
|
json-stable-stringify-without-jsonify: 1.0.1
|
|
10109
9996
|
lodash.merge: 4.6.2
|
|
10110
|
-
semver: 7.8.
|
|
9997
|
+
semver: 7.8.5
|
|
10111
9998
|
typescript: 5.9.3
|
|
10112
9999
|
transitivePeerDependencies:
|
|
10113
10000
|
- supports-color
|
|
10114
10001
|
|
|
10115
|
-
'@typescript-eslint/scope-manager@8.
|
|
10002
|
+
'@typescript-eslint/scope-manager@8.62.0':
|
|
10116
10003
|
dependencies:
|
|
10117
|
-
'@typescript-eslint/types': 8.
|
|
10118
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
10004
|
+
'@typescript-eslint/types': 8.62.0
|
|
10005
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10119
10006
|
|
|
10120
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
10007
|
+
'@typescript-eslint/tsconfig-utils@8.62.0(typescript@5.9.3)':
|
|
10121
10008
|
dependencies:
|
|
10122
10009
|
typescript: 5.9.3
|
|
10123
10010
|
|
|
10124
|
-
'@typescript-eslint/type-utils@8.
|
|
10011
|
+
'@typescript-eslint/type-utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10125
10012
|
dependencies:
|
|
10126
|
-
'@typescript-eslint/types': 8.
|
|
10127
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10128
|
-
'@typescript-eslint/utils': 8.
|
|
10013
|
+
'@typescript-eslint/types': 8.62.0
|
|
10014
|
+
'@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
|
|
10015
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10129
10016
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10130
10017
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10131
10018
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -10133,98 +10020,98 @@ snapshots:
|
|
|
10133
10020
|
transitivePeerDependencies:
|
|
10134
10021
|
- supports-color
|
|
10135
10022
|
|
|
10136
|
-
'@typescript-eslint/types@8.
|
|
10023
|
+
'@typescript-eslint/types@8.62.0': {}
|
|
10137
10024
|
|
|
10138
|
-
'@typescript-eslint/typescript-estree@8.
|
|
10025
|
+
'@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3)':
|
|
10139
10026
|
dependencies:
|
|
10140
|
-
'@typescript-eslint/project-service': 8.
|
|
10141
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
10142
|
-
'@typescript-eslint/types': 8.
|
|
10143
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
10027
|
+
'@typescript-eslint/project-service': 8.62.0(typescript@5.9.3)
|
|
10028
|
+
'@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
|
|
10029
|
+
'@typescript-eslint/types': 8.62.0
|
|
10030
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10144
10031
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10145
10032
|
minimatch: 10.2.5
|
|
10146
|
-
semver: 7.8.
|
|
10033
|
+
semver: 7.8.5
|
|
10147
10034
|
tinyglobby: 0.2.17
|
|
10148
10035
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
10149
10036
|
typescript: 5.9.3
|
|
10150
10037
|
transitivePeerDependencies:
|
|
10151
10038
|
- supports-color
|
|
10152
10039
|
|
|
10153
|
-
'@typescript-eslint/utils@8.
|
|
10040
|
+
'@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10154
10041
|
dependencies:
|
|
10155
10042
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
10156
|
-
'@typescript-eslint/scope-manager': 8.
|
|
10157
|
-
'@typescript-eslint/types': 8.
|
|
10158
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10043
|
+
'@typescript-eslint/scope-manager': 8.62.0
|
|
10044
|
+
'@typescript-eslint/types': 8.62.0
|
|
10045
|
+
'@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
|
|
10159
10046
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10160
10047
|
typescript: 5.9.3
|
|
10161
10048
|
transitivePeerDependencies:
|
|
10162
10049
|
- supports-color
|
|
10163
10050
|
|
|
10164
|
-
'@typescript-eslint/visitor-keys@8.
|
|
10051
|
+
'@typescript-eslint/visitor-keys@8.62.0':
|
|
10165
10052
|
dependencies:
|
|
10166
|
-
'@typescript-eslint/types': 8.
|
|
10053
|
+
'@typescript-eslint/types': 8.62.0
|
|
10167
10054
|
eslint-visitor-keys: 5.0.1
|
|
10168
10055
|
|
|
10169
|
-
'@typescript/native-preview-darwin-arm64@7.0.0-dev.
|
|
10056
|
+
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
10170
10057
|
optional: true
|
|
10171
10058
|
|
|
10172
|
-
'@typescript/native-preview-darwin-x64@7.0.0-dev.
|
|
10059
|
+
'@typescript/native-preview-darwin-x64@7.0.0-dev.20260624.1':
|
|
10173
10060
|
optional: true
|
|
10174
10061
|
|
|
10175
|
-
'@typescript/native-preview-linux-arm64@7.0.0-dev.
|
|
10062
|
+
'@typescript/native-preview-linux-arm64@7.0.0-dev.20260624.1':
|
|
10176
10063
|
optional: true
|
|
10177
10064
|
|
|
10178
|
-
'@typescript/native-preview-linux-arm@7.0.0-dev.
|
|
10065
|
+
'@typescript/native-preview-linux-arm@7.0.0-dev.20260624.1':
|
|
10179
10066
|
optional: true
|
|
10180
10067
|
|
|
10181
|
-
'@typescript/native-preview-linux-x64@7.0.0-dev.
|
|
10068
|
+
'@typescript/native-preview-linux-x64@7.0.0-dev.20260624.1':
|
|
10182
10069
|
optional: true
|
|
10183
10070
|
|
|
10184
|
-
'@typescript/native-preview-win32-arm64@7.0.0-dev.
|
|
10071
|
+
'@typescript/native-preview-win32-arm64@7.0.0-dev.20260624.1':
|
|
10185
10072
|
optional: true
|
|
10186
10073
|
|
|
10187
|
-
'@typescript/native-preview-win32-x64@7.0.0-dev.
|
|
10074
|
+
'@typescript/native-preview-win32-x64@7.0.0-dev.20260624.1':
|
|
10188
10075
|
optional: true
|
|
10189
10076
|
|
|
10190
|
-
'@typescript/native-preview@7.0.0-dev.
|
|
10077
|
+
'@typescript/native-preview@7.0.0-dev.20260624.1':
|
|
10191
10078
|
optionalDependencies:
|
|
10192
|
-
'@typescript/native-preview-darwin-arm64': 7.0.0-dev.
|
|
10193
|
-
'@typescript/native-preview-darwin-x64': 7.0.0-dev.
|
|
10194
|
-
'@typescript/native-preview-linux-arm': 7.0.0-dev.
|
|
10195
|
-
'@typescript/native-preview-linux-arm64': 7.0.0-dev.
|
|
10196
|
-
'@typescript/native-preview-linux-x64': 7.0.0-dev.
|
|
10197
|
-
'@typescript/native-preview-win32-arm64': 7.0.0-dev.
|
|
10198
|
-
'@typescript/native-preview-win32-x64': 7.0.0-dev.
|
|
10079
|
+
'@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260624.1
|
|
10080
|
+
'@typescript/native-preview-darwin-x64': 7.0.0-dev.20260624.1
|
|
10081
|
+
'@typescript/native-preview-linux-arm': 7.0.0-dev.20260624.1
|
|
10082
|
+
'@typescript/native-preview-linux-arm64': 7.0.0-dev.20260624.1
|
|
10083
|
+
'@typescript/native-preview-linux-x64': 7.0.0-dev.20260624.1
|
|
10084
|
+
'@typescript/native-preview-win32-arm64': 7.0.0-dev.20260624.1
|
|
10085
|
+
'@typescript/native-preview-win32-x64': 7.0.0-dev.20260624.1
|
|
10199
10086
|
|
|
10200
|
-
'@vitejs/plugin-vue-jsx@5.1.
|
|
10087
|
+
'@vitejs/plugin-vue-jsx@5.1.6(vite@8.1.0(@types/node@22.20.0)(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))':
|
|
10201
10088
|
dependencies:
|
|
10202
10089
|
'@babel/core': 7.29.7
|
|
10203
10090
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10204
10091
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10205
10092
|
'@rolldown/pluginutils': 1.0.1
|
|
10206
10093
|
'@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
|
|
10207
|
-
vite: 8.0
|
|
10208
|
-
vue: 3.5.
|
|
10094
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
10095
|
+
vue: 3.5.38(typescript@5.9.3)
|
|
10209
10096
|
transitivePeerDependencies:
|
|
10210
10097
|
- supports-color
|
|
10211
10098
|
|
|
10212
|
-
'@vitejs/plugin-vue-jsx@5.1.
|
|
10099
|
+
'@vitejs/plugin-vue-jsx@5.1.6(vite@8.1.0(@types/node@22.20.0)(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))':
|
|
10213
10100
|
dependencies:
|
|
10214
10101
|
'@babel/core': 7.29.7
|
|
10215
10102
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10216
10103
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10217
10104
|
'@rolldown/pluginutils': 1.0.1
|
|
10218
10105
|
'@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
|
|
10219
|
-
vite: 8.0
|
|
10106
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
10220
10107
|
vue: 3.5.38(typescript@5.9.3)
|
|
10221
10108
|
transitivePeerDependencies:
|
|
10222
10109
|
- supports-color
|
|
10223
10110
|
|
|
10224
|
-
'@vitejs/plugin-vue@6.0.7(vite@8.0
|
|
10111
|
+
'@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(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))':
|
|
10225
10112
|
dependencies:
|
|
10226
10113
|
'@rolldown/pluginutils': 1.0.1
|
|
10227
|
-
vite: 8.0
|
|
10114
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
10228
10115
|
vue: 3.5.38(typescript@5.9.3)
|
|
10229
10116
|
|
|
10230
10117
|
'@volar/language-core@2.4.28':
|
|
@@ -10297,14 +10184,14 @@ snapshots:
|
|
|
10297
10184
|
|
|
10298
10185
|
'@vue/shared@3.5.13': {}
|
|
10299
10186
|
|
|
10300
|
-
'@zhennann/common-bin@4.0.1
|
|
10187
|
+
'@zhennann/common-bin@4.0.1':
|
|
10301
10188
|
dependencies:
|
|
10302
10189
|
chalk: 4.1.2
|
|
10303
10190
|
change-case: 4.1.2
|
|
10304
10191
|
dargs: 7.0.0
|
|
10305
10192
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10306
10193
|
is-type-of: 1.4.0
|
|
10307
|
-
semver: 7.8.
|
|
10194
|
+
semver: 7.8.5
|
|
10308
10195
|
yargs: 13.3.2
|
|
10309
10196
|
yargs-parser: 13.1.2
|
|
10310
10197
|
transitivePeerDependencies:
|
|
@@ -10325,13 +10212,13 @@ snapshots:
|
|
|
10325
10212
|
mime-types: 3.0.2
|
|
10326
10213
|
negotiator: 1.0.0
|
|
10327
10214
|
|
|
10328
|
-
acorn-jsx@5.3.2(acorn@8.
|
|
10215
|
+
acorn-jsx@5.3.2(acorn@8.17.0):
|
|
10329
10216
|
dependencies:
|
|
10330
|
-
acorn: 8.
|
|
10217
|
+
acorn: 8.17.0
|
|
10331
10218
|
|
|
10332
|
-
acorn@8.
|
|
10219
|
+
acorn@8.17.0: {}
|
|
10333
10220
|
|
|
10334
|
-
agent-base@6.0.2
|
|
10221
|
+
agent-base@6.0.2:
|
|
10335
10222
|
dependencies:
|
|
10336
10223
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10337
10224
|
transitivePeerDependencies:
|
|
@@ -10414,9 +10301,9 @@ snapshots:
|
|
|
10414
10301
|
call-bound: 1.0.4
|
|
10415
10302
|
is-array-buffer: 3.0.5
|
|
10416
10303
|
|
|
10417
|
-
ast-kit@3.0.0
|
|
10304
|
+
ast-kit@3.0.0:
|
|
10418
10305
|
dependencies:
|
|
10419
|
-
'@babel/parser': 8.0.0
|
|
10306
|
+
'@babel/parser': 8.0.0
|
|
10420
10307
|
estree-walker: 3.0.3
|
|
10421
10308
|
pathe: 2.0.3
|
|
10422
10309
|
|
|
@@ -10430,10 +10317,10 @@ snapshots:
|
|
|
10430
10317
|
|
|
10431
10318
|
asynckit@0.4.0: {}
|
|
10432
10319
|
|
|
10433
|
-
autoprefixer@10.5.
|
|
10320
|
+
autoprefixer@10.5.1(postcss@8.5.15):
|
|
10434
10321
|
dependencies:
|
|
10435
|
-
browserslist: 4.28.
|
|
10436
|
-
caniuse-lite: 1.0.
|
|
10322
|
+
browserslist: 4.28.4
|
|
10323
|
+
caniuse-lite: 1.0.30001799
|
|
10437
10324
|
fraction.js: 5.3.4
|
|
10438
10325
|
picocolors: 1.1.1
|
|
10439
10326
|
postcss: 8.5.15
|
|
@@ -10443,11 +10330,11 @@ snapshots:
|
|
|
10443
10330
|
dependencies:
|
|
10444
10331
|
possible-typed-array-names: 1.1.0
|
|
10445
10332
|
|
|
10446
|
-
axios@1.
|
|
10333
|
+
axios@1.18.1:
|
|
10447
10334
|
dependencies:
|
|
10448
10335
|
follow-redirects: 1.16.0
|
|
10449
|
-
form-data: 4.0.
|
|
10450
|
-
https-proxy-agent: 5.0.1
|
|
10336
|
+
form-data: 4.0.6
|
|
10337
|
+
https-proxy-agent: 5.0.1
|
|
10451
10338
|
proxy-from-env: 2.1.0
|
|
10452
10339
|
transitivePeerDependencies:
|
|
10453
10340
|
- debug
|
|
@@ -10501,7 +10388,7 @@ snapshots:
|
|
|
10501
10388
|
|
|
10502
10389
|
base64-js@1.5.1: {}
|
|
10503
10390
|
|
|
10504
|
-
baseline-browser-mapping@2.10.
|
|
10391
|
+
baseline-browser-mapping@2.10.38: {}
|
|
10505
10392
|
|
|
10506
10393
|
big.js@5.2.2: {}
|
|
10507
10394
|
|
|
@@ -10514,7 +10401,7 @@ snapshots:
|
|
|
10514
10401
|
readable-stream: 2.3.8
|
|
10515
10402
|
safe-buffer: 5.2.1
|
|
10516
10403
|
|
|
10517
|
-
body-parser@2.3.0
|
|
10404
|
+
body-parser@2.3.0:
|
|
10518
10405
|
dependencies:
|
|
10519
10406
|
bytes: 3.1.2
|
|
10520
10407
|
content-type: 2.0.0
|
|
@@ -10560,13 +10447,13 @@ snapshots:
|
|
|
10560
10447
|
dependencies:
|
|
10561
10448
|
fill-range: 7.1.1
|
|
10562
10449
|
|
|
10563
|
-
browserslist@4.28.
|
|
10450
|
+
browserslist@4.28.4:
|
|
10564
10451
|
dependencies:
|
|
10565
|
-
baseline-browser-mapping: 2.10.
|
|
10566
|
-
caniuse-lite: 1.0.
|
|
10567
|
-
electron-to-chromium: 1.5.
|
|
10568
|
-
node-releases: 2.0.
|
|
10569
|
-
update-browserslist-db: 1.2.3(browserslist@4.28.
|
|
10452
|
+
baseline-browser-mapping: 2.10.38
|
|
10453
|
+
caniuse-lite: 1.0.30001799
|
|
10454
|
+
electron-to-chromium: 1.5.378
|
|
10455
|
+
node-releases: 2.0.49
|
|
10456
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.4)
|
|
10570
10457
|
|
|
10571
10458
|
buffer-alloc-unsafe@1.1.0: {}
|
|
10572
10459
|
|
|
@@ -10633,7 +10520,7 @@ snapshots:
|
|
|
10633
10520
|
|
|
10634
10521
|
camelcase@5.3.1: {}
|
|
10635
10522
|
|
|
10636
|
-
caniuse-lite@1.0.
|
|
10523
|
+
caniuse-lite@1.0.30001799: {}
|
|
10637
10524
|
|
|
10638
10525
|
capital-case@1.0.4:
|
|
10639
10526
|
dependencies:
|
|
@@ -10684,7 +10571,7 @@ snapshots:
|
|
|
10684
10571
|
|
|
10685
10572
|
character-reference-invalid@1.1.4: {}
|
|
10686
10573
|
|
|
10687
|
-
chardet@2.
|
|
10574
|
+
chardet@2.2.0: {}
|
|
10688
10575
|
|
|
10689
10576
|
charenc@0.0.2: {}
|
|
10690
10577
|
|
|
@@ -10784,7 +10671,7 @@ snapshots:
|
|
|
10784
10671
|
|
|
10785
10672
|
compressible@2.0.18:
|
|
10786
10673
|
dependencies:
|
|
10787
|
-
mime-db: 1.
|
|
10674
|
+
mime-db: 1.54.0
|
|
10788
10675
|
|
|
10789
10676
|
compressing@1.10.5:
|
|
10790
10677
|
dependencies:
|
|
@@ -10822,7 +10709,7 @@ snapshots:
|
|
|
10822
10709
|
spawn-command: 0.0.2
|
|
10823
10710
|
supports-color: 8.1.1
|
|
10824
10711
|
tree-kill: 1.2.2
|
|
10825
|
-
yargs: 17.7.
|
|
10712
|
+
yargs: 17.7.3
|
|
10826
10713
|
|
|
10827
10714
|
confbox@0.1.8: {}
|
|
10828
10715
|
|
|
@@ -11060,7 +10947,7 @@ snapshots:
|
|
|
11060
10947
|
|
|
11061
10948
|
ee-first@1.1.1: {}
|
|
11062
10949
|
|
|
11063
|
-
electron-to-chromium@1.5.
|
|
10950
|
+
electron-to-chromium@1.5.378: {}
|
|
11064
10951
|
|
|
11065
10952
|
elementtree@0.1.7:
|
|
11066
10953
|
dependencies:
|
|
@@ -11287,12 +11174,12 @@ snapshots:
|
|
|
11287
11174
|
dependencies:
|
|
11288
11175
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11289
11176
|
|
|
11290
|
-
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.
|
|
11177
|
+
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0)):
|
|
11291
11178
|
dependencies:
|
|
11292
11179
|
'@es-joy/jsdoccomment': 0.84.0
|
|
11293
|
-
'@typescript-eslint/rule-tester': 8.
|
|
11294
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
11295
|
-
'@typescript-eslint/utils': 8.
|
|
11180
|
+
'@typescript-eslint/rule-tester': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11181
|
+
'@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
|
|
11182
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11296
11183
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11297
11184
|
|
|
11298
11185
|
eslint-plugin-depend@1.5.0(eslint@10.5.0(jiti@2.7.0)):
|
|
@@ -11300,7 +11187,7 @@ snapshots:
|
|
|
11300
11187
|
empathic: 2.0.1
|
|
11301
11188
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11302
11189
|
module-replacements: 2.11.0
|
|
11303
|
-
semver: 7.8.
|
|
11190
|
+
semver: 7.8.5
|
|
11304
11191
|
|
|
11305
11192
|
eslint-plugin-eslint-comments@3.2.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11306
11193
|
dependencies:
|
|
@@ -11345,7 +11232,7 @@ snapshots:
|
|
|
11345
11232
|
regexp-ast-analysis: 0.7.1
|
|
11346
11233
|
scslre: 0.3.0
|
|
11347
11234
|
|
|
11348
|
-
eslint-plugin-toml@1.4.0(eslint@10.5.0(jiti@2.7.0))
|
|
11235
|
+
eslint-plugin-toml@1.4.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11349
11236
|
dependencies:
|
|
11350
11237
|
'@eslint/core': 1.2.1
|
|
11351
11238
|
'@eslint/plugin-kit': 0.7.2
|
|
@@ -11356,27 +11243,27 @@ snapshots:
|
|
|
11356
11243
|
transitivePeerDependencies:
|
|
11357
11244
|
- supports-color
|
|
11358
11245
|
|
|
11359
|
-
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.
|
|
11246
|
+
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(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)):
|
|
11360
11247
|
dependencies:
|
|
11361
11248
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11362
11249
|
optionalDependencies:
|
|
11363
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
11250
|
+
'@typescript-eslint/eslint-plugin': 8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11364
11251
|
|
|
11365
|
-
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.
|
|
11252
|
+
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.0(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))):
|
|
11366
11253
|
dependencies:
|
|
11367
11254
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11368
11255
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11369
11256
|
natural-compare: 1.4.0
|
|
11370
11257
|
nth-check: 2.1.1
|
|
11371
|
-
postcss-selector-parser: 7.1.
|
|
11372
|
-
semver: 7.8.
|
|
11258
|
+
postcss-selector-parser: 7.1.4
|
|
11259
|
+
semver: 7.8.5
|
|
11373
11260
|
vue-eslint-parser: 10.4.1(eslint@10.5.0(jiti@2.7.0))
|
|
11374
11261
|
xml-name-validator: 4.0.0
|
|
11375
11262
|
optionalDependencies:
|
|
11376
11263
|
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
11377
|
-
'@typescript-eslint/parser': 8.
|
|
11264
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11378
11265
|
|
|
11379
|
-
eslint-plugin-yml@3.
|
|
11266
|
+
eslint-plugin-yml@3.5.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11380
11267
|
dependencies:
|
|
11381
11268
|
'@eslint/core': 1.2.1
|
|
11382
11269
|
'@eslint/plugin-kit': 0.7.2
|
|
@@ -11439,14 +11326,14 @@ snapshots:
|
|
|
11439
11326
|
|
|
11440
11327
|
espree@10.4.0:
|
|
11441
11328
|
dependencies:
|
|
11442
|
-
acorn: 8.
|
|
11443
|
-
acorn-jsx: 5.3.2(acorn@8.
|
|
11329
|
+
acorn: 8.17.0
|
|
11330
|
+
acorn-jsx: 5.3.2(acorn@8.17.0)
|
|
11444
11331
|
eslint-visitor-keys: 4.2.1
|
|
11445
11332
|
|
|
11446
11333
|
espree@11.2.0:
|
|
11447
11334
|
dependencies:
|
|
11448
|
-
acorn: 8.
|
|
11449
|
-
acorn-jsx: 5.3.2(acorn@8.
|
|
11335
|
+
acorn: 8.17.0
|
|
11336
|
+
acorn-jsx: 5.3.2(acorn@8.17.0)
|
|
11450
11337
|
eslint-visitor-keys: 5.0.1
|
|
11451
11338
|
|
|
11452
11339
|
esprima@4.0.1: {}
|
|
@@ -11487,15 +11374,15 @@ snapshots:
|
|
|
11487
11374
|
dependencies:
|
|
11488
11375
|
eventsource-parser: 3.1.0
|
|
11489
11376
|
|
|
11490
|
-
express-rate-limit@8.5.2(express@5.2.1
|
|
11377
|
+
express-rate-limit@8.5.2(express@5.2.1):
|
|
11491
11378
|
dependencies:
|
|
11492
|
-
express: 5.2.1
|
|
11379
|
+
express: 5.2.1
|
|
11493
11380
|
ip-address: 10.2.0
|
|
11494
11381
|
|
|
11495
|
-
express@5.2.1
|
|
11382
|
+
express@5.2.1:
|
|
11496
11383
|
dependencies:
|
|
11497
11384
|
accepts: 2.0.0
|
|
11498
|
-
body-parser: 2.3.0
|
|
11385
|
+
body-parser: 2.3.0
|
|
11499
11386
|
content-disposition: 1.1.0
|
|
11500
11387
|
content-type: 1.0.5
|
|
11501
11388
|
cookie: 0.7.2
|
|
@@ -11505,7 +11392,7 @@ snapshots:
|
|
|
11505
11392
|
encodeurl: 2.0.0
|
|
11506
11393
|
escape-html: 1.0.3
|
|
11507
11394
|
etag: 1.8.1
|
|
11508
|
-
finalhandler: 2.1.1
|
|
11395
|
+
finalhandler: 2.1.1
|
|
11509
11396
|
fresh: 2.0.0
|
|
11510
11397
|
http-errors: 2.0.1
|
|
11511
11398
|
merge-descriptors: 2.0.0
|
|
@@ -11516,8 +11403,8 @@ snapshots:
|
|
|
11516
11403
|
proxy-addr: 2.0.7
|
|
11517
11404
|
qs: 6.15.2
|
|
11518
11405
|
range-parser: 1.2.1
|
|
11519
|
-
router: 2.2.0
|
|
11520
|
-
send: 1.2.1
|
|
11406
|
+
router: 2.2.0
|
|
11407
|
+
send: 1.2.1
|
|
11521
11408
|
serve-static: 2.2.1
|
|
11522
11409
|
statuses: 2.0.2
|
|
11523
11410
|
type-is: 2.1.0
|
|
@@ -11603,7 +11490,7 @@ snapshots:
|
|
|
11603
11490
|
transitivePeerDependencies:
|
|
11604
11491
|
- supports-color
|
|
11605
11492
|
|
|
11606
|
-
finalhandler@2.1.1
|
|
11493
|
+
finalhandler@2.1.1:
|
|
11607
11494
|
dependencies:
|
|
11608
11495
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11609
11496
|
encodeurl: 2.0.0
|
|
@@ -11653,7 +11540,7 @@ snapshots:
|
|
|
11653
11540
|
cross-spawn: 7.0.6
|
|
11654
11541
|
signal-exit: 4.1.0
|
|
11655
11542
|
|
|
11656
|
-
form-data@4.0.
|
|
11543
|
+
form-data@4.0.6:
|
|
11657
11544
|
dependencies:
|
|
11658
11545
|
asynckit: 0.4.0
|
|
11659
11546
|
combined-stream: 1.0.8
|
|
@@ -11763,7 +11650,7 @@ snapshots:
|
|
|
11763
11650
|
once: 1.4.0
|
|
11764
11651
|
path-is-absolute: 1.0.1
|
|
11765
11652
|
|
|
11766
|
-
globals@17.
|
|
11653
|
+
globals@17.7.0: {}
|
|
11767
11654
|
|
|
11768
11655
|
globby@14.1.0:
|
|
11769
11656
|
dependencies:
|
|
@@ -11827,7 +11714,7 @@ snapshots:
|
|
|
11827
11714
|
capital-case: 1.0.4
|
|
11828
11715
|
tslib: 2.8.1
|
|
11829
11716
|
|
|
11830
|
-
hono@4.12.
|
|
11717
|
+
hono@4.12.27: {}
|
|
11831
11718
|
|
|
11832
11719
|
hookable@6.1.1: {}
|
|
11833
11720
|
|
|
@@ -11863,9 +11750,9 @@ snapshots:
|
|
|
11863
11750
|
statuses: 2.0.2
|
|
11864
11751
|
toidentifier: 1.0.1
|
|
11865
11752
|
|
|
11866
|
-
https-proxy-agent@5.0.1
|
|
11753
|
+
https-proxy-agent@5.0.1:
|
|
11867
11754
|
dependencies:
|
|
11868
|
-
agent-base: 6.0.2
|
|
11755
|
+
agent-base: 6.0.2
|
|
11869
11756
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11870
11757
|
transitivePeerDependencies:
|
|
11871
11758
|
- supports-color
|
|
@@ -11901,7 +11788,7 @@ snapshots:
|
|
|
11901
11788
|
|
|
11902
11789
|
immediate@3.0.6: {}
|
|
11903
11790
|
|
|
11904
|
-
immutable@5.1.
|
|
11791
|
+
immutable@5.1.7: {}
|
|
11905
11792
|
|
|
11906
11793
|
import-from-string@0.0.5:
|
|
11907
11794
|
dependencies:
|
|
@@ -11929,17 +11816,17 @@ snapshots:
|
|
|
11929
11816
|
|
|
11930
11817
|
ini@6.0.0: {}
|
|
11931
11818
|
|
|
11932
|
-
inquirer@13.4.3(@types/node@22.
|
|
11819
|
+
inquirer@13.4.3(@types/node@22.20.0):
|
|
11933
11820
|
dependencies:
|
|
11934
11821
|
'@inquirer/ansi': 2.0.7
|
|
11935
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
11936
|
-
'@inquirer/prompts': 8.5.2(@types/node@22.
|
|
11937
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
11822
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
11823
|
+
'@inquirer/prompts': 8.5.2(@types/node@22.20.0)
|
|
11824
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
11938
11825
|
mute-stream: 3.0.0
|
|
11939
11826
|
run-async: 4.0.6
|
|
11940
11827
|
rxjs: 7.8.2
|
|
11941
11828
|
optionalDependencies:
|
|
11942
|
-
'@types/node': 22.
|
|
11829
|
+
'@types/node': 22.20.0
|
|
11943
11830
|
|
|
11944
11831
|
internal-slot@1.1.0:
|
|
11945
11832
|
dependencies:
|
|
@@ -12120,6 +12007,10 @@ snapshots:
|
|
|
12120
12007
|
dependencies:
|
|
12121
12008
|
argparse: 2.0.1
|
|
12122
12009
|
|
|
12010
|
+
js-yaml@4.2.0:
|
|
12011
|
+
dependencies:
|
|
12012
|
+
argparse: 2.0.1
|
|
12013
|
+
|
|
12123
12014
|
jsdoc-type-pratt-parser@7.1.1: {}
|
|
12124
12015
|
|
|
12125
12016
|
jsdoc-type-pratt-parser@7.2.0: {}
|
|
@@ -12146,9 +12037,9 @@ snapshots:
|
|
|
12146
12037
|
|
|
12147
12038
|
jsonc-eslint-parser@3.1.0:
|
|
12148
12039
|
dependencies:
|
|
12149
|
-
acorn: 8.
|
|
12040
|
+
acorn: 8.17.0
|
|
12150
12041
|
eslint-visitor-keys: 5.0.1
|
|
12151
|
-
semver: 7.8.
|
|
12042
|
+
semver: 7.8.5
|
|
12152
12043
|
|
|
12153
12044
|
jsonfile@6.2.1:
|
|
12154
12045
|
dependencies:
|
|
@@ -12323,7 +12214,7 @@ snapshots:
|
|
|
12323
12214
|
mdast-util-footnote@0.1.7:
|
|
12324
12215
|
dependencies:
|
|
12325
12216
|
mdast-util-to-markdown: 0.6.5
|
|
12326
|
-
micromark: 2.11.4
|
|
12217
|
+
micromark: 2.11.4
|
|
12327
12218
|
transitivePeerDependencies:
|
|
12328
12219
|
- supports-color
|
|
12329
12220
|
|
|
@@ -12331,20 +12222,20 @@ snapshots:
|
|
|
12331
12222
|
dependencies:
|
|
12332
12223
|
'@types/mdast': 3.0.15
|
|
12333
12224
|
mdast-util-to-string: 2.0.0
|
|
12334
|
-
micromark: 2.11.4
|
|
12225
|
+
micromark: 2.11.4
|
|
12335
12226
|
parse-entities: 2.0.0
|
|
12336
12227
|
unist-util-stringify-position: 2.0.3
|
|
12337
12228
|
transitivePeerDependencies:
|
|
12338
12229
|
- supports-color
|
|
12339
12230
|
|
|
12340
|
-
mdast-util-from-markdown@2.0.3
|
|
12231
|
+
mdast-util-from-markdown@2.0.3:
|
|
12341
12232
|
dependencies:
|
|
12342
12233
|
'@types/mdast': 4.0.4
|
|
12343
12234
|
'@types/unist': 3.0.3
|
|
12344
12235
|
decode-named-character-reference: 1.3.0
|
|
12345
12236
|
devlop: 1.1.0
|
|
12346
12237
|
mdast-util-to-string: 4.0.0
|
|
12347
|
-
micromark: 4.0.2
|
|
12238
|
+
micromark: 4.0.2
|
|
12348
12239
|
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
12349
12240
|
micromark-util-decode-string: 2.0.1
|
|
12350
12241
|
micromark-util-normalize-identifier: 2.0.1
|
|
@@ -12363,17 +12254,17 @@ snapshots:
|
|
|
12363
12254
|
'@types/mdast': 4.0.4
|
|
12364
12255
|
devlop: 1.1.0
|
|
12365
12256
|
escape-string-regexp: 5.0.0
|
|
12366
|
-
mdast-util-from-markdown: 2.0.3
|
|
12257
|
+
mdast-util-from-markdown: 2.0.3
|
|
12367
12258
|
mdast-util-to-markdown: 2.1.2
|
|
12368
12259
|
micromark-extension-frontmatter: 2.0.0
|
|
12369
12260
|
transitivePeerDependencies:
|
|
12370
12261
|
- supports-color
|
|
12371
12262
|
|
|
12372
|
-
mdast-util-gfm-autolink-literal@0.1.3
|
|
12263
|
+
mdast-util-gfm-autolink-literal@0.1.3:
|
|
12373
12264
|
dependencies:
|
|
12374
12265
|
ccount: 1.1.0
|
|
12375
12266
|
mdast-util-find-and-replace: 1.1.1
|
|
12376
|
-
micromark: 2.11.4
|
|
12267
|
+
micromark: 2.11.4
|
|
12377
12268
|
transitivePeerDependencies:
|
|
12378
12269
|
- supports-color
|
|
12379
12270
|
|
|
@@ -12389,7 +12280,7 @@ snapshots:
|
|
|
12389
12280
|
dependencies:
|
|
12390
12281
|
'@types/mdast': 4.0.4
|
|
12391
12282
|
devlop: 1.1.0
|
|
12392
|
-
mdast-util-from-markdown: 2.0.3
|
|
12283
|
+
mdast-util-from-markdown: 2.0.3
|
|
12393
12284
|
mdast-util-to-markdown: 2.1.2
|
|
12394
12285
|
micromark-util-normalize-identifier: 2.0.1
|
|
12395
12286
|
transitivePeerDependencies:
|
|
@@ -12402,7 +12293,7 @@ snapshots:
|
|
|
12402
12293
|
mdast-util-gfm-strikethrough@2.0.0:
|
|
12403
12294
|
dependencies:
|
|
12404
12295
|
'@types/mdast': 4.0.4
|
|
12405
|
-
mdast-util-from-markdown: 2.0.3
|
|
12296
|
+
mdast-util-from-markdown: 2.0.3
|
|
12406
12297
|
mdast-util-to-markdown: 2.1.2
|
|
12407
12298
|
transitivePeerDependencies:
|
|
12408
12299
|
- supports-color
|
|
@@ -12417,7 +12308,7 @@ snapshots:
|
|
|
12417
12308
|
'@types/mdast': 4.0.4
|
|
12418
12309
|
devlop: 1.1.0
|
|
12419
12310
|
markdown-table: 3.0.4
|
|
12420
|
-
mdast-util-from-markdown: 2.0.3
|
|
12311
|
+
mdast-util-from-markdown: 2.0.3
|
|
12421
12312
|
mdast-util-to-markdown: 2.1.2
|
|
12422
12313
|
transitivePeerDependencies:
|
|
12423
12314
|
- supports-color
|
|
@@ -12430,14 +12321,14 @@ snapshots:
|
|
|
12430
12321
|
dependencies:
|
|
12431
12322
|
'@types/mdast': 4.0.4
|
|
12432
12323
|
devlop: 1.1.0
|
|
12433
|
-
mdast-util-from-markdown: 2.0.3
|
|
12324
|
+
mdast-util-from-markdown: 2.0.3
|
|
12434
12325
|
mdast-util-to-markdown: 2.1.2
|
|
12435
12326
|
transitivePeerDependencies:
|
|
12436
12327
|
- supports-color
|
|
12437
12328
|
|
|
12438
12329
|
mdast-util-gfm@0.1.2:
|
|
12439
12330
|
dependencies:
|
|
12440
|
-
mdast-util-gfm-autolink-literal: 0.1.3
|
|
12331
|
+
mdast-util-gfm-autolink-literal: 0.1.3
|
|
12441
12332
|
mdast-util-gfm-strikethrough: 0.2.3
|
|
12442
12333
|
mdast-util-gfm-table: 0.1.6
|
|
12443
12334
|
mdast-util-gfm-task-list-item: 0.1.6
|
|
@@ -12447,7 +12338,7 @@ snapshots:
|
|
|
12447
12338
|
|
|
12448
12339
|
mdast-util-gfm@3.1.0:
|
|
12449
12340
|
dependencies:
|
|
12450
|
-
mdast-util-from-markdown: 2.0.3
|
|
12341
|
+
mdast-util-from-markdown: 2.0.3
|
|
12451
12342
|
mdast-util-gfm-autolink-literal: 2.0.1
|
|
12452
12343
|
mdast-util-gfm-footnote: 2.1.0
|
|
12453
12344
|
mdast-util-gfm-strikethrough: 2.0.0
|
|
@@ -12524,7 +12415,7 @@ snapshots:
|
|
|
12524
12415
|
|
|
12525
12416
|
micromark-extension-footnote@0.3.2:
|
|
12526
12417
|
dependencies:
|
|
12527
|
-
micromark: 2.11.4
|
|
12418
|
+
micromark: 2.11.4
|
|
12528
12419
|
transitivePeerDependencies:
|
|
12529
12420
|
- supports-color
|
|
12530
12421
|
|
|
@@ -12541,7 +12432,7 @@ snapshots:
|
|
|
12541
12432
|
|
|
12542
12433
|
micromark-extension-gfm-autolink-literal@0.5.7:
|
|
12543
12434
|
dependencies:
|
|
12544
|
-
micromark: 2.11.4
|
|
12435
|
+
micromark: 2.11.4
|
|
12545
12436
|
transitivePeerDependencies:
|
|
12546
12437
|
- supports-color
|
|
12547
12438
|
|
|
@@ -12565,7 +12456,7 @@ snapshots:
|
|
|
12565
12456
|
|
|
12566
12457
|
micromark-extension-gfm-strikethrough@0.6.5:
|
|
12567
12458
|
dependencies:
|
|
12568
|
-
micromark: 2.11.4
|
|
12459
|
+
micromark: 2.11.4
|
|
12569
12460
|
transitivePeerDependencies:
|
|
12570
12461
|
- supports-color
|
|
12571
12462
|
|
|
@@ -12580,7 +12471,7 @@ snapshots:
|
|
|
12580
12471
|
|
|
12581
12472
|
micromark-extension-gfm-table@0.4.3:
|
|
12582
12473
|
dependencies:
|
|
12583
|
-
micromark: 2.11.4
|
|
12474
|
+
micromark: 2.11.4
|
|
12584
12475
|
transitivePeerDependencies:
|
|
12585
12476
|
- supports-color
|
|
12586
12477
|
|
|
@@ -12600,7 +12491,7 @@ snapshots:
|
|
|
12600
12491
|
|
|
12601
12492
|
micromark-extension-gfm-task-list-item@0.3.3:
|
|
12602
12493
|
dependencies:
|
|
12603
|
-
micromark: 2.11.4
|
|
12494
|
+
micromark: 2.11.4
|
|
12604
12495
|
transitivePeerDependencies:
|
|
12605
12496
|
- supports-color
|
|
12606
12497
|
|
|
@@ -12614,7 +12505,7 @@ snapshots:
|
|
|
12614
12505
|
|
|
12615
12506
|
micromark-extension-gfm@0.3.3:
|
|
12616
12507
|
dependencies:
|
|
12617
|
-
micromark: 2.11.4
|
|
12508
|
+
micromark: 2.11.4
|
|
12618
12509
|
micromark-extension-gfm-autolink-literal: 0.5.7
|
|
12619
12510
|
micromark-extension-gfm-strikethrough: 0.6.5
|
|
12620
12511
|
micromark-extension-gfm-table: 0.4.3
|
|
@@ -12726,14 +12617,14 @@ snapshots:
|
|
|
12726
12617
|
|
|
12727
12618
|
micromark-util-types@2.0.2: {}
|
|
12728
12619
|
|
|
12729
|
-
micromark@2.11.4
|
|
12620
|
+
micromark@2.11.4:
|
|
12730
12621
|
dependencies:
|
|
12731
12622
|
debug: 4.4.3(supports-color@10.2.2)
|
|
12732
12623
|
parse-entities: 2.0.0
|
|
12733
12624
|
transitivePeerDependencies:
|
|
12734
12625
|
- supports-color
|
|
12735
12626
|
|
|
12736
|
-
micromark@4.0.2
|
|
12627
|
+
micromark@4.0.2:
|
|
12737
12628
|
dependencies:
|
|
12738
12629
|
'@types/debug': 4.1.13
|
|
12739
12630
|
debug: 4.4.3(supports-color@10.2.2)
|
|
@@ -12800,7 +12691,7 @@ snapshots:
|
|
|
12800
12691
|
|
|
12801
12692
|
mlly@1.8.2:
|
|
12802
12693
|
dependencies:
|
|
12803
|
-
acorn: 8.
|
|
12694
|
+
acorn: 8.17.0
|
|
12804
12695
|
pathe: 2.0.3
|
|
12805
12696
|
pkg-types: 1.3.1
|
|
12806
12697
|
ufo: 1.6.4
|
|
@@ -12815,7 +12706,7 @@ snapshots:
|
|
|
12815
12706
|
|
|
12816
12707
|
mute-stream@3.0.0: {}
|
|
12817
12708
|
|
|
12818
|
-
nanoid@3.3.
|
|
12709
|
+
nanoid@3.3.15: {}
|
|
12819
12710
|
|
|
12820
12711
|
natural-compare@1.4.0: {}
|
|
12821
12712
|
|
|
@@ -12837,7 +12728,7 @@ snapshots:
|
|
|
12837
12728
|
|
|
12838
12729
|
node-hex@1.0.1: {}
|
|
12839
12730
|
|
|
12840
|
-
node-releases@2.0.
|
|
12731
|
+
node-releases@2.0.49: {}
|
|
12841
12732
|
|
|
12842
12733
|
nopt@9.0.0:
|
|
12843
12734
|
dependencies:
|
|
@@ -12846,14 +12737,14 @@ snapshots:
|
|
|
12846
12737
|
normalize-package-data@6.0.2:
|
|
12847
12738
|
dependencies:
|
|
12848
12739
|
hosted-git-info: 7.0.2
|
|
12849
|
-
semver: 7.8.
|
|
12740
|
+
semver: 7.8.5
|
|
12850
12741
|
validate-npm-package-license: 3.0.4
|
|
12851
12742
|
|
|
12852
12743
|
normalize-path@3.0.0: {}
|
|
12853
12744
|
|
|
12854
12745
|
npm-install-checks@8.0.0:
|
|
12855
12746
|
dependencies:
|
|
12856
|
-
semver: 7.8.
|
|
12747
|
+
semver: 7.8.5
|
|
12857
12748
|
|
|
12858
12749
|
npm-normalize-package-bin@5.0.0: {}
|
|
12859
12750
|
|
|
@@ -12861,7 +12752,7 @@ snapshots:
|
|
|
12861
12752
|
dependencies:
|
|
12862
12753
|
hosted-git-info: 9.0.3
|
|
12863
12754
|
proc-log: 6.1.0
|
|
12864
|
-
semver: 7.8.
|
|
12755
|
+
semver: 7.8.5
|
|
12865
12756
|
validate-npm-package-name: 7.0.2
|
|
12866
12757
|
|
|
12867
12758
|
npm-pick-manifest@11.0.3:
|
|
@@ -12869,7 +12760,7 @@ snapshots:
|
|
|
12869
12760
|
npm-install-checks: 8.0.0
|
|
12870
12761
|
npm-normalize-package-bin: 5.0.0
|
|
12871
12762
|
npm-package-arg: 13.0.2
|
|
12872
|
-
semver: 7.8.
|
|
12763
|
+
semver: 7.8.5
|
|
12873
12764
|
|
|
12874
12765
|
nth-check@2.1.1:
|
|
12875
12766
|
dependencies:
|
|
@@ -12897,7 +12788,7 @@ snapshots:
|
|
|
12897
12788
|
has-symbols: 1.1.0
|
|
12898
12789
|
object-keys: 1.1.1
|
|
12899
12790
|
|
|
12900
|
-
obug@2.1.
|
|
12791
|
+
obug@2.1.3: {}
|
|
12901
12792
|
|
|
12902
12793
|
on-finished@2.3.0:
|
|
12903
12794
|
dependencies:
|
|
@@ -12959,27 +12850,27 @@ snapshots:
|
|
|
12959
12850
|
'@oxfmt/binding-win32-ia32-msvc': 0.45.0
|
|
12960
12851
|
'@oxfmt/binding-win32-x64-msvc': 0.45.0
|
|
12961
12852
|
|
|
12962
|
-
oxlint@1.
|
|
12853
|
+
oxlint@1.71.0:
|
|
12963
12854
|
optionalDependencies:
|
|
12964
|
-
'@oxlint/binding-android-arm-eabi': 1.
|
|
12965
|
-
'@oxlint/binding-android-arm64': 1.
|
|
12966
|
-
'@oxlint/binding-darwin-arm64': 1.
|
|
12967
|
-
'@oxlint/binding-darwin-x64': 1.
|
|
12968
|
-
'@oxlint/binding-freebsd-x64': 1.
|
|
12969
|
-
'@oxlint/binding-linux-arm-gnueabihf': 1.
|
|
12970
|
-
'@oxlint/binding-linux-arm-musleabihf': 1.
|
|
12971
|
-
'@oxlint/binding-linux-arm64-gnu': 1.
|
|
12972
|
-
'@oxlint/binding-linux-arm64-musl': 1.
|
|
12973
|
-
'@oxlint/binding-linux-ppc64-gnu': 1.
|
|
12974
|
-
'@oxlint/binding-linux-riscv64-gnu': 1.
|
|
12975
|
-
'@oxlint/binding-linux-riscv64-musl': 1.
|
|
12976
|
-
'@oxlint/binding-linux-s390x-gnu': 1.
|
|
12977
|
-
'@oxlint/binding-linux-x64-gnu': 1.
|
|
12978
|
-
'@oxlint/binding-linux-x64-musl': 1.
|
|
12979
|
-
'@oxlint/binding-openharmony-arm64': 1.
|
|
12980
|
-
'@oxlint/binding-win32-arm64-msvc': 1.
|
|
12981
|
-
'@oxlint/binding-win32-ia32-msvc': 1.
|
|
12982
|
-
'@oxlint/binding-win32-x64-msvc': 1.
|
|
12855
|
+
'@oxlint/binding-android-arm-eabi': 1.71.0
|
|
12856
|
+
'@oxlint/binding-android-arm64': 1.71.0
|
|
12857
|
+
'@oxlint/binding-darwin-arm64': 1.71.0
|
|
12858
|
+
'@oxlint/binding-darwin-x64': 1.71.0
|
|
12859
|
+
'@oxlint/binding-freebsd-x64': 1.71.0
|
|
12860
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.71.0
|
|
12861
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.71.0
|
|
12862
|
+
'@oxlint/binding-linux-arm64-gnu': 1.71.0
|
|
12863
|
+
'@oxlint/binding-linux-arm64-musl': 1.71.0
|
|
12864
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.71.0
|
|
12865
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.71.0
|
|
12866
|
+
'@oxlint/binding-linux-riscv64-musl': 1.71.0
|
|
12867
|
+
'@oxlint/binding-linux-s390x-gnu': 1.71.0
|
|
12868
|
+
'@oxlint/binding-linux-x64-gnu': 1.71.0
|
|
12869
|
+
'@oxlint/binding-linux-x64-musl': 1.71.0
|
|
12870
|
+
'@oxlint/binding-openharmony-arm64': 1.71.0
|
|
12871
|
+
'@oxlint/binding-win32-arm64-msvc': 1.71.0
|
|
12872
|
+
'@oxlint/binding-win32-ia32-msvc': 1.71.0
|
|
12873
|
+
'@oxlint/binding-win32-x64-msvc': 1.71.0
|
|
12983
12874
|
|
|
12984
12875
|
p-limit@2.3.0:
|
|
12985
12876
|
dependencies:
|
|
@@ -13099,13 +12990,13 @@ snapshots:
|
|
|
13099
12990
|
dependencies:
|
|
13100
12991
|
icss-utils: 5.1.0(postcss@8.1.10)
|
|
13101
12992
|
postcss: 8.1.10
|
|
13102
|
-
postcss-selector-parser: 7.1.
|
|
12993
|
+
postcss-selector-parser: 7.1.4
|
|
13103
12994
|
postcss-value-parser: 4.2.0
|
|
13104
12995
|
|
|
13105
12996
|
postcss-modules-scope@3.2.1(postcss@8.1.10):
|
|
13106
12997
|
dependencies:
|
|
13107
12998
|
postcss: 8.1.10
|
|
13108
|
-
postcss-selector-parser: 7.1.
|
|
12999
|
+
postcss-selector-parser: 7.1.4
|
|
13109
13000
|
|
|
13110
13001
|
postcss-modules-values@4.0.0(postcss@8.1.10):
|
|
13111
13002
|
dependencies:
|
|
@@ -13136,7 +13027,7 @@ snapshots:
|
|
|
13136
13027
|
uniq: 1.0.1
|
|
13137
13028
|
util-deprecate: 1.0.2
|
|
13138
13029
|
|
|
13139
|
-
postcss-selector-parser@7.1.
|
|
13030
|
+
postcss-selector-parser@7.1.4:
|
|
13140
13031
|
dependencies:
|
|
13141
13032
|
cssesc: 3.0.0
|
|
13142
13033
|
util-deprecate: 1.0.2
|
|
@@ -13146,13 +13037,13 @@ snapshots:
|
|
|
13146
13037
|
postcss@8.1.10:
|
|
13147
13038
|
dependencies:
|
|
13148
13039
|
colorette: 1.4.0
|
|
13149
|
-
nanoid: 3.3.
|
|
13040
|
+
nanoid: 3.3.15
|
|
13150
13041
|
source-map: 0.6.1
|
|
13151
13042
|
vfile-location: 3.2.0
|
|
13152
13043
|
|
|
13153
13044
|
postcss@8.5.15:
|
|
13154
13045
|
dependencies:
|
|
13155
|
-
nanoid: 3.3.
|
|
13046
|
+
nanoid: 3.3.15
|
|
13156
13047
|
picocolors: 1.1.1
|
|
13157
13048
|
source-map-js: 1.2.1
|
|
13158
13049
|
|
|
@@ -13192,14 +13083,14 @@ snapshots:
|
|
|
13192
13083
|
|
|
13193
13084
|
quansync@1.0.0: {}
|
|
13194
13085
|
|
|
13195
|
-
quasar-app-extension-zova@1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.
|
|
13086
|
+
quasar-app-extension-zova@1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.3)(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):
|
|
13196
13087
|
dependencies:
|
|
13197
13088
|
'@cabloy/module-info': 2.0.0
|
|
13198
|
-
'@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.
|
|
13089
|
+
'@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.20.0)(eslint@10.5.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.20.1)(rolldown@1.1.3)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)'
|
|
13199
13090
|
chalk: 3.0.0
|
|
13200
13091
|
esbuild: 0.25.12
|
|
13201
13092
|
fs-extra: 11.3.5
|
|
13202
|
-
vite: 8.0
|
|
13093
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
13203
13094
|
zova-vite: link:packages-utils/zova-vite
|
|
13204
13095
|
transitivePeerDependencies:
|
|
13205
13096
|
- '@electron/packager'
|
|
@@ -13245,7 +13136,7 @@ snapshots:
|
|
|
13245
13136
|
rc-config-loader@4.1.4:
|
|
13246
13137
|
dependencies:
|
|
13247
13138
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13248
|
-
js-yaml: 4.
|
|
13139
|
+
js-yaml: 4.2.0
|
|
13249
13140
|
json5: 2.2.3
|
|
13250
13141
|
require-from-string: 2.0.2
|
|
13251
13142
|
transitivePeerDependencies:
|
|
@@ -13368,40 +13259,40 @@ snapshots:
|
|
|
13368
13259
|
glob: 13.0.6
|
|
13369
13260
|
package-json-from-dist: 1.0.1
|
|
13370
13261
|
|
|
13371
|
-
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.
|
|
13262
|
+
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.1.3)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3)):
|
|
13372
13263
|
dependencies:
|
|
13373
13264
|
'@babel/generator': 8.0.0-rc.2
|
|
13374
13265
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
13375
13266
|
'@babel/parser': 8.0.0-rc.2
|
|
13376
13267
|
'@babel/types': 8.0.0-rc.2
|
|
13377
|
-
ast-kit: 3.0.0
|
|
13268
|
+
ast-kit: 3.0.0
|
|
13378
13269
|
birpc: 4.0.0
|
|
13379
13270
|
dts-resolver: 2.1.3
|
|
13380
13271
|
get-tsconfig: 4.14.0
|
|
13381
|
-
obug: 2.1.
|
|
13382
|
-
rolldown: 1.1.
|
|
13272
|
+
obug: 2.1.3
|
|
13273
|
+
rolldown: 1.1.3
|
|
13383
13274
|
optionalDependencies:
|
|
13384
|
-
'@typescript/native-preview': 7.0.0-dev.
|
|
13275
|
+
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13385
13276
|
typescript: 5.9.3
|
|
13386
13277
|
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13387
13278
|
transitivePeerDependencies:
|
|
13388
13279
|
- oxc-resolver
|
|
13389
13280
|
|
|
13390
|
-
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.
|
|
13281
|
+
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3)):
|
|
13391
13282
|
dependencies:
|
|
13392
13283
|
'@babel/generator': 8.0.0-rc.3
|
|
13393
13284
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
13394
13285
|
'@babel/parser': 8.0.0-rc.3
|
|
13395
13286
|
'@babel/types': 8.0.0-rc.3
|
|
13396
|
-
ast-kit: 3.0.0
|
|
13287
|
+
ast-kit: 3.0.0
|
|
13397
13288
|
birpc: 4.0.0
|
|
13398
13289
|
dts-resolver: 2.1.3
|
|
13399
13290
|
get-tsconfig: 4.14.0
|
|
13400
|
-
obug: 2.1.
|
|
13291
|
+
obug: 2.1.3
|
|
13401
13292
|
picomatch: 4.0.4
|
|
13402
13293
|
rolldown: 1.0.0-rc.17
|
|
13403
13294
|
optionalDependencies:
|
|
13404
|
-
'@typescript/native-preview': 7.0.0-dev.
|
|
13295
|
+
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13405
13296
|
typescript: 5.9.3
|
|
13406
13297
|
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13407
13298
|
transitivePeerDependencies:
|
|
@@ -13428,58 +13319,37 @@ snapshots:
|
|
|
13428
13319
|
'@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.17
|
|
13429
13320
|
'@rolldown/binding-win32-x64-msvc': 1.0.0-rc.17
|
|
13430
13321
|
|
|
13431
|
-
rolldown@1.
|
|
13322
|
+
rolldown@1.1.3:
|
|
13432
13323
|
dependencies:
|
|
13433
|
-
'@oxc-project/types': 0.
|
|
13324
|
+
'@oxc-project/types': 0.137.0
|
|
13434
13325
|
'@rolldown/pluginutils': 1.0.1
|
|
13435
13326
|
optionalDependencies:
|
|
13436
|
-
'@rolldown/binding-android-arm64': 1.
|
|
13437
|
-
'@rolldown/binding-darwin-arm64': 1.
|
|
13438
|
-
'@rolldown/binding-darwin-x64': 1.
|
|
13439
|
-
'@rolldown/binding-freebsd-x64': 1.
|
|
13440
|
-
'@rolldown/binding-linux-arm-gnueabihf': 1.
|
|
13441
|
-
'@rolldown/binding-linux-arm64-gnu': 1.
|
|
13442
|
-
'@rolldown/binding-linux-arm64-musl': 1.
|
|
13443
|
-
'@rolldown/binding-linux-ppc64-gnu': 1.
|
|
13444
|
-
'@rolldown/binding-linux-s390x-gnu': 1.
|
|
13445
|
-
'@rolldown/binding-linux-x64-gnu': 1.
|
|
13446
|
-
'@rolldown/binding-linux-x64-musl': 1.
|
|
13447
|
-
'@rolldown/binding-openharmony-arm64': 1.
|
|
13448
|
-
'@rolldown/binding-wasm32-wasi': 1.
|
|
13449
|
-
'@rolldown/binding-win32-arm64-msvc': 1.
|
|
13450
|
-
'@rolldown/binding-win32-x64-msvc': 1.
|
|
13451
|
-
|
|
13452
|
-
rolldown@1.1.
|
|
13453
|
-
dependencies:
|
|
13454
|
-
'@oxc-project/types': 0.134.0
|
|
13455
|
-
'@rolldown/pluginutils': 1.0.1
|
|
13456
|
-
optionalDependencies:
|
|
13457
|
-
'@rolldown/binding-android-arm64': 1.1.0
|
|
13458
|
-
'@rolldown/binding-darwin-arm64': 1.1.0
|
|
13459
|
-
'@rolldown/binding-darwin-x64': 1.1.0
|
|
13460
|
-
'@rolldown/binding-freebsd-x64': 1.1.0
|
|
13461
|
-
'@rolldown/binding-linux-arm-gnueabihf': 1.1.0
|
|
13462
|
-
'@rolldown/binding-linux-arm64-gnu': 1.1.0
|
|
13463
|
-
'@rolldown/binding-linux-arm64-musl': 1.1.0
|
|
13464
|
-
'@rolldown/binding-linux-ppc64-gnu': 1.1.0
|
|
13465
|
-
'@rolldown/binding-linux-s390x-gnu': 1.1.0
|
|
13466
|
-
'@rolldown/binding-linux-x64-gnu': 1.1.0
|
|
13467
|
-
'@rolldown/binding-linux-x64-musl': 1.1.0
|
|
13468
|
-
'@rolldown/binding-openharmony-arm64': 1.1.0
|
|
13469
|
-
'@rolldown/binding-wasm32-wasi': 1.1.0
|
|
13470
|
-
'@rolldown/binding-win32-arm64-msvc': 1.1.0
|
|
13471
|
-
'@rolldown/binding-win32-x64-msvc': 1.1.0
|
|
13472
|
-
|
|
13473
|
-
rollup-plugin-visualizer@7.0.1(rolldown@1.1.0):
|
|
13327
|
+
'@rolldown/binding-android-arm64': 1.1.3
|
|
13328
|
+
'@rolldown/binding-darwin-arm64': 1.1.3
|
|
13329
|
+
'@rolldown/binding-darwin-x64': 1.1.3
|
|
13330
|
+
'@rolldown/binding-freebsd-x64': 1.1.3
|
|
13331
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.1.3
|
|
13332
|
+
'@rolldown/binding-linux-arm64-gnu': 1.1.3
|
|
13333
|
+
'@rolldown/binding-linux-arm64-musl': 1.1.3
|
|
13334
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.1.3
|
|
13335
|
+
'@rolldown/binding-linux-s390x-gnu': 1.1.3
|
|
13336
|
+
'@rolldown/binding-linux-x64-gnu': 1.1.3
|
|
13337
|
+
'@rolldown/binding-linux-x64-musl': 1.1.3
|
|
13338
|
+
'@rolldown/binding-openharmony-arm64': 1.1.3
|
|
13339
|
+
'@rolldown/binding-wasm32-wasi': 1.1.3
|
|
13340
|
+
'@rolldown/binding-win32-arm64-msvc': 1.1.3
|
|
13341
|
+
'@rolldown/binding-win32-x64-msvc': 1.1.3
|
|
13342
|
+
|
|
13343
|
+
rollup-plugin-visualizer@7.0.1(rolldown@1.1.3):
|
|
13474
13344
|
dependencies:
|
|
13475
13345
|
open: 11.0.0
|
|
13476
13346
|
picomatch: 4.0.4
|
|
13477
13347
|
source-map: 0.7.6
|
|
13478
13348
|
yargs: 18.0.0
|
|
13479
13349
|
optionalDependencies:
|
|
13480
|
-
rolldown: 1.1.
|
|
13350
|
+
rolldown: 1.1.3
|
|
13481
13351
|
|
|
13482
|
-
router@2.2.0
|
|
13352
|
+
router@2.2.0:
|
|
13483
13353
|
dependencies:
|
|
13484
13354
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13485
13355
|
depd: 2.0.0
|
|
@@ -13573,9 +13443,9 @@ snapshots:
|
|
|
13573
13443
|
|
|
13574
13444
|
sass-embedded@1.100.0:
|
|
13575
13445
|
dependencies:
|
|
13576
|
-
'@bufbuild/protobuf': 2.12.
|
|
13446
|
+
'@bufbuild/protobuf': 2.12.1
|
|
13577
13447
|
colorjs.io: 0.5.2
|
|
13578
|
-
immutable: 5.1.
|
|
13448
|
+
immutable: 5.1.7
|
|
13579
13449
|
rxjs: 7.8.2
|
|
13580
13450
|
supports-color: 8.1.1
|
|
13581
13451
|
sync-child-process: 1.0.2
|
|
@@ -13603,7 +13473,7 @@ snapshots:
|
|
|
13603
13473
|
sass@1.100.0:
|
|
13604
13474
|
dependencies:
|
|
13605
13475
|
chokidar: 5.0.0
|
|
13606
|
-
immutable: 5.1.
|
|
13476
|
+
immutable: 5.1.7
|
|
13607
13477
|
source-map-js: 1.2.1
|
|
13608
13478
|
optionalDependencies:
|
|
13609
13479
|
'@parcel/watcher': 2.5.6
|
|
@@ -13612,7 +13482,7 @@ snapshots:
|
|
|
13612
13482
|
sass@1.101.0:
|
|
13613
13483
|
dependencies:
|
|
13614
13484
|
chokidar: 5.0.0
|
|
13615
|
-
immutable: 5.1.
|
|
13485
|
+
immutable: 5.1.7
|
|
13616
13486
|
source-map-js: 1.2.1
|
|
13617
13487
|
optionalDependencies:
|
|
13618
13488
|
'@parcel/watcher': 2.5.6
|
|
@@ -13634,9 +13504,9 @@ snapshots:
|
|
|
13634
13504
|
|
|
13635
13505
|
semver@6.3.1: {}
|
|
13636
13506
|
|
|
13637
|
-
semver@7.8.
|
|
13507
|
+
semver@7.8.5: {}
|
|
13638
13508
|
|
|
13639
|
-
send@1.2.1
|
|
13509
|
+
send@1.2.1:
|
|
13640
13510
|
dependencies:
|
|
13641
13511
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13642
13512
|
encodeurl: 2.0.0
|
|
@@ -13665,7 +13535,7 @@ snapshots:
|
|
|
13665
13535
|
encodeurl: 2.0.0
|
|
13666
13536
|
escape-html: 1.0.3
|
|
13667
13537
|
parseurl: 1.3.3
|
|
13668
|
-
send: 1.2.1
|
|
13538
|
+
send: 1.2.1
|
|
13669
13539
|
transitivePeerDependencies:
|
|
13670
13540
|
- supports-color
|
|
13671
13541
|
|
|
@@ -13931,7 +13801,7 @@ snapshots:
|
|
|
13931
13801
|
terser@5.48.0:
|
|
13932
13802
|
dependencies:
|
|
13933
13803
|
'@jridgewell/source-map': 0.3.11
|
|
13934
|
-
acorn: 8.
|
|
13804
|
+
acorn: 8.17.0
|
|
13935
13805
|
commander: 2.20.3
|
|
13936
13806
|
source-map-support: 0.5.21
|
|
13937
13807
|
|
|
@@ -13971,19 +13841,19 @@ snapshots:
|
|
|
13971
13841
|
dependencies:
|
|
13972
13842
|
check-ends-with-period: 3.0.2
|
|
13973
13843
|
|
|
13974
|
-
textlint@15.7.1
|
|
13844
|
+
textlint@15.7.1:
|
|
13975
13845
|
dependencies:
|
|
13976
13846
|
'@modelcontextprotocol/sdk': 1.29.0(@cabloy/zod@4.3.6)
|
|
13977
13847
|
'@textlint/ast-node-types': 15.7.1
|
|
13978
13848
|
'@textlint/ast-traverse': 15.7.1
|
|
13979
|
-
'@textlint/config-loader': 15.7.1
|
|
13849
|
+
'@textlint/config-loader': 15.7.1
|
|
13980
13850
|
'@textlint/feature-flag': 15.7.1
|
|
13981
|
-
'@textlint/fixer-formatter': 15.7.1
|
|
13851
|
+
'@textlint/fixer-formatter': 15.7.1
|
|
13982
13852
|
'@textlint/kernel': 15.7.1
|
|
13983
|
-
'@textlint/linter-formatter': 15.7.1
|
|
13853
|
+
'@textlint/linter-formatter': 15.7.1
|
|
13984
13854
|
'@textlint/module-interop': 15.7.1
|
|
13985
13855
|
'@textlint/resolver': 15.7.1
|
|
13986
|
-
'@textlint/textlint-plugin-markdown': 15.7.1
|
|
13856
|
+
'@textlint/textlint-plugin-markdown': 15.7.1
|
|
13987
13857
|
'@textlint/textlint-plugin-text': 15.7.1
|
|
13988
13858
|
'@textlint/types': 15.7.1
|
|
13989
13859
|
'@textlint/utils': 15.7.1
|
|
@@ -14042,7 +13912,7 @@ snapshots:
|
|
|
14042
13912
|
optionalDependencies:
|
|
14043
13913
|
typescript: 5.9.3
|
|
14044
13914
|
|
|
14045
|
-
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.
|
|
13915
|
+
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.20260624.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3)):
|
|
14046
13916
|
dependencies:
|
|
14047
13917
|
ansis: 4.3.1
|
|
14048
13918
|
cac: 7.0.0
|
|
@@ -14050,11 +13920,11 @@ snapshots:
|
|
|
14050
13920
|
empathic: 2.0.1
|
|
14051
13921
|
hookable: 6.1.1
|
|
14052
13922
|
import-without-cache: 0.3.3
|
|
14053
|
-
obug: 2.1.
|
|
13923
|
+
obug: 2.1.3
|
|
14054
13924
|
picomatch: 4.0.4
|
|
14055
13925
|
rolldown: 1.0.0-rc.17
|
|
14056
|
-
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.
|
|
14057
|
-
semver: 7.8.
|
|
13926
|
+
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.5(typescript@5.9.3))
|
|
13927
|
+
semver: 7.8.5
|
|
14058
13928
|
tinyexec: 1.2.4
|
|
14059
13929
|
tinyglobby: 0.2.17
|
|
14060
13930
|
tree-kill: 1.2.2
|
|
@@ -14095,12 +13965,12 @@ snapshots:
|
|
|
14095
13965
|
es-errors: 1.3.0
|
|
14096
13966
|
is-typed-array: 1.1.15
|
|
14097
13967
|
|
|
14098
|
-
typescript-eslint@8.
|
|
13968
|
+
typescript-eslint@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3):
|
|
14099
13969
|
dependencies:
|
|
14100
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
14101
|
-
'@typescript-eslint/parser': 8.
|
|
14102
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
14103
|
-
'@typescript-eslint/utils': 8.
|
|
13970
|
+
'@typescript-eslint/eslint-plugin': 8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
13971
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
13972
|
+
'@typescript-eslint/typescript-estree': 8.62.0(typescript@5.9.3)
|
|
13973
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14104
13974
|
eslint: 10.5.0(jiti@2.7.0)
|
|
14105
13975
|
typescript: 5.9.3
|
|
14106
13976
|
transitivePeerDependencies:
|
|
@@ -14122,7 +13992,7 @@ snapshots:
|
|
|
14122
13992
|
|
|
14123
13993
|
undici-types@6.21.0: {}
|
|
14124
13994
|
|
|
14125
|
-
undici@7.
|
|
13995
|
+
undici@7.28.0: {}
|
|
14126
13996
|
|
|
14127
13997
|
unicorn-magic@0.1.0: {}
|
|
14128
13998
|
|
|
@@ -14188,9 +14058,9 @@ snapshots:
|
|
|
14188
14058
|
optionalDependencies:
|
|
14189
14059
|
synckit: 0.11.13
|
|
14190
14060
|
|
|
14191
|
-
update-browserslist-db@1.2.3(browserslist@4.28.
|
|
14061
|
+
update-browserslist-db@1.2.3(browserslist@4.28.4):
|
|
14192
14062
|
dependencies:
|
|
14193
|
-
browserslist: 4.28.
|
|
14063
|
+
browserslist: 4.28.4
|
|
14194
14064
|
escalade: 3.2.0
|
|
14195
14065
|
picocolors: 1.1.1
|
|
14196
14066
|
|
|
@@ -14210,12 +14080,12 @@ snapshots:
|
|
|
14210
14080
|
|
|
14211
14081
|
urllib@4.9.0:
|
|
14212
14082
|
dependencies:
|
|
14213
|
-
form-data: 4.0.
|
|
14083
|
+
form-data: 4.0.6
|
|
14214
14084
|
formstream: 1.5.2
|
|
14215
14085
|
mime-types: 2.1.35
|
|
14216
14086
|
qs: 6.15.2
|
|
14217
14087
|
type-fest: 4.41.0
|
|
14218
|
-
undici: 7.
|
|
14088
|
+
undici: 7.28.0
|
|
14219
14089
|
ylru: 2.0.0
|
|
14220
14090
|
|
|
14221
14091
|
util-deprecate@1.0.2: {}
|
|
@@ -14249,10 +14119,10 @@ snapshots:
|
|
|
14249
14119
|
unist-util-stringify-position: 2.0.3
|
|
14250
14120
|
vfile-message: 2.0.4
|
|
14251
14121
|
|
|
14252
|
-
vite-plugin-devtools-json@1.0.0(vite@8.0
|
|
14122
|
+
vite-plugin-devtools-json@1.0.0(vite@8.1.0(@types/node@22.20.0)(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)):
|
|
14253
14123
|
dependencies:
|
|
14254
14124
|
uuid: 11.1.1
|
|
14255
|
-
vite: 8.0
|
|
14125
|
+
vite: 8.1.0(@types/node@22.20.0)(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)
|
|
14256
14126
|
|
|
14257
14127
|
vite-plugin-fake-server-turbo@3.0.18:
|
|
14258
14128
|
dependencies:
|
|
@@ -14264,15 +14134,15 @@ snapshots:
|
|
|
14264
14134
|
path-to-regexp: 8.4.2
|
|
14265
14135
|
picocolors: 1.1.1
|
|
14266
14136
|
|
|
14267
|
-
vite@8.0
|
|
14137
|
+
vite@8.1.0(@types/node@22.20.0)(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):
|
|
14268
14138
|
dependencies:
|
|
14269
14139
|
lightningcss: 1.32.0
|
|
14270
14140
|
picomatch: 4.0.4
|
|
14271
14141
|
postcss: 8.5.15
|
|
14272
|
-
rolldown: 1.
|
|
14142
|
+
rolldown: 1.1.3
|
|
14273
14143
|
tinyglobby: 0.2.17
|
|
14274
14144
|
optionalDependencies:
|
|
14275
|
-
'@types/node': 22.
|
|
14145
|
+
'@types/node': 22.20.0
|
|
14276
14146
|
esbuild: 0.25.12
|
|
14277
14147
|
fsevents: 2.3.3
|
|
14278
14148
|
jiti: 2.7.0
|
|
@@ -14281,15 +14151,15 @@ snapshots:
|
|
|
14281
14151
|
terser: 5.48.0
|
|
14282
14152
|
yaml: 2.9.0
|
|
14283
14153
|
|
|
14284
|
-
vite@8.0
|
|
14154
|
+
vite@8.1.0(@types/node@22.20.0)(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):
|
|
14285
14155
|
dependencies:
|
|
14286
14156
|
lightningcss: 1.32.0
|
|
14287
14157
|
picomatch: 4.0.4
|
|
14288
14158
|
postcss: 8.5.15
|
|
14289
|
-
rolldown: 1.
|
|
14159
|
+
rolldown: 1.1.3
|
|
14290
14160
|
tinyglobby: 0.2.17
|
|
14291
14161
|
optionalDependencies:
|
|
14292
|
-
'@types/node': 22.
|
|
14162
|
+
'@types/node': 22.20.0
|
|
14293
14163
|
esbuild: 0.27.7
|
|
14294
14164
|
fsevents: 2.3.3
|
|
14295
14165
|
jiti: 2.7.0
|
|
@@ -14312,7 +14182,7 @@ snapshots:
|
|
|
14312
14182
|
eslint-visitor-keys: 5.0.1
|
|
14313
14183
|
espree: 11.2.0
|
|
14314
14184
|
esquery: 1.7.0
|
|
14315
|
-
semver: 7.8.
|
|
14185
|
+
semver: 7.8.5
|
|
14316
14186
|
transitivePeerDependencies:
|
|
14317
14187
|
- supports-color
|
|
14318
14188
|
|
|
@@ -14345,16 +14215,6 @@ snapshots:
|
|
|
14345
14215
|
source-map: 0.6.1
|
|
14346
14216
|
vue: 3.5.38(typescript@5.9.3)
|
|
14347
14217
|
|
|
14348
|
-
vue@3.5.13(typescript@5.9.3):
|
|
14349
|
-
dependencies:
|
|
14350
|
-
'@vue/compiler-dom': 3.5.13
|
|
14351
|
-
'@vue/compiler-sfc': '@cabloy/vue-compiler-sfc@3.5.14'
|
|
14352
|
-
'@vue/runtime-dom': '@cabloy/vue-runtime-dom@3.5.13'
|
|
14353
|
-
'@vue/server-renderer': '@cabloy/vue-server-renderer@3.5.18(vue@3.5.13(typescript@5.9.3))'
|
|
14354
|
-
'@vue/shared': 3.5.13
|
|
14355
|
-
optionalDependencies:
|
|
14356
|
-
typescript: 5.9.3
|
|
14357
|
-
|
|
14358
14218
|
vue@3.5.38(typescript@5.9.3):
|
|
14359
14219
|
dependencies:
|
|
14360
14220
|
'@vue/compiler-dom': 3.5.13
|
|
@@ -14488,7 +14348,7 @@ snapshots:
|
|
|
14488
14348
|
y18n: 4.0.3
|
|
14489
14349
|
yargs-parser: 13.1.2
|
|
14490
14350
|
|
|
14491
|
-
yargs@17.7.
|
|
14351
|
+
yargs@17.7.3:
|
|
14492
14352
|
dependencies:
|
|
14493
14353
|
cliui: 8.0.1
|
|
14494
14354
|
escalade: 3.2.0
|