From 9b98b3190e6a2f42d3ad3683d1b80ad30e014a60 Mon Sep 17 00:00:00 2001 From: vben Date: Thu, 1 Aug 2024 00:06:36 +0800 Subject: [PATCH] chore: update deps --- apps/web-antd/package.json | 2 +- .../src/router/routes/modules/demos.ts | 1 + apps/web-ele/package.json | 6 +- .../web-ele/src/router/routes/modules/vben.ts | 2 +- apps/web-ele/vite.config.mts | 11 +- apps/web-naive/package.json | 2 +- .../src/router/routes/modules/vben.ts | 2 +- .../lint-configs/eslint-config/package.json | 6 +- .../eslint-config/src/configs/typescript.ts | 17 +- internal/vite-config/src/typing.ts | 4 +- package.json | 7 +- packages/@core/base/icons/package.json | 2 +- packages/@core/base/typings/package.json | 2 +- packages/@core/base/typings/src/basic.d.ts | 4 +- packages/@core/base/typings/vue-router.d.ts | 1 + packages/@core/ui-kit/shadcn-ui/package.json | 2 +- packages/effects/common-ui/package.json | 2 +- packages/effects/hooks/package.json | 2 +- packages/effects/layouts/package.json | 2 +- packages/stores/package.json | 2 +- packages/types/global.d.ts | 1 + packages/types/package.json | 2 +- packages/utils/package.json | 2 +- pnpm-lock.yaml | 461 ++++++++++-------- 24 files changed, 305 insertions(+), 240 deletions(-) diff --git a/apps/web-antd/package.json b/apps/web-antd/package.json index cacc517a..49159dee 100644 --- a/apps/web-antd/package.json +++ b/apps/web-antd/package.json @@ -45,6 +45,6 @@ "dayjs": "^1.11.12", "pinia": "2.1.7", "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/apps/web-antd/src/router/routes/modules/demos.ts b/apps/web-antd/src/router/routes/modules/demos.ts index 1c766832..ad88a548 100644 --- a/apps/web-antd/src/router/routes/modules/demos.ts +++ b/apps/web-antd/src/router/routes/modules/demos.ts @@ -161,6 +161,7 @@ const routes: RouteRecordRaw[] = [ import( '#/views/demos/features/hide-menu-children/children.vue' ), + meta: { title: 'HideChildrenInMenuChildrenDemo' }, }, ], }, diff --git a/apps/web-ele/package.json b/apps/web-ele/package.json index 0ff571b6..7f0d4fb9 100644 --- a/apps/web-ele/package.json +++ b/apps/web-ele/package.json @@ -42,10 +42,10 @@ "@vben/utils": "workspace:*", "@vueuse/core": "^10.11.0", "dayjs": "^1.11.12", - "element-plus": "^2.7.6", + "element-plus": "^2.7.8", "pinia": "2.1.7", - "vue": "^3.4.34", - "vue-router": "^4.4.0" + "vue": "^3.4.35", + "vue-router": "^4.4.1" }, "devDependencies": { "unplugin-element-plus": "^0.8.0" diff --git a/apps/web-ele/src/router/routes/modules/vben.ts b/apps/web-ele/src/router/routes/modules/vben.ts index 39a815de..602ef816 100644 --- a/apps/web-ele/src/router/routes/modules/vben.ts +++ b/apps/web-ele/src/router/routes/modules/vben.ts @@ -65,7 +65,7 @@ const routes: RouteRecordRaw[] = [ }, { name: 'VbenAntd', - path: '/vben-admin/aned', + path: '/vben-admin/antd', component: IFrameView, meta: { badgeType: 'dot', diff --git a/apps/web-ele/vite.config.mts b/apps/web-ele/vite.config.mts index 96605123..9f1e7235 100644 --- a/apps/web-ele/vite.config.mts +++ b/apps/web-ele/vite.config.mts @@ -1,13 +1,16 @@ import { defineConfig } from '@vben/vite-config'; -import ElementPlus from 'unplugin-element-plus/vite' + +import ElementPlus from 'unplugin-element-plus/vite'; export default defineConfig(async () => { return { application: {}, vite: { - plugins: [ElementPlus({ - format:"esm" - })], + plugins: [ + ElementPlus({ + format: 'esm', + }), + ], server: { proxy: { '/api': { diff --git a/apps/web-naive/package.json b/apps/web-naive/package.json index f9499b1a..736267ff 100644 --- a/apps/web-naive/package.json +++ b/apps/web-naive/package.json @@ -44,6 +44,6 @@ "naive-ui": "^2.39.0", "pinia": "2.1.7", "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/apps/web-naive/src/router/routes/modules/vben.ts b/apps/web-naive/src/router/routes/modules/vben.ts index 8c57f1d5..acbe39e7 100644 --- a/apps/web-naive/src/router/routes/modules/vben.ts +++ b/apps/web-naive/src/router/routes/modules/vben.ts @@ -55,7 +55,7 @@ const routes: RouteRecordRaw[] = [ }, { name: 'VbenAntd', - path: '/vben-admin/aned', + path: '/vben-admin/antd', component: IFrameView, meta: { badgeType: 'dot', diff --git a/internal/lint-configs/eslint-config/package.json b/internal/lint-configs/eslint-config/package.json index c9d2b2c1..5442764c 100644 --- a/internal/lint-configs/eslint-config/package.json +++ b/internal/lint-configs/eslint-config/package.json @@ -27,15 +27,15 @@ } }, "dependencies": { - "eslint-config-turbo": "^2.0.10", + "eslint-config-turbo": "^2.0.11", "eslint-plugin-command": "^0.2.3", "eslint-plugin-import-x": "^3.1.0" }, "devDependencies": { "@eslint/js": "^9.8.0", "@types/eslint": "^9.6.0", - "@typescript-eslint/eslint-plugin": "^7.18.0", - "@typescript-eslint/parser": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.0.0", + "@typescript-eslint/parser": "^8.0.0", "eslint": "^9.8.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-eslint-comments": "^3.2.0", diff --git a/internal/lint-configs/eslint-config/src/configs/typescript.ts b/internal/lint-configs/eslint-config/src/configs/typescript.ts index cedf1782..3f5c3f8d 100644 --- a/internal/lint-configs/eslint-config/src/configs/typescript.ts +++ b/internal/lint-configs/eslint-config/src/configs/typescript.ts @@ -40,22 +40,10 @@ export async function typescript(): Promise { }, ], - '@typescript-eslint/ban-types': 'error', '@typescript-eslint/consistent-type-definitions': ['warn', 'interface'], - '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/explicit-function-rkeyword-spacingeturn-type': + 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', - '@typescript-eslint/keyword-spacing': [ - 'error', - { - after: true, - before: true, - overrides: { - case: { after: true }, - return: { after: true }, - throw: { after: true }, - }, - }, - ], '@typescript-eslint/no-empty-function': [ 'error', { @@ -65,6 +53,7 @@ export async function typescript(): Promise { '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/no-non-null-assertion': 'error', + '@typescript-eslint/no-unused-expressions': 'off', '@typescript-eslint/no-unused-vars': [ 'error', { diff --git a/internal/vite-config/src/typing.ts b/internal/vite-config/src/typing.ts index 0f855a91..afa970d9 100644 --- a/internal/vite-config/src/typing.ts +++ b/internal/vite-config/src/typing.ts @@ -116,9 +116,9 @@ interface LibraryPluginOptions extends CommonPluginOptions { injectLibCss?: boolean; } -interface ApplicationOptions extends ApplicationPluginOptions {} +type ApplicationOptions = ApplicationPluginOptions; -interface LibraryOptions extends LibraryPluginOptions {} +type LibraryOptions = LibraryPluginOptions; type DefineApplicationOptions = (config?: ConfigEnv) => Promise<{ application?: ApplicationOptions; diff --git a/package.json b/package.json index 6cc8fc53..648cb350 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "@changesets/cli": "^2.27.7", "@ls-lint/ls-lint": "^2.2.3", "@types/jsdom": "^21.1.7", - "@types/node": "^22.0.0", + "@types/node": "^22.0.2", "@vben/commitlint-config": "workspace:*", "@vben/eslint-config": "workspace:*", "@vben/lint-staged-config": "workspace:*", @@ -78,7 +78,7 @@ "is-ci": "^3.0.1", "jsdom": "^24.1.1", "rimraf": "^6.0.1", - "turbo": "^2.0.10", + "turbo": "^2.0.11", "typescript": "^5.5.4", "unbuild": "^2.0.0", "vite": "^5.3.5", @@ -93,8 +93,7 @@ "pnpm": { "peerDependencyRules": { "allowedVersions": { - "eslint": "*", - "@typescript-eslint/eslint-plugin": "*" + "eslint": "*" } }, "overrides": { diff --git a/packages/@core/base/icons/package.json b/packages/@core/base/icons/package.json index 2de9149e..6c58c60b 100644 --- a/packages/@core/base/icons/package.json +++ b/packages/@core/base/icons/package.json @@ -35,7 +35,7 @@ }, "dependencies": { "@iconify/vue": "^4.1.2", - "lucide-vue-next": "^0.417.0", + "lucide-vue-next": "^0.418.0", "vue": "^3.4.35" } } diff --git a/packages/@core/base/typings/package.json b/packages/@core/base/typings/package.json index e2f4cad8..3b1d1796 100644 --- a/packages/@core/base/typings/package.json +++ b/packages/@core/base/typings/package.json @@ -39,6 +39,6 @@ }, "dependencies": { "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/packages/@core/base/typings/src/basic.d.ts b/packages/@core/base/typings/src/basic.d.ts index b9ce6bff..de72239c 100644 --- a/packages/@core/base/typings/src/basic.d.ts +++ b/packages/@core/base/typings/src/basic.d.ts @@ -3,9 +3,9 @@ interface BasicOption { value: string; } -interface SelectOption extends BasicOption {} +type SelectOption = BasicOption; -interface TabOption extends BasicOption {} +type TabOption = BasicOption; interface BasicUserInfo { /** diff --git a/packages/@core/base/typings/vue-router.d.ts b/packages/@core/base/typings/vue-router.d.ts index f10bf93e..4874bcd7 100644 --- a/packages/@core/base/typings/vue-router.d.ts +++ b/packages/@core/base/typings/vue-router.d.ts @@ -4,5 +4,6 @@ import type { RouteMeta as IRouteMeta } from '@vben-core/typings'; import 'vue-router'; declare module 'vue-router' { + // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface RouteMeta extends IRouteMeta {} } diff --git a/packages/@core/ui-kit/shadcn-ui/package.json b/packages/@core/ui-kit/shadcn-ui/package.json index 1d7a7b9d..2421f4c8 100644 --- a/packages/@core/ui-kit/shadcn-ui/package.json +++ b/packages/@core/ui-kit/shadcn-ui/package.json @@ -48,7 +48,7 @@ "@vben-core/typings": "workspace:*", "@vueuse/core": "^10.11.0", "class-variance-authority": "^0.7.0", - "lucide-vue-next": "^0.417.0", + "lucide-vue-next": "^0.418.0", "radix-vue": "^1.9.2", "vue": "^3.4.35" } diff --git a/packages/effects/common-ui/package.json b/packages/effects/common-ui/package.json index e90c3be2..7146c7fa 100644 --- a/packages/effects/common-ui/package.json +++ b/packages/effects/common-ui/package.json @@ -29,7 +29,7 @@ "@vueuse/integrations": "^10.11.0", "qrcode": "^1.5.3", "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" }, "devDependencies": { "@types/qrcode": "^1.5.5" diff --git a/packages/effects/hooks/package.json b/packages/effects/hooks/package.json index f62eb1a8..bb881e91 100644 --- a/packages/effects/hooks/package.json +++ b/packages/effects/hooks/package.json @@ -26,7 +26,7 @@ "@vben/types": "workspace:*", "@vben/utils": "workspace:*", "vue": "^3.4.35", - "vue-router": "^4.4.0", + "vue-router": "^4.4.1", "watermark-js-plus": "^1.5.2" } } diff --git a/packages/effects/layouts/package.json b/packages/effects/layouts/package.json index 0e3341bd..fdf61121 100644 --- a/packages/effects/layouts/package.json +++ b/packages/effects/layouts/package.json @@ -34,6 +34,6 @@ "@vben/utils": "workspace:*", "@vueuse/core": "^10.11.0", "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/packages/stores/package.json b/packages/stores/package.json index 7f6a4a56..de1acb04 100644 --- a/packages/stores/package.json +++ b/packages/stores/package.json @@ -25,6 +25,6 @@ "pinia": "2.1.7", "pinia-plugin-persistedstate": "^3.2.1", "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/packages/types/global.d.ts b/packages/types/global.d.ts index 91119bfa..0c8f0198 100644 --- a/packages/types/global.d.ts +++ b/packages/types/global.d.ts @@ -3,6 +3,7 @@ import type { RouteMeta as IRouteMeta } from '@vben-core/typings'; import 'vue-router'; declare module 'vue-router' { + // eslint-disable-next-line @typescript-eslint/no-empty-object-type interface RouteMeta extends IRouteMeta {} } diff --git a/packages/types/package.json b/packages/types/package.json index 72b55d46..df51b70b 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -22,6 +22,6 @@ "dependencies": { "@vben-core/typings": "workspace:*", "vue": "^3.4.35", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/packages/utils/package.json b/packages/utils/package.json index 5ebb4ddb..57c7b08e 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -24,6 +24,6 @@ "dependencies": { "@vben-core/shared": "workspace:*", "@vben-core/typings": "workspace:*", - "vue-router": "^4.4.0" + "vue-router": "^4.4.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1bbf28f6..7818819d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,8 +26,8 @@ importers: specifier: ^21.1.7 version: 21.1.7 '@types/node': - specifier: ^22.0.0 - version: 22.0.0 + specifier: ^22.0.2 + version: 22.0.2 '@vben/commitlint-config': specifier: workspace:* version: link:internal/lint-configs/commitlint-config @@ -83,8 +83,8 @@ importers: specifier: ^6.0.1 version: 6.0.1 turbo: - specifier: ^2.0.10 - version: 2.0.10 + specifier: ^2.0.11 + version: 2.0.11 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -93,10 +93,10 @@ importers: version: 2.0.0(sass@1.77.8)(typescript@5.5.4)(vue-tsc@2.0.29(typescript@5.5.4)) vite: specifier: ^5.3.5 - version: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + version: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) vitest: specifier: ^2.0.5 - version: 2.0.5(@types/node@22.0.0)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3) + version: 2.0.5(@types/node@22.0.2)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3) vue-tsc: specifier: ^2.0.29 version: 2.0.29(typescript@5.5.4) @@ -167,8 +167,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) apps/web-ele: dependencies: @@ -221,7 +221,7 @@ importers: specifier: ^1.11.12 version: 1.11.12 element-plus: - specifier: ^2.7.6 + specifier: ^2.7.8 version: 2.7.8(vue@3.4.35(typescript@5.5.4)) pinia: specifier: 2.1.7 @@ -230,8 +230,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) devDependencies: unplugin-element-plus: specifier: ^0.8.0 @@ -294,14 +294,14 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) internal/lint-configs/commitlint-config: dependencies: '@commitlint/cli': specifier: ^19.3.0 - version: 19.3.0(@types/node@22.0.0)(typescript@5.5.4) + version: 19.3.0(@types/node@22.0.2)(typescript@5.5.4) '@commitlint/config-conventional': specifier: ^19.2.2 version: 19.2.2 @@ -321,8 +321,8 @@ importers: internal/lint-configs/eslint-config: dependencies: eslint-config-turbo: - specifier: ^2.0.10 - version: 2.0.10(eslint@9.8.0) + specifier: ^2.0.11 + version: 2.0.11(eslint@9.8.0) eslint-plugin-command: specifier: ^0.2.3 version: 0.2.3(eslint@9.8.0) @@ -337,11 +337,11 @@ importers: specifier: ^9.6.0 version: 9.6.0 '@typescript-eslint/eslint-plugin': - specifier: ^7.18.0 - version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) + specifier: ^8.0.0 + version: 8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) '@typescript-eslint/parser': - specifier: ^7.18.0 - version: 7.18.0(eslint@9.8.0)(typescript@5.5.4) + specifier: ^8.0.0 + version: 8.0.0(eslint@9.8.0)(typescript@5.5.4) eslint: specifier: ^9.8.0 version: 9.8.0 @@ -377,10 +377,10 @@ importers: version: 55.0.0(eslint@9.8.0) eslint-plugin-unused-imports: specifier: ^4.0.1 - version: 4.0.1(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0) + version: 4.0.1(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0) eslint-plugin-vitest: specifier: ^0.5.4 - version: 0.5.4(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.0)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3)) + version: 0.5.4(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.2)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3)) eslint-plugin-vue: specifier: ^9.27.0 version: 9.27.0(eslint@9.8.0) @@ -557,7 +557,7 @@ importers: version: link:../../packages/types vite: specifier: ^5.3.5 - version: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + version: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) internal/vite-config: dependencies: @@ -584,13 +584,13 @@ importers: version: 2.0.2 vite-plugin-lib-inject-css: specifier: ^2.1.1 - version: 2.1.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) + version: 2.1.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) vite-plugin-pwa: specifier: ^0.20.1 - version: 0.20.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) + version: 0.20.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) vite-plugin-vue-devtools: specifier: ^7.3.7 - version: 7.3.7(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 7.3.7(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) devDependencies: '@types/html-minifier-terser': specifier: ^7.0.2 @@ -600,10 +600,10 @@ importers: version: link:../node-utils '@vitejs/plugin-vue': specifier: ^5.1.1 - version: 5.1.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 5.1.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.0 - version: 4.0.0(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + version: 4.0.0(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) dayjs: specifier: ^1.11.12 version: 1.11.12 @@ -621,16 +621,16 @@ importers: version: 1.77.8 vite: specifier: ^5.3.5 - version: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + version: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) vite-plugin-compression: specifier: ^0.5.1 - version: 0.5.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) + version: 0.5.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) vite-plugin-dts: specifier: 4.0.0-beta.1 - version: 4.0.0-beta.1(@types/node@22.0.0)(rollup@4.19.1)(typescript@5.5.4)(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) + version: 4.0.0-beta.1(@types/node@22.0.2)(rollup@4.19.1)(typescript@5.5.4)(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) vite-plugin-html: specifier: ^3.2.2 - version: 3.2.2(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) + version: 3.2.2(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) packages/@core/base/design: {} @@ -640,8 +640,8 @@ importers: specifier: ^4.1.2 version: 4.1.2(vue@3.4.35(typescript@5.5.4)) lucide-vue-next: - specifier: ^0.417.0 - version: 0.417.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^0.418.0 + version: 0.418.0(vue@3.4.35(typescript@5.5.4)) vue: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) @@ -686,8 +686,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) packages/@core/composables: dependencies: @@ -792,8 +792,8 @@ importers: specifier: ^0.7.0 version: 0.7.0 lucide-vue-next: - specifier: ^0.417.0 - version: 0.417.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^0.418.0 + version: 0.418.0(vue@3.4.35(typescript@5.5.4)) radix-vue: specifier: ^1.9.2 version: 1.9.2(vue@3.4.35(typescript@5.5.4)) @@ -888,8 +888,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) devDependencies: '@types/qrcode': specifier: ^1.5.5 @@ -916,8 +916,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) watermark-js-plus: specifier: ^1.5.2 version: 1.5.2 @@ -967,8 +967,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) packages/effects/request: dependencies: @@ -1031,8 +1031,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) packages/styles: dependencies: @@ -1049,8 +1049,8 @@ importers: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) packages/utils: dependencies: @@ -1061,8 +1061,8 @@ importers: specifier: workspace:* version: link:../@core/base/typings vue-router: - specifier: ^4.4.0 - version: 4.4.0(vue@3.4.35(typescript@5.5.4)) + specifier: ^4.4.1 + version: 4.4.1(vue@3.4.35(typescript@5.5.4)) scripts/turbo-run: dependencies: @@ -1102,10 +1102,10 @@ importers: devDependencies: '@vite-pwa/vitepress': specifier: ^0.5.0 - version: 0.5.0(vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0)) + version: 0.5.0(vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0)) vitepress: specifier: ^1.3.1 - version: 1.3.1(@algolia/client-search@4.24.0)(@types/node@22.0.0)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) + version: 1.3.1(@algolia/client-search@4.24.0)(@types/node@22.0.2)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4) vue: specifier: ^3.4.35 version: 3.4.35(typescript@5.5.4) @@ -3813,6 +3813,9 @@ packages: '@types/node@22.0.0': resolution: {integrity: sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==} + '@types/node@22.0.2': + resolution: {integrity: sha512-yPL6DyFwY5PiMVEwymNeqUTKsDczQBJ/5T7W/46RwLU/VH+AA8aT5TZkvBviLKLbbm0hlfftEkGrNzfRk/fofQ==} + '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -3858,22 +3861,22 @@ packages: '@types/which@3.0.4': resolution: {integrity: sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==} - '@typescript-eslint/eslint-plugin@7.18.0': - resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==} - engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/eslint-plugin@8.0.0': + resolution: {integrity: sha512-STIZdwEQRXAHvNUS6ILDf5z3u95Gc8jzywunxSNqX00OooIemaaNIA0vEgynJlycL5AjabYLLrIyHd4iazyvtg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^7.0.0 - eslint: ^8.56.0 + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/parser@7.18.0': - resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==} - engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/parser@8.0.0': + resolution: {integrity: sha512-pS1hdZ+vnrpDIxuFXYQpLTILglTjSYJ9MbetZctrUawogUsPdz31DIIRZ9+rab0LhYNTsk88w4fIzVheiTbWOQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.56.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: @@ -3883,11 +3886,14 @@ packages: resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/type-utils@7.18.0': - resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==} - engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/scope-manager@8.0.0': + resolution: {integrity: sha512-V0aa9Csx/ZWWv2IPgTfY7T4agYwJyILESu/PVqFtTFz9RIS823mAze+NbnBI8xiwdX3iqeQbcTYlvB04G9wyQw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/type-utils@8.0.0': + resolution: {integrity: sha512-mJAFP2mZLTBwAn5WI4PMakpywfWFH5nQZezUQdSKV23Pqo6o9iShQg1hP2+0hJJXP2LnZkWPphdIq4juYYwCeg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: @@ -3897,6 +3903,10 @@ packages: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/types@8.0.0': + resolution: {integrity: sha512-wgdSGs9BTMWQ7ooeHtu5quddKKs5Z5dS+fHLbrQI+ID0XWJLODGMHRfhwImiHoeO2S5Wir2yXuadJN6/l4JRxw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@7.18.0': resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -3906,16 +3916,35 @@ packages: typescript: optional: true + '@typescript-eslint/typescript-estree@8.0.0': + resolution: {integrity: sha512-5b97WpKMX+Y43YKi4zVcCVLtK5F98dFls3Oxui8LbnmRsseKenbbDinmvxrWegKDMmlkIq/XHuyy0UGLtpCDKg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + '@typescript-eslint/utils@7.18.0': resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 + '@typescript-eslint/utils@8.0.0': + resolution: {integrity: sha512-k/oS/A/3QeGLRvOWCg6/9rATJL5rec7/5s1YmdS0ZU6LHveJyGFwBvLhSRBv6i9xaj7etmosp+l+ViN1I9Aj/Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + '@typescript-eslint/visitor-keys@7.18.0': resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/visitor-keys@8.0.0': + resolution: {integrity: sha512-oN0K4nkHuOyF3PVMyETbpP5zp6wfyOvm7tWhTMfoqxSSsPmJIh6JNASuZDlODE8eE+0EB9uar+6+vxr9DBTYOA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@vercel/nft@0.26.5': resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==} engines: {node: '>=16'} @@ -5400,8 +5429,8 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-config-turbo@2.0.10: - resolution: {integrity: sha512-mMbaj/yQc5P2mY09iwlduZrU+FUvpSn0MdbntyTEE46zKATCoeLWNhOaQacTU6AnZRyfe/mGLVIjOl+9Hm4qBQ==} + eslint-config-turbo@2.0.11: + resolution: {integrity: sha512-hriQ+OQvKbtE1w7JH+w2X+Lh/9YPgnaNJmjrfhANWStFJTDa1NrJMCm2UaxHbDNKxFsr/mN9TTkVCRiTktIaqw==} peerDependencies: eslint: '>6.6.0' @@ -5492,8 +5521,8 @@ packages: peerDependencies: eslint: '>=8.44.0' - eslint-plugin-turbo@2.0.10: - resolution: {integrity: sha512-6TR1Zu6UNRcvVvD/W+LUDjncGyr3I7oqRjVDvggPGSXs6Hbtk9Oc2GIPQji1JvWy8rzU59fFxrsTEgEKHFKlRA==} + eslint-plugin-turbo@2.0.11: + resolution: {integrity: sha512-cM2KRlC6zh8Y5pOpiGTkBMp3/V4f4sEebSYcHjotfc4VQziPXuZtf/4Si4pd6l1FpmYfkgE+AReZsRfEfK17bw==} peerDependencies: eslint: '>6.6.0' @@ -6724,8 +6753,8 @@ packages: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - lucide-vue-next@0.417.0: - resolution: {integrity: sha512-uIoSKLovPHcv2QCLJLZMh7XrBvbPvOwWCyldvOKvAF/3Mbez0isAY/j1WlBnO2Nu2FUNQex6eHXbPtou55H23Q==} + lucide-vue-next@0.418.0: + resolution: {integrity: sha512-G7PFtw1+GtkUpGCSe7LTbbduPw5AAp1Yd76LmSOxjAXrKEn7wGQ1Lw5NMgSrknElfJJ81DN21prUwifnQEdHjQ==} peerDependencies: vue: ^3.4.35 @@ -8809,38 +8838,38 @@ packages: tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - turbo-darwin-64@2.0.10: - resolution: {integrity: sha512-ND4hohx0wrd0AUsCf2RsdavlzUWVi0JU3vX5Vn2+wk3GG5RcZWIKi3y+it9MjgYuqqlCystkDbeamfH05iiQBQ==} + turbo-darwin-64@2.0.11: + resolution: {integrity: sha512-YlHEEhcm+jI1BSZoLugGHUWDfRXaNaQIv7tGQBfadYjo9kixBnqoTOU6s1ubOrQMID+lizZZQs79GXwqM6vohg==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.0.10: - resolution: {integrity: sha512-cvHMMi1jDiiVl5ls1nWwXyanH7mB+xD3oYyZOC3NzZdFAfce3CWpL6hgUnK2CFxbdvaHQTizkQEgsHvUeD9nTQ==} + turbo-darwin-arm64@2.0.11: + resolution: {integrity: sha512-K/YW+hWzRQ/wGmtffxllH4M1tgy8OlwgXODrIiAGzkSpZl9+pIsem/F86UULlhsIeavBYK/LS5+dzV3DPMjJ9w==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.0.10: - resolution: {integrity: sha512-dPRwHrKkzyc/VuQLfhOeYLkBxA60vvLZyn9pXChRF0zyimg04OnhBYcKBNkfWMUU+Z1gQDFEvfyvnV9EEHLh0Q==} + turbo-linux-64@2.0.11: + resolution: {integrity: sha512-mv8CwGP06UPweMh1Vlp6PI6OWnkuibxfIJ4Vlof7xqjohAaZU5FLqeOeHkjQflH/6YrCVuS9wrK0TFOu+meTtA==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.0.10: - resolution: {integrity: sha512-6qsYl+b1gf243QbL6cw+TbgUEWo6/krCCWDQjVg/8Znx45rkXnTJUqtIAMkQQsT+t7d3UU8hreQ77pjOW59LcQ==} + turbo-linux-arm64@2.0.11: + resolution: {integrity: sha512-wLE5tl4oriTmHbuayc0ki0csaCplmVLj+uCWtecM/mfBuZgNS9ICNM9c4sB+Cfl5tlBBFeepqRNgvRvn8WeVZg==} cpu: [arm64] os: [linux] - turbo-windows-64@2.0.10: - resolution: {integrity: sha512-rkMOqvwN7hmMJNeChj63ZpLlIF6b9QC0jW/IbOMgcZMLcvz9iF+qCc2yaeDWgfOgLsNjhtv1rlhimShUuasSXw==} + turbo-windows-64@2.0.11: + resolution: {integrity: sha512-tja3zvVCSWu3HizOoeQv0qDJ+GeWGWRFOOM6a8i3BYnXLgGKAaDZFcjwzgC50tWiAw4aowIVR4OouwIyRhLBaQ==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.0.10: - resolution: {integrity: sha512-r7HQScx+CpO0p+Mw97Yq63uUAIwTfEUXRX6qxzeipBK+mTsnV1A6dTTYeVLD3S5AlL8GGdXddx0swyDeeVkQng==} + turbo-windows-arm64@2.0.11: + resolution: {integrity: sha512-sYjXP6k94Bqh99R+y3M1Ks6LRIEZybMz+7enA8GKl6JJ2ZFaXxTnS6q+/2+ii1+rRwxohj5OBb4gxODcF8Jd4w==} cpu: [arm64] os: [win32] - turbo@2.0.10: - resolution: {integrity: sha512-1t10h9bWl94/zktjzVWwTerJL3kIMDSA8mfibr1bevGLjF0DsiHOJFkCQFa5QABK0eXb0Af5mdRehLRBVem0Qg==} + turbo@2.0.11: + resolution: {integrity: sha512-imDlFFAvitbCm1JtDFJ6eG882qwxHUmVT2noPb3p2jq5o5DuXOchMbkVS9kUeC3/4WpY5N0GBZ3RvqNyjHZw1Q==} hasBin: true type-check@0.4.0: @@ -9246,8 +9275,8 @@ packages: peerDependencies: vue: ^3.4.35 - vue-router@4.4.0: - resolution: {integrity: sha512-HB+t2p611aIZraV2aPSRNXf0Z/oLZFrlygJm+sZbdJaW6lcFqEDQwnzUBXn+DApw+/QzDU/I9TeWx9izEjTmsA==} + vue-router@4.4.1: + resolution: {integrity: sha512-njTLt/6gYGgIhv+U8nc5J6JpJpntFgy4fptRJ9Dp2qWQRo/PekB5DbKRYRPt0kM6feXysPKl7A5BjOmOJL5Ttw==} peerDependencies: vue: ^3.4.35 @@ -10766,11 +10795,11 @@ snapshots: dependencies: mime: 3.0.0 - '@commitlint/cli@19.3.0(@types/node@22.0.0)(typescript@5.5.4)': + '@commitlint/cli@19.3.0(@types/node@22.0.2)(typescript@5.5.4)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.2.0(@types/node@22.0.0)(typescript@5.5.4) + '@commitlint/load': 19.2.0(@types/node@22.0.2)(typescript@5.5.4) '@commitlint/read': 19.2.1 '@commitlint/types': 19.0.3 execa: 8.0.1 @@ -10817,7 +10846,7 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.2.0(@types/node@22.0.0)(typescript@5.5.4)': + '@commitlint/load@19.2.0(@types/node@22.0.2)(typescript@5.5.4)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 @@ -10825,7 +10854,7 @@ snapshots: '@commitlint/types': 19.0.3 chalk: 5.3.0 cosmiconfig: 9.0.0(typescript@5.5.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@22.0.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.0.2)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -11872,23 +11901,23 @@ snapshots: - encoding - supports-color - '@microsoft/api-extractor-model@7.29.3(@types/node@22.0.0)': + '@microsoft/api-extractor-model@7.29.3(@types/node@22.0.2)': dependencies: '@microsoft/tsdoc': 0.15.0 '@microsoft/tsdoc-config': 0.17.0 - '@rushstack/node-core-library': 5.5.0(@types/node@22.0.0) + '@rushstack/node-core-library': 5.5.0(@types/node@22.0.2) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.47.2(@types/node@22.0.0)': + '@microsoft/api-extractor@7.47.2(@types/node@22.0.2)': dependencies: - '@microsoft/api-extractor-model': 7.29.3(@types/node@22.0.0) + '@microsoft/api-extractor-model': 7.29.3(@types/node@22.0.2) '@microsoft/tsdoc': 0.15.0 '@microsoft/tsdoc-config': 0.17.0 - '@rushstack/node-core-library': 5.5.0(@types/node@22.0.0) + '@rushstack/node-core-library': 5.5.0(@types/node@22.0.2) '@rushstack/rig-package': 0.5.2 - '@rushstack/terminal': 0.13.2(@types/node@22.0.0) - '@rushstack/ts-command-line': 4.22.2(@types/node@22.0.0) + '@rushstack/terminal': 0.13.2(@types/node@22.0.2) + '@rushstack/ts-command-line': 4.22.2(@types/node@22.0.2) lodash: 4.17.21 minimatch: 3.0.8 resolve: 1.22.8 @@ -12242,7 +12271,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.19.1': optional: true - '@rushstack/node-core-library@5.5.0(@types/node@22.0.0)': + '@rushstack/node-core-library@5.5.0(@types/node@22.0.2)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -12253,23 +12282,23 @@ snapshots: resolve: 1.22.8 semver: 7.5.4 optionalDependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 '@rushstack/rig-package@0.5.2': dependencies: resolve: 1.22.8 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.13.2(@types/node@22.0.0)': + '@rushstack/terminal@0.13.2(@types/node@22.0.2)': dependencies: - '@rushstack/node-core-library': 5.5.0(@types/node@22.0.0) + '@rushstack/node-core-library': 5.5.0(@types/node@22.0.2) supports-color: 8.1.1 optionalDependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 - '@rushstack/ts-command-line@4.22.2(@types/node@22.0.0)': + '@rushstack/ts-command-line@4.22.2(@types/node@22.0.2)': dependencies: - '@rushstack/terminal': 0.13.2(@types/node@22.0.0) + '@rushstack/terminal': 0.13.2(@types/node@22.0.2) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -12353,7 +12382,7 @@ snapshots: '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 '@types/eslint@8.56.11': dependencies: @@ -12382,11 +12411,11 @@ snapshots: '@types/http-proxy@1.17.14': dependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 '@types/jsdom@21.1.7': dependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 @@ -12394,7 +12423,7 @@ snapshots: '@types/jsonfile@6.1.4': dependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 '@types/katex@0.16.7': {} @@ -12431,6 +12460,10 @@ snapshots: dependencies: undici-types: 6.11.1 + '@types/node@22.0.2': + dependencies: + undici-types: 6.11.1 + '@types/normalize-package-data@2.4.4': {} '@types/nprogress@0.2.3': {} @@ -12465,14 +12498,14 @@ snapshots: '@types/which@3.0.4': {} - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.18.0(eslint@9.8.0)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) - '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 7.18.0 + '@typescript-eslint/parser': 8.0.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.0.0 + '@typescript-eslint/type-utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.0.0 eslint: 9.8.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -12483,12 +12516,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 7.18.0 + '@typescript-eslint/scope-manager': 8.0.0 + '@typescript-eslint/types': 8.0.0 + '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.0.0 debug: 4.3.6 eslint: 9.8.0 optionalDependencies: @@ -12501,24 +12534,46 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/type-utils@7.18.0(eslint@9.8.0)(typescript@5.5.4)': + '@typescript-eslint/scope-manager@8.0.0': dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4) - '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/types': 8.0.0 + '@typescript-eslint/visitor-keys': 8.0.0 + + '@typescript-eslint/type-utils@8.0.0(eslint@9.8.0)(typescript@5.5.4)': + dependencies: + '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4) + '@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4) debug: 4.3.6 - eslint: 9.8.0 + ts-api-utils: 1.3.0(typescript@5.5.4) + optionalDependencies: + typescript: 5.5.4 + transitivePeerDependencies: + - eslint + - supports-color + + '@typescript-eslint/types@7.18.0': {} + + '@typescript-eslint/types@8.0.0': {} + + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)': + dependencies: + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 + debug: 4.3.6 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@7.18.0': {} - - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.0.0(typescript@5.5.4)': dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 + '@typescript-eslint/types': 8.0.0 + '@typescript-eslint/visitor-keys': 8.0.0 debug: 4.3.6 globby: 11.1.0 is-glob: 4.0.3 @@ -12541,11 +12596,27 @@ snapshots: - supports-color - typescript + '@typescript-eslint/utils@8.0.0(eslint@9.8.0)(typescript@5.5.4)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@typescript-eslint/scope-manager': 8.0.0 + '@typescript-eslint/types': 8.0.0 + '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4) + eslint: 9.8.0 + transitivePeerDependencies: + - supports-color + - typescript + '@typescript-eslint/visitor-keys@7.18.0': dependencies: '@typescript-eslint/types': 7.18.0 eslint-visitor-keys: 3.4.3 + '@typescript-eslint/visitor-keys@8.0.0': + dependencies: + '@typescript-eslint/types': 8.0.0 + eslint-visitor-keys: 3.4.3 + '@vercel/nft@0.26.5(encoding@0.1.13)': dependencies: '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) @@ -12564,23 +12635,23 @@ snapshots: - encoding - supports-color - '@vite-pwa/vitepress@0.5.0(vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0))': + '@vite-pwa/vitepress@0.5.0(vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0))': dependencies: - vite-plugin-pwa: 0.20.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) + vite-plugin-pwa: 0.20.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0) - '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2) - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) vue: 3.4.35(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.1.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vitejs/plugin-vue@5.1.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': dependencies: - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) vue: 3.4.35(typescript@5.5.4) '@vitest/expect@2.0.5': @@ -12753,14 +12824,14 @@ snapshots: dependencies: '@vue/devtools-kit': 7.3.7 - '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': + '@vue/devtools-core@7.3.7(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4))': dependencies: '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 mitt: 3.0.1 nanoid: 3.3.7 pathe: 1.1.2 - vite-hot-client: 0.2.3(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) + vite-hot-client: 0.2.3(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) vue: 3.4.35(typescript@5.5.4) transitivePeerDependencies: - vite @@ -13605,9 +13676,9 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@22.0.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.0.2)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4): dependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 cosmiconfig: 9.0.0(typescript@5.5.4) jiti: 1.21.6 typescript: 5.5.4 @@ -14380,10 +14451,10 @@ snapshots: dependencies: eslint: 9.8.0 - eslint-config-turbo@2.0.10(eslint@9.8.0): + eslint-config-turbo@2.0.11(eslint@9.8.0): dependencies: eslint: 9.8.0 - eslint-plugin-turbo: 2.0.10(eslint@9.8.0) + eslint-plugin-turbo: 2.0.11(eslint@9.8.0) eslint-import-resolver-node@0.3.9: dependencies: @@ -14504,7 +14575,7 @@ snapshots: regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-turbo@2.0.10(eslint@9.8.0): + eslint-plugin-turbo@2.0.11(eslint@9.8.0): dependencies: dotenv: 16.0.3 eslint: 9.8.0 @@ -14529,20 +14600,20 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.0.1(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0): + eslint-plugin-unused-imports@4.0.1(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0): dependencies: eslint: 9.8.0 eslint-rule-composer: 0.3.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) - eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.0)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3)): + eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.2)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3)): dependencies: '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4) eslint: 9.8.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) - vitest: 2.0.5(@types/node@22.0.0)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3) + '@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4) + vitest: 2.0.5(@types/node@22.0.2)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3) transitivePeerDependencies: - supports-color - typescript @@ -15805,7 +15876,7 @@ snapshots: dependencies: yallist: 4.0.0 - lucide-vue-next@0.417.0(vue@3.4.35(typescript@5.5.4)): + lucide-vue-next@0.418.0(vue@3.4.35(typescript@5.5.4)): dependencies: vue: 3.4.35(typescript@5.5.4) @@ -18016,32 +18087,32 @@ snapshots: tslib@2.6.3: {} - turbo-darwin-64@2.0.10: + turbo-darwin-64@2.0.11: optional: true - turbo-darwin-arm64@2.0.10: + turbo-darwin-arm64@2.0.11: optional: true - turbo-linux-64@2.0.10: + turbo-linux-64@2.0.11: optional: true - turbo-linux-arm64@2.0.10: + turbo-linux-arm64@2.0.11: optional: true - turbo-windows-64@2.0.10: + turbo-windows-64@2.0.11: optional: true - turbo-windows-arm64@2.0.10: + turbo-windows-arm64@2.0.11: optional: true - turbo@2.0.10: + turbo@2.0.11: optionalDependencies: - turbo-darwin-64: 2.0.10 - turbo-darwin-arm64: 2.0.10 - turbo-linux-64: 2.0.10 - turbo-linux-arm64: 2.0.10 - turbo-windows-64: 2.0.10 - turbo-windows-arm64: 2.0.10 + turbo-darwin-64: 2.0.11 + turbo-darwin-arm64: 2.0.11 + turbo-linux-64: 2.0.11 + turbo-linux-arm64: 2.0.11 + turbo-windows-64: 2.0.11 + turbo-windows-arm64: 2.0.11 type-check@0.4.0: dependencies: @@ -18319,17 +18390,17 @@ snapshots: evtd: 0.2.4 vue: 3.4.35(typescript@5.5.4) - vite-hot-client@0.2.3(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-hot-client@0.2.3(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) - vite-node@2.0.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3): + vite-node@2.0.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3): dependencies: cac: 6.7.14 debug: 4.3.6 pathe: 1.1.2 tinyrainbow: 1.2.0 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) transitivePeerDependencies: - '@types/node' - less @@ -18340,18 +18411,18 @@ snapshots: - supports-color - terser - vite-plugin-compression@0.5.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-plugin-compression@0.5.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: chalk: 4.1.2 debug: 4.3.6 fs-extra: 10.1.0 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) transitivePeerDependencies: - supports-color - vite-plugin-dts@4.0.0-beta.1(@types/node@22.0.0)(rollup@4.19.1)(typescript@5.5.4)(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-plugin-dts@4.0.0-beta.1(@types/node@22.0.2)(rollup@4.19.1)(typescript@5.5.4)(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: - '@microsoft/api-extractor': 7.47.2(@types/node@22.0.0) + '@microsoft/api-extractor': 7.47.2(@types/node@22.0.2) '@rollup/pluginutils': 5.1.0(rollup@4.19.1) '@volar/typescript': 2.3.4 '@vue/language-core': 2.0.19(typescript@5.5.4) @@ -18363,13 +18434,13 @@ snapshots: typescript: 5.5.4 vue-tsc: 2.0.19(typescript@5.5.4) optionalDependencies: - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite-plugin-html@3.2.2(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-plugin-html@3.2.2(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: '@rollup/pluginutils': 4.2.1 colorette: 2.0.20 @@ -18383,9 +18454,9 @@ snapshots: html-minifier-terser: 6.1.0 node-html-parser: 5.4.2 pathe: 0.2.0 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) - vite-plugin-inspect@0.8.5(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-plugin-inspect@0.8.5(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.0(rollup@4.19.1) @@ -18396,46 +18467,46 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.0.1 sirv: 2.0.4 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) transitivePeerDependencies: - rollup - supports-color - vite-plugin-lib-inject-css@2.1.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-plugin-lib-inject-css@2.1.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: '@ast-grep/napi': 0.22.6 magic-string: 0.30.11 picocolors: 1.0.1 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) - vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0): + vite-plugin-pwa@0.20.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(workbox-build@7.1.1)(workbox-window@7.1.0): dependencies: debug: 4.3.6 pretty-bytes: 6.1.1 tinyglobby: 0.2.0 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) workbox-build: 7.1.1 workbox-window: 7.1.0 transitivePeerDependencies: - supports-color - vite-plugin-vue-devtools@7.3.7(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)): + vite-plugin-vue-devtools@7.3.7(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)): dependencies: - '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + '@vue/devtools-core': 7.3.7(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) '@vue/devtools-kit': 7.3.7 '@vue/devtools-shared': 7.3.7 execa: 8.0.1 sirv: 2.0.4 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) - vite-plugin-inspect: 0.8.5(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) - vite-plugin-vue-inspector: 5.1.3(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) + vite-plugin-inspect: 0.8.5(rollup@4.19.1)(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) + vite-plugin-vue-inspector: 5.1.3(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)) transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue - vite-plugin-vue-inspector@5.1.3(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3)): + vite-plugin-vue-inspector@5.1.3(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3)): dependencies: '@babel/core': 7.25.2 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2) @@ -18446,29 +18517,29 @@ snapshots: '@vue/compiler-dom': 3.4.34 kolorist: 1.8.0 magic-string: 0.30.11 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) transitivePeerDependencies: - supports-color - vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3): + vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3): dependencies: esbuild: 0.21.5 postcss: 8.4.40 rollup: 4.19.1 optionalDependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 fsevents: 2.3.3 sass: 1.77.8 terser: 5.31.3 - vitepress@1.3.1(@algolia/client-search@4.24.0)(@types/node@22.0.0)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4): + vitepress@1.3.1(@algolia/client-search@4.24.0)(@types/node@22.0.2)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.40)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.3)(typescript@5.5.4): dependencies: '@docsearch/css': 3.6.1 '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.15.0) '@shikijs/core': 1.12.0 '@shikijs/transformers': 1.12.0 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.1.1(vite@5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) + '@vitejs/plugin-vue': 5.1.1(vite@5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3))(vue@3.4.35(typescript@5.5.4)) '@vue/devtools-api': 7.3.7 '@vue/shared': 3.4.35 '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4)) @@ -18477,7 +18548,7 @@ snapshots: mark.js: 8.11.1 minisearch: 7.1.0 shiki: 1.12.0 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) vue: 3.4.35(typescript@5.5.4) optionalDependencies: postcss: 8.4.40 @@ -18508,7 +18579,7 @@ snapshots: - typescript - universal-cookie - vitest@2.0.5(@types/node@22.0.0)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3): + vitest@2.0.5(@types/node@22.0.2)(jsdom@24.1.1)(sass@1.77.8)(terser@5.31.3): dependencies: '@ampproject/remapping': 2.3.0 '@vitest/expect': 2.0.5 @@ -18526,11 +18597,11 @@ snapshots: tinybench: 2.8.0 tinypool: 1.0.0 tinyrainbow: 1.2.0 - vite: 5.3.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) - vite-node: 2.0.5(@types/node@22.0.0)(sass@1.77.8)(terser@5.31.3) + vite: 5.3.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) + vite-node: 2.0.5(@types/node@22.0.2)(sass@1.77.8)(terser@5.31.3) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.0.0 + '@types/node': 22.0.2 jsdom: 24.1.1 transitivePeerDependencies: - less @@ -18576,7 +18647,7 @@ snapshots: '@vue/devtools-api': 6.6.3 vue: 3.4.35(typescript@5.5.4) - vue-router@4.4.0(vue@3.4.35(typescript@5.5.4)): + vue-router@4.4.1(vue@3.4.35(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.3 vue: 3.4.35(typescript@5.5.4)