diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts
index 047bcead..1bf4ab94 100644
--- a/docs/.vitepress/config.ts
+++ b/docs/.vitepress/config.ts
@@ -1,7 +1,6 @@
import {
defineConfig,
resolveSiteDataByRoute,
- type ConfigEnv,
type HeadConfig
} from 'vitepress'
import {
@@ -13,160 +12,159 @@ import llmstxt from 'vitepress-plugin-llms'
const prod = !!process.env.NETLIFY
-export default (ctx: ConfigEnv) =>
- defineConfig({
- title: 'VitePress',
+export default defineConfig({
+ title: 'VitePress',
- rewrites: {
- 'en/:rest*': ':rest*'
- },
+ rewrites: {
+ 'en/:rest*': ':rest*'
+ },
- lastUpdated: true,
- cleanUrls: true,
- metaChunk: true,
+ lastUpdated: true,
+ cleanUrls: true,
+ metaChunk: true,
- markdown: {
- math: true,
- codeTransformers: [
- // We use `[!!code` in demo to prevent transformation, here we revert it back.
- {
- postprocess(code) {
- return code.replace(/\[\!\!code/g, '[!code')
- }
+ markdown: {
+ math: true,
+ codeTransformers: [
+ // We use `[!!code` in demo to prevent transformation, here we revert it back.
+ {
+ postprocess(code) {
+ return code.replace(/\[\!\!code/g, '[!code')
}
- ],
- config(md) {
- // TODO: remove when https://github.com/vuejs/vitepress/issues/4431 is fixed
- const fence = md.renderer.rules.fence!
- md.renderer.rules.fence = function (tokens, idx, options, env, self) {
- const { localeIndex = 'root' } = env
- const codeCopyButtonTitle = (() => {
- switch (localeIndex) {
- case 'es':
- return 'Copiar código'
- case 'fa':
- return 'کپی کد'
- case 'ko':
- return '코드 복사'
- case 'pt':
- return 'Copiar código'
- case 'ru':
- return 'Скопировать код'
- case 'zh':
- return '复制代码'
- default:
- return 'Copy code'
- }
- })()
- return fence(tokens, idx, options, env, self).replace(
- '',
- ``
- )
- }
- md.use(groupIconMdPlugin)
}
- },
-
- sitemap: {
- hostname: 'https://vitepress.dev',
- transformItems(items) {
- return items.filter((item) => !item.url.includes('migration'))
+ ],
+ config(md) {
+ // TODO: remove when https://github.com/vuejs/vitepress/issues/4431 is fixed
+ const fence = md.renderer.rules.fence!
+ md.renderer.rules.fence = function (tokens, idx, options, env, self) {
+ const { localeIndex = 'root' } = env
+ const codeCopyButtonTitle = (() => {
+ switch (localeIndex) {
+ case 'es':
+ return 'Copiar código'
+ case 'fa':
+ return 'کپی کد'
+ case 'ko':
+ return '코드 복사'
+ case 'pt':
+ return 'Copiar código'
+ case 'ru':
+ return 'Скопировать код'
+ case 'zh':
+ return '复制代码'
+ default:
+ return 'Copy code'
+ }
+ })()
+ return fence(tokens, idx, options, env, self).replace(
+ '',
+ ``
+ )
}
- },
+ md.use(groupIconMdPlugin)
+ }
+ },
- head: [
- [
- 'link',
- { rel: 'icon', type: 'image/svg+xml', href: '/vitepress-logo-mini.svg' }
- ],
- [
- 'link',
- { rel: 'icon', type: 'image/png', href: '/vitepress-logo-mini.png' }
- ],
- ['meta', { name: 'theme-color', content: '#5f67ee' }],
- ['meta', { property: 'og:type', content: 'website' }],
- ['meta', { property: 'og:site_name', content: 'VitePress' }],
- [
- 'meta',
- {
- property: 'og:image',
- content: 'https://vitepress.dev/vitepress-og.jpg'
- }
- ],
- ['meta', { property: 'og:url', content: 'https://vitepress.dev/' }],
- [
- 'script',
- {
- src: 'https://cdn.usefathom.com/script.js',
- 'data-site': 'AZBRSFGG',
- 'data-spa': 'auto',
- defer: ''
- }
- ]
- ],
+ sitemap: {
+ hostname: 'https://vitepress.dev',
+ transformItems(items) {
+ return items.filter((item) => !item.url.includes('migration'))
+ }
+ },
- themeConfig: {
- logo: { src: '/vitepress-logo-mini.svg', width: 24, height: 24 },
+ head: [
+ [
+ 'link',
+ { rel: 'icon', type: 'image/svg+xml', href: '/vitepress-logo-mini.svg' }
+ ],
+ [
+ 'link',
+ { rel: 'icon', type: 'image/png', href: '/vitepress-logo-mini.png' }
+ ],
+ ['meta', { name: 'theme-color', content: '#5f67ee' }],
+ ['meta', { property: 'og:type', content: 'website' }],
+ ['meta', { property: 'og:site_name', content: 'VitePress' }],
+ [
+ 'meta',
+ {
+ property: 'og:image',
+ content: 'https://vitepress.dev/vitepress-og.jpg'
+ }
+ ],
+ ['meta', { property: 'og:url', content: 'https://vitepress.dev/' }],
+ [
+ 'script',
+ {
+ src: 'https://cdn.usefathom.com/script.js',
+ 'data-site': 'AZBRSFGG',
+ 'data-spa': 'auto',
+ defer: ''
+ }
+ ]
+ ],
- socialLinks: [
- { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
- ],
+ themeConfig: {
+ logo: { src: '/vitepress-logo-mini.svg', width: 24, height: 24 },
- search: {
- provider: 'algolia',
- options: {
- appId: '8J64VVRP8K',
- apiKey: '52f578a92b88ad6abde815aae2b0ad7c',
- indexName: 'vitepress'
- }
- },
+ socialLinks: [
+ { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
+ ],
- carbonAds: { code: 'CEBDT27Y', placement: 'vuejsorg' }
+ search: {
+ provider: 'algolia',
+ options: {
+ appId: '8J64VVRP8K',
+ apiKey: '52f578a92b88ad6abde815aae2b0ad7c',
+ indexName: 'vitepress'
+ }
},
- locales: {
- root: { label: 'English' },
- zh: { label: '简体中文' },
- pt: { label: 'Português' },
- ru: { label: 'Русский' },
- es: { label: 'Español' },
- ko: { label: '한국어' },
- fa: { label: 'فارسی' }
- },
+ carbonAds: { code: 'CEBDT27Y', placement: 'vuejsorg' }
+ },
- vite: {
- plugins: [
- groupIconVitePlugin({
- customIcon: {
- vitepress: localIconLoader(
- import.meta.url,
- '../public/vitepress-logo-mini.svg'
- ),
- firebase: 'logos:firebase'
- }
- }),
- prod &&
- llmstxt({
- workDir: 'en',
- ignoreFiles: ['index.md']
- })
- ],
- experimental: {
- enableNativePlugin: ctx.command === 'build'
- }
- },
+ locales: {
+ root: { label: 'English' },
+ zh: { label: '简体中文' },
+ pt: { label: 'Português' },
+ ru: { label: 'Русский' },
+ es: { label: 'Español' },
+ ko: { label: '한국어' },
+ fa: { label: 'فارسی' }
+ },
- transformPageData: prod
- ? (pageData, ctx) => {
- const site = resolveSiteDataByRoute(
- ctx.siteConfig.site,
- pageData.relativePath
- )
- const title = `${pageData.title || site.title} | ${pageData.description || site.description}`
- ;((pageData.frontmatter.head ??= []) as HeadConfig[]).push(
- ['meta', { property: 'og:locale', content: site.lang }],
- ['meta', { property: 'og:title', content: title }]
- )
+ vite: {
+ plugins: [
+ groupIconVitePlugin({
+ customIcon: {
+ vitepress: localIconLoader(
+ import.meta.url,
+ '../public/vitepress-logo-mini.svg'
+ ),
+ firebase: 'logos:firebase'
}
- : undefined
- })
+ }),
+ prod &&
+ llmstxt({
+ workDir: 'en',
+ ignoreFiles: ['index.md']
+ })
+ ],
+ experimental: {
+ enableNativePlugin: true
+ }
+ },
+
+ transformPageData: prod
+ ? (pageData, ctx) => {
+ const site = resolveSiteDataByRoute(
+ ctx.siteConfig.site,
+ pageData.relativePath
+ )
+ const title = `${pageData.title || site.title} | ${pageData.description || site.description}`
+ ;((pageData.frontmatter.head ??= []) as HeadConfig[]).push(
+ ['meta', { property: 'og:locale', content: site.lang }],
+ ['meta', { property: 'og:title', content: title }]
+ )
+ }
+ : undefined
+})
diff --git a/docs/package.json b/docs/package.json
index 83d7f464..715391cd 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -15,7 +15,7 @@
"open-cli": "^8.0.0",
"postcss-rtlcss": "^5.7.1",
"vitepress": "workspace:*",
- "vitepress-plugin-group-icons": "^1.5.5",
- "vitepress-plugin-llms": "^1.3.4"
+ "vitepress-plugin-group-icons": "^1.6.0",
+ "vitepress-plugin-llms": "^1.5.0"
}
}
diff --git a/package.json b/package.json
index 2167d291..83e6f320 100644
--- a/package.json
+++ b/package.json
@@ -97,10 +97,10 @@
"dependencies": {
"@docsearch/css": "^3.9.0",
"@docsearch/js": "^3.9.0",
- "@iconify-json/simple-icons": "^1.2.36",
- "@shikijs/core": "^3.4.2",
- "@shikijs/transformers": "^3.4.2",
- "@shikijs/types": "^3.4.2",
+ "@iconify-json/simple-icons": "^1.2.38",
+ "@shikijs/core": "^3.6.0",
+ "@shikijs/transformers": "^3.6.0",
+ "@shikijs/types": "^3.6.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/devtools-api": "^7.7.6",
"@vue/shared": "^3.5.16",
@@ -109,12 +109,12 @@
"focus-trap": "^7.6.5",
"mark.js": "8.11.1",
"minisearch": "^7.1.2",
- "shiki": "^3.4.2",
+ "shiki": "^3.6.0",
"vite": "^6.3.5",
"vue": "^3.5.16"
},
"devDependencies": {
- "@clack/prompts": "^1.0.0-alpha.0",
+ "@clack/prompts": "^1.0.0-alpha.1",
"@iconify/utils": "^2.3.0",
"@mdit-vue/plugin-component": "^2.1.4",
"@mdit-vue/plugin-frontmatter": "^2.1.4",
@@ -139,7 +139,7 @@
"@types/markdown-it-container": "^2.0.10",
"@types/markdown-it-emoji": "^3.0.1",
"@types/minimist": "^1.2.5",
- "@types/node": "^22.15.29",
+ "@types/node": "^24.0.1",
"@types/picomatch": "^4.0.0",
"@types/postcss-prefix-selector": "^1.16.3",
"@types/prompts": "^2.4.9",
@@ -165,20 +165,20 @@
"minimist": "^1.2.8",
"nanoid": "^5.1.5",
"ora": "^8.2.0",
- "oxc-minify": "^0.72.2",
+ "oxc-minify": "^0.72.3",
"p-map": "^7.0.3",
"path-to-regexp": "^6.3.0",
"picocolors": "^1.1.1",
"picomatch": "^4.0.2",
- "pkg-dir": "^8.0.0",
- "playwright-chromium": "^1.52.0",
+ "package-directory": "^8.1.0",
+ "playwright-chromium": "^1.53.0",
"polka": "^1.0.0-next.28",
"postcss-prefix-selector": "^2.1.1",
"prettier": "^3.5.3",
"prompts": "^2.4.2",
"punycode": "^2.3.1",
"rimraf": "^6.0.1",
- "rollup": "^4.41.1",
+ "rollup": "^4.43.0",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "^6.2.1",
"semver": "^7.7.2",
@@ -187,13 +187,13 @@
"sitemap": "^8.0.0",
"tinyglobby": "^0.2.14",
"typescript": "^5.8.3",
- "vitest": "^3.1.4",
- "vue-tsc": "^3.0.0-alpha.8",
+ "vitest": "^3.2.3",
+ "vue-tsc": "^3.0.0-alpha.10",
"wait-on": "^8.0.3"
},
"peerDependencies": {
"markdown-it-mathjax3": "^4",
- "oxc-minify": "^0.72.2",
+ "oxc-minify": "^0.72.3",
"postcss": "^8"
},
"peerDependenciesMeta": {
@@ -207,7 +207,7 @@
"optional": true
}
},
- "packageManager": "pnpm@10.11.0",
+ "packageManager": "pnpm@10.12.1",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1d19263e..1637d4d1 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -25,22 +25,22 @@ importers:
version: 3.9.0
'@docsearch/js':
specifier: ^3.9.0
- version: 3.9.0(@algolia/client-search@5.25.0)
+ version: 3.9.0(@algolia/client-search@5.27.0)
'@iconify-json/simple-icons':
- specifier: ^1.2.36
- version: 1.2.36
+ specifier: ^1.2.38
+ version: 1.2.38
'@shikijs/core':
- specifier: ^3.4.2
- version: 3.4.2
+ specifier: ^3.6.0
+ version: 3.6.0
'@shikijs/transformers':
- specifier: ^3.4.2
- version: 3.4.2
+ specifier: ^3.6.0
+ version: 3.6.0
'@shikijs/types':
- specifier: ^3.4.2
- version: 3.4.2
+ specifier: ^3.6.0
+ version: 3.6.0
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))(vue@3.5.16(typescript@5.8.3))
+ version: 5.2.4(rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))(vue@3.5.16(typescript@5.8.3))
'@vue/devtools-api':
specifier: ^7.7.6
version: 7.7.6
@@ -63,18 +63,18 @@ importers:
specifier: ^7.1.2
version: 7.1.2
shiki:
- specifier: ^3.4.2
- version: 3.4.2
+ specifier: ^3.6.0
+ version: 3.6.0
vite:
specifier: npm:rolldown-vite@latest
- version: rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ version: rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
vue:
specifier: ^3.5.16
version: 3.5.16(typescript@5.8.3)
devDependencies:
'@clack/prompts':
- specifier: ^1.0.0-alpha.0
- version: 1.0.0-alpha.0
+ specifier: ^1.0.0-alpha.1
+ version: 1.0.0-alpha.1
'@iconify/utils':
specifier: ^2.3.0
version: 2.3.0
@@ -104,19 +104,19 @@ importers:
version: 1.0.0-next.28
'@rollup/plugin-alias':
specifier: ^5.1.1
- version: 5.1.1(rollup@4.41.1)
+ version: 5.1.1(rollup@4.43.0)
'@rollup/plugin-commonjs':
specifier: ^28.0.3
- version: 28.0.3(rollup@4.41.1)
+ version: 28.0.3(rollup@4.43.0)
'@rollup/plugin-json':
specifier: ^6.1.0
- version: 6.1.0(rollup@4.41.1)
+ version: 6.1.0(rollup@4.43.0)
'@rollup/plugin-node-resolve':
specifier: ^16.0.1
- version: 16.0.1(rollup@4.41.1)
+ version: 16.0.1(rollup@4.43.0)
'@rollup/plugin-replace':
specifier: ^6.0.2
- version: 6.0.2(rollup@4.41.1)
+ version: 6.0.2(rollup@4.43.0)
'@types/cross-spawn':
specifier: ^6.0.6
version: 6.0.6
@@ -148,8 +148,8 @@ importers:
specifier: ^1.2.5
version: 1.2.5
'@types/node':
- specifier: ^22.15.29
- version: 22.15.29
+ specifier: ^24.0.1
+ version: 24.0.1
'@types/picomatch':
specifier: ^4.0.0
version: 4.0.0
@@ -226,11 +226,14 @@ importers:
specifier: ^8.2.0
version: 8.2.0
oxc-minify:
- specifier: ^0.72.2
- version: 0.72.2
+ specifier: ^0.72.3
+ version: 0.72.3
p-map:
specifier: ^7.0.3
version: 7.0.3
+ package-directory:
+ specifier: ^8.1.0
+ version: 8.1.0
path-to-regexp:
specifier: ^6.3.0
version: 6.3.0
@@ -240,18 +243,15 @@ importers:
picomatch:
specifier: ^4.0.2
version: 4.0.2
- pkg-dir:
- specifier: ^8.0.0
- version: 8.0.0
playwright-chromium:
- specifier: ^1.52.0
- version: 1.52.0
+ specifier: ^1.53.0
+ version: 1.53.0
polka:
specifier: ^1.0.0-next.28
version: 1.0.0-next.28
postcss-prefix-selector:
specifier: ^2.1.1
- version: 2.1.1(postcss@8.5.4)
+ version: 2.1.1(postcss@8.5.5)
prettier:
specifier: ^3.5.3
version: 3.5.3
@@ -265,14 +265,14 @@ importers:
specifier: ^6.0.1
version: 6.0.1
rollup:
- specifier: ^4.41.1
- version: 4.41.1
+ specifier: ^4.43.0
+ version: 4.43.0
rollup-plugin-dts:
specifier: 6.1.1
- version: 6.1.1(rollup@4.41.1)(typescript@5.8.3)
+ version: 6.1.1(rollup@4.43.0)(typescript@5.8.3)
rollup-plugin-esbuild:
specifier: ^6.2.1
- version: 6.2.1(esbuild@0.25.5)(rollup@4.41.1)
+ version: 6.2.1(esbuild@0.25.5)(rollup@4.43.0)
semver:
specifier: ^7.7.2
version: 7.7.2
@@ -292,11 +292,11 @@ importers:
specifier: ^5.8.3
version: 5.8.3
vitest:
- specifier: ^3.1.4
- version: 3.1.4(@types/debug@4.1.12)(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ specifier: ^3.2.3
+ version: 3.2.3(@types/debug@4.1.12)(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
vue-tsc:
- specifier: ^3.0.0-alpha.8
- version: 3.0.0-alpha.8(typescript@5.8.3)
+ specifier: ^3.0.0-alpha.10
+ version: 3.0.0-alpha.10(typescript@5.8.3)
wait-on:
specifier: ^8.0.3
version: 8.0.3(debug@4.4.1)
@@ -326,16 +326,16 @@ importers:
version: 8.0.0
postcss-rtlcss:
specifier: ^5.7.1
- version: 5.7.1(postcss@8.5.4)
+ version: 5.7.1(postcss@8.5.5)
vitepress:
specifier: workspace:*
version: link:..
vitepress-plugin-group-icons:
- specifier: ^1.5.5
- version: 1.5.5(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(markdown-it@14.1.0)(yaml@2.8.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(markdown-it@14.1.0)(yaml@2.8.0)
vitepress-plugin-llms:
- specifier: ^1.3.4
- version: 1.3.4
+ specifier: ^1.5.0
+ version: 1.5.0
packages:
@@ -359,56 +359,56 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.25.0':
- resolution: {integrity: sha512-1pfQulNUYNf1Tk/svbfjfkLBS36zsuph6m+B6gDkPEivFmso/XnRgwDvjAx80WNtiHnmeNjIXdF7Gos8+OLHqQ==}
+ '@algolia/client-abtesting@5.27.0':
+ resolution: {integrity: sha512-SITU5umoknxETtw67TxJu9njyMkWiH8pM+Bvw4dzfuIrIAT6Y1rmwV4y0A0didWoT+6xVuammIykbtBMolBcmg==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.25.0':
- resolution: {integrity: sha512-AFbG6VDJX/o2vDd9hqncj1B6B4Tulk61mY0pzTtzKClyTDlNP0xaUiEKhl6E7KO9I/x0FJF5tDCm0Hn6v5x18A==}
+ '@algolia/client-analytics@5.27.0':
+ resolution: {integrity: sha512-go1b9qIZK5vYEQ7jD2bsfhhhVsoh9cFxQ5xF8TzTsg2WOCZR3O92oXCkq15SOK0ngJfqDU6a/k0oZ4KuEnih1Q==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.25.0':
- resolution: {integrity: sha512-il1zS/+Rc6la6RaCdSZ2YbJnkQC6W1wiBO8+SH+DE6CPMWBU6iDVzH0sCKSAtMWl9WBxoN6MhNjGBnCv9Yy2bA==}
+ '@algolia/client-common@5.27.0':
+ resolution: {integrity: sha512-tnFOzdNuMzsz93kOClj3fKfuYoF3oYaEB5bggULSj075GJ7HUNedBEm7a6ScrjtnOaOtipbnT7veUpHA4o4wEQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.25.0':
- resolution: {integrity: sha512-blbjrUH1siZNfyCGeq0iLQu00w3a4fBXm0WRIM0V8alcAPo7rWjLbMJMrfBtzL9X5ic6wgxVpDADXduGtdrnkw==}
+ '@algolia/client-insights@5.27.0':
+ resolution: {integrity: sha512-y1qgw39qZijjQBXrqZTiwK1cWgWGRiLpJNWBv9w36nVMKfl9kInrfsYmdBAfmlhVgF/+Woe0y1jQ7pa4HyShAw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.25.0':
- resolution: {integrity: sha512-aywoEuu1NxChBcHZ1pWaat0Plw7A8jDMwjgRJ00Mcl7wGlwuPt5dJ/LTNcg3McsEUbs2MBNmw0ignXBw9Tbgow==}
+ '@algolia/client-personalization@5.27.0':
+ resolution: {integrity: sha512-XluG9qPZKEbiLoIfXTKbABsWDNOMPx0t6T2ImJTTeuX+U/zBdmfcqqgcgkqXp+vbXof/XX/4of9Eqo1JaqEmKw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.25.0':
- resolution: {integrity: sha512-a/W2z6XWKjKjIW1QQQV8PTTj1TXtaKx79uR3NGBdBdGvVdt24KzGAaN7sCr5oP8DW4D3cJt44wp2OY/fZcPAVA==}
+ '@algolia/client-query-suggestions@5.27.0':
+ resolution: {integrity: sha512-V8/To+SsAl2sdw2AAjeLJuCW1L+xpz+LAGerJK7HKqHzE5yQhWmIWZTzqYQcojkii4iBMYn0y3+uReWqT8XVSQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.25.0':
- resolution: {integrity: sha512-9rUYcMIBOrCtYiLX49djyzxqdK9Dya/6Z/8sebPn94BekT+KLOpaZCuc6s0Fpfq7nx5J6YY5LIVFQrtioK9u0g==}
+ '@algolia/client-search@5.27.0':
+ resolution: {integrity: sha512-EJJ7WmvmUXZdchueKFCK8UZFyLqy4Hz64snNp0cTc7c0MKaSeDGYEDxVsIJKp15r7ORaoGxSyS4y6BGZMXYuCg==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.25.0':
- resolution: {integrity: sha512-jJeH/Hk+k17Vkokf02lkfYE4A+EJX+UgnMhTLR/Mb+d1ya5WhE+po8p5a/Nxb6lo9OLCRl6w3Hmk1TX1e9gVbQ==}
+ '@algolia/ingestion@1.27.0':
+ resolution: {integrity: sha512-xNCyWeqpmEo4EdmpG57Fs1fJIQcPwt5NnJ6MBdXnUdMVXF4f5PHgza+HQWQQcYpCsune96jfmR0v7us6gRIlCw==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.25.0':
- resolution: {integrity: sha512-Ls3i1AehJ0C6xaHe7kK9vPmzImOn5zBg7Kzj8tRYIcmCWVyuuFwCIsbuIIz/qzUf1FPSWmw0TZrGeTumk2fqXg==}
+ '@algolia/monitoring@1.27.0':
+ resolution: {integrity: sha512-P0NDiEFyt9UYQLBI0IQocIT7xHpjMpoFN3UDeerbztlkH9HdqT0GGh1SHYmNWpbMWIGWhSJTtz6kSIWvFu4+pw==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.25.0':
- resolution: {integrity: sha512-79sMdHpiRLXVxSjgw7Pt4R1aNUHxFLHiaTDnN2MQjHwJ1+o3wSseb55T9VXU4kqy3m7TUme3pyRhLk5ip/S4Mw==}
+ '@algolia/recommend@5.27.0':
+ resolution: {integrity: sha512-cqfTMF1d1cc7hg0vITNAFxJZas7MJ4Obc36WwkKpY23NOtGb+4tH9X7UKlQa2PmTgbXIANoJ/DAQTeiVlD2I4Q==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.25.0':
- resolution: {integrity: sha512-JLaF23p1SOPBmfEqozUAgKHQrGl3z/Z5RHbggBu6s07QqXXcazEsub5VLonCxGVqTv6a61AAPr8J1G5HgGGjEw==}
+ '@algolia/requester-browser-xhr@5.27.0':
+ resolution: {integrity: sha512-ErenYTcXl16wYXtf0pxLl9KLVxIztuehqXHfW9nNsD8mz9OX42HbXuPzT7y6JcPiWJpc/UU/LY5wBTB65vsEUg==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.25.0':
- resolution: {integrity: sha512-rtzXwqzFi1edkOF6sXxq+HhmRKDy7tz84u0o5t1fXwz0cwx+cjpmxu/6OQKTdOJFS92JUYHsG51Iunie7xbqfQ==}
+ '@algolia/requester-fetch@5.27.0':
+ resolution: {integrity: sha512-CNOvmXsVi+IvT7z1d+6X7FveVkgEQwTNgipjQCHTIbF9KSMfZR7tUsJC+NpELrm10ALdOMauah84ybs9rw1cKQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.25.0':
- resolution: {integrity: sha512-ZO0UKvDyEFvyeJQX0gmZDQEvhLZ2X10K+ps6hViMo1HgE2V8em00SwNsQ+7E/52a+YiBkVWX61pJJJE44juDMQ==}
+ '@algolia/requester-node-http@5.27.0':
+ resolution: {integrity: sha512-Nx9EdLYZDsaYFTthqmc0XcVvsx6jqeEX8fNiYOB5i2HboQwl8pJPj1jFhGqoGd0KG7KFR+sdPO5/e0EDDAru2Q==}
engines: {node: '>= 14.0.0'}
'@antfu/install-pkg@1.1.0':
@@ -429,23 +429,23 @@ packages:
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.27.4':
- resolution: {integrity: sha512-BRmLHGwpUqLFR2jzx9orBuX/ABDkj2jLKOXrHDTN2aOKL+jFDDKaRNo9nyYsIl9h/UE/7lMKdDjKQQyxKKDZ7g==}
+ '@babel/parser@7.27.5':
+ resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/types@7.27.3':
- resolution: {integrity: sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==}
+ '@babel/types@7.27.6':
+ resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==}
engines: {node: '>=6.9.0'}
'@clack/core@0.3.5':
resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==}
- '@clack/core@1.0.0-alpha.0':
- resolution: {integrity: sha512-Cp/bPW/pMUCkJ7Lr8VFixvFrlnJ4tQPDHqfTNQ51z50qwX1fSIAstQLfel2NquVHqbfjyrUkBsal8OJRBPJVjw==}
+ '@clack/core@1.0.0-alpha.1':
+ resolution: {integrity: sha512-rFbCU83JnN7l3W1nfgCqqme4ZZvTTgsiKQ6FM0l+r0P+o2eJpExcocBUWUIwnDzL76Aca9VhUdWmB2MbUv+Qyg==}
- '@clack/prompts@1.0.0-alpha.0':
- resolution: {integrity: sha512-Aem7r4U2A4jdOh0PIv51Ugi+4vDgzJjGVMnuPUNVVHDGhFHEO//u6F/JY6NsZQFtXrd7ZmfePSiipikr/e5wWg==}
+ '@clack/prompts@1.0.0-alpha.1':
+ resolution: {integrity: sha512-07MNT0OsxjKOcyVfX8KhXBhJiyUbDP1vuIAcHc+nx5v93MJO23pX3X/k3bWz6T3rpM9dgWPq90i4Jq7gZAyMbw==}
'@conventional-changelog/git-client@1.0.1':
resolution: {integrity: sha512-PJEqBwAleffCMETaVm/fUgHldzBE35JFk3/9LL6NUA5EXa3qednu+UT6M7E5iBu3zIQZCULYIiZ90fBYHt6xUw==}
@@ -654,8 +654,8 @@ packages:
'@iconify-json/logos@1.2.4':
resolution: {integrity: sha512-XC4If5D/hbaZvUkTV8iaZuGlQCyG6CNOlaAaJaGa13V5QMYwYjgtKk3vPP8wz3wtTVNVEVk3LRx1fOJz+YnSMw==}
- '@iconify-json/simple-icons@1.2.36':
- resolution: {integrity: sha512-ZMpVdoW/7hhbt2aHVSvudjH8eSVNNjKkAAjwAQHgiuPUiIfbvNakVin+H9uhUz4N9TbDT/nanzV/4Slb+6dDXw==}
+ '@iconify-json/simple-icons@1.2.38':
+ resolution: {integrity: sha512-mvMeFQgVjoHanQE9Q7ihmriEXAorjLZW+crUgQspDjFpzWuQp2RZMTppl1MN6TQztMVTsNFgF6LDKsp+v1RYRg==}
'@iconify-json/vscode-icons@1.2.22':
resolution: {integrity: sha512-qQ+2q3E7ULfDreFOspoYKcGJ76o0/D7wZiBt5g8wco9v+Qq6JDH3z2YNoM/36zzAqRnhVEIs5A9sdZeAJeJUwA==}
@@ -708,8 +708,8 @@ packages:
'@mdit-vue/types@2.1.4':
resolution: {integrity: sha512-QiGNZslz+zXUs2X8D11UQhB4KAMZ0DZghvYxa7+1B+VMLcDtz//XHpWbcuexjzE3kBXSxIUTPH3eSQCa0puZHA==}
- '@napi-rs/wasm-runtime@0.2.10':
- resolution: {integrity: sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==}
+ '@napi-rs/wasm-runtime@0.2.11':
+ resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -723,85 +723,85 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@oxc-minify/binding-darwin-arm64@0.72.2':
- resolution: {integrity: sha512-MN8nutL+fg9A7z6Sb6+vo1N2T86hzX4tncLtfBxf3rbSpY2H35ljNXQiEu00bLPbLojkanvSu8baIklrzI+BGg==}
+ '@oxc-minify/binding-darwin-arm64@0.72.3':
+ resolution: {integrity: sha512-F/QC1UnSfx5+dmWNLqm6EL1Yj1GpXtfRuZjwENtH/ULZZzPlKBxd4LSaH1GIncldk7zPQ60jtprnS53CRFcU1Q==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- '@oxc-minify/binding-darwin-x64@0.72.2':
- resolution: {integrity: sha512-F2ffEji4ZysjTegR0NKsE6Es2GSa3FvaI1kc4Tnh7okRe5bNrIrrPCej78lj5wHxfp2q9yZWXoYGEEK6mxvCUQ==}
+ '@oxc-minify/binding-darwin-x64@0.72.3':
+ resolution: {integrity: sha512-LRhug/hQ19Lqf9P7K9jBiyTfwlOWsY1HTh2/Vo771NUUZkVNq9L8tkSQhg+u8tmcRjJTI5LkAK8nW751fLkZ7Q==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- '@oxc-minify/binding-freebsd-x64@0.72.2':
- resolution: {integrity: sha512-wwwMDZOpFNm7ujWS8zffu4vRkHCuwtwhi26jheOHMEgHFrldxxCKYdGq7eysRxUQVSANVdWO/1MK46zG+/n/ZQ==}
+ '@oxc-minify/binding-freebsd-x64@0.72.3':
+ resolution: {integrity: sha512-/BDZAumYnSFeTsJU7mA9qZp6U93dVnlPlZ7YcqXYgFSZBkQsMe1gtzRfAZ6veJ7pB4L57h56JTTVBDQB1B4QpA==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [freebsd]
- '@oxc-minify/binding-linux-arm-gnueabihf@0.72.2':
- resolution: {integrity: sha512-MIAW/qpOE2SHTmeNmvyr++OG4iY6Nwwyd4Wt5ys4JtkBijdLgu/FMU22Su6CzmDHzLvP2i6Q3jTc3bBFmSDfYA==}
+ '@oxc-minify/binding-linux-arm-gnueabihf@0.72.3':
+ resolution: {integrity: sha512-W6tbZwlCT4EZaAw5SyLeeDx1J2XPA9P3WhwotPBs3J7/vAFm+xWM+115sE4/PdqnEDaHG4lMBKF76XXihn9HpQ==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-minify/binding-linux-arm-musleabihf@0.72.2':
- resolution: {integrity: sha512-DnTyfCB1sb6aECrRGT7MPJG1iDR/cnKsWUzYa3UI2SPwX1qJEoqCnWt+tDa5OO25aJxUaYNNg0WZC1ler5gVfg==}
+ '@oxc-minify/binding-linux-arm-musleabihf@0.72.3':
+ resolution: {integrity: sha512-IMItUkn9b2bny5GCQWFkrfuM9lpW5kUpw/UEvqW9SrjrfBeof9I/76EGuvZluA99hhz+0BFDpdOr1hlQygKZ/A==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-minify/binding-linux-arm64-gnu@0.72.2':
- resolution: {integrity: sha512-oh+/hsldmQJVLiAyMDLgji1Tka0S9dzhhype13H7jw0iAoWIzcAEL0i3lIbotExT4NhEQ/AS4VzQWOwd5In0Fg==}
+ '@oxc-minify/binding-linux-arm64-gnu@0.72.3':
+ resolution: {integrity: sha512-DvzsxlcSG0IRGWCJTHMZXpSyng1RSTVBL5DyPCzD0OUMQaurJRs/NsVK7+zF95CtuSoiNp0wAX2cl7+v3YtnYw==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-minify/binding-linux-arm64-musl@0.72.2':
- resolution: {integrity: sha512-/j2oDxLknFBGhL/WilR/fJxap4M3e4Y1NgFPZxB7wsifEA7pmWIk7SkfpQCGRcNFzIa/48p5ZOA5gVg8rQ1SxQ==}
+ '@oxc-minify/binding-linux-arm64-musl@0.72.3':
+ resolution: {integrity: sha512-lc7A7eiQxf3slm/DR+DjJVGnjkw8Xnvi63PdaqHf4+8569n8u6FbcVpBzaW3ENxrYCilSdjMeVeSa8dW62SJ1g==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-minify/binding-linux-riscv64-gnu@0.72.2':
- resolution: {integrity: sha512-rJFIXy6B93Oi4wzG5BrTemnsEZm2f1+cIPPRprzmEqr/Tah/qpp2kbaKUAoZ19dhufMnwAXXsF7UUqBCaQZ6gQ==}
+ '@oxc-minify/binding-linux-riscv64-gnu@0.72.3':
+ resolution: {integrity: sha512-OgACyiKTywSlXdegGnAJKMsya6+XcQQrCCJV77bdCQJJG3qpVwCEKplh4GXgoIHGiqQVgccHHImyeVgAEDpB8w==}
engines: {node: '>=14.0.0'}
cpu: [riscv64]
os: [linux]
- '@oxc-minify/binding-linux-s390x-gnu@0.72.2':
- resolution: {integrity: sha512-2lUdMK11jO1cOcE848k16Hn9zMmpXnkwEsNpNQYhNtNlCDpPGYHt50GUvNrgv8Ux3eGcrCiNz5GAZZr+STbqyg==}
+ '@oxc-minify/binding-linux-s390x-gnu@0.72.3':
+ resolution: {integrity: sha512-ZGAAgZ65LID/w4UN7rIZjWCb+BlGMpRQ1d6ujXG80dIZEns/Y5HIYBdDetnHA65KNiqR/dhokdvgIsGrtVB6wA==}
engines: {node: '>=14.0.0'}
cpu: [s390x]
os: [linux]
- '@oxc-minify/binding-linux-x64-gnu@0.72.2':
- resolution: {integrity: sha512-0Jrk3+0yxHajAFeCTaPHZ+zgxM3UZ8ZDgHFplAAHbQEqCuVPvQDNWBSMwO/bL8s/WONU1SGmhYxX7u1wGo/W6g==}
+ '@oxc-minify/binding-linux-x64-gnu@0.72.3':
+ resolution: {integrity: sha512-c2w3yyVvmoweH27JRmr87P49PgShsYsp9wEJqaLglHO9po3T2vg9cvuWQdolvFzOK5l6cIK9H6qWQ/iM14eXxQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-minify/binding-linux-x64-musl@0.72.2':
- resolution: {integrity: sha512-IqBiYi4R0jgNIWsGmgSQH8UW4TfXyAIT5W7dqnbZUPzIxzmb0VE1PVfhXPBccWyQUthxQlXgNc4zPIJmZG5LUA==}
+ '@oxc-minify/binding-linux-x64-musl@0.72.3':
+ resolution: {integrity: sha512-n1B/srkCowXBklgr+E5ASv7xav/y3Ipj0NlLGFIF++bfYXdz06jN4xQ7jwPxqBTq7UZcJ3s3VB+Qyua7qmgBcA==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-minify/binding-wasm32-wasi@0.72.2':
- resolution: {integrity: sha512-0ljl4B1+rAGCT5VRDbl9sm9FSF3XLadm9mdOU4EEgIDeRmK4IAzy1tB6QvSjnHtAUBD3dMEeF19/KBUS2Jzw5Q==}
+ '@oxc-minify/binding-wasm32-wasi@0.72.3':
+ resolution: {integrity: sha512-ZWuHsE6kp+rKruj3S8u86BdbamR9OJ1fZaJtg/Wj//U7hVV5a9i2a2gTiEA8wQIbNFqAhR4b0a11M1amzOskqA==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-minify/binding-win32-arm64-msvc@0.72.2':
- resolution: {integrity: sha512-1Jv17oZFSAdvMhALWaj1xfY3nwY8zx1cy1oOMnKJUr5plKqOSL4+d6uqLzTl5IzbAycmG+v9SuHRWKLzSYmAXg==}
+ '@oxc-minify/binding-win32-arm64-msvc@0.72.3':
+ resolution: {integrity: sha512-8zOQJWIllPVGLb+yG+B55QtGW2dbTiqbSe2aCAEAis1VROyQ68URH3OX4I70WOyFCQycKKFo95RjZkepaGfbIA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
- '@oxc-minify/binding-win32-x64-msvc@0.72.2':
- resolution: {integrity: sha512-dgxeDYDTVdQavyp4AM42EE023yLFrlELWMSzqiVYinOLo4PdKH2d94e2AfA6emw+a+0tArCQ15jEA6K3xx0uVw==}
+ '@oxc-minify/binding-win32-x64-msvc@0.72.3':
+ resolution: {integrity: sha512-FqZ/NHt5wgM9TUI63//eVcgvLToWtzdm0XK1mVIvMVLsmuj2lQAC4TCiSyZqg7HqSoqun1PVeqwsFmRVhVjK6A==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
@@ -937,129 +937,129 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.41.1':
- resolution: {integrity: sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==}
+ '@rollup/rollup-android-arm-eabi@4.43.0':
+ resolution: {integrity: sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.41.1':
- resolution: {integrity: sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==}
+ '@rollup/rollup-android-arm64@4.43.0':
+ resolution: {integrity: sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.41.1':
- resolution: {integrity: sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==}
+ '@rollup/rollup-darwin-arm64@4.43.0':
+ resolution: {integrity: sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.41.1':
- resolution: {integrity: sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==}
+ '@rollup/rollup-darwin-x64@4.43.0':
+ resolution: {integrity: sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.41.1':
- resolution: {integrity: sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==}
+ '@rollup/rollup-freebsd-arm64@4.43.0':
+ resolution: {integrity: sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.41.1':
- resolution: {integrity: sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==}
+ '@rollup/rollup-freebsd-x64@4.43.0':
+ resolution: {integrity: sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.41.1':
- resolution: {integrity: sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.43.0':
+ resolution: {integrity: sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.41.1':
- resolution: {integrity: sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==}
+ '@rollup/rollup-linux-arm-musleabihf@4.43.0':
+ resolution: {integrity: sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.41.1':
- resolution: {integrity: sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==}
+ '@rollup/rollup-linux-arm64-gnu@4.43.0':
+ resolution: {integrity: sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.41.1':
- resolution: {integrity: sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==}
+ '@rollup/rollup-linux-arm64-musl@4.43.0':
+ resolution: {integrity: sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.41.1':
- resolution: {integrity: sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.43.0':
+ resolution: {integrity: sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.41.1':
- resolution: {integrity: sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.43.0':
+ resolution: {integrity: sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.41.1':
- resolution: {integrity: sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.43.0':
+ resolution: {integrity: sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.41.1':
- resolution: {integrity: sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==}
+ '@rollup/rollup-linux-riscv64-musl@4.43.0':
+ resolution: {integrity: sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.41.1':
- resolution: {integrity: sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==}
+ '@rollup/rollup-linux-s390x-gnu@4.43.0':
+ resolution: {integrity: sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.41.1':
- resolution: {integrity: sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==}
+ '@rollup/rollup-linux-x64-gnu@4.43.0':
+ resolution: {integrity: sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.41.1':
- resolution: {integrity: sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==}
+ '@rollup/rollup-linux-x64-musl@4.43.0':
+ resolution: {integrity: sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.41.1':
- resolution: {integrity: sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.43.0':
+ resolution: {integrity: sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.41.1':
- resolution: {integrity: sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==}
+ '@rollup/rollup-win32-ia32-msvc@4.43.0':
+ resolution: {integrity: sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.41.1':
- resolution: {integrity: sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==}
+ '@rollup/rollup-win32-x64-msvc@4.43.0':
+ resolution: {integrity: sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==}
cpu: [x64]
os: [win32]
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@shikijs/core@3.4.2':
- resolution: {integrity: sha512-AG8vnSi1W2pbgR2B911EfGqtLE9c4hQBYkv/x7Z+Kt0VxhgQKcW7UNDVYsu9YxwV6u+OJrvdJrMq6DNWoBjihQ==}
+ '@shikijs/core@3.6.0':
+ resolution: {integrity: sha512-9By7Xb3olEX0o6UeJyPLI1PE1scC4d3wcVepvtv2xbuN9/IThYN4Wcwh24rcFeASzPam11MCq8yQpwwzCgSBRw==}
- '@shikijs/engine-javascript@3.4.2':
- resolution: {integrity: sha512-1/adJbSMBOkpScCE/SB6XkjJU17ANln3Wky7lOmrnpl+zBdQ1qXUJg2GXTYVHRq+2j3hd1DesmElTXYDgtfSOQ==}
+ '@shikijs/engine-javascript@3.6.0':
+ resolution: {integrity: sha512-7YnLhZG/TU05IHMG14QaLvTW/9WiK8SEYafceccHUSXs2Qr5vJibUwsDfXDLmRi0zHdzsxrGKpSX6hnqe0k8nA==}
- '@shikijs/engine-oniguruma@3.4.2':
- resolution: {integrity: sha512-zcZKMnNndgRa3ORja6Iemsr3DrLtkX3cAF7lTJkdMB6v9alhlBsX9uNiCpqofNrXOvpA3h6lHcLJxgCIhVOU5Q==}
+ '@shikijs/engine-oniguruma@3.6.0':
+ resolution: {integrity: sha512-nmOhIZ9yT3Grd+2plmW/d8+vZ2pcQmo/UnVwXMUXAKTXdi+LK0S08Ancrz5tQQPkxvjBalpMW2aKvwXfelauvA==}
- '@shikijs/langs@3.4.2':
- resolution: {integrity: sha512-H6azIAM+OXD98yztIfs/KH5H4PU39t+SREhmM8LaNXyUrqj2mx+zVkr8MWYqjceSjDw9I1jawm1WdFqU806rMA==}
+ '@shikijs/langs@3.6.0':
+ resolution: {integrity: sha512-IdZkQJaLBu1LCYCwkr30hNuSDfllOT8RWYVZK1tD2J03DkiagYKRxj/pDSl8Didml3xxuyzUjgtioInwEQM/TA==}
- '@shikijs/themes@3.4.2':
- resolution: {integrity: sha512-qAEuAQh+brd8Jyej2UDDf+b4V2g1Rm8aBIdvt32XhDPrHvDkEnpb7Kzc9hSuHUxz0Iuflmq7elaDuQAP9bHIhg==}
+ '@shikijs/themes@3.6.0':
+ resolution: {integrity: sha512-Fq2j4nWr1DF4drvmhqKq8x5vVQ27VncF8XZMBuHuQMZvUSS3NBgpqfwz/FoGe36+W6PvniZ1yDlg2d4kmYDU6w==}
- '@shikijs/transformers@3.4.2':
- resolution: {integrity: sha512-I5baLVi/ynLEOZoWSAMlACHNnG+yw5HDmse0oe+GW6U1u+ULdEB3UHiVWaHoJSSONV7tlcVxuaMy74sREDkSvg==}
+ '@shikijs/transformers@3.6.0':
+ resolution: {integrity: sha512-PYkU54lYV0RCaUG8n2FNTF+YWiU3uPhcjLGq2x/C8lIrUX9GVnRb3bK+R5xtdFHbuctntATKm7ondp/H/dux9Q==}
- '@shikijs/types@3.4.2':
- resolution: {integrity: sha512-zHC1l7L+eQlDXLnxvM9R91Efh2V4+rN3oMVS2swCBssbj2U/FBwybD1eeLaq8yl/iwT+zih8iUbTBCgGZOYlVg==}
+ '@shikijs/types@3.6.0':
+ resolution: {integrity: sha512-cLWFiToxYu0aAzJqhXTQsFiJRTFDAGl93IrMSBNaGSzs7ixkLfdG6pH11HipuWFGW5vyx4X47W8HDQ7eSrmBUg==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -1083,15 +1083,24 @@ packages:
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
'@types/cross-spawn@6.0.6':
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
'@types/estree@1.0.7':
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
+
'@types/fs-extra@11.0.4':
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
@@ -1143,8 +1152,8 @@ packages:
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- '@types/node@22.15.29':
- resolution: {integrity: sha512-LNdjOkUDlU1RZb8e1kOIUpN1qQUlzGkEtbVNo53vbrwDg5om6oduhm4SiUaPW5ASTXhAiP0jInWG8Qx9fVlOeQ==}
+ '@types/node@24.0.1':
+ resolution: {integrity: sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1186,34 +1195,34 @@ packages:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitest/expect@3.1.4':
- resolution: {integrity: sha512-xkD/ljeliyaClDYqHPNCiJ0plY5YIcM0OlRiZizLhlPmpXWpxnGMyTZXOHFhFeG7w9P5PBeL4IdtJ/HeQwTbQA==}
+ '@vitest/expect@3.2.3':
+ resolution: {integrity: sha512-W2RH2TPWVHA1o7UmaFKISPvdicFJH+mjykctJFoAkUw+SPTJTGjUNdKscFBrqM7IPnCVu6zihtKYa7TkZS1dkQ==}
- '@vitest/mocker@3.1.4':
- resolution: {integrity: sha512-8IJ3CvwtSw/EFXqWFL8aCMu+YyYXG2WUSrQbViOZkWTKTVicVwZ/YiEZDSqD00kX+v/+W+OnxhNWoeVKorHygA==}
+ '@vitest/mocker@3.2.3':
+ resolution: {integrity: sha512-cP6fIun+Zx8he4rbWvi+Oya6goKQDZK+Yq4hhlggwQBbrlOQ4qtZ+G4nxB6ZnzI9lyIb+JnvyiJnPC2AGbKSPA==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.1.4':
- resolution: {integrity: sha512-cqv9H9GvAEoTaoq+cYqUTCGscUjKqlJZC7PRwY5FMySVj5J+xOm1KQcCiYHJOEzOKRUhLH4R2pTwvFlWCEScsg==}
+ '@vitest/pretty-format@3.2.3':
+ resolution: {integrity: sha512-yFglXGkr9hW/yEXngO+IKMhP0jxyFw2/qys/CK4fFUZnSltD+MU7dVYGrH8rvPcK/O6feXQA+EU33gjaBBbAng==}
- '@vitest/runner@3.1.4':
- resolution: {integrity: sha512-djTeF1/vt985I/wpKVFBMWUlk/I7mb5hmD5oP8K9ACRmVXgKTae3TUOtXAEBfslNKPzUQvnKhNd34nnRSYgLNQ==}
+ '@vitest/runner@3.2.3':
+ resolution: {integrity: sha512-83HWYisT3IpMaU9LN+VN+/nLHVBCSIUKJzGxC5RWUOsK1h3USg7ojL+UXQR3b4o4UBIWCYdD2fxuzM7PQQ1u8w==}
- '@vitest/snapshot@3.1.4':
- resolution: {integrity: sha512-JPHf68DvuO7vilmvwdPr9TS0SuuIzHvxeaCkxYcCD4jTk67XwL45ZhEHFKIuCm8CYstgI6LZ4XbwD6ANrwMpFg==}
+ '@vitest/snapshot@3.2.3':
+ resolution: {integrity: sha512-9gIVWx2+tysDqUmmM1L0hwadyumqssOL1r8KJipwLx5JVYyxvVRfxvMq7DaWbZZsCqZnu/dZedaZQh4iYTtneA==}
- '@vitest/spy@3.1.4':
- resolution: {integrity: sha512-Xg1bXhu+vtPXIodYN369M86K8shGLouNjoVI78g8iAq2rFoHFdajNvJJ5A/9bPMFcfQqdaCpOgWKEoMQg/s0Yg==}
+ '@vitest/spy@3.2.3':
+ resolution: {integrity: sha512-JHu9Wl+7bf6FEejTCREy+DmgWe+rQKbK+y32C/k5f4TBIAlijhJbRBIRIOCEpVevgRsCQR2iHRUH2/qKVM/plw==}
- '@vitest/utils@3.1.4':
- resolution: {integrity: sha512-yriMuO1cfFhmiGc8ataN51+9ooHRuURdfAZfwFd3usWynjzpLslZdYnRegTv32qdgtJTsj15FoeZe2g15fY1gg==}
+ '@vitest/utils@3.2.3':
+ resolution: {integrity: sha512-4zFBCU5Pf+4Z6v+rwnZ1HU1yzOKKvDkMXZrymE2PBlbjKJRlrOxbvpfPSvJTGRIwGoahaOGvp+kbCoxifhzJ1Q==}
'@volar/language-core@2.4.14':
resolution: {integrity: sha512-X6beusV0DvuVseaOEy7GoagS4rYHgDHnTrdOj5jeUb49fW5ceQyP9Ej5rBhqgz2wJggl+2fDbbojq1XKaxDi6w==}
@@ -1245,8 +1254,8 @@ packages:
'@vue/devtools-shared@7.7.6':
resolution: {integrity: sha512-yFEgJZ/WblEsojQQceuyK6FzpFDx4kqrz2ohInxNj5/DnhoX023upTv4OD6lNPLAA5LLkbwPVb10o/7b+Y4FVA==}
- '@vue/language-core@3.0.0-alpha.8':
- resolution: {integrity: sha512-QZkChTY/jT6w1EDLpgJjKPjWECIvvmm1Pbh9cOHHec7jvoezf+T4oLEwNElVyTRP3kUIMeOAutyZc/OuS+3azg==}
+ '@vue/language-core@3.0.0-alpha.10':
+ resolution: {integrity: sha512-yTFidT1rb8H/nVnwEmeRWRi2XZF0vIfUg8nsb7xIapg3fLr3gJsrCNwsQcdR7gGbXGGDXt65AEQ1F9VR8B3Row==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -1333,16 +1342,16 @@ packages:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
- acorn@8.14.1:
- resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
engines: {node: '>=0.4.0'}
hasBin: true
add-stream@1.0.0:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
- algoliasearch@5.25.0:
- resolution: {integrity: sha512-n73BVorL4HIwKlfJKb4SEzAYkR3Buwfwbh+MYxg2mloFph2fFGV58E90QTzdbfzWrLn4HE5Czx/WTjI8fcHaMg==}
+ algoliasearch@5.27.0:
+ resolution: {integrity: sha512-2PvAgvxxJzA3+dB+ERfS2JPdvUsxNf89Cc2GF5iCcFupTULOwmbfinvqrC4Qj9nHJJDNf494NqEN/1f9177ZTQ==}
engines: {node: '>= 14.0.0'}
alien-signals@2.0.5:
@@ -1401,8 +1410,9 @@ packages:
bail@2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
- balanced-match@1.0.2:
- resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@3.0.1:
+ resolution: {integrity: sha512-vjtV3hiLqYDNRoiAv0zC4QaGAMPomEoq83PRmYIofPswwZurCeWR5LByXm7SyoL0Zh5+2z0+HC7jG8gSZJUh0w==}
+ engines: {node: '>= 16'}
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -1413,8 +1423,9 @@ packages:
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- brace-expansion@2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@4.0.1:
+ resolution: {integrity: sha512-YClrbvTCXGe70pU2JiEiPLYXO9gQkyxYeKpJIQHVS/gOs6EWMQP2RYBwjFLNT322Ji8TOC3IMPfsYCedNpzKfA==}
+ engines: {node: '>= 18'}
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
@@ -1598,8 +1609,8 @@ packages:
resolution: {integrity: sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==}
engines: {node: '>=18'}
- conventional-commits-parser@6.1.0:
- resolution: {integrity: sha512-5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==}
+ conventional-commits-parser@6.2.0:
+ resolution: {integrity: sha512-uLnoLeIW4XaoFtH37qEcg/SXMJmKF4vi7V0H2rnPueg+VEtFGA/asSCNTcq4M/GQ6QmlzchAEtOoDTtKqWeHag==}
engines: {node: '>=18'}
hasBin: true
@@ -1810,8 +1821,8 @@ packages:
fault@2.0.1:
resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
- fdir@6.4.5:
- resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==}
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -1850,8 +1861,8 @@ packages:
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
- form-data@4.0.2:
- resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
+ form-data@4.0.3:
+ resolution: {integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -2086,6 +2097,9 @@ packages:
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
@@ -2402,8 +2416,8 @@ packages:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
- minimatch@10.0.1:
- resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
+ minimatch@10.0.2:
+ resolution: {integrity: sha512-+9TJCIYXgZ2Dm5LxVCFsa8jOm+evMwXHFI0JM1XROmkfkpz8/iLLDh+TwSmyIBrs6C6Xu9294/fq8cBA+P6AqA==}
engines: {node: 20 || >=22}
minimist@1.2.8:
@@ -2495,14 +2509,18 @@ packages:
resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
engines: {node: '>=18'}
- oxc-minify@0.72.2:
- resolution: {integrity: sha512-/11+bqJikeGS0KoZE4uPPntGiun+2am0x3uwY0tCu0rgpq7ka7gKWR5tj92Oxey5bb3LZlT39ORsF1/y8sQEdA==}
+ oxc-minify@0.72.3:
+ resolution: {integrity: sha512-0h1Qf5SJKSYGLbtZVsJpGOGf2If7xvCziZKJACtL8QIrBqU/LXjQ/Smd9lIL+OEVj1/kInyPbIi/TtU79P8n0Q==}
engines: {node: '>=14.0.0'}
p-map@7.0.3:
resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==}
engines: {node: '>=18'}
+ package-directory@8.1.0:
+ resolution: {integrity: sha512-qHKRW0pw3lYdZMQVkjDBqh8HlamH/LCww2PH7OWEp4Qrt3SFeYMNpnJrQzlSnGrDD5zGR51XqBh7FnNCdVNEHA==}
+ engines: {node: '>=18'}
+
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
@@ -2544,6 +2562,10 @@ packages:
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
+ path-to-regexp@8.2.0:
+ resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==}
+ engines: {node: '>=16'}
+
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
@@ -2574,23 +2596,19 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- pkg-dir@8.0.0:
- resolution: {integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ==}
- engines: {node: '>=18'}
-
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
pkg-types@2.1.0:
resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
- playwright-chromium@1.52.0:
- resolution: {integrity: sha512-ZTpzBzRFFRglyqRnAqdK5mFaw1P41qe8V2zSR+fA0eKPgGEEaH7r91ejXKijs3WhReatRcatHQe3ndMBMN1PLA==}
+ playwright-chromium@1.53.0:
+ resolution: {integrity: sha512-wFIOWSc3037Ql9swJrfCQL/SfcVXbl8X944CzzQmkvh4KqCNp1QMBOGPfltu/+URTfCa5I9qc6HW1YEgY1jeNA==}
engines: {node: '>=18'}
hasBin: true
- playwright-core@1.52.0:
- resolution: {integrity: sha512-l2osTgLXSMeuLZOML9qYODUQoPPnUsKsb5/P6LJ2e6uPKXUdPK5WYhN4z03G+YNbWmGDY4YENauNu4ZKczreHg==}
+ playwright-core@1.53.0:
+ resolution: {integrity: sha512-mGLg8m0pm4+mmtB7M89Xw/GSqoNC+twivl8ITteqvAndachozYe2ZA7srU6uleV1vEdAHYqjq+SV8SNxRRFYBw==}
engines: {node: '>=18'}
hasBin: true
@@ -2609,12 +2627,12 @@ packages:
peerDependencies:
postcss: ^8.4.21
- postcss@8.5.4:
- resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==}
+ postcss@8.5.5:
+ resolution: {integrity: sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.26.8:
- resolution: {integrity: sha512-1nMfdFjucm5hKvq0IClqZwK4FJkGXhRrQstOQ3P4vp8HxKrJEMFcY6RdBRVTdfQS/UlnX6gfbPuTvaqx/bDoeQ==}
+ preact@10.26.9:
+ resolution: {integrity: sha512-SSjF9vcnF27mJK1XyFMNJzFd5u3pQiATFqoaDy03XuN00u4ziveVVEGt5RKJrDR8MHE/wJo9Nnad56RLzS2RMA==}
prettier@3.5.3:
resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
@@ -2784,8 +2802,8 @@ packages:
esbuild: '>=0.18.0'
rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
- rollup@4.41.1:
- resolution: {integrity: sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==}
+ rollup@4.43.0:
+ resolution: {integrity: sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -2827,8 +2845,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@3.4.2:
- resolution: {integrity: sha512-wuxzZzQG8kvZndD7nustrNFIKYJ1jJoWIPaBpVe2+KHSvtzMi4SBjOxrigs8qeqce/l3U0cwiC+VAkLKSunHQQ==}
+ shiki@3.6.0:
+ resolution: {integrity: sha512-tKn/Y0MGBTffQoklaATXmTqDU02zx8NYBGQ+F6gy87/YjKbizcLd+Cybh/0ZtOBX9r1NEnAy/GTRDKtOsc1L9w==}
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -2841,8 +2859,8 @@ packages:
resolution: {integrity: sha512-N+goiLxlkHJlyaYEglFypzVNMaNplPAk5syu0+OPp/Bk6dwVoXF6FfOw2vO0Dp+JHsBaI+w6cm8TnFl2Hw6tDA==}
hasBin: true
- simple-git@3.27.0:
- resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
+ simple-git@3.28.0:
+ resolution: {integrity: sha512-Rs/vQRwsn1ILH1oBUy8NucJlXmnnLeLCfcvbSehkPzbv3wwoFWIdtfd6Ndo6ZPhlPsCZ60CPI4rxurnwAa+a2w==}
sirv@3.0.1:
resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
@@ -2953,6 +2971,9 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ strip-literal@3.0.0:
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+
strtok3@7.1.1:
resolution: {integrity: sha512-mKX8HA/cdBqMKUr0MMZAFssCkIGoZeSCMXgnt79yKxNFguMLVFgRe6wB+fsL0NmoHDbeyZXczy7vEPSoo3rkzg==}
engines: {node: '>=16'}
@@ -3001,8 +3022,8 @@ packages:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
to-regex-range@5.0.1:
@@ -3013,8 +3034,8 @@ packages:
resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==}
engines: {node: '>=14.16'}
- tokenx@0.4.1:
- resolution: {integrity: sha512-LCMniis0WsHel07xh3K9OIt5c9Xla1awtOoWBmUHZBQR7pvTvgGFuYpLiCZWohXPC1YuZORnN0+fCVYI/ie8Jg==}
+ tokenx@1.0.1:
+ resolution: {integrity: sha512-MhOngUHRuVE0CHP4cNEZ/XpdXETFL65nJpEvoTW+VYPuXsT/MTeNj+UNnekNsnxecmj2DEvUYPebqz+CsPTUSg==}
totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
@@ -3067,8 +3088,8 @@ packages:
ultramatter@0.0.4:
resolution: {integrity: sha512-1f/hO3mR+/Hgue4eInOF/Qm/wzDqwhYha4DxM0hre9YIUyso3fE2XtrAU6B4njLqTC8CM49EZaYgsVSa+dXHGw==}
- undici-types@6.21.0:
- resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
+ undici-types@7.8.0:
+ resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==}
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
@@ -3124,29 +3145,29 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-node@3.1.4:
- resolution: {integrity: sha512-6enNwYnpyDo4hEgytbmc6mYWHXDHYEn0D1/rw4Q+tnHUGtKTJsn8T1YkX6Q18wI5LCrS8CTYlBaiCqxOy2kvUA==}
+ vite-node@3.2.3:
+ resolution: {integrity: sha512-gc8aAifGuDIpZHrPjuHyP4dpQmYXqWw7D1GmDnWeNWP654UEXzVfQ5IHPSK5HaHkwB/+p1atpYpSdw/2kOv8iQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vitepress-plugin-group-icons@1.5.5:
- resolution: {integrity: sha512-eVnBL3lVOYxByQg5xo44QZtGPv41JyxWI7YxuwrGcNUU+W8MMIjb9XlivBXb3W8CosFllJlLGiqNCBTnFZHFTA==}
+ vitepress-plugin-group-icons@1.6.0:
+ resolution: {integrity: sha512-+nxuVETpFkOYR5qHdvj3M5otWusJyS3ozEvVf1aQaE5Oz5e6NR0naYKTtH0Zf3Qss4vnhqaYt2Lq4jUTn9JVuA==}
peerDependencies:
markdown-it: '>=14'
- vitepress-plugin-llms@1.3.4:
- resolution: {integrity: sha512-owEPumKy5syjRRG0OSA2635NoeR/U+eiLIjurLTUMXxdmtJ0h6OrTLqvIFPYTV0gSQfaWY/owKdTxjZxv2n2bQ==}
+ vitepress-plugin-llms@1.5.0:
+ resolution: {integrity: sha512-+7WPf7LRPcaWHyF1OcCusgfa6YI2D3WFQ/M+UzDTmxcmN7xyFwx9MDSw4gPtsicLpAGfbOL2MwpUHJ4bjEpGrw==}
- vitest@3.1.4:
- resolution: {integrity: sha512-Ta56rT7uWxCSJXlBtKgIlApJnT6e6IGmTYxYcmxjJ4ujuZDI59GUQgVDObXXJujOmPDBYXHK1qmaGtneu6TNIQ==}
+ vitest@3.2.3:
+ resolution: {integrity: sha512-E6U2ZFXe3N/t4f5BwUaVCKRLHqUpk1CBWeMh78UT4VaTPH/2dyvH6ALl29JTovEPu9dVKr/K/J4PkXgrMbw4Ww==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/debug': ^4.1.12
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.1.4
- '@vitest/ui': 3.1.4
+ '@vitest/browser': 3.2.3
+ '@vitest/ui': 3.2.3
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -3168,8 +3189,8 @@ packages:
vscode-uri@3.1.0:
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
- vue-tsc@3.0.0-alpha.8:
- resolution: {integrity: sha512-Gpcvq8PzPDYqU+cYPbO1qkpQhdSzthPEf50z3zTCm3dDfqNcTWqysZNVSDEj6SzpS/4DGXCkSIECic/W6UKyWA==}
+ vue-tsc@3.0.0-alpha.10:
+ resolution: {integrity: sha512-V8xyil0GhSb3kr08kcyDt8N0YFF0obHjINxN4ZyyYYoUitiIHJ1uhPofnKVk5SEqXyQ5GBVMQhY/aCA1Uptd3g==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
@@ -3246,117 +3267,117 @@ packages:
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
- zod@3.25.46:
- resolution: {integrity: sha512-IqRxcHEIjqLd4LNS/zKffB3Jzg3NwqJxQQ0Ns7pdrvgGkwQsEBdEQcOHaBVqvvZArShRzI39+aMST3FBGmTrLQ==}
+ zod@3.25.62:
+ resolution: {integrity: sha512-YCxsr4DmhPcrKPC9R1oBHQNlQzlJEyPAId//qTau/vBee9uO8K6prmRq4eMkOyxvBfH4wDPIPdLx9HVMWIY3xA==}
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)':
+ '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)
- '@algolia/client-search': 5.25.0
- algoliasearch: 5.25.0
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)
+ '@algolia/client-search': 5.27.0
+ algoliasearch: 5.27.0
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)':
+ '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)':
dependencies:
- '@algolia/client-search': 5.25.0
- algoliasearch: 5.25.0
+ '@algolia/client-search': 5.27.0
+ algoliasearch: 5.27.0
- '@algolia/client-abtesting@5.25.0':
+ '@algolia/client-abtesting@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/client-analytics@5.25.0':
+ '@algolia/client-analytics@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/client-common@5.25.0': {}
+ '@algolia/client-common@5.27.0': {}
- '@algolia/client-insights@5.25.0':
+ '@algolia/client-insights@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/client-personalization@5.25.0':
+ '@algolia/client-personalization@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/client-query-suggestions@5.25.0':
+ '@algolia/client-query-suggestions@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/client-search@5.25.0':
+ '@algolia/client-search@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/ingestion@1.25.0':
+ '@algolia/ingestion@1.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/monitoring@1.25.0':
+ '@algolia/monitoring@1.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/recommend@5.25.0':
+ '@algolia/recommend@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
- '@algolia/requester-browser-xhr@5.25.0':
+ '@algolia/requester-browser-xhr@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
+ '@algolia/client-common': 5.27.0
- '@algolia/requester-fetch@5.25.0':
+ '@algolia/requester-fetch@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
+ '@algolia/client-common': 5.27.0
- '@algolia/requester-node-http@5.25.0':
+ '@algolia/requester-node-http@5.27.0':
dependencies:
- '@algolia/client-common': 5.25.0
+ '@algolia/client-common': 5.27.0
'@antfu/install-pkg@1.1.0':
dependencies:
@@ -3375,11 +3396,11 @@ snapshots:
'@babel/helper-validator-identifier@7.27.1': {}
- '@babel/parser@7.27.4':
+ '@babel/parser@7.27.5':
dependencies:
- '@babel/types': 7.27.3
+ '@babel/types': 7.27.6
- '@babel/types@7.27.3':
+ '@babel/types@7.27.6':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
@@ -3389,31 +3410,31 @@ snapshots:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/core@1.0.0-alpha.0':
+ '@clack/core@1.0.0-alpha.1':
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@1.0.0-alpha.0':
+ '@clack/prompts@1.0.0-alpha.1':
dependencies:
- '@clack/core': 1.0.0-alpha.0
+ '@clack/core': 1.0.0-alpha.1
picocolors: 1.1.1
sisteransi: 1.0.5
- '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0)':
+ '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)':
dependencies:
'@types/semver': 7.7.0
semver: 7.7.2
optionalDependencies:
conventional-commits-filter: 5.0.0
- conventional-commits-parser: 6.1.0
+ conventional-commits-parser: 6.2.0
'@docsearch/css@3.9.0': {}
- '@docsearch/js@3.9.0(@algolia/client-search@5.25.0)':
+ '@docsearch/js@3.9.0(@algolia/client-search@5.27.0)':
dependencies:
- '@docsearch/react': 3.9.0(@algolia/client-search@5.25.0)
- preact: 10.26.8
+ '@docsearch/react': 3.9.0(@algolia/client-search@5.27.0)
+ preact: 10.26.9
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -3421,12 +3442,12 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.9.0(@algolia/client-search@5.25.0)':
+ '@docsearch/react@3.9.0(@algolia/client-search@5.27.0)':
dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)
+ '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)
+ '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.27.0)(algoliasearch@5.27.0)
'@docsearch/css': 3.9.0
- algoliasearch: 5.25.0
+ algoliasearch: 5.27.0
transitivePeerDependencies:
- '@algolia/client-search'
@@ -3533,7 +3554,7 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.36':
+ '@iconify-json/simple-icons@1.2.38':
dependencies:
'@iconify/types': 2.0.0
@@ -3584,9 +3605,9 @@ snapshots:
micromatch: 4.0.8
path-to-regexp: 6.3.0
picocolors: 1.1.1
- simple-git: 3.27.0
+ simple-git: 3.28.0
ultramatter: 0.0.4
- zod: 3.25.46
+ zod: 3.25.62
transitivePeerDependencies:
- supports-color
@@ -3637,7 +3658,7 @@ snapshots:
'@mdit-vue/types@2.1.4': {}
- '@napi-rs/wasm-runtime@0.2.10':
+ '@napi-rs/wasm-runtime@0.2.11':
dependencies:
'@emnapi/core': 1.4.3
'@emnapi/runtime': 1.4.3
@@ -3656,48 +3677,48 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- '@oxc-minify/binding-darwin-arm64@0.72.2':
+ '@oxc-minify/binding-darwin-arm64@0.72.3':
optional: true
- '@oxc-minify/binding-darwin-x64@0.72.2':
+ '@oxc-minify/binding-darwin-x64@0.72.3':
optional: true
- '@oxc-minify/binding-freebsd-x64@0.72.2':
+ '@oxc-minify/binding-freebsd-x64@0.72.3':
optional: true
- '@oxc-minify/binding-linux-arm-gnueabihf@0.72.2':
+ '@oxc-minify/binding-linux-arm-gnueabihf@0.72.3':
optional: true
- '@oxc-minify/binding-linux-arm-musleabihf@0.72.2':
+ '@oxc-minify/binding-linux-arm-musleabihf@0.72.3':
optional: true
- '@oxc-minify/binding-linux-arm64-gnu@0.72.2':
+ '@oxc-minify/binding-linux-arm64-gnu@0.72.3':
optional: true
- '@oxc-minify/binding-linux-arm64-musl@0.72.2':
+ '@oxc-minify/binding-linux-arm64-musl@0.72.3':
optional: true
- '@oxc-minify/binding-linux-riscv64-gnu@0.72.2':
+ '@oxc-minify/binding-linux-riscv64-gnu@0.72.3':
optional: true
- '@oxc-minify/binding-linux-s390x-gnu@0.72.2':
+ '@oxc-minify/binding-linux-s390x-gnu@0.72.3':
optional: true
- '@oxc-minify/binding-linux-x64-gnu@0.72.2':
+ '@oxc-minify/binding-linux-x64-gnu@0.72.3':
optional: true
- '@oxc-minify/binding-linux-x64-musl@0.72.2':
+ '@oxc-minify/binding-linux-x64-musl@0.72.3':
optional: true
- '@oxc-minify/binding-wasm32-wasi@0.72.2':
+ '@oxc-minify/binding-wasm32-wasi@0.72.3':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.10
+ '@napi-rs/wasm-runtime': 0.2.11
optional: true
- '@oxc-minify/binding-win32-arm64-msvc@0.72.2':
+ '@oxc-minify/binding-win32-arm64-msvc@0.72.3':
optional: true
- '@oxc-minify/binding-win32-x64-msvc@0.72.2':
+ '@oxc-minify/binding-win32-x64-msvc@0.72.3':
optional: true
'@oxc-project/runtime@0.72.3': {}
@@ -3734,7 +3755,7 @@ snapshots:
'@rolldown/binding-wasm32-wasi@1.0.0-beta.15':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.10
+ '@napi-rs/wasm-runtime': 0.2.11
optional: true
'@rolldown/binding-win32-arm64-msvc@1.0.0-beta.15':
@@ -3748,147 +3769,147 @@ snapshots:
'@rolldown/pluginutils@1.0.0-beta.15': {}
- '@rollup/plugin-alias@5.1.1(rollup@4.41.1)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.43.0)':
optionalDependencies:
- rollup: 4.41.1
+ rollup: 4.43.0
- '@rollup/plugin-commonjs@28.0.3(rollup@4.41.1)':
+ '@rollup/plugin-commonjs@28.0.3(rollup@4.43.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.43.0)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.4.5(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.2)
is-reference: 1.2.1
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.41.1
+ rollup: 4.43.0
- '@rollup/plugin-json@6.1.0(rollup@4.41.1)':
+ '@rollup/plugin-json@6.1.0(rollup@4.43.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.43.0)
optionalDependencies:
- rollup: 4.41.1
+ rollup: 4.43.0
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.41.1)':
+ '@rollup/plugin-node-resolve@16.0.1(rollup@4.43.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.43.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.41.1
+ rollup: 4.43.0
- '@rollup/plugin-replace@6.0.2(rollup@4.41.1)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.43.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.41.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.43.0)
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.41.1
+ rollup: 4.43.0
- '@rollup/pluginutils@5.1.4(rollup@4.41.1)':
+ '@rollup/pluginutils@5.1.4(rollup@4.43.0)':
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.41.1
+ rollup: 4.43.0
- '@rollup/rollup-android-arm-eabi@4.41.1':
+ '@rollup/rollup-android-arm-eabi@4.43.0':
optional: true
- '@rollup/rollup-android-arm64@4.41.1':
+ '@rollup/rollup-android-arm64@4.43.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.41.1':
+ '@rollup/rollup-darwin-arm64@4.43.0':
optional: true
- '@rollup/rollup-darwin-x64@4.41.1':
+ '@rollup/rollup-darwin-x64@4.43.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.41.1':
+ '@rollup/rollup-freebsd-arm64@4.43.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.41.1':
+ '@rollup/rollup-freebsd-x64@4.43.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.41.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.43.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.41.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.43.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.41.1':
+ '@rollup/rollup-linux-arm64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.41.1':
+ '@rollup/rollup-linux-arm64-musl@4.43.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.41.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.41.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.41.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.41.1':
+ '@rollup/rollup-linux-riscv64-musl@4.43.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.41.1':
+ '@rollup/rollup-linux-s390x-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.41.1':
+ '@rollup/rollup-linux-x64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.41.1':
+ '@rollup/rollup-linux-x64-musl@4.43.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.41.1':
+ '@rollup/rollup-win32-arm64-msvc@4.43.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.41.1':
+ '@rollup/rollup-win32-ia32-msvc@4.43.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.41.1':
+ '@rollup/rollup-win32-x64-msvc@4.43.0':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
- '@shikijs/core@3.4.2':
+ '@shikijs/core@3.6.0':
dependencies:
- '@shikijs/types': 3.4.2
+ '@shikijs/types': 3.6.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
- '@shikijs/engine-javascript@3.4.2':
+ '@shikijs/engine-javascript@3.6.0':
dependencies:
- '@shikijs/types': 3.4.2
+ '@shikijs/types': 3.6.0
'@shikijs/vscode-textmate': 10.0.2
oniguruma-to-es: 4.3.3
- '@shikijs/engine-oniguruma@3.4.2':
+ '@shikijs/engine-oniguruma@3.6.0':
dependencies:
- '@shikijs/types': 3.4.2
+ '@shikijs/types': 3.6.0
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/langs@3.4.2':
+ '@shikijs/langs@3.6.0':
dependencies:
- '@shikijs/types': 3.4.2
+ '@shikijs/types': 3.6.0
- '@shikijs/themes@3.4.2':
+ '@shikijs/themes@3.6.0':
dependencies:
- '@shikijs/types': 3.4.2
+ '@shikijs/types': 3.6.0
- '@shikijs/transformers@3.4.2':
+ '@shikijs/transformers@3.6.0':
dependencies:
- '@shikijs/core': 3.4.2
- '@shikijs/types': 3.4.2
+ '@shikijs/core': 3.6.0
+ '@shikijs/types': 3.6.0
- '@shikijs/types@3.4.2':
+ '@shikijs/types@3.6.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -3912,20 +3933,28 @@ snapshots:
tslib: 2.8.1
optional: true
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+
'@types/cross-spawn@6.0.6':
dependencies:
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
'@types/debug@4.1.12':
dependencies:
'@types/ms': 2.1.0
+ '@types/deep-eql@4.0.2': {}
+
'@types/estree@1.0.7': {}
+ '@types/estree@1.0.8': {}
+
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
'@types/hast@3.0.4':
dependencies:
@@ -3937,7 +3966,7 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
'@types/linkify-it@5.0.0': {}
@@ -3980,9 +4009,9 @@ snapshots:
'@types/node@17.0.45': {}
- '@types/node@22.15.29':
+ '@types/node@24.0.1':
dependencies:
- undici-types: 6.21.0
+ undici-types: 7.8.0
'@types/normalize-package-data@2.4.4': {}
@@ -3990,18 +4019,18 @@ snapshots:
'@types/postcss-prefix-selector@1.16.3':
dependencies:
- postcss: 8.5.4
+ postcss: 8.5.5
'@types/prompts@2.4.9':
dependencies:
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
kleur: 3.0.3
'@types/resolve@1.20.2': {}
'@types/sax@1.2.7':
dependencies:
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
'@types/semver@7.7.0': {}
@@ -4013,48 +4042,50 @@ snapshots:
'@ungap/structured-clone@1.3.0': {}
- '@vitejs/plugin-vue@5.2.4(rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))(vue@3.5.16(typescript@5.8.3))':
+ '@vitejs/plugin-vue@5.2.4(rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))(vue@3.5.16(typescript@5.8.3))':
dependencies:
- vite: rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ vite: rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
vue: 3.5.16(typescript@5.8.3)
- '@vitest/expect@3.1.4':
+ '@vitest/expect@3.2.3':
dependencies:
- '@vitest/spy': 3.1.4
- '@vitest/utils': 3.1.4
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.3
+ '@vitest/utils': 3.2.3
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.1.4(rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))':
+ '@vitest/mocker@3.2.3(rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))':
dependencies:
- '@vitest/spy': 3.1.4
+ '@vitest/spy': 3.2.3
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ vite: rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
- '@vitest/pretty-format@3.1.4':
+ '@vitest/pretty-format@3.2.3':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.1.4':
+ '@vitest/runner@3.2.3':
dependencies:
- '@vitest/utils': 3.1.4
+ '@vitest/utils': 3.2.3
pathe: 2.0.3
+ strip-literal: 3.0.0
- '@vitest/snapshot@3.1.4':
+ '@vitest/snapshot@3.2.3':
dependencies:
- '@vitest/pretty-format': 3.1.4
+ '@vitest/pretty-format': 3.2.3
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.1.4':
+ '@vitest/spy@3.2.3':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.3
- '@vitest/utils@3.1.4':
+ '@vitest/utils@3.2.3':
dependencies:
- '@vitest/pretty-format': 3.1.4
+ '@vitest/pretty-format': 3.2.3
loupe: 3.1.3
tinyrainbow: 2.0.0
@@ -4072,7 +4103,7 @@ snapshots:
'@vue/compiler-core@3.5.16':
dependencies:
- '@babel/parser': 7.27.4
+ '@babel/parser': 7.27.5
'@vue/shared': 3.5.16
entities: 4.5.0
estree-walker: 2.0.2
@@ -4085,14 +4116,14 @@ snapshots:
'@vue/compiler-sfc@3.5.16':
dependencies:
- '@babel/parser': 7.27.4
+ '@babel/parser': 7.27.5
'@vue/compiler-core': 3.5.16
'@vue/compiler-dom': 3.5.16
'@vue/compiler-ssr': 3.5.16
'@vue/shared': 3.5.16
estree-walker: 2.0.2
magic-string: 0.30.17
- postcss: 8.5.4
+ postcss: 8.5.5
source-map-js: 1.2.1
'@vue/compiler-ssr@3.5.16':
@@ -4118,13 +4149,13 @@ snapshots:
dependencies:
rfdc: 1.4.1
- '@vue/language-core@3.0.0-alpha.8(typescript@5.8.3)':
+ '@vue/language-core@3.0.0-alpha.10(typescript@5.8.3)':
dependencies:
'@volar/language-core': 2.4.14
'@vue/compiler-dom': 3.5.16
'@vue/shared': 3.5.16
alien-signals: 2.0.5
- minimatch: 10.0.1
+ minimatch: 10.0.2
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
@@ -4182,25 +4213,25 @@ snapshots:
dependencies:
event-target-shim: 5.0.1
- acorn@8.14.1: {}
+ acorn@8.15.0: {}
add-stream@1.0.0: {}
- algoliasearch@5.25.0:
- dependencies:
- '@algolia/client-abtesting': 5.25.0
- '@algolia/client-analytics': 5.25.0
- '@algolia/client-common': 5.25.0
- '@algolia/client-insights': 5.25.0
- '@algolia/client-personalization': 5.25.0
- '@algolia/client-query-suggestions': 5.25.0
- '@algolia/client-search': 5.25.0
- '@algolia/ingestion': 1.25.0
- '@algolia/monitoring': 1.25.0
- '@algolia/recommend': 5.25.0
- '@algolia/requester-browser-xhr': 5.25.0
- '@algolia/requester-fetch': 5.25.0
- '@algolia/requester-node-http': 5.25.0
+ algoliasearch@5.27.0:
+ dependencies:
+ '@algolia/client-abtesting': 5.27.0
+ '@algolia/client-analytics': 5.27.0
+ '@algolia/client-common': 5.27.0
+ '@algolia/client-insights': 5.27.0
+ '@algolia/client-personalization': 5.27.0
+ '@algolia/client-query-suggestions': 5.27.0
+ '@algolia/client-search': 5.27.0
+ '@algolia/ingestion': 1.27.0
+ '@algolia/monitoring': 1.27.0
+ '@algolia/recommend': 5.27.0
+ '@algolia/requester-browser-xhr': 5.27.0
+ '@algolia/requester-fetch': 5.27.0
+ '@algolia/requester-node-http': 5.27.0
alien-signals@2.0.5: {}
@@ -4239,14 +4270,14 @@ snapshots:
axios@1.9.0(debug@4.4.1):
dependencies:
follow-redirects: 1.15.9(debug@4.4.1)
- form-data: 4.0.2
+ form-data: 4.0.3
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
bail@2.0.2: {}
- balanced-match@1.0.2: {}
+ balanced-match@3.0.1: {}
base64-js@1.5.1: {}
@@ -4254,9 +4285,9 @@ snapshots:
boolbase@1.0.0: {}
- brace-expansion@2.0.1:
+ brace-expansion@4.0.1:
dependencies:
- balanced-match: 1.0.2
+ balanced-match: 3.0.1
braces@3.0.3:
dependencies:
@@ -4396,9 +4427,9 @@ snapshots:
'@hutson/parse-repository-url': 5.0.0
add-stream: 1.0.0
conventional-changelog-writer: 8.1.0
- conventional-commits-parser: 6.1.0
- git-raw-commits: 5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0)
- git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0)
+ conventional-commits-parser: 6.2.0
+ git-raw-commits: 5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)
+ git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)
hosted-git-info: 7.0.2
normalize-package-data: 6.0.2
read-package-up: 11.0.0
@@ -4445,7 +4476,7 @@ snapshots:
conventional-commits-filter@5.0.0: {}
- conventional-commits-parser@6.1.0:
+ conventional-commits-parser@6.2.0:
dependencies:
meow: 13.2.0
@@ -4611,7 +4642,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
event-target-shim@5.0.1: {}
@@ -4660,7 +4691,7 @@ snapshots:
dependencies:
format: 0.2.2
- fdir@6.4.5(picomatch@4.0.2):
+ fdir@6.4.6(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -4693,11 +4724,12 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- form-data@4.0.2:
+ form-data@4.0.3:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
format@0.2.2: {}
@@ -4748,17 +4780,17 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
- git-raw-commits@5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0):
+ git-raw-commits@5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0):
dependencies:
- '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0)
+ '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)
meow: 13.2.0
transitivePeerDependencies:
- conventional-commits-filter
- conventional-commits-parser
- git-semver-tags@8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0):
+ git-semver-tags@8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0):
dependencies:
- '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0)
+ '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)
meow: 13.2.0
transitivePeerDependencies:
- conventional-commits-filter
@@ -4772,7 +4804,7 @@ snapshots:
dependencies:
foreground-child: 3.3.1
jackspeak: 4.1.1
- minimatch: 10.0.1
+ minimatch: 10.0.2
minipass: 7.1.2
package-json-from-dist: 1.0.1
path-scurry: 2.0.0
@@ -4893,7 +4925,7 @@ snapshots:
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
is-stream@3.0.0: {}
@@ -4927,6 +4959,8 @@ snapshots:
js-tokens@4.0.0: {}
+ js-tokens@9.0.1: {}
+
js-yaml@3.14.1:
dependencies:
argparse: 1.0.10
@@ -5352,9 +5386,9 @@ snapshots:
mimic-function@5.0.1: {}
- minimatch@10.0.1:
+ minimatch@10.0.2:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 4.0.1
minimist@1.2.8: {}
@@ -5368,7 +5402,7 @@ snapshots:
mlly@1.7.4:
dependencies:
- acorn: 8.14.1
+ acorn: 8.15.0
pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.6.1
@@ -5445,25 +5479,29 @@ snapshots:
string-width: 5.1.2
strip-ansi: 7.1.0
- oxc-minify@0.72.2:
+ oxc-minify@0.72.3:
optionalDependencies:
- '@oxc-minify/binding-darwin-arm64': 0.72.2
- '@oxc-minify/binding-darwin-x64': 0.72.2
- '@oxc-minify/binding-freebsd-x64': 0.72.2
- '@oxc-minify/binding-linux-arm-gnueabihf': 0.72.2
- '@oxc-minify/binding-linux-arm-musleabihf': 0.72.2
- '@oxc-minify/binding-linux-arm64-gnu': 0.72.2
- '@oxc-minify/binding-linux-arm64-musl': 0.72.2
- '@oxc-minify/binding-linux-riscv64-gnu': 0.72.2
- '@oxc-minify/binding-linux-s390x-gnu': 0.72.2
- '@oxc-minify/binding-linux-x64-gnu': 0.72.2
- '@oxc-minify/binding-linux-x64-musl': 0.72.2
- '@oxc-minify/binding-wasm32-wasi': 0.72.2
- '@oxc-minify/binding-win32-arm64-msvc': 0.72.2
- '@oxc-minify/binding-win32-x64-msvc': 0.72.2
+ '@oxc-minify/binding-darwin-arm64': 0.72.3
+ '@oxc-minify/binding-darwin-x64': 0.72.3
+ '@oxc-minify/binding-freebsd-x64': 0.72.3
+ '@oxc-minify/binding-linux-arm-gnueabihf': 0.72.3
+ '@oxc-minify/binding-linux-arm-musleabihf': 0.72.3
+ '@oxc-minify/binding-linux-arm64-gnu': 0.72.3
+ '@oxc-minify/binding-linux-arm64-musl': 0.72.3
+ '@oxc-minify/binding-linux-riscv64-gnu': 0.72.3
+ '@oxc-minify/binding-linux-s390x-gnu': 0.72.3
+ '@oxc-minify/binding-linux-x64-gnu': 0.72.3
+ '@oxc-minify/binding-linux-x64-musl': 0.72.3
+ '@oxc-minify/binding-wasm32-wasi': 0.72.3
+ '@oxc-minify/binding-win32-arm64-msvc': 0.72.3
+ '@oxc-minify/binding-win32-x64-msvc': 0.72.3
p-map@7.0.3: {}
+ package-directory@8.1.0:
+ dependencies:
+ find-up-simple: 1.0.1
+
package-json-from-dist@1.0.1: {}
package-manager-detector@1.3.0: {}
@@ -5497,6 +5535,8 @@ snapshots:
path-to-regexp@6.3.0: {}
+ path-to-regexp@8.2.0: {}
+
pathe@2.0.3: {}
pathval@2.0.0: {}
@@ -5513,10 +5553,6 @@ snapshots:
pidtree@0.6.0: {}
- pkg-dir@8.0.0:
- dependencies:
- find-up-simple: 1.0.1
-
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
@@ -5529,33 +5565,33 @@ snapshots:
exsolve: 1.0.5
pathe: 2.0.3
- playwright-chromium@1.52.0:
+ playwright-chromium@1.53.0:
dependencies:
- playwright-core: 1.52.0
+ playwright-core: 1.53.0
- playwright-core@1.52.0: {}
+ playwright-core@1.53.0: {}
polka@1.0.0-next.28:
dependencies:
'@polka/url': 1.0.0-next.29
trouter: 4.0.0
- postcss-prefix-selector@2.1.1(postcss@8.5.4):
+ postcss-prefix-selector@2.1.1(postcss@8.5.5):
dependencies:
- postcss: 8.5.4
+ postcss: 8.5.5
- postcss-rtlcss@5.7.1(postcss@8.5.4):
+ postcss-rtlcss@5.7.1(postcss@8.5.5):
dependencies:
- postcss: 8.5.4
+ postcss: 8.5.5
rtlcss: 4.3.0
- postcss@8.5.4:
+ postcss@8.5.5:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.26.8: {}
+ preact@10.26.9: {}
prettier@3.5.3: {}
@@ -5679,17 +5715,17 @@ snapshots:
glob: 11.0.2
package-json-from-dist: 1.0.1
- rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0):
+ rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0):
dependencies:
'@oxc-project/runtime': 0.72.3
- fdir: 6.4.5(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.2)
lightningcss: 1.30.1
picomatch: 4.0.2
- postcss: 8.5.4
+ postcss: 8.5.5
rolldown: 1.0.0-beta.15
tinyglobby: 0.2.14
optionalDependencies:
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
esbuild: 0.25.5
fsevents: 2.3.3
jiti: 1.21.7
@@ -5715,56 +5751,56 @@ snapshots:
'@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.15
'@rolldown/binding-win32-x64-msvc': 1.0.0-beta.15
- rollup-plugin-dts@6.1.1(rollup@4.41.1)(typescript@5.8.3):
+ rollup-plugin-dts@6.1.1(rollup@4.43.0)(typescript@5.8.3):
dependencies:
magic-string: 0.30.17
- rollup: 4.41.1
+ rollup: 4.43.0
typescript: 5.8.3
optionalDependencies:
'@babel/code-frame': 7.27.1
- rollup-plugin-esbuild@6.2.1(esbuild@0.25.5)(rollup@4.41.1):
+ rollup-plugin-esbuild@6.2.1(esbuild@0.25.5)(rollup@4.43.0):
dependencies:
debug: 4.4.1
es-module-lexer: 1.7.0
esbuild: 0.25.5
get-tsconfig: 4.10.1
- rollup: 4.41.1
+ rollup: 4.43.0
unplugin-utils: 0.2.4
transitivePeerDependencies:
- supports-color
- rollup@4.41.1:
+ rollup@4.43.0:
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.41.1
- '@rollup/rollup-android-arm64': 4.41.1
- '@rollup/rollup-darwin-arm64': 4.41.1
- '@rollup/rollup-darwin-x64': 4.41.1
- '@rollup/rollup-freebsd-arm64': 4.41.1
- '@rollup/rollup-freebsd-x64': 4.41.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.41.1
- '@rollup/rollup-linux-arm-musleabihf': 4.41.1
- '@rollup/rollup-linux-arm64-gnu': 4.41.1
- '@rollup/rollup-linux-arm64-musl': 4.41.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.41.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.41.1
- '@rollup/rollup-linux-riscv64-gnu': 4.41.1
- '@rollup/rollup-linux-riscv64-musl': 4.41.1
- '@rollup/rollup-linux-s390x-gnu': 4.41.1
- '@rollup/rollup-linux-x64-gnu': 4.41.1
- '@rollup/rollup-linux-x64-musl': 4.41.1
- '@rollup/rollup-win32-arm64-msvc': 4.41.1
- '@rollup/rollup-win32-ia32-msvc': 4.41.1
- '@rollup/rollup-win32-x64-msvc': 4.41.1
+ '@rollup/rollup-android-arm-eabi': 4.43.0
+ '@rollup/rollup-android-arm64': 4.43.0
+ '@rollup/rollup-darwin-arm64': 4.43.0
+ '@rollup/rollup-darwin-x64': 4.43.0
+ '@rollup/rollup-freebsd-arm64': 4.43.0
+ '@rollup/rollup-freebsd-x64': 4.43.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.43.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.43.0
+ '@rollup/rollup-linux-arm64-gnu': 4.43.0
+ '@rollup/rollup-linux-arm64-musl': 4.43.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.43.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.43.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.43.0
+ '@rollup/rollup-linux-riscv64-musl': 4.43.0
+ '@rollup/rollup-linux-s390x-gnu': 4.43.0
+ '@rollup/rollup-linux-x64-gnu': 4.43.0
+ '@rollup/rollup-linux-x64-musl': 4.43.0
+ '@rollup/rollup-win32-arm64-msvc': 4.43.0
+ '@rollup/rollup-win32-ia32-msvc': 4.43.0
+ '@rollup/rollup-win32-x64-msvc': 4.43.0
fsevents: 2.3.3
rtlcss@4.3.0:
dependencies:
escalade: 3.2.0
picocolors: 1.1.1
- postcss: 8.5.4
+ postcss: 8.5.5
strip-json-comments: 3.1.1
run-applescript@7.0.0: {}
@@ -5794,14 +5830,14 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@3.4.2:
+ shiki@3.6.0:
dependencies:
- '@shikijs/core': 3.4.2
- '@shikijs/engine-javascript': 3.4.2
- '@shikijs/engine-oniguruma': 3.4.2
- '@shikijs/langs': 3.4.2
- '@shikijs/themes': 3.4.2
- '@shikijs/types': 3.4.2
+ '@shikijs/core': 3.6.0
+ '@shikijs/engine-javascript': 3.6.0
+ '@shikijs/engine-oniguruma': 3.6.0
+ '@shikijs/langs': 3.6.0
+ '@shikijs/themes': 3.6.0
+ '@shikijs/types': 3.6.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -5811,7 +5847,7 @@ snapshots:
simple-git-hooks@2.13.0: {}
- simple-git@3.27.0:
+ simple-git@3.28.0:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
@@ -5925,6 +5961,10 @@ snapshots:
strip-json-comments@3.1.1: {}
+ strip-literal@3.0.0:
+ dependencies:
+ js-tokens: 9.0.1
+
strtok3@7.1.1:
dependencies:
'@tokenizer/token': 0.3.0
@@ -5959,14 +5999,14 @@ snapshots:
tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.5(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@1.1.0: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
+ tinyspy@4.0.3: {}
to-regex-range@5.0.1:
dependencies:
@@ -5977,7 +6017,7 @@ snapshots:
'@tokenizer/token': 0.3.0
ieee754: 1.2.1
- tokenx@0.4.1: {}
+ tokenx@1.0.1: {}
totalist@3.0.1: {}
@@ -6010,7 +6050,7 @@ snapshots:
ultramatter@0.0.4: {}
- undici-types@6.21.0: {}
+ undici-types@7.8.0: {}
unicorn-magic@0.1.0: {}
@@ -6083,13 +6123,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@3.1.4(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0):
+ vite-node@3.2.3(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0):
dependencies:
cac: 6.7.14
debug: 4.4.1
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ vite: rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- esbuild
@@ -6104,13 +6144,13 @@ snapshots:
- tsx
- yaml
- vitepress-plugin-group-icons@1.5.5(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(markdown-it@14.1.0)(yaml@2.8.0):
+ vitepress-plugin-group-icons@1.6.0(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(markdown-it@14.1.0)(yaml@2.8.0):
dependencies:
'@iconify-json/logos': 1.2.4
'@iconify-json/vscode-icons': 1.2.22
'@iconify/utils': 2.3.0
markdown-it: 14.1.0
- vite: rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ vite: rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- esbuild
@@ -6125,49 +6165,52 @@ snapshots:
- tsx
- yaml
- vitepress-plugin-llms@1.3.4:
+ vitepress-plugin-llms@1.5.0:
dependencies:
byte-size: 9.0.1
gray-matter: 4.0.3
markdown-title: 1.0.2
millify: 6.1.0
- minimatch: 10.0.1
+ minimatch: 10.0.2
+ path-to-regexp: 8.2.0
picocolors: 1.1.1
remark: 15.0.1
remark-frontmatter: 5.0.0
- tokenx: 0.4.1
+ tokenx: 1.0.1
unist-util-remove: 4.0.0
unist-util-visit: 5.0.0
transitivePeerDependencies:
- '@75lb/nature'
- supports-color
- vitest@3.1.4(@types/debug@4.1.12)(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0):
+ vitest@3.2.3(@types/debug@4.1.12)(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0):
dependencies:
- '@vitest/expect': 3.1.4
- '@vitest/mocker': 3.1.4(rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))
- '@vitest/pretty-format': 3.1.4
- '@vitest/runner': 3.1.4
- '@vitest/snapshot': 3.1.4
- '@vitest/spy': 3.1.4
- '@vitest/utils': 3.1.4
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.3
+ '@vitest/mocker': 3.2.3(rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0))
+ '@vitest/pretty-format': 3.2.3
+ '@vitest/runner': 3.2.3
+ '@vitest/snapshot': 3.2.3
+ '@vitest/spy': 3.2.3
+ '@vitest/utils': 3.2.3
chai: 5.2.0
debug: 4.4.1
expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
+ picomatch: 4.0.2
std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinyglobby: 0.2.14
tinypool: 1.1.0
tinyrainbow: 2.0.0
- vite: rolldown-vite@6.3.19(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
- vite-node: 3.1.4(@types/node@22.15.29)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ vite: rolldown-vite@6.3.19(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
+ vite-node: 3.2.3(@types/node@24.0.1)(esbuild@0.25.5)(jiti@1.21.7)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.15.29
+ '@types/node': 24.0.1
transitivePeerDependencies:
- esbuild
- jiti
@@ -6184,10 +6227,10 @@ snapshots:
vscode-uri@3.1.0: {}
- vue-tsc@3.0.0-alpha.8(typescript@5.8.3):
+ vue-tsc@3.0.0-alpha.10(typescript@5.8.3):
dependencies:
'@volar/typescript': 2.4.14
- '@vue/language-core': 3.0.0-alpha.8(typescript@5.8.3)
+ '@vue/language-core': 3.0.0-alpha.10(typescript@5.8.3)
typescript: 5.8.3
vue@3.5.16(typescript@5.8.3):
@@ -6277,6 +6320,6 @@ snapshots:
yoctocolors@2.1.1: {}
- zod@3.25.46: {}
+ zod@3.25.62: {}
zwitch@2.0.4: {}
diff --git a/src/node/build/build.ts b/src/node/build/build.ts
index 2c679549..12769d22 100644
--- a/src/node/build/build.ts
+++ b/src/node/build/build.ts
@@ -5,7 +5,7 @@ import { createRequire } from 'node:module'
import path from 'node:path'
import { pathToFileURL } from 'node:url'
import pMap from 'p-map'
-import { packageDirectorySync } from 'pkg-dir'
+import { packageDirectorySync } from 'package-directory'
import { rimraf } from 'rimraf'
import * as vite from 'vite'
import type { BuildOptions, Rollup } from 'vite'