diff --git a/package.json b/package.json
index 17247d504..dc2691946 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "unplugin-vue-router",
"version": "0.10.8",
"type": "module",
- "packageManager": "pnpm@9.12.3",
+ "packageManager": "pnpm@9.13.2",
"description": "File based typed routing for Vue Router",
"keywords": [
"vue-router",
@@ -173,10 +173,10 @@
"json5": "^2.2.3",
"local-pkg": "^0.5.0",
"magic-string": "^0.30.12",
- "mlly": "^1.7.2",
+ "mlly": "^1.7.3",
"pathe": "^1.1.2",
"scule": "^1.3.0",
- "unplugin": "^1.14.1",
+ "unplugin": "^1.16.0",
"yaml": "^2.6.0"
},
"peerDependencies": {
@@ -188,45 +188,45 @@
}
},
"devDependencies": {
- "@pinia/colada": "^0.11.0",
- "@shikijs/vitepress-twoslash": "1.22.1",
- "@tanstack/vue-query": "^5.59.16",
- "@types/node": "^22.8.7",
- "@vitest/coverage-v8": "^2.1.3",
- "@vitest/ui": "^2.1.3",
+ "@pinia/colada": "^0.12.1",
+ "@shikijs/vitepress-twoslash": "1.23.0",
+ "@tanstack/vue-query": "^5.60.5",
+ "@types/node": "^22.9.0",
+ "@vitest/coverage-v8": "^2.1.5",
+ "@vitest/ui": "^2.1.5",
"@volar/vue-language-core": "^1.6.5",
"@vue/test-utils": "^2.4.6",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^5.0.0",
"enquirer": "^2.4.1",
- "execa": "^9.5.0",
- "firebase": "^11.0.1",
- "happy-dom": "^15.7.4",
+ "execa": "^9.5.1",
+ "firebase": "^11.0.2",
+ "happy-dom": "^15.11.6",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"nodemon": "^3.1.7",
"p-series": "^3.0.0",
- "pinia": "^2.2.4",
+ "pinia": "^2.2.6",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
- "rollup": "^4.24.2",
+ "rollup": "^4.27.2",
"semver": "^7.6.3",
"ts-expect": "^1.3.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
- "unplugin-auto-import": "^0.18.3",
+ "unplugin-auto-import": "^0.18.4",
"unplugin-vue-markdown": "^0.26.2",
"unplugin-vue-router": "workspace:*",
- "vite": "^5.4.10",
- "vite-plugin-vue-devtools": "^7.5.4",
- "vitepress": "1.4.1",
- "vitest": "^2.1.3",
- "vue": "^3.5.12",
+ "vite": "^5.4.11",
+ "vite-plugin-vue-devtools": "^7.6.4",
+ "vitepress": "1.5.0",
+ "vitest": "^2.1.5",
+ "vue": "^3.5.13",
"vue-router": "^4.4.5",
"vue-router-mock": "^1.1.0",
- "vue-tsc": "^2.1.8",
+ "vue-tsc": "^2.1.10",
"vuefire": "^3.2.0",
- "webpack": "^5.95.0",
+ "webpack": "^5.96.1",
"yorkie": "^2.0.0"
}
}
diff --git a/playground/package.json b/playground/package.json
index 17a523811..10e5e1192 100644
--- a/playground/package.json
+++ b/playground/package.json
@@ -7,19 +7,19 @@
"build": "vite build"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.1.4",
- "@vue/compiler-sfc": "^3.5.12",
- "@vue/tsconfig": "^0.5.1",
+ "@vitejs/plugin-vue": "^5.2.0",
+ "@vue/compiler-sfc": "^3.5.13",
+ "@vue/tsconfig": "^0.6.0",
"json-server": "^0.17.4",
"unplugin-vue-router": "workspace:*",
- "vite": "^5.4.10",
+ "vite": "^5.4.11",
"vite-plugin-inspect": "^0.8.7"
},
"dependencies": {
- "@tanstack/vue-query": "^5.59.16",
+ "@tanstack/vue-query": "^5.60.5",
"mande": "^2.0.9",
- "pinia": "^2.2.4",
- "vue": "^3.5.12",
+ "pinia": "^2.2.6",
+ "vue": "^3.5.13",
"vue-router": "^4.4.5"
}
}
diff --git a/playground/src/pages/users/tq-query.[id].vue b/playground/src/pages/users/tq-query.[id].vue
index e7f29ee57..720468d8b 100644
--- a/playground/src/pages/users/tq-query.[id].vue
+++ b/playground/src/pages/users/tq-query.[id].vue
@@ -89,16 +89,18 @@ let _id = 0
function testRefetch() {
const id = ++_id
console.log(id + ' refetch started')
- refetch({ cancelRefetch: true, throwOnError: true }).then(res => {
- console.log(id + ' refetch finished', res)
- }).catch(err => {
- console.log(id + ' refetch error', err)
- }).finally(() => {
- console.log(id + ' refetch finally')
- })
+ refetch({ cancelRefetch: true, throwOnError: true })
+ .then((res) => {
+ console.log(id + ' refetch finished', res)
+ })
+ .catch((err) => {
+ console.log(id + ' refetch error', err)
+ })
+ .finally(() => {
+ console.log(id + ' refetch finally')
+ })
}
-
const {
data,
error,
@@ -107,9 +109,7 @@ const {
} = useMutation({
// mutationKey: ['hey'],
networkMode: 'always',
- onMutate(vars) {
-
- },
+ onMutate(vars) {},
mutationFn: async (id: number) => {
await delay(5000)
return 'hey'
@@ -147,9 +147,13 @@ const {
- Previous
+ Previous
|
- Next
+ Next
TQ
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 35a668d42..cda95828b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -13,10 +13,10 @@ importers:
version: 7.26.0
'@rollup/pluginutils':
specifier: ^5.1.3
- version: 5.1.3(rollup@4.24.2)
+ version: 5.1.3(rollup@4.27.2)
'@vue-macros/common':
specifier: ^1.15.0
- version: 1.15.0(rollup@4.24.2)(vue@3.5.12(typescript@5.6.3))
+ version: 1.15.0(rollup@4.27.2)(vue@3.5.13(typescript@5.6.3))
ast-walker-scope:
specifier: ^0.6.2
version: 0.6.2
@@ -36,8 +36,8 @@ importers:
specifier: ^0.30.12
version: 0.30.12
mlly:
- specifier: ^1.7.2
- version: 1.7.2
+ specifier: ^1.7.3
+ version: 1.7.3
pathe:
specifier: ^1.1.2
version: 1.1.2
@@ -45,30 +45,30 @@ importers:
specifier: ^1.3.0
version: 1.3.0
unplugin:
- specifier: ^1.14.1
- version: 1.14.1(webpack-sources@3.2.3)
+ specifier: ^1.16.0
+ version: 1.16.0
yaml:
specifier: ^2.6.0
version: 2.6.0
devDependencies:
'@pinia/colada':
- specifier: ^0.11.0
- version: 0.11.0
+ specifier: ^0.12.1
+ version: 0.12.1
'@shikijs/vitepress-twoslash':
- specifier: 1.22.1
- version: 1.22.1(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(typescript@5.6.3)
+ specifier: 1.23.0
+ version: 1.23.0(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(typescript@5.6.3)
'@tanstack/vue-query':
- specifier: ^5.59.16
- version: 5.59.16(vue@3.5.12(typescript@5.6.3))
+ specifier: ^5.60.5
+ version: 5.60.5(vue@3.5.13(typescript@5.6.3))
'@types/node':
- specifier: ^22.8.7
- version: 22.8.7
+ specifier: ^22.9.0
+ version: 22.9.0
'@vitest/coverage-v8':
- specifier: ^2.1.3
- version: 2.1.3(vitest@2.1.3)
+ specifier: ^2.1.5
+ version: 2.1.5(vitest@2.1.5)
'@vitest/ui':
- specifier: ^2.1.3
- version: 2.1.3(vitest@2.1.3)
+ specifier: ^2.1.5
+ version: 2.1.5(vitest@2.1.5)
'@volar/vue-language-core':
specifier: ^1.6.5
version: 1.6.5
@@ -85,14 +85,14 @@ importers:
specifier: ^2.4.1
version: 2.4.1
execa:
- specifier: ^9.5.0
- version: 9.5.0
+ specifier: ^9.5.1
+ version: 9.5.1
firebase:
- specifier: ^11.0.1
- version: 11.0.1
+ specifier: ^11.0.2
+ version: 11.0.2
happy-dom:
- specifier: ^15.7.4
- version: 15.10.2
+ specifier: ^15.11.6
+ version: 15.11.6
lint-staged:
specifier: ^15.2.10
version: 15.2.10
@@ -106,8 +106,8 @@ importers:
specifier: ^3.0.0
version: 3.0.0
pinia:
- specifier: ^2.2.4
- version: 2.2.4(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))
+ specifier: ^2.2.6
+ version: 2.2.6(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -115,8 +115,8 @@ importers:
specifier: ^6.0.1
version: 6.0.1
rollup:
- specifier: ^4.24.2
- version: 4.24.2
+ specifier: ^4.27.2
+ version: 4.27.2
semver:
specifier: ^7.6.3
version: 7.6.3
@@ -125,49 +125,49 @@ importers:
version: 1.3.0
tsup:
specifier: ^8.3.5
- version: 8.3.5(jiti@2.3.3)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0)
+ version: 8.3.5(jiti@2.3.3)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.0)
typescript:
specifier: ^5.6.3
version: 5.6.3
unplugin-auto-import:
- specifier: ^0.18.3
- version: 0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.2)(webpack-sources@3.2.3)
+ specifier: ^0.18.4
+ version: 0.18.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(@vueuse/core@11.1.0(vue@3.5.13(typescript@5.6.3)))(rollup@4.27.2)
unplugin-vue-markdown:
specifier: ^0.26.2
- version: 0.26.2(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(webpack-sources@3.2.3)
+ version: 0.26.2(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
unplugin-vue-router:
specifier: workspace:*
version: 'link:'
vite:
- specifier: ^5.4.10
- version: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ specifier: ^5.4.11
+ version: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
vite-plugin-vue-devtools:
- specifier: ^7.5.4
- version: 7.5.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3))
+ specifier: ^7.6.4
+ version: 7.6.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3))
vitepress:
- specifier: 1.4.1
- version: 1.4.1(@algolia/client-search@5.8.1)(@types/node@22.8.7)(postcss@8.4.47)(search-insights@2.17.2)(terser@5.34.1)(typescript@5.6.3)
+ specifier: 1.5.0
+ version: 1.5.0(@algolia/client-search@5.8.1)(@types/node@22.9.0)(postcss@8.4.49)(search-insights@2.17.2)(terser@5.34.1)(typescript@5.6.3)
vitest:
- specifier: ^2.1.3
- version: 2.1.3(@types/node@22.8.7)(@vitest/ui@2.1.3)(happy-dom@15.10.2)(terser@5.34.1)
+ specifier: ^2.1.5
+ version: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(happy-dom@15.11.6)(terser@5.34.1)
vue:
- specifier: ^3.5.12
- version: 3.5.12(typescript@5.6.3)
+ specifier: ^3.5.13
+ version: 3.5.13(typescript@5.6.3)
vue-router:
specifier: ^4.4.5
- version: 4.4.5(vue@3.5.12(typescript@5.6.3))
+ version: 4.4.5(vue@3.5.13(typescript@5.6.3))
vue-router-mock:
specifier: ^1.1.0
- version: 1.1.0(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
+ version: 1.1.0(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3))
vue-tsc:
- specifier: ^2.1.8
- version: 2.1.8(typescript@5.6.3)
+ specifier: ^2.1.10
+ version: 2.1.10(typescript@5.6.3)
vuefire:
specifier: ^3.2.0
- version: 3.2.0(consola@3.2.3)(firebase@11.0.1)(vue@3.5.12(typescript@5.6.3))
+ version: 3.2.0(consola@3.2.3)(firebase@11.0.2)(vue@3.5.13(typescript@5.6.3))
webpack:
- specifier: ^5.95.0
- version: 5.95.0(esbuild@0.24.0)
+ specifier: ^5.96.1
+ version: 5.96.1(esbuild@0.24.0)
yorkie:
specifier: ^2.0.0
version: 2.0.0
@@ -183,10 +183,10 @@ importers:
devDependencies:
'@pinia/nuxt':
specifier: ^0.5.5
- version: 0.5.5(magicast@0.3.5)(rollup@4.24.2)(typescript@5.6.3)(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 0.5.5(magicast@0.3.5)(rollup@4.27.2)(typescript@5.6.3)(vue@3.5.11(typescript@5.6.3))
nuxt:
specifier: ^3.13.2
- version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.8.7)(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.2)(terser@5.34.1)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue-tsc@2.1.8(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 3.13.2(@parcel/watcher@2.4.1)(@types/node@22.9.0)(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.27.2)(terser@5.34.1)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue-tsc@2.1.10(typescript@5.6.3))(webpack-sources@3.2.3)
unplugin-vue-router:
specifier: workspace:*
version: link:../..
@@ -194,30 +194,30 @@ importers:
playground:
dependencies:
'@tanstack/vue-query':
- specifier: ^5.59.16
- version: 5.59.16(vue@3.5.12(typescript@5.6.3))
+ specifier: ^5.60.5
+ version: 5.60.5(vue@3.5.13(typescript@5.6.3))
mande:
specifier: ^2.0.9
version: 2.0.9
pinia:
- specifier: ^2.2.4
- version: 2.2.4(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))
+ specifier: ^2.2.6
+ version: 2.2.6(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3))
vue:
- specifier: ^3.5.12
- version: 3.5.12(typescript@5.6.3)
+ specifier: ^3.5.13
+ version: 3.5.13(typescript@5.6.3)
vue-router:
specifier: ^4.4.5
- version: 4.4.5(vue@3.5.12(typescript@5.6.3))
+ version: 4.4.5(vue@3.5.13(typescript@5.6.3))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.1.4
- version: 5.1.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3))
+ specifier: ^5.2.0
+ version: 5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3))
'@vue/compiler-sfc':
- specifier: ^3.5.12
- version: 3.5.12
+ specifier: ^3.5.13
+ version: 3.5.13
'@vue/tsconfig':
- specifier: ^0.5.1
- version: 0.5.1
+ specifier: ^0.6.0
+ version: 0.6.0(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3))
json-server:
specifier: ^0.17.4
version: 0.17.4
@@ -225,11 +225,11 @@ importers:
specifier: workspace:*
version: link:..
vite:
- specifier: ^5.4.10
- version: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ specifier: ^5.4.11
+ version: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
vite-plugin-inspect:
specifier: ^0.8.7
- version: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
+ version: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
packages:
@@ -1092,65 +1092,65 @@ packages:
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
- '@firebase/analytics-compat@0.2.15':
- resolution: {integrity: sha512-C5to422Sr8FkL0MPwXcIecbMnF4o2Ll7MtoWvIm4Q/LPJvvM+tWa1DiU+LzsCdsd1/CYE9EIW9Ma3ko9XnAAYw==}
+ '@firebase/analytics-compat@0.2.16':
+ resolution: {integrity: sha512-Q/s+u/TEMSb2EDJFQMGsOzpSosybBl8HuoSEMyGZ99+0Pu7SIR9MPDGUjc8PKiCFQWDJ3QXxgqh1d/rujyAMbA==}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/analytics-types@0.8.2':
- resolution: {integrity: sha512-EnzNNLh+9/sJsimsA/FGqzakmrAUKLeJvjRHlg8df1f97NLUlFidk9600y0ZgWOp3CAxn6Hjtk+08tixlUOWyw==}
+ '@firebase/analytics-types@0.8.3':
+ resolution: {integrity: sha512-VrIp/d8iq2g501qO46uGz3hjbDb8xzYMrbu8Tp0ovzIzrvJZ2fvmj649gTjge/b7cCCcjT0H37g1gVtlNhnkbg==}
- '@firebase/analytics@0.10.9':
- resolution: {integrity: sha512-FrvW6u6xDBKXUGYUy1WIUh0J9tvbppMsk90mig0JhHST8iLveKu/dIBVeVE/ZYZhmXy4fkI7SPSWvD1V0O4tXw==}
+ '@firebase/analytics@0.10.10':
+ resolution: {integrity: sha512-Psdo7c9g2SLAYh6u1XRA+RZ7ab2JfBVuAt/kLzXkhKZL/gS2cQUCMsOW5p0RIlDPRKqpdNSmvujd2TeRWLKOkQ==}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/app-check-compat@0.3.16':
- resolution: {integrity: sha512-AxIGzLRXrTFNL+H6V+4BO0w/gERloROfRbWI/FoJUnQd0qPZIzyfdHZBbThFzFGLfDt/mVs2kdjYFx/l9I8NhQ==}
+ '@firebase/app-check-compat@0.3.17':
+ resolution: {integrity: sha512-a/eadrGsY0MVCBPhrNbKUhoYpms4UKTYLKO7nswwSFVsm3Rw6NslQQCNLfvljcDqP4E7alQDRGJXjkxd/5gJ+Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/app-check-interop-types@0.3.2':
- resolution: {integrity: sha512-LMs47Vinv2HBMZi49C09dJxp0QT5LwDzFaVGf/+ITHe3BlIhUiLNttkATSXplc89A2lAaeTqjgqVkiRfUGyQiQ==}
+ '@firebase/app-check-interop-types@0.3.3':
+ resolution: {integrity: sha512-gAlxfPLT2j8bTI/qfe3ahl2I2YcBQ8cFIBdhAQA4I2f3TndcO+22YizyGYuttLHPQEpWkhmpFW60VCFEPg4g5A==}
- '@firebase/app-check-types@0.5.2':
- resolution: {integrity: sha512-FSOEzTzL5bLUbD2co3Zut46iyPWML6xc4x+78TeaXMSuJap5QObfb+rVvZJtla3asN4RwU7elaQaduP+HFizDA==}
+ '@firebase/app-check-types@0.5.3':
+ resolution: {integrity: sha512-hyl5rKSj0QmwPdsAxrI5x1otDlByQ7bvNvVt8G/XPO2CSwE++rmSVf3VEhaeOR4J8ZFaF0Z0NDSmLejPweZ3ng==}
- '@firebase/app-check@0.8.9':
- resolution: {integrity: sha512-YzVn1mMLzD2JboMPVVO0Pe20YOgWzrF+aXoAmmd0v3xec051n83YpxSUZbacL69uYvk0dHrEsbea44QtQ5WPDA==}
+ '@firebase/app-check@0.8.10':
+ resolution: {integrity: sha512-DWFfxxif/t+Ow4MmRUevDX+A3hVxm1rUf6y5ZP4sIomfnVCO1NNahqtsv9rb1/tKGkTeoVT40weiTS/WjQG1mA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/app-compat@0.2.45':
- resolution: {integrity: sha512-5rYbXq1ndtMTg+07oH4WrkYuP+NZq61uzVwW1hlmybp/gr4cXq2SfaP9fc6/9IzTKmu3dh3H0fjj++HG7Z7o/w==}
+ '@firebase/app-compat@0.2.46':
+ resolution: {integrity: sha512-9hSHWE5LMqtKIm13CnH5OZeMPbkVV3y5vgNZ5EMFHcG2ceRrncyNjG9No5XfWQw8JponZdGs4HlE4aMD/jxcFA==}
engines: {node: '>=18.0.0'}
- '@firebase/app-types@0.9.2':
- resolution: {integrity: sha512-oMEZ1TDlBz479lmABwWsWjzHwheQKiAgnuKxE0pz0IXCVx7/rtlkx1fQ6GfgK24WCrxDKMplZrT50Kh04iMbXQ==}
+ '@firebase/app-types@0.9.3':
+ resolution: {integrity: sha512-kRVpIl4vVGJ4baogMDINbyrIOtOxqhkZQg4jTq3l8Lw6WSk0xfpEYzezFu+Kl4ve4fbPl79dvwRtaFqAC/ucCw==}
- '@firebase/app@0.10.15':
- resolution: {integrity: sha512-he6qlG3pmwL+LHdG/BrSMBQeJzzutciq4fpXN3lGa1uSwYSijJ24VtakS/bP2X9SiDf8jGywJ4u+OgXAenJsNg==}
+ '@firebase/app@0.10.16':
+ resolution: {integrity: sha512-SUati2qH48gvVGnSsqMkZr1Iq7No52a3tJQ4itboSTM89Erezmw3v1RsfVymrDze9+KiOLmBpvLNKSvheITFjg==}
engines: {node: '>=18.0.0'}
- '@firebase/auth-compat@0.5.15':
- resolution: {integrity: sha512-jz6k1ridPiecKI8CBRiqCM6IMOhwYp2MD+YvoxnMiK8nQLSTm57GvHETlPNX3WlbyQnCjMCOvrAhe27whyxAEg==}
+ '@firebase/auth-compat@0.5.16':
+ resolution: {integrity: sha512-YlYwJMBqAyv0ESy3jDUyshMhZlbUiwAm6B6+uUmigNDHU+uq7j4SFiDJEZlFFIz397yBzKn06SUdqutdQzGnCA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/auth-interop-types@0.2.3':
- resolution: {integrity: sha512-Fc9wuJGgxoxQeavybiuwgyi+0rssr76b+nHpj+eGhXFYAdudMWyfBHvFL/I5fEHniUM/UQdFzi9VXJK2iZF7FQ==}
+ '@firebase/auth-interop-types@0.2.4':
+ resolution: {integrity: sha512-JPgcXKCuO+CWqGDnigBtvo09HeBs5u/Ktc2GaFj2m01hLarbxthLNm7Fk8iOP1aqAtXV+fnnGj7U28xmk7IwVA==}
- '@firebase/auth-types@0.12.2':
- resolution: {integrity: sha512-qsEBaRMoGvHO10unlDJhaKSuPn4pyoTtlQuP1ghZfzB6rNQPuhp/N/DcFZxm9i4v0SogjCbf9reWupwIvfmH6w==}
+ '@firebase/auth-types@0.12.3':
+ resolution: {integrity: sha512-Zq9zI0o5hqXDtKg6yDkSnvMCMuLU6qAVS51PANQx+ZZX5xnzyNLEBO3GZgBUPsV5qIMFhjhqmLDxUqCbnAYy2A==}
peerDependencies:
'@firebase/app-types': 0.x
'@firebase/util': 1.x
- '@firebase/auth@1.8.0':
- resolution: {integrity: sha512-/O7UDWE5S5ux456fzNHSLx/0YN/Kykw/WyAzgDQ6wvkddZhSEmPX19EzxgsFldzhuFjsl5uOZTz8kzlosCiJjg==}
+ '@firebase/auth@1.8.1':
+ resolution: {integrity: sha512-LX9N/Cf5Z35r5yqm2+5M3+2bRRe/+RFaa/+u4HDni7TA27C/Xm4XHLKcWcLg1BzjrS4zngSaBEOSODvp6RFOqQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app': 0.x
@@ -1159,148 +1159,148 @@ packages:
'@react-native-async-storage/async-storage':
optional: true
- '@firebase/component@0.6.10':
- resolution: {integrity: sha512-OsNbEKyz9iLZSmMUhsl6+kCADzte00iisJIRUspnUqvDCX+RSGZOBIqekukv/jN177ovjApBQNFaxSYIDc/SyQ==}
+ '@firebase/component@0.6.11':
+ resolution: {integrity: sha512-eQbeCgPukLgsKD0Kw5wQgsMDX5LeoI1MIrziNDjmc6XDq5ZQnuUymANQgAb2wp1tSF9zDSXyxJmIUXaKgN58Ug==}
engines: {node: '>=18.0.0'}
- '@firebase/data-connect@0.1.1':
- resolution: {integrity: sha512-RBJ7XE/a3oXFv31Jlw8cbMRdsxQoI8F3L7xm4n93ab+bIr1NQUiYGgW9L7TTw7obdNev91ZnW0xfqJtXcPA5yA==}
+ '@firebase/data-connect@0.1.2':
+ resolution: {integrity: sha512-Bcf29mntFCt5V7aceMe36wnkHrG7cwbMlUVbDHOlh2foQKx9VtSXEONw9r6FtL1sFobHVYOM5L6umX35f59m5g==}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/database-compat@2.0.0':
- resolution: {integrity: sha512-2xlODKWwf/vNAxCmou0GFhymx2pqZKkhXMN9B5aiTjZ6+81sOxGim53ELY2lj+qKG2IvgiCYFc4X+ZJA2Ad5vg==}
+ '@firebase/database-compat@2.0.1':
+ resolution: {integrity: sha512-IsFivOjdE1GrjTeKoBU/ZMenESKDXidFDzZzHBPQ/4P20ptGdrl3oLlWrV/QJqJ9lND4IidE3z4Xr5JyfUW1vg==}
engines: {node: '>=18.0.0'}
- '@firebase/database-types@1.0.6':
- resolution: {integrity: sha512-sMI7IynSZBsyGbUugc8PKE1jwKbnvaieAz/RxuM57PZQNCi6Rteiviwcw/jqZOX6igqYJwXWZ3UzKOZo2nUDRA==}
+ '@firebase/database-types@1.0.7':
+ resolution: {integrity: sha512-I7zcLfJXrM0WM+ksFmFdAMdlq/DFmpeMNa+/GNsLyFo5u/lX5zzkPzGe3srVWqaBQBY5KprylDGxOsP6ETfL0A==}
- '@firebase/database@1.0.9':
- resolution: {integrity: sha512-EkiPSKSu2TJJGtOjyISASf3UFpFJDil1lMbfqnxilfbmIsilvC8DzgjuLoYD+eOitcug4wtU9Fh1tt2vgBhskA==}
+ '@firebase/database@1.0.10':
+ resolution: {integrity: sha512-sWp2g92u7xT4BojGbTXZ80iaSIaL6GAL0pwvM0CO/hb0nHSnABAqsH7AhnWGsGvXuEvbPr7blZylPaR9J+GSuQ==}
engines: {node: '>=18.0.0'}
- '@firebase/firestore-compat@0.3.39':
- resolution: {integrity: sha512-CsK8g34jNeHx95LISDRTcArJLonW+zJCqHI1Ez9WNiLAK2X8FeQ4UiD+RwOwxAIR+t2a6xED/5Fe6ZIqx7MuoQ==}
+ '@firebase/firestore-compat@0.3.40':
+ resolution: {integrity: sha512-18HopMN811KYBc9Ptpr1Rewwio0XF09FF3jc5wtV6rGyAs815SlFFw5vW7ZeLd43zv9tlEc2FzM0H+5Vr9ZRxw==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/firestore-types@3.0.2':
- resolution: {integrity: sha512-wp1A+t5rI2Qc/2q7r2ZpjUXkRVPtGMd6zCLsiWurjsQpqPgFin3AhNibKcIzoF2rnToNa/XYtyWXuifjOOwDgg==}
+ '@firebase/firestore-types@3.0.3':
+ resolution: {integrity: sha512-hD2jGdiWRxB/eZWF89xcK9gF8wvENDJkzpVFb4aGkzfEaKxVRD1kjz1t1Wj8VZEp2LCB53Yx1zD8mrhQu87R6Q==}
peerDependencies:
'@firebase/app-types': 0.x
'@firebase/util': 1.x
- '@firebase/firestore@4.7.4':
- resolution: {integrity: sha512-K2nq4w+NF8J1waGawY5OHLawP/Aw5CYxyDstVv1NZemGPcM3U+LZ9EPaXr1PatYIrPA7fS4DxZoWcbB0aGJ8Zg==}
+ '@firebase/firestore@4.7.5':
+ resolution: {integrity: sha512-OO3rHvjC07jL2ITN255xH/UzCVSvh6xG8oTzQdFScQvFbcm1fjCL1hgAdpDZcx3vVcKMV+6ktr8wbllkB8r+FQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/functions-compat@0.3.15':
- resolution: {integrity: sha512-eiHpc6Sd9Y/SNhBsGi944SapiFbfTPKsiSUQ74QxNSs0yoxvABeIRolVMFk4TokP57NGmstGYpYte02XGNPcYw==}
+ '@firebase/functions-compat@0.3.16':
+ resolution: {integrity: sha512-FL7EXehiiBisNIR7mlb0i+moyWKLVfcEJgh/Wq6ZV6BdrCObpCTz7w5EvuRIEFX5e9cNL2oWInKg8S5X4HtINg==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/functions-types@0.6.2':
- resolution: {integrity: sha512-0KiJ9lZ28nS2iJJvimpY4nNccV21rkQyor5Iheu/nq8aKXJqtJdeSlZDspjPSBBiHRzo7/GMUttegnsEITqR+w==}
+ '@firebase/functions-types@0.6.3':
+ resolution: {integrity: sha512-EZoDKQLUHFKNx6VLipQwrSMh01A1SaL3Wg6Hpi//x6/fJ6Ee4hrAeswK99I5Ht8roiniKHw4iO0B1Oxj5I4plg==}
- '@firebase/functions@0.11.9':
- resolution: {integrity: sha512-dhO5IUfQRCsrc20YD20nSOX+QCT+cH6N86HlZOLz2XgyEFgzOdBQnUot4EabBJQRkMBI7fZWUrbYfRcnov53ug==}
+ '@firebase/functions@0.11.10':
+ resolution: {integrity: sha512-TP+Dzebazhw6+GduBdWn1kOJRFH84G2z+BW3pNVfkpFRkc//+uT1Uw2+dLpMGSSBRG7FrcDG91vcPnOFCzr15w==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/installations-compat@0.2.10':
- resolution: {integrity: sha512-YTonkcVz3AK7RF8xFhvs5CwDuJ0xbzzCJIwXoV14gnzdYbMgy6vWlUUbzkvbtEDXzPRHB0n7aGZl56oy9dLOFw==}
+ '@firebase/installations-compat@0.2.11':
+ resolution: {integrity: sha512-SHRgw5LTa6v8LubmJZxcOCwEd1MfWQPUtKdiuCx2VMWnapX54skZd1PkQg0K4l3k+4ujbI2cn7FE6Li9hbChBw==}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/installations-types@0.5.2':
- resolution: {integrity: sha512-que84TqGRZJpJKHBlF2pkvc1YcXrtEDOVGiDjovP/a3s6W4nlbohGXEsBJo0JCeeg/UG9A+DEZVDUV9GpklUzA==}
+ '@firebase/installations-types@0.5.3':
+ resolution: {integrity: sha512-2FJI7gkLqIE0iYsNQ1P751lO3hER+Umykel+TkLwHj6plzWVxqvfclPUZhcKFVQObqloEBTmpi2Ozn7EkCABAA==}
peerDependencies:
'@firebase/app-types': 0.x
- '@firebase/installations@0.6.10':
- resolution: {integrity: sha512-TuGSOMqkFrllxa0X/8VZIqBCRH4POndU/iWKWkRmkh12+/xKSpdp+y/kWaVbsySrelltan6LeYlcYPmLibWbwg==}
+ '@firebase/installations@0.6.11':
+ resolution: {integrity: sha512-w8fY8mw6fxJzsZM2ufmTtomopXl1+bn/syYon+Gpn+0p0nO1cIUEVEFrFazTLaaL9q1CaVhc3HmseRTsI3igAA==}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/logger@0.4.3':
- resolution: {integrity: sha512-Th42bWJg18EF5bJwhRosn2M/eYxmbWCwXZr4hHX7ltO0SE3QLrpgiMKeRBR/NW7vJke7i0n3i8esbCW2s93qBw==}
+ '@firebase/logger@0.4.4':
+ resolution: {integrity: sha512-mH0PEh1zoXGnaR8gD1DeGeNZtWFKbnz9hDO91dIml3iou1gpOnLqXQ2dJfB71dj6dpmUjcQ6phY3ZZJbjErr9g==}
engines: {node: '>=18.0.0'}
- '@firebase/messaging-compat@0.2.13':
- resolution: {integrity: sha512-9ootPClS6m2c2KIzo7AqSHaWzAw28zWcjQPjVv7WeQDu6wjufpbOg+7tuVzb+gqpF9Issa3lDoYOwlO0ZudO3g==}
+ '@firebase/messaging-compat@0.2.14':
+ resolution: {integrity: sha512-r9weK8jTEA2aGiwy0IbMQPnzuJ0DHkOQaMxGJOlU2QZ1a7fh6RHpNtaoM+LKnn6u1NQgmAOWYNr9vezVQEm9zw==}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/messaging-interop-types@0.2.2':
- resolution: {integrity: sha512-l68HXbuD2PPzDUOFb3aG+nZj5KA3INcPwlocwLZOzPp9rFM9yeuI9YLl6DQfguTX5eAGxO0doTR+rDLDvQb5tA==}
+ '@firebase/messaging-interop-types@0.2.3':
+ resolution: {integrity: sha512-xfzFaJpzcmtDjycpDeCUj0Ge10ATFi/VHVIvEEjDNc3hodVBQADZ7BWQU7CuFpjSHE+eLuBI13z5F/9xOoGX8Q==}
- '@firebase/messaging@0.12.13':
- resolution: {integrity: sha512-YLa8PWl+BgiOVR5WOyzl21fVJFJeBRfniNuN25d9DBrQzppSAahuN6yS+vt1OIjvZNPN4pZ/lcRLYupbGu4W0w==}
+ '@firebase/messaging@0.12.14':
+ resolution: {integrity: sha512-cSGP34jJswFvME8tdMDkvJvW6T1jEekyMSyq84AMBZ0KEpJbDWuC9n4wKT2lxUm1jaL651iZnn6g51yCl77ICg==}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/performance-compat@0.2.10':
- resolution: {integrity: sha512-0h1qYkF6I79DSSpHfTQFvb91fo8shmmwiPzWFYAPdPK02bSWpKwVssNYlZX2iUnumxerDMbl7dWN+Im/W3bnXA==}
+ '@firebase/performance-compat@0.2.11':
+ resolution: {integrity: sha512-DqeNBy51W2xzlklyC7Ht9JQ94HhTA08PCcM4MDeyG/ol3fqum/+YgtHWQ2IQuduqH9afETthZqLwCZiSgY7hiA==}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/performance-types@0.2.2':
- resolution: {integrity: sha512-gVq0/lAClVH5STrIdKnHnCo2UcPLjJlDUoEB/tB4KM+hAeHUxWKnpT0nemUPvxZ5nbdY/pybeyMe8Cs29gEcHA==}
+ '@firebase/performance-types@0.2.3':
+ resolution: {integrity: sha512-IgkyTz6QZVPAq8GSkLYJvwSLr3LS9+V6vNPQr0x4YozZJiLF5jYixj0amDtATf1X0EtYHqoPO48a9ija8GocxQ==}
- '@firebase/performance@0.6.10':
- resolution: {integrity: sha512-x/mNYKGxq7A+QV0EiEZeD2S+E+kw+UcZ8FXuE7qDJyGGt/0Wd+bIIL7RakG/VrFt7/UYc//nKygDc7/Ig7sOmQ==}
+ '@firebase/performance@0.6.11':
+ resolution: {integrity: sha512-FlkJFeqLlIeh5T4Am3uE38HVzggliDIEFy/fErEc1faINOUFCb6vQBEoNZGaXvRnTR8lh3X/hP7tv37C7BsK9g==}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/remote-config-compat@0.2.10':
- resolution: {integrity: sha512-fIi5OB2zk0zpChMV/tTd0oEZcZI8TlwQDlLlcrDpMOV5l5dqd0JNlWKh6Fwmh4izmytk+rZIAIpnak/NjGVesQ==}
+ '@firebase/remote-config-compat@0.2.11':
+ resolution: {integrity: sha512-zfIjpwPrGuIOZDmduukN086qjhZ1LnbJi/iYzgua+2qeTlO0XdlE1v66gJPwygGB3TOhT0yb9EiUZ3nBNttMqg==}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/remote-config-types@0.3.2':
- resolution: {integrity: sha512-0BC4+Ud7y2aPTyhXJTMTFfrGGLqdYXrUB9sJVAB8NiqJswDTc4/2qrE/yfUbnQJhbSi6ZaTTBKyG3n1nplssaA==}
+ '@firebase/remote-config-types@0.3.3':
+ resolution: {integrity: sha512-YlRI9CHxrk3lpQuFup9N1eohpwdWayKZUNZ/YeQ0PZoncJ66P32UsKUKqVXOaieTjJIOh7yH8JEzRdht5s+d6g==}
- '@firebase/remote-config@0.4.10':
- resolution: {integrity: sha512-jTRjy3TdqzVna19m5a1HEHE5BG4Z3BQTxBgvQRTmMKlHacx4QS0CToAas7R9M9UkxpgFcVuAE7FpWIOWQGCEWw==}
+ '@firebase/remote-config@0.4.11':
+ resolution: {integrity: sha512-9z0rgKuws2nj+7cdiqF+NY1QR4na6KnuOvP+jQvgilDOhGtKOcCMq5XHiu66i73A9kFhyU6QQ2pHXxcmaq1pBw==}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/storage-compat@0.3.13':
- resolution: {integrity: sha512-15kje7JALswRCBKsCSvKg5FbqUYykaIMqMbZRD7I6uVRWwdyTvez5MBQfMhBia2JcEmPiDpXhJTXH4PAWFiA8g==}
+ '@firebase/storage-compat@0.3.14':
+ resolution: {integrity: sha512-Ok5FmXJiapaNAOQ8W8qppnfwgP8540jw2B8M0c4TFZqF4BD+CoKBxW0dRtOuLNGadLhzqqkDZZZtkexxrveQqA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app-compat': 0.x
- '@firebase/storage-types@0.8.2':
- resolution: {integrity: sha512-0vWu99rdey0g53lA7IShoA2Lol1jfnPovzLDUBuon65K7uKG9G+L5uO05brD9pMw+l4HRFw23ah3GwTGpEav6g==}
+ '@firebase/storage-types@0.8.3':
+ resolution: {integrity: sha512-+Muk7g9uwngTpd8xn9OdF/D48uiQ7I1Fae7ULsWPuKoCH3HU7bfFPhxtJYzyhjdniowhuDpQcfPmuNRAqZEfvg==}
peerDependencies:
'@firebase/app-types': 0.x
'@firebase/util': 1.x
- '@firebase/storage@0.13.3':
- resolution: {integrity: sha512-B5HiJ7isYKaT4dOEV43f2ySdhQxzq+SQEm7lqXebJ8AYCsebdHrgGzrPR0LR962xGjPzJHFKx63gA8Be/P2MCw==}
+ '@firebase/storage@0.13.4':
+ resolution: {integrity: sha512-b1KaTTRiMupFurIhpGIbReaWev0k5O3ouTHkAPcEssT+FvU3q/1JwzvkX4+ZdB60Fc43Mbp8qQ1gWfT0Z2FP9Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app': 0.x
- '@firebase/util@1.10.1':
- resolution: {integrity: sha512-AIhFnCCjM8FmCqSNlNPTuOk3+gpHC1RkeNUBLtPbcqGYpN5MxI5q7Yby+rxycweOZOCboDzfIj8WyaY4tpQG/g==}
+ '@firebase/util@1.10.2':
+ resolution: {integrity: sha512-qnSHIoE9FK+HYnNhTI8q14evyqbc/vHRivfB4TgCIUOl4tosmKSQlp7ltymOlMP4xVIJTg5wrkfcZ60X4nUf7Q==}
engines: {node: '>=18.0.0'}
- '@firebase/vertexai@1.0.0':
- resolution: {integrity: sha512-48N3Lp/9GgiCCRfrSdHS+Y1IiMdYXvnHFO/f+HL1PgUtBq7WQ/fWmYOX3mzAN36zvytq13nb68ImF+GALopp+Q==}
+ '@firebase/vertexai@1.0.1':
+ resolution: {integrity: sha512-f48MGSofhaS05ebpN7zMIv4tBqYf19pXr5/4njKtNZVLbjxUswDma0SuFDoO+IwgbdkhFxgtNctM+C1zfI/O1Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@firebase/app': 0.x
'@firebase/app-types': 0.x
- '@firebase/webchannel-wrapper@1.0.2':
- resolution: {integrity: sha512-3F4iA2E+NtdMbOU0XC1cHE8q6MqpGIKRj62oGOF38S6AAx5VHR9cXmoDUSj7ejvTAT7m6jxuEeQkHeq0F+mU2w==}
+ '@firebase/webchannel-wrapper@1.0.3':
+ resolution: {integrity: sha512-2xCRM9q9FlzGZCdgDMJwc0gyUkWFtkosy7Xxr6sFgQwn+wMNIWd7xIvYNauU1r64B5L5rsGKy/n9TKJ0aAFeqQ==}
'@floating-ui/core@1.6.8':
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
@@ -1324,6 +1324,12 @@ packages:
resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==}
engines: {node: '>=10.13.0'}
+ '@iconify-json/simple-icons@1.2.11':
+ resolution: {integrity: sha512-AHCGDtBRqP+JzAbBzgO8uN/08CXxEmuaC6lQQZ3b5burKhRU12AJnJczwbUw2K5Mb/U85EpSUNhYMG3F28b8NA==}
+
+ '@iconify/types@2.0.0':
+ resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
@@ -1523,8 +1529,8 @@ packages:
'@pinia/colada@0.10.0':
resolution: {integrity: sha512-lIbBrjtIN9yzhdrKYI+4wsSw1WymMZ/LpsagbKGapKfOra8Y9PK2CxLiiiXZoLGYoklnQKrOfHeuBtBoOR23IA==}
- '@pinia/colada@0.11.0':
- resolution: {integrity: sha512-sc942pBq25yRbQ5cdP0Iy0lFDJ+Z8XKjWdttGg6L83CWOwqdxjCTpbXPNriWotyvbRQmQb1mgEvKHkM79TMZkA==}
+ '@pinia/colada@0.12.1':
+ resolution: {integrity: sha512-mpq2zbNshNeQ9KU5HipnJgFWQTBqx67bRGBQOrbvemryGQVztstEnxrOrr3SEmZT3C/OVwE4l2BJC4FyGKcamg==}
'@pinia/nuxt@0.5.5':
resolution: {integrity: sha512-wjxS7YqIesh4OLK+qE3ZjhdOJ5pYZQ+VlEmZNtTwzQn1Kavei/khovx7mzXVXNA/mvSPXVhb9xBzhyS3XMURtw==}
@@ -1651,131 +1657,119 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.24.2':
- resolution: {integrity: sha512-ufoveNTKDg9t/b7nqI3lwbCG/9IJMhADBNjjz/Jn6LxIZxD7T5L8l2uO/wD99945F1Oo8FvgbbZJRguyk/BdzA==}
+ '@rollup/rollup-android-arm-eabi@4.27.2':
+ resolution: {integrity: sha512-Tj+j7Pyzd15wAdSJswvs5CJzJNV+qqSUcr/aCD+jpQSBtXvGnV0pnrjoc8zFTe9fcKCatkpFpOO7yAzpO998HA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.24.2':
- resolution: {integrity: sha512-iZoYCiJz3Uek4NI0J06/ZxUgwAfNzqltK0MptPDO4OR0a88R4h0DSELMsflS6ibMCJ4PnLvq8f7O1d7WexUvIA==}
+ '@rollup/rollup-android-arm64@4.27.2':
+ resolution: {integrity: sha512-xsPeJgh2ThBpUqlLgRfiVYBEf/P1nWlWvReG+aBWfNv3XEBpa6ZCmxSVnxJgLgkNz4IbxpLy64h2gCmAAQLneQ==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.24.2':
- resolution: {integrity: sha512-/UhrIxobHYCBfhi5paTkUDQ0w+jckjRZDZ1kcBL132WeHZQ6+S5v9jQPVGLVrLbNUebdIRpIt00lQ+4Z7ys4Rg==}
+ '@rollup/rollup-darwin-arm64@4.27.2':
+ resolution: {integrity: sha512-KnXU4m9MywuZFedL35Z3PuwiTSn/yqRIhrEA9j+7OSkji39NzVkgxuxTYg5F8ryGysq4iFADaU5osSizMXhU2A==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.24.2':
- resolution: {integrity: sha512-1F/jrfhxJtWILusgx63WeTvGTwE4vmsT9+e/z7cZLKU8sBMddwqw3UV5ERfOV+H1FuRK3YREZ46J4Gy0aP3qDA==}
+ '@rollup/rollup-darwin-x64@4.27.2':
+ resolution: {integrity: sha512-Hj77A3yTvUeCIx/Vi+4d4IbYhyTwtHj07lVzUgpUq9YpJSEiGJj4vXMKwzJ3w5zp5v3PFvpJNgc/J31smZey6g==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.24.2':
- resolution: {integrity: sha512-1YWOpFcGuC6iGAS4EI+o3BV2/6S0H+m9kFOIlyFtp4xIX5rjSnL3AwbTBxROX0c8yWtiWM7ZI6mEPTI7VkSpZw==}
+ '@rollup/rollup-freebsd-arm64@4.27.2':
+ resolution: {integrity: sha512-RjgKf5C3xbn8gxvCm5VgKZ4nn0pRAIe90J0/fdHUsgztd3+Zesb2lm2+r6uX4prV2eUByuxJNdt647/1KPRq5g==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.24.2':
- resolution: {integrity: sha512-3qAqTewYrCdnOD9Gl9yvPoAoFAVmPJsBvleabvx4bnu1Kt6DrB2OALeRVag7BdWGWLhP1yooeMLEi6r2nYSOjg==}
+ '@rollup/rollup-freebsd-x64@4.27.2':
+ resolution: {integrity: sha512-duq21FoXwQtuws+V9H6UZ+eCBc7fxSpMK1GQINKn3fAyd9DFYKPJNcUhdIKOrMFjLEJgQskoMoiuizMt+dl20g==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
- resolution: {integrity: sha512-ArdGtPHjLqWkqQuoVQ6a5UC5ebdX8INPuJuJNWRe0RGa/YNhVvxeWmCTFQ7LdmNCSUzVZzxAvUznKaYx645Rig==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.2':
+ resolution: {integrity: sha512-6npqOKEPRZkLrMcvyC/32OzJ2srdPzCylJjiTJT2c0bwwSGm7nz2F9mNQ1WrAqCBZROcQn91Fno+khFhVijmFA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.24.2':
- resolution: {integrity: sha512-B6UHHeNnnih8xH6wRKB0mOcJGvjZTww1FV59HqJoTJ5da9LCG6R4SEBt6uPqzlawv1LoEXSS0d4fBlHNWl6iYw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.27.2':
+ resolution: {integrity: sha512-V9Xg6eXtgBtHq2jnuQwM/jr2mwe2EycnopO8cbOvpzFuySCGtKlPCI3Hj9xup/pJK5Q0388qfZZy2DqV2J8ftw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.24.2':
- resolution: {integrity: sha512-kr3gqzczJjSAncwOS6i7fpb4dlqcvLidqrX5hpGBIM1wtt0QEVtf4wFaAwVv8QygFU8iWUMYEoJZWuWxyua4GQ==}
+ '@rollup/rollup-linux-arm64-gnu@4.27.2':
+ resolution: {integrity: sha512-uCFX9gtZJoQl2xDTpRdseYuNqyKkuMDtH6zSrBTA28yTfKyjN9hQ2B04N5ynR8ILCoSDOrG/Eg+J2TtJ1e/CSA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.24.2':
- resolution: {integrity: sha512-TDdHLKCWgPuq9vQcmyLrhg/bgbOvIQ8rtWQK7MRxJ9nvaxKx38NvY7/Lo6cYuEnNHqf6rMqnivOIPIQt6H2AoA==}
+ '@rollup/rollup-linux-arm64-musl@4.27.2':
+ resolution: {integrity: sha512-/PU9P+7Rkz8JFYDHIi+xzHabOu9qEWR07L5nWLIUsvserrxegZExKCi2jhMZRd0ATdboKylu/K5yAXbp7fYFvA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
- resolution: {integrity: sha512-xv9vS648T3X4AxFFZGWeB5Dou8ilsv4VVqJ0+loOIgDO20zIhYfDLkk5xoQiej2RiSQkld9ijF/fhLeonrz2mw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.2':
+ resolution: {integrity: sha512-eCHmol/dT5odMYi/N0R0HC8V8QE40rEpkyje/ZAXJYNNoSfrObOvG/Mn+s1F/FJyB7co7UQZZf6FuWnN6a7f4g==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.24.2':
- resolution: {integrity: sha512-tbtXwnofRoTt223WUZYiUnbxhGAOVul/3StZ947U4A5NNjnQJV5irKMm76G0LGItWs6y+SCjUn/Q0WaMLkEskg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.27.2':
+ resolution: {integrity: sha512-DEP3Njr9/ADDln3kNi76PXonLMSSMiCir0VHXxmGSHxCxDfQ70oWjHcJGfiBugzaqmYdTC7Y+8Int6qbnxPBIQ==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.24.2':
- resolution: {integrity: sha512-gc97UebApwdsSNT3q79glOSPdfwgwj5ELuiyuiMY3pEWMxeVqLGKfpDFoum4ujivzxn6veUPzkGuSYoh5deQ2Q==}
+ '@rollup/rollup-linux-s390x-gnu@4.27.2':
+ resolution: {integrity: sha512-NHGo5i6IE/PtEPh5m0yw5OmPMpesFnzMIS/lzvN5vknnC1sXM5Z/id5VgcNPgpD+wHmIcuYYgW+Q53v+9s96lQ==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.24.2':
- resolution: {integrity: sha512-jOG/0nXb3z+EM6SioY8RofqqmZ+9NKYvJ6QQaa9Mvd3RQxlH68/jcB/lpyVt4lCiqr04IyaC34NzhUqcXbB5FQ==}
+ '@rollup/rollup-linux-x64-gnu@4.27.2':
+ resolution: {integrity: sha512-PaW2DY5Tan+IFvNJGHDmUrORadbe/Ceh8tQxi8cmdQVCCYsLoQo2cuaSj+AU+YRX8M4ivS2vJ9UGaxfuNN7gmg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.24.2':
- resolution: {integrity: sha512-XAo7cJec80NWx9LlZFEJQxqKOMz/lX3geWs2iNT5CHIERLFfd90f3RYLLjiCBm1IMaQ4VOX/lTC9lWfzzQm14Q==}
+ '@rollup/rollup-linux-x64-musl@4.27.2':
+ resolution: {integrity: sha512-dOlWEMg2gI91Qx5I/HYqOD6iqlJspxLcS4Zlg3vjk1srE67z5T2Uz91yg/qA8sY0XcwQrFzWWiZhMNERylLrpQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.24.2':
- resolution: {integrity: sha512-A+JAs4+EhsTjnPQvo9XY/DC0ztaws3vfqzrMNMKlwQXuniBKOIIvAAI8M0fBYiTCxQnElYu7mLk7JrhlQ+HeOw==}
+ '@rollup/rollup-win32-arm64-msvc@4.27.2':
+ resolution: {integrity: sha512-euMIv/4x5Y2/ImlbGl88mwKNXDsvzbWUlT7DFky76z2keajCtcbAsN9LUdmk31hAoVmJJYSThgdA0EsPeTr1+w==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.24.2':
- resolution: {integrity: sha512-ZhcrakbqA1SCiJRMKSU64AZcYzlZ/9M5LaYil9QWxx9vLnkQ9Vnkve17Qn4SjlipqIIBFKjBES6Zxhnvh0EAEw==}
+ '@rollup/rollup-win32-ia32-msvc@4.27.2':
+ resolution: {integrity: sha512-RsnE6LQkUHlkC10RKngtHNLxb7scFykEbEwOFDjr3CeCMG+Rr+cKqlkKc2/wJ1u4u990urRHCbjz31x84PBrSQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.24.2':
- resolution: {integrity: sha512-2mLH46K1u3r6uwc95hU+OR9q/ggYMpnS7pSp83Ece1HUQgF9Nh/QwTK5rcgbFnV9j+08yBrU5sA/P0RK2MSBNA==}
+ '@rollup/rollup-win32-x64-msvc@4.27.2':
+ resolution: {integrity: sha512-foJM5vv+z2KQmn7emYdDLyTbkoO5bkHZE1oth2tWbQNGW7mX32d46Hz6T0MqXdWS2vBZhaEtHqdy9WYwGfiliA==}
cpu: [x64]
os: [win32]
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@shikijs/core@1.22.0':
- resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==}
-
- '@shikijs/core@1.22.1':
- resolution: {integrity: sha512-bqAhT/Ri5ixV4oYsvJNH8UJjpjbINWlWyXY6tBTsP4OmD6XnFv43nRJ+lTdxd2rmG5pgam/x+zGR6kLRXrpEKA==}
+ '@shikijs/core@1.23.0':
+ resolution: {integrity: sha512-J4Fo22oBlfRHAXec+1AEzcowv+Qdf4ZQkuP/X/UHYH9+KA9LvyFXSXyS+HxuBRFfon+u7bsmKdRBjoZlbDVRkQ==}
- '@shikijs/engine-javascript@1.22.0':
- resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==}
+ '@shikijs/engine-javascript@1.23.0':
+ resolution: {integrity: sha512-CcrppseWShG+8Efp1iil9divltuXVdCaU4iu+CKvzTGZO5RmXyAiSx668M7VbX8+s/vt1ZKu75Vn/jWi8O3G/Q==}
- '@shikijs/engine-javascript@1.22.1':
- resolution: {integrity: sha512-540pyoy0LWe4jj2BVbgELwOFu1uFvRI7lg4hdsExrSXA9x7gqfzZ/Nnh4RfX86aDAgJ647gx4TCmRwACbnQSvw==}
+ '@shikijs/engine-oniguruma@1.23.0':
+ resolution: {integrity: sha512-gS8bZLqVvmZXX+E5JUMJICsBp+kx6gj79MH/UEpKHKIqnUzppgbmEn6zLa6mB5D+sHse2gFei3YYJxQe1EzZXQ==}
- '@shikijs/engine-oniguruma@1.22.0':
- resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==}
+ '@shikijs/transformers@1.23.0':
+ resolution: {integrity: sha512-YzQN+m8nXNZjI7ZRk+8IdFa13qiOqIqjcm4jIQ31RzgMoHtpd9Ruma1hssnt2ETH3ixr8HEh+0zAuB9w/OBfnw==}
- '@shikijs/engine-oniguruma@1.22.1':
- resolution: {integrity: sha512-L+1Vmd+a2kk8HtogUFymQS6BjUfJnzcWoUp1BUgxoDiklbKSMvrsMuLZGevTOP1m0rEjgnC5MsDmsr8lX1lC+Q==}
+ '@shikijs/twoslash@1.23.0':
+ resolution: {integrity: sha512-kZuzcnkoBNPtrMVRkgiCQUrElvg3gcgaqSD5+Y8jN8IgwcPIiR+r4jIDuLQctTvpAQjAnA6dWflCh7A8FXGKYQ==}
- '@shikijs/transformers@1.22.0':
- resolution: {integrity: sha512-k7iMOYuGQA62KwAuJOQBgH2IQb5vP8uiB3lMvAMGUgAMMurePOx3Z7oNqJdcpxqZP6I9cc7nc4DNqSKduCxmdg==}
+ '@shikijs/types@1.23.0':
+ resolution: {integrity: sha512-HiwzsihRao+IbPk7FER/EQT/D0dEEK3n5LAtHDzL5iRT+JMblA7y9uitUnjEnHeLkKigNM+ZplrP7MuEyyc5kA==}
- '@shikijs/twoslash@1.22.1':
- resolution: {integrity: sha512-Gs3eRsq0P3wOWJkLRQEsf6fjBcCOVcBSt+xPPhgIWqrBkpUf/L65VaGHR8LRWX3L9yhoyvX9PE/vtMVRwe8sNg==}
-
- '@shikijs/types@1.22.0':
- resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==}
-
- '@shikijs/types@1.22.1':
- resolution: {integrity: sha512-+45f8mu/Hxqs6Kyhfm98Nld5n7Q7lwhjU8UtdQwrOPs7BnM4VAb929O3IQ2ce+4D7SlNFlZGd8CnKRSnwbQreQ==}
-
- '@shikijs/vitepress-twoslash@1.22.1':
- resolution: {integrity: sha512-NW5ueaz0bXljWGkIcsYq1HUD4EmAsrlep63/mRemrbYxX/GjO4sDWFPOiTZ9LfPpHlPnHFnhEOAHTvhXthRPhg==}
+ '@shikijs/vitepress-twoslash@1.23.0':
+ resolution: {integrity: sha512-Xk4/f2w1c7lFQUvthCUDkyL9WX5dPYnRqCaSQ/2iWKYe0pXxzdjrZyBrWyiqHTbIh0rx2D2FvuYU+vxlHU0jjQ==}
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
@@ -1792,11 +1786,11 @@ packages:
resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==}
engines: {node: '>=12'}
- '@tanstack/query-core@5.59.16':
- resolution: {integrity: sha512-crHn+G3ltqb5JG0oUv6q+PMz1m1YkjpASrXTU+sYWW9pLk0t2GybUHNRqYPZWhxgjPaVGC4yp92gSFEJgYEsPw==}
+ '@tanstack/query-core@5.60.5':
+ resolution: {integrity: sha512-jiS1aC3XI3BJp83ZiTuDLerTmn9P3U95r6p+6/SNauLJaYxfIC4dMuWygwnBHIZxjn2zJqEpj3nysmPieoxfPQ==}
- '@tanstack/vue-query@5.59.16':
- resolution: {integrity: sha512-ncKfvrDV1CfPWr4VKykn33yW74ZPbHZBBUN8X2saIvxH8yZLiT/lwjh50WpRSWLcCTw/zrQJgteA3X3Qsoqo5A==}
+ '@tanstack/vue-query@5.60.5':
+ resolution: {integrity: sha512-haiXgn4Rtmwdcj3o9mNggll+VCKZ88gymb4gTjofXy/GHHxBqwHnWM+gzgzpt8x5b4VaqUUG/okNht89ZiFxVg==}
peerDependencies:
'@vue/composition-api': ^1.1.2
vue: ^2.6.0 || ^3.3.0
@@ -1811,6 +1805,12 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+ '@types/eslint-scope@3.7.7':
+ resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
+
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
+
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@@ -1838,8 +1838,8 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@22.8.7':
- resolution: {integrity: sha512-LidcG+2UeYIWcMuMUpBKOnryBWG/rnmOHQR5apjn8myTQcx3rinFRn7DcIFhMnS0PPFSC6OafdIKEad0lj6U0Q==}
+ '@types/node@22.9.0':
+ resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1893,30 +1893,29 @@ packages:
vite: ^5.0.0
vue: ^3.0.0
- '@vitejs/plugin-vue@5.1.4':
- resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==}
+ '@vitejs/plugin-vue@5.2.0':
+ resolution: {integrity: sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
vue: ^3.2.25
- '@vitest/coverage-v8@2.1.3':
- resolution: {integrity: sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==}
+ '@vitest/coverage-v8@2.1.5':
+ resolution: {integrity: sha512-/RoopB7XGW7UEkUndRXF87A9CwkoZAJW01pj8/3pgmDVsjMH2IKy6H1A38po9tmUlwhSyYs0az82rbKd9Yaynw==}
peerDependencies:
- '@vitest/browser': 2.1.3
- vitest: 2.1.3
+ '@vitest/browser': 2.1.5
+ vitest: 2.1.5
peerDependenciesMeta:
'@vitest/browser':
optional: true
- '@vitest/expect@2.1.3':
- resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==}
+ '@vitest/expect@2.1.5':
+ resolution: {integrity: sha512-nZSBTW1XIdpZvEJyoP/Sy8fUg0b8od7ZpGDkTUcfJ7wz/VoZAFzFfLyxVxGFhUjJzhYqSbIpfMtl/+k/dpWa3Q==}
- '@vitest/mocker@2.1.3':
- resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==}
+ '@vitest/mocker@2.1.5':
+ resolution: {integrity: sha512-XYW6l3UuBmitWqSUXTNXcVBUCRytDogBsWuNXQijc00dtnU/9OqpXWp4OJroVrad/gLIomAq9aW8yWDBtMthhQ==}
peerDependencies:
- '@vitest/spy': 2.1.3
- msw: ^2.3.5
+ msw: ^2.4.9
vite: ^5.0.0
peerDependenciesMeta:
msw:
@@ -1924,41 +1923,35 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.1.3':
- resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
+ '@vitest/pretty-format@2.1.5':
+ resolution: {integrity: sha512-4ZOwtk2bqG5Y6xRGHcveZVr+6txkH7M2e+nPFd6guSoN638v/1XQ0K06eOpi0ptVU/2tW/pIU4IoPotY/GZ9fw==}
- '@vitest/runner@2.1.3':
- resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
+ '@vitest/runner@2.1.5':
+ resolution: {integrity: sha512-pKHKy3uaUdh7X6p1pxOkgkVAFW7r2I818vHDthYLvUyjRfkKOU6P45PztOch4DZarWQne+VOaIMwA/erSSpB9g==}
- '@vitest/snapshot@2.1.3':
- resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==}
+ '@vitest/snapshot@2.1.5':
+ resolution: {integrity: sha512-zmYw47mhfdfnYbuhkQvkkzYroXUumrwWDGlMjpdUr4jBd3HZiV2w7CQHj+z7AAS4VOtWxI4Zt4bWt4/sKcoIjg==}
- '@vitest/spy@2.1.3':
- resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==}
+ '@vitest/spy@2.1.5':
+ resolution: {integrity: sha512-aWZF3P0r3w6DiYTVskOYuhBc7EMc3jvn1TkBg8ttylFFRqNN2XGD7V5a4aQdk6QiUzZQ4klNBSpCLJgWNdIiNw==}
- '@vitest/ui@2.1.3':
- resolution: {integrity: sha512-2XwTrHVJw3t9NYES26LQUYy51ZB8W4bRPgqUH2Eyda3kIuOlYw1ZdPNU22qcVlUVx4WKgECFQOSXuopsczuVjQ==}
+ '@vitest/ui@2.1.5':
+ resolution: {integrity: sha512-ERgKkDMTfngrZip6VG5h8L9B5D0AH/4+bga4yR1UzGH7c2cxv3LWogw2Dvuwr9cP3/iKDHYys7kIFLDKpxORTg==}
peerDependencies:
- vitest: 2.1.3
+ vitest: 2.1.5
- '@vitest/utils@2.1.3':
- resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
+ '@vitest/utils@2.1.5':
+ resolution: {integrity: sha512-yfj6Yrp0Vesw2cwJbP+cl04OC+IHFsuQsrsJBL9pyGeQXE56v1UAOQco+SR55Vf1nQzfV0QJg1Qum7AaWUwwYg==}
'@volar/language-core@1.4.1':
resolution: {integrity: sha512-EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ==}
- '@volar/language-core@2.4.4':
- resolution: {integrity: sha512-kO9k4kTLfxpg+6lq7/KAIv3m2d62IHuCL6GbVgYZTpfKvIGoAIlDxK7pFcB/eczN2+ydg/vnyaeZ6SGyZrJw2w==}
-
'@volar/language-core@2.4.8':
resolution: {integrity: sha512-K/GxMOXGq997bO00cdFhTNuR85xPxj0BEEAy+BaqqayTmy9Tmhfgmq2wpJcVspRhcwfgPoE2/mEJa26emUhG/g==}
'@volar/source-map@1.4.1':
resolution: {integrity: sha512-bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA==}
- '@volar/source-map@2.4.4':
- resolution: {integrity: sha512-xG3PZqOP2haG8XG4Pg3PD1UGDAdqZg24Ru8c/qYjYAnmcj6GBR64mstx+bZux5QOyRaJK+/lNM/RnpvBD3489g==}
-
'@volar/source-map@2.4.8':
resolution: {integrity: sha512-jeWJBkC/WivdelMwxKkpFL811uH/jJ1kVxa+c7OvG48DXc3VrP7pplSWPP2W1dLMqBxD+awRlg55FQQfiup4cA==}
@@ -1999,23 +1992,29 @@ packages:
'@vue/compiler-core@3.5.12':
resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==}
+ '@vue/compiler-core@3.5.13':
+ resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+
'@vue/compiler-dom@3.5.11':
resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==}
'@vue/compiler-dom@3.5.12':
resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==}
+ '@vue/compiler-dom@3.5.13':
+ resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+
'@vue/compiler-sfc@3.5.11':
resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==}
- '@vue/compiler-sfc@3.5.12':
- resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==}
+ '@vue/compiler-sfc@3.5.13':
+ resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
'@vue/compiler-ssr@3.5.11':
resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==}
- '@vue/compiler-ssr@3.5.12':
- resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==}
+ '@vue/compiler-ssr@3.5.13':
+ resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -2023,39 +2022,36 @@ packages:
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@7.4.6':
- resolution: {integrity: sha512-XipBV5k0/IfTr0sNBDTg7OBUCp51cYMMXyPxLXJZ4K/wmUeMqt8cVdr2ZZGOFq+si/jTyCYnNxeKoyev5DOUUA==}
+ '@vue/devtools-api@7.6.4':
+ resolution: {integrity: sha512-5AaJ5ELBIuevmFMZYYLuOO9HUuY/6OlkOELHE7oeDhy4XD/hSODIzktlsvBOsn+bto3aD0psj36LGzwVu5Ip8w==}
'@vue/devtools-core@7.4.4':
resolution: {integrity: sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-core@7.5.4':
- resolution: {integrity: sha512-igB2iUKsCUrXkp0wKLn3n5X8jz3AgXWk7if0QpLu3Do16QmlTO0e+/VvTpX0ZbLMh8OOAxDKyfPvJMMO/4QJ5w==}
+ '@vue/devtools-core@7.6.4':
+ resolution: {integrity: sha512-blSwGVYpb7b5TALMjjoBiAl5imuBF7WEOAtaJaBMNikR8SQkm6mkUt4YlIKh9874/qoimwmpDOm+GHBZ4Y5m+g==}
peerDependencies:
vue: ^3.0.0
'@vue/devtools-kit@7.4.4':
resolution: {integrity: sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw==}
- '@vue/devtools-kit@7.4.6':
- resolution: {integrity: sha512-NbYBwPWgEic1AOd9bWExz9weBzFdjiIfov0yRn4DrRfR+EQJCI9dn4I0XS7IxYGdkmUJi8mFW42LLk18WsGqew==}
-
- '@vue/devtools-kit@7.5.2':
- resolution: {integrity: sha512-0leUOE2HBfl8sHf9ePKzxqnCFskkU22tWWqd9OfeSlslAKE30/TViYvWcF4vgQmPlJnAAdHU0WfW5dYlCeOiuw==}
-
'@vue/devtools-kit@7.5.4':
resolution: {integrity: sha512-0i7WFgc1B2TL52tstn82zlb9opSA0aIiHfkUYFXtZb8CIpmlFMTkHtgwVl6PMWNBj3LNhYou1YJCLpCYvJYYoA==}
- '@vue/devtools-shared@7.5.2':
- resolution: {integrity: sha512-+zmcixnD6TAo+zwm30YuwZckhL9iIi4u+gFwbq9C8zpm3SMndTlEYZtNhAHUhOXB+bCkzyunxw80KQ/T0trF4w==}
+ '@vue/devtools-kit@7.6.4':
+ resolution: {integrity: sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA==}
'@vue/devtools-shared@7.5.4':
resolution: {integrity: sha512-dwuq4YmwTyLc7eBOqX63s3JB8il7qnKsNgENglSMkUPwiItHkVAYYfPESN1rxSdYkl1RCux1l5TBidYqfUDNAA==}
- '@vue/language-core@2.1.6':
- resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
+ '@vue/devtools-shared@7.6.4':
+ resolution: {integrity: sha512-nD6CUvBEel+y7zpyorjiUocy0nh77DThZJ0k1GRnJeOmY3ATq2fWijEp7wk37gb023Cb0R396uYh5qMSBQ5WFg==}
+
+ '@vue/language-core@2.1.10':
+ resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -2073,30 +2069,30 @@ packages:
'@vue/reactivity@3.5.11':
resolution: {integrity: sha512-Nqo5VZEn8MJWlCce8XoyVqHZbd5P2NH+yuAaFzuNSR96I+y1cnuUiq7xfSG+kyvLSiWmaHTKP1r3OZY4mMD50w==}
- '@vue/reactivity@3.5.12':
- resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==}
+ '@vue/reactivity@3.5.13':
+ resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
'@vue/runtime-core@3.5.11':
resolution: {integrity: sha512-7PsxFGqwfDhfhh0OcDWBG1DaIQIVOLgkwA5q6MtkPiDFjp5gohVnJEahSktwSFLq7R5PtxDKy6WKURVN1UDbzA==}
- '@vue/runtime-core@3.5.12':
- resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==}
+ '@vue/runtime-core@3.5.13':
+ resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
'@vue/runtime-dom@3.5.11':
resolution: {integrity: sha512-GNghjecT6IrGf0UhuYmpgaOlN7kxzQBhxWEn08c/SQDxv1yy4IXI1bn81JgEpQ4IXjRxWtPyI8x0/7TF5rPfYQ==}
- '@vue/runtime-dom@3.5.12':
- resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==}
+ '@vue/runtime-dom@3.5.13':
+ resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
'@vue/server-renderer@3.5.11':
resolution: {integrity: sha512-cVOwYBxR7Wb1B1FoxYvtjJD8X/9E5nlH4VSkJy2uMA1MzYNdzAAB//l8nrmN9py/4aP+3NjWukf9PZ3TeWULaA==}
peerDependencies:
vue: 3.5.11
- '@vue/server-renderer@3.5.12':
- resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==}
+ '@vue/server-renderer@3.5.13':
+ resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
peerDependencies:
- vue: 3.5.12
+ vue: 3.5.13
'@vue/shared@3.5.11':
resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==}
@@ -2104,11 +2100,22 @@ packages:
'@vue/shared@3.5.12':
resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
+ '@vue/shared@3.5.13':
+ resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
- '@vue/tsconfig@0.5.1':
- resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
+ '@vue/tsconfig@0.6.0':
+ resolution: {integrity: sha512-MHXNd6lzugsEHvuA6l1GqrF5jROqUon8sP/HInLPnthJiYvB0VvpHMywg7em1dBZfFZNBSkR68qH37zOdRHmCw==}
+ peerDependencies:
+ typescript: 5.x
+ vue: ^3.3.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ vue:
+ optional: true
'@vueuse/core@11.1.0':
resolution: {integrity: sha512-P6dk79QYA6sKQnghrUz/1tHi0n9mrb/iO1WTMk/ElLmTyNqgDeSZ3wcDf6fRBGzRJbeG1dxzEOvLENMjr+E3fg==}
@@ -2236,6 +2243,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
add-stream@1.0.0:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
@@ -2453,8 +2465,8 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.1.1:
- resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
engines: {node: '>=12'}
chalk@2.4.2:
@@ -2601,9 +2613,6 @@ packages:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
- computeds@0.0.1:
- resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
-
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
@@ -2966,6 +2975,9 @@ packages:
electron-to-chromium@1.5.35:
resolution: {integrity: sha512-hOSRInrIDm0Brzp4IHW2F/VM+638qOL2CzE0DgpnGzKW27C95IqqeqgKz/hxHGnvPxvQGpHUGD5qRVC9EZY2+A==}
+ emoji-regex-xs@1.0.0:
+ resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
+
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -3104,10 +3116,14 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
- execa@9.5.0:
- resolution: {integrity: sha512-t7vvYt+oKnMbF3O+S5+HkylsPrsUatwJSe4Cv+4017R0MCySjECxnVJ2eyDXVD/Xpj5H29YzyYn6eEpugG7GJA==}
+ execa@9.5.1:
+ resolution: {integrity: sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==}
engines: {node: ^18.19.0 || >=20.5.0}
+ expect-type@1.1.0:
+ resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ engines: {node: '>=12.0.0'}
+
express-urlrewrite@1.4.0:
resolution: {integrity: sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==}
@@ -3153,6 +3169,14 @@ packages:
picomatch:
optional: true
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -3175,8 +3199,8 @@ packages:
resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==}
engines: {node: '>=18'}
- firebase@11.0.1:
- resolution: {integrity: sha512-qsFb8dMcQINEDhJteG7RP+GqwgSRvfyiexQqHd5JToDdm87i9I2rGC4XQsGawKGxzKwZ/ISdgwNWxXAFYdCC6A==}
+ firebase@11.0.2:
+ resolution: {integrity: sha512-w4T8BSJpzdZA25QRch5ahLsgB6uRvg1LEic4BaC5rTD1YygroI1AXp+W+rbMnr8d8EjfAv6t4k8doULIjc1P8Q==}
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
@@ -3346,8 +3370,8 @@ packages:
engines: {node: '>=0.4.7'}
hasBin: true
- happy-dom@15.10.2:
- resolution: {integrity: sha512-NbA5XrSovenJIIcfixCREX3ZnV7yHP4phhbfuxxf4CPn+LZpz/jIM9EqJ2DrPwgVDSMoAKH3pZwQvkbsSiCrUw==}
+ happy-dom@15.11.6:
+ resolution: {integrity: sha512-elX7iUTu+5+3b2+NGQc0L3eWyq9jKhuJJ4GpOMxxT/c2pg9O3L5H3ty2VECX0XXZgRmmRqXyOK8brA2hDI6LsQ==}
engines: {node: '>=18.0.0'}
has-flag@3.0.0:
@@ -3861,8 +3885,8 @@ packages:
mdast-util-find-and-replace@3.0.1:
resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
- mdast-util-from-markdown@2.0.1:
- resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
mdast-util-gfm-autolink-literal@2.0.1:
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
@@ -4079,6 +4103,9 @@ packages:
mlly@1.7.2:
resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
+ mlly@1.7.3:
+ resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
+
morgan@1.10.0:
resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==}
engines: {node: '>= 0.8.0'}
@@ -4275,8 +4302,8 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- oniguruma-to-js@0.4.3:
- resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==}
+ oniguruma-to-es@0.1.2:
+ resolution: {integrity: sha512-sBYKVJlIMB0WPO+tSu/NNB1ytSFeHyyJZ3Ayxfx3f/QUuXu0lvZk0VB4K7npmdlHSC0ldqanzh/sUSlAbgCTfw==}
open@10.1.0:
resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
@@ -4411,6 +4438,18 @@ packages:
typescript:
optional: true
+ pinia@2.2.6:
+ resolution: {integrity: sha512-vIsR8JkDN5Ga2vAxqOE2cJj4VtsHnzpR1Fz30kClxlh0yCHfec6uoMeM3e/ddqmwFUejK3NlrcQa/shnpyT4hA==}
+ peerDependencies:
+ '@vue/composition-api': ^1.4.0
+ typescript: '>=4.4.4'
+ vue: ^2.6.14 || ^3.5.11
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+ typescript:
+ optional: true
+
pirates@4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
@@ -4616,6 +4655,10 @@ packages:
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
+ engines: {node: ^10 || ^12 || >=14}
+
preact@10.24.2:
resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==}
@@ -4739,8 +4782,14 @@ packages:
resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
engines: {node: '>=4'}
- regex@4.3.3:
- resolution: {integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==}
+ regex-recursion@4.2.1:
+ resolution: {integrity: sha512-QHNZyZAeKdndD1G3bKAbBEKOSSK4KOHQrAJ01N1LJeb0SoH4DJIeFhp0uUpETgONifS4+P3sOgoA1dhzgrQvhA==}
+
+ regex-utilities@2.3.0:
+ resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
+
+ regex@4.4.0:
+ resolution: {integrity: sha512-uCUSuobNVeqUupowbdZub6ggI5/JZkYyJdDogddJr60L764oxC2pMZov1fQ3wM9bdyzUILDG+Sqx6NAKAz9rKQ==}
remove-accents@0.5.0:
resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
@@ -4788,8 +4837,8 @@ packages:
rollup:
optional: true
- rollup@4.24.2:
- resolution: {integrity: sha512-do/DFGq5g6rdDhdpPq5qb2ecoczeK6y+2UAjdJ5trjQJj5f1AiVdLRWRc9A9/fFukfvJRgM0UXzxBIYMovm5ww==}
+ rollup@4.27.2:
+ resolution: {integrity: sha512-KreA+PzWmk2yaFmZVwe6GB2uBD86nXl86OsDkt1bJS9p3vqWuEQ6HnJJ+j/mZi/q0920P99/MVRlB4L3crpF5w==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -4885,11 +4934,8 @@ packages:
shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- shiki@1.22.0:
- resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==}
-
- shiki@1.22.1:
- resolution: {integrity: sha512-PbJ6XxrWLMwB2rm3qdjIHNm3zq4SfFnOx0B3rEoi4AN8AUngsdyZ1tRe5slMPtn6jQkbUURLNZPpLR7Do3k78g==}
+ shiki@1.23.0:
+ resolution: {integrity: sha512-xfdu9DqPkIpExH29cmiTlgo0/jBki5la1Tkfhsv+Wu5TT3APLNHslR1acxuKJOCWqVdSc+pIbs/2ozjVRGppdg==}
side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
@@ -4991,6 +5037,9 @@ packages:
std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ std-env@3.8.0:
+ resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
+
steno@0.4.4:
resolution: {integrity: sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==}
@@ -5163,12 +5212,13 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinyexec@0.3.0:
- resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
-
tinyexec@0.3.1:
resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
+ tinyglobby@0.2.10:
+ resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
+ engines: {node: '>=12.0.0'}
+
tinyglobby@0.2.6:
resolution: {integrity: sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g==}
engines: {node: '>=12.0.0'}
@@ -5327,6 +5377,9 @@ packages:
unimport@3.13.1:
resolution: {integrity: sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A==}
+ unimport@3.13.2:
+ resolution: {integrity: sha512-VKAepeIb6BWLtBl4tmyHY1/7rJgz3ynmZrWf8cU1a+v5Uv/k1gyyAEeGBnYcrwy8bxG5sflxEx4a9VQUqOVHUA==}
+
unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
@@ -5350,8 +5403,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin-auto-import@0.18.3:
- resolution: {integrity: sha512-q3FUtGQjYA2e+kb1WumyiQMjHM27MrTQ05QfVwtLRVhyYe+KF6TblBYaEX9L6Z0EibsqaXAiW+RFfkcQpfaXzg==}
+ unplugin-auto-import@0.18.4:
+ resolution: {integrity: sha512-I+QAZPQn5lfH3HYa6HTgpcz30XGY0H1g6QenEB+sgBjgfvgJ33UI907dlNkgOSm/CFHZyNmTKVHf+O2qTnfNKw==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': ^3.2.2
@@ -5384,6 +5437,10 @@ packages:
webpack-sources:
optional: true
+ unplugin@1.16.0:
+ resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
+ engines: {node: '>=14.0.0'}
+
unstorage@1.12.0:
resolution: {integrity: sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w==}
peerDependencies:
@@ -5484,8 +5541,8 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-node@2.1.3:
- resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==}
+ vite-node@2.1.5:
+ resolution: {integrity: sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -5533,8 +5590,8 @@ packages:
'@nuxt/kit':
optional: true
- vite-plugin-vue-devtools@7.5.4:
- resolution: {integrity: sha512-6yTcGrF+YdplDhNiNCkwj23BQDHA/jp06FR4Bo3rui1GW+8VdFcc26au2gtynPwRDNJXNueTxiVtVb6dq+lNZA==}
+ vite-plugin-vue-devtools@7.6.4:
+ resolution: {integrity: sha512-jxSsLyuETfmZ1OSrmnDp28BG6rmURrP7lkeyHW2gBFDyo+4dUcqVeQNMhbV7uKZn80mDdv06Mysw/5AdGxDvJQ==}
engines: {node: '>=v14.21.3'}
peerDependencies:
vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
@@ -5549,8 +5606,8 @@ packages:
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
- vite@5.4.10:
- resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
+ vite@5.4.11:
+ resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -5580,8 +5637,8 @@ packages:
terser:
optional: true
- vitepress@1.4.1:
- resolution: {integrity: sha512-C2rQ7PMlDVqgsaHOa0uJtgGGWaGv74QMaGL62lxKbtFkYtosJB5HAfZ8+pEbfzzvLemYaYwaiQdFLBlexK2sFw==}
+ vitepress@1.5.0:
+ resolution: {integrity: sha512-q4Q/G2zjvynvizdB3/bupdYkCJe2umSAMv9Ju4d92E6/NXJ59z70xB0q5p/4lpRyAwflDsbwy1mLV9Q5+nlB+g==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
@@ -5592,15 +5649,15 @@ packages:
postcss:
optional: true
- vitest@2.1.3:
- resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==}
+ vitest@2.1.5:
+ resolution: {integrity: sha512-P4ljsdpuzRTPI/kbND2sDZ4VmieerR2c9szEZpjc+98Z9ebvnXmM5+0tHEKqYZumXqlvnmfWsjeFOjXVriDG7A==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.3
- '@vitest/ui': 2.1.3
+ '@vitest/browser': 2.1.5
+ '@vitest/ui': 2.1.5
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -5680,8 +5737,8 @@ packages:
vue-template-compiler@2.7.16:
resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
- vue-tsc@2.1.8:
- resolution: {integrity: sha512-6+vjb7JLxKIzeD/1ktoUBZGAr+148FQoEFl8Lv5EpDJLO2PrUalhp7atMEuzEkLnoooM5bg3pJqjZI+oobxIaQ==}
+ vue-tsc@2.1.10:
+ resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
@@ -5694,8 +5751,8 @@ packages:
typescript:
optional: true
- vue@3.5.12:
- resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==}
+ vue@3.5.13:
+ resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -5739,8 +5796,8 @@ packages:
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.95.0:
- resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==}
+ webpack@5.96.1:
+ resolution: {integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -6005,7 +6062,7 @@ snapshots:
'@babel/code-frame@7.25.7':
dependencies:
'@babel/highlight': 7.25.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
'@babel/compat-data@7.25.7': {}
@@ -6017,7 +6074,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.7
'@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7)
'@babel/helpers': 7.25.7
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@babel/template': 7.25.7
'@babel/traverse': 7.25.7
'@babel/types': 7.26.0
@@ -6132,7 +6189,7 @@ snapshots:
'@babel/helper-validator-identifier': 7.25.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
'@babel/parser@7.25.7':
dependencies:
@@ -6192,14 +6249,14 @@ snapshots:
'@babel/template@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@babel/types': 7.26.0
'@babel/traverse@7.25.7':
dependencies:
'@babel/code-frame': 7.25.7
'@babel/generator': 7.25.7
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@babel/template': 7.25.7
'@babel/types': 7.26.0
debug: 4.3.7(supports-color@5.5.0)
@@ -6534,322 +6591,322 @@ snapshots:
'@fastify/busboy@2.1.1': {}
- '@firebase/analytics-compat@0.2.15(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)':
+ '@firebase/analytics-compat@0.2.16(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/analytics': 0.10.9(@firebase/app@0.10.15)
- '@firebase/analytics-types': 0.8.2
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/util': 1.10.1
+ '@firebase/analytics': 0.10.10(@firebase/app@0.10.16)
+ '@firebase/analytics-types': 0.8.3
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/analytics-types@0.8.2': {}
+ '@firebase/analytics-types@0.8.3': {}
- '@firebase/analytics@0.10.9(@firebase/app@0.10.15)':
+ '@firebase/analytics@0.10.10(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/installations': 0.6.10(@firebase/app@0.10.15)
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/installations': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/app-check-compat@0.3.16(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)':
+ '@firebase/app-check-compat@0.3.17(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-check': 0.8.9(@firebase/app@0.10.15)
- '@firebase/app-check-types': 0.5.2
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app-check': 0.8.10(@firebase/app@0.10.16)
+ '@firebase/app-check-types': 0.5.3
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-check-interop-types@0.3.2': {}
+ '@firebase/app-check-interop-types@0.3.3': {}
- '@firebase/app-check-types@0.5.2': {}
+ '@firebase/app-check-types@0.5.3': {}
- '@firebase/app-check@0.8.9(@firebase/app@0.10.15)':
+ '@firebase/app-check@0.8.10(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/app-compat@0.2.45':
+ '@firebase/app-compat@0.2.46':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/app-types@0.9.2': {}
+ '@firebase/app-types@0.9.3': {}
- '@firebase/app@0.10.15':
+ '@firebase/app@0.10.16':
dependencies:
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
idb: 7.1.1
tslib: 2.7.0
- '@firebase/auth-compat@0.5.15(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)':
+ '@firebase/auth-compat@0.5.16(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/auth': 1.8.0(@firebase/app@0.10.15)
- '@firebase/auth-types': 0.12.2(@firebase/app-types@0.9.2)(@firebase/util@1.10.1)
- '@firebase/component': 0.6.10
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/auth': 1.8.1(@firebase/app@0.10.16)
+ '@firebase/auth-types': 0.12.3(@firebase/app-types@0.9.3)(@firebase/util@1.10.2)
+ '@firebase/component': 0.6.11
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
- '@react-native-async-storage/async-storage'
- '@firebase/auth-interop-types@0.2.3': {}
+ '@firebase/auth-interop-types@0.2.4': {}
- '@firebase/auth-types@0.12.2(@firebase/app-types@0.9.2)(@firebase/util@1.10.1)':
+ '@firebase/auth-types@0.12.3(@firebase/app-types@0.9.3)(@firebase/util@1.10.2)':
dependencies:
- '@firebase/app-types': 0.9.2
- '@firebase/util': 1.10.1
+ '@firebase/app-types': 0.9.3
+ '@firebase/util': 1.10.2
- '@firebase/auth@1.8.0(@firebase/app@0.10.15)':
+ '@firebase/auth@1.8.1(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/component@0.6.10':
+ '@firebase/component@0.6.11':
dependencies:
- '@firebase/util': 1.10.1
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/data-connect@0.1.1(@firebase/app@0.10.15)':
+ '@firebase/data-connect@0.1.2(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/auth-interop-types': 0.2.3
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/auth-interop-types': 0.2.4
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/database-compat@2.0.0':
+ '@firebase/database-compat@2.0.1':
dependencies:
- '@firebase/component': 0.6.10
- '@firebase/database': 1.0.9
- '@firebase/database-types': 1.0.6
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/component': 0.6.11
+ '@firebase/database': 1.0.10
+ '@firebase/database-types': 1.0.7
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/database-types@1.0.6':
+ '@firebase/database-types@1.0.7':
dependencies:
- '@firebase/app-types': 0.9.2
- '@firebase/util': 1.10.1
+ '@firebase/app-types': 0.9.3
+ '@firebase/util': 1.10.2
- '@firebase/database@1.0.9':
+ '@firebase/database@1.0.10':
dependencies:
- '@firebase/app-check-interop-types': 0.3.2
- '@firebase/auth-interop-types': 0.2.3
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app-check-interop-types': 0.3.3
+ '@firebase/auth-interop-types': 0.2.4
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
faye-websocket: 0.11.4
tslib: 2.7.0
- '@firebase/firestore-compat@0.3.39(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)':
+ '@firebase/firestore-compat@0.3.40(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/firestore': 4.7.4(@firebase/app@0.10.15)
- '@firebase/firestore-types': 3.0.2(@firebase/app-types@0.9.2)(@firebase/util@1.10.1)
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/firestore': 4.7.5(@firebase/app@0.10.16)
+ '@firebase/firestore-types': 3.0.3(@firebase/app-types@0.9.3)(@firebase/util@1.10.2)
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
- '@firebase/firestore-types@3.0.2(@firebase/app-types@0.9.2)(@firebase/util@1.10.1)':
+ '@firebase/firestore-types@3.0.3(@firebase/app-types@0.9.3)(@firebase/util@1.10.2)':
dependencies:
- '@firebase/app-types': 0.9.2
- '@firebase/util': 1.10.1
+ '@firebase/app-types': 0.9.3
+ '@firebase/util': 1.10.2
- '@firebase/firestore@4.7.4(@firebase/app@0.10.15)':
+ '@firebase/firestore@4.7.5(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
- '@firebase/webchannel-wrapper': 1.0.2
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
+ '@firebase/webchannel-wrapper': 1.0.3
'@grpc/grpc-js': 1.9.15
'@grpc/proto-loader': 0.7.13
tslib: 2.7.0
- '@firebase/functions-compat@0.3.15(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)':
+ '@firebase/functions-compat@0.3.16(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/functions': 0.11.9(@firebase/app@0.10.15)
- '@firebase/functions-types': 0.6.2
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/functions': 0.11.10(@firebase/app@0.10.16)
+ '@firebase/functions-types': 0.6.3
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/functions-types@0.6.2': {}
+ '@firebase/functions-types@0.6.3': {}
- '@firebase/functions@0.11.9(@firebase/app@0.10.15)':
+ '@firebase/functions@0.11.10(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/app-check-interop-types': 0.3.2
- '@firebase/auth-interop-types': 0.2.3
- '@firebase/component': 0.6.10
- '@firebase/messaging-interop-types': 0.2.2
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/app-check-interop-types': 0.3.3
+ '@firebase/auth-interop-types': 0.2.4
+ '@firebase/component': 0.6.11
+ '@firebase/messaging-interop-types': 0.2.3
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/installations-compat@0.2.10(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)':
+ '@firebase/installations-compat@0.2.11(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/installations': 0.6.10(@firebase/app@0.10.15)
- '@firebase/installations-types': 0.5.2(@firebase/app-types@0.9.2)
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/installations': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/installations-types': 0.5.3(@firebase/app-types@0.9.3)
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
- '@firebase/installations-types@0.5.2(@firebase/app-types@0.9.2)':
+ '@firebase/installations-types@0.5.3(@firebase/app-types@0.9.3)':
dependencies:
- '@firebase/app-types': 0.9.2
+ '@firebase/app-types': 0.9.3
- '@firebase/installations@0.6.10(@firebase/app@0.10.15)':
+ '@firebase/installations@0.6.11(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/util': 1.10.2
idb: 7.1.1
tslib: 2.7.0
- '@firebase/logger@0.4.3':
+ '@firebase/logger@0.4.4':
dependencies:
tslib: 2.7.0
- '@firebase/messaging-compat@0.2.13(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)':
+ '@firebase/messaging-compat@0.2.14(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/messaging': 0.12.13(@firebase/app@0.10.15)
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/messaging': 0.12.14(@firebase/app@0.10.16)
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/messaging-interop-types@0.2.2': {}
+ '@firebase/messaging-interop-types@0.2.3': {}
- '@firebase/messaging@0.12.13(@firebase/app@0.10.15)':
+ '@firebase/messaging@0.12.14(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/installations': 0.6.10(@firebase/app@0.10.15)
- '@firebase/messaging-interop-types': 0.2.2
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/installations': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/messaging-interop-types': 0.2.3
+ '@firebase/util': 1.10.2
idb: 7.1.1
tslib: 2.7.0
- '@firebase/performance-compat@0.2.10(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)':
+ '@firebase/performance-compat@0.2.11(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/performance': 0.6.10(@firebase/app@0.10.15)
- '@firebase/performance-types': 0.2.2
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/performance': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/performance-types': 0.2.3
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/performance-types@0.2.2': {}
+ '@firebase/performance-types@0.2.3': {}
- '@firebase/performance@0.6.10(@firebase/app@0.10.15)':
+ '@firebase/performance@0.6.11(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/installations': 0.6.10(@firebase/app@0.10.15)
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/installations': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/remote-config-compat@0.2.10(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)':
+ '@firebase/remote-config-compat@0.2.11(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/remote-config': 0.4.10(@firebase/app@0.10.15)
- '@firebase/remote-config-types': 0.3.2
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/remote-config': 0.4.11(@firebase/app@0.10.16)
+ '@firebase/remote-config-types': 0.3.3
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/remote-config-types@0.3.2': {}
+ '@firebase/remote-config-types@0.3.3': {}
- '@firebase/remote-config@0.4.10(@firebase/app@0.10.15)':
+ '@firebase/remote-config@0.4.11(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/installations': 0.6.10(@firebase/app@0.10.15)
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/installations': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/storage-compat@0.3.13(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)':
+ '@firebase/storage-compat@0.3.14(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app-compat': 0.2.45
- '@firebase/component': 0.6.10
- '@firebase/storage': 0.13.3(@firebase/app@0.10.15)
- '@firebase/storage-types': 0.8.2(@firebase/app-types@0.9.2)(@firebase/util@1.10.1)
- '@firebase/util': 1.10.1
+ '@firebase/app-compat': 0.2.46
+ '@firebase/component': 0.6.11
+ '@firebase/storage': 0.13.4(@firebase/app@0.10.16)
+ '@firebase/storage-types': 0.8.3(@firebase/app-types@0.9.3)(@firebase/util@1.10.2)
+ '@firebase/util': 1.10.2
tslib: 2.7.0
transitivePeerDependencies:
- '@firebase/app'
- '@firebase/app-types'
- '@firebase/storage-types@0.8.2(@firebase/app-types@0.9.2)(@firebase/util@1.10.1)':
+ '@firebase/storage-types@0.8.3(@firebase/app-types@0.9.3)(@firebase/util@1.10.2)':
dependencies:
- '@firebase/app-types': 0.9.2
- '@firebase/util': 1.10.1
+ '@firebase/app-types': 0.9.3
+ '@firebase/util': 1.10.2
- '@firebase/storage@0.13.3(@firebase/app@0.10.15)':
+ '@firebase/storage@0.13.4(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/component': 0.6.10
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/component': 0.6.11
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/util@1.10.1':
+ '@firebase/util@1.10.2':
dependencies:
tslib: 2.7.0
- '@firebase/vertexai@1.0.0(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)':
+ '@firebase/vertexai@1.0.1(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)':
dependencies:
- '@firebase/app': 0.10.15
- '@firebase/app-check-interop-types': 0.3.2
- '@firebase/app-types': 0.9.2
- '@firebase/component': 0.6.10
- '@firebase/logger': 0.4.3
- '@firebase/util': 1.10.1
+ '@firebase/app': 0.10.16
+ '@firebase/app-check-interop-types': 0.3.3
+ '@firebase/app-types': 0.9.3
+ '@firebase/component': 0.6.11
+ '@firebase/logger': 0.4.4
+ '@firebase/util': 1.10.2
tslib: 2.7.0
- '@firebase/webchannel-wrapper@1.0.2': {}
+ '@firebase/webchannel-wrapper@1.0.3': {}
'@floating-ui/core@1.6.8':
dependencies:
@@ -6864,7 +6921,7 @@ snapshots:
'@grpc/grpc-js@1.9.15':
dependencies:
'@grpc/proto-loader': 0.7.13
- '@types/node': 22.8.7
+ '@types/node': 22.9.0
'@grpc/proto-loader@0.7.13':
dependencies:
@@ -6875,6 +6932,12 @@ snapshots:
'@hutson/parse-repository-url@5.0.0': {}
+ '@iconify-json/simple-icons@1.2.11':
+ dependencies:
+ '@iconify/types': 2.0.0
+
+ '@iconify/types@2.0.0': {}
+
'@ioredis/commands@1.2.0': {}
'@isaacs/cliui@8.0.2':
@@ -6972,17 +7035,16 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.5.2(magicast@0.3.5)(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(webpack-sources@3.2.3)':
+ '@nuxt/devtools-kit@1.5.2(magicast@0.3.5)(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
+ '@nuxt/schema': 3.13.2(rollup@4.27.2)
execa: 7.2.0
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- - webpack-sources
'@nuxt/devtools-wizard@1.5.2':
dependencies:
@@ -6997,13 +7059,13 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.5.2(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/devtools@1.5.2(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(webpack-sources@3.2.3)
+ '@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
'@nuxt/devtools-wizard': 1.5.2
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
+ '@vue/devtools-core': 7.4.4(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
'@vue/devtools-kit': 7.4.4
birpc: 0.2.19
consola: 3.2.3
@@ -7031,10 +7093,10 @@ snapshots:
simple-git: 3.27.0
sirv: 2.0.4
tinyglobby: 0.2.9
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
+ unimport: 3.13.1(rollup@4.27.2)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -7043,11 +7105,10 @@ snapshots:
- supports-color
- utf-8-validate
- vue
- - webpack-sources
- '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2)':
dependencies:
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.2(rollup@4.27.2)
c12: 1.11.2(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -7058,22 +7119,21 @@ snapshots:
jiti: 1.21.6
klona: 2.0.6
knitwork: 1.1.0
- mlly: 1.7.2
+ mlly: 1.7.3
pathe: 1.1.2
pkg-types: 1.2.1
scule: 1.3.0
semver: 7.6.3
ufo: 1.5.4
- unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unctx: 2.3.1
+ unimport: 3.13.1(rollup@4.27.2)
untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- - webpack-sources
- '@nuxt/schema@3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/schema@3.13.2(rollup@4.27.2)':
dependencies:
compatx: 0.1.8
consola: 3.2.3
@@ -7085,16 +7145,15 @@ snapshots:
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.27.2)
untyped: 1.5.1
transitivePeerDependencies:
- rollup
- supports-color
- - webpack-sources
- '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.27.2)':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
@@ -7116,14 +7175,13 @@ snapshots:
- magicast
- rollup
- supports-color
- - webpack-sources
- '@nuxt/vite-builder@3.13.2(@types/node@22.8.7)(magicast@0.3.5)(rollup@4.24.2)(terser@5.34.1)(typescript@5.6.3)(vue-tsc@2.1.8(typescript@5.6.3))(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@nuxt/vite-builder@3.13.2(@types/node@22.9.0)(magicast@0.3.5)(rollup@4.27.2)(terser@5.34.1)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.11(typescript@5.6.3))':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.2)
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.27.2)
+ '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
+ '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
autoprefixer: 10.4.20(postcss@8.4.47)
clear: 0.1.0
consola: 3.2.3
@@ -7137,21 +7195,21 @@ snapshots:
h3: 1.13.0
knitwork: 1.1.0
magic-string: 0.30.12
- mlly: 1.7.2
+ mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.2.1
postcss: 8.4.47
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.2)
+ rollup-plugin-visualizer: 5.12.0(rollup@4.27.2)
std-env: 3.7.0
strip-literal: 2.1.0
ufo: 1.5.4
unenv: 1.10.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
- vite-node: 2.1.2(@types/node@22.8.7)(terser@5.34.1)
- vite-plugin-checker: 0.8.0(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue-tsc@2.1.8(typescript@5.6.3))
+ unplugin: 1.16.0
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
+ vite-node: 2.1.2(@types/node@22.9.0)(terser@5.34.1)
+ vite-plugin-checker: 0.8.0(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue-tsc@2.1.10(typescript@5.6.3))
vue: 3.5.11(typescript@5.6.3)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
@@ -7175,7 +7233,6 @@ snapshots:
- vls
- vti
- vue-tsc
- - webpack-sources
'@one-ini/wasm@0.1.1': {}
@@ -7242,11 +7299,11 @@ snapshots:
'@pinia/colada@0.10.0': {}
- '@pinia/colada@0.11.0': {}
+ '@pinia/colada@0.12.1': {}
- '@pinia/nuxt@0.5.5(magicast@0.3.5)(rollup@4.24.2)(typescript@5.6.3)(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)':
+ '@pinia/nuxt@0.5.5(magicast@0.3.5)(rollup@4.27.2)(typescript@5.6.3)(vue@3.5.11(typescript@5.6.3))':
dependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
pinia: 2.2.4(typescript@5.6.3)(vue@3.5.11(typescript@5.6.3))
transitivePeerDependencies:
- '@vue/composition-api'
@@ -7255,7 +7312,6 @@ snapshots:
- supports-color
- typescript
- vue
- - webpack-sources
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -7285,211 +7341,186 @@ snapshots:
'@protobufjs/utf8@1.1.0': {}
- '@rollup/plugin-alias@5.1.1(rollup@4.24.2)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.27.2)':
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/plugin-commonjs@25.0.8(rollup@4.24.2)':
+ '@rollup/plugin-commonjs@25.0.8(rollup@4.27.2)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
magic-string: 0.30.12
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/plugin-inject@5.0.5(rollup@4.24.2)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.27.2)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
estree-walker: 2.0.2
magic-string: 0.30.12
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/plugin-json@6.1.0(rollup@4.24.2)':
+ '@rollup/plugin-json@6.1.0(rollup@4.27.2)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/plugin-node-resolve@15.3.0(rollup@4.24.2)':
+ '@rollup/plugin-node-resolve@15.3.0(rollup@4.27.2)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/plugin-replace@5.0.7(rollup@4.24.2)':
+ '@rollup/plugin-replace@5.0.7(rollup@4.27.2)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
magic-string: 0.30.12
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/plugin-terser@0.4.4(rollup@4.24.2)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.27.2)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.34.1
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.2(rollup@4.24.2)':
+ '@rollup/pluginutils@5.1.2(rollup@4.27.2)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/pluginutils@5.1.3(rollup@4.24.2)':
+ '@rollup/pluginutils@5.1.3(rollup@4.27.2)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- '@rollup/rollup-android-arm-eabi@4.24.2':
+ '@rollup/rollup-android-arm-eabi@4.27.2':
optional: true
- '@rollup/rollup-android-arm64@4.24.2':
+ '@rollup/rollup-android-arm64@4.27.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.24.2':
+ '@rollup/rollup-darwin-arm64@4.27.2':
optional: true
- '@rollup/rollup-darwin-x64@4.24.2':
+ '@rollup/rollup-darwin-x64@4.27.2':
optional: true
- '@rollup/rollup-freebsd-arm64@4.24.2':
+ '@rollup/rollup-freebsd-arm64@4.27.2':
optional: true
- '@rollup/rollup-freebsd-x64@4.24.2':
+ '@rollup/rollup-freebsd-x64@4.27.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.24.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.27.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.24.2':
+ '@rollup/rollup-linux-arm64-gnu@4.27.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.24.2':
+ '@rollup/rollup-linux-arm64-musl@4.27.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.24.2':
+ '@rollup/rollup-linux-riscv64-gnu@4.27.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.24.2':
+ '@rollup/rollup-linux-s390x-gnu@4.27.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.24.2':
+ '@rollup/rollup-linux-x64-gnu@4.27.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.24.2':
+ '@rollup/rollup-linux-x64-musl@4.27.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.24.2':
+ '@rollup/rollup-win32-arm64-msvc@4.27.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.24.2':
+ '@rollup/rollup-win32-ia32-msvc@4.27.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.24.2':
+ '@rollup/rollup-win32-x64-msvc@4.27.2':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
- '@shikijs/core@1.22.0':
+ '@shikijs/core@1.23.0':
dependencies:
- '@shikijs/engine-javascript': 1.22.0
- '@shikijs/engine-oniguruma': 1.22.0
- '@shikijs/types': 1.22.0
+ '@shikijs/engine-javascript': 1.23.0
+ '@shikijs/engine-oniguruma': 1.23.0
+ '@shikijs/types': 1.23.0
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- '@shikijs/core@1.22.1':
+ '@shikijs/engine-javascript@1.23.0':
dependencies:
- '@shikijs/engine-javascript': 1.22.1
- '@shikijs/engine-oniguruma': 1.22.1
- '@shikijs/types': 1.22.1
+ '@shikijs/types': 1.23.0
'@shikijs/vscode-textmate': 9.3.0
- '@types/hast': 3.0.4
- hast-util-to-html: 9.0.3
+ oniguruma-to-es: 0.1.2
- '@shikijs/engine-javascript@1.22.0':
+ '@shikijs/engine-oniguruma@1.23.0':
dependencies:
- '@shikijs/types': 1.22.0
+ '@shikijs/types': 1.23.0
'@shikijs/vscode-textmate': 9.3.0
- oniguruma-to-js: 0.4.3
- '@shikijs/engine-javascript@1.22.1':
+ '@shikijs/transformers@1.23.0':
dependencies:
- '@shikijs/types': 1.22.1
- '@shikijs/vscode-textmate': 9.3.0
- oniguruma-to-js: 0.4.3
-
- '@shikijs/engine-oniguruma@1.22.0':
- dependencies:
- '@shikijs/types': 1.22.0
- '@shikijs/vscode-textmate': 9.3.0
-
- '@shikijs/engine-oniguruma@1.22.1':
- dependencies:
- '@shikijs/types': 1.22.1
- '@shikijs/vscode-textmate': 9.3.0
-
- '@shikijs/transformers@1.22.0':
- dependencies:
- shiki: 1.22.0
+ shiki: 1.23.0
- '@shikijs/twoslash@1.22.1(typescript@5.6.3)':
+ '@shikijs/twoslash@1.23.0(typescript@5.6.3)':
dependencies:
- '@shikijs/core': 1.22.1
- '@shikijs/types': 1.22.1
+ '@shikijs/core': 1.23.0
+ '@shikijs/types': 1.23.0
twoslash: 0.2.12(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- typescript
- '@shikijs/types@1.22.0':
- dependencies:
- '@shikijs/vscode-textmate': 9.3.0
- '@types/hast': 3.0.4
-
- '@shikijs/types@1.22.1':
+ '@shikijs/types@1.23.0':
dependencies:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
- '@shikijs/vitepress-twoslash@1.22.1(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(typescript@5.6.3)':
+ '@shikijs/vitepress-twoslash@1.23.0(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(typescript@5.6.3)':
dependencies:
- '@shikijs/twoslash': 1.22.1(typescript@5.6.3)
- floating-vue: 5.2.2(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(vue@3.5.12(typescript@5.6.3))
- mdast-util-from-markdown: 2.0.1
+ '@shikijs/twoslash': 1.23.0(typescript@5.6.3)
+ floating-vue: 5.2.2(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(vue@3.5.13(typescript@5.6.3))
+ mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.0.0
mdast-util-to-hast: 13.2.0
- shiki: 1.22.1
+ shiki: 1.23.0
twoslash: 0.2.12(typescript@5.6.3)
twoslash-vue: 0.2.12(typescript@5.6.3)
- vue: 3.5.12(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.6.3)
transitivePeerDependencies:
- '@nuxt/kit'
- supports-color
@@ -7505,15 +7536,15 @@ snapshots:
dependencies:
remove-accents: 0.5.0
- '@tanstack/query-core@5.59.16': {}
+ '@tanstack/query-core@5.60.5': {}
- '@tanstack/vue-query@5.59.16(vue@3.5.12(typescript@5.6.3))':
+ '@tanstack/vue-query@5.60.5(vue@3.5.13(typescript@5.6.3))':
dependencies:
'@tanstack/match-sorter-utils': 8.19.4
- '@tanstack/query-core': 5.59.16
+ '@tanstack/query-core': 5.60.5
'@vue/devtools-api': 6.6.4
- vue: 3.5.12(typescript@5.6.3)
- vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
+ vue: 3.5.13(typescript@5.6.3)
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
'@trysound/sax@0.2.0': {}
@@ -7521,6 +7552,16 @@ snapshots:
dependencies:
'@types/ms': 0.7.34
+ '@types/eslint-scope@3.7.7':
+ dependencies:
+ '@types/eslint': 9.6.1
+ '@types/estree': 1.0.6
+
+ '@types/eslint@9.6.1':
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+
'@types/estree@1.0.6': {}
'@types/hast@3.0.4':
@@ -7529,7 +7570,7 @@ snapshots:
'@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 22.8.7
+ '@types/node': 22.9.0
'@types/json-schema@7.0.15': {}
@@ -7548,7 +7589,7 @@ snapshots:
'@types/ms@0.7.34': {}
- '@types/node@22.8.7':
+ '@types/node@22.9.0':
dependencies:
undici-types: 6.19.8
@@ -7617,27 +7658,27 @@ snapshots:
- encoding
- supports-color
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
dependencies:
'@babel/core': 7.25.7
'@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.7)
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
vue: 3.5.11(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
dependencies:
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
vue: 3.5.11(typescript@5.6.3)
- '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3))':
dependencies:
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
- vue: 3.5.12(typescript@5.6.3)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
+ vue: 3.5.13(typescript@5.6.3)
- '@vitest/coverage-v8@2.1.3(vitest@2.1.3)':
+ '@vitest/coverage-v8@2.1.5(vitest@2.1.5)':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -7648,61 +7689,61 @@ snapshots:
istanbul-reports: 3.1.7
magic-string: 0.30.12
magicast: 0.3.5
- std-env: 3.7.0
+ std-env: 3.8.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.1.3(@types/node@22.8.7)(@vitest/ui@2.1.3)(happy-dom@15.10.2)(terser@5.34.1)
+ vitest: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(happy-dom@15.11.6)(terser@5.34.1)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@2.1.3':
+ '@vitest/expect@2.1.5':
dependencies:
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
- chai: 5.1.1
+ '@vitest/spy': 2.1.5
+ '@vitest/utils': 2.1.5
+ chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))':
+ '@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))':
dependencies:
- '@vitest/spy': 2.1.3
+ '@vitest/spy': 2.1.5
estree-walker: 3.0.3
magic-string: 0.30.12
optionalDependencies:
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
- '@vitest/pretty-format@2.1.3':
+ '@vitest/pretty-format@2.1.5':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.1.3':
+ '@vitest/runner@2.1.5':
dependencies:
- '@vitest/utils': 2.1.3
+ '@vitest/utils': 2.1.5
pathe: 1.1.2
- '@vitest/snapshot@2.1.3':
+ '@vitest/snapshot@2.1.5':
dependencies:
- '@vitest/pretty-format': 2.1.3
+ '@vitest/pretty-format': 2.1.5
magic-string: 0.30.12
pathe: 1.1.2
- '@vitest/spy@2.1.3':
+ '@vitest/spy@2.1.5':
dependencies:
tinyspy: 3.0.2
- '@vitest/ui@2.1.3(vitest@2.1.3)':
+ '@vitest/ui@2.1.5(vitest@2.1.5)':
dependencies:
- '@vitest/utils': 2.1.3
+ '@vitest/utils': 2.1.5
fflate: 0.8.2
flatted: 3.3.1
pathe: 1.1.2
- sirv: 2.0.4
- tinyglobby: 0.2.9
+ sirv: 3.0.0
+ tinyglobby: 0.2.10
tinyrainbow: 1.2.0
- vitest: 2.1.3(@types/node@22.8.7)(@vitest/ui@2.1.3)(happy-dom@15.10.2)(terser@5.34.1)
+ vitest: 2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(happy-dom@15.11.6)(terser@5.34.1)
- '@vitest/utils@2.1.3':
+ '@vitest/utils@2.1.5':
dependencies:
- '@vitest/pretty-format': 2.1.3
+ '@vitest/pretty-format': 2.1.5
loupe: 3.1.2
tinyrainbow: 1.2.0
@@ -7710,10 +7751,6 @@ snapshots:
dependencies:
'@volar/source-map': 1.4.1
- '@volar/language-core@2.4.4':
- dependencies:
- '@volar/source-map': 2.4.4
-
'@volar/language-core@2.4.8':
dependencies:
'@volar/source-map': 2.4.8
@@ -7722,8 +7759,6 @@ snapshots:
dependencies:
muggle-string: 0.2.2
- '@volar/source-map@2.4.4': {}
-
'@volar/source-map@2.4.8': {}
'@volar/typescript@2.4.8':
@@ -7737,18 +7772,18 @@ snapshots:
'@volar/language-core': 1.4.1
'@volar/source-map': 1.4.1
'@vue/compiler-dom': 3.5.11
- '@vue/compiler-sfc': 3.5.12
+ '@vue/compiler-sfc': 3.5.13
'@vue/reactivity': 3.5.11
'@vue/shared': 3.5.11
minimatch: 9.0.5
muggle-string: 0.2.2
vue-template-compiler: 2.7.16
- '@vue-macros/common@1.15.0(rollup@4.24.2)(vue@3.5.11(typescript@5.6.3))':
+ '@vue-macros/common@1.15.0(rollup@4.27.2)(vue@3.5.11(typescript@5.6.3))':
dependencies:
'@babel/types': 7.26.0
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- '@vue/compiler-sfc': 3.5.12
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
+ '@vue/compiler-sfc': 3.5.13
ast-kit: 1.3.0
local-pkg: 0.5.0
magic-string-ast: 0.6.2
@@ -7757,16 +7792,16 @@ snapshots:
transitivePeerDependencies:
- rollup
- '@vue-macros/common@1.15.0(rollup@4.24.2)(vue@3.5.12(typescript@5.6.3))':
+ '@vue-macros/common@1.15.0(rollup@4.27.2)(vue@3.5.13(typescript@5.6.3))':
dependencies:
'@babel/types': 7.26.0
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- '@vue/compiler-sfc': 3.5.12
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
+ '@vue/compiler-sfc': 3.5.13
ast-kit: 1.3.0
local-pkg: 0.5.0
magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.5.12(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.6.3)
transitivePeerDependencies:
- rollup
@@ -7796,13 +7831,13 @@ snapshots:
'@babel/helper-module-imports': 7.25.7
'@babel/helper-plugin-utils': 7.25.7
'@babel/parser': 7.25.8
- '@vue/compiler-sfc': 3.5.12
+ '@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
'@vue/compiler-core@3.5.11':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@vue/shared': 3.5.11
entities: 4.5.0
estree-walker: 2.0.2
@@ -7810,12 +7845,20 @@ snapshots:
'@vue/compiler-core@3.5.12':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@vue/shared': 3.5.12
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
+ '@vue/compiler-core@3.5.13':
+ dependencies:
+ '@babel/parser': 7.25.8
+ '@vue/shared': 3.5.13
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
'@vue/compiler-dom@3.5.11':
dependencies:
'@vue/compiler-core': 3.5.11
@@ -7826,9 +7869,14 @@ snapshots:
'@vue/compiler-core': 3.5.12
'@vue/shared': 3.5.12
+ '@vue/compiler-dom@3.5.13':
+ dependencies:
+ '@vue/compiler-core': 3.5.13
+ '@vue/shared': 3.5.13
+
'@vue/compiler-sfc@3.5.11':
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@vue/compiler-core': 3.5.11
'@vue/compiler-dom': 3.5.11
'@vue/compiler-ssr': 3.5.11
@@ -7838,16 +7886,16 @@ snapshots:
postcss: 8.4.47
source-map-js: 1.2.1
- '@vue/compiler-sfc@3.5.12':
+ '@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.25.7
- '@vue/compiler-core': 3.5.12
- '@vue/compiler-dom': 3.5.12
- '@vue/compiler-ssr': 3.5.12
- '@vue/shared': 3.5.12
+ '@babel/parser': 7.25.8
+ '@vue/compiler-core': 3.5.13
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
estree-walker: 2.0.2
magic-string: 0.30.12
- postcss: 8.4.47
+ postcss: 8.4.49
source-map-js: 1.2.1
'@vue/compiler-ssr@3.5.11':
@@ -7855,10 +7903,10 @@ snapshots:
'@vue/compiler-dom': 3.5.11
'@vue/shared': 3.5.11
- '@vue/compiler-ssr@3.5.12':
+ '@vue/compiler-ssr@3.5.13':
dependencies:
- '@vue/compiler-dom': 3.5.12
- '@vue/shared': 3.5.12
+ '@vue/compiler-dom': 3.5.13
+ '@vue/shared': 3.5.13
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -7867,47 +7915,37 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-api@7.4.6':
+ '@vue/devtools-api@7.6.4':
dependencies:
- '@vue/devtools-kit': 7.4.6
+ '@vue/devtools-kit': 7.6.4
- '@vue/devtools-core@7.4.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
+ '@vue/devtools-core@7.4.4(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))':
dependencies:
- '@vue/devtools-kit': 7.5.2
- '@vue/devtools-shared': 7.5.2
+ '@vue/devtools-kit': 7.5.4
+ '@vue/devtools-shared': 7.5.4
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
+ vite-hot-client: 0.2.3(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
vue: 3.5.11(typescript@5.6.3)
transitivePeerDependencies:
- vite
- '@vue/devtools-core@7.5.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3))':
+ '@vue/devtools-core@7.6.4(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3))':
dependencies:
- '@vue/devtools-kit': 7.5.4
- '@vue/devtools-shared': 7.5.4
+ '@vue/devtools-kit': 7.6.4
+ '@vue/devtools-shared': 7.6.4
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
- vue: 3.5.12(typescript@5.6.3)
+ vite-hot-client: 0.2.3(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
+ vue: 3.5.13(typescript@5.6.3)
transitivePeerDependencies:
- vite
'@vue/devtools-kit@7.4.4':
dependencies:
- '@vue/devtools-shared': 7.5.2
- birpc: 0.2.19
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.1
-
- '@vue/devtools-kit@7.4.6':
- dependencies:
- '@vue/devtools-shared': 7.5.2
+ '@vue/devtools-shared': 7.5.4
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -7915,9 +7953,9 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-kit@7.5.2':
+ '@vue/devtools-kit@7.5.4':
dependencies:
- '@vue/devtools-shared': 7.5.2
+ '@vue/devtools-shared': 7.5.4
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -7925,9 +7963,9 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-kit@7.5.4':
+ '@vue/devtools-kit@7.6.4':
dependencies:
- '@vue/devtools-shared': 7.5.4
+ '@vue/devtools-shared': 7.6.4
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -7935,21 +7973,21 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.5.2':
+ '@vue/devtools-shared@7.5.4':
dependencies:
rfdc: 1.4.1
- '@vue/devtools-shared@7.5.4':
+ '@vue/devtools-shared@7.6.4':
dependencies:
rfdc: 1.4.1
- '@vue/language-core@2.1.6(typescript@5.6.3)':
+ '@vue/language-core@2.1.10(typescript@5.6.3)':
dependencies:
- '@volar/language-core': 2.4.4
+ '@volar/language-core': 2.4.8
'@vue/compiler-dom': 3.5.12
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.12
- computeds: 0.0.1
+ alien-signals: 0.2.0
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
@@ -7973,19 +8011,19 @@ snapshots:
dependencies:
'@vue/shared': 3.5.11
- '@vue/reactivity@3.5.12':
+ '@vue/reactivity@3.5.13':
dependencies:
- '@vue/shared': 3.5.12
+ '@vue/shared': 3.5.13
'@vue/runtime-core@3.5.11':
dependencies:
'@vue/reactivity': 3.5.11
'@vue/shared': 3.5.11
- '@vue/runtime-core@3.5.12':
+ '@vue/runtime-core@3.5.13':
dependencies:
- '@vue/reactivity': 3.5.12
- '@vue/shared': 3.5.12
+ '@vue/reactivity': 3.5.13
+ '@vue/shared': 3.5.13
'@vue/runtime-dom@3.5.11':
dependencies:
@@ -7994,11 +8032,11 @@ snapshots:
'@vue/shared': 3.5.11
csstype: 3.1.3
- '@vue/runtime-dom@3.5.12':
+ '@vue/runtime-dom@3.5.13':
dependencies:
- '@vue/reactivity': 3.5.12
- '@vue/runtime-core': 3.5.12
- '@vue/shared': 3.5.12
+ '@vue/reactivity': 3.5.13
+ '@vue/runtime-core': 3.5.13
+ '@vue/shared': 3.5.13
csstype: 3.1.3
'@vue/server-renderer@3.5.11(vue@3.5.11(typescript@5.6.3))':
@@ -8007,38 +8045,43 @@ snapshots:
'@vue/shared': 3.5.11
vue: 3.5.11(typescript@5.6.3)
- '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))':
+ '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.6.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.12
- '@vue/shared': 3.5.12
- vue: 3.5.12(typescript@5.6.3)
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
+ vue: 3.5.13(typescript@5.6.3)
'@vue/shared@3.5.11': {}
'@vue/shared@3.5.12': {}
+ '@vue/shared@3.5.13': {}
+
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.1
vue-component-type-helpers: 2.0.22
- '@vue/tsconfig@0.5.1': {}
+ '@vue/tsconfig@0.6.0(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3))':
+ optionalDependencies:
+ typescript: 5.6.3
+ vue: 3.5.13(typescript@5.6.3)
- '@vueuse/core@11.1.0(vue@3.5.12(typescript@5.6.3))':
+ '@vueuse/core@11.1.0(vue@3.5.13(typescript@5.6.3))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 11.1.0
- '@vueuse/shared': 11.1.0(vue@3.5.12(typescript@5.6.3))
- vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
+ '@vueuse/shared': 11.1.0(vue@3.5.13(typescript@5.6.3))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@11.1.0(focus-trap@7.6.0)(vue@3.5.12(typescript@5.6.3))':
+ '@vueuse/integrations@11.1.0(focus-trap@7.6.0)(vue@3.5.13(typescript@5.6.3))':
dependencies:
- '@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
- '@vueuse/shared': 11.1.0(vue@3.5.12(typescript@5.6.3))
- vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
+ '@vueuse/core': 11.1.0(vue@3.5.13(typescript@5.6.3))
+ '@vueuse/shared': 11.1.0(vue@3.5.13(typescript@5.6.3))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
optionalDependencies:
focus-trap: 7.6.0
transitivePeerDependencies:
@@ -8047,9 +8090,9 @@ snapshots:
'@vueuse/metadata@11.1.0': {}
- '@vueuse/shared@11.1.0(vue@3.5.12(typescript@5.6.3))':
+ '@vueuse/shared@11.1.0(vue@3.5.13(typescript@5.6.3))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -8153,6 +8196,8 @@ snapshots:
acorn@8.12.1: {}
+ acorn@8.14.0: {}
+
add-stream@1.0.0: {}
agent-base@6.0.2:
@@ -8264,7 +8309,7 @@ snapshots:
ast-kit@1.2.1:
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
pathe: 1.1.2
ast-kit@1.3.0:
@@ -8287,7 +8332,7 @@ snapshots:
caniuse-lite: 1.0.30001667
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.1.0
+ picocolors: 1.1.1
postcss: 8.4.47
postcss-value-parser: 4.2.0
@@ -8381,7 +8426,7 @@ snapshots:
dotenv: 16.4.5
giget: 1.2.3
jiti: 1.21.6
- mlly: 1.7.2
+ mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
@@ -8408,7 +8453,7 @@ snapshots:
ccount@2.0.1: {}
- chai@5.1.1:
+ chai@5.1.2:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
@@ -8555,8 +8600,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- computeds@0.0.1: {}
-
concat-map@0.0.1: {}
confbox@0.1.8: {}
@@ -8890,6 +8933,8 @@ snapshots:
electron-to-chromium@1.5.35: {}
+ emoji-regex-xs@1.0.0: {}
+
emoji-regex@10.4.0: {}
emoji-regex@8.0.0: {}
@@ -9107,7 +9152,7 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- execa@9.5.0:
+ execa@9.5.1:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.3
@@ -9122,6 +9167,8 @@ snapshots:
strip-final-newline: 4.0.0
yoctocolors: 2.1.1
+ expect-type@1.1.0: {}
+
express-urlrewrite@1.4.0:
dependencies:
debug: 4.3.7(supports-color@5.5.0)
@@ -9172,7 +9219,7 @@ snapshots:
externality@1.0.2:
dependencies:
enhanced-resolve: 5.17.1
- mlly: 1.7.2
+ mlly: 1.7.3
pathe: 1.1.2
ufo: 1.5.4
@@ -9204,6 +9251,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ fdir@6.4.2(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
fflate@0.8.2: {}
figures@6.1.0:
@@ -9230,48 +9281,48 @@ snapshots:
find-up-simple@1.0.0: {}
- firebase@11.0.1:
- dependencies:
- '@firebase/analytics': 0.10.9(@firebase/app@0.10.15)
- '@firebase/analytics-compat': 0.2.15(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)
- '@firebase/app': 0.10.15
- '@firebase/app-check': 0.8.9(@firebase/app@0.10.15)
- '@firebase/app-check-compat': 0.3.16(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)
- '@firebase/app-compat': 0.2.45
- '@firebase/app-types': 0.9.2
- '@firebase/auth': 1.8.0(@firebase/app@0.10.15)
- '@firebase/auth-compat': 0.5.15(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)
- '@firebase/data-connect': 0.1.1(@firebase/app@0.10.15)
- '@firebase/database': 1.0.9
- '@firebase/database-compat': 2.0.0
- '@firebase/firestore': 4.7.4(@firebase/app@0.10.15)
- '@firebase/firestore-compat': 0.3.39(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)
- '@firebase/functions': 0.11.9(@firebase/app@0.10.15)
- '@firebase/functions-compat': 0.3.15(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)
- '@firebase/installations': 0.6.10(@firebase/app@0.10.15)
- '@firebase/installations-compat': 0.2.10(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)
- '@firebase/messaging': 0.12.13(@firebase/app@0.10.15)
- '@firebase/messaging-compat': 0.2.13(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)
- '@firebase/performance': 0.6.10(@firebase/app@0.10.15)
- '@firebase/performance-compat': 0.2.10(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)
- '@firebase/remote-config': 0.4.10(@firebase/app@0.10.15)
- '@firebase/remote-config-compat': 0.2.10(@firebase/app-compat@0.2.45)(@firebase/app@0.10.15)
- '@firebase/storage': 0.13.3(@firebase/app@0.10.15)
- '@firebase/storage-compat': 0.3.13(@firebase/app-compat@0.2.45)(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)
- '@firebase/util': 1.10.1
- '@firebase/vertexai': 1.0.0(@firebase/app-types@0.9.2)(@firebase/app@0.10.15)
+ firebase@11.0.2:
+ dependencies:
+ '@firebase/analytics': 0.10.10(@firebase/app@0.10.16)
+ '@firebase/analytics-compat': 0.2.16(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)
+ '@firebase/app': 0.10.16
+ '@firebase/app-check': 0.8.10(@firebase/app@0.10.16)
+ '@firebase/app-check-compat': 0.3.17(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)
+ '@firebase/app-compat': 0.2.46
+ '@firebase/app-types': 0.9.3
+ '@firebase/auth': 1.8.1(@firebase/app@0.10.16)
+ '@firebase/auth-compat': 0.5.16(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)
+ '@firebase/data-connect': 0.1.2(@firebase/app@0.10.16)
+ '@firebase/database': 1.0.10
+ '@firebase/database-compat': 2.0.1
+ '@firebase/firestore': 4.7.5(@firebase/app@0.10.16)
+ '@firebase/firestore-compat': 0.3.40(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)
+ '@firebase/functions': 0.11.10(@firebase/app@0.10.16)
+ '@firebase/functions-compat': 0.3.16(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)
+ '@firebase/installations': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/installations-compat': 0.2.11(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)
+ '@firebase/messaging': 0.12.14(@firebase/app@0.10.16)
+ '@firebase/messaging-compat': 0.2.14(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)
+ '@firebase/performance': 0.6.11(@firebase/app@0.10.16)
+ '@firebase/performance-compat': 0.2.11(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)
+ '@firebase/remote-config': 0.4.11(@firebase/app@0.10.16)
+ '@firebase/remote-config-compat': 0.2.11(@firebase/app-compat@0.2.46)(@firebase/app@0.10.16)
+ '@firebase/storage': 0.13.4(@firebase/app@0.10.16)
+ '@firebase/storage-compat': 0.3.14(@firebase/app-compat@0.2.46)(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)
+ '@firebase/util': 1.10.2
+ '@firebase/vertexai': 1.0.1(@firebase/app-types@0.9.3)(@firebase/app@0.10.16)
transitivePeerDependencies:
- '@react-native-async-storage/async-storage'
flatted@3.3.1: {}
- floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(vue@3.5.12(typescript@5.6.3)):
+ floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(vue@3.5.13(typescript@5.6.3)):
dependencies:
'@floating-ui/dom': 1.1.1
- vue: 3.5.12(typescript@5.6.3)
- vue-resize: 2.0.0-alpha.1(vue@3.5.12(typescript@5.6.3))
+ vue: 3.5.13(typescript@5.6.3)
+ vue-resize: 2.0.0-alpha.1(vue@3.5.13(typescript@5.6.3))
optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
focus-trap@7.6.0:
dependencies:
@@ -9471,7 +9522,7 @@ snapshots:
optionalDependencies:
uglify-js: 3.18.0
- happy-dom@15.10.2:
+ happy-dom@15.11.6:
dependencies:
entities: 4.5.0
webidl-conversions: 7.0.0
@@ -9573,16 +9624,15 @@ snapshots:
image-meta@0.2.1: {}
- impound@0.1.0(rollup@4.24.2)(webpack-sources@3.2.3):
+ impound@0.1.0(rollup@4.27.2):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- mlly: 1.7.2
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
+ mlly: 1.7.3
pathe: 1.1.2
unenv: 1.10.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.16.0
transitivePeerDependencies:
- rollup
- - webpack-sources
index-to-position@0.1.2: {}
@@ -9741,7 +9791,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.8.7
+ '@types/node': 22.9.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -9830,7 +9880,7 @@ snapshots:
launch-editor@2.9.1:
dependencies:
- picocolors: 1.1.0
+ picocolors: 1.1.1
shell-quote: 1.8.1
lazystream@1.0.1:
@@ -9873,7 +9923,7 @@ snapshots:
h3: 1.13.0
http-shutdown: 1.2.2
jiti: 2.3.3
- mlly: 1.7.2
+ mlly: 1.7.3
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.7.0
@@ -9896,7 +9946,7 @@ snapshots:
local-pkg@0.5.0:
dependencies:
- mlly: 1.7.2
+ mlly: 1.7.3
pkg-types: 1.2.1
lodash-id@0.14.1: {}
@@ -9964,7 +10014,7 @@ snapshots:
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.7
+ '@babel/parser': 7.25.8
'@babel/types': 7.26.0
source-map-js: 1.2.1
@@ -9998,7 +10048,7 @@ snapshots:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- mdast-util-from-markdown@2.0.1:
+ mdast-util-from-markdown@2.0.2:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
@@ -10027,7 +10077,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
@@ -10036,7 +10086,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -10046,7 +10096,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
markdown-table: 3.0.3
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -10055,14 +10105,14 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
mdast-util-gfm@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
@@ -10333,6 +10383,13 @@ snapshots:
pkg-types: 1.2.1
ufo: 1.5.4
+ mlly@1.7.3:
+ dependencies:
+ acorn: 8.14.0
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ ufo: 1.5.4
+
morgan@1.10.0:
dependencies:
basic-auth: 2.0.1
@@ -10371,18 +10428,18 @@ snapshots:
neo-async@2.6.2: {}
- nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5)(webpack-sources@3.2.3):
+ nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.24.2)
- '@rollup/plugin-commonjs': 25.0.8(rollup@4.24.2)
- '@rollup/plugin-inject': 5.0.5(rollup@4.24.2)
- '@rollup/plugin-json': 6.1.0(rollup@4.24.2)
- '@rollup/plugin-node-resolve': 15.3.0(rollup@4.24.2)
- '@rollup/plugin-replace': 5.0.7(rollup@4.24.2)
- '@rollup/plugin-terser': 0.4.4(rollup@4.24.2)
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.27.2)
+ '@rollup/plugin-commonjs': 25.0.8(rollup@4.27.2)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.27.2)
+ '@rollup/plugin-json': 6.1.0(rollup@4.27.2)
+ '@rollup/plugin-node-resolve': 15.3.0(rollup@4.27.2)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.27.2)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.27.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
'@types/http-proxy': 1.17.15
'@vercel/nft': 0.26.5(encoding@0.1.13)
archiver: 7.0.1
@@ -10414,7 +10471,7 @@ snapshots:
listhen: 1.9.0
magic-string: 0.30.12
mime: 4.0.4
- mlly: 1.7.2
+ mlly: 1.7.3
mri: 1.2.0
node-fetch-native: 1.6.4
ofetch: 1.4.1
@@ -10425,8 +10482,8 @@ snapshots:
pkg-types: 1.2.1
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.24.2
- rollup-plugin-visualizer: 5.12.0(rollup@4.24.2)
+ rollup: 4.27.2
+ rollup-plugin-visualizer: 5.12.0(rollup@4.27.2)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
@@ -10434,11 +10491,11 @@ snapshots:
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unctx: 2.3.1(webpack-sources@3.2.3)
+ unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.27.2)
unstorage: 1.12.0(ioredis@5.4.1)
- unwasm: 0.3.9(webpack-sources@3.2.3)
+ unwasm: 0.3.9
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10459,7 +10516,6 @@ snapshots:
- magicast
- supports-color
- uWebSockets.js
- - webpack-sources
node-addon-api@7.1.1: {}
@@ -10540,14 +10596,14 @@ snapshots:
nuxi@3.14.0: {}
- nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.8.7)(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.24.2)(terser@5.34.1)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue-tsc@2.1.8(typescript@5.6.3))(webpack-sources@3.2.3):
+ nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@22.9.0)(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.5)(rollup@4.27.2)(terser@5.34.1)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue-tsc@2.1.10(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.5.2(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.13.2(@types/node@22.8.7)(magicast@0.3.5)(rollup@4.24.2)(terser@5.34.1)(typescript@5.6.3)(vue-tsc@2.1.8(typescript@5.6.3))(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)
+ '@nuxt/devtools': 1.5.2(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.11(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
+ '@nuxt/schema': 3.13.2(rollup@4.27.2)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.27.2)
+ '@nuxt/vite-builder': 3.13.2(@types/node@22.9.0)(magicast@0.3.5)(rollup@4.27.2)(terser@5.34.1)(typescript@5.6.3)(vue-tsc@2.1.10(typescript@5.6.3))(vue@3.5.11(typescript@5.6.3))
'@unhead/dom': 1.11.7
'@unhead/shared': 1.11.7
'@unhead/ssr': 1.11.7
@@ -10570,14 +10626,14 @@ snapshots:
h3: 1.13.0
hookable: 5.5.3
ignore: 5.3.2
- impound: 0.1.0(rollup@4.24.2)(webpack-sources@3.2.3)
+ impound: 0.1.0(rollup@4.27.2)
jiti: 1.21.6
klona: 2.0.6
knitwork: 1.1.0
magic-string: 0.30.11
mlly: 1.7.2
nanotar: 0.1.1
- nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)(webpack-sources@3.2.3)
+ nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
nuxi: 3.14.0
nypm: 0.3.12
ofetch: 1.4.1
@@ -10594,12 +10650,12 @@ snapshots:
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
- unctx: 2.3.1(webpack-sources@3.2.3)
+ unctx: 2.3.1
unenv: 1.10.0
unhead: 1.11.7
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.27.2)
unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-vue-router: 0.10.8(rollup@4.24.2)(vue-router@4.4.5(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)
+ unplugin-vue-router: 0.10.8(rollup@4.27.2)(vue-router@4.4.5(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
unstorage: 1.12.0(ioredis@5.4.1)
untyped: 1.5.1
vue: 3.5.11(typescript@5.6.3)
@@ -10608,7 +10664,7 @@ snapshots:
vue-router: 4.4.5(vue@3.5.11(typescript@5.6.3))
optionalDependencies:
'@parcel/watcher': 2.4.1
- '@types/node': 22.8.7
+ '@types/node': 22.9.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10696,9 +10752,11 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- oniguruma-to-js@0.4.3:
+ oniguruma-to-es@0.1.2:
dependencies:
- regex: 4.3.3
+ emoji-regex-xs: 1.0.0
+ regex: 4.4.0
+ regex-recursion: 4.2.1
open@10.1.0:
dependencies:
@@ -10809,11 +10867,11 @@ snapshots:
optionalDependencies:
typescript: 5.6.3
- pinia@2.2.4(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3)):
+ pinia@2.2.6(typescript@5.6.3)(vue@3.5.13(typescript@5.6.3)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.12(typescript@5.6.3)
- vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
+ vue: 3.5.13(typescript@5.6.3)
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
optionalDependencies:
typescript: 5.6.3
@@ -10822,7 +10880,7 @@ snapshots:
pkg-types@1.2.1:
dependencies:
confbox: 0.1.8
- mlly: 1.7.2
+ mlly: 1.7.3
pathe: 1.1.2
please-upgrade-node@3.2.0:
@@ -10868,12 +10926,12 @@ snapshots:
dependencies:
postcss: 8.4.47
- postcss-load-config@6.0.1(jiti@2.3.3)(postcss@8.4.47)(yaml@2.6.0):
+ postcss-load-config@6.0.1(jiti@2.3.3)(postcss@8.4.49)(yaml@2.6.0):
dependencies:
lilconfig: 3.1.2
optionalDependencies:
jiti: 2.3.3
- postcss: 8.4.47
+ postcss: 8.4.49
yaml: 2.6.0
postcss-merge-longhand@7.0.4(postcss@8.4.47):
@@ -10998,7 +11056,13 @@ snapshots:
postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ postcss@8.4.49:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.1.1
source-map-js: 1.2.1
preact@10.24.2: {}
@@ -11036,7 +11100,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 22.8.7
+ '@types/node': 22.9.0
long: 5.2.3
protocols@2.0.1: {}
@@ -11136,7 +11200,13 @@ snapshots:
dependencies:
redis-errors: 1.2.0
- regex@4.3.3: {}
+ regex-recursion@4.2.1:
+ dependencies:
+ regex-utilities: 2.3.0
+
+ regex-utilities@2.3.0: {}
+
+ regex@4.4.0: {}
remove-accents@0.5.0: {}
@@ -11168,37 +11238,37 @@ snapshots:
glob: 11.0.0
package-json-from-dist: 1.0.0
- rollup-plugin-visualizer@5.12.0(rollup@4.24.2):
+ rollup-plugin-visualizer@5.12.0(rollup@4.27.2):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.27.2
- rollup@4.24.2:
+ rollup@4.27.2:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.24.2
- '@rollup/rollup-android-arm64': 4.24.2
- '@rollup/rollup-darwin-arm64': 4.24.2
- '@rollup/rollup-darwin-x64': 4.24.2
- '@rollup/rollup-freebsd-arm64': 4.24.2
- '@rollup/rollup-freebsd-x64': 4.24.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.24.2
- '@rollup/rollup-linux-arm-musleabihf': 4.24.2
- '@rollup/rollup-linux-arm64-gnu': 4.24.2
- '@rollup/rollup-linux-arm64-musl': 4.24.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.24.2
- '@rollup/rollup-linux-riscv64-gnu': 4.24.2
- '@rollup/rollup-linux-s390x-gnu': 4.24.2
- '@rollup/rollup-linux-x64-gnu': 4.24.2
- '@rollup/rollup-linux-x64-musl': 4.24.2
- '@rollup/rollup-win32-arm64-msvc': 4.24.2
- '@rollup/rollup-win32-ia32-msvc': 4.24.2
- '@rollup/rollup-win32-x64-msvc': 4.24.2
+ '@rollup/rollup-android-arm-eabi': 4.27.2
+ '@rollup/rollup-android-arm64': 4.27.2
+ '@rollup/rollup-darwin-arm64': 4.27.2
+ '@rollup/rollup-darwin-x64': 4.27.2
+ '@rollup/rollup-freebsd-arm64': 4.27.2
+ '@rollup/rollup-freebsd-x64': 4.27.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.27.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.27.2
+ '@rollup/rollup-linux-arm64-gnu': 4.27.2
+ '@rollup/rollup-linux-arm64-musl': 4.27.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.27.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.27.2
+ '@rollup/rollup-linux-s390x-gnu': 4.27.2
+ '@rollup/rollup-linux-x64-gnu': 4.27.2
+ '@rollup/rollup-linux-x64-musl': 4.27.2
+ '@rollup/rollup-win32-arm64-msvc': 4.27.2
+ '@rollup/rollup-win32-ia32-msvc': 4.27.2
+ '@rollup/rollup-win32-x64-msvc': 4.27.2
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -11316,21 +11386,12 @@ snapshots:
shell-quote@1.8.1: {}
- shiki@1.22.0:
+ shiki@1.23.0:
dependencies:
- '@shikijs/core': 1.22.0
- '@shikijs/engine-javascript': 1.22.0
- '@shikijs/engine-oniguruma': 1.22.0
- '@shikijs/types': 1.22.0
- '@shikijs/vscode-textmate': 9.3.0
- '@types/hast': 3.0.4
-
- shiki@1.22.1:
- dependencies:
- '@shikijs/core': 1.22.1
- '@shikijs/engine-javascript': 1.22.1
- '@shikijs/engine-oniguruma': 1.22.1
- '@shikijs/types': 1.22.1
+ '@shikijs/core': 1.23.0
+ '@shikijs/engine-javascript': 1.23.0
+ '@shikijs/engine-oniguruma': 1.23.0
+ '@shikijs/types': 1.23.0
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -11429,6 +11490,8 @@ snapshots:
std-env@3.7.0: {}
+ std-env@3.8.0: {}
+
steno@0.4.4:
dependencies:
graceful-fs: 4.2.11
@@ -11542,7 +11605,7 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.1.0
+ picocolors: 1.1.1
system-architecture@0.1.0: {}
@@ -11571,21 +11634,21 @@ snapshots:
dependencies:
temp-dir: 3.0.0
- terser-webpack-plugin@5.3.10(esbuild@0.24.0)(webpack@5.95.0(esbuild@0.24.0)):
+ terser-webpack-plugin@5.3.10(esbuild@0.24.0)(webpack@5.96.1(esbuild@0.24.0)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.34.1
- webpack: 5.95.0(esbuild@0.24.0)
+ webpack: 5.96.1(esbuild@0.24.0)
optionalDependencies:
esbuild: 0.24.0
terser@5.34.1:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -11611,10 +11674,13 @@ snapshots:
tinybench@2.9.0: {}
- tinyexec@0.3.0: {}
-
tinyexec@0.3.1: {}
+ tinyglobby@0.2.10:
+ dependencies:
+ fdir: 6.4.2(picomatch@4.0.2)
+ picomatch: 4.0.2
+
tinyglobby@0.2.6:
dependencies:
fdir: 6.4.0(picomatch@4.0.2)
@@ -11657,7 +11723,7 @@ snapshots:
tslib@2.7.0: {}
- tsup@8.3.5(jiti@2.3.3)(postcss@8.4.47)(typescript@5.6.3)(yaml@2.6.0):
+ tsup@8.3.5(jiti@2.3.3)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.0):
dependencies:
bundle-require: 5.0.0(esbuild@0.24.0)
cac: 6.7.14
@@ -11667,16 +11733,16 @@ snapshots:
esbuild: 0.24.0
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.3.3)(postcss@8.4.47)(yaml@2.6.0)
+ postcss-load-config: 6.0.1(jiti@2.3.3)(postcss@8.4.49)(yaml@2.6.0)
resolve-from: 5.0.0
- rollup: 4.24.2
+ rollup: 4.27.2
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.1
tinyglobby: 0.2.9
tree-kill: 1.2.2
optionalDependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
typescript: 5.6.3
transitivePeerDependencies:
- jiti
@@ -11688,7 +11754,7 @@ snapshots:
twoslash-vue@0.2.12(typescript@5.6.3):
dependencies:
- '@vue/language-core': 2.1.6(typescript@5.6.3)
+ '@vue/language-core': 2.1.8(typescript@5.6.3)
twoslash: 0.2.12(typescript@5.6.3)
twoslash-protocol: 0.2.12
typescript: 5.6.3
@@ -11727,14 +11793,12 @@ snapshots:
uncrypto@0.1.3: {}
- unctx@2.3.1(webpack-sources@3.2.3):
+ unctx@2.3.1:
dependencies:
acorn: 8.12.1
estree-walker: 3.0.3
magic-string: 0.30.12
- unplugin: 1.14.1(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - webpack-sources
+ unplugin: 1.16.0
undefsafe@2.0.5: {}
@@ -11763,24 +11827,41 @@ snapshots:
unicorn-magic@0.3.0: {}
- unimport@3.13.1(rollup@4.24.2)(webpack-sources@3.2.3):
+ unimport@3.13.1(rollup@4.27.2):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
acorn: 8.12.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
magic-string: 0.30.12
- mlly: 1.7.2
+ mlly: 1.7.3
pathe: 1.1.2
pkg-types: 1.2.1
scule: 1.3.0
strip-literal: 2.1.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.16.0
+ transitivePeerDependencies:
+ - rollup
+
+ unimport@3.13.2(rollup@4.27.2):
+ dependencies:
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
+ acorn: 8.14.0
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ fast-glob: 3.3.2
+ local-pkg: 0.5.0
+ magic-string: 0.30.12
+ mlly: 1.7.3
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ scule: 1.3.0
+ strip-literal: 2.1.0
+ unplugin: 1.16.0
transitivePeerDependencies:
- rollup
- - webpack-sources
unist-util-is@6.0.0:
dependencies:
@@ -11809,59 +11890,56 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.2)(webpack-sources@3.2.3):
+ unplugin-auto-import@0.18.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(@vueuse/core@11.1.0(vue@3.5.13(typescript@5.6.3)))(rollup@4.27.2):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
fast-glob: 3.3.2
local-pkg: 0.5.0
magic-string: 0.30.12
minimatch: 9.0.5
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unimport: 3.13.2(rollup@4.27.2)
+ unplugin: 1.16.0
optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
- '@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
+ '@vueuse/core': 11.1.0(vue@3.5.13(typescript@5.6.3))
transitivePeerDependencies:
- rollup
- - webpack-sources
- unplugin-vue-markdown@0.26.2(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(webpack-sources@3.2.3):
+ unplugin-vue-markdown@0.26.2(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1)):
dependencies:
'@mdit-vue/plugin-component': 2.1.3
'@mdit-vue/plugin-frontmatter': 2.1.3
'@mdit-vue/types': 2.1.0
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ unplugin: 1.16.0
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
transitivePeerDependencies:
- rollup
- - webpack-sources
- unplugin-vue-router@0.10.8(rollup@4.24.2)(vue-router@4.4.5(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3):
+ unplugin-vue-router@0.10.8(rollup@4.27.2)(vue-router@4.4.5(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3)):
dependencies:
'@babel/types': 7.26.0
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
- '@vue-macros/common': 1.15.0(rollup@4.24.2)(vue@3.5.11(typescript@5.6.3))
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.2)
+ '@vue-macros/common': 1.15.0(rollup@4.27.2)(vue@3.5.11(typescript@5.6.3))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.0
magic-string: 0.30.12
- mlly: 1.7.2
+ mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.16.0
yaml: 2.6.0
optionalDependencies:
vue-router: 4.4.5(vue@3.5.11(typescript@5.6.3))
transitivePeerDependencies:
- rollup
- vue
- - webpack-sources
unplugin@1.14.1(webpack-sources@3.2.3):
dependencies:
@@ -11870,6 +11948,11 @@ snapshots:
optionalDependencies:
webpack-sources: 3.2.3
+ unplugin@1.16.0:
+ dependencies:
+ acorn: 8.14.0
+ webpack-virtual-modules: 0.6.2
+
unstorage@1.12.0(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
@@ -11903,22 +11986,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- unwasm@0.3.9(webpack-sources@3.2.3):
+ unwasm@0.3.9:
dependencies:
knitwork: 1.1.0
magic-string: 0.30.12
- mlly: 1.7.2
+ mlly: 1.7.3
pathe: 1.1.2
pkg-types: 1.2.1
- unplugin: 1.14.1(webpack-sources@3.2.3)
- transitivePeerDependencies:
- - webpack-sources
+ unplugin: 1.16.0
update-browserslist-db@1.1.1(browserslist@4.24.0):
dependencies:
browserslist: 4.24.0
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
uqr@0.1.2: {}
@@ -11949,16 +12030,16 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-hot-client@0.2.3(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1)):
+ vite-hot-client@0.2.3(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1)):
dependencies:
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
- vite-node@2.1.2(@types/node@22.8.7)(terser@5.34.1):
+ vite-node@2.1.2(@types/node@22.9.0)(terser@5.34.1):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@5.5.0)
pathe: 1.1.2
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -11970,12 +12051,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.3(@types/node@22.8.7)(terser@5.34.1):
+ vite-node@2.1.5(@types/node@22.9.0)(terser@5.34.1):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@5.5.0)
+ es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -11987,7 +12069,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.8.0(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue-tsc@2.1.8(typescript@5.6.3)):
+ vite-plugin-checker@0.8.0(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue-tsc@2.1.10(typescript@5.6.3)):
dependencies:
'@babel/code-frame': 7.25.7
ansi-escapes: 4.3.2
@@ -11999,19 +12081,19 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
typescript: 5.6.3
- vue-tsc: 2.1.8(typescript@5.6.3)
+ vue-tsc: 2.1.10(typescript@5.6.3)
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.2(rollup@4.27.2)
debug: 4.3.7(supports-color@5.5.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
@@ -12019,30 +12101,30 @@ snapshots:
perfect-debounce: 1.0.0
picocolors: 1.1.0
sirv: 2.0.4
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.27.2)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-vue-devtools@7.5.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3)):
+ vite-plugin-vue-devtools@7.6.4(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3)):
dependencies:
- '@vue/devtools-core': 7.5.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3))
- '@vue/devtools-kit': 7.5.4
- '@vue/devtools-shared': 7.5.4
+ '@vue/devtools-core': 7.6.4(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3))
+ '@vue/devtools-kit': 7.6.4
+ '@vue/devtools-shared': 7.6.4
execa: 8.0.1
sirv: 3.0.0
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
- vite-plugin-vue-inspector: 5.2.0(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.27.2))(rollup@4.27.2)(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
+ vite-plugin-vue-inspector: 5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
transitivePeerDependencies:
- '@nuxt/kit'
- rollup
- supports-color
- vue
- vite-plugin-vue-inspector@5.1.3(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1)):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1)):
dependencies:
'@babel/core': 7.25.7
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7)
@@ -12050,14 +12132,14 @@ snapshots:
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7)
'@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.7)
- '@vue/compiler-dom': 3.5.11
+ '@vue/compiler-dom': 3.5.12
kolorist: 1.8.0
magic-string: 0.30.12
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-inspector@5.2.0(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1)):
+ vite-plugin-vue-inspector@5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1)):
dependencies:
'@babel/core': 7.25.7
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.7)
@@ -12068,41 +12150,42 @@ snapshots:
'@vue/compiler-dom': 3.5.12
kolorist: 1.8.0
magic-string: 0.30.12
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
transitivePeerDependencies:
- supports-color
- vite@5.4.10(@types/node@22.8.7)(terser@5.34.1):
+ vite@5.4.11(@types/node@22.9.0)(terser@5.34.1):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
- rollup: 4.24.2
+ rollup: 4.27.2
optionalDependencies:
- '@types/node': 22.8.7
+ '@types/node': 22.9.0
fsevents: 2.3.3
terser: 5.34.1
- vitepress@1.4.1(@algolia/client-search@5.8.1)(@types/node@22.8.7)(postcss@8.4.47)(search-insights@2.17.2)(terser@5.34.1)(typescript@5.6.3):
+ vitepress@1.5.0(@algolia/client-search@5.8.1)(@types/node@22.9.0)(postcss@8.4.49)(search-insights@2.17.2)(terser@5.34.1)(typescript@5.6.3):
dependencies:
'@docsearch/css': 3.6.2
'@docsearch/js': 3.6.2(@algolia/client-search@5.8.1)(search-insights@2.17.2)
- '@shikijs/core': 1.22.0
- '@shikijs/transformers': 1.22.0
- '@shikijs/types': 1.22.0
+ '@iconify-json/simple-icons': 1.2.11
+ '@shikijs/core': 1.23.0
+ '@shikijs/transformers': 1.23.0
+ '@shikijs/types': 1.23.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))(vue@3.5.12(typescript@5.6.3))
- '@vue/devtools-api': 7.4.6
+ '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))(vue@3.5.13(typescript@5.6.3))
+ '@vue/devtools-api': 7.6.4
'@vue/shared': 3.5.12
- '@vueuse/core': 11.1.0(vue@3.5.12(typescript@5.6.3))
- '@vueuse/integrations': 11.1.0(focus-trap@7.6.0)(vue@3.5.12(typescript@5.6.3))
+ '@vueuse/core': 11.1.0(vue@3.5.13(typescript@5.6.3))
+ '@vueuse/integrations': 11.1.0(focus-trap@7.6.0)(vue@3.5.13(typescript@5.6.3))
focus-trap: 7.6.0
mark.js: 8.11.1
minisearch: 7.1.0
- shiki: 1.22.0
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
- vue: 3.5.12(typescript@5.6.3)
+ shiki: 1.23.0
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
+ vue: 3.5.13(typescript@5.6.3)
optionalDependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -12131,31 +12214,32 @@ snapshots:
- typescript
- universal-cookie
- vitest@2.1.3(@types/node@22.8.7)(@vitest/ui@2.1.3)(happy-dom@15.10.2)(terser@5.34.1):
+ vitest@2.1.5(@types/node@22.9.0)(@vitest/ui@2.1.5)(happy-dom@15.11.6)(terser@5.34.1):
dependencies:
- '@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.7)(terser@5.34.1))
- '@vitest/pretty-format': 2.1.3
- '@vitest/runner': 2.1.3
- '@vitest/snapshot': 2.1.3
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
- chai: 5.1.1
+ '@vitest/expect': 2.1.5
+ '@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.0)(terser@5.34.1))
+ '@vitest/pretty-format': 2.1.5
+ '@vitest/runner': 2.1.5
+ '@vitest/snapshot': 2.1.5
+ '@vitest/spy': 2.1.5
+ '@vitest/utils': 2.1.5
+ chai: 5.1.2
debug: 4.3.7(supports-color@5.5.0)
+ expect-type: 1.1.0
magic-string: 0.30.12
pathe: 1.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
tinybench: 2.9.0
- tinyexec: 0.3.0
+ tinyexec: 0.3.1
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.10(@types/node@22.8.7)(terser@5.34.1)
- vite-node: 2.1.3(@types/node@22.8.7)(terser@5.34.1)
+ vite: 5.4.11(@types/node@22.9.0)(terser@5.34.1)
+ vite-node: 2.1.5(@types/node@22.9.0)(terser@5.34.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.8.7
- '@vitest/ui': 2.1.3(vitest@2.1.3)
- happy-dom: 15.10.2
+ '@types/node': 22.9.0
+ '@vitest/ui': 2.1.5(vitest@2.1.5)
+ happy-dom: 15.11.6
transitivePeerDependencies:
- less
- lightningcss
@@ -12200,40 +12284,40 @@ snapshots:
dependencies:
vue: 3.5.11(typescript@5.6.3)
- vue-demi@0.14.10(vue@3.5.12(typescript@5.6.3)):
+ vue-demi@0.14.10(vue@3.5.13(typescript@5.6.3)):
dependencies:
- vue: 3.5.12(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.6.3)
vue-devtools-stub@0.1.0: {}
- vue-resize@2.0.0-alpha.1(vue@3.5.12(typescript@5.6.3)):
+ vue-resize@2.0.0-alpha.1(vue@3.5.13(typescript@5.6.3)):
dependencies:
- vue: 3.5.12(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.6.3)
- vue-router-mock@1.1.0(vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)):
+ vue-router-mock@1.1.0(vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)))(vue@3.5.13(typescript@5.6.3)):
dependencies:
- vue: 3.5.12(typescript@5.6.3)
- vue-router: 4.4.5(vue@3.5.12(typescript@5.6.3))
+ vue: 3.5.13(typescript@5.6.3)
+ vue-router: 4.4.5(vue@3.5.13(typescript@5.6.3))
vue-router@4.4.5(vue@3.5.11(typescript@5.6.3)):
dependencies:
'@vue/devtools-api': 6.6.4
vue: 3.5.11(typescript@5.6.3)
- vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)):
+ vue-router@4.4.5(vue@3.5.13(typescript@5.6.3)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.12(typescript@5.6.3)
+ vue: 3.5.13(typescript@5.6.3)
vue-template-compiler@2.7.16:
dependencies:
de-indent: 1.0.2
he: 1.2.0
- vue-tsc@2.1.8(typescript@5.6.3):
+ vue-tsc@2.1.10(typescript@5.6.3):
dependencies:
'@volar/typescript': 2.4.8
- '@vue/language-core': 2.1.8(typescript@5.6.3)
+ '@vue/language-core': 2.1.10(typescript@5.6.3)
semver: 7.6.3
typescript: 5.6.3
@@ -12247,23 +12331,23 @@ snapshots:
optionalDependencies:
typescript: 5.6.3
- vue@3.5.12(typescript@5.6.3):
+ vue@3.5.13(typescript@5.6.3):
dependencies:
- '@vue/compiler-dom': 3.5.12
- '@vue/compiler-sfc': 3.5.12
- '@vue/runtime-dom': 3.5.12
- '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.3))
- '@vue/shared': 3.5.12
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-sfc': 3.5.13
+ '@vue/runtime-dom': 3.5.13
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.6.3))
+ '@vue/shared': 3.5.13
optionalDependencies:
typescript: 5.6.3
- vuefire@3.2.0(consola@3.2.3)(firebase@11.0.1)(vue@3.5.12(typescript@5.6.3)):
+ vuefire@3.2.0(consola@3.2.3)(firebase@11.0.2)(vue@3.5.13(typescript@5.6.3)):
dependencies:
- vue: 3.5.12(typescript@5.6.3)
- vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
+ vue: 3.5.13(typescript@5.6.3)
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.3))
optionalDependencies:
consola: 3.2.3
- firebase: 11.0.1
+ firebase: 11.0.2
watchpack@2.4.2:
dependencies:
@@ -12280,14 +12364,14 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.95.0(esbuild@0.24.0):
+ webpack@5.96.1(esbuild@0.24.0):
dependencies:
+ '@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ acorn: 8.14.0
browserslist: 4.24.0
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
@@ -12302,7 +12386,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.24.0)(webpack@5.95.0(esbuild@0.24.0))
+ terser-webpack-plugin: 5.3.10(esbuild@0.24.0)(webpack@5.96.1(esbuild@0.24.0))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies: