cabloy 5.1.65 → 5.1.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/skills/cabloy-resource-field-update/SKILL.md +6 -0
- package/CHANGELOG.md +55 -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/create/module/boilerplate/_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 +2 -2
- 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 +35 -11
- package/vona/src/suite/a-demo/modules/demo-basic/package.json +1 -1
- package/vona/src/suite/a-home/modules/home-base/package.json +1 -1
- package/vona/src/suite/a-home/modules/home-index/package.json +1 -1
- package/vona/src/suite/a-home/modules/home-user/package.json +1 -1
- package/vona/src/suite/a-training/modules/training-record/package.json +1 -1
- package/vona/src/suite/a-training/modules/training-record/src/.metadata/index.ts +232 -3
- package/vona/src/suite/a-training/modules/training-record/src/bean/ssrMenu.record.ts +29 -0
- package/vona/src/suite/a-training/modules/training-record/src/config/locale/en-us.ts +9 -1
- package/vona/src/suite/a-training/modules/training-record/src/config/locale/zh-cn.ts +9 -1
- package/vona/src/suite/a-training/modules/training-record/src/controller/record.ts +59 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectBase.tsx +18 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectMutate.tsx +17 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectResItem.tsx +60 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/detailRecordSubjectView.tsx +17 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordCreate.tsx +45 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectReq.tsx +38 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectRes.tsx +11 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectResItem.tsx +39 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordUpdate.tsx +45 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordView.tsx +42 -0
- package/vona/src/suite/a-training/modules/training-record/src/entity/record.tsx +23 -6
- package/vona/src/suite/a-training/modules/training-record/src/model/record.ts +15 -2
- package/vona/src/suite/a-training/modules/training-record/src/service/record.ts +50 -0
- package/vona/src/suite/a-training/modules/training-record/test/record.test.ts +138 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/package.json +53 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/.metadata/index.ts +198 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/.metadata/locales.ts +18 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/.metadata/this.ts +2 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/bean/meta.index.ts +12 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/bean/meta.version.ts +21 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/config/locale/en-us.ts +9 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/config/locale/zh-cn.ts +9 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/entity/subject.tsx +42 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/index.ts +2 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/src/model/subject.ts +10 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/tsconfig.build.json +11 -0
- package/vona/src/suite/a-training/modules/training-recordsubject/tsconfig.json +7 -0
- package/vona/src/suite/a-training/modules/training-student/package.json +1 -1
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +8 -1
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +8 -1
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordBase.tsx +17 -2
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordMutate.tsx +12 -17
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordResItem.tsx +26 -5
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordView.tsx +12 -14
- 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 +2 -4
- package/vona/src/suite/a-training/modules/training-student/src/service/student.ts +22 -5
- package/vona/src/suite/a-training/modules/training-student/test/student.test.ts +69 -15
- package/vona/src/suite/a-training/package.json +1 -0
- package/vona/src/suite/a-training/tsconfig.json +3 -0
- package/vona/src/suite/cabloy-basic/modules/basic-siteadmin/package.json +1 -1
- package/vona/src/suite/cabloy-basic/modules/basic-siteweb/package.json +1 -1
- package/vona/src/suite-vendor/a-auth/modules/a-auth/package.json +2 -2
- package/vona/src/suite-vendor/a-auth/modules/auth-oauth/package.json +2 -2
- package/vona/src/suite-vendor/a-auth/modules/auth-simple/package.json +2 -2
- package/vona/src/suite-vendor/a-auth/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-cabloy/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-datasharding/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-datasource/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-socket/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssrhmr/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-status/package.json +2 -2
- package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
- package/vona/src/suite-vendor/a-captcha/modules/a-captcha/package.json +2 -2
- package/vona/src/suite-vendor/a-captcha/modules/captcha-simple/package.json +2 -2
- package/vona/src/suite-vendor/a-captcha/package.json +1 -1
- package/vona/src/suite-vendor/a-paypal/modules/a-paypal/package.json +2 -2
- package/vona/src/suite-vendor/a-paypal/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-aspect/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-aspectutils/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-bean/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-beanmutate/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-body/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-broadcast/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-cache/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-caching/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-core/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-election/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-error/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-event/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-executor/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-hmr/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-hmrbase/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-index/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-instance/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-jwt/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-locale/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-logger/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-mail/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-mailconfirm/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-menu/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-meta/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-onion/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-openapi/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-openapischema/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-openapiutils/package.json +2 -2
- 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 +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoGet.ts +6 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoMutate.ts +13 -4
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/utils.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/relations_.ts +37 -16
- package/vona/src/suite-vendor/a-vona/modules/a-ormdialect/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-ormutils/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-permission/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-play/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-printtip/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-queue/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-redis/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-redlock/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-runtime/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-schedule/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-security/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-serialization/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-startup/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-static/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-summer/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-swagger/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-upload/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-user/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-validation/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-version/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-vona/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-web/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-web/src/lib/decorator/bean.ts +26 -5
- package/vona/src/suite-vendor/a-vona/modules/a-worker/package.json +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-zod/package.json +2 -2
- 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/create/module/boilerplate/_package.json +1 -1
- package/zova/packages-cli/cli-set-front/cli/templates/rest/component.ts +21 -0
- package/zova/packages-cli/cli-set-front/cli/templates/rest/render.ts +4 -0
- package/zova/packages-cli/cli-set-front/package.json +3 -3
- 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 +695 -791
- package/zova/src/suite/a-demo/modules/demo-basic/package.json +1 -1
- package/zova/src/suite/a-demo/modules/demo-todo/package.json +1 -1
- package/zova/src/suite/a-devui/modules/devui-adapter/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-api/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-base/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-icon/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-indexadmin/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-indexweb/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-layoutadmin/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-layoutempty/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-layoutweb/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-login/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-passport/package.json +1 -1
- package/zova/src/suite/a-home/modules/home-theme/package.json +1 -1
- package/zova/src/suite/a-training/modules/training-student/package.json +3 -2
- package/zova/src/suite/cabloy-basic/modules/basic-adapter/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-app/package.json +1 -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-captcha/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-commands/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-commandssync/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-currency/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-date/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-details/package.json +7 -2
- 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/index.ts +149 -2
- 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 +44 -6
- 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 +29 -5
- 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 +7 -2
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/blockToolbarBulk/controller.tsx +3 -1
- 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 +4 -0
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/config/locale/zh-cn.ts +4 -0
- 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/cabloy-basic/modules/basic-form/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-input/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-page/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-pageentry/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-resource/package.json +52 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/.metadata/component/formFieldResourcePicker.ts +31 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/.metadata/index.ts +103 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/.metadata/this.ts +2 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/bean/tableCell.resourcePicker.tsx +46 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/component/formFieldResourcePicker/controller.tsx +157 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/tsconfig.build.json +13 -0
- package/zova/src/suite/cabloy-basic/modules/basic-resource/tsconfig.json +5 -0
- package/zova/src/suite/cabloy-basic/modules/basic-select/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-table/package.json +1 -1
- package/zova/src/suite/cabloy-basic/modules/basic-text/package.json +1 -1
- package/zova/src/suite/cabloy-basic/package.json +1 -0
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/package.json +2 -2
- 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-api/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-app/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-bean/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-behavior/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-behaviors/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-boundary/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 +4 -3
- 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-fetch/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-form/package.json +2 -2
- 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-icon/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-interceptor/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-logger/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-meta/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-model/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-model/src/bean/bean.model/bean.model.useQuery.ts +2 -1
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/package.json +3 -3
- 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/model/sdk.ts +4 -0
- 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/index.ts +1 -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-router/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-routerstack/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-routertabs/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-ssr/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-ssrhmr/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-ssrserver/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-style/package.json +2 -2
- 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 +4 -3
- 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-zod/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +3 -3
- package/zova/src/suite-vendor/a-zova/package.json +26 -26
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(supports-color@10.2.2)
|
|
78
78
|
compression:
|
|
79
79
|
specifier: ^1.8.1
|
|
80
80
|
version: 1.8.1
|
|
@@ -246,6 +246,9 @@ importers:
|
|
|
246
246
|
zova-module-basic-pageentry:
|
|
247
247
|
specifier: workspace:^
|
|
248
248
|
version: link:src/suite/cabloy-basic/modules/basic-pageentry
|
|
249
|
+
zova-module-basic-resource:
|
|
250
|
+
specifier: workspace:^
|
|
251
|
+
version: link:src/suite/cabloy-basic/modules/basic-resource
|
|
249
252
|
zova-module-basic-select:
|
|
250
253
|
specifier: workspace:^
|
|
251
254
|
version: link:src/suite/cabloy-basic/modules/basic-select
|
|
@@ -305,26 +308,26 @@ importers:
|
|
|
305
308
|
version: link:src/suite/a-training/modules/training-student
|
|
306
309
|
devDependencies:
|
|
307
310
|
'@cabloy/cli':
|
|
308
|
-
specifier: ^3.1.
|
|
309
|
-
version: 3.1.
|
|
311
|
+
specifier: ^3.1.23
|
|
312
|
+
version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
310
313
|
'@cabloy/lint':
|
|
311
314
|
specifier: ^5.1.27
|
|
312
|
-
version: 5.1.30(@typescript-eslint/eslint-plugin@8.
|
|
315
|
+
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)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
|
|
313
316
|
'@cabloy/openapi-typescript':
|
|
314
317
|
specifier: ^7.9.2
|
|
315
318
|
version: 7.9.2(typescript@5.9.3)
|
|
316
319
|
'@quasar/app-vite':
|
|
317
320
|
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.
|
|
321
|
+
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
322
|
'@types/luxon':
|
|
320
323
|
specifier: ^3.7.1
|
|
321
|
-
version: 3.7.
|
|
324
|
+
version: 3.7.2
|
|
322
325
|
'@types/node':
|
|
323
326
|
specifier: ^22.19.17
|
|
324
|
-
version: 22.
|
|
327
|
+
version: 22.20.0
|
|
325
328
|
'@vitejs/plugin-vue':
|
|
326
329
|
specifier: ^6.0.7
|
|
327
|
-
version: 6.0.7(vite@8.0
|
|
330
|
+
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
331
|
concurrently:
|
|
329
332
|
specifier: ^8.2.2
|
|
330
333
|
version: 8.2.2
|
|
@@ -336,10 +339,10 @@ importers:
|
|
|
336
339
|
version: 0.45.0
|
|
337
340
|
oxlint:
|
|
338
341
|
specifier: ^1.65.0
|
|
339
|
-
version: 1.
|
|
342
|
+
version: 1.71.0
|
|
340
343
|
quasar-app-extension-zova:
|
|
341
344
|
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.
|
|
345
|
+
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
346
|
sass:
|
|
344
347
|
specifier: ^1.101.0
|
|
345
348
|
version: 1.101.0
|
|
@@ -363,7 +366,7 @@ importers:
|
|
|
363
366
|
version: 5.9.3
|
|
364
367
|
vite:
|
|
365
368
|
specifier: ^8.0.14
|
|
366
|
-
version: 8.0
|
|
369
|
+
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
370
|
vite-plugin-fake-server-turbo:
|
|
368
371
|
specifier: ^3.0.18
|
|
369
372
|
version: 3.0.18
|
|
@@ -380,8 +383,8 @@ importers:
|
|
|
380
383
|
packages-cli/cli:
|
|
381
384
|
dependencies:
|
|
382
385
|
'@cabloy/cli':
|
|
383
|
-
specifier: ^3.1.
|
|
384
|
-
version: 3.1.
|
|
386
|
+
specifier: ^3.1.23
|
|
387
|
+
version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
385
388
|
'@cabloy/process-helper':
|
|
386
389
|
specifier: ^3.1.8
|
|
387
390
|
version: 3.1.8
|
|
@@ -390,9 +393,9 @@ importers:
|
|
|
390
393
|
version: 11.3.5
|
|
391
394
|
semver:
|
|
392
395
|
specifier: ^7.6.2
|
|
393
|
-
version: 7.8.
|
|
396
|
+
version: 7.8.5
|
|
394
397
|
zova-cli-set-front:
|
|
395
|
-
specifier: ^1.2.
|
|
398
|
+
specifier: ^1.2.84
|
|
396
399
|
version: link:../cli-set-front
|
|
397
400
|
devDependencies:
|
|
398
401
|
clean-package:
|
|
@@ -414,8 +417,8 @@ importers:
|
|
|
414
417
|
specifier: ^7.28.6
|
|
415
418
|
version: 7.29.7(@babel/core@7.29.7)
|
|
416
419
|
'@cabloy/cli':
|
|
417
|
-
specifier: ^3.1.
|
|
418
|
-
version: 3.1.
|
|
420
|
+
specifier: ^3.1.23
|
|
421
|
+
version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
419
422
|
'@cabloy/extend':
|
|
420
423
|
specifier: ^3.2.8
|
|
421
424
|
version: 3.2.8
|
|
@@ -430,7 +433,7 @@ importers:
|
|
|
430
433
|
version: 2.1.22
|
|
431
434
|
'@cabloy/vite-plugin-babel':
|
|
432
435
|
specifier: ^1.3.3
|
|
433
|
-
version: 1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
436
|
+
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
437
|
'@cabloy/vue-babel-plugin-jsx':
|
|
435
438
|
specifier: ^2.0.1
|
|
436
439
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -439,10 +442,10 @@ importers:
|
|
|
439
442
|
version: link:../../packages-utils/word-utils
|
|
440
443
|
'@typescript/native-preview':
|
|
441
444
|
specifier: ^7.0.0-dev.20260320.1
|
|
442
|
-
version: 7.0.0-dev.
|
|
445
|
+
version: 7.0.0-dev.20260624.1
|
|
443
446
|
'@vitejs/plugin-vue-jsx':
|
|
444
447
|
specifier: ^5.1.5
|
|
445
|
-
version: 5.1.
|
|
448
|
+
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
449
|
babel-plugin-transform-typescript-metadata:
|
|
447
450
|
specifier: ^0.4.0
|
|
448
451
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -475,16 +478,16 @@ importers:
|
|
|
475
478
|
version: 5.0.10
|
|
476
479
|
rolldown:
|
|
477
480
|
specifier: ^1.0.0-rc.11
|
|
478
|
-
version: 1.1.
|
|
481
|
+
version: 1.1.3
|
|
479
482
|
rolldown-plugin-dts:
|
|
480
483
|
specifier: ^0.22.5
|
|
481
|
-
version: 0.22.5(@typescript/native-preview@7.0.0-dev.
|
|
484
|
+
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
485
|
svgo:
|
|
483
486
|
specifier: ^3.2.0
|
|
484
487
|
version: 3.3.3
|
|
485
488
|
tsdown:
|
|
486
489
|
specifier: ^0.21.7
|
|
487
|
-
version: 0.21.10(@typescript/native-preview@7.0.0-dev.
|
|
490
|
+
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
491
|
typescript:
|
|
489
492
|
specifier: ^5.9.3
|
|
490
493
|
version: 5.9.3
|
|
@@ -493,7 +496,7 @@ importers:
|
|
|
493
496
|
version: 4.9.0
|
|
494
497
|
vite:
|
|
495
498
|
specifier: ^8.0.14
|
|
496
|
-
version: 8.0
|
|
499
|
+
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
500
|
yaml:
|
|
498
501
|
specifier: ^2.8.3
|
|
499
502
|
version: 2.9.0
|
|
@@ -717,7 +720,7 @@ importers:
|
|
|
717
720
|
version: 2.0.0
|
|
718
721
|
'@cabloy/vite-plugin-babel':
|
|
719
722
|
specifier: ^1.3.3
|
|
720
|
-
version: 1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
723
|
+
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
724
|
'@cabloy/vue-babel-plugin-jsx':
|
|
722
725
|
specifier: ^2.0.1
|
|
723
726
|
version: 2.0.1(@babel/core@7.29.7)
|
|
@@ -744,10 +747,10 @@ importers:
|
|
|
744
747
|
version: 8.4.1
|
|
745
748
|
'@types/node':
|
|
746
749
|
specifier: ^22.19.17
|
|
747
|
-
version: 22.
|
|
750
|
+
version: 22.20.0
|
|
748
751
|
'@vitejs/plugin-vue-jsx':
|
|
749
752
|
specifier: ^5.1.5
|
|
750
|
-
version: 5.1.
|
|
753
|
+
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.13(typescript@5.9.3))
|
|
751
754
|
babel-plugin-transform-typescript-metadata:
|
|
752
755
|
specifier: ^0.4.0
|
|
753
756
|
version: 0.4.0(@babel/core@7.29.7)
|
|
@@ -786,10 +789,10 @@ importers:
|
|
|
786
789
|
version: 0.2.7
|
|
787
790
|
vite:
|
|
788
791
|
specifier: ^8.0.14
|
|
789
|
-
version: 8.0
|
|
792
|
+
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
793
|
vite-plugin-devtools-json:
|
|
791
794
|
specifier: ^1.0.0
|
|
792
|
-
version: 1.0.0(vite@8.0
|
|
795
|
+
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
796
|
vite-plugin-fake-server-turbo:
|
|
794
797
|
specifier: ^3.0.18
|
|
795
798
|
version: 3.0.18
|
|
@@ -813,7 +816,7 @@ importers:
|
|
|
813
816
|
specifier: ^5.1.57
|
|
814
817
|
version: link:../zova-core
|
|
815
818
|
zova-suite-a-zova:
|
|
816
|
-
specifier: ^5.1.
|
|
819
|
+
specifier: ^5.1.109
|
|
817
820
|
version: link:../../src/suite-vendor/a-zova
|
|
818
821
|
devDependencies:
|
|
819
822
|
clean-package:
|
|
@@ -906,12 +909,12 @@ importers:
|
|
|
906
909
|
version: 6.1.3
|
|
907
910
|
vite:
|
|
908
911
|
specifier: ^8.0.14
|
|
909
|
-
version: 8.0
|
|
912
|
+
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
913
|
|
|
911
914
|
src/suite-vendor/a-cabloy:
|
|
912
915
|
dependencies:
|
|
913
916
|
zova-module-rest-resource:
|
|
914
|
-
specifier: ^5.1.
|
|
917
|
+
specifier: ^5.1.37
|
|
915
918
|
version: link:modules/rest-resource
|
|
916
919
|
|
|
917
920
|
src/suite-vendor/a-cabloy/modules/rest-resource:
|
|
@@ -944,13 +947,13 @@ importers:
|
|
|
944
947
|
specifier: ^5.1.18
|
|
945
948
|
version: link:modules/a-boundary
|
|
946
949
|
zova-module-a-command:
|
|
947
|
-
specifier: ^5.1.
|
|
950
|
+
specifier: ^5.1.30
|
|
948
951
|
version: link:modules/a-command
|
|
949
952
|
zova-module-a-fetch:
|
|
950
953
|
specifier: ^5.1.20
|
|
951
954
|
version: link:modules/a-fetch
|
|
952
955
|
zova-module-a-form:
|
|
953
|
-
specifier: ^5.1.
|
|
956
|
+
specifier: ^5.1.36
|
|
954
957
|
version: link:modules/a-form
|
|
955
958
|
zova-module-a-icon:
|
|
956
959
|
specifier: ^5.1.23
|
|
@@ -968,7 +971,7 @@ importers:
|
|
|
968
971
|
specifier: ^5.1.27
|
|
969
972
|
version: link:modules/a-model
|
|
970
973
|
zova-module-a-openapi:
|
|
971
|
-
specifier: ^5.1.
|
|
974
|
+
specifier: ^5.1.37
|
|
972
975
|
version: link:modules/a-openapi
|
|
973
976
|
zova-module-a-router:
|
|
974
977
|
specifier: ^5.1.26
|
|
@@ -992,13 +995,13 @@ importers:
|
|
|
992
995
|
specifier: ^5.1.29
|
|
993
996
|
version: link:modules/a-style
|
|
994
997
|
zova-module-a-table:
|
|
995
|
-
specifier: ^5.1.
|
|
998
|
+
specifier: ^5.1.33
|
|
996
999
|
version: link:modules/a-table
|
|
997
1000
|
zova-module-a-zod:
|
|
998
1001
|
specifier: ^5.1.30
|
|
999
1002
|
version: link:modules/a-zod
|
|
1000
1003
|
zova-module-a-zova:
|
|
1001
|
-
specifier: ^5.1.
|
|
1004
|
+
specifier: ^5.1.74
|
|
1002
1005
|
version: link:modules/a-zova
|
|
1003
1006
|
|
|
1004
1007
|
src/suite-vendor/a-zova/modules/a-api:
|
|
@@ -1072,7 +1075,7 @@ importers:
|
|
|
1072
1075
|
dependencies:
|
|
1073
1076
|
axios:
|
|
1074
1077
|
specifier: ^1.16.1
|
|
1075
|
-
version: 1.
|
|
1078
|
+
version: 1.18.1(supports-color@10.2.2)
|
|
1076
1079
|
devDependencies:
|
|
1077
1080
|
clean-package:
|
|
1078
1081
|
specifier: ^2.2.0
|
|
@@ -1138,13 +1141,13 @@ importers:
|
|
|
1138
1141
|
dependencies:
|
|
1139
1142
|
'@tanstack/query-core':
|
|
1140
1143
|
specifier: ^5.100.10
|
|
1141
|
-
version: 5.101.
|
|
1144
|
+
version: 5.101.1
|
|
1142
1145
|
'@tanstack/query-persist-client-core':
|
|
1143
1146
|
specifier: ^5.97.0
|
|
1144
|
-
version: 5.101.
|
|
1147
|
+
version: 5.101.1
|
|
1145
1148
|
'@tanstack/vue-query':
|
|
1146
1149
|
specifier: ^5.100.10
|
|
1147
|
-
version: 5.101.
|
|
1150
|
+
version: 5.101.1(vue@3.5.38(typescript@5.9.3))
|
|
1148
1151
|
localforage:
|
|
1149
1152
|
specifier: ^1.10.0
|
|
1150
1153
|
version: 1.10.0
|
|
@@ -1165,8 +1168,8 @@ importers:
|
|
|
1165
1168
|
src/suite-vendor/a-zova/modules/a-openapi:
|
|
1166
1169
|
dependencies:
|
|
1167
1170
|
'@cabloy/json-schema-to-zod':
|
|
1168
|
-
specifier: ^2.6.
|
|
1169
|
-
version: 2.6.
|
|
1171
|
+
specifier: ^2.6.5
|
|
1172
|
+
version: 2.6.5
|
|
1170
1173
|
openapi3-ts:
|
|
1171
1174
|
specifier: ^4.5.0
|
|
1172
1175
|
version: 4.6.0
|
|
@@ -1341,11 +1344,11 @@ importers:
|
|
|
1341
1344
|
version: link:../../../../../packages-utils/zova-jsx
|
|
1342
1345
|
devDependencies:
|
|
1343
1346
|
'@cabloy/cli':
|
|
1344
|
-
specifier: ^3.1.
|
|
1345
|
-
version: 3.1.
|
|
1347
|
+
specifier: ^3.1.23
|
|
1348
|
+
version: 3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
1346
1349
|
'@types/luxon':
|
|
1347
1350
|
specifier: ^3.7.1
|
|
1348
|
-
version: 3.7.
|
|
1351
|
+
version: 3.7.2
|
|
1349
1352
|
clean-package:
|
|
1350
1353
|
specifier: ^2.2.0
|
|
1351
1354
|
version: 2.2.0
|
|
@@ -1589,6 +1592,9 @@ importers:
|
|
|
1589
1592
|
zova-module-basic-pageentry:
|
|
1590
1593
|
specifier: ^5.0.7
|
|
1591
1594
|
version: link:modules/basic-pageentry
|
|
1595
|
+
zova-module-basic-resource:
|
|
1596
|
+
specifier: ^5.0.0
|
|
1597
|
+
version: link:modules/basic-resource
|
|
1592
1598
|
zova-module-basic-select:
|
|
1593
1599
|
specifier: ^5.0.4
|
|
1594
1600
|
version: link:modules/basic-select
|
|
@@ -1714,6 +1720,15 @@ importers:
|
|
|
1714
1720
|
specifier: ^6.1.3
|
|
1715
1721
|
version: 6.1.3
|
|
1716
1722
|
|
|
1723
|
+
src/suite/cabloy-basic/modules/basic-resource:
|
|
1724
|
+
devDependencies:
|
|
1725
|
+
clean-package:
|
|
1726
|
+
specifier: ^2.2.0
|
|
1727
|
+
version: 2.2.0
|
|
1728
|
+
rimraf:
|
|
1729
|
+
specifier: ^6.1.3
|
|
1730
|
+
version: 6.1.3
|
|
1731
|
+
|
|
1717
1732
|
src/suite/cabloy-basic/modules/basic-select:
|
|
1718
1733
|
devDependencies:
|
|
1719
1734
|
clean-package:
|
|
@@ -1831,8 +1846,8 @@ packages:
|
|
|
1831
1846
|
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
1832
1847
|
engines: {node: '>=6.9.0'}
|
|
1833
1848
|
|
|
1834
|
-
'@babel/helper-string-parser@8.0.0
|
|
1835
|
-
resolution: {integrity: sha512-
|
|
1849
|
+
'@babel/helper-string-parser@8.0.0':
|
|
1850
|
+
resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==}
|
|
1836
1851
|
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1837
1852
|
|
|
1838
1853
|
'@babel/helper-validator-identifier@7.29.7':
|
|
@@ -1847,6 +1862,10 @@ packages:
|
|
|
1847
1862
|
resolution: {integrity: sha512-8AWCJ2VJJyDFlGBep5GpaaQ9AAaE/FjAcrqI7jyssYhtL7WGV0DOKpJsQqM037xDbpRLHXsY8TwU7zDma7coOw==}
|
|
1848
1863
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1849
1864
|
|
|
1865
|
+
'@babel/helper-validator-identifier@8.0.2':
|
|
1866
|
+
resolution: {integrity: sha512-9Fr9QeyCAyi1BR1jKZ6uYQ24EIhQUx5ReHfQU7drOE+TPOb+w11/dsqLkMOT2U29OdCT71XajrOT8xDc1C7orA==}
|
|
1867
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1868
|
+
|
|
1850
1869
|
'@babel/helper-validator-option@7.29.7':
|
|
1851
1870
|
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
|
|
1852
1871
|
engines: {node: '>=6.9.0'}
|
|
@@ -1860,6 +1879,11 @@ packages:
|
|
|
1860
1879
|
engines: {node: '>=6.0.0'}
|
|
1861
1880
|
hasBin: true
|
|
1862
1881
|
|
|
1882
|
+
'@babel/parser@8.0.0':
|
|
1883
|
+
resolution: {integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ==}
|
|
1884
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1885
|
+
hasBin: true
|
|
1886
|
+
|
|
1863
1887
|
'@babel/parser@8.0.0-rc.2':
|
|
1864
1888
|
resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==}
|
|
1865
1889
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -1922,6 +1946,10 @@ packages:
|
|
|
1922
1946
|
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
1923
1947
|
engines: {node: '>=6.9.0'}
|
|
1924
1948
|
|
|
1949
|
+
'@babel/types@8.0.0':
|
|
1950
|
+
resolution: {integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw==}
|
|
1951
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
1952
|
+
|
|
1925
1953
|
'@babel/types@8.0.0-rc.2':
|
|
1926
1954
|
resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==}
|
|
1927
1955
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -1930,11 +1958,11 @@ packages:
|
|
|
1930
1958
|
resolution: {integrity: sha512-mOm5ZrYmphGfqVWoH5YYMTITb3cDXsFgmvFlvkvWDMsR9X8RFnt7a0Wb6yNIdoFsiMO9WjYLq+U/FMtqIYAF8Q==}
|
|
1931
1959
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1932
1960
|
|
|
1933
|
-
'@bufbuild/protobuf@2.12.
|
|
1934
|
-
resolution: {integrity: sha512-
|
|
1961
|
+
'@bufbuild/protobuf@2.12.1':
|
|
1962
|
+
resolution: {integrity: sha512-BvAMfS6LrgZiryOAZ4pBYucu4wG/Ei/9o9DZ9akbREnMLbPJiom2i8b9C8IsKErQoiKqVhrerzt3kOT/RrzLHg==}
|
|
1935
1963
|
|
|
1936
|
-
'@cabloy/cli@3.1.
|
|
1937
|
-
resolution: {integrity: sha512-
|
|
1964
|
+
'@cabloy/cli@3.1.23':
|
|
1965
|
+
resolution: {integrity: sha512-pCjalyjMHFwhaHtrfxcdE2FoJJDgnIhhI0MZgkv/DBDQpRvUGG3TILGurSgL4mRDqpyb1QXHtHJ1F1D9oW8qlw==}
|
|
1938
1966
|
|
|
1939
1967
|
'@cabloy/compose@2.1.8':
|
|
1940
1968
|
resolution: {integrity: sha512-TdEr9BY54BYoIlTjkrOKkzK8yJWmP07OrRTh4punJMnWzM+oDExQ2EGCGAHXnEHjLWqdhyMGm/ejmxnVgBmraQ==}
|
|
@@ -1948,8 +1976,8 @@ packages:
|
|
|
1948
1976
|
'@cabloy/extend@3.2.8':
|
|
1949
1977
|
resolution: {integrity: sha512-BrXYUtlC1kFY33hNxL/hEaS7wW8TsOuu22k0VCEtzg2iw+USkb4BqONth5Uv2pJcIlDMeWx8A8aUIRF3WQ2ckQ==}
|
|
1950
1978
|
|
|
1951
|
-
'@cabloy/json-schema-to-zod@2.6.
|
|
1952
|
-
resolution: {integrity: sha512-
|
|
1979
|
+
'@cabloy/json-schema-to-zod@2.6.5':
|
|
1980
|
+
resolution: {integrity: sha512-y94YrwsrLw+zrISqqHstEuCDgcnfolO/rElOnSmY5I84rmnj3SW52H1pKhnsaozVAcaOEL6Tt3QWHXQKGCYRLA==}
|
|
1953
1981
|
hasBin: true
|
|
1954
1982
|
|
|
1955
1983
|
'@cabloy/json5@1.1.9':
|
|
@@ -2100,12 +2128,21 @@ packages:
|
|
|
2100
2128
|
'@emnapi/core@1.10.0':
|
|
2101
2129
|
resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
|
|
2102
2130
|
|
|
2131
|
+
'@emnapi/core@1.11.1':
|
|
2132
|
+
resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
|
|
2133
|
+
|
|
2103
2134
|
'@emnapi/runtime@1.10.0':
|
|
2104
2135
|
resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
|
|
2105
2136
|
|
|
2137
|
+
'@emnapi/runtime@1.11.1':
|
|
2138
|
+
resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
|
|
2139
|
+
|
|
2106
2140
|
'@emnapi/wasi-threads@1.2.1':
|
|
2107
2141
|
resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
|
|
2108
2142
|
|
|
2143
|
+
'@emnapi/wasi-threads@1.2.2':
|
|
2144
|
+
resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
|
|
2145
|
+
|
|
2109
2146
|
'@es-joy/jsdoccomment@0.84.0':
|
|
2110
2147
|
resolution: {integrity: sha512-0xew1CxOam0gV5OMjh2KjFQZsKL2bByX1+q4j3E73MpYIdyUxcZb/xQct9ccUb+ve5KGUYbCUxyPnYB7RbuP+w==}
|
|
2111
2148
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -3129,8 +3166,8 @@ packages:
|
|
|
3129
3166
|
'@cfworker/json-schema':
|
|
3130
3167
|
optional: true
|
|
3131
3168
|
|
|
3132
|
-
'@napi-rs/wasm-runtime@1.1.
|
|
3133
|
-
resolution: {integrity: sha512-
|
|
3169
|
+
'@napi-rs/wasm-runtime@1.1.6':
|
|
3170
|
+
resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
|
|
3134
3171
|
peerDependencies:
|
|
3135
3172
|
'@emnapi/core': ^1.7.1
|
|
3136
3173
|
'@emnapi/runtime': ^1.7.1
|
|
@@ -3147,8 +3184,8 @@ packages:
|
|
|
3147
3184
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
3148
3185
|
engines: {node: '>= 8'}
|
|
3149
3186
|
|
|
3150
|
-
'@npmcli/config@10.
|
|
3151
|
-
resolution: {integrity: sha512-
|
|
3187
|
+
'@npmcli/config@10.11.0':
|
|
3188
|
+
resolution: {integrity: sha512-YeRrOREeF9rYlwQfqbjJc8bjplzdzz2dapOVfV3gl3kSMFn0wEI9+QZQADmAvdd+MKTeOr/ISgNmdxJj6layAA==}
|
|
3152
3189
|
engines: {node: ^20.17.0 || >=22.9.0}
|
|
3153
3190
|
|
|
3154
3191
|
'@npmcli/git@7.0.2':
|
|
@@ -3178,11 +3215,8 @@ packages:
|
|
|
3178
3215
|
'@oxc-project/types@0.127.0':
|
|
3179
3216
|
resolution: {integrity: sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==}
|
|
3180
3217
|
|
|
3181
|
-
'@oxc-project/types@0.
|
|
3182
|
-
resolution: {integrity: sha512-
|
|
3183
|
-
|
|
3184
|
-
'@oxc-project/types@0.134.0':
|
|
3185
|
-
resolution: {integrity: sha512-T0xuRRKrQFmocH8y+jGfpmSkGcheaJExY9lEihmR1Gm2aH+75B8CzgU2rABRQSzzDxLjZ15Sc0bRVLj5lVeNXQ==}
|
|
3218
|
+
'@oxc-project/types@0.137.0':
|
|
3219
|
+
resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==}
|
|
3186
3220
|
|
|
3187
3221
|
'@oxfmt/binding-android-arm-eabi@0.45.0':
|
|
3188
3222
|
resolution: {integrity: sha512-A/UMxFob1fefCuMeGxQBulGfFE38g2Gm23ynr3u6b+b7fY7/ajGbNsa3ikMIkGMLJW/TRoQaMoP1kME7S+815w==}
|
|
@@ -3306,124 +3340,124 @@ packages:
|
|
|
3306
3340
|
cpu: [x64]
|
|
3307
3341
|
os: [win32]
|
|
3308
3342
|
|
|
3309
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
3310
|
-
resolution: {integrity: sha512-
|
|
3343
|
+
'@oxlint/binding-android-arm-eabi@1.71.0':
|
|
3344
|
+
resolution: {integrity: sha512-ImGmd1njEg4FEJH03jhRnveEegtO3czCtfptvaHivKAZQIYATbVFBrrzbaYMYv0oJioTnxZAZVSyV+oL7W8S2g==}
|
|
3311
3345
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3312
3346
|
cpu: [arm]
|
|
3313
3347
|
os: [android]
|
|
3314
3348
|
|
|
3315
|
-
'@oxlint/binding-android-arm64@1.
|
|
3316
|
-
resolution: {integrity: sha512-
|
|
3349
|
+
'@oxlint/binding-android-arm64@1.71.0':
|
|
3350
|
+
resolution: {integrity: sha512-4A5BEexBrwY1YFF8Kiq/lp/wQPRG79G3BWIE1FuWaM5MvmpYSd+7ZySVcKkHdwo0UDzdQGddp6pD9mpctMqLnw==}
|
|
3317
3351
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3318
3352
|
cpu: [arm64]
|
|
3319
3353
|
os: [android]
|
|
3320
3354
|
|
|
3321
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
3322
|
-
resolution: {integrity: sha512-
|
|
3355
|
+
'@oxlint/binding-darwin-arm64@1.71.0':
|
|
3356
|
+
resolution: {integrity: sha512-9wJA9GJulLwS2usU3CEisI/ESDO1n1z9eyTCvApMDrAkbJ1ve0mORgTMjcWWsKxkzkeZ2N/Gpra5IQE7x8tYgQ==}
|
|
3323
3357
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3324
3358
|
cpu: [arm64]
|
|
3325
3359
|
os: [darwin]
|
|
3326
3360
|
|
|
3327
|
-
'@oxlint/binding-darwin-x64@1.
|
|
3328
|
-
resolution: {integrity: sha512-
|
|
3361
|
+
'@oxlint/binding-darwin-x64@1.71.0':
|
|
3362
|
+
resolution: {integrity: sha512-PlLCjS06V0PeJMAJwzjrExw1sYNW9Gch3JtNlcwwZDXGlTYDuwHNN89zYH8LTXFfgkVtsYvs2nv0FqrzyuFDzg==}
|
|
3329
3363
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3330
3364
|
cpu: [x64]
|
|
3331
3365
|
os: [darwin]
|
|
3332
3366
|
|
|
3333
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
3334
|
-
resolution: {integrity: sha512-
|
|
3367
|
+
'@oxlint/binding-freebsd-x64@1.71.0':
|
|
3368
|
+
resolution: {integrity: sha512-Lhil7bWre0ncxbUoDoxfS0JzpTz17BRQKW7iwoAUY8GJ66+WwJEfYPCFJ1P0WgVZR5/O/b3Q2pENlHOjeXLOGQ==}
|
|
3335
3369
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3336
3370
|
cpu: [x64]
|
|
3337
3371
|
os: [freebsd]
|
|
3338
3372
|
|
|
3339
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
3340
|
-
resolution: {integrity: sha512-
|
|
3373
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.71.0':
|
|
3374
|
+
resolution: {integrity: sha512-Oo9/L58PYD3RC0x05d2upAPLllHytTjHQGsnC06P6Ynn7jKkp5mdImQxXdJ3+FnBaKspNpGogzgVsi6g872LiA==}
|
|
3341
3375
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3342
3376
|
cpu: [arm]
|
|
3343
3377
|
os: [linux]
|
|
3344
3378
|
|
|
3345
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
3346
|
-
resolution: {integrity: sha512-
|
|
3379
|
+
'@oxlint/binding-linux-arm-musleabihf@1.71.0':
|
|
3380
|
+
resolution: {integrity: sha512-mSHfyfgJrEbyIR29ejaeS50BdPk+GoNPlC1dckpDiUZbJAIel68sjSMdOt4WY0/gva+ECC7FNITQkxMJU+vSBw==}
|
|
3347
3381
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3348
3382
|
cpu: [arm]
|
|
3349
3383
|
os: [linux]
|
|
3350
3384
|
|
|
3351
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
3352
|
-
resolution: {integrity: sha512-
|
|
3385
|
+
'@oxlint/binding-linux-arm64-gnu@1.71.0':
|
|
3386
|
+
resolution: {integrity: sha512-n9yY4M2tiy3aij4AqtlnspzpfdpeT5JQfK2/w2d8oyp5W0FRwOb1dIeX99nORNcxGr08iD9bH8N5XFz3I2iy8w==}
|
|
3353
3387
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3354
3388
|
cpu: [arm64]
|
|
3355
3389
|
os: [linux]
|
|
3356
3390
|
libc: [glibc]
|
|
3357
3391
|
|
|
3358
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
3359
|
-
resolution: {integrity: sha512-
|
|
3392
|
+
'@oxlint/binding-linux-arm64-musl@1.71.0':
|
|
3393
|
+
resolution: {integrity: sha512-fJZrs5sDZtTaPIOiemRQQmo82Ezy+vOGXemPc4Ok7iVVsYsFa7SlW6Z5XN819VfsqBHRm3NJ3rTdnR8+bJYJdQ==}
|
|
3360
3394
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3361
3395
|
cpu: [arm64]
|
|
3362
3396
|
os: [linux]
|
|
3363
3397
|
libc: [musl]
|
|
3364
3398
|
|
|
3365
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
3366
|
-
resolution: {integrity: sha512-
|
|
3399
|
+
'@oxlint/binding-linux-ppc64-gnu@1.71.0':
|
|
3400
|
+
resolution: {integrity: sha512-cwl7VKGERIy9p+G+AvZdfy/06q0aHXaTt/mMRReC751iuNYJgqKjB7NydXSS30nBT9vtr2tunciOtrR4fD6FUA==}
|
|
3367
3401
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3368
3402
|
cpu: [ppc64]
|
|
3369
3403
|
os: [linux]
|
|
3370
3404
|
libc: [glibc]
|
|
3371
3405
|
|
|
3372
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
3373
|
-
resolution: {integrity: sha512-
|
|
3406
|
+
'@oxlint/binding-linux-riscv64-gnu@1.71.0':
|
|
3407
|
+
resolution: {integrity: sha512-eZ8ieVXvzGi8jr7+ybQGPK2STw3mldfxZlgA2738iflfB/rzA69sE6m5rDRpQaxC7dpm745Enlh1Tod0QAk9Gg==}
|
|
3374
3408
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3375
3409
|
cpu: [riscv64]
|
|
3376
3410
|
os: [linux]
|
|
3377
3411
|
libc: [glibc]
|
|
3378
3412
|
|
|
3379
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
3380
|
-
resolution: {integrity: sha512-
|
|
3413
|
+
'@oxlint/binding-linux-riscv64-musl@1.71.0':
|
|
3414
|
+
resolution: {integrity: sha512-puMDbQYe6+NXwfMusojoA7CXGn2b3utukmd23PQqc1E3XhVCwyZ+FueSMzDYeNgDV2dUfIVXAAKZBcFDeCL6sA==}
|
|
3381
3415
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3382
3416
|
cpu: [riscv64]
|
|
3383
3417
|
os: [linux]
|
|
3384
3418
|
libc: [musl]
|
|
3385
3419
|
|
|
3386
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
3387
|
-
resolution: {integrity: sha512-
|
|
3420
|
+
'@oxlint/binding-linux-s390x-gnu@1.71.0':
|
|
3421
|
+
resolution: {integrity: sha512-4NJLxBs1ujISCt3L/1FcywLs73PWtJuw+piD6feK2V6h6OS6P7xu9/sWt1DTRLibe6QCzmfZzmM/2HPORoV/Lg==}
|
|
3388
3422
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3389
3423
|
cpu: [s390x]
|
|
3390
3424
|
os: [linux]
|
|
3391
3425
|
libc: [glibc]
|
|
3392
3426
|
|
|
3393
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
3394
|
-
resolution: {integrity: sha512-
|
|
3427
|
+
'@oxlint/binding-linux-x64-gnu@1.71.0':
|
|
3428
|
+
resolution: {integrity: sha512-cFDaiR8L3430qp88tfZnvFlt3KotFhR/DlbIL0nHOMMYiG/9Wy4l+6f7t8G8pTa9bd8Lt8+M0y/qjRQ/xcB74g==}
|
|
3395
3429
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3396
3430
|
cpu: [x64]
|
|
3397
3431
|
os: [linux]
|
|
3398
3432
|
libc: [glibc]
|
|
3399
3433
|
|
|
3400
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
3401
|
-
resolution: {integrity: sha512-
|
|
3434
|
+
'@oxlint/binding-linux-x64-musl@1.71.0':
|
|
3435
|
+
resolution: {integrity: sha512-orfixdt76KlpNly9z0PkWBBNfwjKz+JFVLP/7wnVchlKNU9Dpt9InU/ZggeSej6fC7qwHmHNOGlhLnQXcYoGuA==}
|
|
3402
3436
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3403
3437
|
cpu: [x64]
|
|
3404
3438
|
os: [linux]
|
|
3405
3439
|
libc: [musl]
|
|
3406
3440
|
|
|
3407
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
3408
|
-
resolution: {integrity: sha512-
|
|
3441
|
+
'@oxlint/binding-openharmony-arm64@1.71.0':
|
|
3442
|
+
resolution: {integrity: sha512-9emQu2lAp6yhPB3XuI+++vR+l/o6JR1X+EpxwcumPdQXBWXEPAsquPGL7l158EqU8SebQMXTUa/S5zN98juyHw==}
|
|
3409
3443
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3410
3444
|
cpu: [arm64]
|
|
3411
3445
|
os: [openharmony]
|
|
3412
3446
|
|
|
3413
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
3414
|
-
resolution: {integrity: sha512-
|
|
3447
|
+
'@oxlint/binding-win32-arm64-msvc@1.71.0':
|
|
3448
|
+
resolution: {integrity: sha512-bd5kI8spYwTm3BILDtGhi73zoup5dw8MlPQNT8YB3BD5UIsjNe3K9/4ctrzQMX4SZMoK5HgzVLkLJzacEXB7fA==}
|
|
3415
3449
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3416
3450
|
cpu: [arm64]
|
|
3417
3451
|
os: [win32]
|
|
3418
3452
|
|
|
3419
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
3420
|
-
resolution: {integrity: sha512-
|
|
3453
|
+
'@oxlint/binding-win32-ia32-msvc@1.71.0':
|
|
3454
|
+
resolution: {integrity: sha512-W4HvOHGzVLHcrmFu+bMrJlho+/yrlX5ZNdJZqGe8MEldkQG+RHYhxxad9P4jvWAYFmIqUA5i9DQ8QsJqSU9GIw==}
|
|
3421
3455
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3422
3456
|
cpu: [ia32]
|
|
3423
3457
|
os: [win32]
|
|
3424
3458
|
|
|
3425
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
3426
|
-
resolution: {integrity: sha512-
|
|
3459
|
+
'@oxlint/binding-win32-x64-msvc@1.71.0':
|
|
3460
|
+
resolution: {integrity: sha512-D2kyEIPHk/G/wiZLnwTVC/sVst+T/lKldVOjAFpgTIBUAOlry72e5OiapDbDBF4LfJLkN5ypJb/8Eu6yJzkveQ==}
|
|
3427
3461
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3428
3462
|
cpu: [x64]
|
|
3429
3463
|
os: [win32]
|
|
@@ -3551,14 +3585,8 @@ packages:
|
|
|
3551
3585
|
cpu: [arm64]
|
|
3552
3586
|
os: [android]
|
|
3553
3587
|
|
|
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==}
|
|
3588
|
+
'@rolldown/binding-android-arm64@1.1.3':
|
|
3589
|
+
resolution: {integrity: sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==}
|
|
3562
3590
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3563
3591
|
cpu: [arm64]
|
|
3564
3592
|
os: [android]
|
|
@@ -3569,14 +3597,8 @@ packages:
|
|
|
3569
3597
|
cpu: [arm64]
|
|
3570
3598
|
os: [darwin]
|
|
3571
3599
|
|
|
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==}
|
|
3600
|
+
'@rolldown/binding-darwin-arm64@1.1.3':
|
|
3601
|
+
resolution: {integrity: sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==}
|
|
3580
3602
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3581
3603
|
cpu: [arm64]
|
|
3582
3604
|
os: [darwin]
|
|
@@ -3587,14 +3609,8 @@ packages:
|
|
|
3587
3609
|
cpu: [x64]
|
|
3588
3610
|
os: [darwin]
|
|
3589
3611
|
|
|
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==}
|
|
3612
|
+
'@rolldown/binding-darwin-x64@1.1.3':
|
|
3613
|
+
resolution: {integrity: sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==}
|
|
3598
3614
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3599
3615
|
cpu: [x64]
|
|
3600
3616
|
os: [darwin]
|
|
@@ -3605,14 +3621,8 @@ packages:
|
|
|
3605
3621
|
cpu: [x64]
|
|
3606
3622
|
os: [freebsd]
|
|
3607
3623
|
|
|
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==}
|
|
3624
|
+
'@rolldown/binding-freebsd-x64@1.1.3':
|
|
3625
|
+
resolution: {integrity: sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==}
|
|
3616
3626
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3617
3627
|
cpu: [x64]
|
|
3618
3628
|
os: [freebsd]
|
|
@@ -3623,14 +3633,8 @@ packages:
|
|
|
3623
3633
|
cpu: [arm]
|
|
3624
3634
|
os: [linux]
|
|
3625
3635
|
|
|
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==}
|
|
3636
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.1.3':
|
|
3637
|
+
resolution: {integrity: sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==}
|
|
3634
3638
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3635
3639
|
cpu: [arm]
|
|
3636
3640
|
os: [linux]
|
|
@@ -3642,15 +3646,8 @@ packages:
|
|
|
3642
3646
|
os: [linux]
|
|
3643
3647
|
libc: [glibc]
|
|
3644
3648
|
|
|
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==}
|
|
3649
|
+
'@rolldown/binding-linux-arm64-gnu@1.1.3':
|
|
3650
|
+
resolution: {integrity: sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==}
|
|
3654
3651
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3655
3652
|
cpu: [arm64]
|
|
3656
3653
|
os: [linux]
|
|
@@ -3663,15 +3660,8 @@ packages:
|
|
|
3663
3660
|
os: [linux]
|
|
3664
3661
|
libc: [musl]
|
|
3665
3662
|
|
|
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==}
|
|
3663
|
+
'@rolldown/binding-linux-arm64-musl@1.1.3':
|
|
3664
|
+
resolution: {integrity: sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==}
|
|
3675
3665
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3676
3666
|
cpu: [arm64]
|
|
3677
3667
|
os: [linux]
|
|
@@ -3684,15 +3674,8 @@ packages:
|
|
|
3684
3674
|
os: [linux]
|
|
3685
3675
|
libc: [glibc]
|
|
3686
3676
|
|
|
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==}
|
|
3677
|
+
'@rolldown/binding-linux-ppc64-gnu@1.1.3':
|
|
3678
|
+
resolution: {integrity: sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==}
|
|
3696
3679
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3697
3680
|
cpu: [ppc64]
|
|
3698
3681
|
os: [linux]
|
|
@@ -3705,15 +3688,8 @@ packages:
|
|
|
3705
3688
|
os: [linux]
|
|
3706
3689
|
libc: [glibc]
|
|
3707
3690
|
|
|
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==}
|
|
3691
|
+
'@rolldown/binding-linux-s390x-gnu@1.1.3':
|
|
3692
|
+
resolution: {integrity: sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==}
|
|
3717
3693
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3718
3694
|
cpu: [s390x]
|
|
3719
3695
|
os: [linux]
|
|
@@ -3726,15 +3702,8 @@ packages:
|
|
|
3726
3702
|
os: [linux]
|
|
3727
3703
|
libc: [glibc]
|
|
3728
3704
|
|
|
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==}
|
|
3705
|
+
'@rolldown/binding-linux-x64-gnu@1.1.3':
|
|
3706
|
+
resolution: {integrity: sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==}
|
|
3738
3707
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3739
3708
|
cpu: [x64]
|
|
3740
3709
|
os: [linux]
|
|
@@ -3747,15 +3716,8 @@ packages:
|
|
|
3747
3716
|
os: [linux]
|
|
3748
3717
|
libc: [musl]
|
|
3749
3718
|
|
|
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==}
|
|
3719
|
+
'@rolldown/binding-linux-x64-musl@1.1.3':
|
|
3720
|
+
resolution: {integrity: sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==}
|
|
3759
3721
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3760
3722
|
cpu: [x64]
|
|
3761
3723
|
os: [linux]
|
|
@@ -3767,14 +3729,8 @@ packages:
|
|
|
3767
3729
|
cpu: [arm64]
|
|
3768
3730
|
os: [openharmony]
|
|
3769
3731
|
|
|
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==}
|
|
3732
|
+
'@rolldown/binding-openharmony-arm64@1.1.3':
|
|
3733
|
+
resolution: {integrity: sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==}
|
|
3778
3734
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3779
3735
|
cpu: [arm64]
|
|
3780
3736
|
os: [openharmony]
|
|
@@ -3784,13 +3740,8 @@ packages:
|
|
|
3784
3740
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3785
3741
|
cpu: [wasm32]
|
|
3786
3742
|
|
|
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==}
|
|
3743
|
+
'@rolldown/binding-wasm32-wasi@1.1.3':
|
|
3744
|
+
resolution: {integrity: sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==}
|
|
3794
3745
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3795
3746
|
cpu: [wasm32]
|
|
3796
3747
|
|
|
@@ -3800,14 +3751,8 @@ packages:
|
|
|
3800
3751
|
cpu: [arm64]
|
|
3801
3752
|
os: [win32]
|
|
3802
3753
|
|
|
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==}
|
|
3754
|
+
'@rolldown/binding-win32-arm64-msvc@1.1.3':
|
|
3755
|
+
resolution: {integrity: sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==}
|
|
3811
3756
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3812
3757
|
cpu: [arm64]
|
|
3813
3758
|
os: [win32]
|
|
@@ -3818,14 +3763,8 @@ packages:
|
|
|
3818
3763
|
cpu: [x64]
|
|
3819
3764
|
os: [win32]
|
|
3820
3765
|
|
|
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==}
|
|
3766
|
+
'@rolldown/binding-win32-x64-msvc@1.1.3':
|
|
3767
|
+
resolution: {integrity: sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==}
|
|
3829
3768
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3830
3769
|
cpu: [x64]
|
|
3831
3770
|
os: [win32]
|
|
@@ -3947,8 +3886,8 @@ packages:
|
|
|
3947
3886
|
peerDependencies:
|
|
3948
3887
|
tailwindcss: '>=3.0.0 || >=4.0.0 || insiders'
|
|
3949
3888
|
|
|
3950
|
-
'@tanstack/devtools-event-client@0.4.
|
|
3951
|
-
resolution: {integrity: sha512-
|
|
3889
|
+
'@tanstack/devtools-event-client@0.4.4':
|
|
3890
|
+
resolution: {integrity: sha512-6T5Yop/793YI+H+5J8Hsyj4kCih9sl4t3ElLgKioW5hk3ocn+ZdSJ94tT7vL7uabxSugWYBZlOTMPzEw2puvQw==}
|
|
3952
3891
|
engines: {node: '>=18'}
|
|
3953
3892
|
hasBin: true
|
|
3954
3893
|
|
|
@@ -3963,11 +3902,11 @@ packages:
|
|
|
3963
3902
|
resolution: {integrity: sha512-y/xtNPNt/YeyoVxE/JCx+T7yjEzpezmbb+toK8DDD1P4m7Kzs5YR956+7OKexG3f8aXgC3rLZl7b1V+yNUSy5w==}
|
|
3964
3903
|
engines: {node: '>=18'}
|
|
3965
3904
|
|
|
3966
|
-
'@tanstack/query-core@5.101.
|
|
3967
|
-
resolution: {integrity: sha512-
|
|
3905
|
+
'@tanstack/query-core@5.101.1':
|
|
3906
|
+
resolution: {integrity: sha512-Y6Y92dkXtNqx67m2pMSxUsA3zOCwv862JexZRP8/EPwvKXMPu9m8rv43spiXWzOUIggQ3SQApttALStzhA8B4g==}
|
|
3968
3907
|
|
|
3969
|
-
'@tanstack/query-persist-client-core@5.101.
|
|
3970
|
-
resolution: {integrity: sha512-
|
|
3908
|
+
'@tanstack/query-persist-client-core@5.101.1':
|
|
3909
|
+
resolution: {integrity: sha512-rR5Er6jmdI3Oo8o6Wc0ceM6glDU4umgePu2IxM3Gy2UvPqcQONduxxxSzU1+F17mpS09XHqHKmj0Irhfb2cGYg==}
|
|
3971
3910
|
|
|
3972
3911
|
'@tanstack/store@0.11.0':
|
|
3973
3912
|
resolution: {integrity: sha512-WlzzCt3xi0G6pCAJu1U+2jiECwabETDpQDi3hfkFZvJii9AuZqEKbOiVarX1/bWhTNjU486yQtJCCasi/0q+Cw==}
|
|
@@ -3981,8 +3920,8 @@ packages:
|
|
|
3981
3920
|
peerDependencies:
|
|
3982
3921
|
vue: ^3.4.0
|
|
3983
3922
|
|
|
3984
|
-
'@tanstack/vue-query@5.101.
|
|
3985
|
-
resolution: {integrity: sha512-
|
|
3923
|
+
'@tanstack/vue-query@5.101.1':
|
|
3924
|
+
resolution: {integrity: sha512-w36v/HlCF2xRpdDCz7cygk99AwBWhZaT5No1dJOwqIZ1AR8q7tiovRyPFID/49gkjXG7KgXs/nHfRg+eCydH4Q==}
|
|
3986
3925
|
peerDependencies:
|
|
3987
3926
|
'@vue/composition-api': ^1.1.2
|
|
3988
3927
|
vue: ^2.6.0 || ^3.3.0
|
|
@@ -4059,8 +3998,8 @@ packages:
|
|
|
4059
3998
|
'@textlint/utils@15.7.1':
|
|
4060
3999
|
resolution: {integrity: sha512-+q5Z5fsNk/ixDY5D70ZCQungr7ppzBAAhmi207qDBzSBFeA5MM2ASGwMjPc5aMJ/3DvonI/01B3UIgbpVgIXVA==}
|
|
4061
4000
|
|
|
4062
|
-
'@tybys/wasm-util@0.10.
|
|
4063
|
-
resolution: {integrity: sha512-
|
|
4001
|
+
'@tybys/wasm-util@0.10.3':
|
|
4002
|
+
resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
|
|
4064
4003
|
|
|
4065
4004
|
'@types/babel__core@7.20.5':
|
|
4066
4005
|
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
@@ -4134,8 +4073,8 @@ packages:
|
|
|
4134
4073
|
'@types/lodash@4.17.24':
|
|
4135
4074
|
resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
|
|
4136
4075
|
|
|
4137
|
-
'@types/luxon@3.7.
|
|
4138
|
-
resolution: {integrity: sha512-
|
|
4076
|
+
'@types/luxon@3.7.2':
|
|
4077
|
+
resolution: {integrity: sha512-gW+Oib+vUtGJBtNC8V9Reww0oIpusw+4m81uncg9REGZAJfqOQHfo/nkabnc7w0QReXyPqjrbWMJk6NuAkiX3Q==}
|
|
4139
4078
|
|
|
4140
4079
|
'@types/mdast@3.0.15':
|
|
4141
4080
|
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
|
|
@@ -4149,8 +4088,8 @@ packages:
|
|
|
4149
4088
|
'@types/node-forge@1.3.14':
|
|
4150
4089
|
resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
|
|
4151
4090
|
|
|
4152
|
-
'@types/node@22.
|
|
4153
|
-
resolution: {integrity: sha512-
|
|
4091
|
+
'@types/node@22.20.0':
|
|
4092
|
+
resolution: {integrity: sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==}
|
|
4154
4093
|
|
|
4155
4094
|
'@types/normalize-package-data@2.4.4':
|
|
4156
4095
|
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
|
|
@@ -4173,121 +4112,121 @@ packages:
|
|
|
4173
4112
|
'@types/unist@3.0.3':
|
|
4174
4113
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
4175
4114
|
|
|
4176
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
4177
|
-
resolution: {integrity: sha512-
|
|
4115
|
+
'@typescript-eslint/eslint-plugin@8.62.0':
|
|
4116
|
+
resolution: {integrity: sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==}
|
|
4178
4117
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4179
4118
|
peerDependencies:
|
|
4180
|
-
'@typescript-eslint/parser': ^8.
|
|
4119
|
+
'@typescript-eslint/parser': ^8.62.0
|
|
4181
4120
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4182
4121
|
typescript: '>=4.8.4 <6.1.0'
|
|
4183
4122
|
|
|
4184
|
-
'@typescript-eslint/parser@8.
|
|
4185
|
-
resolution: {integrity: sha512-
|
|
4123
|
+
'@typescript-eslint/parser@8.62.0':
|
|
4124
|
+
resolution: {integrity: sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==}
|
|
4186
4125
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4187
4126
|
peerDependencies:
|
|
4188
4127
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4189
4128
|
typescript: '>=4.8.4 <6.1.0'
|
|
4190
4129
|
|
|
4191
|
-
'@typescript-eslint/project-service@8.
|
|
4192
|
-
resolution: {integrity: sha512-
|
|
4130
|
+
'@typescript-eslint/project-service@8.62.0':
|
|
4131
|
+
resolution: {integrity: sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==}
|
|
4193
4132
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4194
4133
|
peerDependencies:
|
|
4195
4134
|
typescript: '>=4.8.4 <6.1.0'
|
|
4196
4135
|
|
|
4197
|
-
'@typescript-eslint/rule-tester@8.
|
|
4198
|
-
resolution: {integrity: sha512-
|
|
4136
|
+
'@typescript-eslint/rule-tester@8.62.0':
|
|
4137
|
+
resolution: {integrity: sha512-WfzCnmTeOM3AifMf5rXPbFWHGWEru9rZKy4U6CSgpmxfOM6sTdKwjX7gTQEfXwsQp/MjRuEv3XOTBdQzxTCWMw==}
|
|
4199
4138
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4200
4139
|
peerDependencies:
|
|
4201
4140
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4202
4141
|
typescript: '>=4.8.4 <6.1.0'
|
|
4203
4142
|
|
|
4204
|
-
'@typescript-eslint/scope-manager@8.
|
|
4205
|
-
resolution: {integrity: sha512-
|
|
4143
|
+
'@typescript-eslint/scope-manager@8.62.0':
|
|
4144
|
+
resolution: {integrity: sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==}
|
|
4206
4145
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4207
4146
|
|
|
4208
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
4209
|
-
resolution: {integrity: sha512-
|
|
4147
|
+
'@typescript-eslint/tsconfig-utils@8.62.0':
|
|
4148
|
+
resolution: {integrity: sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==}
|
|
4210
4149
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4211
4150
|
peerDependencies:
|
|
4212
4151
|
typescript: '>=4.8.4 <6.1.0'
|
|
4213
4152
|
|
|
4214
|
-
'@typescript-eslint/type-utils@8.
|
|
4215
|
-
resolution: {integrity: sha512
|
|
4153
|
+
'@typescript-eslint/type-utils@8.62.0':
|
|
4154
|
+
resolution: {integrity: sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==}
|
|
4216
4155
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4217
4156
|
peerDependencies:
|
|
4218
4157
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4219
4158
|
typescript: '>=4.8.4 <6.1.0'
|
|
4220
4159
|
|
|
4221
|
-
'@typescript-eslint/types@8.
|
|
4222
|
-
resolution: {integrity: sha512-
|
|
4160
|
+
'@typescript-eslint/types@8.62.0':
|
|
4161
|
+
resolution: {integrity: sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==}
|
|
4223
4162
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4224
4163
|
|
|
4225
|
-
'@typescript-eslint/typescript-estree@8.
|
|
4226
|
-
resolution: {integrity: sha512
|
|
4164
|
+
'@typescript-eslint/typescript-estree@8.62.0':
|
|
4165
|
+
resolution: {integrity: sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==}
|
|
4227
4166
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4228
4167
|
peerDependencies:
|
|
4229
4168
|
typescript: '>=4.8.4 <6.1.0'
|
|
4230
4169
|
|
|
4231
|
-
'@typescript-eslint/utils@8.
|
|
4232
|
-
resolution: {integrity: sha512-
|
|
4170
|
+
'@typescript-eslint/utils@8.62.0':
|
|
4171
|
+
resolution: {integrity: sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==}
|
|
4233
4172
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4234
4173
|
peerDependencies:
|
|
4235
4174
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4236
4175
|
typescript: '>=4.8.4 <6.1.0'
|
|
4237
4176
|
|
|
4238
|
-
'@typescript-eslint/visitor-keys@8.
|
|
4239
|
-
resolution: {integrity: sha512-
|
|
4177
|
+
'@typescript-eslint/visitor-keys@8.62.0':
|
|
4178
|
+
resolution: {integrity: sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==}
|
|
4240
4179
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4241
4180
|
|
|
4242
|
-
'@typescript/native-preview-darwin-arm64@7.0.0-dev.
|
|
4243
|
-
resolution: {integrity: sha512-
|
|
4181
|
+
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
4182
|
+
resolution: {integrity: sha512-g8CqDkYCHTCYdhBHXs5cMraBurOS+KrcMFxE0SsaKZoI6Tnp+le1aWvxUBbzNKJYyThHJqb/1mLopzEJxJCuKA==}
|
|
4244
4183
|
engines: {node: '>=16.20.0'}
|
|
4245
4184
|
cpu: [arm64]
|
|
4246
4185
|
os: [darwin]
|
|
4247
4186
|
|
|
4248
|
-
'@typescript/native-preview-darwin-x64@7.0.0-dev.
|
|
4249
|
-
resolution: {integrity: sha512-
|
|
4187
|
+
'@typescript/native-preview-darwin-x64@7.0.0-dev.20260624.1':
|
|
4188
|
+
resolution: {integrity: sha512-P00JVvSV90eioYDuINAKmOSA8yhFTWLq6RvS5lrCfUuDlcgr2kSOgZAfFHIksHBVz6ZXpAXpa0dHPmc5SJ3Ymw==}
|
|
4250
4189
|
engines: {node: '>=16.20.0'}
|
|
4251
4190
|
cpu: [x64]
|
|
4252
4191
|
os: [darwin]
|
|
4253
4192
|
|
|
4254
|
-
'@typescript/native-preview-linux-arm64@7.0.0-dev.
|
|
4255
|
-
resolution: {integrity: sha512-
|
|
4193
|
+
'@typescript/native-preview-linux-arm64@7.0.0-dev.20260624.1':
|
|
4194
|
+
resolution: {integrity: sha512-cppM2yTZ/Gd1hOXy8NEJcUBxJ0O0zl9CU3OU1ZWZ/OHWWX/ukEzCCr94SUwJhjIWOylBCpIYkrvYoTwxNa94XQ==}
|
|
4256
4195
|
engines: {node: '>=16.20.0'}
|
|
4257
4196
|
cpu: [arm64]
|
|
4258
4197
|
os: [linux]
|
|
4259
4198
|
|
|
4260
|
-
'@typescript/native-preview-linux-arm@7.0.0-dev.
|
|
4261
|
-
resolution: {integrity: sha512-
|
|
4199
|
+
'@typescript/native-preview-linux-arm@7.0.0-dev.20260624.1':
|
|
4200
|
+
resolution: {integrity: sha512-eWHELvfQMkVRjafMd+3ATgM9p9yAergJaM4AOY8AekCNWnHFwUrp/ohh+ryyMUIqque5jjb/kuTiOiGj728I2Q==}
|
|
4262
4201
|
engines: {node: '>=16.20.0'}
|
|
4263
4202
|
cpu: [arm]
|
|
4264
4203
|
os: [linux]
|
|
4265
4204
|
|
|
4266
|
-
'@typescript/native-preview-linux-x64@7.0.0-dev.
|
|
4267
|
-
resolution: {integrity: sha512-
|
|
4205
|
+
'@typescript/native-preview-linux-x64@7.0.0-dev.20260624.1':
|
|
4206
|
+
resolution: {integrity: sha512-FaB8rS+rKYz4nDrEsHsF3b4cn7eCKCYroMJReA375OuQ6PHcmCNQ6QlVetA0dfFBxTTgejmoKyfw9xgAA5P4Yw==}
|
|
4268
4207
|
engines: {node: '>=16.20.0'}
|
|
4269
4208
|
cpu: [x64]
|
|
4270
4209
|
os: [linux]
|
|
4271
4210
|
|
|
4272
|
-
'@typescript/native-preview-win32-arm64@7.0.0-dev.
|
|
4273
|
-
resolution: {integrity: sha512-
|
|
4211
|
+
'@typescript/native-preview-win32-arm64@7.0.0-dev.20260624.1':
|
|
4212
|
+
resolution: {integrity: sha512-BgkqbCmSHDb5UxqWaFlFFJ/DHNT3lEUO4W8627ap6+QthJZuXk2imiHAX3PgYXC6en9fLLyR6jjcseAa4CCshg==}
|
|
4274
4213
|
engines: {node: '>=16.20.0'}
|
|
4275
4214
|
cpu: [arm64]
|
|
4276
4215
|
os: [win32]
|
|
4277
4216
|
|
|
4278
|
-
'@typescript/native-preview-win32-x64@7.0.0-dev.
|
|
4279
|
-
resolution: {integrity: sha512-
|
|
4217
|
+
'@typescript/native-preview-win32-x64@7.0.0-dev.20260624.1':
|
|
4218
|
+
resolution: {integrity: sha512-WaZ+ue63NgB2j/lqjirfevh/TqcsCxSqnKhGGiRnlxHyYIBcoq+x7KngyEnyGIaywJE1PcFeXA+2EMSIPlSEiQ==}
|
|
4280
4219
|
engines: {node: '>=16.20.0'}
|
|
4281
4220
|
cpu: [x64]
|
|
4282
4221
|
os: [win32]
|
|
4283
4222
|
|
|
4284
|
-
'@typescript/native-preview@7.0.0-dev.
|
|
4285
|
-
resolution: {integrity: sha512-
|
|
4223
|
+
'@typescript/native-preview@7.0.0-dev.20260624.1':
|
|
4224
|
+
resolution: {integrity: sha512-ogwfNo1xuAutOF8RbTCo3Ut0q/65u2ucOeHizi6O14q+3vnelNS+u8qVC2QWXubMcwtuN5E9cbfPslvGC4kdwA==}
|
|
4286
4225
|
engines: {node: '>=16.20.0'}
|
|
4287
4226
|
hasBin: true
|
|
4288
4227
|
|
|
4289
|
-
'@vitejs/plugin-vue-jsx@5.1.
|
|
4290
|
-
resolution: {integrity: sha512-
|
|
4228
|
+
'@vitejs/plugin-vue-jsx@5.1.6':
|
|
4229
|
+
resolution: {integrity: sha512-YXvi4as2clxt6DFw5+a0tTA97ntiQXm/raR8ofNj3aNwwdlVGTiG2gp7EvfZW17P50acL/9bP0ccF4XnqNmlgA==}
|
|
4291
4230
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
4292
4231
|
peerDependencies:
|
|
4293
4232
|
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
@@ -4369,8 +4308,8 @@ packages:
|
|
|
4369
4308
|
peerDependencies:
|
|
4370
4309
|
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
4371
4310
|
|
|
4372
|
-
acorn@8.
|
|
4373
|
-
resolution: {integrity: sha512-
|
|
4311
|
+
acorn@8.17.0:
|
|
4312
|
+
resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
|
|
4374
4313
|
engines: {node: '>=0.4.0'}
|
|
4375
4314
|
hasBin: true
|
|
4376
4315
|
|
|
@@ -4449,9 +4388,9 @@ packages:
|
|
|
4449
4388
|
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
|
|
4450
4389
|
engines: {node: '>= 0.4'}
|
|
4451
4390
|
|
|
4452
|
-
ast-kit@3.0.0
|
|
4453
|
-
resolution: {integrity: sha512-
|
|
4454
|
-
engines: {node:
|
|
4391
|
+
ast-kit@3.0.0:
|
|
4392
|
+
resolution: {integrity: sha512-8OG92q3R35qjC/4i6BLBMg8IB+fClWu/1PEwg2Z9Rn+BuNaiEgJzpzn+pxWOdHJWDCAwu2JP0wCDTozAM4QirQ==}
|
|
4393
|
+
engines: {node: ^22.18.0 || >=24.11.0}
|
|
4455
4394
|
|
|
4456
4395
|
ast-types-yx@0.14.2:
|
|
4457
4396
|
resolution: {integrity: sha512-lre9vXZvn5azJcNM60Ub19NzoXsaGS/vJ76ral4BbGSOYJoBo/OrXOXI2uClYzDSzDfRR6D8K+FJrYT3BHUM8w==}
|
|
@@ -4467,8 +4406,8 @@ packages:
|
|
|
4467
4406
|
asynckit@0.4.0:
|
|
4468
4407
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
4469
4408
|
|
|
4470
|
-
autoprefixer@10.5.
|
|
4471
|
-
resolution: {integrity: sha512-
|
|
4409
|
+
autoprefixer@10.5.1:
|
|
4410
|
+
resolution: {integrity: sha512-jwM2pcTuCWUoN70FEvf5XrXyDbUgRURK4FnU8v0jWZZYU/KkVvN9T33mu1sVLFY9JW3kTWzKheEpn6xYLRc/VA==}
|
|
4472
4411
|
engines: {node: ^10 || ^12 || >=14}
|
|
4473
4412
|
hasBin: true
|
|
4474
4413
|
peerDependencies:
|
|
@@ -4478,8 +4417,8 @@ packages:
|
|
|
4478
4417
|
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
|
|
4479
4418
|
engines: {node: '>= 0.4'}
|
|
4480
4419
|
|
|
4481
|
-
axios@1.
|
|
4482
|
-
resolution: {integrity: sha512-
|
|
4420
|
+
axios@1.18.1:
|
|
4421
|
+
resolution: {integrity: sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==}
|
|
4483
4422
|
|
|
4484
4423
|
b4a@1.8.1:
|
|
4485
4424
|
resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==}
|
|
@@ -4548,8 +4487,8 @@ packages:
|
|
|
4548
4487
|
base64-js@1.5.1:
|
|
4549
4488
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
4550
4489
|
|
|
4551
|
-
baseline-browser-mapping@2.10.
|
|
4552
|
-
resolution: {integrity: sha512-
|
|
4490
|
+
baseline-browser-mapping@2.10.38:
|
|
4491
|
+
resolution: {integrity: sha512-31/02mVB4yuQU6adKk5SlY6m+mxDwUq5KZkyYgnLrrKl7TEm1+3PyDtDBz2kOv/wxZz41GHsvV1A/u6RmiyBvw==}
|
|
4553
4492
|
engines: {node: '>=6.0.0'}
|
|
4554
4493
|
hasBin: true
|
|
4555
4494
|
|
|
@@ -4594,8 +4533,8 @@ packages:
|
|
|
4594
4533
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
4595
4534
|
engines: {node: '>=8'}
|
|
4596
4535
|
|
|
4597
|
-
browserslist@4.28.
|
|
4598
|
-
resolution: {integrity: sha512-
|
|
4536
|
+
browserslist@4.28.4:
|
|
4537
|
+
resolution: {integrity: sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==}
|
|
4599
4538
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
4600
4539
|
hasBin: true
|
|
4601
4540
|
|
|
@@ -4658,8 +4597,8 @@ packages:
|
|
|
4658
4597
|
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
|
|
4659
4598
|
engines: {node: '>=6'}
|
|
4660
4599
|
|
|
4661
|
-
caniuse-lite@1.0.
|
|
4662
|
-
resolution: {integrity: sha512-
|
|
4600
|
+
caniuse-lite@1.0.30001799:
|
|
4601
|
+
resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==}
|
|
4663
4602
|
|
|
4664
4603
|
capital-case@1.0.4:
|
|
4665
4604
|
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
|
|
@@ -4699,8 +4638,8 @@ packages:
|
|
|
4699
4638
|
character-reference-invalid@1.1.4:
|
|
4700
4639
|
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
|
|
4701
4640
|
|
|
4702
|
-
chardet@2.
|
|
4703
|
-
resolution: {integrity: sha512-
|
|
4641
|
+
chardet@2.2.0:
|
|
4642
|
+
resolution: {integrity: sha512-rddelWYNPRrXq6PtNEN2S3f6t9ILzvqaN5pVgi4kqt9jHQaXIial9PznB5iSPVlQSLNaaH22ItWz3EJtQ10+OA==}
|
|
4704
4643
|
|
|
4705
4644
|
charenc@0.0.2:
|
|
4706
4645
|
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
|
|
@@ -5078,8 +5017,8 @@ packages:
|
|
|
5078
5017
|
ee-first@1.1.1:
|
|
5079
5018
|
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
5080
5019
|
|
|
5081
|
-
electron-to-chromium@1.5.
|
|
5082
|
-
resolution: {integrity: sha512-
|
|
5020
|
+
electron-to-chromium@1.5.378:
|
|
5021
|
+
resolution: {integrity: sha512-VinvOAuuPmdD1guEgGv5f2Qp7/vlfqOrUOMYNnOD4wj3pit8kRsQHzfIf6teyUGWo15Tg5+bOJaRunvyltpVWQ==}
|
|
5083
5022
|
|
|
5084
5023
|
elementtree@0.1.7:
|
|
5085
5024
|
resolution: {integrity: sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==}
|
|
@@ -5272,8 +5211,8 @@ packages:
|
|
|
5272
5211
|
'@typescript-eslint/parser':
|
|
5273
5212
|
optional: true
|
|
5274
5213
|
|
|
5275
|
-
eslint-plugin-yml@3.
|
|
5276
|
-
resolution: {integrity: sha512-
|
|
5214
|
+
eslint-plugin-yml@3.5.0:
|
|
5215
|
+
resolution: {integrity: sha512-u2UkSIp/+th1wYCt0QWeCI6agf24dxX6PbFfCCN18gGQHmXh3Cn9D/U5OiP5RNYTEwjXCLusj1OJRK+zwdvFqQ==}
|
|
5277
5216
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0}
|
|
5278
5217
|
peerDependencies:
|
|
5279
5218
|
eslint: '>=9.38.0'
|
|
@@ -5495,8 +5434,8 @@ packages:
|
|
|
5495
5434
|
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
|
5496
5435
|
engines: {node: '>=14'}
|
|
5497
5436
|
|
|
5498
|
-
form-data@4.0.
|
|
5499
|
-
resolution: {integrity: sha512-
|
|
5437
|
+
form-data@4.0.6:
|
|
5438
|
+
resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==}
|
|
5500
5439
|
engines: {node: '>= 6'}
|
|
5501
5440
|
|
|
5502
5441
|
format@0.2.2:
|
|
@@ -5594,8 +5533,8 @@ packages:
|
|
|
5594
5533
|
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
5595
5534
|
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
5535
|
|
|
5597
|
-
globals@17.
|
|
5598
|
-
resolution: {integrity: sha512-
|
|
5536
|
+
globals@17.7.0:
|
|
5537
|
+
resolution: {integrity: sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==}
|
|
5599
5538
|
engines: {node: '>=18'}
|
|
5600
5539
|
|
|
5601
5540
|
globby@14.1.0:
|
|
@@ -5649,8 +5588,8 @@ packages:
|
|
|
5649
5588
|
header-case@2.0.4:
|
|
5650
5589
|
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
|
|
5651
5590
|
|
|
5652
|
-
hono@4.12.
|
|
5653
|
-
resolution: {integrity: sha512-
|
|
5591
|
+
hono@4.12.27:
|
|
5592
|
+
resolution: {integrity: sha512-1yrb/+w6HWQJrUCLkJ2IF5jNIPvvFkblV5RNOYl6bV+OA6p9GLcMpHFFGTosSvHvcAUibuUukRqhlYI4z32C7Q==}
|
|
5654
5593
|
engines: {node: '>=16.9.0'}
|
|
5655
5594
|
|
|
5656
5595
|
hookable@6.1.1:
|
|
@@ -5726,8 +5665,8 @@ packages:
|
|
|
5726
5665
|
immediate@3.0.6:
|
|
5727
5666
|
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
|
|
5728
5667
|
|
|
5729
|
-
immutable@5.1.
|
|
5730
|
-
resolution: {integrity: sha512-
|
|
5668
|
+
immutable@5.1.7:
|
|
5669
|
+
resolution: {integrity: sha512-47Xb+LFbZ/ZIjQMj6Q5J3IfK7PJFuqRdFOC9FpGgRTK6U2dAEVmkR9hp58qU4FpYux5YXpneDwkj2EP6lppzFA==}
|
|
5731
5670
|
|
|
5732
5671
|
import-from-string@0.0.5:
|
|
5733
5672
|
resolution: {integrity: sha512-z59WIHImWhnGVswc0JoyI10Qn4A8xQw7OKrCFRQHvzGZhhEixX13OtXP9ud3Xjpn16CUoYfh5mTu3tnNODiSAw==}
|
|
@@ -5988,6 +5927,10 @@ packages:
|
|
|
5988
5927
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
5989
5928
|
hasBin: true
|
|
5990
5929
|
|
|
5930
|
+
js-yaml@4.2.0:
|
|
5931
|
+
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
5932
|
+
hasBin: true
|
|
5933
|
+
|
|
5991
5934
|
jsdoc-type-pratt-parser@7.1.1:
|
|
5992
5935
|
resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
|
|
5993
5936
|
engines: {node: '>=20.0.0'}
|
|
@@ -6489,8 +6432,8 @@ packages:
|
|
|
6489
6432
|
resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==}
|
|
6490
6433
|
engines: {node: ^20.17.0 || >=22.9.0}
|
|
6491
6434
|
|
|
6492
|
-
nanoid@3.3.
|
|
6493
|
-
resolution: {integrity: sha512-
|
|
6435
|
+
nanoid@3.3.15:
|
|
6436
|
+
resolution: {integrity: sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==}
|
|
6494
6437
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
6495
6438
|
hasBin: true
|
|
6496
6439
|
|
|
@@ -6523,8 +6466,8 @@ packages:
|
|
|
6523
6466
|
resolution: {integrity: sha512-iwpZdvW6Umz12ICmu9IYPRxg0tOLGmU3Tq2tKetejCj3oZd7b2nUXwP3a7QA5M9glWy8wlPS1G3RwM/CdsUbdQ==}
|
|
6524
6467
|
engines: {node: '>=8.0.0'}
|
|
6525
6468
|
|
|
6526
|
-
node-releases@2.0.
|
|
6527
|
-
resolution: {integrity: sha512-
|
|
6469
|
+
node-releases@2.0.49:
|
|
6470
|
+
resolution: {integrity: sha512-f06bl1D+8ZDkn2oOQQKAh5/otFWqVnM1Q5oerA8Pex7UfT66Tx4IPHIqVVFKqFT3FUtaDstdgkM7yT7JWhqxfw==}
|
|
6528
6471
|
engines: {node: '>=18'}
|
|
6529
6472
|
|
|
6530
6473
|
nopt@9.0.0:
|
|
@@ -6583,8 +6526,8 @@ packages:
|
|
|
6583
6526
|
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
|
|
6584
6527
|
engines: {node: '>= 0.4'}
|
|
6585
6528
|
|
|
6586
|
-
obug@2.1.
|
|
6587
|
-
resolution: {integrity: sha512-
|
|
6529
|
+
obug@2.1.3:
|
|
6530
|
+
resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==}
|
|
6588
6531
|
engines: {node: '>=12.20.0'}
|
|
6589
6532
|
|
|
6590
6533
|
on-finished@2.3.0:
|
|
@@ -6618,8 +6561,8 @@ packages:
|
|
|
6618
6561
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6619
6562
|
hasBin: true
|
|
6620
6563
|
|
|
6621
|
-
oxlint@1.
|
|
6622
|
-
resolution: {integrity: sha512-
|
|
6564
|
+
oxlint@1.71.0:
|
|
6565
|
+
resolution: {integrity: sha512-U1m1X+C0vDj7DC1e13IoZULzEcPczE7UOMTs8VlZGHUEIUaSTZKo5qkPsQEfzpgnQ29Pea/w3Xntk62UCecxZw==}
|
|
6623
6566
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6624
6567
|
hasBin: true
|
|
6625
6568
|
peerDependencies:
|
|
@@ -6789,8 +6732,8 @@ packages:
|
|
|
6789
6732
|
resolution: {integrity: sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==}
|
|
6790
6733
|
engines: {node: '>=4'}
|
|
6791
6734
|
|
|
6792
|
-
postcss-selector-parser@7.1.
|
|
6793
|
-
resolution: {integrity: sha512-
|
|
6735
|
+
postcss-selector-parser@7.1.4:
|
|
6736
|
+
resolution: {integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==}
|
|
6794
6737
|
engines: {node: '>=4'}
|
|
6795
6738
|
|
|
6796
6739
|
postcss-value-parser@4.2.0:
|
|
@@ -7012,13 +6955,8 @@ packages:
|
|
|
7012
6955
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7013
6956
|
hasBin: true
|
|
7014
6957
|
|
|
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==}
|
|
6958
|
+
rolldown@1.1.3:
|
|
6959
|
+
resolution: {integrity: sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==}
|
|
7022
6960
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7023
6961
|
hasBin: true
|
|
7024
6962
|
|
|
@@ -7212,8 +7150,8 @@ packages:
|
|
|
7212
7150
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
7213
7151
|
hasBin: true
|
|
7214
7152
|
|
|
7215
|
-
semver@7.8.
|
|
7216
|
-
resolution: {integrity: sha512-
|
|
7153
|
+
semver@7.8.5:
|
|
7154
|
+
resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
|
|
7217
7155
|
engines: {node: '>=10'}
|
|
7218
7156
|
hasBin: true
|
|
7219
7157
|
|
|
@@ -7603,8 +7541,8 @@ packages:
|
|
|
7603
7541
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
7604
7542
|
engines: {node: '>= 0.4'}
|
|
7605
7543
|
|
|
7606
|
-
typescript-eslint@8.
|
|
7607
|
-
resolution: {integrity: sha512-
|
|
7544
|
+
typescript-eslint@8.62.0:
|
|
7545
|
+
resolution: {integrity: sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==}
|
|
7608
7546
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
7609
7547
|
peerDependencies:
|
|
7610
7548
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -7627,8 +7565,8 @@ packages:
|
|
|
7627
7565
|
undici-types@6.21.0:
|
|
7628
7566
|
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
7629
7567
|
|
|
7630
|
-
undici@7.
|
|
7631
|
-
resolution: {integrity: sha512-
|
|
7568
|
+
undici@7.28.0:
|
|
7569
|
+
resolution: {integrity: sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==}
|
|
7632
7570
|
engines: {node: '>=20.18.1'}
|
|
7633
7571
|
|
|
7634
7572
|
unicorn-magic@0.1.0:
|
|
@@ -7755,13 +7693,13 @@ packages:
|
|
|
7755
7693
|
vite-plugin-fake-server-turbo@3.0.18:
|
|
7756
7694
|
resolution: {integrity: sha512-36s5IzXOe03NWU+IeVOUAULDmU/j5gHIGhghPOOK4osnzjREKQsunEmtwydJvU4Xo4I52dcFh8KNDR3Ke7IKwA==}
|
|
7757
7695
|
|
|
7758
|
-
vite@8.0
|
|
7759
|
-
resolution: {integrity: sha512-
|
|
7696
|
+
vite@8.1.0:
|
|
7697
|
+
resolution: {integrity: sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==}
|
|
7760
7698
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
7761
7699
|
hasBin: true
|
|
7762
7700
|
peerDependencies:
|
|
7763
7701
|
'@types/node': ^20.19.0 || >=22.12.0
|
|
7764
|
-
'@vitejs/devtools': ^0.
|
|
7702
|
+
'@vitejs/devtools': ^0.3.0
|
|
7765
7703
|
esbuild: ^0.27.0 || ^0.28.0
|
|
7766
7704
|
jiti: '>=1.21.0'
|
|
7767
7705
|
less: ^4.0.0
|
|
@@ -7961,8 +7899,8 @@ packages:
|
|
|
7961
7899
|
yargs@13.3.2:
|
|
7962
7900
|
resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==}
|
|
7963
7901
|
|
|
7964
|
-
yargs@17.7.
|
|
7965
|
-
resolution: {integrity: sha512-
|
|
7902
|
+
yargs@17.7.3:
|
|
7903
|
+
resolution: {integrity: sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==}
|
|
7966
7904
|
engines: {node: '>=12'}
|
|
7967
7905
|
|
|
7968
7906
|
yargs@18.0.0:
|
|
@@ -8043,7 +7981,7 @@ snapshots:
|
|
|
8043
7981
|
|
|
8044
7982
|
'@babel/generator@8.0.0-rc.2':
|
|
8045
7983
|
dependencies:
|
|
8046
|
-
'@babel/parser': 8.0.0-rc.
|
|
7984
|
+
'@babel/parser': 8.0.0-rc.2
|
|
8047
7985
|
'@babel/types': 8.0.0-rc.2
|
|
8048
7986
|
'@jridgewell/gen-mapping': 0.3.13
|
|
8049
7987
|
'@jridgewell/trace-mapping': 0.3.31
|
|
@@ -8067,7 +8005,7 @@ snapshots:
|
|
|
8067
8005
|
dependencies:
|
|
8068
8006
|
'@babel/compat-data': 7.29.7
|
|
8069
8007
|
'@babel/helper-validator-option': 7.29.7
|
|
8070
|
-
browserslist: 4.28.
|
|
8008
|
+
browserslist: 4.28.4
|
|
8071
8009
|
lru-cache: 5.1.1
|
|
8072
8010
|
semver: 6.3.1
|
|
8073
8011
|
|
|
@@ -8133,7 +8071,7 @@ snapshots:
|
|
|
8133
8071
|
|
|
8134
8072
|
'@babel/helper-string-parser@7.29.7': {}
|
|
8135
8073
|
|
|
8136
|
-
'@babel/helper-string-parser@8.0.0
|
|
8074
|
+
'@babel/helper-string-parser@8.0.0': {}
|
|
8137
8075
|
|
|
8138
8076
|
'@babel/helper-validator-identifier@7.29.7': {}
|
|
8139
8077
|
|
|
@@ -8141,6 +8079,8 @@ snapshots:
|
|
|
8141
8079
|
|
|
8142
8080
|
'@babel/helper-validator-identifier@8.0.0-rc.3': {}
|
|
8143
8081
|
|
|
8082
|
+
'@babel/helper-validator-identifier@8.0.2': {}
|
|
8083
|
+
|
|
8144
8084
|
'@babel/helper-validator-option@7.29.7': {}
|
|
8145
8085
|
|
|
8146
8086
|
'@babel/helpers@7.29.7':
|
|
@@ -8152,6 +8092,10 @@ snapshots:
|
|
|
8152
8092
|
dependencies:
|
|
8153
8093
|
'@babel/types': 7.29.7
|
|
8154
8094
|
|
|
8095
|
+
'@babel/parser@8.0.0':
|
|
8096
|
+
dependencies:
|
|
8097
|
+
'@babel/types': 8.0.0
|
|
8098
|
+
|
|
8155
8099
|
'@babel/parser@8.0.0-rc.2':
|
|
8156
8100
|
dependencies:
|
|
8157
8101
|
'@babel/types': 8.0.0-rc.2
|
|
@@ -8228,19 +8172,24 @@ snapshots:
|
|
|
8228
8172
|
'@babel/helper-string-parser': 7.29.7
|
|
8229
8173
|
'@babel/helper-validator-identifier': 7.29.7
|
|
8230
8174
|
|
|
8175
|
+
'@babel/types@8.0.0':
|
|
8176
|
+
dependencies:
|
|
8177
|
+
'@babel/helper-string-parser': 8.0.0
|
|
8178
|
+
'@babel/helper-validator-identifier': 8.0.2
|
|
8179
|
+
|
|
8231
8180
|
'@babel/types@8.0.0-rc.2':
|
|
8232
8181
|
dependencies:
|
|
8233
|
-
'@babel/helper-string-parser': 8.0.0
|
|
8182
|
+
'@babel/helper-string-parser': 8.0.0
|
|
8234
8183
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
8235
8184
|
|
|
8236
8185
|
'@babel/types@8.0.0-rc.3':
|
|
8237
8186
|
dependencies:
|
|
8238
|
-
'@babel/helper-string-parser': 8.0.0
|
|
8187
|
+
'@babel/helper-string-parser': 8.0.0
|
|
8239
8188
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
8240
8189
|
|
|
8241
|
-
'@bufbuild/protobuf@2.12.
|
|
8190
|
+
'@bufbuild/protobuf@2.12.1': {}
|
|
8242
8191
|
|
|
8243
|
-
'@cabloy/cli@3.1.
|
|
8192
|
+
'@cabloy/cli@3.1.23(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
|
|
8244
8193
|
dependencies:
|
|
8245
8194
|
'@babel/parser': 7.29.7
|
|
8246
8195
|
'@cabloy/module-glob': 5.3.13
|
|
@@ -8248,7 +8197,7 @@ snapshots:
|
|
|
8248
8197
|
'@cabloy/process-helper': 3.1.8
|
|
8249
8198
|
'@cabloy/utils': 2.1.22
|
|
8250
8199
|
'@cabloy/word-utils': link:packages-utils/word-utils
|
|
8251
|
-
'@npmcli/config': 10.
|
|
8200
|
+
'@npmcli/config': 10.11.0
|
|
8252
8201
|
'@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
|
|
8253
8202
|
'@zhennann/ejs': 3.0.1
|
|
8254
8203
|
boxen: 4.2.0
|
|
@@ -8261,7 +8210,7 @@ snapshots:
|
|
|
8261
8210
|
gogocode: 1.0.55(vue@3.5.38(typescript@5.9.3))
|
|
8262
8211
|
is-type-of: 2.2.0
|
|
8263
8212
|
istextorbinary: 3.3.0
|
|
8264
|
-
semver: 7.8.
|
|
8213
|
+
semver: 7.8.5
|
|
8265
8214
|
tmp: 0.2.7
|
|
8266
8215
|
urllib: 4.9.0
|
|
8267
8216
|
transitivePeerDependencies:
|
|
@@ -8281,33 +8230,33 @@ snapshots:
|
|
|
8281
8230
|
|
|
8282
8231
|
'@cabloy/extend@3.2.8': {}
|
|
8283
8232
|
|
|
8284
|
-
'@cabloy/json-schema-to-zod@2.6.
|
|
8233
|
+
'@cabloy/json-schema-to-zod@2.6.5': {}
|
|
8285
8234
|
|
|
8286
8235
|
'@cabloy/json5@1.1.9':
|
|
8287
8236
|
dependencies:
|
|
8288
8237
|
json5: 2.2.3
|
|
8289
8238
|
|
|
8290
|
-
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.
|
|
8239
|
+
'@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)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))':
|
|
8291
8240
|
dependencies:
|
|
8292
|
-
'@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.
|
|
8241
|
+
'@e18e/eslint-plugin': 0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.71.0)
|
|
8293
8242
|
'@eslint/json': 1.2.0
|
|
8294
8243
|
'@eslint/markdown': 7.5.1(supports-color@10.2.2)
|
|
8295
8244
|
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
8296
|
-
'@typescript-eslint/parser': 8.
|
|
8245
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
8297
8246
|
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.
|
|
8247
|
+
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
8248
|
eslint-plugin-eslint-comments: 3.2.0(eslint@10.5.0(jiti@2.7.0))
|
|
8300
8249
|
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.5.0(jiti@2.7.0))
|
|
8301
8250
|
eslint-plugin-pnpm: 1.6.1(eslint@10.5.0(jiti@2.7.0))
|
|
8302
8251
|
eslint-plugin-regexp: 3.1.0(eslint@10.5.0(jiti@2.7.0))
|
|
8303
8252
|
eslint-plugin-toml: 1.4.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)
|
|
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.
|
|
8253
|
+
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))
|
|
8254
|
+
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)))
|
|
8255
|
+
eslint-plugin-yml: 3.5.0(eslint@10.5.0(jiti@2.7.0))
|
|
8256
|
+
globals: 17.7.0
|
|
8308
8257
|
oxfmt: 0.45.0
|
|
8309
|
-
oxlint: 1.
|
|
8310
|
-
typescript-eslint: 8.
|
|
8258
|
+
oxlint: 1.71.0
|
|
8259
|
+
typescript-eslint: 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8311
8260
|
transitivePeerDependencies:
|
|
8312
8261
|
- '@typescript-eslint/eslint-plugin'
|
|
8313
8262
|
- '@typescript-eslint/rule-tester'
|
|
@@ -8328,7 +8277,7 @@ snapshots:
|
|
|
8328
8277
|
chalk: 3.0.0
|
|
8329
8278
|
fs-extra: 11.3.5
|
|
8330
8279
|
globby: 16.2.0
|
|
8331
|
-
semver: 7.8.
|
|
8280
|
+
semver: 7.8.5
|
|
8332
8281
|
|
|
8333
8282
|
'@cabloy/module-info@2.0.0': {}
|
|
8334
8283
|
|
|
@@ -8344,16 +8293,16 @@ snapshots:
|
|
|
8344
8293
|
|
|
8345
8294
|
'@cabloy/process-helper@3.1.8': {}
|
|
8346
8295
|
|
|
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.
|
|
8296
|
+
'@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
8297
|
dependencies:
|
|
8349
8298
|
'@quasar/render-ssr-error': 1.0.4
|
|
8350
8299
|
'@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
|
|
8300
|
+
'@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
8301
|
'@types/chrome': 0.1.43
|
|
8353
8302
|
'@types/compression': 1.8.1
|
|
8354
8303
|
'@types/cordova': 11.0.3
|
|
8355
8304
|
'@types/express': 5.0.6
|
|
8356
|
-
'@vitejs/plugin-vue': 6.0.7(vite@8.0
|
|
8305
|
+
'@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
8306
|
archiver: 7.0.1
|
|
8358
8307
|
chokidar: 5.0.0
|
|
8359
8308
|
ci-info: 4.4.0
|
|
@@ -8368,7 +8317,7 @@ snapshots:
|
|
|
8368
8317
|
express: 5.2.1(supports-color@10.2.2)
|
|
8369
8318
|
fs-extra: 11.3.5
|
|
8370
8319
|
html-minifier-terser: 7.2.0
|
|
8371
|
-
inquirer: 13.4.3(@types/node@22.
|
|
8320
|
+
inquirer: 13.4.3(@types/node@22.20.0)
|
|
8372
8321
|
isbinaryfile: 5.0.7
|
|
8373
8322
|
kolorist: 1.8.0
|
|
8374
8323
|
lodash: 4.18.1
|
|
@@ -8376,13 +8325,13 @@ snapshots:
|
|
|
8376
8325
|
mlly: 1.8.2
|
|
8377
8326
|
open: 11.0.0
|
|
8378
8327
|
quasar: 2.20.1
|
|
8379
|
-
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.
|
|
8328
|
+
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)
|
|
8380
8329
|
sass-embedded: 1.100.0
|
|
8381
|
-
semver: 7.8.
|
|
8330
|
+
semver: 7.8.5
|
|
8382
8331
|
serialize-javascript: 7.0.6
|
|
8383
8332
|
tinyglobby: 0.2.17
|
|
8384
8333
|
ts-essentials: 10.2.1(typescript@5.9.3)
|
|
8385
|
-
vite: 8.0
|
|
8334
|
+
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
8335
|
vue: 3.5.38(typescript@5.9.3)
|
|
8387
8336
|
vue-router: '@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3))'
|
|
8388
8337
|
webpack-merge: 6.0.1
|
|
@@ -8408,11 +8357,11 @@ snapshots:
|
|
|
8408
8357
|
- tsx
|
|
8409
8358
|
- yaml
|
|
8410
8359
|
|
|
8411
|
-
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.0
|
|
8360
|
+
'@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
8361
|
dependencies:
|
|
8413
|
-
'@vitejs/plugin-vue': 6.0.7(vite@8.0
|
|
8362
|
+
'@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
8363
|
quasar: 2.20.1
|
|
8415
|
-
vite: 8.0
|
|
8364
|
+
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
8365
|
vue: 3.5.38(typescript@5.9.3)
|
|
8417
8366
|
|
|
8418
8367
|
'@cabloy/socket@2.1.9': {}
|
|
@@ -8424,17 +8373,17 @@ snapshots:
|
|
|
8424
8373
|
'@marcbachmann/cel-js': 7.6.1
|
|
8425
8374
|
object-hash: 3.0.0
|
|
8426
8375
|
|
|
8427
|
-
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
8376
|
+
'@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
8377
|
dependencies:
|
|
8429
8378
|
'@babel/core': 7.29.7
|
|
8430
8379
|
esbuild: 0.20.2
|
|
8431
|
-
vite: 8.0
|
|
8380
|
+
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
8381
|
|
|
8433
|
-
'@cabloy/vite-plugin-babel@1.3.3(@babel/core@7.29.7)(vite@8.0
|
|
8382
|
+
'@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
8383
|
dependencies:
|
|
8435
8384
|
'@babel/core': 7.29.7
|
|
8436
8385
|
esbuild: 0.20.2
|
|
8437
|
-
vite: 8.0
|
|
8386
|
+
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
8387
|
|
|
8439
8388
|
'@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)':
|
|
8440
8389
|
dependencies:
|
|
@@ -8533,12 +8482,12 @@ snapshots:
|
|
|
8533
8482
|
'@colors/colors@1.5.0':
|
|
8534
8483
|
optional: true
|
|
8535
8484
|
|
|
8536
|
-
'@e18e/eslint-plugin@0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.
|
|
8485
|
+
'@e18e/eslint-plugin@0.2.0(eslint@10.5.0(jiti@2.7.0))(oxlint@1.71.0)':
|
|
8537
8486
|
dependencies:
|
|
8538
8487
|
eslint-plugin-depend: 1.5.0(eslint@10.5.0(jiti@2.7.0))
|
|
8539
8488
|
optionalDependencies:
|
|
8540
8489
|
eslint: 10.5.0(jiti@2.7.0)
|
|
8541
|
-
oxlint: 1.
|
|
8490
|
+
oxlint: 1.71.0
|
|
8542
8491
|
|
|
8543
8492
|
'@eggjs/yauzl@2.11.0':
|
|
8544
8493
|
dependencies:
|
|
@@ -8551,20 +8500,36 @@ snapshots:
|
|
|
8551
8500
|
tslib: 2.8.1
|
|
8552
8501
|
optional: true
|
|
8553
8502
|
|
|
8503
|
+
'@emnapi/core@1.11.1':
|
|
8504
|
+
dependencies:
|
|
8505
|
+
'@emnapi/wasi-threads': 1.2.2
|
|
8506
|
+
tslib: 2.8.1
|
|
8507
|
+
optional: true
|
|
8508
|
+
|
|
8554
8509
|
'@emnapi/runtime@1.10.0':
|
|
8555
8510
|
dependencies:
|
|
8556
8511
|
tslib: 2.8.1
|
|
8557
8512
|
optional: true
|
|
8558
8513
|
|
|
8514
|
+
'@emnapi/runtime@1.11.1':
|
|
8515
|
+
dependencies:
|
|
8516
|
+
tslib: 2.8.1
|
|
8517
|
+
optional: true
|
|
8518
|
+
|
|
8559
8519
|
'@emnapi/wasi-threads@1.2.1':
|
|
8560
8520
|
dependencies:
|
|
8561
8521
|
tslib: 2.8.1
|
|
8562
8522
|
optional: true
|
|
8563
8523
|
|
|
8524
|
+
'@emnapi/wasi-threads@1.2.2':
|
|
8525
|
+
dependencies:
|
|
8526
|
+
tslib: 2.8.1
|
|
8527
|
+
optional: true
|
|
8528
|
+
|
|
8564
8529
|
'@es-joy/jsdoccomment@0.84.0':
|
|
8565
8530
|
dependencies:
|
|
8566
8531
|
'@types/estree': 1.0.9
|
|
8567
|
-
'@typescript-eslint/types': 8.
|
|
8532
|
+
'@typescript-eslint/types': 8.62.0
|
|
8568
8533
|
comment-parser: 1.4.5
|
|
8569
8534
|
esquery: 1.7.0
|
|
8570
8535
|
jsdoc-type-pratt-parser: 7.1.1
|
|
@@ -9013,9 +8978,9 @@ snapshots:
|
|
|
9013
8978
|
|
|
9014
8979
|
'@gar/promise-retry@1.0.3': {}
|
|
9015
8980
|
|
|
9016
|
-
'@hono/node-server@1.19.14(hono@4.12.
|
|
8981
|
+
'@hono/node-server@1.19.14(hono@4.12.27)':
|
|
9017
8982
|
dependencies:
|
|
9018
|
-
hono: 4.12.
|
|
8983
|
+
hono: 4.12.27
|
|
9019
8984
|
|
|
9020
8985
|
'@humanfs/core@0.19.2':
|
|
9021
8986
|
dependencies:
|
|
@@ -9037,122 +9002,122 @@ snapshots:
|
|
|
9037
9002
|
|
|
9038
9003
|
'@inquirer/ansi@2.0.7': {}
|
|
9039
9004
|
|
|
9040
|
-
'@inquirer/checkbox@5.2.1(@types/node@22.
|
|
9005
|
+
'@inquirer/checkbox@5.2.1(@types/node@22.20.0)':
|
|
9041
9006
|
dependencies:
|
|
9042
9007
|
'@inquirer/ansi': 2.0.7
|
|
9043
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9008
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9044
9009
|
'@inquirer/figures': 2.0.7
|
|
9045
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9010
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9046
9011
|
optionalDependencies:
|
|
9047
|
-
'@types/node': 22.
|
|
9012
|
+
'@types/node': 22.20.0
|
|
9048
9013
|
|
|
9049
|
-
'@inquirer/confirm@6.1.1(@types/node@22.
|
|
9014
|
+
'@inquirer/confirm@6.1.1(@types/node@22.20.0)':
|
|
9050
9015
|
dependencies:
|
|
9051
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9052
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9016
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9017
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9053
9018
|
optionalDependencies:
|
|
9054
|
-
'@types/node': 22.
|
|
9019
|
+
'@types/node': 22.20.0
|
|
9055
9020
|
|
|
9056
|
-
'@inquirer/core@11.2.1(@types/node@22.
|
|
9021
|
+
'@inquirer/core@11.2.1(@types/node@22.20.0)':
|
|
9057
9022
|
dependencies:
|
|
9058
9023
|
'@inquirer/ansi': 2.0.7
|
|
9059
9024
|
'@inquirer/figures': 2.0.7
|
|
9060
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9025
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9061
9026
|
cli-width: 4.1.0
|
|
9062
9027
|
fast-wrap-ansi: 0.2.2
|
|
9063
9028
|
mute-stream: 3.0.0
|
|
9064
9029
|
signal-exit: 4.1.0
|
|
9065
9030
|
optionalDependencies:
|
|
9066
|
-
'@types/node': 22.
|
|
9031
|
+
'@types/node': 22.20.0
|
|
9067
9032
|
|
|
9068
|
-
'@inquirer/editor@5.2.2(@types/node@22.
|
|
9033
|
+
'@inquirer/editor@5.2.2(@types/node@22.20.0)':
|
|
9069
9034
|
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.
|
|
9035
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9036
|
+
'@inquirer/external-editor': 3.0.3(@types/node@22.20.0)
|
|
9037
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9073
9038
|
optionalDependencies:
|
|
9074
|
-
'@types/node': 22.
|
|
9039
|
+
'@types/node': 22.20.0
|
|
9075
9040
|
|
|
9076
|
-
'@inquirer/expand@5.1.1(@types/node@22.
|
|
9041
|
+
'@inquirer/expand@5.1.1(@types/node@22.20.0)':
|
|
9077
9042
|
dependencies:
|
|
9078
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9079
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9043
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9044
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9080
9045
|
optionalDependencies:
|
|
9081
|
-
'@types/node': 22.
|
|
9046
|
+
'@types/node': 22.20.0
|
|
9082
9047
|
|
|
9083
|
-
'@inquirer/external-editor@3.0.3(@types/node@22.
|
|
9048
|
+
'@inquirer/external-editor@3.0.3(@types/node@22.20.0)':
|
|
9084
9049
|
dependencies:
|
|
9085
|
-
chardet: 2.
|
|
9050
|
+
chardet: 2.2.0
|
|
9086
9051
|
iconv-lite: 0.7.2
|
|
9087
9052
|
optionalDependencies:
|
|
9088
|
-
'@types/node': 22.
|
|
9053
|
+
'@types/node': 22.20.0
|
|
9089
9054
|
|
|
9090
9055
|
'@inquirer/figures@2.0.7': {}
|
|
9091
9056
|
|
|
9092
|
-
'@inquirer/input@5.1.2(@types/node@22.
|
|
9057
|
+
'@inquirer/input@5.1.2(@types/node@22.20.0)':
|
|
9093
9058
|
dependencies:
|
|
9094
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9095
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9059
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9060
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9096
9061
|
optionalDependencies:
|
|
9097
|
-
'@types/node': 22.
|
|
9062
|
+
'@types/node': 22.20.0
|
|
9098
9063
|
|
|
9099
|
-
'@inquirer/number@4.1.1(@types/node@22.
|
|
9064
|
+
'@inquirer/number@4.1.1(@types/node@22.20.0)':
|
|
9100
9065
|
dependencies:
|
|
9101
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9102
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9066
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9067
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9103
9068
|
optionalDependencies:
|
|
9104
|
-
'@types/node': 22.
|
|
9069
|
+
'@types/node': 22.20.0
|
|
9105
9070
|
|
|
9106
|
-
'@inquirer/password@5.1.1(@types/node@22.
|
|
9071
|
+
'@inquirer/password@5.1.1(@types/node@22.20.0)':
|
|
9107
9072
|
dependencies:
|
|
9108
9073
|
'@inquirer/ansi': 2.0.7
|
|
9109
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9110
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9074
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9075
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9111
9076
|
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.
|
|
9077
|
+
'@types/node': 22.20.0
|
|
9078
|
+
|
|
9079
|
+
'@inquirer/prompts@8.5.2(@types/node@22.20.0)':
|
|
9080
|
+
dependencies:
|
|
9081
|
+
'@inquirer/checkbox': 5.2.1(@types/node@22.20.0)
|
|
9082
|
+
'@inquirer/confirm': 6.1.1(@types/node@22.20.0)
|
|
9083
|
+
'@inquirer/editor': 5.2.2(@types/node@22.20.0)
|
|
9084
|
+
'@inquirer/expand': 5.1.1(@types/node@22.20.0)
|
|
9085
|
+
'@inquirer/input': 5.1.2(@types/node@22.20.0)
|
|
9086
|
+
'@inquirer/number': 4.1.1(@types/node@22.20.0)
|
|
9087
|
+
'@inquirer/password': 5.1.1(@types/node@22.20.0)
|
|
9088
|
+
'@inquirer/rawlist': 5.3.1(@types/node@22.20.0)
|
|
9089
|
+
'@inquirer/search': 4.2.1(@types/node@22.20.0)
|
|
9090
|
+
'@inquirer/select': 5.2.1(@types/node@22.20.0)
|
|
9126
9091
|
optionalDependencies:
|
|
9127
|
-
'@types/node': 22.
|
|
9092
|
+
'@types/node': 22.20.0
|
|
9128
9093
|
|
|
9129
|
-
'@inquirer/rawlist@5.3.1(@types/node@22.
|
|
9094
|
+
'@inquirer/rawlist@5.3.1(@types/node@22.20.0)':
|
|
9130
9095
|
dependencies:
|
|
9131
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9132
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9096
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9097
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9133
9098
|
optionalDependencies:
|
|
9134
|
-
'@types/node': 22.
|
|
9099
|
+
'@types/node': 22.20.0
|
|
9135
9100
|
|
|
9136
|
-
'@inquirer/search@4.2.1(@types/node@22.
|
|
9101
|
+
'@inquirer/search@4.2.1(@types/node@22.20.0)':
|
|
9137
9102
|
dependencies:
|
|
9138
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9103
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9139
9104
|
'@inquirer/figures': 2.0.7
|
|
9140
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9105
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9141
9106
|
optionalDependencies:
|
|
9142
|
-
'@types/node': 22.
|
|
9107
|
+
'@types/node': 22.20.0
|
|
9143
9108
|
|
|
9144
|
-
'@inquirer/select@5.2.1(@types/node@22.
|
|
9109
|
+
'@inquirer/select@5.2.1(@types/node@22.20.0)':
|
|
9145
9110
|
dependencies:
|
|
9146
9111
|
'@inquirer/ansi': 2.0.7
|
|
9147
|
-
'@inquirer/core': 11.2.1(@types/node@22.
|
|
9112
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
9148
9113
|
'@inquirer/figures': 2.0.7
|
|
9149
|
-
'@inquirer/type': 4.0.7(@types/node@22.
|
|
9114
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
9150
9115
|
optionalDependencies:
|
|
9151
|
-
'@types/node': 22.
|
|
9116
|
+
'@types/node': 22.20.0
|
|
9152
9117
|
|
|
9153
|
-
'@inquirer/type@4.0.7(@types/node@22.
|
|
9118
|
+
'@inquirer/type@4.0.7(@types/node@22.20.0)':
|
|
9154
9119
|
optionalDependencies:
|
|
9155
|
-
'@types/node': 22.
|
|
9120
|
+
'@types/node': 22.20.0
|
|
9156
9121
|
|
|
9157
9122
|
'@isaacs/cliui@8.0.2':
|
|
9158
9123
|
dependencies:
|
|
@@ -9199,7 +9164,7 @@ snapshots:
|
|
|
9199
9164
|
|
|
9200
9165
|
'@modelcontextprotocol/sdk@1.29.0(@cabloy/zod@4.3.6)':
|
|
9201
9166
|
dependencies:
|
|
9202
|
-
'@hono/node-server': 1.19.14(hono@4.12.
|
|
9167
|
+
'@hono/node-server': 1.19.14(hono@4.12.27)
|
|
9203
9168
|
ajv: 8.20.0
|
|
9204
9169
|
ajv-formats: 3.0.1(ajv@8.20.0)
|
|
9205
9170
|
content-type: 1.0.5
|
|
@@ -9209,7 +9174,7 @@ snapshots:
|
|
|
9209
9174
|
eventsource-parser: 3.1.0
|
|
9210
9175
|
express: 5.2.1(supports-color@10.2.2)
|
|
9211
9176
|
express-rate-limit: 8.5.2(express@5.2.1(supports-color@10.2.2))
|
|
9212
|
-
hono: 4.12.
|
|
9177
|
+
hono: 4.12.27
|
|
9213
9178
|
jose: 6.2.3
|
|
9214
9179
|
json-schema-typed: 8.0.2
|
|
9215
9180
|
pkce-challenge: 5.0.1
|
|
@@ -9219,11 +9184,18 @@ snapshots:
|
|
|
9219
9184
|
transitivePeerDependencies:
|
|
9220
9185
|
- supports-color
|
|
9221
9186
|
|
|
9222
|
-
'@napi-rs/wasm-runtime@1.1.
|
|
9187
|
+
'@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
|
9223
9188
|
dependencies:
|
|
9224
9189
|
'@emnapi/core': 1.10.0
|
|
9225
9190
|
'@emnapi/runtime': 1.10.0
|
|
9226
|
-
'@tybys/wasm-util': 0.10.
|
|
9191
|
+
'@tybys/wasm-util': 0.10.3
|
|
9192
|
+
optional: true
|
|
9193
|
+
|
|
9194
|
+
'@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
|
|
9195
|
+
dependencies:
|
|
9196
|
+
'@emnapi/core': 1.11.1
|
|
9197
|
+
'@emnapi/runtime': 1.11.1
|
|
9198
|
+
'@tybys/wasm-util': 0.10.3
|
|
9227
9199
|
optional: true
|
|
9228
9200
|
|
|
9229
9201
|
'@nodelib/fs.scandir@2.1.5':
|
|
@@ -9238,7 +9210,7 @@ snapshots:
|
|
|
9238
9210
|
'@nodelib/fs.scandir': 2.1.5
|
|
9239
9211
|
fastq: 1.20.1
|
|
9240
9212
|
|
|
9241
|
-
'@npmcli/config@10.
|
|
9213
|
+
'@npmcli/config@10.11.0':
|
|
9242
9214
|
dependencies:
|
|
9243
9215
|
'@npmcli/map-workspaces': 5.0.3
|
|
9244
9216
|
'@npmcli/package-json': 7.0.5
|
|
@@ -9246,7 +9218,7 @@ snapshots:
|
|
|
9246
9218
|
ini: 6.0.0
|
|
9247
9219
|
nopt: 9.0.0
|
|
9248
9220
|
proc-log: 6.1.0
|
|
9249
|
-
semver: 7.8.
|
|
9221
|
+
semver: 7.8.5
|
|
9250
9222
|
walk-up-path: 4.0.0
|
|
9251
9223
|
|
|
9252
9224
|
'@npmcli/git@7.0.2':
|
|
@@ -9257,7 +9229,7 @@ snapshots:
|
|
|
9257
9229
|
lru-cache: 11.5.1
|
|
9258
9230
|
npm-pick-manifest: 11.0.3
|
|
9259
9231
|
proc-log: 6.1.0
|
|
9260
|
-
semver: 7.8.
|
|
9232
|
+
semver: 7.8.5
|
|
9261
9233
|
which: 6.0.1
|
|
9262
9234
|
|
|
9263
9235
|
'@npmcli/map-workspaces@5.0.3':
|
|
@@ -9276,7 +9248,7 @@ snapshots:
|
|
|
9276
9248
|
hosted-git-info: 9.0.3
|
|
9277
9249
|
json-parse-even-better-errors: 5.0.0
|
|
9278
9250
|
proc-log: 6.1.0
|
|
9279
|
-
semver: 7.8.
|
|
9251
|
+
semver: 7.8.5
|
|
9280
9252
|
spdx-expression-parse: 4.0.0
|
|
9281
9253
|
|
|
9282
9254
|
'@npmcli/promise-spawn@9.0.1':
|
|
@@ -9287,9 +9259,7 @@ snapshots:
|
|
|
9287
9259
|
|
|
9288
9260
|
'@oxc-project/types@0.127.0': {}
|
|
9289
9261
|
|
|
9290
|
-
'@oxc-project/types@0.
|
|
9291
|
-
|
|
9292
|
-
'@oxc-project/types@0.134.0': {}
|
|
9262
|
+
'@oxc-project/types@0.137.0': {}
|
|
9293
9263
|
|
|
9294
9264
|
'@oxfmt/binding-android-arm-eabi@0.45.0':
|
|
9295
9265
|
optional: true
|
|
@@ -9348,61 +9318,61 @@ snapshots:
|
|
|
9348
9318
|
'@oxfmt/binding-win32-x64-msvc@0.45.0':
|
|
9349
9319
|
optional: true
|
|
9350
9320
|
|
|
9351
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
9321
|
+
'@oxlint/binding-android-arm-eabi@1.71.0':
|
|
9352
9322
|
optional: true
|
|
9353
9323
|
|
|
9354
|
-
'@oxlint/binding-android-arm64@1.
|
|
9324
|
+
'@oxlint/binding-android-arm64@1.71.0':
|
|
9355
9325
|
optional: true
|
|
9356
9326
|
|
|
9357
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
9327
|
+
'@oxlint/binding-darwin-arm64@1.71.0':
|
|
9358
9328
|
optional: true
|
|
9359
9329
|
|
|
9360
|
-
'@oxlint/binding-darwin-x64@1.
|
|
9330
|
+
'@oxlint/binding-darwin-x64@1.71.0':
|
|
9361
9331
|
optional: true
|
|
9362
9332
|
|
|
9363
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
9333
|
+
'@oxlint/binding-freebsd-x64@1.71.0':
|
|
9364
9334
|
optional: true
|
|
9365
9335
|
|
|
9366
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
9336
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.71.0':
|
|
9367
9337
|
optional: true
|
|
9368
9338
|
|
|
9369
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
9339
|
+
'@oxlint/binding-linux-arm-musleabihf@1.71.0':
|
|
9370
9340
|
optional: true
|
|
9371
9341
|
|
|
9372
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
9342
|
+
'@oxlint/binding-linux-arm64-gnu@1.71.0':
|
|
9373
9343
|
optional: true
|
|
9374
9344
|
|
|
9375
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
9345
|
+
'@oxlint/binding-linux-arm64-musl@1.71.0':
|
|
9376
9346
|
optional: true
|
|
9377
9347
|
|
|
9378
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
9348
|
+
'@oxlint/binding-linux-ppc64-gnu@1.71.0':
|
|
9379
9349
|
optional: true
|
|
9380
9350
|
|
|
9381
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
9351
|
+
'@oxlint/binding-linux-riscv64-gnu@1.71.0':
|
|
9382
9352
|
optional: true
|
|
9383
9353
|
|
|
9384
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
9354
|
+
'@oxlint/binding-linux-riscv64-musl@1.71.0':
|
|
9385
9355
|
optional: true
|
|
9386
9356
|
|
|
9387
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
9357
|
+
'@oxlint/binding-linux-s390x-gnu@1.71.0':
|
|
9388
9358
|
optional: true
|
|
9389
9359
|
|
|
9390
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
9360
|
+
'@oxlint/binding-linux-x64-gnu@1.71.0':
|
|
9391
9361
|
optional: true
|
|
9392
9362
|
|
|
9393
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
9363
|
+
'@oxlint/binding-linux-x64-musl@1.71.0':
|
|
9394
9364
|
optional: true
|
|
9395
9365
|
|
|
9396
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
9366
|
+
'@oxlint/binding-openharmony-arm64@1.71.0':
|
|
9397
9367
|
optional: true
|
|
9398
9368
|
|
|
9399
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
9369
|
+
'@oxlint/binding-win32-arm64-msvc@1.71.0':
|
|
9400
9370
|
optional: true
|
|
9401
9371
|
|
|
9402
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
9372
|
+
'@oxlint/binding-win32-ia32-msvc@1.71.0':
|
|
9403
9373
|
optional: true
|
|
9404
9374
|
|
|
9405
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
9375
|
+
'@oxlint/binding-win32-x64-msvc@1.71.0':
|
|
9406
9376
|
optional: true
|
|
9407
9377
|
|
|
9408
9378
|
'@parcel/watcher-android-arm64@2.5.6':
|
|
@@ -9510,148 +9480,99 @@ snapshots:
|
|
|
9510
9480
|
'@rolldown/binding-android-arm64@1.0.0-rc.17':
|
|
9511
9481
|
optional: true
|
|
9512
9482
|
|
|
9513
|
-
'@rolldown/binding-android-arm64@1.
|
|
9514
|
-
optional: true
|
|
9515
|
-
|
|
9516
|
-
'@rolldown/binding-android-arm64@1.1.0':
|
|
9483
|
+
'@rolldown/binding-android-arm64@1.1.3':
|
|
9517
9484
|
optional: true
|
|
9518
9485
|
|
|
9519
9486
|
'@rolldown/binding-darwin-arm64@1.0.0-rc.17':
|
|
9520
9487
|
optional: true
|
|
9521
9488
|
|
|
9522
|
-
'@rolldown/binding-darwin-arm64@1.
|
|
9523
|
-
optional: true
|
|
9524
|
-
|
|
9525
|
-
'@rolldown/binding-darwin-arm64@1.1.0':
|
|
9489
|
+
'@rolldown/binding-darwin-arm64@1.1.3':
|
|
9526
9490
|
optional: true
|
|
9527
9491
|
|
|
9528
9492
|
'@rolldown/binding-darwin-x64@1.0.0-rc.17':
|
|
9529
9493
|
optional: true
|
|
9530
9494
|
|
|
9531
|
-
'@rolldown/binding-darwin-x64@1.
|
|
9532
|
-
optional: true
|
|
9533
|
-
|
|
9534
|
-
'@rolldown/binding-darwin-x64@1.1.0':
|
|
9495
|
+
'@rolldown/binding-darwin-x64@1.1.3':
|
|
9535
9496
|
optional: true
|
|
9536
9497
|
|
|
9537
9498
|
'@rolldown/binding-freebsd-x64@1.0.0-rc.17':
|
|
9538
9499
|
optional: true
|
|
9539
9500
|
|
|
9540
|
-
'@rolldown/binding-freebsd-x64@1.
|
|
9541
|
-
optional: true
|
|
9542
|
-
|
|
9543
|
-
'@rolldown/binding-freebsd-x64@1.1.0':
|
|
9501
|
+
'@rolldown/binding-freebsd-x64@1.1.3':
|
|
9544
9502
|
optional: true
|
|
9545
9503
|
|
|
9546
9504
|
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.17':
|
|
9547
9505
|
optional: true
|
|
9548
9506
|
|
|
9549
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.
|
|
9550
|
-
optional: true
|
|
9551
|
-
|
|
9552
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.1.0':
|
|
9507
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.1.3':
|
|
9553
9508
|
optional: true
|
|
9554
9509
|
|
|
9555
9510
|
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.17':
|
|
9556
9511
|
optional: true
|
|
9557
9512
|
|
|
9558
|
-
'@rolldown/binding-linux-arm64-gnu@1.
|
|
9559
|
-
optional: true
|
|
9560
|
-
|
|
9561
|
-
'@rolldown/binding-linux-arm64-gnu@1.1.0':
|
|
9513
|
+
'@rolldown/binding-linux-arm64-gnu@1.1.3':
|
|
9562
9514
|
optional: true
|
|
9563
9515
|
|
|
9564
9516
|
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.17':
|
|
9565
9517
|
optional: true
|
|
9566
9518
|
|
|
9567
|
-
'@rolldown/binding-linux-arm64-musl@1.
|
|
9568
|
-
optional: true
|
|
9569
|
-
|
|
9570
|
-
'@rolldown/binding-linux-arm64-musl@1.1.0':
|
|
9519
|
+
'@rolldown/binding-linux-arm64-musl@1.1.3':
|
|
9571
9520
|
optional: true
|
|
9572
9521
|
|
|
9573
9522
|
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.17':
|
|
9574
9523
|
optional: true
|
|
9575
9524
|
|
|
9576
|
-
'@rolldown/binding-linux-ppc64-gnu@1.
|
|
9577
|
-
optional: true
|
|
9578
|
-
|
|
9579
|
-
'@rolldown/binding-linux-ppc64-gnu@1.1.0':
|
|
9525
|
+
'@rolldown/binding-linux-ppc64-gnu@1.1.3':
|
|
9580
9526
|
optional: true
|
|
9581
9527
|
|
|
9582
9528
|
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.17':
|
|
9583
9529
|
optional: true
|
|
9584
9530
|
|
|
9585
|
-
'@rolldown/binding-linux-s390x-gnu@1.
|
|
9586
|
-
optional: true
|
|
9587
|
-
|
|
9588
|
-
'@rolldown/binding-linux-s390x-gnu@1.1.0':
|
|
9531
|
+
'@rolldown/binding-linux-s390x-gnu@1.1.3':
|
|
9589
9532
|
optional: true
|
|
9590
9533
|
|
|
9591
9534
|
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.17':
|
|
9592
9535
|
optional: true
|
|
9593
9536
|
|
|
9594
|
-
'@rolldown/binding-linux-x64-gnu@1.
|
|
9595
|
-
optional: true
|
|
9596
|
-
|
|
9597
|
-
'@rolldown/binding-linux-x64-gnu@1.1.0':
|
|
9537
|
+
'@rolldown/binding-linux-x64-gnu@1.1.3':
|
|
9598
9538
|
optional: true
|
|
9599
9539
|
|
|
9600
9540
|
'@rolldown/binding-linux-x64-musl@1.0.0-rc.17':
|
|
9601
9541
|
optional: true
|
|
9602
9542
|
|
|
9603
|
-
'@rolldown/binding-linux-x64-musl@1.
|
|
9604
|
-
optional: true
|
|
9605
|
-
|
|
9606
|
-
'@rolldown/binding-linux-x64-musl@1.1.0':
|
|
9543
|
+
'@rolldown/binding-linux-x64-musl@1.1.3':
|
|
9607
9544
|
optional: true
|
|
9608
9545
|
|
|
9609
9546
|
'@rolldown/binding-openharmony-arm64@1.0.0-rc.17':
|
|
9610
9547
|
optional: true
|
|
9611
9548
|
|
|
9612
|
-
'@rolldown/binding-openharmony-arm64@1.
|
|
9613
|
-
optional: true
|
|
9614
|
-
|
|
9615
|
-
'@rolldown/binding-openharmony-arm64@1.1.0':
|
|
9549
|
+
'@rolldown/binding-openharmony-arm64@1.1.3':
|
|
9616
9550
|
optional: true
|
|
9617
9551
|
|
|
9618
9552
|
'@rolldown/binding-wasm32-wasi@1.0.0-rc.17':
|
|
9619
9553
|
dependencies:
|
|
9620
9554
|
'@emnapi/core': 1.10.0
|
|
9621
9555
|
'@emnapi/runtime': 1.10.0
|
|
9622
|
-
'@napi-rs/wasm-runtime': 1.1.
|
|
9556
|
+
'@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
|
|
9623
9557
|
optional: true
|
|
9624
9558
|
|
|
9625
|
-
'@rolldown/binding-wasm32-wasi@1.
|
|
9559
|
+
'@rolldown/binding-wasm32-wasi@1.1.3':
|
|
9626
9560
|
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)
|
|
9561
|
+
'@emnapi/core': 1.11.1
|
|
9562
|
+
'@emnapi/runtime': 1.11.1
|
|
9563
|
+
'@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
|
|
9637
9564
|
optional: true
|
|
9638
9565
|
|
|
9639
9566
|
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.17':
|
|
9640
9567
|
optional: true
|
|
9641
9568
|
|
|
9642
|
-
'@rolldown/binding-win32-arm64-msvc@1.
|
|
9643
|
-
optional: true
|
|
9644
|
-
|
|
9645
|
-
'@rolldown/binding-win32-arm64-msvc@1.1.0':
|
|
9569
|
+
'@rolldown/binding-win32-arm64-msvc@1.1.3':
|
|
9646
9570
|
optional: true
|
|
9647
9571
|
|
|
9648
9572
|
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.17':
|
|
9649
9573
|
optional: true
|
|
9650
9574
|
|
|
9651
|
-
'@rolldown/binding-win32-x64-msvc@1.
|
|
9652
|
-
optional: true
|
|
9653
|
-
|
|
9654
|
-
'@rolldown/binding-win32-x64-msvc@1.1.0':
|
|
9575
|
+
'@rolldown/binding-win32-x64-msvc@1.1.3':
|
|
9655
9576
|
optional: true
|
|
9656
9577
|
|
|
9657
9578
|
'@rolldown/pluginutils@1.0.0-rc.17': {}
|
|
@@ -9665,7 +9586,7 @@ snapshots:
|
|
|
9665
9586
|
'@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0))':
|
|
9666
9587
|
dependencies:
|
|
9667
9588
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
9668
|
-
'@typescript-eslint/types': 8.
|
|
9589
|
+
'@typescript-eslint/types': 8.62.0
|
|
9669
9590
|
eslint: 10.5.0(jiti@2.7.0)
|
|
9670
9591
|
eslint-visitor-keys: 4.2.1
|
|
9671
9592
|
espree: 10.4.0
|
|
@@ -9746,11 +9667,11 @@ snapshots:
|
|
|
9746
9667
|
postcss-selector-parser: 6.0.10
|
|
9747
9668
|
tailwindcss: 4.3.1
|
|
9748
9669
|
|
|
9749
|
-
'@tanstack/devtools-event-client@0.4.
|
|
9670
|
+
'@tanstack/devtools-event-client@0.4.4': {}
|
|
9750
9671
|
|
|
9751
9672
|
'@tanstack/form-core@1.33.0':
|
|
9752
9673
|
dependencies:
|
|
9753
|
-
'@tanstack/devtools-event-client': 0.4.
|
|
9674
|
+
'@tanstack/devtools-event-client': 0.4.4
|
|
9754
9675
|
'@tanstack/pacer-lite': 0.1.1
|
|
9755
9676
|
'@tanstack/store': 0.11.0
|
|
9756
9677
|
|
|
@@ -9760,11 +9681,11 @@ snapshots:
|
|
|
9760
9681
|
|
|
9761
9682
|
'@tanstack/pacer-lite@0.1.1': {}
|
|
9762
9683
|
|
|
9763
|
-
'@tanstack/query-core@5.101.
|
|
9684
|
+
'@tanstack/query-core@5.101.1': {}
|
|
9764
9685
|
|
|
9765
|
-
'@tanstack/query-persist-client-core@5.101.
|
|
9686
|
+
'@tanstack/query-persist-client-core@5.101.1':
|
|
9766
9687
|
dependencies:
|
|
9767
|
-
'@tanstack/query-core': 5.101.
|
|
9688
|
+
'@tanstack/query-core': 5.101.1
|
|
9768
9689
|
|
|
9769
9690
|
'@tanstack/store@0.11.0': {}
|
|
9770
9691
|
|
|
@@ -9778,10 +9699,10 @@ snapshots:
|
|
|
9778
9699
|
transitivePeerDependencies:
|
|
9779
9700
|
- '@vue/composition-api'
|
|
9780
9701
|
|
|
9781
|
-
'@tanstack/vue-query@5.101.
|
|
9702
|
+
'@tanstack/vue-query@5.101.1(vue@3.5.38(typescript@5.9.3))':
|
|
9782
9703
|
dependencies:
|
|
9783
9704
|
'@tanstack/match-sorter-utils': 8.19.4
|
|
9784
|
-
'@tanstack/query-core': 5.101.
|
|
9705
|
+
'@tanstack/query-core': 5.101.1
|
|
9785
9706
|
'@vue/devtools-api': 6.6.4
|
|
9786
9707
|
vue: 3.5.38(typescript@5.9.3)
|
|
9787
9708
|
vue-demi: 0.14.10(vue@3.5.38(typescript@5.9.3))
|
|
@@ -9862,7 +9783,7 @@ snapshots:
|
|
|
9862
9783
|
'@textlint/types': 15.7.1
|
|
9863
9784
|
chalk: 4.1.2
|
|
9864
9785
|
debug: 4.4.3(supports-color@10.2.2)
|
|
9865
|
-
js-yaml: 4.
|
|
9786
|
+
js-yaml: 4.2.0
|
|
9866
9787
|
lodash: 4.18.1
|
|
9867
9788
|
pluralize: 2.0.0
|
|
9868
9789
|
string-width: 4.2.3
|
|
@@ -9927,7 +9848,7 @@ snapshots:
|
|
|
9927
9848
|
|
|
9928
9849
|
'@textlint/utils@15.7.1': {}
|
|
9929
9850
|
|
|
9930
|
-
'@tybys/wasm-util@0.10.
|
|
9851
|
+
'@tybys/wasm-util@0.10.3':
|
|
9931
9852
|
dependencies:
|
|
9932
9853
|
tslib: 2.8.1
|
|
9933
9854
|
optional: true
|
|
@@ -9956,7 +9877,7 @@ snapshots:
|
|
|
9956
9877
|
'@types/body-parser@1.19.6':
|
|
9957
9878
|
dependencies:
|
|
9958
9879
|
'@types/connect': 3.4.38
|
|
9959
|
-
'@types/node': 22.
|
|
9880
|
+
'@types/node': 22.20.0
|
|
9960
9881
|
|
|
9961
9882
|
'@types/chrome@0.1.43':
|
|
9962
9883
|
dependencies:
|
|
@@ -9966,11 +9887,11 @@ snapshots:
|
|
|
9966
9887
|
'@types/compression@1.8.1':
|
|
9967
9888
|
dependencies:
|
|
9968
9889
|
'@types/express': 5.0.6
|
|
9969
|
-
'@types/node': 22.
|
|
9890
|
+
'@types/node': 22.20.0
|
|
9970
9891
|
|
|
9971
9892
|
'@types/connect@3.4.38':
|
|
9972
9893
|
dependencies:
|
|
9973
|
-
'@types/node': 22.
|
|
9894
|
+
'@types/node': 22.20.0
|
|
9974
9895
|
|
|
9975
9896
|
'@types/cordova@11.0.3': {}
|
|
9976
9897
|
|
|
@@ -9984,7 +9905,7 @@ snapshots:
|
|
|
9984
9905
|
|
|
9985
9906
|
'@types/express-serve-static-core@5.1.1':
|
|
9986
9907
|
dependencies:
|
|
9987
|
-
'@types/node': 22.
|
|
9908
|
+
'@types/node': 22.20.0
|
|
9988
9909
|
'@types/qs': 6.15.1
|
|
9989
9910
|
'@types/range-parser': 1.2.7
|
|
9990
9911
|
'@types/send': 1.2.1
|
|
@@ -10004,7 +9925,7 @@ snapshots:
|
|
|
10004
9925
|
'@types/fs-extra@11.0.4':
|
|
10005
9926
|
dependencies:
|
|
10006
9927
|
'@types/jsonfile': 6.1.4
|
|
10007
|
-
'@types/node': 22.
|
|
9928
|
+
'@types/node': 22.20.0
|
|
10008
9929
|
|
|
10009
9930
|
'@types/har-format@1.2.16': {}
|
|
10010
9931
|
|
|
@@ -10018,11 +9939,11 @@ snapshots:
|
|
|
10018
9939
|
|
|
10019
9940
|
'@types/jsonfile@6.1.4':
|
|
10020
9941
|
dependencies:
|
|
10021
|
-
'@types/node': 22.
|
|
9942
|
+
'@types/node': 22.20.0
|
|
10022
9943
|
|
|
10023
9944
|
'@types/lodash@4.17.24': {}
|
|
10024
9945
|
|
|
10025
|
-
'@types/luxon@3.7.
|
|
9946
|
+
'@types/luxon@3.7.2': {}
|
|
10026
9947
|
|
|
10027
9948
|
'@types/mdast@3.0.15':
|
|
10028
9949
|
dependencies:
|
|
@@ -10036,9 +9957,9 @@ snapshots:
|
|
|
10036
9957
|
|
|
10037
9958
|
'@types/node-forge@1.3.14':
|
|
10038
9959
|
dependencies:
|
|
10039
|
-
'@types/node': 22.
|
|
9960
|
+
'@types/node': 22.20.0
|
|
10040
9961
|
|
|
10041
|
-
'@types/node@22.
|
|
9962
|
+
'@types/node@22.20.0':
|
|
10042
9963
|
dependencies:
|
|
10043
9964
|
undici-types: 6.21.0
|
|
10044
9965
|
|
|
@@ -10050,25 +9971,25 @@ snapshots:
|
|
|
10050
9971
|
|
|
10051
9972
|
'@types/send@1.2.1':
|
|
10052
9973
|
dependencies:
|
|
10053
|
-
'@types/node': 22.
|
|
9974
|
+
'@types/node': 22.20.0
|
|
10054
9975
|
|
|
10055
9976
|
'@types/serve-static@2.2.0':
|
|
10056
9977
|
dependencies:
|
|
10057
9978
|
'@types/http-errors': 2.0.5
|
|
10058
|
-
'@types/node': 22.
|
|
9979
|
+
'@types/node': 22.20.0
|
|
10059
9980
|
|
|
10060
9981
|
'@types/unist@2.0.11': {}
|
|
10061
9982
|
|
|
10062
9983
|
'@types/unist@3.0.3': {}
|
|
10063
9984
|
|
|
10064
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
9985
|
+
'@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
9986
|
dependencies:
|
|
10066
9987
|
'@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.
|
|
9988
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
9989
|
+
'@typescript-eslint/scope-manager': 8.62.0
|
|
9990
|
+
'@typescript-eslint/type-utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
9991
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
9992
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10072
9993
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10073
9994
|
ignore: 7.0.5
|
|
10074
9995
|
natural-compare: 1.4.0
|
|
@@ -10077,55 +9998,55 @@ snapshots:
|
|
|
10077
9998
|
transitivePeerDependencies:
|
|
10078
9999
|
- supports-color
|
|
10079
10000
|
|
|
10080
|
-
'@typescript-eslint/parser@8.
|
|
10001
|
+
'@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10081
10002
|
dependencies:
|
|
10082
|
-
'@typescript-eslint/scope-manager': 8.
|
|
10083
|
-
'@typescript-eslint/types': 8.
|
|
10084
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10085
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
10003
|
+
'@typescript-eslint/scope-manager': 8.62.0
|
|
10004
|
+
'@typescript-eslint/types': 8.62.0
|
|
10005
|
+
'@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
10006
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10086
10007
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10087
10008
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10088
10009
|
typescript: 5.9.3
|
|
10089
10010
|
transitivePeerDependencies:
|
|
10090
10011
|
- supports-color
|
|
10091
10012
|
|
|
10092
|
-
'@typescript-eslint/project-service@8.
|
|
10013
|
+
'@typescript-eslint/project-service@8.62.0(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10093
10014
|
dependencies:
|
|
10094
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
10095
|
-
'@typescript-eslint/types': 8.
|
|
10015
|
+
'@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
|
|
10016
|
+
'@typescript-eslint/types': 8.62.0
|
|
10096
10017
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10097
10018
|
typescript: 5.9.3
|
|
10098
10019
|
transitivePeerDependencies:
|
|
10099
10020
|
- supports-color
|
|
10100
10021
|
|
|
10101
|
-
'@typescript-eslint/rule-tester@8.
|
|
10022
|
+
'@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10102
10023
|
dependencies:
|
|
10103
|
-
'@typescript-eslint/parser': 8.
|
|
10104
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10105
|
-
'@typescript-eslint/utils': 8.
|
|
10024
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10025
|
+
'@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
10026
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10106
10027
|
ajv: 6.15.0
|
|
10107
10028
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10108
10029
|
json-stable-stringify-without-jsonify: 1.0.1
|
|
10109
10030
|
lodash.merge: 4.6.2
|
|
10110
|
-
semver: 7.8.
|
|
10031
|
+
semver: 7.8.5
|
|
10111
10032
|
typescript: 5.9.3
|
|
10112
10033
|
transitivePeerDependencies:
|
|
10113
10034
|
- supports-color
|
|
10114
10035
|
|
|
10115
|
-
'@typescript-eslint/scope-manager@8.
|
|
10036
|
+
'@typescript-eslint/scope-manager@8.62.0':
|
|
10116
10037
|
dependencies:
|
|
10117
|
-
'@typescript-eslint/types': 8.
|
|
10118
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
10038
|
+
'@typescript-eslint/types': 8.62.0
|
|
10039
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10119
10040
|
|
|
10120
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
10041
|
+
'@typescript-eslint/tsconfig-utils@8.62.0(typescript@5.9.3)':
|
|
10121
10042
|
dependencies:
|
|
10122
10043
|
typescript: 5.9.3
|
|
10123
10044
|
|
|
10124
|
-
'@typescript-eslint/type-utils@8.
|
|
10045
|
+
'@typescript-eslint/type-utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10125
10046
|
dependencies:
|
|
10126
|
-
'@typescript-eslint/types': 8.
|
|
10127
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10128
|
-
'@typescript-eslint/utils': 8.
|
|
10047
|
+
'@typescript-eslint/types': 8.62.0
|
|
10048
|
+
'@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
10049
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10129
10050
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10130
10051
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10131
10052
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -10133,98 +10054,98 @@ snapshots:
|
|
|
10133
10054
|
transitivePeerDependencies:
|
|
10134
10055
|
- supports-color
|
|
10135
10056
|
|
|
10136
|
-
'@typescript-eslint/types@8.
|
|
10057
|
+
'@typescript-eslint/types@8.62.0': {}
|
|
10137
10058
|
|
|
10138
|
-
'@typescript-eslint/typescript-estree@8.
|
|
10059
|
+
'@typescript-eslint/typescript-estree@8.62.0(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10139
10060
|
dependencies:
|
|
10140
|
-
'@typescript-eslint/project-service': 8.
|
|
10141
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
10142
|
-
'@typescript-eslint/types': 8.
|
|
10143
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
10061
|
+
'@typescript-eslint/project-service': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
10062
|
+
'@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3)
|
|
10063
|
+
'@typescript-eslint/types': 8.62.0
|
|
10064
|
+
'@typescript-eslint/visitor-keys': 8.62.0
|
|
10144
10065
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10145
10066
|
minimatch: 10.2.5
|
|
10146
|
-
semver: 7.8.
|
|
10067
|
+
semver: 7.8.5
|
|
10147
10068
|
tinyglobby: 0.2.17
|
|
10148
10069
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
10149
10070
|
typescript: 5.9.3
|
|
10150
10071
|
transitivePeerDependencies:
|
|
10151
10072
|
- supports-color
|
|
10152
10073
|
|
|
10153
|
-
'@typescript-eslint/utils@8.
|
|
10074
|
+
'@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10154
10075
|
dependencies:
|
|
10155
10076
|
'@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.
|
|
10077
|
+
'@typescript-eslint/scope-manager': 8.62.0
|
|
10078
|
+
'@typescript-eslint/types': 8.62.0
|
|
10079
|
+
'@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
10159
10080
|
eslint: 10.5.0(jiti@2.7.0)
|
|
10160
10081
|
typescript: 5.9.3
|
|
10161
10082
|
transitivePeerDependencies:
|
|
10162
10083
|
- supports-color
|
|
10163
10084
|
|
|
10164
|
-
'@typescript-eslint/visitor-keys@8.
|
|
10085
|
+
'@typescript-eslint/visitor-keys@8.62.0':
|
|
10165
10086
|
dependencies:
|
|
10166
|
-
'@typescript-eslint/types': 8.
|
|
10087
|
+
'@typescript-eslint/types': 8.62.0
|
|
10167
10088
|
eslint-visitor-keys: 5.0.1
|
|
10168
10089
|
|
|
10169
|
-
'@typescript/native-preview-darwin-arm64@7.0.0-dev.
|
|
10090
|
+
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
10170
10091
|
optional: true
|
|
10171
10092
|
|
|
10172
|
-
'@typescript/native-preview-darwin-x64@7.0.0-dev.
|
|
10093
|
+
'@typescript/native-preview-darwin-x64@7.0.0-dev.20260624.1':
|
|
10173
10094
|
optional: true
|
|
10174
10095
|
|
|
10175
|
-
'@typescript/native-preview-linux-arm64@7.0.0-dev.
|
|
10096
|
+
'@typescript/native-preview-linux-arm64@7.0.0-dev.20260624.1':
|
|
10176
10097
|
optional: true
|
|
10177
10098
|
|
|
10178
|
-
'@typescript/native-preview-linux-arm@7.0.0-dev.
|
|
10099
|
+
'@typescript/native-preview-linux-arm@7.0.0-dev.20260624.1':
|
|
10179
10100
|
optional: true
|
|
10180
10101
|
|
|
10181
|
-
'@typescript/native-preview-linux-x64@7.0.0-dev.
|
|
10102
|
+
'@typescript/native-preview-linux-x64@7.0.0-dev.20260624.1':
|
|
10182
10103
|
optional: true
|
|
10183
10104
|
|
|
10184
|
-
'@typescript/native-preview-win32-arm64@7.0.0-dev.
|
|
10105
|
+
'@typescript/native-preview-win32-arm64@7.0.0-dev.20260624.1':
|
|
10185
10106
|
optional: true
|
|
10186
10107
|
|
|
10187
|
-
'@typescript/native-preview-win32-x64@7.0.0-dev.
|
|
10108
|
+
'@typescript/native-preview-win32-x64@7.0.0-dev.20260624.1':
|
|
10188
10109
|
optional: true
|
|
10189
10110
|
|
|
10190
|
-
'@typescript/native-preview@7.0.0-dev.
|
|
10111
|
+
'@typescript/native-preview@7.0.0-dev.20260624.1':
|
|
10191
10112
|
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.
|
|
10113
|
+
'@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260624.1
|
|
10114
|
+
'@typescript/native-preview-darwin-x64': 7.0.0-dev.20260624.1
|
|
10115
|
+
'@typescript/native-preview-linux-arm': 7.0.0-dev.20260624.1
|
|
10116
|
+
'@typescript/native-preview-linux-arm64': 7.0.0-dev.20260624.1
|
|
10117
|
+
'@typescript/native-preview-linux-x64': 7.0.0-dev.20260624.1
|
|
10118
|
+
'@typescript/native-preview-win32-arm64': 7.0.0-dev.20260624.1
|
|
10119
|
+
'@typescript/native-preview-win32-x64': 7.0.0-dev.20260624.1
|
|
10199
10120
|
|
|
10200
|
-
'@vitejs/plugin-vue-jsx@5.1.
|
|
10121
|
+
'@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.13(typescript@5.9.3))':
|
|
10201
10122
|
dependencies:
|
|
10202
10123
|
'@babel/core': 7.29.7
|
|
10203
10124
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10204
10125
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10205
10126
|
'@rolldown/pluginutils': 1.0.1
|
|
10206
10127
|
'@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
|
|
10207
|
-
vite: 8.0
|
|
10128
|
+
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)
|
|
10208
10129
|
vue: 3.5.13(typescript@5.9.3)
|
|
10209
10130
|
transitivePeerDependencies:
|
|
10210
10131
|
- supports-color
|
|
10211
10132
|
|
|
10212
|
-
'@vitejs/plugin-vue-jsx@5.1.
|
|
10133
|
+
'@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
10134
|
dependencies:
|
|
10214
10135
|
'@babel/core': 7.29.7
|
|
10215
10136
|
'@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10216
10137
|
'@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
|
|
10217
10138
|
'@rolldown/pluginutils': 1.0.1
|
|
10218
10139
|
'@vue/babel-plugin-jsx': '@cabloy/vue-babel-plugin-jsx@2.0.1(@babel/core@7.29.7)'
|
|
10219
|
-
vite: 8.0
|
|
10140
|
+
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
10141
|
vue: 3.5.38(typescript@5.9.3)
|
|
10221
10142
|
transitivePeerDependencies:
|
|
10222
10143
|
- supports-color
|
|
10223
10144
|
|
|
10224
|
-
'@vitejs/plugin-vue@6.0.7(vite@8.0
|
|
10145
|
+
'@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
10146
|
dependencies:
|
|
10226
10147
|
'@rolldown/pluginutils': 1.0.1
|
|
10227
|
-
vite: 8.0
|
|
10148
|
+
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
10149
|
vue: 3.5.38(typescript@5.9.3)
|
|
10229
10150
|
|
|
10230
10151
|
'@volar/language-core@2.4.28':
|
|
@@ -10304,7 +10225,7 @@ snapshots:
|
|
|
10304
10225
|
dargs: 7.0.0
|
|
10305
10226
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10306
10227
|
is-type-of: 1.4.0
|
|
10307
|
-
semver: 7.8.
|
|
10228
|
+
semver: 7.8.5
|
|
10308
10229
|
yargs: 13.3.2
|
|
10309
10230
|
yargs-parser: 13.1.2
|
|
10310
10231
|
transitivePeerDependencies:
|
|
@@ -10325,11 +10246,11 @@ snapshots:
|
|
|
10325
10246
|
mime-types: 3.0.2
|
|
10326
10247
|
negotiator: 1.0.0
|
|
10327
10248
|
|
|
10328
|
-
acorn-jsx@5.3.2(acorn@8.
|
|
10249
|
+
acorn-jsx@5.3.2(acorn@8.17.0):
|
|
10329
10250
|
dependencies:
|
|
10330
|
-
acorn: 8.
|
|
10251
|
+
acorn: 8.17.0
|
|
10331
10252
|
|
|
10332
|
-
acorn@8.
|
|
10253
|
+
acorn@8.17.0: {}
|
|
10333
10254
|
|
|
10334
10255
|
agent-base@6.0.2(supports-color@10.2.2):
|
|
10335
10256
|
dependencies:
|
|
@@ -10414,9 +10335,9 @@ snapshots:
|
|
|
10414
10335
|
call-bound: 1.0.4
|
|
10415
10336
|
is-array-buffer: 3.0.5
|
|
10416
10337
|
|
|
10417
|
-
ast-kit@3.0.0
|
|
10338
|
+
ast-kit@3.0.0:
|
|
10418
10339
|
dependencies:
|
|
10419
|
-
'@babel/parser': 8.0.0
|
|
10340
|
+
'@babel/parser': 8.0.0
|
|
10420
10341
|
estree-walker: 3.0.3
|
|
10421
10342
|
pathe: 2.0.3
|
|
10422
10343
|
|
|
@@ -10430,10 +10351,10 @@ snapshots:
|
|
|
10430
10351
|
|
|
10431
10352
|
asynckit@0.4.0: {}
|
|
10432
10353
|
|
|
10433
|
-
autoprefixer@10.5.
|
|
10354
|
+
autoprefixer@10.5.1(postcss@8.5.15):
|
|
10434
10355
|
dependencies:
|
|
10435
|
-
browserslist: 4.28.
|
|
10436
|
-
caniuse-lite: 1.0.
|
|
10356
|
+
browserslist: 4.28.4
|
|
10357
|
+
caniuse-lite: 1.0.30001799
|
|
10437
10358
|
fraction.js: 5.3.4
|
|
10438
10359
|
picocolors: 1.1.1
|
|
10439
10360
|
postcss: 8.5.15
|
|
@@ -10443,10 +10364,10 @@ snapshots:
|
|
|
10443
10364
|
dependencies:
|
|
10444
10365
|
possible-typed-array-names: 1.1.0
|
|
10445
10366
|
|
|
10446
|
-
axios@1.
|
|
10367
|
+
axios@1.18.1(supports-color@10.2.2):
|
|
10447
10368
|
dependencies:
|
|
10448
10369
|
follow-redirects: 1.16.0
|
|
10449
|
-
form-data: 4.0.
|
|
10370
|
+
form-data: 4.0.6
|
|
10450
10371
|
https-proxy-agent: 5.0.1(supports-color@10.2.2)
|
|
10451
10372
|
proxy-from-env: 2.1.0
|
|
10452
10373
|
transitivePeerDependencies:
|
|
@@ -10501,7 +10422,7 @@ snapshots:
|
|
|
10501
10422
|
|
|
10502
10423
|
base64-js@1.5.1: {}
|
|
10503
10424
|
|
|
10504
|
-
baseline-browser-mapping@2.10.
|
|
10425
|
+
baseline-browser-mapping@2.10.38: {}
|
|
10505
10426
|
|
|
10506
10427
|
big.js@5.2.2: {}
|
|
10507
10428
|
|
|
@@ -10560,13 +10481,13 @@ snapshots:
|
|
|
10560
10481
|
dependencies:
|
|
10561
10482
|
fill-range: 7.1.1
|
|
10562
10483
|
|
|
10563
|
-
browserslist@4.28.
|
|
10484
|
+
browserslist@4.28.4:
|
|
10564
10485
|
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.
|
|
10486
|
+
baseline-browser-mapping: 2.10.38
|
|
10487
|
+
caniuse-lite: 1.0.30001799
|
|
10488
|
+
electron-to-chromium: 1.5.378
|
|
10489
|
+
node-releases: 2.0.49
|
|
10490
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.4)
|
|
10570
10491
|
|
|
10571
10492
|
buffer-alloc-unsafe@1.1.0: {}
|
|
10572
10493
|
|
|
@@ -10633,7 +10554,7 @@ snapshots:
|
|
|
10633
10554
|
|
|
10634
10555
|
camelcase@5.3.1: {}
|
|
10635
10556
|
|
|
10636
|
-
caniuse-lite@1.0.
|
|
10557
|
+
caniuse-lite@1.0.30001799: {}
|
|
10637
10558
|
|
|
10638
10559
|
capital-case@1.0.4:
|
|
10639
10560
|
dependencies:
|
|
@@ -10684,7 +10605,7 @@ snapshots:
|
|
|
10684
10605
|
|
|
10685
10606
|
character-reference-invalid@1.1.4: {}
|
|
10686
10607
|
|
|
10687
|
-
chardet@2.
|
|
10608
|
+
chardet@2.2.0: {}
|
|
10688
10609
|
|
|
10689
10610
|
charenc@0.0.2: {}
|
|
10690
10611
|
|
|
@@ -10784,7 +10705,7 @@ snapshots:
|
|
|
10784
10705
|
|
|
10785
10706
|
compressible@2.0.18:
|
|
10786
10707
|
dependencies:
|
|
10787
|
-
mime-db: 1.
|
|
10708
|
+
mime-db: 1.54.0
|
|
10788
10709
|
|
|
10789
10710
|
compressing@1.10.5:
|
|
10790
10711
|
dependencies:
|
|
@@ -10822,7 +10743,7 @@ snapshots:
|
|
|
10822
10743
|
spawn-command: 0.0.2
|
|
10823
10744
|
supports-color: 8.1.1
|
|
10824
10745
|
tree-kill: 1.2.2
|
|
10825
|
-
yargs: 17.7.
|
|
10746
|
+
yargs: 17.7.3
|
|
10826
10747
|
|
|
10827
10748
|
confbox@0.1.8: {}
|
|
10828
10749
|
|
|
@@ -11060,7 +10981,7 @@ snapshots:
|
|
|
11060
10981
|
|
|
11061
10982
|
ee-first@1.1.1: {}
|
|
11062
10983
|
|
|
11063
|
-
electron-to-chromium@1.5.
|
|
10984
|
+
electron-to-chromium@1.5.378: {}
|
|
11064
10985
|
|
|
11065
10986
|
elementtree@0.1.7:
|
|
11066
10987
|
dependencies:
|
|
@@ -11287,12 +11208,12 @@ snapshots:
|
|
|
11287
11208
|
dependencies:
|
|
11288
11209
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11289
11210
|
|
|
11290
|
-
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.
|
|
11211
|
+
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
11212
|
dependencies:
|
|
11292
11213
|
'@es-joy/jsdoccomment': 0.84.0
|
|
11293
|
-
'@typescript-eslint/rule-tester': 8.
|
|
11294
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
11295
|
-
'@typescript-eslint/utils': 8.
|
|
11214
|
+
'@typescript-eslint/rule-tester': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11215
|
+
'@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
11216
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11296
11217
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11297
11218
|
|
|
11298
11219
|
eslint-plugin-depend@1.5.0(eslint@10.5.0(jiti@2.7.0)):
|
|
@@ -11300,7 +11221,7 @@ snapshots:
|
|
|
11300
11221
|
empathic: 2.0.1
|
|
11301
11222
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11302
11223
|
module-replacements: 2.11.0
|
|
11303
|
-
semver: 7.8.
|
|
11224
|
+
semver: 7.8.5
|
|
11304
11225
|
|
|
11305
11226
|
eslint-plugin-eslint-comments@3.2.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11306
11227
|
dependencies:
|
|
@@ -11356,27 +11277,27 @@ snapshots:
|
|
|
11356
11277
|
transitivePeerDependencies:
|
|
11357
11278
|
- supports-color
|
|
11358
11279
|
|
|
11359
|
-
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.
|
|
11280
|
+
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
11281
|
dependencies:
|
|
11361
11282
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11362
11283
|
optionalDependencies:
|
|
11363
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
11284
|
+
'@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
11285
|
|
|
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.
|
|
11286
|
+
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
11287
|
dependencies:
|
|
11367
11288
|
'@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0))
|
|
11368
11289
|
eslint: 10.5.0(jiti@2.7.0)
|
|
11369
11290
|
natural-compare: 1.4.0
|
|
11370
11291
|
nth-check: 2.1.1
|
|
11371
|
-
postcss-selector-parser: 7.1.
|
|
11372
|
-
semver: 7.8.
|
|
11292
|
+
postcss-selector-parser: 7.1.4
|
|
11293
|
+
semver: 7.8.5
|
|
11373
11294
|
vue-eslint-parser: 10.4.1(eslint@10.5.0(jiti@2.7.0))
|
|
11374
11295
|
xml-name-validator: 4.0.0
|
|
11375
11296
|
optionalDependencies:
|
|
11376
11297
|
'@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0))
|
|
11377
|
-
'@typescript-eslint/parser': 8.
|
|
11298
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
11378
11299
|
|
|
11379
|
-
eslint-plugin-yml@3.
|
|
11300
|
+
eslint-plugin-yml@3.5.0(eslint@10.5.0(jiti@2.7.0)):
|
|
11380
11301
|
dependencies:
|
|
11381
11302
|
'@eslint/core': 1.2.1
|
|
11382
11303
|
'@eslint/plugin-kit': 0.7.2
|
|
@@ -11439,14 +11360,14 @@ snapshots:
|
|
|
11439
11360
|
|
|
11440
11361
|
espree@10.4.0:
|
|
11441
11362
|
dependencies:
|
|
11442
|
-
acorn: 8.
|
|
11443
|
-
acorn-jsx: 5.3.2(acorn@8.
|
|
11363
|
+
acorn: 8.17.0
|
|
11364
|
+
acorn-jsx: 5.3.2(acorn@8.17.0)
|
|
11444
11365
|
eslint-visitor-keys: 4.2.1
|
|
11445
11366
|
|
|
11446
11367
|
espree@11.2.0:
|
|
11447
11368
|
dependencies:
|
|
11448
|
-
acorn: 8.
|
|
11449
|
-
acorn-jsx: 5.3.2(acorn@8.
|
|
11369
|
+
acorn: 8.17.0
|
|
11370
|
+
acorn-jsx: 5.3.2(acorn@8.17.0)
|
|
11450
11371
|
eslint-visitor-keys: 5.0.1
|
|
11451
11372
|
|
|
11452
11373
|
esprima@4.0.1: {}
|
|
@@ -11653,7 +11574,7 @@ snapshots:
|
|
|
11653
11574
|
cross-spawn: 7.0.6
|
|
11654
11575
|
signal-exit: 4.1.0
|
|
11655
11576
|
|
|
11656
|
-
form-data@4.0.
|
|
11577
|
+
form-data@4.0.6:
|
|
11657
11578
|
dependencies:
|
|
11658
11579
|
asynckit: 0.4.0
|
|
11659
11580
|
combined-stream: 1.0.8
|
|
@@ -11763,7 +11684,7 @@ snapshots:
|
|
|
11763
11684
|
once: 1.4.0
|
|
11764
11685
|
path-is-absolute: 1.0.1
|
|
11765
11686
|
|
|
11766
|
-
globals@17.
|
|
11687
|
+
globals@17.7.0: {}
|
|
11767
11688
|
|
|
11768
11689
|
globby@14.1.0:
|
|
11769
11690
|
dependencies:
|
|
@@ -11827,7 +11748,7 @@ snapshots:
|
|
|
11827
11748
|
capital-case: 1.0.4
|
|
11828
11749
|
tslib: 2.8.1
|
|
11829
11750
|
|
|
11830
|
-
hono@4.12.
|
|
11751
|
+
hono@4.12.27: {}
|
|
11831
11752
|
|
|
11832
11753
|
hookable@6.1.1: {}
|
|
11833
11754
|
|
|
@@ -11901,7 +11822,7 @@ snapshots:
|
|
|
11901
11822
|
|
|
11902
11823
|
immediate@3.0.6: {}
|
|
11903
11824
|
|
|
11904
|
-
immutable@5.1.
|
|
11825
|
+
immutable@5.1.7: {}
|
|
11905
11826
|
|
|
11906
11827
|
import-from-string@0.0.5:
|
|
11907
11828
|
dependencies:
|
|
@@ -11929,17 +11850,17 @@ snapshots:
|
|
|
11929
11850
|
|
|
11930
11851
|
ini@6.0.0: {}
|
|
11931
11852
|
|
|
11932
|
-
inquirer@13.4.3(@types/node@22.
|
|
11853
|
+
inquirer@13.4.3(@types/node@22.20.0):
|
|
11933
11854
|
dependencies:
|
|
11934
11855
|
'@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.
|
|
11856
|
+
'@inquirer/core': 11.2.1(@types/node@22.20.0)
|
|
11857
|
+
'@inquirer/prompts': 8.5.2(@types/node@22.20.0)
|
|
11858
|
+
'@inquirer/type': 4.0.7(@types/node@22.20.0)
|
|
11938
11859
|
mute-stream: 3.0.0
|
|
11939
11860
|
run-async: 4.0.6
|
|
11940
11861
|
rxjs: 7.8.2
|
|
11941
11862
|
optionalDependencies:
|
|
11942
|
-
'@types/node': 22.
|
|
11863
|
+
'@types/node': 22.20.0
|
|
11943
11864
|
|
|
11944
11865
|
internal-slot@1.1.0:
|
|
11945
11866
|
dependencies:
|
|
@@ -12120,6 +12041,10 @@ snapshots:
|
|
|
12120
12041
|
dependencies:
|
|
12121
12042
|
argparse: 2.0.1
|
|
12122
12043
|
|
|
12044
|
+
js-yaml@4.2.0:
|
|
12045
|
+
dependencies:
|
|
12046
|
+
argparse: 2.0.1
|
|
12047
|
+
|
|
12123
12048
|
jsdoc-type-pratt-parser@7.1.1: {}
|
|
12124
12049
|
|
|
12125
12050
|
jsdoc-type-pratt-parser@7.2.0: {}
|
|
@@ -12146,9 +12071,9 @@ snapshots:
|
|
|
12146
12071
|
|
|
12147
12072
|
jsonc-eslint-parser@3.1.0:
|
|
12148
12073
|
dependencies:
|
|
12149
|
-
acorn: 8.
|
|
12074
|
+
acorn: 8.17.0
|
|
12150
12075
|
eslint-visitor-keys: 5.0.1
|
|
12151
|
-
semver: 7.8.
|
|
12076
|
+
semver: 7.8.5
|
|
12152
12077
|
|
|
12153
12078
|
jsonfile@6.2.1:
|
|
12154
12079
|
dependencies:
|
|
@@ -12800,7 +12725,7 @@ snapshots:
|
|
|
12800
12725
|
|
|
12801
12726
|
mlly@1.8.2:
|
|
12802
12727
|
dependencies:
|
|
12803
|
-
acorn: 8.
|
|
12728
|
+
acorn: 8.17.0
|
|
12804
12729
|
pathe: 2.0.3
|
|
12805
12730
|
pkg-types: 1.3.1
|
|
12806
12731
|
ufo: 1.6.4
|
|
@@ -12815,7 +12740,7 @@ snapshots:
|
|
|
12815
12740
|
|
|
12816
12741
|
mute-stream@3.0.0: {}
|
|
12817
12742
|
|
|
12818
|
-
nanoid@3.3.
|
|
12743
|
+
nanoid@3.3.15: {}
|
|
12819
12744
|
|
|
12820
12745
|
natural-compare@1.4.0: {}
|
|
12821
12746
|
|
|
@@ -12837,7 +12762,7 @@ snapshots:
|
|
|
12837
12762
|
|
|
12838
12763
|
node-hex@1.0.1: {}
|
|
12839
12764
|
|
|
12840
|
-
node-releases@2.0.
|
|
12765
|
+
node-releases@2.0.49: {}
|
|
12841
12766
|
|
|
12842
12767
|
nopt@9.0.0:
|
|
12843
12768
|
dependencies:
|
|
@@ -12846,14 +12771,14 @@ snapshots:
|
|
|
12846
12771
|
normalize-package-data@6.0.2:
|
|
12847
12772
|
dependencies:
|
|
12848
12773
|
hosted-git-info: 7.0.2
|
|
12849
|
-
semver: 7.8.
|
|
12774
|
+
semver: 7.8.5
|
|
12850
12775
|
validate-npm-package-license: 3.0.4
|
|
12851
12776
|
|
|
12852
12777
|
normalize-path@3.0.0: {}
|
|
12853
12778
|
|
|
12854
12779
|
npm-install-checks@8.0.0:
|
|
12855
12780
|
dependencies:
|
|
12856
|
-
semver: 7.8.
|
|
12781
|
+
semver: 7.8.5
|
|
12857
12782
|
|
|
12858
12783
|
npm-normalize-package-bin@5.0.0: {}
|
|
12859
12784
|
|
|
@@ -12861,7 +12786,7 @@ snapshots:
|
|
|
12861
12786
|
dependencies:
|
|
12862
12787
|
hosted-git-info: 9.0.3
|
|
12863
12788
|
proc-log: 6.1.0
|
|
12864
|
-
semver: 7.8.
|
|
12789
|
+
semver: 7.8.5
|
|
12865
12790
|
validate-npm-package-name: 7.0.2
|
|
12866
12791
|
|
|
12867
12792
|
npm-pick-manifest@11.0.3:
|
|
@@ -12869,7 +12794,7 @@ snapshots:
|
|
|
12869
12794
|
npm-install-checks: 8.0.0
|
|
12870
12795
|
npm-normalize-package-bin: 5.0.0
|
|
12871
12796
|
npm-package-arg: 13.0.2
|
|
12872
|
-
semver: 7.8.
|
|
12797
|
+
semver: 7.8.5
|
|
12873
12798
|
|
|
12874
12799
|
nth-check@2.1.1:
|
|
12875
12800
|
dependencies:
|
|
@@ -12897,7 +12822,7 @@ snapshots:
|
|
|
12897
12822
|
has-symbols: 1.1.0
|
|
12898
12823
|
object-keys: 1.1.1
|
|
12899
12824
|
|
|
12900
|
-
obug@2.1.
|
|
12825
|
+
obug@2.1.3: {}
|
|
12901
12826
|
|
|
12902
12827
|
on-finished@2.3.0:
|
|
12903
12828
|
dependencies:
|
|
@@ -12959,27 +12884,27 @@ snapshots:
|
|
|
12959
12884
|
'@oxfmt/binding-win32-ia32-msvc': 0.45.0
|
|
12960
12885
|
'@oxfmt/binding-win32-x64-msvc': 0.45.0
|
|
12961
12886
|
|
|
12962
|
-
oxlint@1.
|
|
12887
|
+
oxlint@1.71.0:
|
|
12963
12888
|
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.
|
|
12889
|
+
'@oxlint/binding-android-arm-eabi': 1.71.0
|
|
12890
|
+
'@oxlint/binding-android-arm64': 1.71.0
|
|
12891
|
+
'@oxlint/binding-darwin-arm64': 1.71.0
|
|
12892
|
+
'@oxlint/binding-darwin-x64': 1.71.0
|
|
12893
|
+
'@oxlint/binding-freebsd-x64': 1.71.0
|
|
12894
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.71.0
|
|
12895
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.71.0
|
|
12896
|
+
'@oxlint/binding-linux-arm64-gnu': 1.71.0
|
|
12897
|
+
'@oxlint/binding-linux-arm64-musl': 1.71.0
|
|
12898
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.71.0
|
|
12899
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.71.0
|
|
12900
|
+
'@oxlint/binding-linux-riscv64-musl': 1.71.0
|
|
12901
|
+
'@oxlint/binding-linux-s390x-gnu': 1.71.0
|
|
12902
|
+
'@oxlint/binding-linux-x64-gnu': 1.71.0
|
|
12903
|
+
'@oxlint/binding-linux-x64-musl': 1.71.0
|
|
12904
|
+
'@oxlint/binding-openharmony-arm64': 1.71.0
|
|
12905
|
+
'@oxlint/binding-win32-arm64-msvc': 1.71.0
|
|
12906
|
+
'@oxlint/binding-win32-ia32-msvc': 1.71.0
|
|
12907
|
+
'@oxlint/binding-win32-x64-msvc': 1.71.0
|
|
12983
12908
|
|
|
12984
12909
|
p-limit@2.3.0:
|
|
12985
12910
|
dependencies:
|
|
@@ -13099,13 +13024,13 @@ snapshots:
|
|
|
13099
13024
|
dependencies:
|
|
13100
13025
|
icss-utils: 5.1.0(postcss@8.1.10)
|
|
13101
13026
|
postcss: 8.1.10
|
|
13102
|
-
postcss-selector-parser: 7.1.
|
|
13027
|
+
postcss-selector-parser: 7.1.4
|
|
13103
13028
|
postcss-value-parser: 4.2.0
|
|
13104
13029
|
|
|
13105
13030
|
postcss-modules-scope@3.2.1(postcss@8.1.10):
|
|
13106
13031
|
dependencies:
|
|
13107
13032
|
postcss: 8.1.10
|
|
13108
|
-
postcss-selector-parser: 7.1.
|
|
13033
|
+
postcss-selector-parser: 7.1.4
|
|
13109
13034
|
|
|
13110
13035
|
postcss-modules-values@4.0.0(postcss@8.1.10):
|
|
13111
13036
|
dependencies:
|
|
@@ -13136,7 +13061,7 @@ snapshots:
|
|
|
13136
13061
|
uniq: 1.0.1
|
|
13137
13062
|
util-deprecate: 1.0.2
|
|
13138
13063
|
|
|
13139
|
-
postcss-selector-parser@7.1.
|
|
13064
|
+
postcss-selector-parser@7.1.4:
|
|
13140
13065
|
dependencies:
|
|
13141
13066
|
cssesc: 3.0.0
|
|
13142
13067
|
util-deprecate: 1.0.2
|
|
@@ -13146,13 +13071,13 @@ snapshots:
|
|
|
13146
13071
|
postcss@8.1.10:
|
|
13147
13072
|
dependencies:
|
|
13148
13073
|
colorette: 1.4.0
|
|
13149
|
-
nanoid: 3.3.
|
|
13074
|
+
nanoid: 3.3.15
|
|
13150
13075
|
source-map: 0.6.1
|
|
13151
13076
|
vfile-location: 3.2.0
|
|
13152
13077
|
|
|
13153
13078
|
postcss@8.5.15:
|
|
13154
13079
|
dependencies:
|
|
13155
|
-
nanoid: 3.3.
|
|
13080
|
+
nanoid: 3.3.15
|
|
13156
13081
|
picocolors: 1.1.1
|
|
13157
13082
|
source-map-js: 1.2.1
|
|
13158
13083
|
|
|
@@ -13192,14 +13117,14 @@ snapshots:
|
|
|
13192
13117
|
|
|
13193
13118
|
quansync@1.0.0: {}
|
|
13194
13119
|
|
|
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.
|
|
13120
|
+
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
13121
|
dependencies:
|
|
13197
13122
|
'@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.
|
|
13123
|
+
'@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
13124
|
chalk: 3.0.0
|
|
13200
13125
|
esbuild: 0.25.12
|
|
13201
13126
|
fs-extra: 11.3.5
|
|
13202
|
-
vite: 8.0
|
|
13127
|
+
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
13128
|
zova-vite: link:packages-utils/zova-vite
|
|
13204
13129
|
transitivePeerDependencies:
|
|
13205
13130
|
- '@electron/packager'
|
|
@@ -13245,7 +13170,7 @@ snapshots:
|
|
|
13245
13170
|
rc-config-loader@4.1.4:
|
|
13246
13171
|
dependencies:
|
|
13247
13172
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13248
|
-
js-yaml: 4.
|
|
13173
|
+
js-yaml: 4.2.0
|
|
13249
13174
|
json5: 2.2.3
|
|
13250
13175
|
require-from-string: 2.0.2
|
|
13251
13176
|
transitivePeerDependencies:
|
|
@@ -13368,40 +13293,40 @@ snapshots:
|
|
|
13368
13293
|
glob: 13.0.6
|
|
13369
13294
|
package-json-from-dist: 1.0.1
|
|
13370
13295
|
|
|
13371
|
-
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.
|
|
13296
|
+
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
13297
|
dependencies:
|
|
13373
13298
|
'@babel/generator': 8.0.0-rc.2
|
|
13374
13299
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
13375
13300
|
'@babel/parser': 8.0.0-rc.2
|
|
13376
13301
|
'@babel/types': 8.0.0-rc.2
|
|
13377
|
-
ast-kit: 3.0.0
|
|
13302
|
+
ast-kit: 3.0.0
|
|
13378
13303
|
birpc: 4.0.0
|
|
13379
13304
|
dts-resolver: 2.1.3
|
|
13380
13305
|
get-tsconfig: 4.14.0
|
|
13381
|
-
obug: 2.1.
|
|
13382
|
-
rolldown: 1.1.
|
|
13306
|
+
obug: 2.1.3
|
|
13307
|
+
rolldown: 1.1.3
|
|
13383
13308
|
optionalDependencies:
|
|
13384
|
-
'@typescript/native-preview': 7.0.0-dev.
|
|
13309
|
+
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13385
13310
|
typescript: 5.9.3
|
|
13386
13311
|
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13387
13312
|
transitivePeerDependencies:
|
|
13388
13313
|
- oxc-resolver
|
|
13389
13314
|
|
|
13390
|
-
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.
|
|
13315
|
+
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
13316
|
dependencies:
|
|
13392
13317
|
'@babel/generator': 8.0.0-rc.3
|
|
13393
13318
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
13394
13319
|
'@babel/parser': 8.0.0-rc.3
|
|
13395
13320
|
'@babel/types': 8.0.0-rc.3
|
|
13396
|
-
ast-kit: 3.0.0
|
|
13321
|
+
ast-kit: 3.0.0
|
|
13397
13322
|
birpc: 4.0.0
|
|
13398
13323
|
dts-resolver: 2.1.3
|
|
13399
13324
|
get-tsconfig: 4.14.0
|
|
13400
|
-
obug: 2.1.
|
|
13325
|
+
obug: 2.1.3
|
|
13401
13326
|
picomatch: 4.0.4
|
|
13402
13327
|
rolldown: 1.0.0-rc.17
|
|
13403
13328
|
optionalDependencies:
|
|
13404
|
-
'@typescript/native-preview': 7.0.0-dev.
|
|
13329
|
+
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13405
13330
|
typescript: 5.9.3
|
|
13406
13331
|
vue-tsc: 3.3.5(typescript@5.9.3)
|
|
13407
13332
|
transitivePeerDependencies:
|
|
@@ -13428,56 +13353,35 @@ snapshots:
|
|
|
13428
13353
|
'@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.17
|
|
13429
13354
|
'@rolldown/binding-win32-x64-msvc': 1.0.0-rc.17
|
|
13430
13355
|
|
|
13431
|
-
rolldown@1.
|
|
13356
|
+
rolldown@1.1.3:
|
|
13432
13357
|
dependencies:
|
|
13433
|
-
'@oxc-project/types': 0.
|
|
13434
|
-
'@rolldown/pluginutils': 1.0.1
|
|
13435
|
-
optionalDependencies:
|
|
13436
|
-
'@rolldown/binding-android-arm64': 1.0.3
|
|
13437
|
-
'@rolldown/binding-darwin-arm64': 1.0.3
|
|
13438
|
-
'@rolldown/binding-darwin-x64': 1.0.3
|
|
13439
|
-
'@rolldown/binding-freebsd-x64': 1.0.3
|
|
13440
|
-
'@rolldown/binding-linux-arm-gnueabihf': 1.0.3
|
|
13441
|
-
'@rolldown/binding-linux-arm64-gnu': 1.0.3
|
|
13442
|
-
'@rolldown/binding-linux-arm64-musl': 1.0.3
|
|
13443
|
-
'@rolldown/binding-linux-ppc64-gnu': 1.0.3
|
|
13444
|
-
'@rolldown/binding-linux-s390x-gnu': 1.0.3
|
|
13445
|
-
'@rolldown/binding-linux-x64-gnu': 1.0.3
|
|
13446
|
-
'@rolldown/binding-linux-x64-musl': 1.0.3
|
|
13447
|
-
'@rolldown/binding-openharmony-arm64': 1.0.3
|
|
13448
|
-
'@rolldown/binding-wasm32-wasi': 1.0.3
|
|
13449
|
-
'@rolldown/binding-win32-arm64-msvc': 1.0.3
|
|
13450
|
-
'@rolldown/binding-win32-x64-msvc': 1.0.3
|
|
13451
|
-
|
|
13452
|
-
rolldown@1.1.0:
|
|
13453
|
-
dependencies:
|
|
13454
|
-
'@oxc-project/types': 0.134.0
|
|
13358
|
+
'@oxc-project/types': 0.137.0
|
|
13455
13359
|
'@rolldown/pluginutils': 1.0.1
|
|
13456
13360
|
optionalDependencies:
|
|
13457
|
-
'@rolldown/binding-android-arm64': 1.1.
|
|
13458
|
-
'@rolldown/binding-darwin-arm64': 1.1.
|
|
13459
|
-
'@rolldown/binding-darwin-x64': 1.1.
|
|
13460
|
-
'@rolldown/binding-freebsd-x64': 1.1.
|
|
13461
|
-
'@rolldown/binding-linux-arm-gnueabihf': 1.1.
|
|
13462
|
-
'@rolldown/binding-linux-arm64-gnu': 1.1.
|
|
13463
|
-
'@rolldown/binding-linux-arm64-musl': 1.1.
|
|
13464
|
-
'@rolldown/binding-linux-ppc64-gnu': 1.1.
|
|
13465
|
-
'@rolldown/binding-linux-s390x-gnu': 1.1.
|
|
13466
|
-
'@rolldown/binding-linux-x64-gnu': 1.1.
|
|
13467
|
-
'@rolldown/binding-linux-x64-musl': 1.1.
|
|
13468
|
-
'@rolldown/binding-openharmony-arm64': 1.1.
|
|
13469
|
-
'@rolldown/binding-wasm32-wasi': 1.1.
|
|
13470
|
-
'@rolldown/binding-win32-arm64-msvc': 1.1.
|
|
13471
|
-
'@rolldown/binding-win32-x64-msvc': 1.1.
|
|
13472
|
-
|
|
13473
|
-
rollup-plugin-visualizer@7.0.1(rolldown@1.1.
|
|
13361
|
+
'@rolldown/binding-android-arm64': 1.1.3
|
|
13362
|
+
'@rolldown/binding-darwin-arm64': 1.1.3
|
|
13363
|
+
'@rolldown/binding-darwin-x64': 1.1.3
|
|
13364
|
+
'@rolldown/binding-freebsd-x64': 1.1.3
|
|
13365
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.1.3
|
|
13366
|
+
'@rolldown/binding-linux-arm64-gnu': 1.1.3
|
|
13367
|
+
'@rolldown/binding-linux-arm64-musl': 1.1.3
|
|
13368
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.1.3
|
|
13369
|
+
'@rolldown/binding-linux-s390x-gnu': 1.1.3
|
|
13370
|
+
'@rolldown/binding-linux-x64-gnu': 1.1.3
|
|
13371
|
+
'@rolldown/binding-linux-x64-musl': 1.1.3
|
|
13372
|
+
'@rolldown/binding-openharmony-arm64': 1.1.3
|
|
13373
|
+
'@rolldown/binding-wasm32-wasi': 1.1.3
|
|
13374
|
+
'@rolldown/binding-win32-arm64-msvc': 1.1.3
|
|
13375
|
+
'@rolldown/binding-win32-x64-msvc': 1.1.3
|
|
13376
|
+
|
|
13377
|
+
rollup-plugin-visualizer@7.0.1(rolldown@1.1.3):
|
|
13474
13378
|
dependencies:
|
|
13475
13379
|
open: 11.0.0
|
|
13476
13380
|
picomatch: 4.0.4
|
|
13477
13381
|
source-map: 0.7.6
|
|
13478
13382
|
yargs: 18.0.0
|
|
13479
13383
|
optionalDependencies:
|
|
13480
|
-
rolldown: 1.1.
|
|
13384
|
+
rolldown: 1.1.3
|
|
13481
13385
|
|
|
13482
13386
|
router@2.2.0(supports-color@10.2.2):
|
|
13483
13387
|
dependencies:
|
|
@@ -13573,9 +13477,9 @@ snapshots:
|
|
|
13573
13477
|
|
|
13574
13478
|
sass-embedded@1.100.0:
|
|
13575
13479
|
dependencies:
|
|
13576
|
-
'@bufbuild/protobuf': 2.12.
|
|
13480
|
+
'@bufbuild/protobuf': 2.12.1
|
|
13577
13481
|
colorjs.io: 0.5.2
|
|
13578
|
-
immutable: 5.1.
|
|
13482
|
+
immutable: 5.1.7
|
|
13579
13483
|
rxjs: 7.8.2
|
|
13580
13484
|
supports-color: 8.1.1
|
|
13581
13485
|
sync-child-process: 1.0.2
|
|
@@ -13603,7 +13507,7 @@ snapshots:
|
|
|
13603
13507
|
sass@1.100.0:
|
|
13604
13508
|
dependencies:
|
|
13605
13509
|
chokidar: 5.0.0
|
|
13606
|
-
immutable: 5.1.
|
|
13510
|
+
immutable: 5.1.7
|
|
13607
13511
|
source-map-js: 1.2.1
|
|
13608
13512
|
optionalDependencies:
|
|
13609
13513
|
'@parcel/watcher': 2.5.6
|
|
@@ -13612,7 +13516,7 @@ snapshots:
|
|
|
13612
13516
|
sass@1.101.0:
|
|
13613
13517
|
dependencies:
|
|
13614
13518
|
chokidar: 5.0.0
|
|
13615
|
-
immutable: 5.1.
|
|
13519
|
+
immutable: 5.1.7
|
|
13616
13520
|
source-map-js: 1.2.1
|
|
13617
13521
|
optionalDependencies:
|
|
13618
13522
|
'@parcel/watcher': 2.5.6
|
|
@@ -13634,7 +13538,7 @@ snapshots:
|
|
|
13634
13538
|
|
|
13635
13539
|
semver@6.3.1: {}
|
|
13636
13540
|
|
|
13637
|
-
semver@7.8.
|
|
13541
|
+
semver@7.8.5: {}
|
|
13638
13542
|
|
|
13639
13543
|
send@1.2.1(supports-color@10.2.2):
|
|
13640
13544
|
dependencies:
|
|
@@ -13931,7 +13835,7 @@ snapshots:
|
|
|
13931
13835
|
terser@5.48.0:
|
|
13932
13836
|
dependencies:
|
|
13933
13837
|
'@jridgewell/source-map': 0.3.11
|
|
13934
|
-
acorn: 8.
|
|
13838
|
+
acorn: 8.17.0
|
|
13935
13839
|
commander: 2.20.3
|
|
13936
13840
|
source-map-support: 0.5.21
|
|
13937
13841
|
|
|
@@ -14042,7 +13946,7 @@ snapshots:
|
|
|
14042
13946
|
optionalDependencies:
|
|
14043
13947
|
typescript: 5.9.3
|
|
14044
13948
|
|
|
14045
|
-
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.
|
|
13949
|
+
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
13950
|
dependencies:
|
|
14047
13951
|
ansis: 4.3.1
|
|
14048
13952
|
cac: 7.0.0
|
|
@@ -14050,11 +13954,11 @@ snapshots:
|
|
|
14050
13954
|
empathic: 2.0.1
|
|
14051
13955
|
hookable: 6.1.1
|
|
14052
13956
|
import-without-cache: 0.3.3
|
|
14053
|
-
obug: 2.1.
|
|
13957
|
+
obug: 2.1.3
|
|
14054
13958
|
picomatch: 4.0.4
|
|
14055
13959
|
rolldown: 1.0.0-rc.17
|
|
14056
|
-
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.
|
|
14057
|
-
semver: 7.8.
|
|
13960
|
+
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))
|
|
13961
|
+
semver: 7.8.5
|
|
14058
13962
|
tinyexec: 1.2.4
|
|
14059
13963
|
tinyglobby: 0.2.17
|
|
14060
13964
|
tree-kill: 1.2.2
|
|
@@ -14095,12 +13999,12 @@ snapshots:
|
|
|
14095
13999
|
es-errors: 1.3.0
|
|
14096
14000
|
is-typed-array: 1.1.15
|
|
14097
14001
|
|
|
14098
|
-
typescript-eslint@8.
|
|
14002
|
+
typescript-eslint@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3):
|
|
14099
14003
|
dependencies:
|
|
14100
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
14101
|
-
'@typescript-eslint/parser': 8.
|
|
14102
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
14103
|
-
'@typescript-eslint/utils': 8.
|
|
14004
|
+
'@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)
|
|
14005
|
+
'@typescript-eslint/parser': 8.62.0(eslint@10.5.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
14006
|
+
'@typescript-eslint/typescript-estree': 8.62.0(supports-color@10.2.2)(typescript@5.9.3)
|
|
14007
|
+
'@typescript-eslint/utils': 8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14104
14008
|
eslint: 10.5.0(jiti@2.7.0)
|
|
14105
14009
|
typescript: 5.9.3
|
|
14106
14010
|
transitivePeerDependencies:
|
|
@@ -14122,7 +14026,7 @@ snapshots:
|
|
|
14122
14026
|
|
|
14123
14027
|
undici-types@6.21.0: {}
|
|
14124
14028
|
|
|
14125
|
-
undici@7.
|
|
14029
|
+
undici@7.28.0: {}
|
|
14126
14030
|
|
|
14127
14031
|
unicorn-magic@0.1.0: {}
|
|
14128
14032
|
|
|
@@ -14188,9 +14092,9 @@ snapshots:
|
|
|
14188
14092
|
optionalDependencies:
|
|
14189
14093
|
synckit: 0.11.13
|
|
14190
14094
|
|
|
14191
|
-
update-browserslist-db@1.2.3(browserslist@4.28.
|
|
14095
|
+
update-browserslist-db@1.2.3(browserslist@4.28.4):
|
|
14192
14096
|
dependencies:
|
|
14193
|
-
browserslist: 4.28.
|
|
14097
|
+
browserslist: 4.28.4
|
|
14194
14098
|
escalade: 3.2.0
|
|
14195
14099
|
picocolors: 1.1.1
|
|
14196
14100
|
|
|
@@ -14210,12 +14114,12 @@ snapshots:
|
|
|
14210
14114
|
|
|
14211
14115
|
urllib@4.9.0:
|
|
14212
14116
|
dependencies:
|
|
14213
|
-
form-data: 4.0.
|
|
14117
|
+
form-data: 4.0.6
|
|
14214
14118
|
formstream: 1.5.2
|
|
14215
14119
|
mime-types: 2.1.35
|
|
14216
14120
|
qs: 6.15.2
|
|
14217
14121
|
type-fest: 4.41.0
|
|
14218
|
-
undici: 7.
|
|
14122
|
+
undici: 7.28.0
|
|
14219
14123
|
ylru: 2.0.0
|
|
14220
14124
|
|
|
14221
14125
|
util-deprecate@1.0.2: {}
|
|
@@ -14249,10 +14153,10 @@ snapshots:
|
|
|
14249
14153
|
unist-util-stringify-position: 2.0.3
|
|
14250
14154
|
vfile-message: 2.0.4
|
|
14251
14155
|
|
|
14252
|
-
vite-plugin-devtools-json@1.0.0(vite@8.0
|
|
14156
|
+
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
14157
|
dependencies:
|
|
14254
14158
|
uuid: 11.1.1
|
|
14255
|
-
vite: 8.0
|
|
14159
|
+
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
14160
|
|
|
14257
14161
|
vite-plugin-fake-server-turbo@3.0.18:
|
|
14258
14162
|
dependencies:
|
|
@@ -14264,15 +14168,15 @@ snapshots:
|
|
|
14264
14168
|
path-to-regexp: 8.4.2
|
|
14265
14169
|
picocolors: 1.1.1
|
|
14266
14170
|
|
|
14267
|
-
vite@8.0
|
|
14171
|
+
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
14172
|
dependencies:
|
|
14269
14173
|
lightningcss: 1.32.0
|
|
14270
14174
|
picomatch: 4.0.4
|
|
14271
14175
|
postcss: 8.5.15
|
|
14272
|
-
rolldown: 1.
|
|
14176
|
+
rolldown: 1.1.3
|
|
14273
14177
|
tinyglobby: 0.2.17
|
|
14274
14178
|
optionalDependencies:
|
|
14275
|
-
'@types/node': 22.
|
|
14179
|
+
'@types/node': 22.20.0
|
|
14276
14180
|
esbuild: 0.25.12
|
|
14277
14181
|
fsevents: 2.3.3
|
|
14278
14182
|
jiti: 2.7.0
|
|
@@ -14281,15 +14185,15 @@ snapshots:
|
|
|
14281
14185
|
terser: 5.48.0
|
|
14282
14186
|
yaml: 2.9.0
|
|
14283
14187
|
|
|
14284
|
-
vite@8.0
|
|
14188
|
+
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
14189
|
dependencies:
|
|
14286
14190
|
lightningcss: 1.32.0
|
|
14287
14191
|
picomatch: 4.0.4
|
|
14288
14192
|
postcss: 8.5.15
|
|
14289
|
-
rolldown: 1.
|
|
14193
|
+
rolldown: 1.1.3
|
|
14290
14194
|
tinyglobby: 0.2.17
|
|
14291
14195
|
optionalDependencies:
|
|
14292
|
-
'@types/node': 22.
|
|
14196
|
+
'@types/node': 22.20.0
|
|
14293
14197
|
esbuild: 0.27.7
|
|
14294
14198
|
fsevents: 2.3.3
|
|
14295
14199
|
jiti: 2.7.0
|
|
@@ -14312,7 +14216,7 @@ snapshots:
|
|
|
14312
14216
|
eslint-visitor-keys: 5.0.1
|
|
14313
14217
|
espree: 11.2.0
|
|
14314
14218
|
esquery: 1.7.0
|
|
14315
|
-
semver: 7.8.
|
|
14219
|
+
semver: 7.8.5
|
|
14316
14220
|
transitivePeerDependencies:
|
|
14317
14221
|
- supports-color
|
|
14318
14222
|
|
|
@@ -14488,7 +14392,7 @@ snapshots:
|
|
|
14488
14392
|
y18n: 4.0.3
|
|
14489
14393
|
yargs-parser: 13.1.2
|
|
14490
14394
|
|
|
14491
|
-
yargs@17.7.
|
|
14395
|
+
yargs@17.7.3:
|
|
14492
14396
|
dependencies:
|
|
14493
14397
|
cliui: 8.0.1
|
|
14494
14398
|
escalade: 3.2.0
|