cabloy 5.1.97 → 5.1.99
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/.cabloy-version +1 -1
- package/.claude/hooks/contract-loop-gate.ts +151 -44
- package/CHANGELOG.md +48 -0
- package/CLAUDE.md +2 -0
- package/cabloy-docs/.vitepress/config.mjs +11 -0
- package/cabloy-docs/backend/controller-aop-guide.md +0 -1
- package/cabloy-docs/backend/image-guide.md +544 -0
- package/cabloy-docs/frontend/a-openapi-under-the-hood.md +1 -1
- package/cabloy-docs/frontend/generated-contract-consumption-entry-branch.md +1 -1
- package/cabloy-docs/frontend/generated-contract-consumption-list-branch.md +1 -1
- package/cabloy-docs/frontend/generated-contract-consumption-verify-playbook.md +1 -1
- package/cabloy-docs/frontend/image-guide.md +512 -0
- package/cabloy-docs/frontend/introduction.md +2 -0
- package/cabloy-docs/frontend/ioc-and-beans.md +34 -3
- package/cabloy-docs/frontend/model-architecture.md +2 -0
- package/cabloy-docs/frontend/model-resource-owner-pattern.md +3 -1
- package/cabloy-docs/frontend/model-state-guide.md +5 -1
- package/cabloy-docs/frontend/reading-zova-for-vue-developers.md +10 -8
- package/cabloy-docs/frontend/resource-entry-page-deep-dive.md +2 -2
- package/cabloy-docs/frontend/resource-list-page-deep-dive.md +1 -1
- package/cabloy-docs/frontend/rest-resource-source-reading-map.md +2 -2
- package/cabloy-docs/frontend/rest-resource-under-the-hood.md +4 -4
- package/cabloy-docs/frontend/server-data.md +2 -0
- package/cabloy-docs/frontend/state-architecture-for-vue-developers.md +218 -0
- package/cabloy-docs/frontend/system-startup-guide.md +2 -0
- package/cabloy-docs/frontend/use-state-data-best-practices.md +384 -0
- package/cabloy-docs/frontend/zova-vs-vue3-comparison.md +11 -10
- package/cabloy-docs/fullstack/image-workflow.md +403 -0
- package/cabloy-docs/fullstack/introduction.md +1 -0
- package/package.json +1 -1
- package/scripts/upgrade.ts +2 -0
- package/vona/package.original.json +0 -1
- package/vona/packages-cli/cli/package.json +1 -1
- package/vona/packages-cli/cli-set-api/package.json +1 -1
- 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/bean/beanBase.ts +9 -9
- package/vona/packages-vona/vona-mock/package.json +1 -1
- package/vona/pnpm-lock.yaml +424 -47
- package/vona/src/suite/a-training/modules/training-record/src/bean/fileScene.dossierFile.ts +22 -0
- package/vona/src/suite/a-training/modules/training-record/src/bean/meta.version.ts +1 -0
- package/vona/src/suite/a-training/modules/training-record/src/config/locale/en-us.ts +1 -0
- package/vona/src/suite/a-training/modules/training-record/src/config/locale/zh-cn.ts +1 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordDossierFileView.ts +47 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordSelectResItem.tsx +13 -0
- package/vona/src/suite/a-training/modules/training-record/src/dto/recordView.tsx +13 -0
- package/vona/src/suite/a-training/modules/training-record/src/entity/record.tsx +16 -5
- package/vona/src/suite/a-training/modules/training-record/src/index.ts +2 -0
- package/vona/src/suite/a-training/modules/training-record/src/lib/index.ts +1 -0
- package/vona/src/suite/a-training/modules/training-record/src/lib/resolveDossierFiles.ts +34 -0
- package/vona/src/suite/a-training/modules/training-record/test/record.test.ts +209 -123
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/en-us.ts +1 -0
- package/vona/src/suite/a-training/modules/training-student/src/config/locale/zh-cn.ts +1 -0
- package/vona/src/suite/a-training/modules/training-student/src/dto/detailRecordBase.tsx +18 -1
- package/vona/src/suite/a-training/modules/training-student/src/entity/student.tsx +0 -2
- package/vona/src/suite/a-training/modules/training-student/src/model/student.ts +1 -0
- package/vona/src/suite/cabloy-basic/modules/basic-siteadmin/src/bean/ssrSite.admin.ts +4 -0
- package/vona/src/suite/cabloy-basic/modules/basic-siteweb/src/bean/ssrSite.web.ts +4 -0
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/cli/ssrSite/boilerplate/{{sceneName}}.{{beanName}}.ts_ +3 -0
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/package.json +1 -1
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/service/ssrHandler.ts +11 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/types/ssrSite.ts +6 -0
- package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
- package/vona/src/suite-vendor/a-file/modules/a-file/cli/fileProvider/boilerplate/{{sceneName}}.{{beanName}}.ts_ +23 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/cli/fileScene/boilerplate/{{sceneName}}.{{beanName}}.ts_ +5 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/package.json +68 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/.metadata/index.ts +425 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/.metadata/locales.ts +18 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/.metadata/this.ts +2 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/bean.file.ts +322 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/bean.fileProvider.ts +62 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/bean.fileUploadPolicy.ts +224 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/meta.redlock.ts +11 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/meta.version.ts +38 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/config/config.ts +16 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/config/locale/en-us.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/config/locale/zh-cn.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/controller/file.ts +175 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileDirectUploadRequest.ts +33 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileDirectUploadResponse.ts +41 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileDownloadRequest.ts +12 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadPolicyRequest.ts +15 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadPolicyResponse.ts +30 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadResponse.ts +59 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadTokenRequest.ts +24 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadTokenResponse.ts +16 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadUrlRequest.ts +33 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/entity/file.ts +55 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/entity/fileProvider.ts +24 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/index.ts +4 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/fileProvider.ts +7 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/fileScene.ts +7 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/fileUploadValidation.ts +15 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/index.ts +3 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/model/file.ts +10 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/model/fileProvider.ts +10 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/file.ts +144 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/fileProvider.ts +111 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/fileScene.ts +53 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/index.ts +3 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/tsconfig.build.json +11 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/tsconfig.json +7 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/package.json +53 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/.metadata/index.ts +104 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/.metadata/this.ts +2 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/bean/fileProvider.cloudflare.ts +123 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/index.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/service/fileCloudflare.ts +245 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/tsconfig.build.json +11 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/tsconfig.json +7 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/package.json +50 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/.metadata/index.ts +111 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/.metadata/this.ts +2 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/bean/fileProvider.native.ts +125 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/config/config.ts +7 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/index.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/service/fileNative.ts +125 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/tsconfig.build.json +11 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/tsconfig.json +7 -0
- package/vona/src/suite-vendor/a-file/package.json +14 -0
- package/vona/src/suite-vendor/a-file/tsconfig.base.json +4 -0
- package/vona/src/suite-vendor/a-file/tsconfig.json +16 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/package.json +4 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/.metadata/index.ts +61 -3
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/bean.image.ts +336 -152
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/bean.imageProvider.ts +21 -14
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/bean.imageUploadPolicy.ts +86 -11
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/meta.index.ts +12 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/meta.redlock.ts +1 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/meta.version.ts +3 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/schedule.imageDraftPrune.ts +29 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/config/config.ts +3 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/controller/image.ts +32 -54
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageDirectUploadFinalizeRequest.ts +13 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageDirectUploadFinalizeResponse.ts +10 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageDirectUploadResponse.ts +10 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageUploadPolicyRequest.ts +15 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageUploadPolicyResponse.ts +27 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageUploadResponse.ts +10 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageView.ts +10 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/entity/image.ts +10 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/lib/imageUploadValidation.ts +15 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/lib/index.ts +1 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/types/image.ts +18 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/types/imageProvider.ts +28 -2
- package/vona/src/suite-vendor/a-image/modules/image-cloudflare/package.json +1 -1
- package/vona/src/suite-vendor/a-image/modules/image-cloudflare/src/bean/imageProvider.cloudflare.ts +13 -1
- package/vona/src/suite-vendor/a-image/modules/image-cloudflare/src/service/imageCloudflare.ts +26 -0
- package/vona/src/suite-vendor/a-image/modules/image-native/package.json +6 -2
- package/vona/src/suite-vendor/a-image/modules/image-native/src/.metadata/index.ts +37 -0
- package/vona/src/suite-vendor/a-image/modules/image-native/src/bean/imageProvider.native.ts +21 -1
- package/vona/src/suite-vendor/a-image/modules/image-native/src/controller/image.ts +57 -0
- package/vona/src/suite-vendor/a-image/modules/image-native/src/service/imageNative.ts +142 -34
- package/vona/src/suite-vendor/a-image/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-core/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/entity.ts +2 -4
- package/vona/src/suite-vendor/a-vona/modules/a-ormutils/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-ormutils/src/lib/columns.ts +7 -3
- package/vona/src/suite-vendor/a-vona/modules/a-permission/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/.metadata/index.ts +24 -9
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/bean/bean.permission.ts +87 -73
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/bean/summerCache.permissionActionByRoles.ts +27 -0
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/bean/summerCache.permissionUser.ts +20 -0
- package/vona/src/suite-vendor/a-vona/modules/a-startup/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-startup/src/service/startup.ts +4 -3
- package/vona/src/suite-vendor/a-vona/modules/a-upload/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-upload/src/bean/interceptor.upload.ts +5 -1
- package/vona/src/suite-vendor/a-vona/modules/a-user/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-user/src/.metadata/index.ts +0 -13
- package/vona/src/suite-vendor/a-vona/modules/a-user/src/lib/passport.ts +0 -7
- package/vona/src/suite-vendor/a-vona/modules/a-version/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-version/src/bean/meta.version.ts +2 -24
- package/vona/src/suite-vendor/a-vona/package.json +1 -1
- package/zova/packages-utils/zova-jsx/package.json +2 -2
- package/zova/packages-zova/zova/package.json +3 -3
- package/zova/packages-zova/zova-core/package.json +1 -1
- package/zova/packages-zova/zova-core/src/bean/beanBase.ts +9 -13
- package/zova/pnpm-lock.yaml +418 -411
- package/zova/src/suite/a-demo/modules/demo-basic/src/page/toolOne/controller.tsx +2 -2
- package/zova/src/suite/a-demo/modules/demo-todo/src/page/todo/controller.tsx +2 -2
- package/zova/src/suite/a-home/modules/home-layoutadmin/src/component/layoutAdmin/controller.tsx +2 -2
- package/zova/src/suite/a-home/modules/home-layoutweb/src/component/layoutWeb/controller.tsx +2 -2
- package/zova/src/suite/a-home/modules/home-login/src/page/login/controller.tsx +2 -2
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/blockDetails/controller.tsx +5 -1
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/component/blockTable/controller.tsx +20 -15
- package/zova/src/suite/cabloy-basic/modules/basic-details/src/service/detail.tsx +6 -1
- package/zova/src/suite/cabloy-basic/modules/basic-file/cli/openapi.config.ts +9 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/package.json +58 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/.metadata/component/formFieldFile.ts +31 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/.metadata/index.ts +222 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/.metadata/locales.ts +7 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/.metadata/this.ts +2 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/file.ts +121 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/openapi/baseURL.ts +5 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/openapi/index.ts +3 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/openapi/schemas.ts +306 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/api/openapi/types.ts +5718 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/apiSchema/file.ts +40 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/bean/tableCell.file.tsx +187 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/component/formFieldFile/controller.tsx +534 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/config/locale/en-us.ts +15 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/config/locale/zh-cn.ts +15 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/index.ts +4 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/lib/file.ts +74 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/lib/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/model/file.ts +23 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/types/file.ts +12 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/src/types/index.ts +1 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/tsconfig.build.json +13 -0
- package/zova/src/suite/cabloy-basic/modules/basic-file/tsconfig.json +5 -0
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/.metadata/index.ts +61 -0
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/api/image.ts +38 -1
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/api/imageNativeImage.ts +31 -0
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/api/openapi/schemas.ts +52 -0
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/api/openapi/types.ts +614 -1
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/apiSchema/image.ts +10 -0
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/apiSchema/imageNativeImage.ts +13 -0
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/component/formFieldImage/controller.tsx +126 -62
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/model/image.ts +23 -0
- package/zova/src/suite/cabloy-basic/modules/basic-page/src/component/blockPage/controller.tsx +44 -4
- package/zova/src/suite/cabloy-basic/modules/basic-page/src/component/blockTable/controller.tsx +17 -12
- package/zova/src/suite/cabloy-basic/modules/basic-pageentry/src/component/blockPageEntry/controller.tsx +2 -2
- package/zova/src/suite/cabloy-basic/modules/basic-resource/src/component/formFieldResourcePicker/controller.tsx +2 -2
- package/zova/src/suite/cabloy-basic/modules/basic-table/src/component/table/controller.tsx +7 -2
- package/zova/src/suite/cabloy-basic/modules/basic-table/src/component/table/render.tsx +34 -33
- package/zova/src/suite/cabloy-basic/package.json +1 -0
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/package.json +1 -1
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/src/model/resource.ts +5 -3
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/src/page/entry/controller.tsx +2 -2
- package/zova/src/suite-vendor/a-cabloy/modules/rest-resource/src/page/resource/controller.tsx +2 -2
- package/zova/src/suite-vendor/a-cabloy/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/modules/a-model/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-model/src/lib/utils.ts +17 -17
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/package.json +1 -1
- package/zova/src/suite-vendor/a-zova/modules/a-openapi/src/model/sdk.ts +8 -3
- package/zova/src/suite-vendor/a-zova/modules/a-zova/package.json +2 -2
- package/zova/src/suite-vendor/a-zova/package.json +4 -4
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/bean/summerCache.permission.ts +0 -17
- package/vona/src/suite-vendor/a-vona/modules/a-user/src/bean/guard.userName.ts +0 -35
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -50,10 +50,10 @@ importers:
|
|
|
50
50
|
version: 1.1.10
|
|
51
51
|
'@tailwindcss/postcss':
|
|
52
52
|
specifier: ^4.2.2
|
|
53
|
-
version: 4.3.
|
|
53
|
+
version: 4.3.2
|
|
54
54
|
'@tailwindcss/typography':
|
|
55
55
|
specifier: ^0.5.19
|
|
56
|
-
version: 0.5.20(tailwindcss@4.3.
|
|
56
|
+
version: 0.5.20(tailwindcss@4.3.2)
|
|
57
57
|
'@tanstack/query-core':
|
|
58
58
|
specifier: ^5.100.10
|
|
59
59
|
version: 5.101.1
|
|
@@ -71,10 +71,10 @@ importers:
|
|
|
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.2(postcss@8.5.15)
|
|
75
75
|
axios:
|
|
76
76
|
specifier: ^1.16.1
|
|
77
|
-
version: 1.18.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
|
|
@@ -89,7 +89,7 @@ importers:
|
|
|
89
89
|
version: 10.0.2
|
|
90
90
|
daisyui:
|
|
91
91
|
specifier: ^5.5.19
|
|
92
|
-
version: 5.
|
|
92
|
+
version: 5.6.13
|
|
93
93
|
defu:
|
|
94
94
|
specifier: ^6.1.7
|
|
95
95
|
version: 6.1.7
|
|
@@ -110,13 +110,13 @@ importers:
|
|
|
110
110
|
version: 8.5.15
|
|
111
111
|
quasar:
|
|
112
112
|
specifier: ^2.19.3
|
|
113
|
-
version: 2.
|
|
113
|
+
version: 2.21.0
|
|
114
114
|
table-identity:
|
|
115
115
|
specifier: ^1.1.7
|
|
116
116
|
version: 1.1.7
|
|
117
117
|
tailwindcss:
|
|
118
118
|
specifier: ^4.2.2
|
|
119
|
-
version: 4.3.
|
|
119
|
+
version: 4.3.2
|
|
120
120
|
typestyle:
|
|
121
121
|
specifier: ^2.4.0
|
|
122
122
|
version: 2.4.0
|
|
@@ -234,6 +234,9 @@ importers:
|
|
|
234
234
|
zova-module-basic-details:
|
|
235
235
|
specifier: workspace:^
|
|
236
236
|
version: link:src/suite/cabloy-basic/modules/basic-details
|
|
237
|
+
zova-module-basic-file:
|
|
238
|
+
specifier: workspace:^
|
|
239
|
+
version: link:src/suite/cabloy-basic/modules/basic-file
|
|
237
240
|
zova-module-basic-form:
|
|
238
241
|
specifier: workspace:^
|
|
239
242
|
version: link:src/suite/cabloy-basic/modules/basic-form
|
|
@@ -312,16 +315,16 @@ importers:
|
|
|
312
315
|
devDependencies:
|
|
313
316
|
'@cabloy/cli':
|
|
314
317
|
specifier: ^3.1.28
|
|
315
|
-
version: 3.1.28(vue@3.5.38(typescript@5.9.3))
|
|
318
|
+
version: 3.1.28(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
316
319
|
'@cabloy/lint':
|
|
317
320
|
specifier: ^5.1.27
|
|
318
|
-
version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.
|
|
321
|
+
version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.72.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))
|
|
319
322
|
'@cabloy/openapi-typescript':
|
|
320
323
|
specifier: ^7.9.2
|
|
321
324
|
version: 7.9.2(typescript@5.9.3)
|
|
322
325
|
'@quasar/app-vite':
|
|
323
326
|
specifier: npm:@cabloy/quasar-app-vite@^2.5.10
|
|
324
|
-
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.
|
|
327
|
+
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.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(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)'
|
|
325
328
|
'@types/luxon':
|
|
326
329
|
specifier: ^3.7.1
|
|
327
330
|
version: 3.7.2
|
|
@@ -342,10 +345,10 @@ importers:
|
|
|
342
345
|
version: 0.45.0
|
|
343
346
|
oxlint:
|
|
344
347
|
specifier: ^1.65.0
|
|
345
|
-
version: 1.
|
|
348
|
+
version: 1.72.0
|
|
346
349
|
quasar-app-extension-zova:
|
|
347
350
|
specifier: ^1.3.1
|
|
348
|
-
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.
|
|
351
|
+
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.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(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)
|
|
349
352
|
sass:
|
|
350
353
|
specifier: ^1.101.0
|
|
351
354
|
version: 1.101.0
|
|
@@ -375,7 +378,7 @@ importers:
|
|
|
375
378
|
version: 3.0.18
|
|
376
379
|
vue-tsc:
|
|
377
380
|
specifier: ^3.3.1
|
|
378
|
-
version: 3.3.
|
|
381
|
+
version: 3.3.6(typescript@5.9.3)
|
|
379
382
|
zova-openapi:
|
|
380
383
|
specifier: ^1.1.17
|
|
381
384
|
version: link:packages-utils/zova-openapi
|
|
@@ -387,7 +390,7 @@ importers:
|
|
|
387
390
|
dependencies:
|
|
388
391
|
'@cabloy/cli':
|
|
389
392
|
specifier: ^3.1.28
|
|
390
|
-
version: 3.1.28(vue@3.5.38(typescript@5.9.3))
|
|
393
|
+
version: 3.1.28(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
391
394
|
'@cabloy/process-helper':
|
|
392
395
|
specifier: ^3.1.8
|
|
393
396
|
version: 3.1.8
|
|
@@ -421,7 +424,7 @@ importers:
|
|
|
421
424
|
version: 7.29.7(@babel/core@7.29.7)
|
|
422
425
|
'@cabloy/cli':
|
|
423
426
|
specifier: ^3.1.28
|
|
424
|
-
version: 3.1.28(vue@3.5.38(typescript@5.9.3))
|
|
427
|
+
version: 3.1.28(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
425
428
|
'@cabloy/extend':
|
|
426
429
|
specifier: ^3.2.8
|
|
427
430
|
version: 3.2.8
|
|
@@ -484,13 +487,13 @@ importers:
|
|
|
484
487
|
version: 1.1.3
|
|
485
488
|
rolldown-plugin-dts:
|
|
486
489
|
specifier: ^0.22.5
|
|
487
|
-
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.
|
|
490
|
+
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.6(typescript@5.9.3))
|
|
488
491
|
svgo:
|
|
489
492
|
specifier: ^3.2.0
|
|
490
493
|
version: 3.3.3
|
|
491
494
|
tsdown:
|
|
492
495
|
specifier: ^0.21.7
|
|
493
|
-
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.
|
|
496
|
+
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.6(typescript@5.9.3))
|
|
494
497
|
typescript:
|
|
495
498
|
specifier: ^5.9.3
|
|
496
499
|
version: 5.9.3
|
|
@@ -1078,7 +1081,7 @@ importers:
|
|
|
1078
1081
|
dependencies:
|
|
1079
1082
|
axios:
|
|
1080
1083
|
specifier: ^1.16.1
|
|
1081
|
-
version: 1.18.1
|
|
1084
|
+
version: 1.18.1(supports-color@10.2.2)
|
|
1082
1085
|
devDependencies:
|
|
1083
1086
|
clean-package:
|
|
1084
1087
|
specifier: ^2.2.0
|
|
@@ -1348,7 +1351,7 @@ importers:
|
|
|
1348
1351
|
devDependencies:
|
|
1349
1352
|
'@cabloy/cli':
|
|
1350
1353
|
specifier: ^3.1.28
|
|
1351
|
-
version: 3.1.28(vue@3.5.38(typescript@5.9.3))
|
|
1354
|
+
version: 3.1.28(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
|
|
1352
1355
|
'@types/luxon':
|
|
1353
1356
|
specifier: ^3.7.1
|
|
1354
1357
|
version: 3.7.2
|
|
@@ -1583,6 +1586,9 @@ importers:
|
|
|
1583
1586
|
zova-module-basic-details:
|
|
1584
1587
|
specifier: ^5.0.0
|
|
1585
1588
|
version: link:modules/basic-details
|
|
1589
|
+
zova-module-basic-file:
|
|
1590
|
+
specifier: ^5.0.0
|
|
1591
|
+
version: link:modules/basic-file
|
|
1586
1592
|
zova-module-basic-form:
|
|
1587
1593
|
specifier: ^5.0.7
|
|
1588
1594
|
version: link:modules/basic-form
|
|
@@ -1690,6 +1696,15 @@ importers:
|
|
|
1690
1696
|
specifier: ^6.1.3
|
|
1691
1697
|
version: 6.1.3
|
|
1692
1698
|
|
|
1699
|
+
src/suite/cabloy-basic/modules/basic-file:
|
|
1700
|
+
devDependencies:
|
|
1701
|
+
clean-package:
|
|
1702
|
+
specifier: ^2.2.0
|
|
1703
|
+
version: 2.2.0
|
|
1704
|
+
rimraf:
|
|
1705
|
+
specifier: ^6.1.3
|
|
1706
|
+
version: 6.1.3
|
|
1707
|
+
|
|
1693
1708
|
src/suite/cabloy-basic/modules/basic-form:
|
|
1694
1709
|
devDependencies:
|
|
1695
1710
|
clean-package:
|
|
@@ -2123,11 +2138,11 @@ packages:
|
|
|
2123
2138
|
'@cabloy/zod@4.3.8':
|
|
2124
2139
|
resolution: {integrity: sha512-3ik9c1F0VJzQy+/YSnY8DhtDcShgDBmdx+B8j+gFcF+qa6xNK7vyMZ+EYRO2GT7BCucQkTEU/aZBmfEJZcg1Kg==}
|
|
2125
2140
|
|
|
2126
|
-
'@cacheable/memory@2.0
|
|
2127
|
-
resolution: {integrity: sha512-
|
|
2141
|
+
'@cacheable/memory@2.2.0':
|
|
2142
|
+
resolution: {integrity: sha512-CTLKqLItRCEixEAewD3/j9DB3/o96gpTPD4eJ1v+DGOlxZRZncRQkGYqqnAGCscYd6RNeXfGeiuCphsPtqyIfQ==}
|
|
2128
2143
|
|
|
2129
|
-
'@cacheable/utils@2.
|
|
2130
|
-
resolution: {integrity: sha512-
|
|
2144
|
+
'@cacheable/utils@2.5.0':
|
|
2145
|
+
resolution: {integrity: sha512-buipgOVDkkPXNR5+xBpDw7Zk2n1EvU7qBJCNUcL7rhQ//kfpOXPAvQ511Os0vpLYJ1pZnvudNytkQt2hst3wqA==}
|
|
2131
2146
|
|
|
2132
2147
|
'@colors/colors@1.5.0':
|
|
2133
2148
|
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
|
|
@@ -3362,124 +3377,124 @@ packages:
|
|
|
3362
3377
|
cpu: [x64]
|
|
3363
3378
|
os: [win32]
|
|
3364
3379
|
|
|
3365
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
3366
|
-
resolution: {integrity: sha512-
|
|
3380
|
+
'@oxlint/binding-android-arm-eabi@1.72.0':
|
|
3381
|
+
resolution: {integrity: sha512-zhCmvn+1Mj3UchAc/90i99S0t7jJUsHmFVSPg4UWrjO8b8eaSGwscgO6QAUtvHBstkjQwBttQNswEnAF1mIQdA==}
|
|
3367
3382
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3368
3383
|
cpu: [arm]
|
|
3369
3384
|
os: [android]
|
|
3370
3385
|
|
|
3371
|
-
'@oxlint/binding-android-arm64@1.
|
|
3372
|
-
resolution: {integrity: sha512-
|
|
3386
|
+
'@oxlint/binding-android-arm64@1.72.0':
|
|
3387
|
+
resolution: {integrity: sha512-mtH+aY/ozv1eZoCUC2owjFAtyNBKHpJHygKeEu9zXXnQGW1Q2/qOpvx+I+Lf23+TvTz66F4iiXUbl2cGvoLPCQ==}
|
|
3373
3388
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3374
3389
|
cpu: [arm64]
|
|
3375
3390
|
os: [android]
|
|
3376
3391
|
|
|
3377
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
3378
|
-
resolution: {integrity: sha512-
|
|
3392
|
+
'@oxlint/binding-darwin-arm64@1.72.0':
|
|
3393
|
+
resolution: {integrity: sha512-EvnajNPDtfknB3ZieeOOyDTwJn9QXDiwfnF4ZDQqART6RG6hjY4WigQcZdGoK2dkB3e1vrmEzN9aYbQCUkh/gQ==}
|
|
3379
3394
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3380
3395
|
cpu: [arm64]
|
|
3381
3396
|
os: [darwin]
|
|
3382
3397
|
|
|
3383
|
-
'@oxlint/binding-darwin-x64@1.
|
|
3384
|
-
resolution: {integrity: sha512-
|
|
3398
|
+
'@oxlint/binding-darwin-x64@1.72.0':
|
|
3399
|
+
resolution: {integrity: sha512-ZkCdEa/G80A7vEHfeCDz/+L3m33DE73v32mDKhgOIgz8Uwf0DFcK7+uu6qC+7LEhmz5fpOe1osWKyjSNMydFIQ==}
|
|
3385
3400
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3386
3401
|
cpu: [x64]
|
|
3387
3402
|
os: [darwin]
|
|
3388
3403
|
|
|
3389
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
3390
|
-
resolution: {integrity: sha512-
|
|
3404
|
+
'@oxlint/binding-freebsd-x64@1.72.0':
|
|
3405
|
+
resolution: {integrity: sha512-NroXv2vh+sxVY1uya/rM5pjhx1hm8BzlYpx9q67QP0Xhw5MH2bf5GJylpvLEC+781p1Xli/317EoV9AlGwViag==}
|
|
3391
3406
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3392
3407
|
cpu: [x64]
|
|
3393
3408
|
os: [freebsd]
|
|
3394
3409
|
|
|
3395
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
3396
|
-
resolution: {integrity: sha512-
|
|
3410
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.72.0':
|
|
3411
|
+
resolution: {integrity: sha512-0NDywYgfj279Ou/BcQuCYSj7NJwBfmWn5qc5uGO/Ny7fUWmXyIpvawqX/8acQlWG6IXelJsJhj+JAy6sjsKj0A==}
|
|
3397
3412
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3398
3413
|
cpu: [arm]
|
|
3399
3414
|
os: [linux]
|
|
3400
3415
|
|
|
3401
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
3402
|
-
resolution: {integrity: sha512-
|
|
3416
|
+
'@oxlint/binding-linux-arm-musleabihf@1.72.0':
|
|
3417
|
+
resolution: {integrity: sha512-4vpXB06h65Ezsy4hRyrGjGrfa1SkVPii09yaajiYhmVpgsFiLD+KNxIx/BNAY+XiO+i1yqp9HHdwqM8VTqa5XQ==}
|
|
3403
3418
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3404
3419
|
cpu: [arm]
|
|
3405
3420
|
os: [linux]
|
|
3406
3421
|
|
|
3407
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
3408
|
-
resolution: {integrity: sha512-
|
|
3422
|
+
'@oxlint/binding-linux-arm64-gnu@1.72.0':
|
|
3423
|
+
resolution: {integrity: sha512-immaN4g2ZGFiOkKrvRX9LvzZdd2GkQM5wR+UyzYyUuyhUTXGQ4HKUJH18xp4G8OfhCVaVAJfKZxwE1r8+4hhaQ==}
|
|
3409
3424
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3410
3425
|
cpu: [arm64]
|
|
3411
3426
|
os: [linux]
|
|
3412
3427
|
libc: [glibc]
|
|
3413
3428
|
|
|
3414
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
3415
|
-
resolution: {integrity: sha512-
|
|
3429
|
+
'@oxlint/binding-linux-arm64-musl@1.72.0':
|
|
3430
|
+
resolution: {integrity: sha512-JGHS9Mnr7iWyyLDxgCv1MhzVpAckgptg00F2gnxt/GD7lQ2SW1BRcxHqhSTaSdDpjWRrBkBxMMh4+Hn3aVtExg==}
|
|
3416
3431
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3417
3432
|
cpu: [arm64]
|
|
3418
3433
|
os: [linux]
|
|
3419
3434
|
libc: [musl]
|
|
3420
3435
|
|
|
3421
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
3422
|
-
resolution: {integrity: sha512-
|
|
3436
|
+
'@oxlint/binding-linux-ppc64-gnu@1.72.0':
|
|
3437
|
+
resolution: {integrity: sha512-AOYgBZqxNshrg83P9v0RYv+m8s10Cqkj4/PxXFDhcS3k7FqsIG5+CxErshZCIN7G8iy4Y+VGfAsuEdar8AcbBg==}
|
|
3423
3438
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3424
3439
|
cpu: [ppc64]
|
|
3425
3440
|
os: [linux]
|
|
3426
3441
|
libc: [glibc]
|
|
3427
3442
|
|
|
3428
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
3429
|
-
resolution: {integrity: sha512-
|
|
3443
|
+
'@oxlint/binding-linux-riscv64-gnu@1.72.0':
|
|
3444
|
+
resolution: {integrity: sha512-QMybPS5ij3/vrKG67mqzHwW++91sYxK/PPUVi6SBtNCEzW4niS52fVBdXbQ6nou0wWbUPEpx8Sl/ZjtgE3clXA==}
|
|
3430
3445
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3431
3446
|
cpu: [riscv64]
|
|
3432
3447
|
os: [linux]
|
|
3433
3448
|
libc: [glibc]
|
|
3434
3449
|
|
|
3435
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
3436
|
-
resolution: {integrity: sha512-
|
|
3450
|
+
'@oxlint/binding-linux-riscv64-musl@1.72.0':
|
|
3451
|
+
resolution: {integrity: sha512-gOc3W7JV0PXRpIL7stUlLe3Wa9Gp0Kdlup87IT3gHDvPKck2xNgMIl/Gs2lldYY2lyXZDC4rWi3hmoLUobkgbQ==}
|
|
3437
3452
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3438
3453
|
cpu: [riscv64]
|
|
3439
3454
|
os: [linux]
|
|
3440
3455
|
libc: [musl]
|
|
3441
3456
|
|
|
3442
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
3443
|
-
resolution: {integrity: sha512-
|
|
3457
|
+
'@oxlint/binding-linux-s390x-gnu@1.72.0':
|
|
3458
|
+
resolution: {integrity: sha512-rpGxph+FjjHcYI5q6uxB3Az+tnfmEnDbSA8+PK9ZE/VzyUAkvBOMeuY7ZQMhu5mpZH7YQDsTdW6Cx4kV/msc6w==}
|
|
3444
3459
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3445
3460
|
cpu: [s390x]
|
|
3446
3461
|
os: [linux]
|
|
3447
3462
|
libc: [glibc]
|
|
3448
3463
|
|
|
3449
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
3450
|
-
resolution: {integrity: sha512-
|
|
3464
|
+
'@oxlint/binding-linux-x64-gnu@1.72.0':
|
|
3465
|
+
resolution: {integrity: sha512-WND+uhf/Ko13SLqQMWQUgsZuLvYYEvL0ZKgg0tgGYfLqxG7l8Ju123fHDMJyYSDl5E3bUbpFUuii/OvMreFQzw==}
|
|
3451
3466
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3452
3467
|
cpu: [x64]
|
|
3453
3468
|
os: [linux]
|
|
3454
3469
|
libc: [glibc]
|
|
3455
3470
|
|
|
3456
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
3457
|
-
resolution: {integrity: sha512-
|
|
3471
|
+
'@oxlint/binding-linux-x64-musl@1.72.0':
|
|
3472
|
+
resolution: {integrity: sha512-SrpbrUL70nG9vh6zP4/oKHWgLuHquwsr7MW9XOn0olBVgh10Uqr8qscKhQoBGEn6olK/IUpn5GSKcdQ5AjUhGA==}
|
|
3458
3473
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3459
3474
|
cpu: [x64]
|
|
3460
3475
|
os: [linux]
|
|
3461
3476
|
libc: [musl]
|
|
3462
3477
|
|
|
3463
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
3464
|
-
resolution: {integrity: sha512-
|
|
3478
|
+
'@oxlint/binding-openharmony-arm64@1.72.0':
|
|
3479
|
+
resolution: {integrity: sha512-qkrsEn6NmgFKr7U/QnezQMb+q/vzAy0Dd9Y95gQGQTyjzDLN+HRZMuM5u70iyH4nBLCfKBzhjMsYCehKay2jyg==}
|
|
3465
3480
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3466
3481
|
cpu: [arm64]
|
|
3467
3482
|
os: [openharmony]
|
|
3468
3483
|
|
|
3469
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
3470
|
-
resolution: {integrity: sha512-
|
|
3484
|
+
'@oxlint/binding-win32-arm64-msvc@1.72.0':
|
|
3485
|
+
resolution: {integrity: sha512-LWR6ZlFZph+KPjXv8opgZsXRDCdrdQe8VL8Cg9zxCoBS73h6znzZpydVgmdnwj8mB9AuSM5jxEgDJDpQkjboeg==}
|
|
3471
3486
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3472
3487
|
cpu: [arm64]
|
|
3473
3488
|
os: [win32]
|
|
3474
3489
|
|
|
3475
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
3476
|
-
resolution: {integrity: sha512-
|
|
3490
|
+
'@oxlint/binding-win32-ia32-msvc@1.72.0':
|
|
3491
|
+
resolution: {integrity: sha512-yt6HEh7IsHvtjRWtmeZRX134eaXKHq5Gnqlf1xBJdJl1JtdoRUEJw3nAxpZoUDS860cX/foKbztO441anVBtVQ==}
|
|
3477
3492
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3478
3493
|
cpu: [ia32]
|
|
3479
3494
|
os: [win32]
|
|
3480
3495
|
|
|
3481
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
3482
|
-
resolution: {integrity: sha512-
|
|
3496
|
+
'@oxlint/binding-win32-x64-msvc@1.72.0':
|
|
3497
|
+
resolution: {integrity: sha512-b2eKFD2hX7tIwmo/cyH6TDq8vzWRZ2qNHrzoGntUTmq0h3zQh/uX3eTSHCwI8OB/ADQfJCRelLItK8BsxuucDA==}
|
|
3483
3498
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3484
3499
|
cpu: [x64]
|
|
3485
3500
|
os: [win32]
|
|
@@ -3811,69 +3826,69 @@ packages:
|
|
|
3811
3826
|
peerDependencies:
|
|
3812
3827
|
eslint: ^9.0.0 || ^10.0.0
|
|
3813
3828
|
|
|
3814
|
-
'@tailwindcss/node@4.3.
|
|
3815
|
-
resolution: {integrity: sha512-
|
|
3829
|
+
'@tailwindcss/node@4.3.2':
|
|
3830
|
+
resolution: {integrity: sha512-yWP/sqEcBLaD8JuA6zNwxoYKr75qxTioYwlRwekj5Jr/I5GXnoJfjetH/psLUIv74cYTH2lBUEzBkinthoYcBg==}
|
|
3816
3831
|
|
|
3817
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
3818
|
-
resolution: {integrity: sha512-
|
|
3832
|
+
'@tailwindcss/oxide-android-arm64@4.3.2':
|
|
3833
|
+
resolution: {integrity: sha512-WHxqIuHpvZ5VtdX6GTl1Ik/Vp2YuN42Et+0CdeaVd/frQ9jAvGmvR8vLT+jk3e8/Q3x8kECB9+R17pgpp2BulA==}
|
|
3819
3834
|
engines: {node: '>= 20'}
|
|
3820
3835
|
cpu: [arm64]
|
|
3821
3836
|
os: [android]
|
|
3822
3837
|
|
|
3823
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
3824
|
-
resolution: {integrity: sha512-
|
|
3838
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.2':
|
|
3839
|
+
resolution: {integrity: sha512-GZypeUY/IDJW3877KeM+O67vbXr3MBnbtEL4aYhNErv/JWZhye2vGSWWG9tB6iiqR2MqRNkY8IOUy4NdSZV26w==}
|
|
3825
3840
|
engines: {node: '>= 20'}
|
|
3826
3841
|
cpu: [arm64]
|
|
3827
3842
|
os: [darwin]
|
|
3828
3843
|
|
|
3829
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
3830
|
-
resolution: {integrity: sha512-
|
|
3844
|
+
'@tailwindcss/oxide-darwin-x64@4.3.2':
|
|
3845
|
+
resolution: {integrity: sha512-UIIzmefR6KO1sDU7MzRqAxC8iBpft/VhkGjTjnhoS6k7Z3rQ9wEgA1ODSiyH/tcSYssulNm4Ci3hOeK1jH7ccQ==}
|
|
3831
3846
|
engines: {node: '>= 20'}
|
|
3832
3847
|
cpu: [x64]
|
|
3833
3848
|
os: [darwin]
|
|
3834
3849
|
|
|
3835
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
3836
|
-
resolution: {integrity: sha512-
|
|
3850
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.2':
|
|
3851
|
+
resolution: {integrity: sha512-GN+uAmcI6DNspnCDwtOAZrTz6oukJnp337qZvxqCGLd3BHBzJpO0ZbTLRvJNdztOeAmTzewewGIMPb0tk2R4WA==}
|
|
3837
3852
|
engines: {node: '>= 20'}
|
|
3838
3853
|
cpu: [x64]
|
|
3839
3854
|
os: [freebsd]
|
|
3840
3855
|
|
|
3841
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
3842
|
-
resolution: {integrity: sha512
|
|
3856
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.2':
|
|
3857
|
+
resolution: {integrity: sha512-4ABn7qSbdHRwTiDiuWNegCyb5+2FJ4vKIKc3DmKrvAFw7MU1Lm11dIkTPwUaFdTzc7IsOpDbqBrlh0x6y36U/w==}
|
|
3843
3858
|
engines: {node: '>= 20'}
|
|
3844
3859
|
cpu: [arm]
|
|
3845
3860
|
os: [linux]
|
|
3846
3861
|
|
|
3847
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
3848
|
-
resolution: {integrity: sha512-
|
|
3862
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.2':
|
|
3863
|
+
resolution: {integrity: sha512-wDgEIGwoM8w8pufh9LVt1PahDgNdKXrLC2qfAnV3vAmococ9RWbxeAw4pxPttd/TsJfwjyLf90Dg1y9y8I6Emw==}
|
|
3849
3864
|
engines: {node: '>= 20'}
|
|
3850
3865
|
cpu: [arm64]
|
|
3851
3866
|
os: [linux]
|
|
3852
3867
|
libc: [glibc]
|
|
3853
3868
|
|
|
3854
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
3855
|
-
resolution: {integrity: sha512-
|
|
3869
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.2':
|
|
3870
|
+
resolution: {integrity: sha512-J5Nuk0uZQIiMTJj3LEx4sAA9tMFUoXQZFv1J6An+QGYe53HKRJuFDi0rpq/tuouCZeAbOBY3kQ6g8qeD4TUjtA==}
|
|
3856
3871
|
engines: {node: '>= 20'}
|
|
3857
3872
|
cpu: [arm64]
|
|
3858
3873
|
os: [linux]
|
|
3859
3874
|
libc: [musl]
|
|
3860
3875
|
|
|
3861
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
3862
|
-
resolution: {integrity: sha512-
|
|
3876
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.2':
|
|
3877
|
+
resolution: {integrity: sha512-kqCZpSKOBEJO4mz7OqWoofBZeXTAwaVGPj0ErAj7CojmhKpWVWVOnrt9dE8odoIraZq4oj3ausM37kXi+Tow8w==}
|
|
3863
3878
|
engines: {node: '>= 20'}
|
|
3864
3879
|
cpu: [x64]
|
|
3865
3880
|
os: [linux]
|
|
3866
3881
|
libc: [glibc]
|
|
3867
3882
|
|
|
3868
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
3869
|
-
resolution: {integrity: sha512-
|
|
3883
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.2':
|
|
3884
|
+
resolution: {integrity: sha512-cixpqbh2toJDmkuCRI68nXA8ZxNmdK9Y+9v5h3MC3ZQKy/0BO8AWzlkWyRM7JAFSGBlfig4YVTPsK6MVgqz1uw==}
|
|
3870
3885
|
engines: {node: '>= 20'}
|
|
3871
3886
|
cpu: [x64]
|
|
3872
3887
|
os: [linux]
|
|
3873
3888
|
libc: [musl]
|
|
3874
3889
|
|
|
3875
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
3876
|
-
resolution: {integrity: sha512-
|
|
3890
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.2':
|
|
3891
|
+
resolution: {integrity: sha512-4ec2Z/LOmRsAgU23CS4xeJfcJlmRg94A/XrbGRCF1gyU/zdDfRLYDVsS+ynSZCmGNxQ1jQriQOKMQeQxBA3Isw==}
|
|
3877
3892
|
engines: {node: '>=14.0.0'}
|
|
3878
3893
|
cpu: [wasm32]
|
|
3879
3894
|
bundledDependencies:
|
|
@@ -3884,24 +3899,24 @@ packages:
|
|
|
3884
3899
|
- '@emnapi/wasi-threads'
|
|
3885
3900
|
- tslib
|
|
3886
3901
|
|
|
3887
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
3888
|
-
resolution: {integrity: sha512-
|
|
3902
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.2':
|
|
3903
|
+
resolution: {integrity: sha512-Zyr/M0+XcYZu3bZrUytc7TXvrk0ftWfl8gN2MwekNDzhqhKRUucMPSeOzM0o0wH5AWOU49BsKRrfKxI2atCPMQ==}
|
|
3889
3904
|
engines: {node: '>= 20'}
|
|
3890
3905
|
cpu: [arm64]
|
|
3891
3906
|
os: [win32]
|
|
3892
3907
|
|
|
3893
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
3894
|
-
resolution: {integrity: sha512-
|
|
3908
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.2':
|
|
3909
|
+
resolution: {integrity: sha512-QI9BO7KlNZsp2GuO0jwAAj5jCDABOKXRkCk2XuKTSaNEFSdfzqswYVTtCHBNKHLsqyjFyFkqlDiwkNbTYSssMQ==}
|
|
3895
3910
|
engines: {node: '>= 20'}
|
|
3896
3911
|
cpu: [x64]
|
|
3897
3912
|
os: [win32]
|
|
3898
3913
|
|
|
3899
|
-
'@tailwindcss/oxide@4.3.
|
|
3900
|
-
resolution: {integrity: sha512-
|
|
3914
|
+
'@tailwindcss/oxide@4.3.2':
|
|
3915
|
+
resolution: {integrity: sha512-z8ZgnzX8gdNoWLBLqBPoh/sjnxkwvf9ZuWjnO0l0yIzbLa5/9S+eC5QxGZKRobVHIC3/1BoMWjHblqWjcgFgag==}
|
|
3901
3916
|
engines: {node: '>= 20'}
|
|
3902
3917
|
|
|
3903
|
-
'@tailwindcss/postcss@4.3.
|
|
3904
|
-
resolution: {integrity: sha512-
|
|
3918
|
+
'@tailwindcss/postcss@4.3.2':
|
|
3919
|
+
resolution: {integrity: sha512-rjVWYCa7Ngbi5AarT6k8TkxUG3Wl1QKzHdIZVsjZSzf36Jmo2IKZt/NHRAwly8oDkbBOH0YTu+CHuf9jPxMc+g==}
|
|
3905
3920
|
|
|
3906
3921
|
'@tailwindcss/typography@0.5.20':
|
|
3907
3922
|
resolution: {integrity: sha512-hwbzQuNUfcPvbegQFatVPl/MY/tcM9KLl963hQ5laJKPh81TEZ1+dNG9PirGvcaDBkp+BCshExAyKVPW91dozw==}
|
|
@@ -4134,70 +4149,70 @@ packages:
|
|
|
4134
4149
|
'@types/unist@3.0.3':
|
|
4135
4150
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
4136
4151
|
|
|
4137
|
-
'@typescript-eslint/eslint-plugin@8.62.
|
|
4138
|
-
resolution: {integrity: sha512-
|
|
4152
|
+
'@typescript-eslint/eslint-plugin@8.62.1':
|
|
4153
|
+
resolution: {integrity: sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==}
|
|
4139
4154
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4140
4155
|
peerDependencies:
|
|
4141
|
-
'@typescript-eslint/parser': ^8.62.
|
|
4156
|
+
'@typescript-eslint/parser': ^8.62.1
|
|
4142
4157
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4143
4158
|
typescript: '>=4.8.4 <6.1.0'
|
|
4144
4159
|
|
|
4145
|
-
'@typescript-eslint/parser@8.62.
|
|
4146
|
-
resolution: {integrity: sha512-
|
|
4160
|
+
'@typescript-eslint/parser@8.62.1':
|
|
4161
|
+
resolution: {integrity: sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==}
|
|
4147
4162
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4148
4163
|
peerDependencies:
|
|
4149
4164
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4150
4165
|
typescript: '>=4.8.4 <6.1.0'
|
|
4151
4166
|
|
|
4152
|
-
'@typescript-eslint/project-service@8.62.
|
|
4153
|
-
resolution: {integrity: sha512-
|
|
4167
|
+
'@typescript-eslint/project-service@8.62.1':
|
|
4168
|
+
resolution: {integrity: sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==}
|
|
4154
4169
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4155
4170
|
peerDependencies:
|
|
4156
4171
|
typescript: '>=4.8.4 <6.1.0'
|
|
4157
4172
|
|
|
4158
|
-
'@typescript-eslint/rule-tester@8.62.
|
|
4159
|
-
resolution: {integrity: sha512-
|
|
4173
|
+
'@typescript-eslint/rule-tester@8.62.1':
|
|
4174
|
+
resolution: {integrity: sha512-qq2Io5qOVAyKsXfcgpqc5qIef++7bFMit3R8gNLNYlxrivwWtZH5pfIuU0nc69mUHAxowv4sUGfbpwykfBGHYQ==}
|
|
4160
4175
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4161
4176
|
peerDependencies:
|
|
4162
4177
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4163
4178
|
typescript: '>=4.8.4 <6.1.0'
|
|
4164
4179
|
|
|
4165
|
-
'@typescript-eslint/scope-manager@8.62.
|
|
4166
|
-
resolution: {integrity: sha512-
|
|
4180
|
+
'@typescript-eslint/scope-manager@8.62.1':
|
|
4181
|
+
resolution: {integrity: sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==}
|
|
4167
4182
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4168
4183
|
|
|
4169
|
-
'@typescript-eslint/tsconfig-utils@8.62.
|
|
4170
|
-
resolution: {integrity: sha512-
|
|
4184
|
+
'@typescript-eslint/tsconfig-utils@8.62.1':
|
|
4185
|
+
resolution: {integrity: sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==}
|
|
4171
4186
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4172
4187
|
peerDependencies:
|
|
4173
4188
|
typescript: '>=4.8.4 <6.1.0'
|
|
4174
4189
|
|
|
4175
|
-
'@typescript-eslint/type-utils@8.62.
|
|
4176
|
-
resolution: {integrity: sha512
|
|
4190
|
+
'@typescript-eslint/type-utils@8.62.1':
|
|
4191
|
+
resolution: {integrity: sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==}
|
|
4177
4192
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4178
4193
|
peerDependencies:
|
|
4179
4194
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4180
4195
|
typescript: '>=4.8.4 <6.1.0'
|
|
4181
4196
|
|
|
4182
|
-
'@typescript-eslint/types@8.62.
|
|
4183
|
-
resolution: {integrity: sha512-
|
|
4197
|
+
'@typescript-eslint/types@8.62.1':
|
|
4198
|
+
resolution: {integrity: sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==}
|
|
4184
4199
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4185
4200
|
|
|
4186
|
-
'@typescript-eslint/typescript-estree@8.62.
|
|
4187
|
-
resolution: {integrity: sha512
|
|
4201
|
+
'@typescript-eslint/typescript-estree@8.62.1':
|
|
4202
|
+
resolution: {integrity: sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==}
|
|
4188
4203
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4189
4204
|
peerDependencies:
|
|
4190
4205
|
typescript: '>=4.8.4 <6.1.0'
|
|
4191
4206
|
|
|
4192
|
-
'@typescript-eslint/utils@8.62.
|
|
4193
|
-
resolution: {integrity: sha512-
|
|
4207
|
+
'@typescript-eslint/utils@8.62.1':
|
|
4208
|
+
resolution: {integrity: sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==}
|
|
4194
4209
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4195
4210
|
peerDependencies:
|
|
4196
4211
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4197
4212
|
typescript: '>=4.8.4 <6.1.0'
|
|
4198
4213
|
|
|
4199
|
-
'@typescript-eslint/visitor-keys@8.62.
|
|
4200
|
-
resolution: {integrity: sha512-
|
|
4214
|
+
'@typescript-eslint/visitor-keys@8.62.1':
|
|
4215
|
+
resolution: {integrity: sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==}
|
|
4201
4216
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4202
4217
|
|
|
4203
4218
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
@@ -4296,8 +4311,8 @@ packages:
|
|
|
4296
4311
|
'@vue/devtools-api@6.6.4':
|
|
4297
4312
|
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
|
|
4298
4313
|
|
|
4299
|
-
'@vue/language-core@3.3.
|
|
4300
|
-
resolution: {integrity: sha512-
|
|
4314
|
+
'@vue/language-core@3.3.6':
|
|
4315
|
+
resolution: {integrity: sha512-LgBMZAy2sR3cQWknpyaxnI6yBkqDfLBPkbdhwRhQCvzfNJRQXPilgQIrdI/v4ytJ0sAq9bWhaPsjqBqneomJ3Q==}
|
|
4301
4316
|
|
|
4302
4317
|
'@vue/shared@3.5.13':
|
|
4303
4318
|
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
|
|
@@ -4428,8 +4443,8 @@ packages:
|
|
|
4428
4443
|
asynckit@0.4.0:
|
|
4429
4444
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
4430
4445
|
|
|
4431
|
-
autoprefixer@10.5.
|
|
4432
|
-
resolution: {integrity: sha512-
|
|
4446
|
+
autoprefixer@10.5.2:
|
|
4447
|
+
resolution: {integrity: sha512-rD5t5DwOjJdmSORcTq64j8MawTC+tbQ+HHqjR4NDumamy/ambn1UJrlKL+KdwujWxMkFjPM3pPHOEA9tl4767Q==}
|
|
4433
4448
|
engines: {node: ^10 || ^12 || >=14}
|
|
4434
4449
|
hasBin: true
|
|
4435
4450
|
peerDependencies:
|
|
@@ -4473,8 +4488,8 @@ packages:
|
|
|
4473
4488
|
bare-abort-controller:
|
|
4474
4489
|
optional: true
|
|
4475
4490
|
|
|
4476
|
-
bare-fs@4.7.
|
|
4477
|
-
resolution: {integrity: sha512-
|
|
4491
|
+
bare-fs@4.7.3:
|
|
4492
|
+
resolution: {integrity: sha512-xRgplks8SvcKkdlv2M6Z2LZmRsmqd+x0nXXGXeMEjwdibj1HSDrlnqBRLeYdMvsgCox7Bq0e+DHwfczOfsn6IA==}
|
|
4478
4493
|
engines: {bare: '>=1.16.0'}
|
|
4479
4494
|
peerDependencies:
|
|
4480
4495
|
bare-buffer: '*'
|
|
@@ -4482,8 +4497,8 @@ packages:
|
|
|
4482
4497
|
bare-buffer:
|
|
4483
4498
|
optional: true
|
|
4484
4499
|
|
|
4485
|
-
bare-os@3.9.
|
|
4486
|
-
resolution: {integrity: sha512-
|
|
4500
|
+
bare-os@3.9.3:
|
|
4501
|
+
resolution: {integrity: sha512-fF4Q7QsyKVF5Rj0qvI8BgUNjqzC2JvQlpTaPLjVJVxYVUX5Zr9un+y3w1HmA4nNKdFmRBT8z/WmrjvXzXVerKQ==}
|
|
4487
4502
|
engines: {bare: '>=1.14.0'}
|
|
4488
4503
|
|
|
4489
4504
|
bare-path@3.0.1:
|
|
@@ -4597,8 +4612,8 @@ packages:
|
|
|
4597
4612
|
resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==}
|
|
4598
4613
|
engines: {node: '>=20.19.0'}
|
|
4599
4614
|
|
|
4600
|
-
cacheable@2.
|
|
4601
|
-
resolution: {integrity: sha512-
|
|
4615
|
+
cacheable@2.5.0:
|
|
4616
|
+
resolution: {integrity: sha512-60cyAOytib/OzBw1JNSoSV/boK1AtHryDIjvVBk7XbN4ugfkM3+Sry7fEjNgPMGgOjuaZPAp8ruZ0Cxafwyq9g==}
|
|
4602
4617
|
|
|
4603
4618
|
call-bind-apply-helpers@1.0.2:
|
|
4604
4619
|
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
@@ -4880,8 +4895,8 @@ packages:
|
|
|
4880
4895
|
csx@10.0.2:
|
|
4881
4896
|
resolution: {integrity: sha512-u4Ay+Q7yXQvMtaevcxO9AQ24AP9L4Poym9bLt1gUI1VMJ9czKcfmog+X4j4wSfVHaD0GsXcxpYK7FgH637d5UQ==}
|
|
4882
4897
|
|
|
4883
|
-
daisyui@5.
|
|
4884
|
-
resolution: {integrity: sha512-
|
|
4898
|
+
daisyui@5.6.13:
|
|
4899
|
+
resolution: {integrity: sha512-0UHyNG3TzF7pDIbPcWyLKQfgtGhJcIq2x26jwsDKp7ZhL0GwaqIMZ12+TWfp8p+mE4NNc29SJk63hEXTz3MQkg==}
|
|
4885
4900
|
|
|
4886
4901
|
dargs@7.0.0:
|
|
4887
4902
|
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
|
|
@@ -5207,8 +5222,8 @@ packages:
|
|
|
5207
5222
|
peerDependencies:
|
|
5208
5223
|
eslint: ^9.0.0 || ^10.0.0
|
|
5209
5224
|
|
|
5210
|
-
eslint-plugin-regexp@3.1.
|
|
5211
|
-
resolution: {integrity: sha512-
|
|
5225
|
+
eslint-plugin-regexp@3.1.1:
|
|
5226
|
+
resolution: {integrity: sha512-MxR5nqoQCtVWmJwia0D2+NlXX1xzdpkslsVOZLEYQ4PQWEaL65PCZXURxaBc3lPnkNFpNxzMIRmYVxdl8giXRA==}
|
|
5212
5227
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5213
5228
|
peerDependencies:
|
|
5214
5229
|
eslint: '>=9.38.0'
|
|
@@ -5264,8 +5279,8 @@ packages:
|
|
|
5264
5279
|
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
5265
5280
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5266
5281
|
|
|
5267
|
-
eslint@10.
|
|
5268
|
-
resolution: {integrity: sha512-
|
|
5282
|
+
eslint@10.6.0:
|
|
5283
|
+
resolution: {integrity: sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==}
|
|
5269
5284
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5270
5285
|
hasBin: true
|
|
5271
5286
|
peerDependencies:
|
|
@@ -5370,8 +5385,8 @@ packages:
|
|
|
5370
5385
|
fast-string-width@3.0.2:
|
|
5371
5386
|
resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
|
|
5372
5387
|
|
|
5373
|
-
fast-uri@3.1.
|
|
5374
|
-
resolution: {integrity: sha512-
|
|
5388
|
+
fast-uri@3.1.3:
|
|
5389
|
+
resolution: {integrity: sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==}
|
|
5375
5390
|
|
|
5376
5391
|
fast-wrap-ansi@0.2.2:
|
|
5377
5392
|
resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
|
|
@@ -5435,8 +5450,8 @@ packages:
|
|
|
5435
5450
|
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
5436
5451
|
engines: {node: '>=16'}
|
|
5437
5452
|
|
|
5438
|
-
flat-cache@6.1.
|
|
5439
|
-
resolution: {integrity: sha512-
|
|
5453
|
+
flat-cache@6.1.23:
|
|
5454
|
+
resolution: {integrity: sha512-f++BY9pTk+983xK1FLzlLpmM0i0z+jHmx3QESGkURMXujQZz1k5wzwX6hjnQ8goaD0B+sYnDK1yZ6MTyZfUaqA==}
|
|
5440
5455
|
|
|
5441
5456
|
flat@5.0.2:
|
|
5442
5457
|
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
|
|
@@ -5669,8 +5684,8 @@ packages:
|
|
|
5669
5684
|
resolution: {integrity: sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==}
|
|
5670
5685
|
engines: {node: '>=0.10.0'}
|
|
5671
5686
|
|
|
5672
|
-
iconv-lite@0.7.
|
|
5673
|
-
resolution: {integrity: sha512-
|
|
5687
|
+
iconv-lite@0.7.3:
|
|
5688
|
+
resolution: {integrity: sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==}
|
|
5674
5689
|
engines: {node: '>=0.10.0'}
|
|
5675
5690
|
|
|
5676
5691
|
icss-replace-symbols@1.1.0:
|
|
@@ -5958,10 +5973,6 @@ packages:
|
|
|
5958
5973
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
5959
5974
|
hasBin: true
|
|
5960
5975
|
|
|
5961
|
-
js-yaml@4.2.0:
|
|
5962
|
-
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
5963
|
-
hasBin: true
|
|
5964
|
-
|
|
5965
5976
|
jsdoc-type-pratt-parser@7.1.1:
|
|
5966
5977
|
resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
|
|
5967
5978
|
engines: {node: '>=20.0.0'}
|
|
@@ -6592,8 +6603,8 @@ packages:
|
|
|
6592
6603
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6593
6604
|
hasBin: true
|
|
6594
6605
|
|
|
6595
|
-
oxlint@1.
|
|
6596
|
-
resolution: {integrity: sha512-
|
|
6606
|
+
oxlint@1.72.0:
|
|
6607
|
+
resolution: {integrity: sha512-1rhdZIP/EvoI91ABIwNU5Q8+bWf8mjrS5UzIOZld4d4bXxJvtlUhlQvaoTogIGin/qdErMOrwaIJvCSIAKTLhA==}
|
|
6597
6608
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6598
6609
|
hasBin: true
|
|
6599
6610
|
peerDependencies:
|
|
@@ -6830,15 +6841,15 @@ packages:
|
|
|
6830
6841
|
quasar-app-extension-zova@1.3.1:
|
|
6831
6842
|
resolution: {integrity: sha512-JKOXATq28dlNVzF534QosguSHnpR3RN+O8jqWMA8yUk58oj4q/iqFlOV8dnW5Cu/24JMN1Z+bKW2cOLdkpOzxw==}
|
|
6832
6843
|
|
|
6833
|
-
quasar@2.
|
|
6834
|
-
resolution: {integrity: sha512-
|
|
6844
|
+
quasar@2.21.0:
|
|
6845
|
+
resolution: {integrity: sha512-101qA4iBlEF3538xxOA8ekgeell5g9dcj2R5MMaG4wCbhLO52iDmETipCEXPiKtg1H3YWkgBU67QG9Q6GAkY6A==}
|
|
6835
6846
|
engines: {node: '>= 10.18.1', npm: '>= 6.13.4', yarn: '>= 1.21.1'}
|
|
6836
6847
|
|
|
6837
6848
|
queue-microtask@1.2.3:
|
|
6838
6849
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
6839
6850
|
|
|
6840
|
-
range-parser@1.
|
|
6841
|
-
resolution: {integrity: sha512-
|
|
6851
|
+
range-parser@1.3.0:
|
|
6852
|
+
resolution: {integrity: sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==}
|
|
6842
6853
|
engines: {node: '>= 0.6'}
|
|
6843
6854
|
|
|
6844
6855
|
raw-body@3.0.2:
|
|
@@ -7193,8 +7204,8 @@ packages:
|
|
|
7193
7204
|
sentence-case@3.0.4:
|
|
7194
7205
|
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
|
|
7195
7206
|
|
|
7196
|
-
serialize-javascript@7.0.
|
|
7197
|
-
resolution: {integrity: sha512-
|
|
7207
|
+
serialize-javascript@7.0.7:
|
|
7208
|
+
resolution: {integrity: sha512-YAy8Od6KV+uuwUuU50np8fGB/Aues6Y0nAhA9y/hId74PlKUcme4pXcBD46NWKr1Q4osN/iseZ17YqO1XfmI8g==}
|
|
7198
7209
|
engines: {node: '>=20.0.0'}
|
|
7199
7210
|
|
|
7200
7211
|
serve-static@2.2.1:
|
|
@@ -7227,8 +7238,8 @@ packages:
|
|
|
7227
7238
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
7228
7239
|
engines: {node: '>=8'}
|
|
7229
7240
|
|
|
7230
|
-
shell-quote@1.
|
|
7231
|
-
resolution: {integrity: sha512-
|
|
7241
|
+
shell-quote@1.9.0:
|
|
7242
|
+
resolution: {integrity: sha512-Iov+JwFv/2HcTpcwNMKd8+IWNb8tboQJNQTkAY/LLVK7gGH9jy+LGkVqPxfekHl+yMmiqXszdGWXgkfml7hjqA==}
|
|
7232
7243
|
engines: {node: '>= 0.4'}
|
|
7233
7244
|
|
|
7234
7245
|
side-channel-list@1.0.1:
|
|
@@ -7405,8 +7416,8 @@ packages:
|
|
|
7405
7416
|
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
|
|
7406
7417
|
engines: {node: '>=20'}
|
|
7407
7418
|
|
|
7408
|
-
tailwindcss@4.3.
|
|
7409
|
-
resolution: {integrity: sha512-
|
|
7419
|
+
tailwindcss@4.3.2:
|
|
7420
|
+
resolution: {integrity: sha512-WtctNNSH8A9jlMIqxzuYumOHU5uGZyRv0Q5svQl+oEPy5w84YpBxdb7MdqyiSPQge5jTJ6zFQLq0PFygdccSBA==}
|
|
7410
7421
|
|
|
7411
7422
|
tapable@2.3.3:
|
|
7412
7423
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
@@ -7560,8 +7571,8 @@ packages:
|
|
|
7560
7571
|
resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
|
|
7561
7572
|
engines: {node: '>=16'}
|
|
7562
7573
|
|
|
7563
|
-
type-fest@5.
|
|
7564
|
-
resolution: {integrity: sha512-
|
|
7574
|
+
type-fest@5.8.0:
|
|
7575
|
+
resolution: {integrity: sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==}
|
|
7565
7576
|
engines: {node: '>=20'}
|
|
7566
7577
|
|
|
7567
7578
|
type-is@2.1.0:
|
|
@@ -7572,8 +7583,8 @@ packages:
|
|
|
7572
7583
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
7573
7584
|
engines: {node: '>= 0.4'}
|
|
7574
7585
|
|
|
7575
|
-
typescript-eslint@8.62.
|
|
7576
|
-
resolution: {integrity: sha512-
|
|
7586
|
+
typescript-eslint@8.62.1:
|
|
7587
|
+
resolution: {integrity: sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==}
|
|
7577
7588
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
7578
7589
|
peerDependencies:
|
|
7579
7590
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -7798,8 +7809,8 @@ packages:
|
|
|
7798
7809
|
peerDependencies:
|
|
7799
7810
|
vue: ^3.5.13
|
|
7800
7811
|
|
|
7801
|
-
vue-tsc@3.3.
|
|
7802
|
-
resolution: {integrity: sha512-
|
|
7812
|
+
vue-tsc@3.3.6:
|
|
7813
|
+
resolution: {integrity: sha512-ERXGgbKSBGFUkavrJ1Iwj0ZVxKqB/5UOx65IXy7fPf2UsoI21n3ssQLwdvx8xyUGgJe9PvSZTM/FYzIdwUDPFA==}
|
|
7803
7814
|
hasBin: true
|
|
7804
7815
|
peerDependencies:
|
|
7805
7816
|
typescript: '>=5.0.0'
|
|
@@ -8226,7 +8237,7 @@ snapshots:
|
|
|
8226
8237
|
|
|
8227
8238
|
'@bufbuild/protobuf@2.12.1': {}
|
|
8228
8239
|
|
|
8229
|
-
'@cabloy/cli@3.1.28(vue@3.5.38(typescript@5.9.3))':
|
|
8240
|
+
'@cabloy/cli@3.1.28(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
|
|
8230
8241
|
dependencies:
|
|
8231
8242
|
'@babel/parser': 7.29.7
|
|
8232
8243
|
'@cabloy/module-glob': 5.3.17
|
|
@@ -8235,7 +8246,7 @@ snapshots:
|
|
|
8235
8246
|
'@cabloy/utils': 2.1.26
|
|
8236
8247
|
'@cabloy/word-utils': link:packages-utils/word-utils
|
|
8237
8248
|
'@npmcli/config': 10.11.0
|
|
8238
|
-
'@zhennann/common-bin': 4.0.1
|
|
8249
|
+
'@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
|
|
8239
8250
|
'@zhennann/ejs': 3.0.1
|
|
8240
8251
|
boxen: 4.2.0
|
|
8241
8252
|
chalk: 3.0.0
|
|
@@ -8273,27 +8284,27 @@ snapshots:
|
|
|
8273
8284
|
dependencies:
|
|
8274
8285
|
json5: 2.2.3
|
|
8275
8286
|
|
|
8276
|
-
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.62.
|
|
8287
|
+
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.72.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))':
|
|
8277
8288
|
dependencies:
|
|
8278
|
-
'@e18e/eslint-plugin': 0.2.0(eslint@10.
|
|
8289
|
+
'@e18e/eslint-plugin': 0.2.0(eslint@10.6.0(jiti@2.7.0))(oxlint@1.72.0)
|
|
8279
8290
|
'@eslint/json': 1.2.0
|
|
8280
8291
|
'@eslint/markdown': 7.5.1(supports-color@10.2.2)
|
|
8281
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
8282
|
-
'@typescript-eslint/parser': 8.62.
|
|
8283
|
-
eslint-plugin-antfu: 3.2.3(eslint@10.
|
|
8284
|
-
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.62.
|
|
8285
|
-
eslint-plugin-eslint-comments: 3.2.0(eslint@10.
|
|
8286
|
-
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
8287
|
-
eslint-plugin-pnpm: 1.6.1(eslint@10.
|
|
8288
|
-
eslint-plugin-regexp: 3.1.
|
|
8289
|
-
eslint-plugin-toml: 1.4.0(eslint@10.
|
|
8290
|
-
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.
|
|
8291
|
-
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
8292
|
-
eslint-plugin-yml: 3.5.0(eslint@10.
|
|
8292
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.6.0(jiti@2.7.0))
|
|
8293
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
8294
|
+
eslint-plugin-antfu: 3.2.3(eslint@10.6.0(jiti@2.7.0))
|
|
8295
|
+
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))
|
|
8296
|
+
eslint-plugin-eslint-comments: 3.2.0(eslint@10.6.0(jiti@2.7.0))
|
|
8297
|
+
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0))
|
|
8298
|
+
eslint-plugin-pnpm: 1.6.1(eslint@10.6.0(jiti@2.7.0))
|
|
8299
|
+
eslint-plugin-regexp: 3.1.1(eslint@10.6.0(jiti@2.7.0))
|
|
8300
|
+
eslint-plugin-toml: 1.4.0(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)
|
|
8301
|
+
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))
|
|
8302
|
+
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))
|
|
8303
|
+
eslint-plugin-yml: 3.5.0(eslint@10.6.0(jiti@2.7.0))
|
|
8293
8304
|
globals: 17.7.0
|
|
8294
8305
|
oxfmt: 0.45.0
|
|
8295
|
-
oxlint: 1.
|
|
8296
|
-
typescript-eslint: 8.62.
|
|
8306
|
+
oxlint: 1.72.0
|
|
8307
|
+
typescript-eslint: 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8297
8308
|
transitivePeerDependencies:
|
|
8298
8309
|
- '@typescript-eslint/eslint-plugin'
|
|
8299
8310
|
- '@typescript-eslint/rule-tester'
|
|
@@ -8332,11 +8343,11 @@ snapshots:
|
|
|
8332
8343
|
|
|
8333
8344
|
'@cabloy/process-helper@3.1.8': {}
|
|
8334
8345
|
|
|
8335
|
-
'@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.
|
|
8346
|
+
'@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.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(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)':
|
|
8336
8347
|
dependencies:
|
|
8337
8348
|
'@quasar/render-ssr-error': 1.0.4
|
|
8338
8349
|
'@quasar/ssl-certificate': 1.0.0
|
|
8339
|
-
'@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.
|
|
8350
|
+
'@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.21.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))(vue@3.5.38(typescript@5.9.3))'
|
|
8340
8351
|
'@types/chrome': 0.1.43
|
|
8341
8352
|
'@types/compression': 1.8.1
|
|
8342
8353
|
'@types/cordova': 11.0.3
|
|
@@ -8363,11 +8374,11 @@ snapshots:
|
|
|
8363
8374
|
minimist: 1.2.8
|
|
8364
8375
|
mlly: 1.8.2
|
|
8365
8376
|
open: 11.0.0
|
|
8366
|
-
quasar: 2.
|
|
8377
|
+
quasar: 2.21.0
|
|
8367
8378
|
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)
|
|
8368
8379
|
sass-embedded: 1.100.0
|
|
8369
8380
|
semver: 7.8.5
|
|
8370
|
-
serialize-javascript: 7.0.
|
|
8381
|
+
serialize-javascript: 7.0.7
|
|
8371
8382
|
tinyglobby: 0.2.17
|
|
8372
8383
|
ts-essentials: 10.2.1(typescript@5.9.3)
|
|
8373
8384
|
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)
|
|
@@ -8376,7 +8387,7 @@ snapshots:
|
|
|
8376
8387
|
webpack-merge: 6.0.1
|
|
8377
8388
|
zova-vite: link:packages-utils/zova-vite
|
|
8378
8389
|
optionalDependencies:
|
|
8379
|
-
eslint: 10.
|
|
8390
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
8380
8391
|
typescript: 5.9.3
|
|
8381
8392
|
transitivePeerDependencies:
|
|
8382
8393
|
- '@types/node'
|
|
@@ -8396,10 +8407,10 @@ snapshots:
|
|
|
8396
8407
|
- tsx
|
|
8397
8408
|
- yaml
|
|
8398
8409
|
|
|
8399
|
-
'@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.
|
|
8410
|
+
'@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.21.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))(vue@3.5.38(typescript@5.9.3))':
|
|
8400
8411
|
dependencies:
|
|
8401
8412
|
'@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))
|
|
8402
|
-
quasar: 2.
|
|
8413
|
+
quasar: 2.21.0
|
|
8403
8414
|
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)
|
|
8404
8415
|
vue: 3.5.38(typescript@5.9.3)
|
|
8405
8416
|
|
|
@@ -8510,14 +8521,14 @@ snapshots:
|
|
|
8510
8521
|
|
|
8511
8522
|
'@cabloy/zod@4.3.8': {}
|
|
8512
8523
|
|
|
8513
|
-
'@cacheable/memory@2.0
|
|
8524
|
+
'@cacheable/memory@2.2.0':
|
|
8514
8525
|
dependencies:
|
|
8515
|
-
'@cacheable/utils': 2.
|
|
8526
|
+
'@cacheable/utils': 2.5.0
|
|
8516
8527
|
'@keyv/bigmap': 1.3.1(keyv@5.6.0)
|
|
8517
8528
|
hookified: 1.15.1
|
|
8518
8529
|
keyv: 5.6.0
|
|
8519
8530
|
|
|
8520
|
-
'@cacheable/utils@2.
|
|
8531
|
+
'@cacheable/utils@2.5.0':
|
|
8521
8532
|
dependencies:
|
|
8522
8533
|
hashery: 1.5.1
|
|
8523
8534
|
keyv: 5.6.0
|
|
@@ -8525,12 +8536,12 @@ snapshots:
|
|
|
8525
8536
|
'@colors/colors@1.5.0':
|
|
8526
8537
|
optional: true
|
|
8527
8538
|
|
|
8528
|
-
'@e18e/eslint-plugin@0.2.0(eslint@10.
|
|
8539
|
+
'@e18e/eslint-plugin@0.2.0(eslint@10.6.0(jiti@2.7.0))(oxlint@1.72.0)':
|
|
8529
8540
|
dependencies:
|
|
8530
|
-
eslint-plugin-depend: 1.5.0(eslint@10.
|
|
8541
|
+
eslint-plugin-depend: 1.5.0(eslint@10.6.0(jiti@2.7.0))
|
|
8531
8542
|
optionalDependencies:
|
|
8532
|
-
eslint: 10.
|
|
8533
|
-
oxlint: 1.
|
|
8543
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
8544
|
+
oxlint: 1.72.0
|
|
8534
8545
|
|
|
8535
8546
|
'@eggjs/yauzl@2.11.0':
|
|
8536
8547
|
dependencies:
|
|
@@ -8572,7 +8583,7 @@ snapshots:
|
|
|
8572
8583
|
'@es-joy/jsdoccomment@0.84.0':
|
|
8573
8584
|
dependencies:
|
|
8574
8585
|
'@types/estree': 1.0.9
|
|
8575
|
-
'@typescript-eslint/types': 8.62.
|
|
8586
|
+
'@typescript-eslint/types': 8.62.1
|
|
8576
8587
|
comment-parser: 1.4.5
|
|
8577
8588
|
esquery: 1.7.0
|
|
8578
8589
|
jsdoc-type-pratt-parser: 7.1.1
|
|
@@ -8952,9 +8963,9 @@ snapshots:
|
|
|
8952
8963
|
'@esbuild/win32-x64@0.27.7':
|
|
8953
8964
|
optional: true
|
|
8954
8965
|
|
|
8955
|
-
'@eslint-community/eslint-utils@4.9.1(eslint@10.
|
|
8966
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(jiti@2.7.0))':
|
|
8956
8967
|
dependencies:
|
|
8957
|
-
eslint: 10.
|
|
8968
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
8958
8969
|
eslint-visitor-keys: 3.4.3
|
|
8959
8970
|
|
|
8960
8971
|
'@eslint-community/regexpp@4.12.2': {}
|
|
@@ -9091,7 +9102,7 @@ snapshots:
|
|
|
9091
9102
|
'@inquirer/external-editor@3.0.3(@types/node@22.20.0)':
|
|
9092
9103
|
dependencies:
|
|
9093
9104
|
chardet: 2.2.0
|
|
9094
|
-
iconv-lite: 0.7.
|
|
9105
|
+
iconv-lite: 0.7.3
|
|
9095
9106
|
optionalDependencies:
|
|
9096
9107
|
'@types/node': 22.20.0
|
|
9097
9108
|
|
|
@@ -9361,61 +9372,61 @@ snapshots:
|
|
|
9361
9372
|
'@oxfmt/binding-win32-x64-msvc@0.45.0':
|
|
9362
9373
|
optional: true
|
|
9363
9374
|
|
|
9364
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
9375
|
+
'@oxlint/binding-android-arm-eabi@1.72.0':
|
|
9365
9376
|
optional: true
|
|
9366
9377
|
|
|
9367
|
-
'@oxlint/binding-android-arm64@1.
|
|
9378
|
+
'@oxlint/binding-android-arm64@1.72.0':
|
|
9368
9379
|
optional: true
|
|
9369
9380
|
|
|
9370
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
9381
|
+
'@oxlint/binding-darwin-arm64@1.72.0':
|
|
9371
9382
|
optional: true
|
|
9372
9383
|
|
|
9373
|
-
'@oxlint/binding-darwin-x64@1.
|
|
9384
|
+
'@oxlint/binding-darwin-x64@1.72.0':
|
|
9374
9385
|
optional: true
|
|
9375
9386
|
|
|
9376
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
9387
|
+
'@oxlint/binding-freebsd-x64@1.72.0':
|
|
9377
9388
|
optional: true
|
|
9378
9389
|
|
|
9379
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
9390
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.72.0':
|
|
9380
9391
|
optional: true
|
|
9381
9392
|
|
|
9382
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
9393
|
+
'@oxlint/binding-linux-arm-musleabihf@1.72.0':
|
|
9383
9394
|
optional: true
|
|
9384
9395
|
|
|
9385
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
9396
|
+
'@oxlint/binding-linux-arm64-gnu@1.72.0':
|
|
9386
9397
|
optional: true
|
|
9387
9398
|
|
|
9388
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
9399
|
+
'@oxlint/binding-linux-arm64-musl@1.72.0':
|
|
9389
9400
|
optional: true
|
|
9390
9401
|
|
|
9391
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
9402
|
+
'@oxlint/binding-linux-ppc64-gnu@1.72.0':
|
|
9392
9403
|
optional: true
|
|
9393
9404
|
|
|
9394
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
9405
|
+
'@oxlint/binding-linux-riscv64-gnu@1.72.0':
|
|
9395
9406
|
optional: true
|
|
9396
9407
|
|
|
9397
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
9408
|
+
'@oxlint/binding-linux-riscv64-musl@1.72.0':
|
|
9398
9409
|
optional: true
|
|
9399
9410
|
|
|
9400
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
9411
|
+
'@oxlint/binding-linux-s390x-gnu@1.72.0':
|
|
9401
9412
|
optional: true
|
|
9402
9413
|
|
|
9403
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
9414
|
+
'@oxlint/binding-linux-x64-gnu@1.72.0':
|
|
9404
9415
|
optional: true
|
|
9405
9416
|
|
|
9406
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
9417
|
+
'@oxlint/binding-linux-x64-musl@1.72.0':
|
|
9407
9418
|
optional: true
|
|
9408
9419
|
|
|
9409
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
9420
|
+
'@oxlint/binding-openharmony-arm64@1.72.0':
|
|
9410
9421
|
optional: true
|
|
9411
9422
|
|
|
9412
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
9423
|
+
'@oxlint/binding-win32-arm64-msvc@1.72.0':
|
|
9413
9424
|
optional: true
|
|
9414
9425
|
|
|
9415
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
9426
|
+
'@oxlint/binding-win32-ia32-msvc@1.72.0':
|
|
9416
9427
|
optional: true
|
|
9417
9428
|
|
|
9418
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
9429
|
+
'@oxlint/binding-win32-x64-msvc@1.72.0':
|
|
9419
9430
|
optional: true
|
|
9420
9431
|
|
|
9421
9432
|
'@parcel/watcher-android-arm64@2.5.6':
|
|
@@ -9626,17 +9637,17 @@ snapshots:
|
|
|
9626
9637
|
|
|
9627
9638
|
'@sindresorhus/merge-streams@4.0.0': {}
|
|
9628
9639
|
|
|
9629
|
-
'@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
9640
|
+
'@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0))':
|
|
9630
9641
|
dependencies:
|
|
9631
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
9632
|
-
'@typescript-eslint/types': 8.62.
|
|
9633
|
-
eslint: 10.
|
|
9642
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
9643
|
+
'@typescript-eslint/types': 8.62.1
|
|
9644
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
9634
9645
|
eslint-visitor-keys: 4.2.1
|
|
9635
9646
|
espree: 10.4.0
|
|
9636
9647
|
estraverse: 5.3.0
|
|
9637
9648
|
picomatch: 4.0.4
|
|
9638
9649
|
|
|
9639
|
-
'@tailwindcss/node@4.3.
|
|
9650
|
+
'@tailwindcss/node@4.3.2':
|
|
9640
9651
|
dependencies:
|
|
9641
9652
|
'@jridgewell/remapping': 2.3.5
|
|
9642
9653
|
enhanced-resolve: 5.21.6
|
|
@@ -9644,71 +9655,71 @@ snapshots:
|
|
|
9644
9655
|
lightningcss: 1.32.0
|
|
9645
9656
|
magic-string: 0.30.21
|
|
9646
9657
|
source-map-js: 1.2.1
|
|
9647
|
-
tailwindcss: 4.3.
|
|
9658
|
+
tailwindcss: 4.3.2
|
|
9648
9659
|
|
|
9649
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
9660
|
+
'@tailwindcss/oxide-android-arm64@4.3.2':
|
|
9650
9661
|
optional: true
|
|
9651
9662
|
|
|
9652
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
9663
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.2':
|
|
9653
9664
|
optional: true
|
|
9654
9665
|
|
|
9655
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
9666
|
+
'@tailwindcss/oxide-darwin-x64@4.3.2':
|
|
9656
9667
|
optional: true
|
|
9657
9668
|
|
|
9658
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
9669
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.2':
|
|
9659
9670
|
optional: true
|
|
9660
9671
|
|
|
9661
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
9672
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.2':
|
|
9662
9673
|
optional: true
|
|
9663
9674
|
|
|
9664
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
9675
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.2':
|
|
9665
9676
|
optional: true
|
|
9666
9677
|
|
|
9667
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
9678
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.2':
|
|
9668
9679
|
optional: true
|
|
9669
9680
|
|
|
9670
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
9681
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.2':
|
|
9671
9682
|
optional: true
|
|
9672
9683
|
|
|
9673
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
9684
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.2':
|
|
9674
9685
|
optional: true
|
|
9675
9686
|
|
|
9676
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
9687
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.2':
|
|
9677
9688
|
optional: true
|
|
9678
9689
|
|
|
9679
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
9690
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.2':
|
|
9680
9691
|
optional: true
|
|
9681
9692
|
|
|
9682
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
9693
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.2':
|
|
9683
9694
|
optional: true
|
|
9684
9695
|
|
|
9685
|
-
'@tailwindcss/oxide@4.3.
|
|
9696
|
+
'@tailwindcss/oxide@4.3.2':
|
|
9686
9697
|
optionalDependencies:
|
|
9687
|
-
'@tailwindcss/oxide-android-arm64': 4.3.
|
|
9688
|
-
'@tailwindcss/oxide-darwin-arm64': 4.3.
|
|
9689
|
-
'@tailwindcss/oxide-darwin-x64': 4.3.
|
|
9690
|
-
'@tailwindcss/oxide-freebsd-x64': 4.3.
|
|
9691
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.
|
|
9692
|
-
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.
|
|
9693
|
-
'@tailwindcss/oxide-linux-arm64-musl': 4.3.
|
|
9694
|
-
'@tailwindcss/oxide-linux-x64-gnu': 4.3.
|
|
9695
|
-
'@tailwindcss/oxide-linux-x64-musl': 4.3.
|
|
9696
|
-
'@tailwindcss/oxide-wasm32-wasi': 4.3.
|
|
9697
|
-
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.
|
|
9698
|
-
'@tailwindcss/oxide-win32-x64-msvc': 4.3.
|
|
9699
|
-
|
|
9700
|
-
'@tailwindcss/postcss@4.3.
|
|
9698
|
+
'@tailwindcss/oxide-android-arm64': 4.3.2
|
|
9699
|
+
'@tailwindcss/oxide-darwin-arm64': 4.3.2
|
|
9700
|
+
'@tailwindcss/oxide-darwin-x64': 4.3.2
|
|
9701
|
+
'@tailwindcss/oxide-freebsd-x64': 4.3.2
|
|
9702
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.2
|
|
9703
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.2
|
|
9704
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.3.2
|
|
9705
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.3.2
|
|
9706
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.3.2
|
|
9707
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.3.2
|
|
9708
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.2
|
|
9709
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.3.2
|
|
9710
|
+
|
|
9711
|
+
'@tailwindcss/postcss@4.3.2':
|
|
9701
9712
|
dependencies:
|
|
9702
9713
|
'@alloc/quick-lru': 5.2.0
|
|
9703
|
-
'@tailwindcss/node': 4.3.
|
|
9704
|
-
'@tailwindcss/oxide': 4.3.
|
|
9714
|
+
'@tailwindcss/node': 4.3.2
|
|
9715
|
+
'@tailwindcss/oxide': 4.3.2
|
|
9705
9716
|
postcss: 8.5.15
|
|
9706
|
-
tailwindcss: 4.3.
|
|
9717
|
+
tailwindcss: 4.3.2
|
|
9707
9718
|
|
|
9708
|
-
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.
|
|
9719
|
+
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.2)':
|
|
9709
9720
|
dependencies:
|
|
9710
9721
|
postcss-selector-parser: 6.0.10
|
|
9711
|
-
tailwindcss: 4.3.
|
|
9722
|
+
tailwindcss: 4.3.2
|
|
9712
9723
|
|
|
9713
9724
|
'@tanstack/devtools-event-client@0.4.4': {}
|
|
9714
9725
|
|
|
@@ -9826,7 +9837,7 @@ snapshots:
|
|
|
9826
9837
|
'@textlint/types': 15.7.1
|
|
9827
9838
|
chalk: 4.1.2
|
|
9828
9839
|
debug: 4.4.3(supports-color@10.2.2)
|
|
9829
|
-
js-yaml: 4.
|
|
9840
|
+
js-yaml: 4.1.1
|
|
9830
9841
|
lodash: 4.18.1
|
|
9831
9842
|
pluralize: 2.0.0
|
|
9832
9843
|
string-width: 4.2.3
|
|
@@ -10025,15 +10036,15 @@ snapshots:
|
|
|
10025
10036
|
|
|
10026
10037
|
'@types/unist@3.0.3': {}
|
|
10027
10038
|
|
|
10028
|
-
'@typescript-eslint/eslint-plugin@8.62.
|
|
10039
|
+
'@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10029
10040
|
dependencies:
|
|
10030
10041
|
'@eslint-community/regexpp': 4.12.2
|
|
10031
|
-
'@typescript-eslint/parser': 8.62.
|
|
10032
|
-
'@typescript-eslint/scope-manager': 8.62.
|
|
10033
|
-
'@typescript-eslint/type-utils': 8.62.
|
|
10034
|
-
'@typescript-eslint/utils': 8.62.
|
|
10035
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10036
|
-
eslint: 10.
|
|
10042
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10043
|
+
'@typescript-eslint/scope-manager': 8.62.1
|
|
10044
|
+
'@typescript-eslint/type-utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10045
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10046
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10047
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10037
10048
|
ignore: 7.0.5
|
|
10038
10049
|
natural-compare: 1.4.0
|
|
10039
10050
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -10041,34 +10052,34 @@ snapshots:
|
|
|
10041
10052
|
transitivePeerDependencies:
|
|
10042
10053
|
- supports-color
|
|
10043
10054
|
|
|
10044
|
-
'@typescript-eslint/parser@8.62.
|
|
10055
|
+
'@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10045
10056
|
dependencies:
|
|
10046
|
-
'@typescript-eslint/scope-manager': 8.62.
|
|
10047
|
-
'@typescript-eslint/types': 8.62.
|
|
10048
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10049
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10057
|
+
'@typescript-eslint/scope-manager': 8.62.1
|
|
10058
|
+
'@typescript-eslint/types': 8.62.1
|
|
10059
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10060
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10050
10061
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10051
|
-
eslint: 10.
|
|
10062
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10052
10063
|
typescript: 5.9.3
|
|
10053
10064
|
transitivePeerDependencies:
|
|
10054
10065
|
- supports-color
|
|
10055
10066
|
|
|
10056
|
-
'@typescript-eslint/project-service@8.62.
|
|
10067
|
+
'@typescript-eslint/project-service@8.62.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10057
10068
|
dependencies:
|
|
10058
|
-
'@typescript-eslint/tsconfig-utils': 8.62.
|
|
10059
|
-
'@typescript-eslint/types': 8.62.
|
|
10069
|
+
'@typescript-eslint/tsconfig-utils': 8.62.1(typescript@5.9.3)
|
|
10070
|
+
'@typescript-eslint/types': 8.62.1
|
|
10060
10071
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10061
10072
|
typescript: 5.9.3
|
|
10062
10073
|
transitivePeerDependencies:
|
|
10063
10074
|
- supports-color
|
|
10064
10075
|
|
|
10065
|
-
'@typescript-eslint/rule-tester@8.62.
|
|
10076
|
+
'@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10066
10077
|
dependencies:
|
|
10067
|
-
'@typescript-eslint/parser': 8.62.
|
|
10068
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10069
|
-
'@typescript-eslint/utils': 8.62.
|
|
10078
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10079
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10080
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10070
10081
|
ajv: 6.15.0
|
|
10071
|
-
eslint: 10.
|
|
10082
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10072
10083
|
json-stable-stringify-without-jsonify: 1.0.1
|
|
10073
10084
|
lodash.merge: 4.6.2
|
|
10074
10085
|
semver: 7.8.5
|
|
@@ -10076,35 +10087,35 @@ snapshots:
|
|
|
10076
10087
|
transitivePeerDependencies:
|
|
10077
10088
|
- supports-color
|
|
10078
10089
|
|
|
10079
|
-
'@typescript-eslint/scope-manager@8.62.
|
|
10090
|
+
'@typescript-eslint/scope-manager@8.62.1':
|
|
10080
10091
|
dependencies:
|
|
10081
|
-
'@typescript-eslint/types': 8.62.
|
|
10082
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10092
|
+
'@typescript-eslint/types': 8.62.1
|
|
10093
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10083
10094
|
|
|
10084
|
-
'@typescript-eslint/tsconfig-utils@8.62.
|
|
10095
|
+
'@typescript-eslint/tsconfig-utils@8.62.1(typescript@5.9.3)':
|
|
10085
10096
|
dependencies:
|
|
10086
10097
|
typescript: 5.9.3
|
|
10087
10098
|
|
|
10088
|
-
'@typescript-eslint/type-utils@8.62.
|
|
10099
|
+
'@typescript-eslint/type-utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10089
10100
|
dependencies:
|
|
10090
|
-
'@typescript-eslint/types': 8.62.
|
|
10091
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10092
|
-
'@typescript-eslint/utils': 8.62.
|
|
10101
|
+
'@typescript-eslint/types': 8.62.1
|
|
10102
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10103
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10093
10104
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10094
|
-
eslint: 10.
|
|
10105
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10095
10106
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
10096
10107
|
typescript: 5.9.3
|
|
10097
10108
|
transitivePeerDependencies:
|
|
10098
10109
|
- supports-color
|
|
10099
10110
|
|
|
10100
|
-
'@typescript-eslint/types@8.62.
|
|
10111
|
+
'@typescript-eslint/types@8.62.1': {}
|
|
10101
10112
|
|
|
10102
|
-
'@typescript-eslint/typescript-estree@8.62.
|
|
10113
|
+
'@typescript-eslint/typescript-estree@8.62.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10103
10114
|
dependencies:
|
|
10104
|
-
'@typescript-eslint/project-service': 8.62.
|
|
10105
|
-
'@typescript-eslint/tsconfig-utils': 8.62.
|
|
10106
|
-
'@typescript-eslint/types': 8.62.
|
|
10107
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10115
|
+
'@typescript-eslint/project-service': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10116
|
+
'@typescript-eslint/tsconfig-utils': 8.62.1(typescript@5.9.3)
|
|
10117
|
+
'@typescript-eslint/types': 8.62.1
|
|
10118
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10108
10119
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10109
10120
|
minimatch: 10.2.5
|
|
10110
10121
|
semver: 7.8.5
|
|
@@ -10114,20 +10125,20 @@ snapshots:
|
|
|
10114
10125
|
transitivePeerDependencies:
|
|
10115
10126
|
- supports-color
|
|
10116
10127
|
|
|
10117
|
-
'@typescript-eslint/utils@8.62.
|
|
10128
|
+
'@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10118
10129
|
dependencies:
|
|
10119
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
10120
|
-
'@typescript-eslint/scope-manager': 8.62.
|
|
10121
|
-
'@typescript-eslint/types': 8.62.
|
|
10122
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10123
|
-
eslint: 10.
|
|
10130
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
10131
|
+
'@typescript-eslint/scope-manager': 8.62.1
|
|
10132
|
+
'@typescript-eslint/types': 8.62.1
|
|
10133
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10134
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10124
10135
|
typescript: 5.9.3
|
|
10125
10136
|
transitivePeerDependencies:
|
|
10126
10137
|
- supports-color
|
|
10127
10138
|
|
|
10128
|
-
'@typescript-eslint/visitor-keys@8.62.
|
|
10139
|
+
'@typescript-eslint/visitor-keys@8.62.1':
|
|
10129
10140
|
dependencies:
|
|
10130
|
-
'@typescript-eslint/types': 8.62.
|
|
10141
|
+
'@typescript-eslint/types': 8.62.1
|
|
10131
10142
|
eslint-visitor-keys: 5.0.1
|
|
10132
10143
|
|
|
10133
10144
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
@@ -10249,7 +10260,7 @@ snapshots:
|
|
|
10249
10260
|
|
|
10250
10261
|
'@vue/devtools-api@6.6.4': {}
|
|
10251
10262
|
|
|
10252
|
-
'@vue/language-core@3.3.
|
|
10263
|
+
'@vue/language-core@3.3.6':
|
|
10253
10264
|
dependencies:
|
|
10254
10265
|
'@volar/language-core': 2.4.28
|
|
10255
10266
|
'@vue/compiler-dom': 3.5.13
|
|
@@ -10261,7 +10272,7 @@ snapshots:
|
|
|
10261
10272
|
|
|
10262
10273
|
'@vue/shared@3.5.13': {}
|
|
10263
10274
|
|
|
10264
|
-
'@zhennann/common-bin@4.0.1':
|
|
10275
|
+
'@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
|
|
10265
10276
|
dependencies:
|
|
10266
10277
|
chalk: 4.1.2
|
|
10267
10278
|
change-case: 4.1.2
|
|
@@ -10295,7 +10306,7 @@ snapshots:
|
|
|
10295
10306
|
|
|
10296
10307
|
acorn@8.17.0: {}
|
|
10297
10308
|
|
|
10298
|
-
agent-base@6.0.2:
|
|
10309
|
+
agent-base@6.0.2(supports-color@10.2.2):
|
|
10299
10310
|
dependencies:
|
|
10300
10311
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10301
10312
|
transitivePeerDependencies:
|
|
@@ -10317,7 +10328,7 @@ snapshots:
|
|
|
10317
10328
|
ajv@8.20.0:
|
|
10318
10329
|
dependencies:
|
|
10319
10330
|
fast-deep-equal: 3.1.3
|
|
10320
|
-
fast-uri: 3.1.
|
|
10331
|
+
fast-uri: 3.1.3
|
|
10321
10332
|
json-schema-traverse: 1.0.0
|
|
10322
10333
|
require-from-string: 2.0.2
|
|
10323
10334
|
|
|
@@ -10394,7 +10405,7 @@ snapshots:
|
|
|
10394
10405
|
|
|
10395
10406
|
asynckit@0.4.0: {}
|
|
10396
10407
|
|
|
10397
|
-
autoprefixer@10.5.
|
|
10408
|
+
autoprefixer@10.5.2(postcss@8.5.15):
|
|
10398
10409
|
dependencies:
|
|
10399
10410
|
browserslist: 4.28.4
|
|
10400
10411
|
caniuse-lite: 1.0.30001799
|
|
@@ -10407,11 +10418,11 @@ snapshots:
|
|
|
10407
10418
|
dependencies:
|
|
10408
10419
|
possible-typed-array-names: 1.1.0
|
|
10409
10420
|
|
|
10410
|
-
axios@1.18.1:
|
|
10421
|
+
axios@1.18.1(supports-color@10.2.2):
|
|
10411
10422
|
dependencies:
|
|
10412
10423
|
follow-redirects: 1.16.0
|
|
10413
10424
|
form-data: 4.0.6
|
|
10414
|
-
https-proxy-agent: 5.0.1
|
|
10425
|
+
https-proxy-agent: 5.0.1(supports-color@10.2.2)
|
|
10415
10426
|
proxy-from-env: 2.1.0
|
|
10416
10427
|
transitivePeerDependencies:
|
|
10417
10428
|
- debug
|
|
@@ -10432,7 +10443,7 @@ snapshots:
|
|
|
10432
10443
|
|
|
10433
10444
|
bare-events@2.9.1: {}
|
|
10434
10445
|
|
|
10435
|
-
bare-fs@4.7.
|
|
10446
|
+
bare-fs@4.7.3:
|
|
10436
10447
|
dependencies:
|
|
10437
10448
|
bare-events: 2.9.1
|
|
10438
10449
|
bare-path: 3.0.1
|
|
@@ -10443,11 +10454,11 @@ snapshots:
|
|
|
10443
10454
|
- bare-abort-controller
|
|
10444
10455
|
- react-native-b4a
|
|
10445
10456
|
|
|
10446
|
-
bare-os@3.9.
|
|
10457
|
+
bare-os@3.9.3: {}
|
|
10447
10458
|
|
|
10448
10459
|
bare-path@3.0.1:
|
|
10449
10460
|
dependencies:
|
|
10450
|
-
bare-os: 3.9.
|
|
10461
|
+
bare-os: 3.9.3
|
|
10451
10462
|
|
|
10452
10463
|
bare-stream@2.13.3(bare-events@2.9.1):
|
|
10453
10464
|
dependencies:
|
|
@@ -10484,7 +10495,7 @@ snapshots:
|
|
|
10484
10495
|
content-type: 2.0.0
|
|
10485
10496
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10486
10497
|
http-errors: 2.0.1
|
|
10487
|
-
iconv-lite: 0.7.
|
|
10498
|
+
iconv-lite: 0.7.3
|
|
10488
10499
|
on-finished: 2.4.1
|
|
10489
10500
|
qs: 6.15.2
|
|
10490
10501
|
raw-body: 3.0.2
|
|
@@ -10565,10 +10576,10 @@ snapshots:
|
|
|
10565
10576
|
|
|
10566
10577
|
cac@7.0.0: {}
|
|
10567
10578
|
|
|
10568
|
-
cacheable@2.
|
|
10579
|
+
cacheable@2.5.0:
|
|
10569
10580
|
dependencies:
|
|
10570
|
-
'@cacheable/memory': 2.0
|
|
10571
|
-
'@cacheable/utils': 2.
|
|
10581
|
+
'@cacheable/memory': 2.2.0
|
|
10582
|
+
'@cacheable/utils': 2.5.0
|
|
10572
10583
|
hookified: 1.15.1
|
|
10573
10584
|
keyv: 5.6.0
|
|
10574
10585
|
qified: 0.10.1
|
|
@@ -10750,7 +10761,7 @@ snapshots:
|
|
|
10750
10761
|
|
|
10751
10762
|
compressible@2.0.18:
|
|
10752
10763
|
dependencies:
|
|
10753
|
-
mime-db: 1.
|
|
10764
|
+
mime-db: 1.52.0
|
|
10754
10765
|
|
|
10755
10766
|
compressing@1.10.5:
|
|
10756
10767
|
dependencies:
|
|
@@ -10784,7 +10795,7 @@ snapshots:
|
|
|
10784
10795
|
date-fns: 2.30.0
|
|
10785
10796
|
lodash: 4.18.1
|
|
10786
10797
|
rxjs: 7.8.2
|
|
10787
|
-
shell-quote: 1.
|
|
10798
|
+
shell-quote: 1.9.0
|
|
10788
10799
|
spawn-command: 0.0.2
|
|
10789
10800
|
supports-color: 8.1.1
|
|
10790
10801
|
tree-kill: 1.2.2
|
|
@@ -10879,7 +10890,7 @@ snapshots:
|
|
|
10879
10890
|
dependencies:
|
|
10880
10891
|
csstype: 2.6.21
|
|
10881
10892
|
|
|
10882
|
-
daisyui@5.
|
|
10893
|
+
daisyui@5.6.13: {}
|
|
10883
10894
|
|
|
10884
10895
|
dargs@7.0.0: {}
|
|
10885
10896
|
|
|
@@ -10998,7 +11009,7 @@ snapshots:
|
|
|
10998
11009
|
|
|
10999
11010
|
dot-prop@10.1.0:
|
|
11000
11011
|
dependencies:
|
|
11001
|
-
type-fest: 5.
|
|
11012
|
+
type-fest: 5.8.0
|
|
11002
11013
|
|
|
11003
11014
|
dot-prop@6.0.1:
|
|
11004
11015
|
dependencies:
|
|
@@ -11245,58 +11256,58 @@ snapshots:
|
|
|
11245
11256
|
|
|
11246
11257
|
escape-string-regexp@5.0.0: {}
|
|
11247
11258
|
|
|
11248
|
-
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11259
|
+
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0):
|
|
11249
11260
|
dependencies:
|
|
11250
|
-
eslint: 10.
|
|
11261
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11251
11262
|
esquery: 1.7.0
|
|
11252
11263
|
jsonc-eslint-parser: 3.1.0
|
|
11253
11264
|
optionalDependencies:
|
|
11254
11265
|
'@eslint/json': 1.2.0
|
|
11255
11266
|
|
|
11256
|
-
eslint-plugin-antfu@3.2.3(eslint@10.
|
|
11267
|
+
eslint-plugin-antfu@3.2.3(eslint@10.6.0(jiti@2.7.0)):
|
|
11257
11268
|
dependencies:
|
|
11258
|
-
eslint: 10.
|
|
11269
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11259
11270
|
|
|
11260
|
-
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.62.
|
|
11271
|
+
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0)):
|
|
11261
11272
|
dependencies:
|
|
11262
11273
|
'@es-joy/jsdoccomment': 0.84.0
|
|
11263
|
-
'@typescript-eslint/rule-tester': 8.62.
|
|
11264
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
11265
|
-
'@typescript-eslint/utils': 8.62.
|
|
11266
|
-
eslint: 10.
|
|
11274
|
+
'@typescript-eslint/rule-tester': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11275
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
11276
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11277
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11267
11278
|
|
|
11268
|
-
eslint-plugin-depend@1.5.0(eslint@10.
|
|
11279
|
+
eslint-plugin-depend@1.5.0(eslint@10.6.0(jiti@2.7.0)):
|
|
11269
11280
|
dependencies:
|
|
11270
11281
|
empathic: 2.0.1
|
|
11271
|
-
eslint: 10.
|
|
11282
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11272
11283
|
module-replacements: 2.11.0
|
|
11273
11284
|
semver: 7.8.5
|
|
11274
11285
|
|
|
11275
|
-
eslint-plugin-eslint-comments@3.2.0(eslint@10.
|
|
11286
|
+
eslint-plugin-eslint-comments@3.2.0(eslint@10.6.0(jiti@2.7.0)):
|
|
11276
11287
|
dependencies:
|
|
11277
11288
|
escape-string-regexp: 1.0.5
|
|
11278
|
-
eslint: 10.
|
|
11289
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11279
11290
|
ignore: 5.3.2
|
|
11280
11291
|
|
|
11281
|
-
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
11292
|
+
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0)):
|
|
11282
11293
|
dependencies:
|
|
11283
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11294
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11284
11295
|
'@eslint/core': 1.2.1
|
|
11285
11296
|
'@eslint/plugin-kit': 0.7.2
|
|
11286
11297
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11287
11298
|
diff-sequences: 29.6.3
|
|
11288
|
-
eslint: 10.
|
|
11289
|
-
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11299
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11300
|
+
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0)
|
|
11290
11301
|
jsonc-eslint-parser: 3.1.0
|
|
11291
11302
|
natural-compare: 1.4.0
|
|
11292
11303
|
synckit: 0.11.13
|
|
11293
11304
|
transitivePeerDependencies:
|
|
11294
11305
|
- '@eslint/json'
|
|
11295
11306
|
|
|
11296
|
-
eslint-plugin-pnpm@1.6.1(eslint@10.
|
|
11307
|
+
eslint-plugin-pnpm@1.6.1(eslint@10.6.0(jiti@2.7.0)):
|
|
11297
11308
|
dependencies:
|
|
11298
11309
|
empathic: 2.0.1
|
|
11299
|
-
eslint: 10.
|
|
11310
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11300
11311
|
jsonc-eslint-parser: 3.1.0
|
|
11301
11312
|
pathe: 2.0.3
|
|
11302
11313
|
pnpm-workspace-yaml: 1.6.1
|
|
@@ -11304,56 +11315,56 @@ snapshots:
|
|
|
11304
11315
|
yaml: 2.9.0
|
|
11305
11316
|
yaml-eslint-parser: 2.0.0
|
|
11306
11317
|
|
|
11307
|
-
eslint-plugin-regexp@3.1.
|
|
11318
|
+
eslint-plugin-regexp@3.1.1(eslint@10.6.0(jiti@2.7.0)):
|
|
11308
11319
|
dependencies:
|
|
11309
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11320
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11310
11321
|
'@eslint-community/regexpp': 4.12.2
|
|
11311
11322
|
comment-parser: 1.4.7
|
|
11312
|
-
eslint: 10.
|
|
11323
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11313
11324
|
jsdoc-type-pratt-parser: 7.2.0
|
|
11314
11325
|
refa: 0.12.1
|
|
11315
11326
|
regexp-ast-analysis: 0.7.1
|
|
11316
11327
|
scslre: 0.3.0
|
|
11317
11328
|
|
|
11318
|
-
eslint-plugin-toml@1.4.0(eslint@10.
|
|
11329
|
+
eslint-plugin-toml@1.4.0(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2):
|
|
11319
11330
|
dependencies:
|
|
11320
11331
|
'@eslint/core': 1.2.1
|
|
11321
11332
|
'@eslint/plugin-kit': 0.7.2
|
|
11322
11333
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11323
11334
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11324
|
-
eslint: 10.
|
|
11335
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11325
11336
|
toml-eslint-parser: 1.0.3
|
|
11326
11337
|
transitivePeerDependencies:
|
|
11327
11338
|
- supports-color
|
|
11328
11339
|
|
|
11329
|
-
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.
|
|
11340
|
+
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0)):
|
|
11330
11341
|
dependencies:
|
|
11331
|
-
eslint: 10.
|
|
11342
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11332
11343
|
optionalDependencies:
|
|
11333
|
-
'@typescript-eslint/eslint-plugin': 8.62.
|
|
11344
|
+
'@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11334
11345
|
|
|
11335
|
-
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
11346
|
+
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0))):
|
|
11336
11347
|
dependencies:
|
|
11337
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11338
|
-
eslint: 10.
|
|
11348
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11349
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11339
11350
|
natural-compare: 1.4.0
|
|
11340
11351
|
nth-check: 2.1.1
|
|
11341
11352
|
postcss-selector-parser: 7.1.4
|
|
11342
11353
|
semver: 7.8.5
|
|
11343
|
-
vue-eslint-parser: 10.4.1(eslint@10.
|
|
11354
|
+
vue-eslint-parser: 10.4.1(eslint@10.6.0(jiti@2.7.0))
|
|
11344
11355
|
xml-name-validator: 4.0.0
|
|
11345
11356
|
optionalDependencies:
|
|
11346
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
11347
|
-
'@typescript-eslint/parser': 8.62.
|
|
11357
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.6.0(jiti@2.7.0))
|
|
11358
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
11348
11359
|
|
|
11349
|
-
eslint-plugin-yml@3.5.0(eslint@10.
|
|
11360
|
+
eslint-plugin-yml@3.5.0(eslint@10.6.0(jiti@2.7.0)):
|
|
11350
11361
|
dependencies:
|
|
11351
11362
|
'@eslint/core': 1.2.1
|
|
11352
11363
|
'@eslint/plugin-kit': 0.7.2
|
|
11353
11364
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11354
11365
|
diff-sequences: 29.6.3
|
|
11355
11366
|
escape-string-regexp: 5.0.0
|
|
11356
|
-
eslint: 10.
|
|
11367
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11357
11368
|
natural-compare: 1.4.0
|
|
11358
11369
|
yaml-eslint-parser: 2.0.0
|
|
11359
11370
|
|
|
@@ -11370,9 +11381,9 @@ snapshots:
|
|
|
11370
11381
|
|
|
11371
11382
|
eslint-visitor-keys@5.0.1: {}
|
|
11372
11383
|
|
|
11373
|
-
eslint@10.
|
|
11384
|
+
eslint@10.6.0(jiti@2.7.0):
|
|
11374
11385
|
dependencies:
|
|
11375
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11386
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11376
11387
|
'@eslint-community/regexpp': 4.12.2
|
|
11377
11388
|
'@eslint/config-array': 0.23.5
|
|
11378
11389
|
'@eslint/config-helpers': 0.6.0
|
|
@@ -11485,7 +11496,7 @@ snapshots:
|
|
|
11485
11496
|
parseurl: 1.3.3
|
|
11486
11497
|
proxy-addr: 2.0.7
|
|
11487
11498
|
qs: 6.15.2
|
|
11488
|
-
range-parser: 1.
|
|
11499
|
+
range-parser: 1.3.0
|
|
11489
11500
|
router: 2.2.0(supports-color@10.2.2)
|
|
11490
11501
|
send: 1.2.1(supports-color@10.2.2)
|
|
11491
11502
|
serve-static: 2.2.1
|
|
@@ -11521,7 +11532,7 @@ snapshots:
|
|
|
11521
11532
|
dependencies:
|
|
11522
11533
|
fast-string-truncated-width: 3.0.3
|
|
11523
11534
|
|
|
11524
|
-
fast-uri@3.1.
|
|
11535
|
+
fast-uri@3.1.3: {}
|
|
11525
11536
|
|
|
11526
11537
|
fast-wrap-ansi@0.2.2:
|
|
11527
11538
|
dependencies:
|
|
@@ -11551,7 +11562,7 @@ snapshots:
|
|
|
11551
11562
|
|
|
11552
11563
|
file-entry-cache@10.1.4:
|
|
11553
11564
|
dependencies:
|
|
11554
|
-
flat-cache: 6.1.
|
|
11565
|
+
flat-cache: 6.1.23
|
|
11555
11566
|
|
|
11556
11567
|
file-entry-cache@8.0.0:
|
|
11557
11568
|
dependencies:
|
|
@@ -11600,9 +11611,9 @@ snapshots:
|
|
|
11600
11611
|
flatted: 3.4.2
|
|
11601
11612
|
keyv: 4.5.4
|
|
11602
11613
|
|
|
11603
|
-
flat-cache@6.1.
|
|
11614
|
+
flat-cache@6.1.23:
|
|
11604
11615
|
dependencies:
|
|
11605
|
-
cacheable: 2.
|
|
11616
|
+
cacheable: 2.5.0
|
|
11606
11617
|
flatted: 3.4.2
|
|
11607
11618
|
hookified: 1.15.1
|
|
11608
11619
|
|
|
@@ -11833,9 +11844,9 @@ snapshots:
|
|
|
11833
11844
|
statuses: 2.0.2
|
|
11834
11845
|
toidentifier: 1.0.1
|
|
11835
11846
|
|
|
11836
|
-
https-proxy-agent@5.0.1:
|
|
11847
|
+
https-proxy-agent@5.0.1(supports-color@10.2.2):
|
|
11837
11848
|
dependencies:
|
|
11838
|
-
agent-base: 6.0.2
|
|
11849
|
+
agent-base: 6.0.2(supports-color@10.2.2)
|
|
11839
11850
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11840
11851
|
transitivePeerDependencies:
|
|
11841
11852
|
- supports-color
|
|
@@ -11853,7 +11864,7 @@ snapshots:
|
|
|
11853
11864
|
dependencies:
|
|
11854
11865
|
safer-buffer: 2.1.2
|
|
11855
11866
|
|
|
11856
|
-
iconv-lite@0.7.
|
|
11867
|
+
iconv-lite@0.7.3:
|
|
11857
11868
|
dependencies:
|
|
11858
11869
|
safer-buffer: 2.1.2
|
|
11859
11870
|
|
|
@@ -12090,10 +12101,6 @@ snapshots:
|
|
|
12090
12101
|
dependencies:
|
|
12091
12102
|
argparse: 2.0.1
|
|
12092
12103
|
|
|
12093
|
-
js-yaml@4.2.0:
|
|
12094
|
-
dependencies:
|
|
12095
|
-
argparse: 2.0.1
|
|
12096
|
-
|
|
12097
12104
|
jsdoc-type-pratt-parser@7.1.1: {}
|
|
12098
12105
|
|
|
12099
12106
|
jsdoc-type-pratt-parser@7.2.0: {}
|
|
@@ -12933,27 +12940,27 @@ snapshots:
|
|
|
12933
12940
|
'@oxfmt/binding-win32-ia32-msvc': 0.45.0
|
|
12934
12941
|
'@oxfmt/binding-win32-x64-msvc': 0.45.0
|
|
12935
12942
|
|
|
12936
|
-
oxlint@1.
|
|
12943
|
+
oxlint@1.72.0:
|
|
12937
12944
|
optionalDependencies:
|
|
12938
|
-
'@oxlint/binding-android-arm-eabi': 1.
|
|
12939
|
-
'@oxlint/binding-android-arm64': 1.
|
|
12940
|
-
'@oxlint/binding-darwin-arm64': 1.
|
|
12941
|
-
'@oxlint/binding-darwin-x64': 1.
|
|
12942
|
-
'@oxlint/binding-freebsd-x64': 1.
|
|
12943
|
-
'@oxlint/binding-linux-arm-gnueabihf': 1.
|
|
12944
|
-
'@oxlint/binding-linux-arm-musleabihf': 1.
|
|
12945
|
-
'@oxlint/binding-linux-arm64-gnu': 1.
|
|
12946
|
-
'@oxlint/binding-linux-arm64-musl': 1.
|
|
12947
|
-
'@oxlint/binding-linux-ppc64-gnu': 1.
|
|
12948
|
-
'@oxlint/binding-linux-riscv64-gnu': 1.
|
|
12949
|
-
'@oxlint/binding-linux-riscv64-musl': 1.
|
|
12950
|
-
'@oxlint/binding-linux-s390x-gnu': 1.
|
|
12951
|
-
'@oxlint/binding-linux-x64-gnu': 1.
|
|
12952
|
-
'@oxlint/binding-linux-x64-musl': 1.
|
|
12953
|
-
'@oxlint/binding-openharmony-arm64': 1.
|
|
12954
|
-
'@oxlint/binding-win32-arm64-msvc': 1.
|
|
12955
|
-
'@oxlint/binding-win32-ia32-msvc': 1.
|
|
12956
|
-
'@oxlint/binding-win32-x64-msvc': 1.
|
|
12945
|
+
'@oxlint/binding-android-arm-eabi': 1.72.0
|
|
12946
|
+
'@oxlint/binding-android-arm64': 1.72.0
|
|
12947
|
+
'@oxlint/binding-darwin-arm64': 1.72.0
|
|
12948
|
+
'@oxlint/binding-darwin-x64': 1.72.0
|
|
12949
|
+
'@oxlint/binding-freebsd-x64': 1.72.0
|
|
12950
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.72.0
|
|
12951
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.72.0
|
|
12952
|
+
'@oxlint/binding-linux-arm64-gnu': 1.72.0
|
|
12953
|
+
'@oxlint/binding-linux-arm64-musl': 1.72.0
|
|
12954
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.72.0
|
|
12955
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.72.0
|
|
12956
|
+
'@oxlint/binding-linux-riscv64-musl': 1.72.0
|
|
12957
|
+
'@oxlint/binding-linux-s390x-gnu': 1.72.0
|
|
12958
|
+
'@oxlint/binding-linux-x64-gnu': 1.72.0
|
|
12959
|
+
'@oxlint/binding-linux-x64-musl': 1.72.0
|
|
12960
|
+
'@oxlint/binding-openharmony-arm64': 1.72.0
|
|
12961
|
+
'@oxlint/binding-win32-arm64-msvc': 1.72.0
|
|
12962
|
+
'@oxlint/binding-win32-ia32-msvc': 1.72.0
|
|
12963
|
+
'@oxlint/binding-win32-x64-msvc': 1.72.0
|
|
12957
12964
|
|
|
12958
12965
|
p-limit@2.3.0:
|
|
12959
12966
|
dependencies:
|
|
@@ -13166,10 +13173,10 @@ snapshots:
|
|
|
13166
13173
|
|
|
13167
13174
|
quansync@1.0.0: {}
|
|
13168
13175
|
|
|
13169
|
-
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.
|
|
13176
|
+
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.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(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):
|
|
13170
13177
|
dependencies:
|
|
13171
13178
|
'@cabloy/module-info': 2.0.3
|
|
13172
|
-
'@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.
|
|
13179
|
+
'@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.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(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)'
|
|
13173
13180
|
chalk: 3.0.0
|
|
13174
13181
|
esbuild: 0.25.12
|
|
13175
13182
|
fs-extra: 11.3.5
|
|
@@ -13203,23 +13210,23 @@ snapshots:
|
|
|
13203
13210
|
- workbox-build
|
|
13204
13211
|
- yaml
|
|
13205
13212
|
|
|
13206
|
-
quasar@2.
|
|
13213
|
+
quasar@2.21.0: {}
|
|
13207
13214
|
|
|
13208
13215
|
queue-microtask@1.2.3: {}
|
|
13209
13216
|
|
|
13210
|
-
range-parser@1.
|
|
13217
|
+
range-parser@1.3.0: {}
|
|
13211
13218
|
|
|
13212
13219
|
raw-body@3.0.2:
|
|
13213
13220
|
dependencies:
|
|
13214
13221
|
bytes: 3.1.2
|
|
13215
13222
|
http-errors: 2.0.1
|
|
13216
|
-
iconv-lite: 0.7.
|
|
13223
|
+
iconv-lite: 0.7.3
|
|
13217
13224
|
unpipe: 1.0.0
|
|
13218
13225
|
|
|
13219
13226
|
rc-config-loader@4.1.4:
|
|
13220
13227
|
dependencies:
|
|
13221
13228
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13222
|
-
js-yaml: 4.
|
|
13229
|
+
js-yaml: 4.1.1
|
|
13223
13230
|
json5: 2.2.3
|
|
13224
13231
|
require-from-string: 2.0.2
|
|
13225
13232
|
transitivePeerDependencies:
|
|
@@ -13342,7 +13349,7 @@ snapshots:
|
|
|
13342
13349
|
glob: 13.0.6
|
|
13343
13350
|
package-json-from-dist: 1.0.1
|
|
13344
13351
|
|
|
13345
|
-
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.
|
|
13352
|
+
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.6(typescript@5.9.3)):
|
|
13346
13353
|
dependencies:
|
|
13347
13354
|
'@babel/generator': 8.0.0-rc.2
|
|
13348
13355
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
@@ -13357,11 +13364,11 @@ snapshots:
|
|
|
13357
13364
|
optionalDependencies:
|
|
13358
13365
|
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13359
13366
|
typescript: 5.9.3
|
|
13360
|
-
vue-tsc: 3.3.
|
|
13367
|
+
vue-tsc: 3.3.6(typescript@5.9.3)
|
|
13361
13368
|
transitivePeerDependencies:
|
|
13362
13369
|
- oxc-resolver
|
|
13363
13370
|
|
|
13364
|
-
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.
|
|
13371
|
+
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.6(typescript@5.9.3)):
|
|
13365
13372
|
dependencies:
|
|
13366
13373
|
'@babel/generator': 8.0.0-rc.3
|
|
13367
13374
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
@@ -13377,7 +13384,7 @@ snapshots:
|
|
|
13377
13384
|
optionalDependencies:
|
|
13378
13385
|
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13379
13386
|
typescript: 5.9.3
|
|
13380
|
-
vue-tsc: 3.3.
|
|
13387
|
+
vue-tsc: 3.3.6(typescript@5.9.3)
|
|
13381
13388
|
transitivePeerDependencies:
|
|
13382
13389
|
- oxc-resolver
|
|
13383
13390
|
|
|
@@ -13600,7 +13607,7 @@ snapshots:
|
|
|
13600
13607
|
mime-types: 3.0.2
|
|
13601
13608
|
ms: 2.1.3
|
|
13602
13609
|
on-finished: 2.4.1
|
|
13603
|
-
range-parser: 1.
|
|
13610
|
+
range-parser: 1.3.0
|
|
13604
13611
|
statuses: 2.0.2
|
|
13605
13612
|
transitivePeerDependencies:
|
|
13606
13613
|
- supports-color
|
|
@@ -13611,7 +13618,7 @@ snapshots:
|
|
|
13611
13618
|
tslib: 2.8.1
|
|
13612
13619
|
upper-case-first: 2.0.2
|
|
13613
13620
|
|
|
13614
|
-
serialize-javascript@7.0.
|
|
13621
|
+
serialize-javascript@7.0.7: {}
|
|
13615
13622
|
|
|
13616
13623
|
serve-static@2.2.1:
|
|
13617
13624
|
dependencies:
|
|
@@ -13652,7 +13659,7 @@ snapshots:
|
|
|
13652
13659
|
|
|
13653
13660
|
shebang-regex@3.0.0: {}
|
|
13654
13661
|
|
|
13655
|
-
shell-quote@1.
|
|
13662
|
+
shell-quote@1.9.0: {}
|
|
13656
13663
|
|
|
13657
13664
|
side-channel-list@1.0.1:
|
|
13658
13665
|
dependencies:
|
|
@@ -13847,7 +13854,7 @@ snapshots:
|
|
|
13847
13854
|
|
|
13848
13855
|
tagged-tag@1.0.0: {}
|
|
13849
13856
|
|
|
13850
|
-
tailwindcss@4.3.
|
|
13857
|
+
tailwindcss@4.3.2: {}
|
|
13851
13858
|
|
|
13852
13859
|
tapable@2.3.3: {}
|
|
13853
13860
|
|
|
@@ -13864,7 +13871,7 @@ snapshots:
|
|
|
13864
13871
|
tar-stream@3.2.0:
|
|
13865
13872
|
dependencies:
|
|
13866
13873
|
b4a: 1.8.1
|
|
13867
|
-
bare-fs: 4.7.
|
|
13874
|
+
bare-fs: 4.7.3
|
|
13868
13875
|
fast-fifo: 1.3.2
|
|
13869
13876
|
streamx: 2.28.0
|
|
13870
13877
|
transitivePeerDependencies:
|
|
@@ -13995,7 +14002,7 @@ snapshots:
|
|
|
13995
14002
|
optionalDependencies:
|
|
13996
14003
|
typescript: 5.9.3
|
|
13997
14004
|
|
|
13998
|
-
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.
|
|
14005
|
+
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.6(typescript@5.9.3)):
|
|
13999
14006
|
dependencies:
|
|
14000
14007
|
ansis: 4.3.1
|
|
14001
14008
|
cac: 7.0.0
|
|
@@ -14006,7 +14013,7 @@ snapshots:
|
|
|
14006
14013
|
obug: 2.1.3
|
|
14007
14014
|
picomatch: 4.0.4
|
|
14008
14015
|
rolldown: 1.0.0-rc.17
|
|
14009
|
-
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.
|
|
14016
|
+
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.6(typescript@5.9.3))
|
|
14010
14017
|
semver: 7.8.5
|
|
14011
14018
|
tinyexec: 1.2.4
|
|
14012
14019
|
tinyglobby: 0.2.17
|
|
@@ -14032,7 +14039,7 @@ snapshots:
|
|
|
14032
14039
|
|
|
14033
14040
|
type-fest@4.41.0: {}
|
|
14034
14041
|
|
|
14035
|
-
type-fest@5.
|
|
14042
|
+
type-fest@5.8.0:
|
|
14036
14043
|
dependencies:
|
|
14037
14044
|
tagged-tag: 1.0.0
|
|
14038
14045
|
|
|
@@ -14048,13 +14055,13 @@ snapshots:
|
|
|
14048
14055
|
es-errors: 1.3.0
|
|
14049
14056
|
is-typed-array: 1.1.15
|
|
14050
14057
|
|
|
14051
|
-
typescript-eslint@8.62.
|
|
14058
|
+
typescript-eslint@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3):
|
|
14052
14059
|
dependencies:
|
|
14053
|
-
'@typescript-eslint/eslint-plugin': 8.62.
|
|
14054
|
-
'@typescript-eslint/parser': 8.62.
|
|
14055
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
14056
|
-
'@typescript-eslint/utils': 8.62.
|
|
14057
|
-
eslint: 10.
|
|
14060
|
+
'@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14061
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
14062
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
14063
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14064
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
14058
14065
|
typescript: 5.9.3
|
|
14059
14066
|
transitivePeerDependencies:
|
|
14060
14067
|
- supports-color
|
|
@@ -14264,10 +14271,10 @@ snapshots:
|
|
|
14264
14271
|
dependencies:
|
|
14265
14272
|
vue: 3.5.38(typescript@5.9.3)
|
|
14266
14273
|
|
|
14267
|
-
vue-eslint-parser@10.4.1(eslint@10.
|
|
14274
|
+
vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)):
|
|
14268
14275
|
dependencies:
|
|
14269
14276
|
debug: 4.4.3(supports-color@10.2.2)
|
|
14270
|
-
eslint: 10.
|
|
14277
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
14271
14278
|
eslint-scope: 9.1.2
|
|
14272
14279
|
eslint-visitor-keys: 5.0.1
|
|
14273
14280
|
espree: 11.2.0
|
|
@@ -14280,10 +14287,10 @@ snapshots:
|
|
|
14280
14287
|
dependencies:
|
|
14281
14288
|
vue: 3.5.38(typescript@5.9.3)
|
|
14282
14289
|
|
|
14283
|
-
vue-tsc@3.3.
|
|
14290
|
+
vue-tsc@3.3.6(typescript@5.9.3):
|
|
14284
14291
|
dependencies:
|
|
14285
14292
|
'@volar/typescript': 2.4.28
|
|
14286
|
-
'@vue/language-core': 3.3.
|
|
14293
|
+
'@vue/language-core': 3.3.6
|
|
14287
14294
|
typescript: 5.9.3
|
|
14288
14295
|
|
|
14289
14296
|
vue3-browser-compiler-yx@1.0.4(vue@3.5.38(typescript@5.9.3)):
|