From fc27519e701bcdfc8a7fabf2115a26a9f7cc9800 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 14:00:52 +0900 Subject: [PATCH] fix(deps): update all non-major dependencies (#675) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- docs/package.json | 8 +- package.json | 22 +- packages/api/package.json | 2 +- packages/api/src/ts/property.ts | 4 +- packages/astro/package.json | 2 +- packages/boolean-prop/package.json | 4 +- packages/common/package.json | 8 +- packages/define-emit/package.json | 2 +- packages/define-models/package.json | 2 +- packages/define-options/package.json | 2 +- packages/define-prop/package.json | 2 +- packages/define-props-refs/package.json | 2 +- packages/define-props/package.json | 2 +- packages/define-render/package.json | 2 +- packages/define-slots/package.json | 2 +- packages/devtools/package.json | 4 +- packages/eslint-config/package.json | 2 +- packages/export-expose/package.json | 4 +- packages/export-props/package.json | 2 +- packages/export-render/package.json | 4 +- packages/jsx-directive/package.json | 2 +- packages/macros/package.json | 2 +- packages/named-template/package.json | 4 +- packages/reactivity-transform/package.json | 6 +- packages/setup-block/package.json | 2 +- packages/setup-component/package.json | 2 +- packages/setup-sfc/package.json | 2 +- packages/short-bind/package.json | 4 +- packages/short-vmodel/package.json | 4 +- packages/test-utils/package.json | 6 +- packages/volar/package.json | 4 +- playground/astro/package.json | 4 +- playground/nuxt/bun.lockb | Bin 521851 -> 521851 bytes playground/nuxt/package.json | 2 +- playground/vue2/package.json | 6 +- playground/vue3/package.json | 8 +- pnpm-lock.yaml | 2701 ++++++++++---------- 37 files changed, 1463 insertions(+), 1378 deletions(-) diff --git a/docs/package.json b/docs/package.json index 65a90c4a6..49781aa2a 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,14 +10,14 @@ }, "dependencies": { "prettier": "^3.2.5", - "shiki": "^1.3.0" + "shiki": "^1.4.0" }, "devDependencies": { - "@vite-pwa/vitepress": "^0.4.0", + "@vite-pwa/vitepress": "^0.5.0", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite-plugin-pwa": "^0.19.8", + "vite-plugin-pwa": "^0.20.0", "vite-plugin-vue-devtools": "^7.1.3", "vitepress": "^1.1.4", - "vue": "^3.4.25" + "vue": "^3.4.26" } } diff --git a/package.json b/package.json index 448857bf9..ef6f2bfc0 100644 --- a/package.json +++ b/package.json @@ -35,19 +35,19 @@ "typecheck:playground:vue2": "pnpm run -C ./playground/vue2 typecheck" }, "devDependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.24.5", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.1", "@rspack/core": "^0.6.3", - "@sxzz/eslint-config": "^3.9.1", + "@sxzz/eslint-config": "^3.11.0", "@sxzz/prettier-config": "^2.0.2", - "@types/node": "^20.12.7", - "@vitest/coverage-v8": "^1.5.2", - "@vitest/ui": "^1.5.2", + "@types/node": "^20.12.8", + "@vitest/coverage-v8": "^1.6.0", + "@vitest/ui": "^1.6.0", "@vue-macros/test-utils": "workspace:*", "@vue-macros/volar": "workspace:*", "esbuild": "^0.20.2", - "eslint": "^9.1.1", + "eslint": "^9.2.0", "eslint-define-config": "^1.24.1", "expect-type": "^0.19.0", "fast-glob": "^3.3.2", @@ -55,16 +55,16 @@ "npm-run-all2": "^6.1.2", "prettier": "^3.2.5", "rimraf": "^5.0.5", - "rollup": "^4.17.0", + "rollup": "^4.17.2", "tsup": "^8.0.2", - "tsx": "^4.7.3", + "tsx": "^4.9.3", "typescript": "~5.4.5", "unocss": "^0.59.4", "unplugin-macros": "^0.13.0", "unplugin-raw": "^0.1.1", - "vite": "^5.2.10", - "vitest": "^1.5.2", - "vue": "^3.4.25", + "vite": "^5.2.11", + "vitest": "^1.6.0", + "vue": "^3.4.26", "vue-tsc": "2.0.16", "vue2": "npm:vue@^2.7.16", "webpack": "^5.91.0" diff --git a/packages/api/package.json b/packages/api/package.json index 723a088c3..7fd4ac990 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -45,7 +45,7 @@ "dev": "DEV=true tsup" }, "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.24.5", "@vue-macros/common": "workspace:*", "resolve.exports": "^2.0.2" }, diff --git a/packages/api/src/ts/property.ts b/packages/api/src/ts/property.ts index 7684839be..0b936ee47 100644 --- a/packages/api/src/ts/property.ts +++ b/packages/api/src/ts/property.ts @@ -109,9 +109,7 @@ export async function resolveTSProperties({ : undefined, ), ) - ) - // eslint-disable-next-line unicorn/no-array-callback-reference - .filter(filterValidExtends) + ).filter(filterValidExtends) if (resolvedExtends.length > 0) { const ext = ( diff --git a/packages/astro/package.json b/packages/astro/package.json index f67326d70..18fe06a9d 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -55,7 +55,7 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^5.0.4", - "astro": "^4.7.0" + "astro": "^4.7.1" }, "engines": { "node": ">=16.14.0" diff --git a/packages/boolean-prop/package.json b/packages/boolean-prop/package.json index 863e45655..93635f099 100644 --- a/packages/boolean-prop/package.json +++ b/packages/boolean-prop/package.json @@ -69,10 +69,10 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-core": "^3.4.25" + "@vue/compiler-core": "^3.4.26" }, "devDependencies": { - "@vue/compiler-sfc": "^3.4.25" + "@vue/compiler-sfc": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/common/package.json b/packages/common/package.json index 05e25c220..4c2eb9a66 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -53,15 +53,15 @@ } }, "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.24.5", "@rollup/pluginutils": "^5.1.0", - "@vue/compiler-sfc": "^3.4.25", + "@vue/compiler-sfc": "^3.4.26", "ast-kit": "^0.12.1", "local-pkg": "^0.5.0", - "magic-string-ast": "^0.5.0" + "magic-string-ast": "^0.6.0" }, "devDependencies": { - "@babel/parser": "^7.24.4", + "@babel/parser": "^7.24.5", "@vitejs/plugin-vue": "^5.0.4" }, "engines": { diff --git a/packages/define-emit/package.json b/packages/define-emit/package.json index 7d0a1a345..313598e6f 100644 --- a/packages/define-emit/package.json +++ b/packages/define-emit/package.json @@ -88,7 +88,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-models/package.json b/packages/define-models/package.json index f0385ed14..a0adcd908 100644 --- a/packages/define-models/package.json +++ b/packages/define-models/package.json @@ -95,7 +95,7 @@ "devDependencies": { "@vue-macros/api": "workspace:^", "@vueuse/core": "^10.9.0", - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-options/package.json b/packages/define-options/package.json index 139befa8f..a872eae77 100644 --- a/packages/define-options/package.json +++ b/packages/define-options/package.json @@ -85,7 +85,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-prop/package.json b/packages/define-prop/package.json index 14c5359f2..c375b5042 100644 --- a/packages/define-prop/package.json +++ b/packages/define-prop/package.json @@ -88,7 +88,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-props-refs/package.json b/packages/define-props-refs/package.json index 2448322d4..258f3b83a 100644 --- a/packages/define-props-refs/package.json +++ b/packages/define-props-refs/package.json @@ -87,7 +87,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-props/package.json b/packages/define-props/package.json index e82cc8cdd..7a80faa4b 100644 --- a/packages/define-props/package.json +++ b/packages/define-props/package.json @@ -89,7 +89,7 @@ }, "devDependencies": { "@vue-macros/reactivity-transform": "workspace:*", - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-render/package.json b/packages/define-render/package.json index 3c55878cd..fc64999a7 100644 --- a/packages/define-render/package.json +++ b/packages/define-render/package.json @@ -87,7 +87,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/define-slots/package.json b/packages/define-slots/package.json index d1c2c904b..10e653a29 100644 --- a/packages/define-slots/package.json +++ b/packages/define-slots/package.json @@ -87,7 +87,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/devtools/package.json b/packages/devtools/package.json index f0c7c876c..ca36492e4 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -55,14 +55,14 @@ }, "dependencies": { "sirv": "^2.0.4", - "vue": "^3.4.25" + "vue": "^3.4.26" }, "devDependencies": { "@unocss/reset": "^0.59.4", "@vitejs/plugin-vue": "^5.0.4", "get-port": "^7.1.0", "unocss": "^0.59.4", - "vite": "^5.2.10" + "vite": "^5.2.11" }, "engines": { "node": ">=16.14.0" diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 4a5e89973..78f894e6f 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -34,7 +34,7 @@ "eslint": ">=8.0.0" }, "devDependencies": { - "eslint": "^9.1.1" + "eslint": "^9.2.0" }, "engines": { "node": ">=16.14.0" diff --git a/packages/export-expose/package.json b/packages/export-expose/package.json index ecf810c8c..b31f386d8 100644 --- a/packages/export-expose/package.json +++ b/packages/export-expose/package.json @@ -83,11 +83,11 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-sfc": "^3.4.25", + "@vue/compiler-sfc": "^3.4.26", "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/export-props/package.json b/packages/export-props/package.json index b10328523..c42baf6c2 100644 --- a/packages/export-props/package.json +++ b/packages/export-props/package.json @@ -86,7 +86,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/export-render/package.json b/packages/export-render/package.json index 6ad715c76..a8fadd5a0 100644 --- a/packages/export-render/package.json +++ b/packages/export-render/package.json @@ -83,11 +83,11 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-sfc": "^3.4.25", + "@vue/compiler-sfc": "^3.4.26", "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/jsx-directive/package.json b/packages/jsx-directive/package.json index 9809afae3..845b6bd66 100644 --- a/packages/jsx-directive/package.json +++ b/packages/jsx-directive/package.json @@ -86,7 +86,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/macros/package.json b/packages/macros/package.json index aa1b0676f..372a88659 100644 --- a/packages/macros/package.json +++ b/packages/macros/package.json @@ -113,7 +113,7 @@ "unplugin-vue-define-options": "workspace:*" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/named-template/package.json b/packages/named-template/package.json index 7f9c18611..953f985e7 100644 --- a/packages/named-template/package.json +++ b/packages/named-template/package.json @@ -80,11 +80,11 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-dom": "^3.4.25", + "@vue/compiler-dom": "^3.4.26", "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/reactivity-transform/package.json b/packages/reactivity-transform/package.json index a9b941812..be0fc4907 100644 --- a/packages/reactivity-transform/package.json +++ b/packages/reactivity-transform/package.json @@ -83,10 +83,10 @@ "vue": "^2.7.0 || ^3.2.25" }, "dependencies": { - "@babel/parser": "^7.24.4", + "@babel/parser": "^7.24.5", "@vue-macros/common": "workspace:*", - "@vue/compiler-core": "^3.4.25", - "@vue/shared": "^3.4.25", + "@vue/compiler-core": "^3.4.26", + "@vue/shared": "^3.4.26", "magic-string": "^0.30.10", "unplugin": "^1.10.1" }, diff --git a/packages/setup-block/package.json b/packages/setup-block/package.json index 3a7a2e4eb..4c5303de5 100644 --- a/packages/setup-block/package.json +++ b/packages/setup-block/package.json @@ -80,7 +80,7 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-dom": "^3.4.25", + "@vue/compiler-dom": "^3.4.26", "unplugin": "^1.10.1" }, "engines": { diff --git a/packages/setup-component/package.json b/packages/setup-component/package.json index 9d71f1796..5092bb82d 100644 --- a/packages/setup-component/package.json +++ b/packages/setup-component/package.json @@ -84,7 +84,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/setup-sfc/package.json b/packages/setup-sfc/package.json index a69f6bbe4..096db3acc 100644 --- a/packages/setup-sfc/package.json +++ b/packages/setup-sfc/package.json @@ -83,7 +83,7 @@ "unplugin": "^1.10.1" }, "devDependencies": { - "vue": "^3.4.25" + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/short-bind/package.json b/packages/short-bind/package.json index ef5c79cfb..3816308c0 100644 --- a/packages/short-bind/package.json +++ b/packages/short-bind/package.json @@ -69,10 +69,10 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-core": "^3.4.25" + "@vue/compiler-core": "^3.4.26" }, "devDependencies": { - "@vue/compiler-sfc": "^3.4.25" + "@vue/compiler-sfc": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/short-vmodel/package.json b/packages/short-vmodel/package.json index 63d5c15b0..bac45f219 100644 --- a/packages/short-vmodel/package.json +++ b/packages/short-vmodel/package.json @@ -69,10 +69,10 @@ }, "dependencies": { "@vue-macros/common": "workspace:*", - "@vue/compiler-core": "^3.4.25" + "@vue/compiler-core": "^3.4.26" }, "devDependencies": { - "@vue/compiler-sfc": "^3.4.25" + "@vue/compiler-sfc": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index 674d2da40..9ac5a1ae6 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -60,13 +60,13 @@ "@vitejs/plugin-vue2": "^2.3.1", "esbuild": "^0.20.2", "fast-glob": "^3.3.2", - "rollup": "^4.17.0", + "rollup": "^4.17.2", "rollup-plugin-esbuild": "^6.1.1", "unplugin-vue": "^5.0.5" }, "devDependencies": { - "vite": "^5.2.10", - "vue": "^3.4.25" + "vite": "^5.2.11", + "vue": "^3.4.26" }, "engines": { "node": ">=16.14.0" diff --git a/packages/volar/package.json b/packages/volar/package.json index d2bfec0f0..03f572a3e 100644 --- a/packages/volar/package.json +++ b/packages/volar/package.json @@ -54,10 +54,10 @@ "@vue-macros/short-bind": "workspace:*", "@vue-macros/short-vmodel": "workspace:*", "@vue/language-core": "2.0.16", - "@vue/shared": "^3.4.25" + "@vue/shared": "^3.4.26" }, "devDependencies": { - "@vue/compiler-dom": "^3.4.25", + "@vue/compiler-dom": "^3.4.26", "typescript": "~5.4.5", "vue-tsc": "2.0.16" }, diff --git a/playground/astro/package.json b/playground/astro/package.json index ba0a248c7..df437c135 100644 --- a/playground/astro/package.json +++ b/playground/astro/package.json @@ -14,7 +14,7 @@ "@astrojs/vue": "^4.1.0", "@vue-macros/astro": "workspace:*", "@vueuse/core": "^10.9.0", - "astro": "^4.7.0", - "vue": "^3.4.25" + "astro": "^4.7.1", + "vue": "^3.4.26" } } diff --git a/playground/nuxt/bun.lockb b/playground/nuxt/bun.lockb index e29a6b0f3bb660043e124ee560c9dc28cc196a3e..50ba1dc187440b609ed569a76d0ab3d4e071fa6b 100755 GIT binary patch delta 1970 zcmZ8h3pA8z82*3e`^Q}qV@%~%xx_KYC4=m?qYztUa;Y3-sf{d6HygHLLPNC27~gzY?Eb zyGO$?o$;C@P)v*2}E%SyF|+wRGULrZhP~ zUzs@sXh_cn%uvaOre$s`Rckv{vxc)Mn-uNSlnw`~in{Tq5&412m8VlQGlu!(Fdr{W z<0UMy9jz>)zjmxED~sznE@ZomtSSCrIeN%N*cbgxctvKx4W7s2%i+HFb;3;F7MQu` zZxRN$=XR{vwlD6Nu{S=jU4|Q{T@j@pwYjUKNKat&g6x$9*6?BwPh>5eeB=g7c`(IKeb+^JuulD@-)}m(XhJzazj|IMX;g4ojRS& z6{5pSTMigrcaqkIb}dNZ{%d=FY(M*Lx!17~A^)$sil%EHt4el+ay z(fc!cL-+0NJA$svUDHxdW_98_aUTEE8ui%V2$Mqh{4r+xwes#nji)*3;ePco^?JVR zLfW(wugdRQuQrJHdE!zJ$}-e$`VEfA{5=!8hMcx9_a))ix6!PyRZBU=o3j>k_W81X zcYi+I8SatL8@wj9J*v({mQU9=6*O#d>$xd7CGdAL){640czX3nk6z2qjqx!z_YPGb zSDBTr>Z}Y#YG!C(tkHEkcq`KW{=Jzuk{7M5C;QXF>iQRa983>rCiOn<{$9cE?OLBx zOZzMz474k2U*O~Yyd}}vv&(kV2Kf3mF5u057*QkVx!G7YWfnyTzIf)bmd|4 zsj)QJHvYq?^iu9i*~P~rvL8yWCNYyj=Xmcn$~ayyWcNB^llQr8;__}BnHpK%t=>Gy zr2e+q$TXC#h9CeZ6IyA@2CHB?BQLrxeeQsNv3>g&Zd?bnpU{jGhZ%Bj?~c?#!J5`wJi8 z6hO%wMK?1O$>8Tcr$qiPjG2;&N+o8&L}##3jf=s!D&VMwv=3APW6D!(B+@ZG9jD|i z1R|yWv<;R0Tv$%9$sI0$j^mRDbeKFA4MpQe{S}`$C%MZNDA40NerPhw9e8Ug6Pn|f z0ikeWK#=JLDkoRBdVxDr)FvOW#Sc{!Cjk@k@&OGOLH-FeT{kqv@jeXT)_ibKbqVB1 zK!++o8W(^(TOtP*52$Y*Mp;rYkB?GI#bDaq__QdAwi2)cu z;R%qftU&XV)Se{j(^4H5kgPKxC=})K8pMvRXbrl2icS3ukdaE5C}#-0Qi(2Q8FF`_ zi(By%LG@0pClOFepevDO5GHUegD{5wWDpF<$|Rx?x-*jqg`x{|i{d;&7mj2S#t39) z5o?j#oJB-IPd~aj*`Gx?;s~)26QLAIOazV>;7c(PuEphS-Zs}vI&;kA0|p>V zu2}^n$`D{Tih(Sp9BiPI%*KFPYle`8bJW0`#UY4HdpSV}uvXN@unz&9z#S$*7>@*; zIjy>Z@d~P#4 zvOefD9dGax&tsWxEJfF=t;gONX|JJD6Rb<>5%Ni4NU%1uT56cB386G0pfJPBa%=YS zOkWrB)Vqfjk*wl{?8CcXS&8nq-yHNvsDXV&oeZb$Kg=}K`Sa&R3abpc#p3U#UfS!I z8ePU&X(3EYL@jNApP^ncP`P;R`NaC<%}M!v1}n0?mn?fAJMl0*bC3O!1kd^T-1YuX zXBn!m1edD1CURv%9bfbow>8TwgMIp|q7%aaK>%WyJ&d&;-rLxZDU7vlXl>1?=q}v4 zh}?cJK4IDA>nxL$xMtrA+!B$$tw`PK{;%;4fnP|e-N~5YrnpG4)H5kt^;dv?%ZD6OXstSTnKL^y!7%J>g#G7+pVZ2&{H#TxEZ$F{mqi-+i4Rqgey>FQxBDL_tqJ8mlTKF#RZ zQB~dXH@oJB7XYd;zNxPKqNjP@qq%)y%}LUNC&|m&r(Eq%Px2RBKXoK3rK?4LEb!0m z72>qsH@#+)jEbZi=>e$GS&9QsdDQQYuS*WKJ@}LVg73lPA zXljnF3S2Y^za+&2VPU7#kB>5dtH@2{;*OlWAx#sMP71Jc5<^;9xkAB5QY}E!{EE+t z$Ib-j-b>f3c5ED{iA*IYqiwEm3&Wj2F=f!1fw@b{AfMJW9VWT)sXJ1V?*_AQh;IMC zh8S;LN(!iCcc>4**s+|(&x);)1D-)?v!MZcCMDTax)`eQ<2teoN;U`jOwc+^=Z~Ag z=ICY+&l?^Z%f99fJI71UE`|wyIHEoYdC02(GJyhxoWN`Kz>6Fi#RMf5zzW?IB$C4$ zx&Xyjz(ONjiN695I?vHgK5CAToEdG-qpA)OV6?elbO$DA z#|fCHjUcO&bWaM;Ib9EAQD!wTbS3uV49MifQF6MPz6OYsN?K~yh`dwDTiP(1osPd< zKpIKUjxUjb!oYqKZ@(>@v_$M2(f~clCasZK4jGBjlpJy;;`~fn7v+;I^e%_wV~{5! z!?F5CMn=*xE2>{cIs=SY=aMVwqFgd~B!Hgfl4~cpi;}iTL1oAL-M~NB{r; diff --git a/playground/nuxt/package.json b/playground/nuxt/package.json index becd12c7c..d362938a2 100644 --- a/playground/nuxt/package.json +++ b/playground/nuxt/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@vueuse/core": "^10.9.0", - "vue": "^3.4.25" + "vue": "^3.4.26" }, "devDependencies": { "@nuxt/devtools": "^1.2.0", diff --git a/playground/vue2/package.json b/playground/vue2/package.json index a67b9f0d7..556c8a8ca 100644 --- a/playground/vue2/package.json +++ b/playground/vue2/package.json @@ -24,13 +24,13 @@ "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", "esbuild": "^0.20.2", "npm-run-all2": "^6.1.2", - "rollup": "^4.17.0", + "rollup": "^4.17.2", "rollup-plugin-esbuild": "^6.1.1", - "type-fest": "^4.17.0", + "type-fest": "^4.18.1", "typescript": "~5.4.5", "unocss": "^0.59.4", "unplugin-vue-macros": "workspace:*", - "vite": "^5.2.10", + "vite": "^5.2.11", "vite-hyper-config": "^0.2.1", "vite-plugin-inspect": "^0.8.4", "vue-tsc": "2.0.16" diff --git a/playground/vue3/package.json b/playground/vue3/package.json index 28c56c7d2..a406f7bd4 100644 --- a/playground/vue3/package.json +++ b/playground/vue3/package.json @@ -14,7 +14,7 @@ "dependencies": { "@vueuse/core": "^10.9.0", "quasar": "^2.15.4", - "vue": "^3.4.25" + "vue": "^3.4.26" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", @@ -24,13 +24,13 @@ "@vue-macros/volar": "workspace:*", "esbuild": "^0.20.2", "npm-run-all2": "^6.1.2", - "rollup": "^4.17.0", + "rollup": "^4.17.2", "rollup-plugin-esbuild": "^6.1.1", - "type-fest": "^4.17.0", + "type-fest": "^4.18.1", "typescript": "~5.4.5", "unocss": "^0.59.4", "unplugin-vue-macros": "workspace:*", - "vite": "^5.2.10", + "vite": "^5.2.11", "vite-hyper-config": "^0.2.1", "vite-plugin-inspect": "^0.8.4", "vue-tsc": "2.0.16" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 980e911d6..b8a89c33d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: devDependencies: '@babel/types': - specifier: ^7.24.0 - version: 7.24.0 + specifier: ^7.24.5 + version: 7.24.5 '@changesets/changelog-github': specifier: ^0.5.0 version: 0.5.0(encoding@0.1.13) @@ -21,20 +21,20 @@ importers: specifier: ^0.6.3 version: 0.6.3 '@sxzz/eslint-config': - specifier: ^3.9.1 - version: 3.9.1(@types/eslint@8.56.5)(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5) + specifier: ^3.11.0 + version: 3.11.0(@types/eslint@8.56.5)(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5) '@sxzz/prettier-config': specifier: ^2.0.2 version: 2.0.2 '@types/node': - specifier: ^20.12.7 - version: 20.12.7 + specifier: ^20.12.8 + version: 20.12.8 '@vitest/coverage-v8': - specifier: ^1.5.2 - version: 1.5.2(vitest@1.5.2(@types/node@20.12.7)(@vitest/ui@1.5.2)(terser@5.29.1)) + specifier: ^1.6.0 + version: 1.6.0(vitest@1.6.0(@types/node@20.12.8)(@vitest/ui@1.6.0)(terser@5.29.1)) '@vitest/ui': - specifier: ^1.5.2 - version: 1.5.2(vitest@1.5.2) + specifier: ^1.6.0 + version: 1.6.0(vitest@1.6.0) '@vue-macros/test-utils': specifier: workspace:* version: link:packages/test-utils @@ -45,8 +45,8 @@ importers: specifier: ^0.20.2 version: 0.20.2 eslint: - specifier: ^9.1.1 - version: 9.1.1 + specifier: ^9.2.0 + version: 9.2.0 eslint-define-config: specifier: ^1.24.1 version: 1.24.1 @@ -69,35 +69,35 @@ importers: specifier: ^5.0.5 version: 5.0.5 rollup: - specifier: ^4.17.0 - version: 4.17.0 + specifier: ^4.17.2 + version: 4.17.2 tsup: specifier: ^8.0.2 version: 8.0.2(postcss@8.4.38)(typescript@5.4.5) tsx: - specifier: ^4.7.3 - version: 4.8.2 + specifier: ^4.9.3 + version: 4.9.3 typescript: specifier: ~5.4.5 version: 5.4.5 unocss: specifier: ^0.59.4 - version: 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) unplugin-macros: specifier: ^0.13.0 - version: 0.13.0(@types/node@20.12.7)(rollup@4.17.0)(terser@5.29.1) + version: 0.13.0(@types/node@20.12.8)(rollup@4.17.2)(terser@5.29.1) unplugin-raw: specifier: ^0.1.1 - version: 0.1.1(rollup@4.17.0) + version: 0.1.1(rollup@4.17.2) vite: - specifier: ^5.2.10 - version: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + specifier: ^5.2.11 + version: 5.2.11(@types/node@20.12.8)(terser@5.29.1) vitest: - specifier: ^1.5.2 - version: 1.5.2(@types/node@20.12.7)(@vitest/ui@1.5.2)(terser@5.29.1) + specifier: ^1.6.0 + version: 1.6.0(@types/node@20.12.8)(@vitest/ui@1.6.0)(terser@5.29.1) vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) vue-tsc: specifier: 2.0.16 version: 2.0.16(typescript@5.4.5) @@ -114,33 +114,33 @@ importers: specifier: ^3.2.5 version: 3.2.5 shiki: - specifier: ^1.3.0 - version: 1.3.0 + specifier: ^1.4.0 + version: 1.4.0 devDependencies: '@vite-pwa/vitepress': - specifier: ^0.4.0 - version: 0.4.0(vite-plugin-pwa@0.19.8(@types/babel__core@7.20.5)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))) + specifier: ^0.5.0 + version: 0.5.0(vite-plugin-pwa@0.20.0(@types/babel__core@7.20.5)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 3.1.0(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) vite-plugin-pwa: - specifier: ^0.19.8 - version: 0.19.8(@types/babel__core@7.20.5)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + specifier: ^0.20.0 + version: 0.20.0(@types/babel__core@7.20.5)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) vite-plugin-vue-devtools: specifier: ^7.1.3 - version: 7.1.3(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 7.1.3(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) vitepress: specifier: ^1.1.4 - version: 1.1.4(@algolia/client-search@4.22.1)(@types/node@20.12.7)(postcss@8.4.38)(terser@5.29.1)(typescript@5.4.5) + version: 1.1.4(@algolia/client-search@4.22.1)(@types/node@20.12.8)(postcss@8.4.38)(terser@5.29.1)(typescript@5.4.5) vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/api: dependencies: '@babel/types': - specifier: ^7.24.0 - version: 7.24.0 + specifier: ^7.24.5 + version: 7.24.5 '@vue-macros/common': specifier: workspace:* version: link:../common @@ -156,10 +156,10 @@ importers: devDependencies: '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 5.0.4(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) astro: - specifier: ^4.7.0 - version: 4.7.0(@types/node@20.12.7)(terser@5.29.1)(typescript@5.4.5) + specifier: ^4.7.1 + version: 4.7.1(@types/node@20.12.8)(terser@5.29.1)(typescript@5.4.5) packages/better-define: dependencies: @@ -179,12 +179,12 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-core': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 devDependencies: '@vue/compiler-sfc': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 packages/chain-call: dependencies: @@ -198,14 +198,14 @@ importers: packages/common: dependencies: '@babel/types': - specifier: ^7.24.0 - version: 7.24.0 + specifier: ^7.24.5 + version: 7.24.5 '@rollup/pluginutils': specifier: ^5.1.0 - version: 5.1.0(rollup@4.17.0) + version: 5.1.0(rollup@4.17.2) '@vue/compiler-sfc': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 ast-kit: specifier: ^0.12.1 version: 0.12.1 @@ -213,15 +213,15 @@ importers: specifier: ^0.5.0 version: 0.5.0 magic-string-ast: - specifier: ^0.5.0 - version: 0.5.0 + specifier: ^0.6.0 + version: 0.6.0 devDependencies: '@babel/parser': - specifier: ^7.24.4 - version: 7.24.4 + specifier: ^7.24.5 + version: 7.24.5 '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 5.0.4(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) packages/define-emit: dependencies: @@ -236,8 +236,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-models: dependencies: @@ -256,10 +256,10 @@ importers: version: link:../api '@vueuse/core': specifier: ^10.9.0 - version: 10.9.0(vue@3.4.25(typescript@5.4.5)) + version: 10.9.0(vue@3.4.26(typescript@5.4.5)) vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-options: dependencies: @@ -274,8 +274,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-prop: dependencies: @@ -290,8 +290,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-props: dependencies: @@ -306,8 +306,8 @@ importers: specifier: workspace:* version: link:../reactivity-transform vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-props-refs: dependencies: @@ -319,8 +319,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-render: dependencies: @@ -332,8 +332,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/define-slots: dependencies: @@ -345,8 +345,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/devtools: dependencies: @@ -354,30 +354,30 @@ importers: specifier: ^2.0.4 version: 2.0.4 vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) devDependencies: '@unocss/reset': specifier: ^0.59.4 version: 0.59.4 '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 5.0.4(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) get-port: specifier: ^7.1.0 version: 7.1.0 unocss: specifier: ^0.59.4 - version: 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) vite: - specifier: ^5.2.10 - version: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + specifier: ^5.2.11 + version: 5.2.11(@types/node@20.12.8)(terser@5.29.1) packages/eslint-config: devDependencies: eslint: - specifier: ^9.1.1 - version: 9.1.1 + specifier: ^9.2.0 + version: 9.2.0 packages/export-expose: dependencies: @@ -385,15 +385,15 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-sfc': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 unplugin: specifier: ^1.10.1 version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/export-props: dependencies: @@ -405,8 +405,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/export-render: dependencies: @@ -414,15 +414,15 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-sfc': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 unplugin: specifier: ^1.10.1 version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/hoist-static: dependencies: @@ -443,8 +443,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/macros: dependencies: @@ -528,14 +528,14 @@ importers: version: 1.10.1 unplugin-combine: specifier: ^1.0.0 - version: 1.0.0(esbuild@0.20.2)(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(webpack@5.91.0(esbuild@0.20.2)) + version: 1.0.0(esbuild@0.20.2)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(webpack@5.91.0(esbuild@0.20.2)) unplugin-vue-define-options: specifier: workspace:* version: link:../define-options devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/named-template: dependencies: @@ -543,21 +543,21 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-dom': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 unplugin: specifier: ^1.10.1 version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/nuxt: dependencies: '@nuxt/kit': specifier: ^3.11.2 - version: 3.11.2(rollup@4.17.0) + version: 3.11.2(rollup@4.17.2) '@vue-macros/common': specifier: workspace:~ version: link:../common @@ -570,10 +570,10 @@ importers: devDependencies: '@nuxt/devtools': specifier: ^1.2.0 - version: 1.2.0(@unocss/reset@0.59.4)(rollup@4.17.0)(unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 1.2.0(@unocss/reset@0.59.4)(rollup@4.17.2)(unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) '@nuxt/schema': specifier: ^3.11.2 - version: 3.11.2(rollup@4.17.0) + version: 3.11.2(rollup@4.17.2) '@vue/language-core': specifier: 2.0.16 version: 2.0.16(typescript@5.4.5) @@ -581,17 +581,17 @@ importers: packages/reactivity-transform: dependencies: '@babel/parser': - specifier: ^7.24.4 - version: 7.24.4 + specifier: ^7.24.5 + version: 7.24.5 '@vue-macros/common': specifier: workspace:* version: link:../common '@vue/compiler-core': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 '@vue/shared': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 magic-string: specifier: ^0.30.10 version: 0.30.10 @@ -609,8 +609,8 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-dom': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 unplugin: specifier: ^1.10.1 version: 1.10.1 @@ -625,8 +625,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/setup-sfc: dependencies: @@ -638,8 +638,8 @@ importers: version: 1.10.1 devDependencies: vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/short-bind: dependencies: @@ -647,12 +647,12 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-core': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 devDependencies: '@vue/compiler-sfc': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 packages/short-emits: dependencies: @@ -669,30 +669,30 @@ importers: specifier: workspace:* version: link:../common '@vue/compiler-core': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 devDependencies: '@vue/compiler-sfc': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 packages/test-utils: dependencies: '@rollup/plugin-json': specifier: ^6.1.0 - version: 6.1.0(rollup@4.17.0) + version: 6.1.0(rollup@4.17.2) '@rollup/plugin-node-resolve': specifier: ^15.2.3 - version: 15.2.3(rollup@4.17.0) + version: 15.2.3(rollup@4.17.2) '@rollup/pluginutils': specifier: ^5.1.0 - version: 5.1.0(rollup@4.17.0) + version: 5.1.0(rollup@4.17.2) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 3.1.0(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) '@vitejs/plugin-vue2': specifier: ^2.3.1 - version: 2.3.1(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 2.3.1(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) esbuild: specifier: ^0.20.2 version: 0.20.2 @@ -700,27 +700,27 @@ importers: specifier: ^3.3.2 version: 3.3.2 rollup: - specifier: ^4.17.0 - version: 4.17.0 + specifier: ^4.17.2 + version: 4.17.2 rollup-plugin-esbuild: specifier: ^6.1.1 - version: 6.1.1(esbuild@0.20.2)(rollup@4.17.0) + version: 6.1.1(esbuild@0.20.2)(rollup@4.17.2) unplugin-vue: specifier: ^5.0.5 - version: 5.0.5(@types/node@20.12.7)(terser@5.29.1)(vue@3.4.25(typescript@5.4.5)) + version: 5.0.5(@types/node@20.12.8)(terser@5.29.1)(vue@3.4.26(typescript@5.4.5)) devDependencies: vite: - specifier: ^5.2.10 - version: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + specifier: ^5.2.11 + version: 5.2.11(@types/node@20.12.8)(terser@5.29.1) vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) packages/volar: dependencies: '@rollup/pluginutils': specifier: ^5.1.0 - version: 5.1.0(rollup@4.17.0) + version: 5.1.0(rollup@4.17.2) '@vue-macros/common': specifier: workspace:* version: link:../common @@ -737,12 +737,12 @@ importers: specifier: 2.0.16 version: 2.0.16(typescript@5.4.5) '@vue/shared': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 devDependencies: '@vue/compiler-dom': - specifier: ^3.4.25 - version: 3.4.25 + specifier: ^3.4.26 + version: 3.4.26 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -754,19 +754,19 @@ importers: dependencies: '@astrojs/vue': specifier: ^4.1.0 - version: 4.1.0(astro@4.7.0(@types/node@20.12.7)(terser@5.29.1)(typescript@5.4.5))(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 4.1.0(astro@4.7.1(@types/node@20.12.8)(terser@5.29.1)(typescript@5.4.5))(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) '@vue-macros/astro': specifier: workspace:* version: link:../../packages/astro '@vueuse/core': specifier: ^10.9.0 - version: 10.9.0(vue@3.4.25(typescript@5.4.5)) + version: 10.9.0(vue@3.4.26(typescript@5.4.5)) astro: - specifier: ^4.7.0 - version: 4.7.0(@types/node@20.12.7)(terser@5.29.1)(typescript@5.4.5) + specifier: ^4.7.1 + version: 4.7.1(@types/node@20.12.8)(terser@5.29.1)(typescript@5.4.5) vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) playground/vue2: dependencies: @@ -779,16 +779,16 @@ importers: devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 - version: 25.0.7(rollup@4.17.0) + version: 25.0.7(rollup@4.17.2) '@rollup/plugin-node-resolve': specifier: ^15.2.3 - version: 15.2.3(rollup@4.17.0) + version: 15.2.3(rollup@4.17.2) '@vitejs/plugin-vue2': specifier: ^2.3.1 - version: 2.3.1(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@2.7.16) + version: 2.3.1(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@2.7.16) '@vitejs/plugin-vue2-jsx': specifier: ^1.1.1 - version: 1.1.1(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@2.7.16) + version: 1.1.1(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@2.7.16) '@vue-macros/volar': specifier: workspace:* version: link:../../packages/volar @@ -802,32 +802,32 @@ importers: specifier: ^6.1.2 version: 6.1.2 rollup: - specifier: ^4.17.0 - version: 4.17.0 + specifier: ^4.17.2 + version: 4.17.2 rollup-plugin-esbuild: specifier: ^6.1.1 - version: 6.1.1(esbuild@0.20.2)(rollup@4.17.0) + version: 6.1.1(esbuild@0.20.2)(rollup@4.17.2) type-fest: - specifier: ^4.17.0 - version: 4.17.0 + specifier: ^4.18.1 + version: 4.18.1 typescript: specifier: ~5.4.5 version: 5.4.5 unocss: specifier: ^0.59.4 - version: 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) unplugin-vue-macros: specifier: workspace:* version: link:../../packages/macros vite: - specifier: ^5.2.10 - version: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + specifier: ^5.2.11 + version: 5.2.11(@types/node@20.12.8)(terser@5.29.1) vite-hyper-config: specifier: ^0.2.1 - version: 0.2.1(@types/node@20.12.7)(terser@5.29.1)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.2.1(@types/node@20.12.8)(terser@5.29.1)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) vite-plugin-inspect: specifier: ^0.8.4 - version: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.0))(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) vue-tsc: specifier: 2.0.16 version: 2.0.16(typescript@5.4.5) @@ -836,26 +836,26 @@ importers: dependencies: '@vueuse/core': specifier: ^10.9.0 - version: 10.9.0(vue@3.4.25(typescript@5.4.5)) + version: 10.9.0(vue@3.4.26(typescript@5.4.5)) quasar: specifier: ^2.15.4 version: 2.15.4 vue: - specifier: ^3.4.25 - version: 3.4.25(typescript@5.4.5) + specifier: ^3.4.26 + version: 3.4.26(typescript@5.4.5) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 - version: 25.0.7(rollup@4.17.0) + version: 25.0.7(rollup@4.17.2) '@rollup/plugin-node-resolve': specifier: ^15.2.3 - version: 15.2.3(rollup@4.17.0) + version: 15.2.3(rollup@4.17.2) '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 5.0.4(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) + version: 3.1.0(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) '@vue-macros/volar': specifier: workspace:* version: link:../../packages/volar @@ -866,32 +866,32 @@ importers: specifier: ^6.1.2 version: 6.1.2 rollup: - specifier: ^4.17.0 - version: 4.17.0 + specifier: ^4.17.2 + version: 4.17.2 rollup-plugin-esbuild: specifier: ^6.1.1 - version: 6.1.1(esbuild@0.20.2)(rollup@4.17.0) + version: 6.1.1(esbuild@0.20.2)(rollup@4.17.2) type-fest: - specifier: ^4.17.0 - version: 4.17.0 + specifier: ^4.18.1 + version: 4.18.1 typescript: specifier: ~5.4.5 version: 5.4.5 unocss: specifier: ^0.59.4 - version: 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) unplugin-vue-macros: specifier: workspace:* version: link:../../packages/macros vite: - specifier: ^5.2.10 - version: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + specifier: ^5.2.11 + version: 5.2.11(@types/node@20.12.8)(terser@5.29.1) vite-hyper-config: specifier: ^0.2.1 - version: 0.2.1(@types/node@20.12.7)(terser@5.29.1)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.2.1(@types/node@20.12.8)(terser@5.29.1)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) vite-plugin-inspect: specifier: ^0.8.4 - version: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.0))(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + version: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) vue-tsc: specifier: 2.0.16 version: 2.0.16(typescript@5.4.5) @@ -1020,26 +1020,26 @@ packages: resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==} engines: {node: '>=6.9.0'} - '@babel/core@7.24.3': - resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} - engines: {node: '>=6.9.0'} - '@babel/core@7.24.4': resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.23.6': - resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} + '@babel/core@7.24.5': + resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} engines: {node: '>=6.9.0'} - '@babel/generator@7.24.1': - resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} + '@babel/generator@7.23.6': + resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} '@babel/generator@7.24.4': resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.24.5': + resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -1095,12 +1095,22 @@ packages: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.24.3': + resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.23.3': resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.24.5': + resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} @@ -1131,6 +1141,10 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} + '@babel/helper-simple-access@7.24.5': + resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} @@ -1139,14 +1153,22 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.23.4': - resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + '@babel/helper-split-export-declaration@7.24.5': + resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.24.1': + resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} engines: {node: '>=6.9.0'} '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.5': + resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} @@ -1159,20 +1181,20 @@ packages: resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.24.1': - resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} - engines: {node: '>=6.9.0'} - '@babel/helpers@7.24.4': resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} engines: {node: '>=6.9.0'} + '@babel/helpers@7.24.5': + resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.24.2': resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} engines: {node: '>=6.9.0'} - '@babel/parser@7.24.4': - resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} + '@babel/parser@7.24.5': + resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} engines: {node: '>=6.0.0'} hasBin: true @@ -1678,8 +1700,12 @@ packages: resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.24.0': - resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} + '@babel/traverse@7.24.5': + resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.5': + resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -2063,8 +2089,8 @@ packages: resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.1.1': - resolution: {integrity: sha512-5WoDz3Y19Bg2BnErkZTp0en+c/i9PvgFS7MBe1+m60HjFr0hrphlAGp4yzI7pxpt4xShln4ZyYp4neJm8hmOkQ==} + '@eslint/js@9.2.0': + resolution: {integrity: sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@humanwhocodes/config-array@0.13.0': @@ -2371,12 +2397,6 @@ packages: rollup: optional: true - '@rollup/plugin-node-resolve@11.2.1': - resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - '@rollup/plugin-node-resolve@15.2.3': resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} engines: {node: '>=14.0.0'} @@ -2391,6 +2411,15 @@ packages: peerDependencies: rollup: ^1.20.0 || ^2.0.0 + '@rollup/plugin-terser@0.4.4': + resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + '@rollup/pluginutils@3.1.0': resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} @@ -2406,83 +2435,83 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.17.0': - resolution: {integrity: sha512-nNvLvC2fjC+3+bHYN9uaGF3gcyy7RHGZhtl8TB/kINj9hiOQza8kWJGZh47GRPMrqeseO8U+Z8ElDMCZlWBdHA==} + '@rollup/rollup-android-arm-eabi@4.17.2': + resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.17.0': - resolution: {integrity: sha512-+kjt6dvxnyTIAo7oHeYseYhDyZ7xRKTNl/FoQI96PHkJVxoChldJnne/LzYqpqidoK1/0kX0/q+5rrYqjpth6w==} + '@rollup/rollup-android-arm64@4.17.2': + resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.17.0': - resolution: {integrity: sha512-Oj6Tp0unMpGTBjvNwbSRv3DopMNLu+mjBzhKTt2zLbDJ/45fB1pltr/rqrO4bE95LzuYwhYn127pop+x/pzf5w==} + '@rollup/rollup-darwin-arm64@4.17.2': + resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.17.0': - resolution: {integrity: sha512-3nJx0T+yptxMd+v93rBRxSPTAVCv8szu/fGZDJiKX7kvRe9sENj2ggXjCH/KK1xZEmJOhaNo0c9sGMgGdfkvEw==} + '@rollup/rollup-darwin-x64@4.17.2': + resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.17.0': - resolution: {integrity: sha512-Vb2e8p9b2lxxgqyOlBHmp6hJMu/HSU6g//6Tbr7x5V1DlPCHWLOm37nSIVK314f+IHzORyAQSqL7+9tELxX3zQ==} + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.17.0': - resolution: {integrity: sha512-Md60KsmC5ZIaRq/bYYDloklgU+XLEZwS2EXXVcSpiUw+13/ZASvSWQ/P92rQ9YDCL6EIoXxuQ829JkReqdYbGg==} + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.17.0': - resolution: {integrity: sha512-zL5rBFtJ+2EGnMRm2TqKjdjgFqlotSU+ZJEN37nV+fiD3I6Gy0dUh3jBWN0wSlcXVDEJYW7YBe+/2j0N9unb2w==} + '@rollup/rollup-linux-arm64-gnu@4.17.2': + resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.17.0': - resolution: {integrity: sha512-s2xAyNkJqUdtRVgNK4NK4P9QttS538JuX/kfVQOdZDI5FIKVAUVdLW7qhGfmaySJ1EvN/Bnj9oPm5go9u8navg==} + '@rollup/rollup-linux-arm64-musl@4.17.2': + resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.17.0': - resolution: {integrity: sha512-7F99yzVT67B7IUNMjLD9QCFDCyHkyCJMS1dywZrGgVFJao4VJ9szrIEgH67cR+bXQgEaY01ur/WSL6B0jtcLyA==} + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.17.0': - resolution: {integrity: sha512-leFtyiXisfa3Sg9pgZJwRKITWnrQfhtqDjCamnZhkZuIsk1FXmYwKoTkp6lsCgimIcneFFkHKp/yGLxDesga4g==} + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.17.0': - resolution: {integrity: sha512-FtOgui6qMJ4jbSXTxElsy/60LEe/3U0rXkkz2G5CJ9rbHPAvjMvI+3qF0A0fwLQ5hW+/ZC6PbnS2KfRW9JkgDQ==} + '@rollup/rollup-linux-s390x-gnu@4.17.2': + resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.17.0': - resolution: {integrity: sha512-v6eiam/1w3HUfU/ZjzIDodencqgrSqzlNuNtiwH7PFJHYSo1ezL0/UIzmS2lpSJF1ORNaplXeKHYmmdt81vV2g==} + '@rollup/rollup-linux-x64-gnu@4.17.2': + resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.17.0': - resolution: {integrity: sha512-OUhkSdpM5ofVlVU2k4CwVubYwiwu1a4jYWPpubzN7Vzao73GoPBowHcCfaRSFRz1SszJ3HIsk3dZYk4kzbqjgw==} + '@rollup/rollup-linux-x64-musl@4.17.2': + resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.17.0': - resolution: {integrity: sha512-uL7UYO/MNJPGL/yflybI+HI+n6+4vlfZmQZOCb4I+z/zy1wisHT3exh7oNQsnL6Eso0EUTEfgQ/PaGzzXf6XyQ==} + '@rollup/rollup-win32-arm64-msvc@4.17.2': + resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.17.0': - resolution: {integrity: sha512-4WnSgaUiUmXILwFqREdOcqvSj6GD/7FrvSjhaDjmwakX9w4Z2F8JwiSP1AZZbuRkPqzi444UI5FPv33VKOWYFQ==} + '@rollup/rollup-win32-ia32-msvc@4.17.2': + resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.17.0': - resolution: {integrity: sha512-ve+D8t1prRSRnF2S3pyDtTXDlvW1Pngbz76tjgYFQW1jxVSysmQCZfPoDAo4WP+Ano8zeYp85LsArZBI12HfwQ==} + '@rollup/rollup-win32-x64-msvc@4.17.2': + resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} cpu: [x64] os: [win32] @@ -2546,6 +2575,9 @@ packages: '@shikijs/core@1.3.0': resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==} + '@shikijs/core@1.4.0': + resolution: {integrity: sha512-CxpKLntAi64h3j+TwWqVIQObPTED0FyXLHTTh3MKXtqiQNn2JGcMQQ362LftDbc9kYbDtrksNMNoVmVXzKFYUQ==} + '@shikijs/transformers@1.3.0': resolution: {integrity: sha512-3mlpg2I9CjhjE96dEWQOGeCWoPcyTov3s4aAsHmgvnTHa8MBknEnCQy8/xivJPSpD+olqOqIEoHnLfbNJK29AA==} @@ -2583,8 +2615,8 @@ packages: '@surma/rollup-plugin-off-main-thread@2.2.3': resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} - '@sxzz/eslint-config@3.9.1': - resolution: {integrity: sha512-tMW17HKW4qTButk/2GvloSZCG0ANBJ0HpjehpiuC752gYurBcA6+yT3OZ4fMNXW1WB9qoFhjY8/PtQrLEFvEKg==} + '@sxzz/eslint-config@3.11.0': + resolution: {integrity: sha512-VH891imLZRb05L5xsmPrh70eYPUQPOMtqeBR7x2+LNbGt3LeW3s3HWAzoht47t+M0gDKsbLwqW+38UWcwrnMNw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 || ^9.0.0 @@ -2663,15 +2695,12 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@20.12.7': - resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} + '@types/node@20.12.8': + resolution: {integrity: sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/resolve@1.17.1': - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -2690,8 +2719,8 @@ packages: '@types/web-bluetooth@0.0.20': resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} - '@typescript-eslint/eslint-plugin@7.6.0': - resolution: {integrity: sha512-gKmTNwZnblUdnTIJu3e9kmeRRzV2j1a/LUO27KNNAnIC5zjy1aSvXSRp4rVNlmAoHlQ7HzX42NbKpcSr4jF80A==} + '@typescript-eslint/eslint-plugin@7.8.0': + resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -2701,8 +2730,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@7.6.0': - resolution: {integrity: sha512-usPMPHcwX3ZoPWnBnhhorc14NJw9J4HpSXQX4urF2TPKG0au0XhJoZyX62fmvdHONUkmyUe74Hzm1//XA+BoYg==} + '@typescript-eslint/parser@7.8.0': + resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -2711,16 +2740,16 @@ packages: typescript: optional: true - '@typescript-eslint/scope-manager@6.21.0': - resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@7.6.0': resolution: {integrity: sha512-ngttyfExA5PsHSx0rdFgnADMYQi+Zkeiv4/ZxGYUWd0nLs63Ha0ksmp8VMxAIC0wtCFxMos7Lt3PszJssG/E6w==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/type-utils@7.6.0': - resolution: {integrity: sha512-NxAfqAPNLG6LTmy7uZgpK8KcuiS2NZD/HlThPXQRGwz6u7MDBWRVliEEl1Gj6U7++kVJTpehkhZzCJLMK66Scw==} + '@typescript-eslint/scope-manager@7.8.0': + resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/type-utils@7.8.0': + resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -2729,25 +2758,25 @@ packages: typescript: optional: true - '@typescript-eslint/types@6.21.0': - resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@7.6.0': resolution: {integrity: sha512-h02rYQn8J+MureCvHVVzhl69/GAfQGPQZmOMjG1KfCl7o3HtMSlPaPUAPu6lLctXI5ySRGIYk94clD/AUMCUgQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/typescript-estree@6.21.0': - resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/types@7.8.0': + resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/typescript-estree@7.6.0': + resolution: {integrity: sha512-+7Y/GP9VuYibecrCQWSKgl3GvUM5cILRttpWtnAu8GNL9j11e4tbuGZmZjJ8ejnKYyBRb2ddGQ3rEFCq3QjMJw==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/typescript-estree@7.6.0': - resolution: {integrity: sha512-+7Y/GP9VuYibecrCQWSKgl3GvUM5cILRttpWtnAu8GNL9j11e4tbuGZmZjJ8ejnKYyBRb2ddGQ3rEFCq3QjMJw==} + '@typescript-eslint/typescript-estree@7.8.0': + resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -2755,26 +2784,26 @@ packages: typescript: optional: true - '@typescript-eslint/utils@6.21.0': - resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@7.6.0': resolution: {integrity: sha512-x54gaSsRRI+Nwz59TXpCsr6harB98qjXYzsRxGqvA5Ue3kQH+FxS7FYU81g/omn22ML2pZJkisy6Q+ElK8pBCA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/visitor-keys@6.21.0': - resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/utils@7.8.0': + resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 '@typescript-eslint/visitor-keys@7.6.0': resolution: {integrity: sha512-4eLB7t+LlNUmXzfOu1VAIAdkjbu5xNSerURS9X/S5TUKWFRpXRQZbmtPqgKmYx8bj3J0irtQXSiWAOY82v+cgw==} engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/visitor-keys@7.8.0': + resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==} + engines: {node: ^18.18.0 || >=20.0.0} + '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} @@ -2791,22 +2820,15 @@ packages: engines: {node: '>=14'} hasBin: true - '@unocss/config@0.59.0': - resolution: {integrity: sha512-uBsLXmT8Dap6YRHSdlsVLYev8L6JVK6vUFcVCe0w7B74TC+GceE13lNOG3Zhz1EVfHaOrUEcYFthDILUkjBR3Q==} - engines: {node: '>=14'} - '@unocss/config@0.59.4': resolution: {integrity: sha512-h3yhj+D5Ygn5R7gbK4wMrtXZX6FF5DF6YD517sSSb0XB3lxHD9PhhT4HaV1hpHknvu0cMFU3460M45+TN1TI0Q==} engines: {node: '>=14'} - '@unocss/core@0.59.0': - resolution: {integrity: sha512-9tXL6TV4FRpmFy70dHryA5NHsS7bV/x771LOPnZyiw+TRK4oGVk96IsATOflcn7L3FbXQY1mV+8Uzhkhx2PY0A==} - '@unocss/core@0.59.4': resolution: {integrity: sha512-bBZ1sgcAtezQVZ1BST9IS3jqcsTLyqKNjiIf7FTnX3DHpfpYuMDFzSOtmkZDzBleOLO/CtcRWjT0HwTSQAmV0A==} - '@unocss/eslint-plugin@0.59.0': - resolution: {integrity: sha512-/tjX9Z84/EQy5UFR4xn+1aoXKTkAGH3roQMYPPS+cmbchy9vjgON/6mWvm1oRwHHt9RnLsCM/uT0IT/QfS4W7g==} + '@unocss/eslint-plugin@0.59.4': + resolution: {integrity: sha512-bWxr0ax0X8F97/JcQ8V34Zl4ZSPklMkYAExj+svfanng7i6ymBCmMDfSVcNjb7VJFP1ealNuEnJ9PJcV0N0aQQ==} engines: {node: '>=14'} '@unocss/extractor-arbitrary-variants@0.59.4': @@ -2873,11 +2895,11 @@ packages: peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 - '@vite-pwa/vitepress@0.4.0': - resolution: {integrity: sha512-MrsSCK5EBCzQAQgq5/3XHaFIjkypda58Wzy6PkDwZoRHnWexik0C2GUxMOe+RA+qdpGxB0mEkhqajeOmuYMvhw==} + '@vite-pwa/vitepress@0.5.0': + resolution: {integrity: sha512-a+BnACLMYOf/u2o6RhOJIdJgOW9wym9mTJGWbOLzFHE+fPjg+z1t/Xqm9LvOBQYEDIkrGrf+KxN4COQ0B8hbHg==} peerDependencies: '@vite-pwa/assets-generator': ^0.2.4 - vite-plugin-pwa: '>=0.19.0 <1' + vite-plugin-pwa: '>=0.20.0 <1' peerDependenciesMeta: '@vite-pwa/assets-generator': optional: true @@ -2910,30 +2932,30 @@ packages: vite: ^5.0.0 vue: ^3.2.25 - '@vitest/coverage-v8@1.5.2': - resolution: {integrity: sha512-QJqxRnbCwNtbbegK9E93rBmhN3dbfG1bC/o52Bqr0zGCYhQzwgwvrJBG7Q8vw3zilX6Ryy6oa/mkZku2lLJx1Q==} + '@vitest/coverage-v8@1.6.0': + resolution: {integrity: sha512-KvapcbMY/8GYIG0rlwwOKCVNRc0OL20rrhFkg/CHNzncV03TE2XWvO5w9uZYoxNiMEBacAJt3unSOiZ7svePew==} peerDependencies: - vitest: 1.5.2 + vitest: 1.6.0 - '@vitest/expect@1.5.2': - resolution: {integrity: sha512-rf7MTD1WCoDlN3FfYJ9Llfp0PbdtOMZ3FIF0AVkDnKbp3oiMW1c8AmvRZBcqbAhDUAvF52e9zx4WQM1r3oraVA==} + '@vitest/expect@1.6.0': + resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==} - '@vitest/runner@1.5.2': - resolution: {integrity: sha512-7IJ7sJhMZrqx7HIEpv3WrMYcq8ZNz9L6alo81Y6f8hV5mIE6yVZsFoivLZmr0D777klm1ReqonE9LyChdcmw6g==} + '@vitest/runner@1.6.0': + resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==} - '@vitest/snapshot@1.5.2': - resolution: {integrity: sha512-CTEp/lTYos8fuCc9+Z55Ga5NVPKUgExritjF5VY7heRFUfheoAqBneUlvXSUJHUZPjnPmyZA96yLRJDP1QATFQ==} + '@vitest/snapshot@1.6.0': + resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==} - '@vitest/spy@1.5.2': - resolution: {integrity: sha512-xCcPvI8JpCtgikT9nLpHPL1/81AYqZy1GCy4+MCHBE7xi8jgsYkULpW5hrx5PGLgOQjUpb6fd15lqcriJ40tfQ==} + '@vitest/spy@1.6.0': + resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==} - '@vitest/ui@1.5.2': - resolution: {integrity: sha512-pYDitwgCOn7i3FH7Ka94G70dmj85xpBA42BaWCx82blPehyVO8FU6OLHNP9iAKJIHaIOXwZ+bgOXYSj3wZCxFA==} + '@vitest/ui@1.6.0': + resolution: {integrity: sha512-k3Lyo+ONLOgylctiGovRKy7V4+dIN2yxstX3eY5cWFXH6WP+ooVX79YSyi0GagdTQzLmT43BF27T0s6dOIPBXA==} peerDependencies: - vitest: 1.5.2 + vitest: 1.6.0 - '@vitest/utils@1.5.2': - resolution: {integrity: sha512-sWOmyofuXLJ85VvXNsroZur7mOJGiQeM0JN3/0D1uU8U9bGFM69X1iqHaRXl6R8BwaLY6yPCogP257zxTzkUdA==} + '@vitest/utils@1.6.0': + resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} '@volar/language-core@2.2.0': resolution: {integrity: sha512-a8WG9+4OdeNDW4ywABZIM6S6UN7em8uIlM/BZ2pWQUYrVmX+m8sj/X+QadvO+Li/t/LjAqbWJQtVgxdpEWLALQ==} @@ -3007,20 +3029,20 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.4.25': - resolution: {integrity: sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==} + '@vue/compiler-core@3.4.26': + resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==} - '@vue/compiler-dom@3.4.25': - resolution: {integrity: sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==} + '@vue/compiler-dom@3.4.26': + resolution: {integrity: sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA==} '@vue/compiler-sfc@2.7.16': resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==} - '@vue/compiler-sfc@3.4.25': - resolution: {integrity: sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==} + '@vue/compiler-sfc@3.4.26': + resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==} - '@vue/compiler-ssr@3.4.25': - resolution: {integrity: sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==} + '@vue/compiler-ssr@3.4.26': + resolution: {integrity: sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ==} '@vue/devtools-api@7.1.3': resolution: {integrity: sha512-W8IwFJ/o5iUk78jpqhvScbgCsPiOp2uileDVC0NDtW38gCWhsnu9SeBTjcdu3lbwLdsjc+H1c5Msd/x9ApbcFA==} @@ -3060,19 +3082,19 @@ packages: '@vue/reactivity@3.4.21': resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==} - '@vue/reactivity@3.4.25': - resolution: {integrity: sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==} + '@vue/reactivity@3.4.26': + resolution: {integrity: sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ==} - '@vue/runtime-core@3.4.25': - resolution: {integrity: sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==} + '@vue/runtime-core@3.4.26': + resolution: {integrity: sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw==} - '@vue/runtime-dom@3.4.25': - resolution: {integrity: sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==} + '@vue/runtime-dom@3.4.26': + resolution: {integrity: sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw==} - '@vue/server-renderer@3.4.25': - resolution: {integrity: sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==} + '@vue/server-renderer@3.4.26': + resolution: {integrity: sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw==} peerDependencies: - vue: 3.4.25 + vue: 3.4.26 '@vue/shared@3.4.21': resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==} @@ -3080,6 +3102,9 @@ packages: '@vue/shared@3.4.25': resolution: {integrity: sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==} + '@vue/shared@3.4.26': + resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==} + '@vueuse/components@10.9.0': resolution: {integrity: sha512-BHQpA0yIi3y7zKa1gYD0FUzLLkcRTqVhP8smnvsCK6GFpd94Nziq1XVPD7YpFeho0k5BzbBiNZF7V/DpkJ967A==} @@ -3310,8 +3335,8 @@ packages: resolution: {integrity: sha512-0ZdQEsSfH3mX4BFbRCc3xOBjx5bDbm73+aAdQOHerPQNf8K0XFMAv79ucd2BpnSc4UMyvBDixiroT8yjm2Y6bw==} engines: {node: '>=16.14.0'} - astro@4.7.0: - resolution: {integrity: sha512-YC24nK6/UNelVob+4RoJPDgZJdpaJarIU85D/UxCrlsYJlLqrW8hXq7A9T6BXNs+puF9pJrYlqaJNCRO+928XA==} + astro@4.7.1: + resolution: {integrity: sha512-3o+VmnIPBiCm0QVyyTC/F8humNXny5YpI+MKvBTksviRtKxhnztEA3+GAR2XWLUSOx1+/GVjz7mExq3hJGOeqQ==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} hasBin: true @@ -3544,8 +3569,8 @@ packages: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} - clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} color-convert@1.9.3: @@ -3927,6 +3952,11 @@ packages: peerDependencies: eslint: '*' + eslint-plugin-command@0.1.8: + resolution: {integrity: sha512-QNkBKbkImGdwwcyTwF9ZoLoOrT3oBFLiJHoLF9ugsCAItRBURpZXLm/n6LrJWLWeHBqD42LdEYjbUmuMdRxRoA==} + peerDependencies: + eslint: '*' + eslint-plugin-es-x@7.5.0: resolution: {integrity: sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==} engines: {node: ^14.18.0 || >=16.0.0} @@ -3945,26 +3975,26 @@ packages: peerDependencies: eslint: ^8.56.0 || ^9.0.0-0 - eslint-plugin-jsonc@2.15.0: - resolution: {integrity: sha512-wAphMVgTQPAKAYV8d/QEkEYDg8uer9nMQ85N17IUiJcAWLxJs83/Exe59dEH9yKUpvpLf46H+wR7/U7lZ3/NpQ==} + eslint-plugin-jsonc@2.15.1: + resolution: {integrity: sha512-PVFrqIJa8BbM/e828RSn0SwB/Z5ye+2LDuy2XqG6AymNgPsfApRRcznsbxP7VrjdLEU4Nb+g9n/d6opyp0jp9A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' - eslint-plugin-markdown@4.0.1: - resolution: {integrity: sha512-5/MnGvYU0i8MbHH5cg8S+Vl3DL+bqRNYshk1xUO86DilNBaxtTkhH+5FD0/yO03AmlI6+lfNFdk2yOw72EPzpA==} + eslint-plugin-markdown@5.0.0: + resolution: {integrity: sha512-kY2u9yDhzvfZ0kmRTsvgm3mTnvZgTSGIIPeHg3yesSx4R5CTCnITUjCPhzCD1MUhNcqHU5Tr6lzx+02EclVPbw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8' - eslint-plugin-n@16.6.2: - resolution: {integrity: sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==} - engines: {node: '>=16.0.0'} + eslint-plugin-n@17.4.0: + resolution: {integrity: sha512-RtgGgNpYxECwE9dFr+D66RtbN0B8r/fY6ZF8EVsmK2YnZxE8/n9LNQhgnkL9z37UFZjYVmvMuC32qu7fQBsLVQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: '>=7.0.0' + eslint: '>=8.23.0' - eslint-plugin-perfectionist@2.8.0: - resolution: {integrity: sha512-XBjQ4ctU1rOzQ4bFJoUowe8XdsIIz42JqNrouFlae1TO78HjoyYBaRP8+gAHDDQCSdHY10pbChyzlJeBA6D51w==} + eslint-plugin-perfectionist@2.10.0: + resolution: {integrity: sha512-P+tdrkHeMWBc55+DZsoDOAftV1WCsEoHaKm6JC7zajFus/syfT4vUPBFb3atGFSuyaVnGQGHlcKpP9X3Q0gH/w==} peerDependencies: astro-eslint-parser: ^0.16.0 eslint: '>=8.0.0' @@ -4001,8 +4031,8 @@ packages: peerDependencies: eslint: '>=8.56.0' - eslint-plugin-unused-imports@3.1.0: - resolution: {integrity: sha512-9l1YFCzXKkw1qtAru1RWUtG2EVDZY0a0eChKXcL+EZ5jitG7qxdctu4RnvhOJHv4xfmUf7h+JJPINlVpGhZMrw==} + eslint-plugin-unused-imports@3.2.0: + resolution: {integrity: sha512-6uXyn6xdINEpxE1MtDjxQsyXB37lfyO2yKGVVgtD7WEWQGORSOZjgrD6hBhvGv4/SO+TOlS+UnC6JppRqbuwGQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': 6 - 7 @@ -4011,8 +4041,8 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@9.24.1: - resolution: {integrity: sha512-wk3SuwmS1pZdcuJlokGYEi/buDOwD6KltvhIZyOnpJ/378dcQ4zchu9PAMbbLAaydCz1iYc5AozszcOOgZIIOg==} + eslint-plugin-vue@9.25.0: + resolution: {integrity: sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -4047,8 +4077,8 @@ packages: resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.1.1: - resolution: {integrity: sha512-b4cRQ0BeZcSEzPpY2PjFY70VbO32K7BStTGtBsnIGdTSEEQzBi8hPBcGQmTG2zUvFr9uLe0TK42bw8YszuHEqg==} + eslint@9.2.0: + resolution: {integrity: sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true @@ -4338,8 +4368,8 @@ packages: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} - globals@15.0.0: - resolution: {integrity: sha512-m/C/yR4mjO6pXDTm9/R/SpYTAIyaUB4EOzcaaMEl7mds7Mshct9GfejiJNQGjHHbdMPey13Kpu4TMbYi9ex1pw==} + globals@15.1.0: + resolution: {integrity: sha512-926gJqg+4mkxwYKiFvoomM4J0kWESfk3qfTvRL2/oc/tK/eTDBbrfcKnSa2KtfdxB5onoL7D3A3qIHQFpd4+UA==} engines: {node: '>=18'} globalthis@1.0.3: @@ -4773,10 +4803,6 @@ packages: engines: {node: '>=10'} hasBin: true - jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} - jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} @@ -4980,6 +5006,10 @@ packages: resolution: {integrity: sha512-mxjxZ5zoR4+ybulZ7Z5qdZUTdAfiKJ1Il80kN/I4jWsHTTqNKZ9KsBa3Jepo+3U09I04qiyC2+7MZD8v4rJOoA==} engines: {node: '>=16.14.0'} + magic-string-ast@0.6.0: + resolution: {integrity: sha512-TFODfAlfOZmuhFQ+h9qKDhL13un2FCoJ1bqWuhT5kUXr35W4tkcOWqvoCvKpuXymLcVAaNpFIvDZbope1pXGww==} + engines: {node: '>=16.14.0'} + magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} @@ -5868,19 +5898,13 @@ packages: esbuild: '>=0.18.0' rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 - rollup-plugin-terser@7.0.2: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} - deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser - peerDependencies: - rollup: ^2.0.0 - rollup@2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} hasBin: true - rollup@4.17.0: - resolution: {integrity: sha512-wZJSn0WMtWrxhYKQRt5Z6GIXlziOoMDFmbHmRfL3v+sBTAshx2DBq1AfMArB7eIjF63r4ocn2ZTAyUptg/7kmQ==} + rollup@4.17.2: + resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -5929,9 +5953,6 @@ packages: engines: {node: '>=10'} hasBin: true - serialize-javascript@4.0.0: - resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} - serialize-javascript@6.0.2: resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} @@ -5972,6 +5993,9 @@ packages: shiki@1.3.0: resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==} + shiki@1.4.0: + resolution: {integrity: sha512-5WIn0OL8PWm7JhnTwRWXniy6eEDY234mRrERVlFa646V2ErQqwIFd2UML7e0Pq9eqSKLoMa3Ke+xbsF+DAuy+Q==} + side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} @@ -6020,6 +6044,9 @@ packages: engines: {node: '>=6'} hasBin: true + smob@1.5.0: + resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} + socks-proxy-agent@8.0.2: resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} engines: {node: '>= 14'} @@ -6351,8 +6378,8 @@ packages: typescript: optional: true - tsx@4.8.2: - resolution: {integrity: sha512-hmmzS4U4mdy1Cnzpl/NQiPUC2k34EcNSTZYVJThYKhdqTwuBeF+4cG9KUK/PFQ7KHaAaYwqlb7QfmsE2nuj+WA==} + tsx@4.9.3: + resolution: {integrity: sha512-czVbetlILiyJZI5zGlj2kw9vFiSeyra9liPD4nG+Thh4pKTi0AmMEQ8zdV/L2xbIVKrIqif4sUNrsMAOksx9Zg==} engines: {node: '>=18.0.0'} hasBin: true @@ -6397,8 +6424,8 @@ packages: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} - type-fest@4.17.0: - resolution: {integrity: sha512-9flrz1zkfLRH3jO3bLflmTxryzKMxVa7841VeMgBaNQGY6vH4RCcpN/sQLB7mQQYh1GZ5utT2deypMuCy4yicw==} + type-fest@4.18.1: + resolution: {integrity: sha512-qXhgeNsX15bM63h5aapNFcQid9jRF/l3ojDoDFmekDQEUufZ9U4ErVt6SjDxnHp48Ltrw616R8yNc3giJ3KvVQ==} engines: {node: '>=16'} typed-array-buffer@1.0.2: @@ -6417,8 +6444,8 @@ packages: resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==} engines: {node: '>= 0.4'} - typescript-eslint@7.6.0: - resolution: {integrity: sha512-LY6vH6F1l5jpGqRtU+uK4+mOecIb4Cd4kaz1hAiJrgnNiHUA8wiw8BkJyYS+MRLM69F1QuSKwtGlQqnGl1Rc6w==} + typescript-eslint@7.8.0: + resolution: {integrity: sha512-sheFG+/D8N/L7gC3WT0Q8sB97Nm573Yfr+vZFzl/4nBdYcmviBPtwGSX9TJ7wpVg28ocerKVOt+k2eGmHzcgVA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -6441,9 +6468,6 @@ packages: unconfig@0.3.11: resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==} - unconfig@0.3.12: - resolution: {integrity: sha512-oDtfWDC0TMYFuwdt7E7CaqYZGqq1wAiC12PRTFe/93IkgNi+wVlF/LCjcD/bgNkGoopb0RsU363Ge3YXy7NGSw==} - unconfig@0.3.13: resolution: {integrity: sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==} @@ -6661,6 +6685,11 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true + vite-node@1.6.0: + resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + vite-plugin-inspect@0.8.4: resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==} engines: {node: '>=14'} @@ -6671,8 +6700,8 @@ packages: '@nuxt/kit': optional: true - vite-plugin-pwa@0.19.8: - resolution: {integrity: sha512-e1oK0dfhzhDhY3VBuML6c0h8Xfx6EkOVYqolj7g+u8eRfdauZe5RLteCIA/c5gH0CBQ0CNFAuv/AFTx4Z7IXTw==} + vite-plugin-pwa@0.20.0: + resolution: {integrity: sha512-/kDZyqF8KqoXRpMUQtR5Atri/7BWayW8Gp7Kz/4bfstsV6zSFTxjREbXZYL7zSuRL40HGA+o2hvUAFRmC+bL7g==} engines: {node: '>=16.0.0'} peerDependencies: '@vite-pwa/assets-generator': ^0.2.4 @@ -6725,6 +6754,34 @@ packages: terser: optional: true + vite@5.2.11: + resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + vitefu@0.2.5: resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} peerDependencies: @@ -6745,15 +6802,15 @@ packages: postcss: optional: true - vitest@1.5.2: - resolution: {integrity: sha512-l9gwIkq16ug3xY7BxHwcBQovLZG75zZL0PlsiYQbf76Rz6QGs54416UWMtC0jXeihvHvcHrf2ROEjkQRVpoZYw==} + vitest@1.6.0: + resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 1.5.2 - '@vitest/ui': 1.5.2 + '@vitest/browser': 1.6.0 + '@vitest/ui': 1.6.0 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -6815,8 +6872,8 @@ packages: resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==} deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details. - vue@3.4.25: - resolution: {integrity: sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==} + vue@3.4.26: + resolution: {integrity: sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -6912,55 +6969,54 @@ packages: resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} engines: {node: '>=12'} - workbox-background-sync@7.0.0: - resolution: {integrity: sha512-S+m1+84gjdueM+jIKZ+I0Lx0BDHkk5Nu6a3kTVxP4fdj3gKouRNmhO8H290ybnJTOPfBDtTMXSQA/QLTvr7PeA==} + workbox-background-sync@7.1.0: + resolution: {integrity: sha512-rMbgrzueVWDFcEq1610YyDW71z0oAXLfdRHRQcKw4SGihkfOK0JUEvqWHFwA6rJ+6TClnMIn7KQI5PNN1XQXwQ==} - workbox-broadcast-update@7.0.0: - resolution: {integrity: sha512-oUuh4jzZrLySOo0tC0WoKiSg90bVAcnE98uW7F8GFiSOXnhogfNDGZelPJa+6KpGBO5+Qelv04Hqx2UD+BJqNQ==} + workbox-broadcast-update@7.1.0: + resolution: {integrity: sha512-O36hIfhjej/c5ar95pO67k1GQw0/bw5tKP7CERNgK+JdxBANQhDmIuOXZTNvwb2IHBx9hj2kxvcDyRIh5nzOgQ==} - workbox-build@7.0.0: - resolution: {integrity: sha512-CttE7WCYW9sZC+nUYhQg3WzzGPr4IHmrPnjKiu3AMXsiNQKx+l4hHl63WTrnicLmKEKHScWDH8xsGBdrYgtBzg==} + workbox-build@7.1.0: + resolution: {integrity: sha512-F6R94XAxjB2j4ETMkP1EXKfjECOtDmyvt0vz3BzgWJMI68TNSXIVNkgatwUKBlPGOfy9n2F/4voYRNAhEvPJNg==} engines: {node: '>=16.0.0'} - workbox-cacheable-response@7.0.0: - resolution: {integrity: sha512-0lrtyGHn/LH8kKAJVOQfSu3/80WDc9Ma8ng0p2i/5HuUndGttH+mGMSvOskjOdFImLs2XZIimErp7tSOPmu/6g==} + workbox-cacheable-response@7.1.0: + resolution: {integrity: sha512-iwsLBll8Hvua3xCuBB9h92+/e0wdsmSVgR2ZlvcfjepZWwhd3osumQB3x9o7flj+FehtWM2VHbZn8UJeBXXo6Q==} - workbox-core@7.0.0: - resolution: {integrity: sha512-81JkAAZtfVP8darBpfRTovHg8DGAVrKFgHpOArZbdFd78VqHr5Iw65f2guwjE2NlCFbPFDoez3D3/6ZvhI/rwQ==} + workbox-core@7.1.0: + resolution: {integrity: sha512-5KB4KOY8rtL31nEF7BfvU7FMzKT4B5TkbYa2tzkS+Peqj0gayMT9SytSFtNzlrvMaWgv6y/yvP9C0IbpFjV30Q==} - workbox-expiration@7.0.0: - resolution: {integrity: sha512-MLK+fogW+pC3IWU9SFE+FRStvDVutwJMR5if1g7oBJx3qwmO69BNoJQVaMXq41R0gg3MzxVfwOGKx3i9P6sOLQ==} + workbox-expiration@7.1.0: + resolution: {integrity: sha512-m5DcMY+A63rJlPTbbBNtpJ20i3enkyOtSgYfv/l8h+D6YbbNiA0zKEkCUaMsdDlxggla1oOfRkyqTvl5Ni5KQQ==} - workbox-google-analytics@7.0.0: - resolution: {integrity: sha512-MEYM1JTn/qiC3DbpvP2BVhyIH+dV/5BjHk756u9VbwuAhu0QHyKscTnisQuz21lfRpOwiS9z4XdqeVAKol0bzg==} - deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained + workbox-google-analytics@7.1.0: + resolution: {integrity: sha512-FvE53kBQHfVTcZyczeBVRexhh7JTkyQ8HAvbVY6mXd2n2A7Oyz/9fIwnY406ZcDhvE4NFfKGjW56N4gBiqkrew==} - workbox-navigation-preload@7.0.0: - resolution: {integrity: sha512-juWCSrxo/fiMz3RsvDspeSLGmbgC0U9tKqcUPZBCf35s64wlaLXyn2KdHHXVQrb2cqF7I0Hc9siQalainmnXJA==} + workbox-navigation-preload@7.1.0: + resolution: {integrity: sha512-4wyAbo0vNI/X0uWNJhCMKxnPanNyhybsReMGN9QUpaePLTiDpKxPqFxl4oUmBNddPwIXug01eTSLVIFXimRG/A==} - workbox-precaching@7.0.0: - resolution: {integrity: sha512-EC0vol623LJqTJo1mkhD9DZmMP604vHqni3EohhQVwhJlTgyKyOkMrZNy5/QHfOby+39xqC01gv4LjOm4HSfnA==} + workbox-precaching@7.1.0: + resolution: {integrity: sha512-LyxzQts+UEpgtmfnolo0hHdNjoB7EoRWcF7EDslt+lQGd0lW4iTvvSe3v5JiIckQSB5KTW5xiCqjFviRKPj1zA==} - workbox-range-requests@7.0.0: - resolution: {integrity: sha512-SxAzoVl9j/zRU9OT5+IQs7pbJBOUOlriB8Gn9YMvi38BNZRbM+RvkujHMo8FOe9IWrqqwYgDFBfv6sk76I1yaQ==} + workbox-range-requests@7.1.0: + resolution: {integrity: sha512-m7+O4EHolNs5yb/79CrnwPR/g/PRzMFYEdo01LqwixVnc/sbzNSvKz0d04OE3aMRel1CwAAZQheRsqGDwATgPQ==} - workbox-recipes@7.0.0: - resolution: {integrity: sha512-DntcK9wuG3rYQOONWC0PejxYYIDHyWWZB/ueTbOUDQgefaeIj1kJ7pdP3LZV2lfrj8XXXBWt+JDRSw1lLLOnww==} + workbox-recipes@7.1.0: + resolution: {integrity: sha512-NRrk4ycFN9BHXJB6WrKiRX3W3w75YNrNrzSX9cEZgFB5ubeGoO8s/SDmOYVrFYp9HMw6sh1Pm3eAY/1gVS8YLg==} - workbox-routing@7.0.0: - resolution: {integrity: sha512-8YxLr3xvqidnbVeGyRGkaV4YdlKkn5qZ1LfEePW3dq+ydE73hUUJJuLmGEykW3fMX8x8mNdL0XrWgotcuZjIvA==} + workbox-routing@7.1.0: + resolution: {integrity: sha512-oOYk+kLriUY2QyHkIilxUlVcFqwduLJB7oRZIENbqPGeBP/3TWHYNNdmGNhz1dvKuw7aqvJ7CQxn27/jprlTdg==} - workbox-strategies@7.0.0: - resolution: {integrity: sha512-dg3qJU7tR/Gcd/XXOOo7x9QoCI9nk74JopaJaYAQ+ugLi57gPsXycVdBnYbayVj34m6Y8ppPwIuecrzkpBVwbA==} + workbox-strategies@7.1.0: + resolution: {integrity: sha512-/UracPiGhUNehGjRm/tLUQ+9PtWmCbRufWtV0tNrALuf+HZ4F7cmObSEK+E4/Bx1p8Syx2tM+pkIrvtyetdlew==} - workbox-streams@7.0.0: - resolution: {integrity: sha512-moVsh+5to//l6IERWceYKGiftc+prNnqOp2sgALJJFbnNVpTXzKISlTIsrWY+ogMqt+x1oMazIdHj25kBSq/HQ==} + workbox-streams@7.1.0: + resolution: {integrity: sha512-WyHAVxRXBMfysM8ORwiZnI98wvGWTVAq/lOyBjf00pXFvG0mNaVz4Ji+u+fKa/mf1i2SnTfikoYKto4ihHeS6w==} - workbox-sw@7.0.0: - resolution: {integrity: sha512-SWfEouQfjRiZ7GNABzHUKUyj8pCoe+RwjfOIajcx6J5mtgKkN+t8UToHnpaJL5UVVOf5YhJh+OHhbVNIHe+LVA==} + workbox-sw@7.1.0: + resolution: {integrity: sha512-Hml/9+/njUXBglv3dtZ9WBKHI235AQJyLBV1G7EFmh4/mUdSQuXui80RtjDeVRrXnm/6QWgRUEHG3/YBVbxtsA==} - workbox-window@7.0.0: - resolution: {integrity: sha512-j7P/bsAWE/a7sxqTzXo3P2ALb1reTfZdvVp6OJ/uLr/C2kZAMvjeWGm8V4htQhor7DOvYg0sSbFN2+flT5U0qA==} + workbox-window@7.1.0: + resolution: {integrity: sha512-ZHeROyqR+AS5UPzholQRDttLFqGMwP0Np8MKWAdyxsDETxq3qOAyXvqessc3GniohG6e0mAqSQyKOHmT8zPF7g==} wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} @@ -7056,6 +7112,9 @@ packages: zod@3.23.4: resolution: {integrity: sha512-/AtWOKbBgjzEYYQRNfoGKHObgfAZag6qUJX1VbHo2PRBgS+wfWagEY2mizjfyAPcGesrJOcx/wcl0L9WnVrHFw==} + zod@3.23.6: + resolution: {integrity: sha512-RTHJlZhsRbuA8Hmp/iNL7jnfc4nZishjsanDAfEY1QpDQZCahUp3xDzl+zfweE9BklxMUcgBgS1b7Lvie/ZVwA==} + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -7189,7 +7248,7 @@ snapshots: remark-parse: 11.0.0 remark-rehype: 11.1.0 remark-smartypants: 2.1.0 - shiki: 1.3.0 + shiki: 1.4.0 unified: 11.0.4 unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 @@ -7214,13 +7273,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@astrojs/vue@4.1.0(astro@4.7.0(@types/node@20.12.7)(terser@5.29.1)(typescript@5.4.5))(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@astrojs/vue@4.1.0(astro@4.7.1(@types/node@20.12.8)(terser@5.29.1)(typescript@5.4.5))(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vitejs/plugin-vue': 5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vue/compiler-sfc': 3.4.25 - astro: 4.7.0(@types/node@20.12.7)(terser@5.29.1)(typescript@5.4.5) - vue: 3.4.25(typescript@5.4.5) + '@vitejs/plugin-vue': 5.0.4(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vue/compiler-sfc': 3.4.26 + astro: 4.7.1(@types/node@20.12.8)(terser@5.29.1)(typescript@5.4.5) + vue: 3.4.26(typescript@5.4.5) transitivePeerDependencies: - supports-color - vite @@ -7245,10 +7304,10 @@ snapshots: '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0) '@babel/helpers': 7.24.0 - '@babel/parser': 7.24.4 + '@babel/parser': 7.24.5 '@babel/template': 7.24.0 '@babel/traverse': 7.24.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -7257,18 +7316,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.24.3': + '@babel/core@7.24.4': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helpers': 7.24.1 - '@babel/parser': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) + '@babel/helpers': 7.24.4 + '@babel/parser': 7.24.5 '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -7277,18 +7336,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.24.4': + '@babel/core@7.24.5': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.4 + '@babel/generator': 7.24.5 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helpers': 7.24.4 - '@babel/parser': 7.24.4 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helpers': 7.24.5 + '@babel/parser': 7.24.5 '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -7299,32 +7358,32 @@ snapshots: '@babel/generator@7.23.6': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - '@babel/generator@7.24.1': + '@babel/generator@7.24.4': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - '@babel/generator@7.24.4': + '@babel/generator@7.24.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 '@babel/helper-annotate-as-pure@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-compilation-targets@7.23.6': dependencies: @@ -7347,19 +7406,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -7373,16 +7419,16 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)': + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.3)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4 @@ -7396,19 +7442,23 @@ snapshots: '@babel/helper-function-name@7.23.0': dependencies: '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-hoist-variables@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-member-expression-to-functions@7.23.0': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-module-imports@7.22.15': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 + + '@babel/helper-module-imports@7.24.3': + dependencies: + '@babel/types': 7.24.5 '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0)': dependencies: @@ -7419,33 +7469,33 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)': + '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)': + '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 '@babel/helper-optimise-call-expression@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-plugin-utils@7.24.0': {} - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)': + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 @@ -7457,13 +7507,6 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -7473,49 +7516,59 @@ snapshots: '@babel/helper-simple-access@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 + + '@babel/helper-simple-access@7.24.5': + dependencies: + '@babel/types': 7.24.5 '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helper-split-export-declaration@7.22.6': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 + + '@babel/helper-split-export-declaration@7.24.5': + dependencies: + '@babel/types': 7.24.5 - '@babel/helper-string-parser@7.23.4': {} + '@babel/helper-string-parser@7.24.1': {} '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.5': {} + '@babel/helper-validator-option@7.23.5': {} '@babel/helper-wrap-function@7.22.20': dependencies: '@babel/helper-function-name': 7.23.0 '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@babel/helpers@7.24.0': dependencies: '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 transitivePeerDependencies: - supports-color - '@babel/helpers@7.24.1': + '@babel/helpers@7.24.4': dependencies: '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 transitivePeerDependencies: - supports-color - '@babel/helpers@7.24.4': + '@babel/helpers@7.24.5': dependencies: '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 transitivePeerDependencies: - supports-color @@ -7526,25 +7579,25 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.0.0 - '@babel/parser@7.24.4': + '@babel/parser@7.24.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.3)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 @@ -7555,23 +7608,23 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.24.4) - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.24.4)': @@ -7579,24 +7632,19 @@ snapshots: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.4)': @@ -7609,19 +7657,14 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.0)': @@ -7629,9 +7672,9 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.4)': + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.0)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)': @@ -7639,44 +7682,49 @@ snapshots: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)': + dependencies: + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.0)': @@ -7689,154 +7737,147 @@ snapshots: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.3)': + '@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.3)': + '@babel/plugin-transform-classes@7.23.8(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.24.0 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.3)': + '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-simple-access': 7.22.5 '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.4)': dependencies: @@ -7845,139 +7886,139 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 - '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-identifier': 7.22.20 - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)': + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.3)': + '@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.24.4)': dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.4) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4)': + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4) - '@babel/types': 7.24.0 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/types': 7.24.5 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.24.0)': @@ -7996,120 +8037,120 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/preset-env@7.24.0(@babel/core@7.24.3)': + '@babel/preset-env@7.24.0(@babel/core@7.24.4)': dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.3) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.3) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.24.3) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.3) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3) - babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.24.3) - babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.3) - babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.3) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.24.4) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.24.4) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.24.4) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.24.4) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.24.4) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.24.4) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.24.4) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4) + babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.24.4) + babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.24.4) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.24.4) core-js-compat: 3.36.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 esutils: 2.0.3 '@babel/preset-typescript@7.24.1(@babel/core@7.24.4)': @@ -8132,19 +8173,19 @@ snapshots: '@babel/template@7.24.0': dependencies: '@babel/code-frame': 7.24.2 - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 '@babel/traverse@7.24.0': dependencies: '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.1 + '@babel/generator': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -8153,22 +8194,37 @@ snapshots: '@babel/traverse@7.24.1': dependencies: '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.1 + '@babel/generator': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.24.0': + '@babel/traverse@7.24.5': dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.24.5': + dependencies: + '@babel/helper-string-parser': 7.24.1 + '@babel/helper-validator-identifier': 7.24.5 to-fast-properties: 2.0.0 '@bcoe/v8-coverage@0.2.3': {} @@ -8501,9 +8557,9 @@ snapshots: '@esbuild/win32-x64@0.20.2': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.1.1)': + '@eslint-community/eslint-utils@4.4.0(eslint@9.2.0)': dependencies: - eslint: 9.1.1 + eslint: 9.2.0 eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.10.0': {} @@ -8536,7 +8592,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.1.1': {} + '@eslint/js@9.2.0': {} '@humanwhocodes/config-array@0.13.0': dependencies: @@ -8792,12 +8848,12 @@ snapshots: - bluebird - supports-color - '@nuxt/devtools-kit@1.2.0(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))': + '@nuxt/devtools-kit@1.2.0(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))': dependencies: - '@nuxt/kit': 3.11.2(rollup@4.17.0) - '@nuxt/schema': 3.11.2(rollup@4.17.0) + '@nuxt/kit': 3.11.2(rollup@4.17.2) + '@nuxt/schema': 3.11.2(rollup@4.17.2) execa: 7.2.0 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - rollup - supports-color @@ -8815,15 +8871,15 @@ snapshots: rc9: 2.1.2 semver: 7.6.0 - '@nuxt/devtools@1.2.0(@unocss/reset@0.59.4)(rollup@4.17.0)(unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@nuxt/devtools@1.2.0(@unocss/reset@0.59.4)(rollup@4.17.2)(unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: '@antfu/utils': 0.7.7 - '@nuxt/devtools-kit': 1.2.0(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + '@nuxt/devtools-kit': 1.2.0(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) '@nuxt/devtools-wizard': 1.2.0 - '@nuxt/kit': 3.11.2(rollup@4.17.0) - '@vue/devtools-applet': 7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vue/devtools-core': 7.1.3(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vue/devtools-kit': 7.1.3(vue@3.4.25(typescript@5.4.5)) + '@nuxt/kit': 3.11.2(rollup@4.17.2) + '@vue/devtools-applet': 7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vue/devtools-core': 7.1.3(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5)) birpc: 0.2.17 consola: 3.2.3 cronstrue: 2.49.0 @@ -8850,10 +8906,10 @@ snapshots: semver: 7.6.0 simple-git: 3.24.0 sirv: 2.0.4 - unimport: 3.7.1(rollup@4.17.0) - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.0))(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) - vite-plugin-vue-inspector: 4.0.2(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + unimport: 3.7.1(rollup@4.17.2) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) + vite-plugin-vue-inspector: 4.0.2(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) which: 3.0.1 ws: 8.16.0 transitivePeerDependencies: @@ -8879,9 +8935,9 @@ snapshots: - utf-8-validate - vue - '@nuxt/kit@3.11.2(rollup@4.17.0)': + '@nuxt/kit@3.11.2(rollup@4.17.2)': dependencies: - '@nuxt/schema': 3.11.2(rollup@4.17.0) + '@nuxt/schema': 3.11.2(rollup@4.17.2) c12: 1.10.0 consola: 3.2.3 defu: 6.1.4 @@ -8897,13 +8953,13 @@ snapshots: semver: 7.6.0 ufo: 1.5.3 unctx: 2.3.1 - unimport: 3.7.1(rollup@4.17.0) + unimport: 3.7.1(rollup@4.17.2) untyped: 1.4.2 transitivePeerDependencies: - rollup - supports-color - '@nuxt/schema@3.11.2(rollup@4.17.0)': + '@nuxt/schema@3.11.2(rollup@4.17.2)': dependencies: '@nuxt/ui-templates': 1.3.3 consola: 3.2.3 @@ -8914,7 +8970,7 @@ snapshots: scule: 1.3.0 std-env: 3.7.0 ufo: 1.5.3 - unimport: 3.7.1(rollup@4.17.0) + unimport: 3.7.1(rollup@4.17.2) untyped: 1.4.2 transitivePeerDependencies: - rollup @@ -8929,52 +8985,53 @@ snapshots: '@polka/url@1.0.0-next.24': {} - '@rollup/plugin-babel@5.3.1(@babel/core@7.24.3)(@types/babel__core@7.20.5)(rollup@2.79.1)': + '@rollup/plugin-babel@5.3.1(@babel/core@7.24.4)(@types/babel__core@7.20.5)(rollup@2.79.1)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 optionalDependencies: '@types/babel__core': 7.20.5 - '@rollup/plugin-commonjs@25.0.7(rollup@4.17.0)': + '@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.10 optionalDependencies: - rollup: 4.17.0 + rollup: 4.17.2 - '@rollup/plugin-json@6.1.0(rollup@4.17.0)': + '@rollup/plugin-json@6.1.0(rollup@4.17.2)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) optionalDependencies: - rollup: 4.17.0 + rollup: 4.17.2 - '@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)': + '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': dependencies: - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) - '@types/resolve': 1.17.1 - builtin-modules: 3.3.0 + '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@types/resolve': 1.20.2 deepmerge: 4.3.1 + is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 + optionalDependencies: rollup: 2.79.1 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.0)': + '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 4.17.0 + rollup: 4.17.2 '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': dependencies: @@ -8982,6 +9039,14 @@ snapshots: magic-string: 0.25.9 rollup: 2.79.1 + '@rollup/plugin-terser@0.4.4(rollup@2.79.1)': + dependencies: + serialize-javascript: 6.0.2 + smob: 1.5.0 + terser: 5.29.1 + optionalDependencies: + rollup: 2.79.1 + '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: '@types/estree': 0.0.39 @@ -8989,60 +9054,68 @@ snapshots: picomatch: 2.3.1 rollup: 2.79.1 - '@rollup/pluginutils@5.1.0(rollup@4.17.0)': + '@rollup/pluginutils@5.1.0(rollup@2.79.1)': + dependencies: + '@types/estree': 1.0.5 + estree-walker: 2.0.2 + picomatch: 2.3.1 + optionalDependencies: + rollup: 2.79.1 + + '@rollup/pluginutils@5.1.0(rollup@4.17.2)': dependencies: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 4.17.0 + rollup: 4.17.2 - '@rollup/rollup-android-arm-eabi@4.17.0': + '@rollup/rollup-android-arm-eabi@4.17.2': optional: true - '@rollup/rollup-android-arm64@4.17.0': + '@rollup/rollup-android-arm64@4.17.2': optional: true - '@rollup/rollup-darwin-arm64@4.17.0': + '@rollup/rollup-darwin-arm64@4.17.2': optional: true - '@rollup/rollup-darwin-x64@4.17.0': + '@rollup/rollup-darwin-x64@4.17.2': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.17.0': + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.17.0': + '@rollup/rollup-linux-arm-musleabihf@4.17.2': optional: true - '@rollup/rollup-linux-arm64-gnu@4.17.0': + '@rollup/rollup-linux-arm64-gnu@4.17.2': optional: true - '@rollup/rollup-linux-arm64-musl@4.17.0': + '@rollup/rollup-linux-arm64-musl@4.17.2': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.17.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.17.0': + '@rollup/rollup-linux-riscv64-gnu@4.17.2': optional: true - '@rollup/rollup-linux-s390x-gnu@4.17.0': + '@rollup/rollup-linux-s390x-gnu@4.17.2': optional: true - '@rollup/rollup-linux-x64-gnu@4.17.0': + '@rollup/rollup-linux-x64-gnu@4.17.2': optional: true - '@rollup/rollup-linux-x64-musl@4.17.0': + '@rollup/rollup-linux-x64-musl@4.17.2': optional: true - '@rollup/rollup-win32-arm64-msvc@4.17.0': + '@rollup/rollup-win32-arm64-msvc@4.17.2': optional: true - '@rollup/rollup-win32-ia32-msvc@4.17.0': + '@rollup/rollup-win32-ia32-msvc@4.17.2': optional: true - '@rollup/rollup-win32-x64-msvc@4.17.0': + '@rollup/rollup-win32-x64-msvc@4.17.2': optional: true '@rspack/binding-darwin-arm64@0.6.3': @@ -9102,6 +9175,8 @@ snapshots: '@shikijs/core@1.3.0': {} + '@shikijs/core@1.4.0': {} + '@shikijs/transformers@1.3.0': dependencies: shiki: 1.3.0 @@ -9147,30 +9222,31 @@ snapshots: magic-string: 0.25.9 string.prototype.matchall: 4.0.10 - '@sxzz/eslint-config@3.9.1(@types/eslint@8.56.5)(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5)': + '@sxzz/eslint-config@3.11.0(@types/eslint@8.56.5)(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5)': dependencies: - '@unocss/eslint-plugin': 0.59.0(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 - eslint-config-prettier: 9.1.0(eslint@9.1.1) + '@unocss/eslint-plugin': 0.59.4(eslint@9.2.0)(typescript@5.4.5) + eslint: 9.2.0 + eslint-config-prettier: 9.1.0(eslint@9.2.0) eslint-define-config: 1.24.1 - eslint-plugin-antfu: 2.1.2(eslint@9.1.1) - eslint-plugin-eslint-comments: 3.2.0(eslint@9.1.1) - eslint-plugin-import-x: 0.5.0(eslint@9.1.1)(typescript@5.4.5) - eslint-plugin-jsonc: 2.15.0(eslint@9.1.1) - eslint-plugin-markdown: 4.0.1(eslint@9.1.1) - eslint-plugin-n: 16.6.2(eslint@9.1.1) - eslint-plugin-perfectionist: 2.8.0(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1)) - eslint-plugin-prettier: 5.1.3(@types/eslint@8.56.5)(eslint-config-prettier@9.1.0(eslint@9.1.1))(eslint@9.1.1)(prettier@3.2.5) - eslint-plugin-unicorn: 52.0.0(eslint@9.1.1) - eslint-plugin-unused-imports: 3.1.0(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1) - eslint-plugin-vue: 9.24.1(eslint@9.1.1) - eslint-plugin-yml: 1.14.0(eslint@9.1.1) - globals: 15.0.0 + eslint-plugin-antfu: 2.1.2(eslint@9.2.0) + eslint-plugin-command: 0.1.8(eslint@9.2.0) + eslint-plugin-eslint-comments: 3.2.0(eslint@9.2.0) + eslint-plugin-import-x: 0.5.0(eslint@9.2.0)(typescript@5.4.5) + eslint-plugin-jsonc: 2.15.1(eslint@9.2.0) + eslint-plugin-markdown: 5.0.0(eslint@9.2.0) + eslint-plugin-n: 17.4.0(eslint@9.2.0) + eslint-plugin-perfectionist: 2.10.0(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0)) + eslint-plugin-prettier: 5.1.3(@types/eslint@8.56.5)(eslint-config-prettier@9.1.0(eslint@9.2.0))(eslint@9.2.0)(prettier@3.2.5) + eslint-plugin-unicorn: 52.0.0(eslint@9.2.0) + eslint-plugin-unused-imports: 3.2.0(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0) + eslint-plugin-vue: 9.25.0(eslint@9.2.0) + eslint-plugin-yml: 1.14.0(eslint@9.2.0) + globals: 15.1.0 jsonc-eslint-parser: 2.4.0 local-pkg: 0.5.0 prettier: 3.2.5 - typescript-eslint: 7.6.0(eslint@9.1.1)(typescript@5.4.5) - vue-eslint-parser: 9.4.2(eslint@9.1.1) + typescript-eslint: 7.8.0(eslint@9.2.0)(typescript@5.4.5) + vue-eslint-parser: 9.4.2(eslint@9.2.0) yaml-eslint-parser: 1.2.2 transitivePeerDependencies: - '@types/eslint' @@ -9192,24 +9268,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.5 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 '@types/babel__traverse@7.20.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@types/cookie@0.6.0': {} @@ -9264,16 +9340,12 @@ snapshots: '@types/node@12.20.55': {} - '@types/node@20.12.7': + '@types/node@20.12.8': dependencies: undici-types: 5.26.5 '@types/normalize-package-data@2.4.4': {} - '@types/resolve@1.17.1': - dependencies: - '@types/node': 20.12.7 - '@types/resolve@1.20.2': {} '@types/semver@7.5.8': {} @@ -9286,16 +9358,16 @@ snapshots: '@types/web-bluetooth@0.0.20': {} - '@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 7.6.0(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 7.6.0 - '@typescript-eslint/type-utils': 7.6.0(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/utils': 7.6.0(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.6.0 + '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/type-utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.2.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 @@ -9306,53 +9378,53 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/scope-manager': 7.6.0 - '@typescript-eslint/types': 7.6.0 - '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.6.0 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.2.0 optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@6.21.0': - dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 - '@typescript-eslint/scope-manager@7.6.0': dependencies: '@typescript-eslint/types': 7.6.0 '@typescript-eslint/visitor-keys': 7.6.0 - '@typescript-eslint/type-utils@7.6.0(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/scope-manager@7.8.0': dependencies: - '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) - '@typescript-eslint/utils': 7.6.0(eslint@9.1.1)(typescript@5.4.5) + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 + + '@typescript-eslint/type-utils@7.8.0(eslint@9.2.0)(typescript@5.4.5)': + dependencies: + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.2.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@6.21.0': {} - '@typescript-eslint/types@7.6.0': {} - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': + '@typescript-eslint/types@7.8.0': {} + + '@typescript-eslint/typescript-estree@7.6.0(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 + '@typescript-eslint/types': 7.6.0 + '@typescript-eslint/visitor-keys': 7.6.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - minimatch: 9.0.3 + minimatch: 9.0.4 semver: 7.6.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: @@ -9360,10 +9432,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.6.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 7.6.0 - '@typescript-eslint/visitor-keys': 7.6.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -9375,60 +9447,60 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@6.21.0(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/utils@7.6.0(eslint@9.2.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) - eslint: 9.1.1 + '@typescript-eslint/scope-manager': 7.6.0 + '@typescript-eslint/types': 7.6.0 + '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) + eslint: 9.2.0 semver: 7.6.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.6.0(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/utils@7.8.0(eslint@9.2.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.6.0 - '@typescript-eslint/types': 7.6.0 - '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5) - eslint: 9.1.1 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + eslint: 9.2.0 semver: 7.6.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@6.21.0': + '@typescript-eslint/visitor-keys@7.6.0': dependencies: - '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/types': 7.6.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@7.6.0': + '@typescript-eslint/visitor-keys@7.8.0': dependencies: - '@typescript-eslint/types': 7.6.0 + '@typescript-eslint/types': 7.8.0 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@unocss/astro@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))': + '@unocss/astro@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))': dependencies: '@unocss/core': 0.59.4 '@unocss/reset': 0.59.4 - '@unocss/vite': 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + '@unocss/vite': 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) optionalDependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - rollup - '@unocss/cli@0.59.4(rollup@4.17.0)': + '@unocss/cli@0.59.4(rollup@4.17.2)': dependencies: '@ampproject/remapping': 2.3.0 - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) '@unocss/config': 0.59.4 '@unocss/core': 0.59.4 '@unocss/preset-uno': 0.59.4 @@ -9443,25 +9515,18 @@ snapshots: transitivePeerDependencies: - rollup - '@unocss/config@0.59.0': - dependencies: - '@unocss/core': 0.59.0 - unconfig: 0.3.12 - '@unocss/config@0.59.4': dependencies: '@unocss/core': 0.59.4 unconfig: 0.3.13 - '@unocss/core@0.59.0': {} - '@unocss/core@0.59.4': {} - '@unocss/eslint-plugin@0.59.0(eslint@9.1.1)(typescript@5.4.5)': + '@unocss/eslint-plugin@0.59.4(eslint@9.2.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/utils': 7.6.0(eslint@9.1.1)(typescript@5.4.5) - '@unocss/config': 0.59.0 - '@unocss/core': 0.59.0 + '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) + '@unocss/config': 0.59.4 + '@unocss/core': 0.59.4 magic-string: 0.30.10 synckit: 0.9.0 transitivePeerDependencies: @@ -9571,10 +9636,10 @@ snapshots: dependencies: '@unocss/core': 0.59.4 - '@unocss/vite@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))': + '@unocss/vite@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))': dependencies: '@ampproject/remapping': 2.3.0 - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) '@unocss/config': 0.59.4 '@unocss/core': 0.59.4 '@unocss/inspector': 0.59.4 @@ -9583,53 +9648,58 @@ snapshots: chokidar: 3.6.0 fast-glob: 3.3.2 magic-string: 0.30.10 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - rollup - '@vite-pwa/vitepress@0.4.0(vite-plugin-pwa@0.19.8(@types/babel__core@7.20.5)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))': + '@vite-pwa/vitepress@0.5.0(vite-plugin-pwa@0.20.0(@types/babel__core@7.20.5)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))': dependencies: - vite-plugin-pwa: 0.19.8(@types/babel__core@7.20.5)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + vite-plugin-pwa: 0.20.0(@types/babel__core@7.20.5)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) - '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: '@babel/core': 7.24.0 '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.24.0) '@vue/babel-plugin-jsx': 1.2.1(@babel/core@7.24.0) - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vue: 3.4.25(typescript@5.4.5) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vue: 3.4.26(typescript@5.4.5) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue2-jsx@1.1.1(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@2.7.16)': + '@vitejs/plugin-vue2-jsx@1.1.1(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@2.7.16)': dependencies: '@babel/core': 7.24.0 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.0) '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.24.0) - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.24.0)(vue@2.7.16) - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) vue: 2.7.16 transitivePeerDependencies: - rollup - supports-color - '@vitejs/plugin-vue2@2.3.1(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@2.7.16)': + '@vitejs/plugin-vue2@2.3.1(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@2.7.16)': dependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) vue: 2.7.16 - '@vitejs/plugin-vue2@2.3.1(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@vitejs/plugin-vue2@2.3.1(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vue: 3.4.25(typescript@5.4.5) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vue: 3.4.26(typescript@5.4.5) - '@vitejs/plugin-vue@5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@vitejs/plugin-vue@5.0.4(vite@5.2.10(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vue: 3.4.25(typescript@5.4.5) + vite: 5.2.10(@types/node@20.12.8)(terser@5.29.1) + vue: 3.4.26(typescript@5.4.5) - '@vitest/coverage-v8@1.5.2(vitest@1.5.2(@types/node@20.12.7)(@vitest/ui@1.5.2)(terser@5.29.1))': + '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': + dependencies: + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vue: 3.4.26(typescript@5.4.5) + + '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@20.12.8)(@vitest/ui@1.6.0)(terser@5.29.1))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -9644,44 +9714,44 @@ snapshots: std-env: 3.7.0 strip-literal: 2.0.0 test-exclude: 6.0.0 - vitest: 1.5.2(@types/node@20.12.7)(@vitest/ui@1.5.2)(terser@5.29.1) + vitest: 1.6.0(@types/node@20.12.8)(@vitest/ui@1.6.0)(terser@5.29.1) transitivePeerDependencies: - supports-color - '@vitest/expect@1.5.2': + '@vitest/expect@1.6.0': dependencies: - '@vitest/spy': 1.5.2 - '@vitest/utils': 1.5.2 + '@vitest/spy': 1.6.0 + '@vitest/utils': 1.6.0 chai: 4.4.1 - '@vitest/runner@1.5.2': + '@vitest/runner@1.6.0': dependencies: - '@vitest/utils': 1.5.2 + '@vitest/utils': 1.6.0 p-limit: 5.0.0 pathe: 1.1.2 - '@vitest/snapshot@1.5.2': + '@vitest/snapshot@1.6.0': dependencies: magic-string: 0.30.10 pathe: 1.1.2 pretty-format: 29.7.0 - '@vitest/spy@1.5.2': + '@vitest/spy@1.6.0': dependencies: tinyspy: 2.2.1 - '@vitest/ui@1.5.2(vitest@1.5.2)': + '@vitest/ui@1.6.0(vitest@1.6.0)': dependencies: - '@vitest/utils': 1.5.2 + '@vitest/utils': 1.6.0 fast-glob: 3.3.2 fflate: 0.8.2 flatted: 3.3.1 pathe: 1.1.2 picocolors: 1.0.0 sirv: 2.0.4 - vitest: 1.5.2(@types/node@20.12.7)(@vitest/ui@1.5.2)(terser@5.29.1) + vitest: 1.6.0(@types/node@20.12.8)(@vitest/ui@1.6.0)(terser@5.29.1) - '@vitest/utils@1.5.2': + '@vitest/utils@1.6.0': dependencies: diff-sequences: 29.6.3 estree-walker: 3.0.3 @@ -9712,7 +9782,7 @@ snapshots: '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) '@babel/template': 7.24.0 '@babel/traverse': 7.24.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 '@vue/babel-helper-vue-transform-on': 1.2.1 '@vue/babel-plugin-resolve-type': 1.2.1(@babel/core@7.24.0) camelcase: 6.3.0 @@ -9727,10 +9797,10 @@ snapshots: dependencies: '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.4) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4) '@babel/template': 7.24.0 - '@babel/traverse': 7.24.0 - '@babel/types': 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.5 '@vue/babel-helper-vue-transform-on': 1.2.1 '@vue/babel-plugin-resolve-type': 1.2.1(@babel/core@7.24.4) camelcase: 6.3.0 @@ -9747,8 +9817,8 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/parser': 7.24.4 - '@vue/compiler-sfc': 3.4.25 + '@babel/parser': 7.24.5 + '@vue/compiler-sfc': 3.4.26 '@vue/babel-plugin-resolve-type@1.2.1(@babel/core@7.24.4)': dependencies: @@ -9756,14 +9826,14 @@ snapshots: '@babel/core': 7.24.4 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/parser': 7.24.4 - '@vue/compiler-sfc': 3.4.25 + '@babel/parser': 7.24.5 + '@vue/compiler-sfc': 3.4.26 '@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 html-tags: 2.0.0 lodash.kebabcase: 4.1.1 @@ -9786,27 +9856,27 @@ snapshots: '@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-sugar-v-model@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.24.0) camelcase: 5.3.1 @@ -9816,66 +9886,66 @@ snapshots: '@vue/babel-sugar-v-on@1.4.0(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0) '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.24.0) camelcase: 5.3.1 - '@vue/compiler-core@3.4.25': + '@vue/compiler-core@3.4.26': dependencies: - '@babel/parser': 7.24.4 - '@vue/shared': 3.4.25 + '@babel/parser': 7.24.5 + '@vue/shared': 3.4.26 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.0 - '@vue/compiler-dom@3.4.25': + '@vue/compiler-dom@3.4.26': dependencies: - '@vue/compiler-core': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/compiler-core': 3.4.26 + '@vue/shared': 3.4.26 '@vue/compiler-sfc@2.7.16': dependencies: - '@babel/parser': 7.24.4 + '@babel/parser': 7.24.5 postcss: 8.4.38 source-map: 0.6.1 optionalDependencies: prettier: 2.8.8 - '@vue/compiler-sfc@3.4.25': + '@vue/compiler-sfc@3.4.26': dependencies: - '@babel/parser': 7.24.4 - '@vue/compiler-core': 3.4.25 - '@vue/compiler-dom': 3.4.25 - '@vue/compiler-ssr': 3.4.25 - '@vue/shared': 3.4.25 + '@babel/parser': 7.24.5 + '@vue/compiler-core': 3.4.26 + '@vue/compiler-dom': 3.4.26 + '@vue/compiler-ssr': 3.4.26 + '@vue/shared': 3.4.26 estree-walker: 2.0.2 magic-string: 0.30.10 postcss: 8.4.38 source-map-js: 1.2.0 - '@vue/compiler-ssr@3.4.25': + '@vue/compiler-ssr@3.4.26': dependencies: - '@vue/compiler-dom': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/compiler-dom': 3.4.26 + '@vue/shared': 3.4.26 - '@vue/devtools-api@7.1.3(vue@3.4.25(typescript@5.4.5))': + '@vue/devtools-api@7.1.3(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vue/devtools-kit': 7.1.3(vue@3.4.25(typescript@5.4.5)) + '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5)) transitivePeerDependencies: - vue - '@vue/devtools-applet@7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@vue/devtools-applet@7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vue/devtools-core': 7.1.3(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vue/devtools-kit': 7.1.3(vue@3.4.25(typescript@5.4.5)) + '@vue/devtools-core': 7.1.3(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5)) '@vue/devtools-shared': 7.1.3 - '@vue/devtools-ui': 7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))(vue@3.4.25(typescript@5.4.5)) + '@vue/devtools-ui': 7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))(vue@3.4.26(typescript@5.4.5)) lodash-es: 4.17.21 perfect-debounce: 1.0.0 shiki: 1.3.0 splitpanes: 3.1.5 - vue: 3.4.25(typescript@5.4.5) - vue-virtual-scroller: 2.0.0-beta.8(vue@3.4.25(typescript@5.4.5)) + vue: 3.4.26(typescript@5.4.5) + vue-virtual-scroller: 2.0.0-beta.8(vue@3.4.26(typescript@5.4.5)) transitivePeerDependencies: - '@unocss/reset' - '@vue/composition-api' @@ -9894,42 +9964,42 @@ snapshots: - unocss - vite - '@vue/devtools-core@7.1.3(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5))': + '@vue/devtools-core@7.1.3(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vue/devtools-kit': 7.1.3(vue@3.4.25(typescript@5.4.5)) + '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5)) '@vue/devtools-shared': 7.1.3 mitt: 3.0.1 nanoid: 3.3.7 pathe: 1.1.2 - vite-hot-client: 0.2.3(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + vite-hot-client: 0.2.3(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) transitivePeerDependencies: - vite - vue - '@vue/devtools-kit@7.1.3(vue@3.4.25(typescript@5.4.5))': + '@vue/devtools-kit@7.1.3(vue@3.4.26(typescript@5.4.5))': dependencies: '@vue/devtools-shared': 7.1.3 hookable: 5.5.3 mitt: 3.0.1 perfect-debounce: 1.0.0 speakingurl: 14.0.1 - vue: 3.4.25(typescript@5.4.5) + vue: 3.4.26(typescript@5.4.5) '@vue/devtools-shared@7.1.3': dependencies: rfdc: 1.3.1 - '@vue/devtools-ui@7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)))(vue@3.4.25(typescript@5.4.5))': + '@vue/devtools-ui@7.1.3(@unocss/reset@0.59.4)(unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)))(vue@3.4.26(typescript@5.4.5))': dependencies: '@unocss/reset': 0.59.4 '@vue/devtools-shared': 7.1.3 - '@vueuse/components': 10.9.0(vue@3.4.25(typescript@5.4.5)) - '@vueuse/core': 10.9.0(vue@3.4.25(typescript@5.4.5)) - '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.25(typescript@5.4.5)) + '@vueuse/components': 10.9.0(vue@3.4.26(typescript@5.4.5)) + '@vueuse/core': 10.9.0(vue@3.4.26(typescript@5.4.5)) + '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.26(typescript@5.4.5)) colord: 2.9.3 focus-trap: 7.5.4 - unocss: 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) - vue: 3.4.25(typescript@5.4.5) + unocss: 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) + vue: 3.4.26(typescript@5.4.5) transitivePeerDependencies: - '@vue/composition-api' - async-validator @@ -9947,7 +10017,7 @@ snapshots: '@vue/language-core@2.0.16(typescript@5.4.5)': dependencies: '@volar/language-core': 2.2.0 - '@vue/compiler-dom': 3.4.25 + '@vue/compiler-dom': 3.4.26 '@vue/shared': 3.4.25 computeds: 0.0.1 minimatch: 9.0.4 @@ -9960,36 +10030,38 @@ snapshots: dependencies: '@vue/shared': 3.4.21 - '@vue/reactivity@3.4.25': + '@vue/reactivity@3.4.26': dependencies: - '@vue/shared': 3.4.25 + '@vue/shared': 3.4.26 - '@vue/runtime-core@3.4.25': + '@vue/runtime-core@3.4.26': dependencies: - '@vue/reactivity': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/reactivity': 3.4.26 + '@vue/shared': 3.4.26 - '@vue/runtime-dom@3.4.25': + '@vue/runtime-dom@3.4.26': dependencies: - '@vue/runtime-core': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/runtime-core': 3.4.26 + '@vue/shared': 3.4.26 csstype: 3.1.3 - '@vue/server-renderer@3.4.25(vue@3.4.25(typescript@5.4.5))': + '@vue/server-renderer@3.4.26(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vue/compiler-ssr': 3.4.25 - '@vue/shared': 3.4.25 - vue: 3.4.25(typescript@5.4.5) + '@vue/compiler-ssr': 3.4.26 + '@vue/shared': 3.4.26 + vue: 3.4.26(typescript@5.4.5) '@vue/shared@3.4.21': {} '@vue/shared@3.4.25': {} - '@vueuse/components@10.9.0(vue@3.4.25(typescript@5.4.5))': + '@vue/shared@3.4.26': {} + + '@vueuse/components@10.9.0(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vueuse/core': 10.9.0(vue@3.4.25(typescript@5.4.5)) - '@vueuse/shared': 10.9.0(vue@3.4.25(typescript@5.4.5)) - vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5)) + '@vueuse/core': 10.9.0(vue@3.4.26(typescript@5.4.5)) + '@vueuse/shared': 10.9.0(vue@3.4.26(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -10004,21 +10076,21 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/core@10.9.0(vue@3.4.25(typescript@5.4.5))': + '@vueuse/core@10.9.0(vue@3.4.26(typescript@5.4.5))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.9.0 - '@vueuse/shared': 10.9.0(vue@3.4.25(typescript@5.4.5)) - vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5)) + '@vueuse/shared': 10.9.0(vue@3.4.26(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.25(typescript@5.4.5))': + '@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.26(typescript@5.4.5))': dependencies: - '@vueuse/core': 10.9.0(vue@3.4.25(typescript@5.4.5)) - '@vueuse/shared': 10.9.0(vue@3.4.25(typescript@5.4.5)) - vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5)) + '@vueuse/core': 10.9.0(vue@3.4.26(typescript@5.4.5)) + '@vueuse/shared': 10.9.0(vue@3.4.26(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5)) optionalDependencies: focus-trap: 7.5.4 transitivePeerDependencies: @@ -10034,9 +10106,9 @@ snapshots: - '@vue/composition-api' - vue - '@vueuse/shared@10.9.0(vue@3.4.25(typescript@5.4.5))': + '@vueuse/shared@10.9.0(vue@3.4.26(typescript@5.4.5))': dependencies: - vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -10253,26 +10325,26 @@ snapshots: ast-kit@0.12.1: dependencies: - '@babel/parser': 7.24.4 + '@babel/parser': 7.24.5 pathe: 1.1.2 ast-walker-scope@0.6.1: dependencies: - '@babel/parser': 7.24.4 + '@babel/parser': 7.24.5 ast-kit: 0.12.1 - astro@4.7.0(@types/node@20.12.7)(terser@5.29.1)(typescript@5.4.5): + astro@4.7.1(@types/node@20.12.8)(terser@5.29.1)(typescript@5.4.5): dependencies: '@astrojs/compiler': 2.7.1 '@astrojs/internal-helpers': 0.4.0 '@astrojs/markdown-remark': 5.1.0 '@astrojs/telemetry': 3.1.0 - '@babel/core': 7.24.4 - '@babel/generator': 7.24.4 - '@babel/parser': 7.24.4 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4) - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5) + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 '@types/babel__core': 7.20.5 '@types/cookie': 0.6.0 acorn: 8.11.3 @@ -10281,7 +10353,7 @@ snapshots: boxen: 7.1.1 chokidar: 3.6.0 ci-info: 4.0.0 - clsx: 2.1.0 + clsx: 2.1.1 common-ancestor-path: 1.0.1 cookie: 0.6.0 cssesc: 3.0.0 @@ -10314,18 +10386,18 @@ snapshots: rehype: 13.0.1 resolve: 1.22.8 semver: 7.6.0 - shiki: 1.3.0 + shiki: 1.4.0 string-width: 7.1.0 strip-ansi: 7.1.0 tsconfck: 3.0.3(typescript@5.4.5) unist-util-visit: 5.0.0 vfile: 6.0.1 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vitefu: 0.2.5(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vitefu: 0.2.5(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) which-pm: 2.1.1 yargs-parser: 21.1.1 - zod: 3.23.4 - zod-to-json-schema: 3.23.0(zod@3.23.4) + zod: 3.23.6 + zod-to-json-schema: 3.23.0(zod@3.23.6) optionalDependencies: sharp: 0.33.3 transitivePeerDependencies: @@ -10351,27 +10423,27 @@ snapshots: dependencies: dequal: 2.0.3 - babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.24.3): + babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.24.4): dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.4) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.3): + babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.24.4): dependencies: - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.4) core-js-compat: 3.36.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.3): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.24.4): dependencies: - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.24.4) transitivePeerDependencies: - supports-color @@ -10594,7 +10666,7 @@ snapshots: clone@1.0.4: {} - clsx@2.1.0: {} + clsx@2.1.1: {} color-convert@1.9.3: dependencies: @@ -10967,18 +11039,18 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.1.2(eslint@9.1.1): + eslint-compat-utils@0.1.2(eslint@9.2.0): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 - eslint-compat-utils@0.5.0(eslint@9.1.1): + eslint-compat-utils@0.5.0(eslint@9.2.0): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 semver: 7.6.0 - eslint-config-prettier@9.1.0(eslint@9.1.1): + eslint-config-prettier@9.1.0(eslint@9.2.0): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 eslint-define-config@1.24.1: {} @@ -10990,29 +11062,33 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-antfu@2.1.2(eslint@9.1.1): + eslint-plugin-antfu@2.1.2(eslint@9.2.0): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 - eslint-plugin-es-x@7.5.0(eslint@9.1.1): + eslint-plugin-command@0.1.8(eslint@9.2.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + eslint: 9.2.0 + + eslint-plugin-es-x@7.5.0(eslint@9.2.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) '@eslint-community/regexpp': 4.10.0 - eslint: 9.1.1 - eslint-compat-utils: 0.1.2(eslint@9.1.1) + eslint: 9.2.0 + eslint-compat-utils: 0.1.2(eslint@9.2.0) - eslint-plugin-eslint-comments@3.2.0(eslint@9.1.1): + eslint-plugin-eslint-comments@3.2.0(eslint@9.2.0): dependencies: escape-string-regexp: 1.0.5 - eslint: 9.1.1 + eslint: 9.2.0 ignore: 5.3.1 - eslint-plugin-import-x@0.5.0(eslint@9.1.1)(typescript@5.4.5): + eslint-plugin-import-x@0.5.0(eslint@9.2.0)(typescript@5.4.5): dependencies: - '@typescript-eslint/utils': 7.6.0(eslint@9.1.1)(typescript@5.4.5) + '@typescript-eslint/utils': 7.6.0(eslint@9.2.0)(typescript@5.4.5) debug: 4.3.4 doctrine: 3.0.0 - eslint: 9.1.1 + eslint: 9.2.0 eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.7.3 is-glob: 4.0.3 @@ -11022,70 +11098,67 @@ snapshots: - supports-color - typescript - eslint-plugin-jsonc@2.15.0(eslint@9.1.1): + eslint-plugin-jsonc@2.15.1(eslint@9.2.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - eslint: 9.1.1 - eslint-compat-utils: 0.5.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) + eslint: 9.2.0 + eslint-compat-utils: 0.5.0(eslint@9.2.0) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 - eslint-plugin-markdown@4.0.1(eslint@9.1.1): + eslint-plugin-markdown@5.0.0(eslint@9.2.0): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color - eslint-plugin-n@16.6.2(eslint@9.1.1): + eslint-plugin-n@17.4.0(eslint@9.2.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - builtins: 5.0.1 - eslint: 9.1.1 - eslint-plugin-es-x: 7.5.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) + enhanced-resolve: 5.16.0 + eslint: 9.2.0 + eslint-plugin-es-x: 7.5.0(eslint@9.2.0) get-tsconfig: 4.7.3 - globals: 13.24.0 + globals: 15.1.0 ignore: 5.3.1 - is-builtin-module: 3.2.1 - is-core-module: 2.13.1 - minimatch: 3.1.2 - resolve: 1.22.8 + minimatch: 9.0.4 semver: 7.6.0 - eslint-plugin-perfectionist@2.8.0(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1)): + eslint-plugin-perfectionist@2.10.0(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0)): dependencies: - '@typescript-eslint/utils': 6.21.0(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@typescript-eslint/utils': 7.6.0(eslint@9.2.0)(typescript@5.4.5) + eslint: 9.2.0 minimatch: 9.0.4 natural-compare-lite: 1.4.0 optionalDependencies: - vue-eslint-parser: 9.4.2(eslint@9.1.1) + vue-eslint-parser: 9.4.2(eslint@9.2.0) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-prettier@5.1.3(@types/eslint@8.56.5)(eslint-config-prettier@9.1.0(eslint@9.1.1))(eslint@9.1.1)(prettier@3.2.5): + eslint-plugin-prettier@5.1.3(@types/eslint@8.56.5)(eslint-config-prettier@9.1.0(eslint@9.2.0))(eslint@9.2.0)(prettier@3.2.5): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 prettier: 3.2.5 prettier-linter-helpers: 1.0.0 synckit: 0.8.8 optionalDependencies: '@types/eslint': 8.56.5 - eslint-config-prettier: 9.1.0(eslint@9.1.1) + eslint-config-prettier: 9.1.0(eslint@9.2.0) - eslint-plugin-unicorn@52.0.0(eslint@9.1.1): + eslint-plugin-unicorn@52.0.0(eslint@9.2.0): dependencies: '@babel/helper-validator-identifier': 7.22.20 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) '@eslint/eslintrc': 2.1.4 ci-info: 4.0.0 clean-regexp: 1.0.0 core-js-compat: 3.36.0 - eslint: 9.1.1 + eslint: 9.2.0 esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -11099,32 +11172,32 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-unused-imports@3.1.0(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1): + eslint-plugin-unused-imports@3.2.0(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0): dependencies: - eslint: 9.1.1 + eslint: 9.2.0 eslint-rule-composer: 0.3.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5) - eslint-plugin-vue@9.24.1(eslint@9.1.1): + eslint-plugin-vue@9.25.0(eslint@9.2.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - eslint: 9.1.1 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) + eslint: 9.2.0 globals: 13.24.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.15 semver: 7.6.0 - vue-eslint-parser: 9.4.2(eslint@9.1.1) + vue-eslint-parser: 9.4.2(eslint@9.2.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color - eslint-plugin-yml@1.14.0(eslint@9.1.1): + eslint-plugin-yml@1.14.0(eslint@9.2.0): dependencies: debug: 4.3.4 - eslint: 9.1.1 - eslint-compat-utils: 0.5.0(eslint@9.1.1) + eslint: 9.2.0 + eslint-compat-utils: 0.5.0(eslint@9.2.0) lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.2.2 @@ -11152,12 +11225,12 @@ snapshots: eslint-visitor-keys@4.0.0: {} - eslint@9.1.1: + eslint@9.2.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) '@eslint-community/regexpp': 4.10.0 '@eslint/eslintrc': 3.0.2 - '@eslint/js': 9.1.1 + '@eslint/js': 9.2.0 '@humanwhocodes/config-array': 0.13.0 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.2.3 @@ -11507,7 +11580,7 @@ snapshots: globals@14.0.0: {} - globals@15.0.0: {} + globals@15.1.0: {} globalthis@1.0.3: dependencies: @@ -11946,15 +12019,9 @@ snapshots: filelist: 1.0.4 minimatch: 3.1.2 - jest-worker@26.6.2: - dependencies: - '@types/node': 20.12.7 - merge-stream: 2.0.0 - supports-color: 7.2.0 - jest-worker@27.5.1: dependencies: - '@types/node': 20.12.7 + '@types/node': 20.12.8 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -12120,6 +12187,10 @@ snapshots: dependencies: magic-string: 0.30.10 + magic-string-ast@0.6.0: + dependencies: + magic-string: 0.30.10 + magic-string@0.25.9: dependencies: sourcemap-codec: 1.4.8 @@ -12130,8 +12201,8 @@ snapshots: magicast@0.3.4: dependencies: - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 source-map-js: 1.2.0 make-dir@4.0.0: @@ -13272,49 +13343,41 @@ snapshots: dependencies: glob: 10.3.10 - rollup-plugin-esbuild@6.1.1(esbuild@0.20.2)(rollup@4.17.0): + rollup-plugin-esbuild@6.1.1(esbuild@0.20.2)(rollup@4.17.2): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) debug: 4.3.4 es-module-lexer: 1.4.1 esbuild: 0.20.2 get-tsconfig: 4.7.2 - rollup: 4.17.0 + rollup: 4.17.2 transitivePeerDependencies: - supports-color - rollup-plugin-terser@7.0.2(rollup@2.79.1): - dependencies: - '@babel/code-frame': 7.24.2 - jest-worker: 26.6.2 - rollup: 2.79.1 - serialize-javascript: 4.0.0 - terser: 5.29.1 - rollup@2.79.1: optionalDependencies: fsevents: 2.3.3 - rollup@4.17.0: + rollup@4.17.2: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.17.0 - '@rollup/rollup-android-arm64': 4.17.0 - '@rollup/rollup-darwin-arm64': 4.17.0 - '@rollup/rollup-darwin-x64': 4.17.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.17.0 - '@rollup/rollup-linux-arm-musleabihf': 4.17.0 - '@rollup/rollup-linux-arm64-gnu': 4.17.0 - '@rollup/rollup-linux-arm64-musl': 4.17.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.17.0 - '@rollup/rollup-linux-riscv64-gnu': 4.17.0 - '@rollup/rollup-linux-s390x-gnu': 4.17.0 - '@rollup/rollup-linux-x64-gnu': 4.17.0 - '@rollup/rollup-linux-x64-musl': 4.17.0 - '@rollup/rollup-win32-arm64-msvc': 4.17.0 - '@rollup/rollup-win32-ia32-msvc': 4.17.0 - '@rollup/rollup-win32-x64-msvc': 4.17.0 + '@rollup/rollup-android-arm-eabi': 4.17.2 + '@rollup/rollup-android-arm64': 4.17.2 + '@rollup/rollup-darwin-arm64': 4.17.2 + '@rollup/rollup-darwin-x64': 4.17.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 + '@rollup/rollup-linux-arm-musleabihf': 4.17.2 + '@rollup/rollup-linux-arm64-gnu': 4.17.2 + '@rollup/rollup-linux-arm64-musl': 4.17.2 + '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 + '@rollup/rollup-linux-riscv64-gnu': 4.17.2 + '@rollup/rollup-linux-s390x-gnu': 4.17.2 + '@rollup/rollup-linux-x64-gnu': 4.17.2 + '@rollup/rollup-linux-x64-musl': 4.17.2 + '@rollup/rollup-win32-arm64-msvc': 4.17.2 + '@rollup/rollup-win32-ia32-msvc': 4.17.2 + '@rollup/rollup-win32-x64-msvc': 4.17.2 fsevents: 2.3.3 run-applescript@7.0.0: {} @@ -13361,10 +13424,6 @@ snapshots: dependencies: lru-cache: 6.0.0 - serialize-javascript@4.0.0: - dependencies: - randombytes: 2.1.0 - serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 @@ -13432,6 +13491,10 @@ snapshots: dependencies: '@shikijs/core': 1.3.0 + shiki@1.4.0: + dependencies: + '@shikijs/core': 1.4.0 + side-channel@1.0.6: dependencies: call-bind: 1.0.7 @@ -13492,6 +13555,8 @@ snapshots: wcwidth: 1.0.1 yargs: 15.4.1 + smob@1.5.0: {} + socks-proxy-agent@8.0.2: dependencies: agent-base: 7.1.0 @@ -13808,7 +13873,7 @@ snapshots: joycon: 3.1.1 postcss-load-config: 4.0.2(postcss@8.4.38) resolve-from: 5.0.0 - rollup: 4.17.0 + rollup: 4.17.2 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tree-kill: 1.2.2 @@ -13819,7 +13884,7 @@ snapshots: - supports-color - ts-node - tsx@4.8.2: + tsx@4.9.3: dependencies: esbuild: 0.20.2 get-tsconfig: 4.7.3 @@ -13862,7 +13927,7 @@ snapshots: type-fest@2.19.0: {} - type-fest@4.17.0: {} + type-fest@4.18.1: {} typed-array-buffer@1.0.2: dependencies: @@ -13896,12 +13961,12 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typescript-eslint@7.6.0(eslint@9.1.1)(typescript@5.4.5): + typescript-eslint@7.8.0(eslint@9.2.0)(typescript@5.4.5): dependencies: - '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@7.6.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/parser': 7.6.0(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/utils': 7.6.0(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) + eslint: 9.2.0 optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: @@ -13925,13 +13990,6 @@ snapshots: jiti: 1.21.0 mlly: 1.6.1 - unconfig@0.3.12: - dependencies: - '@antfu/utils': 0.7.7 - defu: 6.1.4 - jiti: 1.21.0 - mlly: 1.6.1 - unconfig@0.3.13: dependencies: '@antfu/utils': 0.7.7 @@ -13982,9 +14040,9 @@ snapshots: trough: 2.2.0 vfile: 6.0.1 - unimport@3.7.1(rollup@4.17.0): + unimport@3.7.1(rollup@4.17.2): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) acorn: 8.11.3 escape-string-regexp: 5.0.0 estree-walker: 3.0.3 @@ -14081,10 +14139,10 @@ snapshots: universalify@2.0.1: {} - unocss@0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + unocss@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): dependencies: - '@unocss/astro': 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) - '@unocss/cli': 0.59.4(rollup@4.17.0) + '@unocss/astro': 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) + '@unocss/cli': 0.59.4(rollup@4.17.2) '@unocss/core': 0.59.4 '@unocss/extractor-arbitrary-variants': 0.59.4 '@unocss/postcss': 0.59.4 @@ -14102,31 +14160,31 @@ snapshots: '@unocss/transformer-compile-class': 0.59.4 '@unocss/transformer-directives': 0.59.4 '@unocss/transformer-variant-group': 0.59.4 - '@unocss/vite': 0.59.4(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + '@unocss/vite': 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) optionalDependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - rollup - supports-color - unplugin-combine@1.0.0(esbuild@0.20.2)(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(webpack@5.91.0(esbuild@0.20.2)): + unplugin-combine@1.0.0(esbuild@0.20.2)(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(webpack@5.91.0(esbuild@0.20.2)): dependencies: '@antfu/utils': 0.7.7 unplugin: 1.10.1 optionalDependencies: esbuild: 0.20.2 - rollup: 4.17.0 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + rollup: 4.17.2 + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) webpack: 5.91.0(esbuild@0.20.2) - unplugin-macros@0.13.0(@types/node@20.12.7)(rollup@4.17.0)(terser@5.29.1): + unplugin-macros@0.13.0(@types/node@20.12.8)(rollup@4.17.2)(terser@5.29.1): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) ast-kit: 0.12.1 magic-string-ast: 0.5.0 unplugin: 1.10.1 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vite-node: 1.5.2(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vite-node: 1.5.2(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - '@types/node' - less @@ -14138,21 +14196,21 @@ snapshots: - supports-color - terser - unplugin-raw@0.1.1(rollup@4.17.0): + unplugin-raw@0.1.1(rollup@4.17.2): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) esbuild: 0.19.12 unplugin: 1.10.1 transitivePeerDependencies: - rollup - unplugin-vue@5.0.5(@types/node@20.12.7)(terser@5.29.1)(vue@3.4.25(typescript@5.4.5)): + unplugin-vue@5.0.5(@types/node@20.12.8)(terser@5.29.1)(vue@3.4.26(typescript@5.4.5)): dependencies: '@vue/reactivity': 3.4.21 debug: 4.3.4 unplugin: 1.7.1 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vue: 3.4.25(typescript@5.4.5) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vue: 3.4.26(typescript@5.4.5) transitivePeerDependencies: - '@types/node' - less @@ -14179,9 +14237,9 @@ snapshots: untyped@1.4.2: dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/standalone': 7.24.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 defu: 6.1.4 jiti: 1.21.0 mri: 1.2.0 @@ -14240,16 +14298,33 @@ snapshots: unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - vite-hot-client@0.2.3(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite-hot-client@0.2.3(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): + dependencies: + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + + vite-hyper-config@0.2.1(@types/node@20.12.8)(terser@5.29.1)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): dependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + cac: 6.7.14 + picocolors: 1.0.0 + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vite-node: 1.3.1(@types/node@20.12.8)(terser@5.29.1) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser - vite-hyper-config@0.2.1(@types/node@20.12.7)(terser@5.29.1)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite-node@1.3.1(@types/node@20.12.8)(terser@5.29.1): dependencies: cac: 6.7.14 + debug: 4.3.4 + pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vite-node: 1.3.1(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - '@types/node' - less @@ -14260,13 +14335,13 @@ snapshots: - supports-color - terser - vite-node@1.3.1(@types/node@20.12.7)(terser@5.29.1): + vite-node@1.5.2(@types/node@20.12.8)(terser@5.29.1): dependencies: cac: 6.7.14 debug: 4.3.4 pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - '@types/node' - less @@ -14277,13 +14352,13 @@ snapshots: - supports-color - terser - vite-node@1.5.2(@types/node@20.12.7)(terser@5.29.1): + vite-node@1.6.0(@types/node@20.12.8)(terser@5.29.1): dependencies: cac: 6.7.14 debug: 4.3.4 pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - '@types/node' - less @@ -14294,10 +14369,10 @@ snapshots: - supports-color - terser - vite-plugin-inspect@0.8.4(@nuxt/kit@3.11.2(rollup@4.17.0))(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite-plugin-inspect@0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): dependencies: '@antfu/utils': 0.7.7 - '@rollup/pluginutils': 5.1.0(rollup@4.17.0) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) debug: 4.3.4 error-stack-parser-es: 0.1.1 fs-extra: 11.2.0 @@ -14305,42 +14380,42 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.0.0 sirv: 2.0.4 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) optionalDependencies: - '@nuxt/kit': 3.11.2(rollup@4.17.0) + '@nuxt/kit': 3.11.2(rollup@4.17.2) transitivePeerDependencies: - rollup - supports-color - vite-plugin-pwa@0.19.8(@types/babel__core@7.20.5)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite-plugin-pwa@0.20.0(@types/babel__core@7.20.5)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): dependencies: debug: 4.3.4 fast-glob: 3.3.2 pretty-bytes: 6.1.1 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - workbox-build: 7.0.0(@types/babel__core@7.20.5) - workbox-window: 7.0.0 + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + workbox-build: 7.1.0(@types/babel__core@7.20.5) + workbox-window: 7.1.0 transitivePeerDependencies: - '@types/babel__core' - supports-color - vite-plugin-vue-devtools@7.1.3(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)): + vite-plugin-vue-devtools@7.1.3(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)): dependencies: - '@vue/devtools-core': 7.1.3(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vue/devtools-kit': 7.1.3(vue@3.4.25(typescript@5.4.5)) + '@vue/devtools-core': 7.1.3(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5)) '@vue/devtools-shared': 7.1.3 execa: 8.0.1 sirv: 2.0.4 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.0))(rollup@4.17.0)(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) - vite-plugin-vue-inspector: 5.0.1(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2(rollup@4.17.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) + vite-plugin-vue-inspector: 5.0.1(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)) transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue - vite-plugin-vue-inspector@4.0.2(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite-plugin-vue-inspector@4.0.2(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): dependencies: '@babel/core': 7.24.4 '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.24.4) @@ -14348,14 +14423,14 @@ snapshots: '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.4) '@vue/babel-plugin-jsx': 1.2.1(@babel/core@7.24.4) - '@vue/compiler-dom': 3.4.25 + '@vue/compiler-dom': 3.4.26 kolorist: 1.8.0 magic-string: 0.30.10 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - supports-color - vite-plugin-vue-inspector@5.0.1(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite-plugin-vue-inspector@5.0.1(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): dependencies: '@babel/core': 7.24.4 '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.24.4) @@ -14363,44 +14438,54 @@ snapshots: '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.4) '@vue/babel-plugin-jsx': 1.2.1(@babel/core@7.24.4) - '@vue/compiler-dom': 3.4.25 + '@vue/compiler-dom': 3.4.26 kolorist: 1.8.0 magic-string: 0.30.10 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) transitivePeerDependencies: - supports-color - vite@5.2.10(@types/node@20.12.7)(terser@5.29.1): + vite@5.2.10(@types/node@20.12.8)(terser@5.29.1): dependencies: esbuild: 0.20.2 postcss: 8.4.38 - rollup: 4.17.0 + rollup: 4.17.2 optionalDependencies: - '@types/node': 20.12.7 + '@types/node': 20.12.8 fsevents: 2.3.3 terser: 5.29.1 - vitefu@0.2.5(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1)): + vite@5.2.11(@types/node@20.12.8)(terser@5.29.1): + dependencies: + esbuild: 0.20.2 + postcss: 8.4.38 + rollup: 4.17.2 optionalDependencies: - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) + '@types/node': 20.12.8 + fsevents: 2.3.3 + terser: 5.29.1 - vitepress@1.1.4(@algolia/client-search@4.22.1)(@types/node@20.12.7)(postcss@8.4.38)(terser@5.29.1)(typescript@5.4.5): + vitefu@0.2.5(vite@5.2.11(@types/node@20.12.8)(terser@5.29.1)): + optionalDependencies: + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + + vitepress@1.1.4(@algolia/client-search@4.22.1)(@types/node@20.12.8)(postcss@8.4.38)(terser@5.29.1)(typescript@5.4.5): dependencies: '@docsearch/css': 3.6.0 '@docsearch/js': 3.6.0(@algolia/client-search@4.22.1) '@shikijs/core': 1.3.0 '@shikijs/transformers': 1.3.0 '@types/markdown-it': 14.0.1 - '@vitejs/plugin-vue': 5.0.4(vite@5.2.10(@types/node@20.12.7)(terser@5.29.1))(vue@3.4.25(typescript@5.4.5)) - '@vue/devtools-api': 7.1.3(vue@3.4.25(typescript@5.4.5)) - '@vueuse/core': 10.9.0(vue@3.4.25(typescript@5.4.5)) - '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.25(typescript@5.4.5)) + '@vitejs/plugin-vue': 5.0.4(vite@5.2.10(@types/node@20.12.8)(terser@5.29.1))(vue@3.4.26(typescript@5.4.5)) + '@vue/devtools-api': 7.1.3(vue@3.4.26(typescript@5.4.5)) + '@vueuse/core': 10.9.0(vue@3.4.26(typescript@5.4.5)) + '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.26(typescript@5.4.5)) focus-trap: 7.5.4 mark.js: 8.11.1 minisearch: 6.3.0 - shiki: 1.3.0 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vue: 3.4.25(typescript@5.4.5) + shiki: 1.4.0 + vite: 5.2.10(@types/node@20.12.8)(terser@5.29.1) + vue: 3.4.26(typescript@5.4.5) optionalDependencies: postcss: 8.4.38 transitivePeerDependencies: @@ -14430,13 +14515,13 @@ snapshots: - typescript - universal-cookie - vitest@1.5.2(@types/node@20.12.7)(@vitest/ui@1.5.2)(terser@5.29.1): + vitest@1.6.0(@types/node@20.12.8)(@vitest/ui@1.6.0)(terser@5.29.1): dependencies: - '@vitest/expect': 1.5.2 - '@vitest/runner': 1.5.2 - '@vitest/snapshot': 1.5.2 - '@vitest/spy': 1.5.2 - '@vitest/utils': 1.5.2 + '@vitest/expect': 1.6.0 + '@vitest/runner': 1.6.0 + '@vitest/snapshot': 1.6.0 + '@vitest/spy': 1.6.0 + '@vitest/utils': 1.6.0 acorn-walk: 8.3.2 chai: 4.4.1 debug: 4.3.4 @@ -14449,12 +14534,12 @@ snapshots: strip-literal: 2.0.0 tinybench: 2.6.0 tinypool: 0.8.4 - vite: 5.2.10(@types/node@20.12.7)(terser@5.29.1) - vite-node: 1.5.2(@types/node@20.12.7)(terser@5.29.1) + vite: 5.2.11(@types/node@20.12.8)(terser@5.29.1) + vite-node: 1.6.0(@types/node@20.12.8)(terser@5.29.1) why-is-node-running: 2.2.2 optionalDependencies: - '@types/node': 20.12.7 - '@vitest/ui': 1.5.2(vitest@1.5.2) + '@types/node': 20.12.8 + '@vitest/ui': 1.6.0(vitest@1.6.0) transitivePeerDependencies: - less - lightningcss @@ -14468,14 +14553,14 @@ snapshots: dependencies: vue: 2.7.16 - vue-demi@0.14.7(vue@3.4.25(typescript@5.4.5)): + vue-demi@0.14.7(vue@3.4.26(typescript@5.4.5)): dependencies: - vue: 3.4.25(typescript@5.4.5) + vue: 3.4.26(typescript@5.4.5) - vue-eslint-parser@9.4.2(eslint@9.1.1): + vue-eslint-parser@9.4.2(eslint@9.2.0): dependencies: debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.2.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 @@ -14485,13 +14570,13 @@ snapshots: transitivePeerDependencies: - supports-color - vue-observe-visibility@2.0.0-alpha.1(vue@3.4.25(typescript@5.4.5)): + vue-observe-visibility@2.0.0-alpha.1(vue@3.4.26(typescript@5.4.5)): dependencies: - vue: 3.4.25(typescript@5.4.5) + vue: 3.4.26(typescript@5.4.5) - vue-resize@2.0.0-alpha.1(vue@3.4.25(typescript@5.4.5)): + vue-resize@2.0.0-alpha.1(vue@3.4.26(typescript@5.4.5)): dependencies: - vue: 3.4.25(typescript@5.4.5) + vue: 3.4.26(typescript@5.4.5) vue-template-compiler@2.7.16: dependencies: @@ -14505,25 +14590,25 @@ snapshots: semver: 7.6.0 typescript: 5.4.5 - vue-virtual-scroller@2.0.0-beta.8(vue@3.4.25(typescript@5.4.5)): + vue-virtual-scroller@2.0.0-beta.8(vue@3.4.26(typescript@5.4.5)): dependencies: mitt: 2.1.0 - vue: 3.4.25(typescript@5.4.5) - vue-observe-visibility: 2.0.0-alpha.1(vue@3.4.25(typescript@5.4.5)) - vue-resize: 2.0.0-alpha.1(vue@3.4.25(typescript@5.4.5)) + vue: 3.4.26(typescript@5.4.5) + vue-observe-visibility: 2.0.0-alpha.1(vue@3.4.26(typescript@5.4.5)) + vue-resize: 2.0.0-alpha.1(vue@3.4.26(typescript@5.4.5)) vue@2.7.16: dependencies: '@vue/compiler-sfc': 2.7.16 csstype: 3.1.3 - vue@3.4.25(typescript@5.4.5): + vue@3.4.26(typescript@5.4.5): dependencies: - '@vue/compiler-dom': 3.4.25 - '@vue/compiler-sfc': 3.4.25 - '@vue/runtime-dom': 3.4.25 - '@vue/server-renderer': 3.4.25(vue@3.4.25(typescript@5.4.5)) - '@vue/shared': 3.4.25 + '@vue/compiler-dom': 3.4.26 + '@vue/compiler-sfc': 3.4.26 + '@vue/runtime-dom': 3.4.26 + '@vue/server-renderer': 3.4.26(vue@3.4.26(typescript@5.4.5)) + '@vue/shared': 3.4.26 optionalDependencies: typescript: 5.4.5 @@ -14643,24 +14728,25 @@ snapshots: dependencies: string-width: 5.1.2 - workbox-background-sync@7.0.0: + workbox-background-sync@7.1.0: dependencies: idb: 7.1.1 - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-broadcast-update@7.0.0: + workbox-broadcast-update@7.1.0: dependencies: - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-build@7.0.0(@types/babel__core@7.20.5): + workbox-build@7.1.0(@types/babel__core@7.20.5): dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.0(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/preset-env': 7.24.0(@babel/core@7.24.4) '@babel/runtime': 7.24.0 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.3)(@types/babel__core@7.20.5)(rollup@2.79.1) - '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.4)(@types/babel__core@7.20.5)(rollup@2.79.1) + '@rollup/plugin-node-resolve': 15.2.3(rollup@2.79.1) '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) + '@rollup/plugin-terser': 0.4.4(rollup@2.79.1) '@surma/rollup-plugin-off-main-thread': 2.2.3 ajv: 8.12.0 common-tags: 1.8.2 @@ -14670,91 +14756,90 @@ snapshots: lodash: 4.17.21 pretty-bytes: 5.6.0 rollup: 2.79.1 - rollup-plugin-terser: 7.0.2(rollup@2.79.1) source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 tempy: 0.6.0 upath: 1.2.0 - workbox-background-sync: 7.0.0 - workbox-broadcast-update: 7.0.0 - workbox-cacheable-response: 7.0.0 - workbox-core: 7.0.0 - workbox-expiration: 7.0.0 - workbox-google-analytics: 7.0.0 - workbox-navigation-preload: 7.0.0 - workbox-precaching: 7.0.0 - workbox-range-requests: 7.0.0 - workbox-recipes: 7.0.0 - workbox-routing: 7.0.0 - workbox-strategies: 7.0.0 - workbox-streams: 7.0.0 - workbox-sw: 7.0.0 - workbox-window: 7.0.0 + workbox-background-sync: 7.1.0 + workbox-broadcast-update: 7.1.0 + workbox-cacheable-response: 7.1.0 + workbox-core: 7.1.0 + workbox-expiration: 7.1.0 + workbox-google-analytics: 7.1.0 + workbox-navigation-preload: 7.1.0 + workbox-precaching: 7.1.0 + workbox-range-requests: 7.1.0 + workbox-recipes: 7.1.0 + workbox-routing: 7.1.0 + workbox-strategies: 7.1.0 + workbox-streams: 7.1.0 + workbox-sw: 7.1.0 + workbox-window: 7.1.0 transitivePeerDependencies: - '@types/babel__core' - supports-color - workbox-cacheable-response@7.0.0: + workbox-cacheable-response@7.1.0: dependencies: - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-core@7.0.0: {} + workbox-core@7.1.0: {} - workbox-expiration@7.0.0: + workbox-expiration@7.1.0: dependencies: idb: 7.1.1 - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-google-analytics@7.0.0: + workbox-google-analytics@7.1.0: dependencies: - workbox-background-sync: 7.0.0 - workbox-core: 7.0.0 - workbox-routing: 7.0.0 - workbox-strategies: 7.0.0 + workbox-background-sync: 7.1.0 + workbox-core: 7.1.0 + workbox-routing: 7.1.0 + workbox-strategies: 7.1.0 - workbox-navigation-preload@7.0.0: + workbox-navigation-preload@7.1.0: dependencies: - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-precaching@7.0.0: + workbox-precaching@7.1.0: dependencies: - workbox-core: 7.0.0 - workbox-routing: 7.0.0 - workbox-strategies: 7.0.0 + workbox-core: 7.1.0 + workbox-routing: 7.1.0 + workbox-strategies: 7.1.0 - workbox-range-requests@7.0.0: + workbox-range-requests@7.1.0: dependencies: - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-recipes@7.0.0: + workbox-recipes@7.1.0: dependencies: - workbox-cacheable-response: 7.0.0 - workbox-core: 7.0.0 - workbox-expiration: 7.0.0 - workbox-precaching: 7.0.0 - workbox-routing: 7.0.0 - workbox-strategies: 7.0.0 + workbox-cacheable-response: 7.1.0 + workbox-core: 7.1.0 + workbox-expiration: 7.1.0 + workbox-precaching: 7.1.0 + workbox-routing: 7.1.0 + workbox-strategies: 7.1.0 - workbox-routing@7.0.0: + workbox-routing@7.1.0: dependencies: - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-strategies@7.0.0: + workbox-strategies@7.1.0: dependencies: - workbox-core: 7.0.0 + workbox-core: 7.1.0 - workbox-streams@7.0.0: + workbox-streams@7.1.0: dependencies: - workbox-core: 7.0.0 - workbox-routing: 7.0.0 + workbox-core: 7.1.0 + workbox-routing: 7.1.0 - workbox-sw@7.0.0: {} + workbox-sw@7.1.0: {} - workbox-window@7.0.0: + workbox-window@7.1.0: dependencies: '@types/trusted-types': 2.0.7 - workbox-core: 7.0.0 + workbox-core: 7.1.0 wrap-ansi@6.2.0: dependencies: @@ -14833,9 +14918,9 @@ snapshots: yocto-queue@1.0.0: {} - zod-to-json-schema@3.23.0(zod@3.23.4): + zod-to-json-schema@3.23.0(zod@3.23.6): dependencies: - zod: 3.23.4 + zod: 3.23.6 zod-validation-error@1.3.1(zod@3.23.4): dependencies: @@ -14843,4 +14928,6 @@ snapshots: zod@3.23.4: {} + zod@3.23.6: {} + zwitch@2.0.4: {}