From 378813a71cf2ba71e414d5a944e3d26789d55730 Mon Sep 17 00:00:00 2001
From: zhiyuanzmj <260480378@qq.com>
Date: Tue, 29 Apr 2025 14:33:52 +0800
Subject: [PATCH 1/5] fix(volar/jsx-directive): use getStart instead of pos for
v-if and v-for (#949)
---
.../jsx-directive/tests/__snapshots__/v-for.test.ts.snap | 4 +++-
packages/jsx-directive/tests/fixtures/v-for/index.vue | 4 +++-
packages/volar/src/jsx-directive/v-for.ts | 8 +++++++-
packages/volar/src/jsx-directive/v-if.ts | 6 +++---
4 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/packages/jsx-directive/tests/__snapshots__/v-for.test.ts.snap b/packages/jsx-directive/tests/__snapshots__/v-for.test.ts.snap
index 7736098a2..14c812d8b 100644
--- a/packages/jsx-directive/tests/__snapshots__/v-for.test.ts.snap
+++ b/packages/jsx-directive/tests/__snapshots__/v-for.test.ts.snap
@@ -11,7 +11,9 @@ const set = new Set(['1', '2', '3'])
const object = { id: 1, name: 'admin' }
let selected = 0
-const Comp = <>{__MACROS_renderList(4, (i) =>
{i}
)}>
+const Comp = () => {
+ return <>{__MACROS_renderList(4, (i) => {i}
)}>
+}
defineRender(() => (
<>
diff --git a/packages/jsx-directive/tests/fixtures/v-for/index.vue b/packages/jsx-directive/tests/fixtures/v-for/index.vue
index ff69d51c7..4ce92d3e1 100644
--- a/packages/jsx-directive/tests/fixtures/v-for/index.vue
+++ b/packages/jsx-directive/tests/fixtures/v-for/index.vue
@@ -7,7 +7,9 @@ const set = new Set(['1', '2', '3'])
const object = { id: 1, name: 'admin' }
let selected = 0
-const Comp = {i}
+const Comp = () => {
+ return {i}
+}
defineRender(() => (
<>
diff --git a/packages/volar/src/jsx-directive/v-for.ts b/packages/volar/src/jsx-directive/v-for.ts
index 671aeba2e..bf08e325f 100644
--- a/packages/volar/src/jsx-directive/v-for.ts
+++ b/packages/volar/src/jsx-directive/v-for.ts
@@ -99,7 +99,13 @@ export function transformVFor(
result.unshift('{')
}
- replaceSourceRange(codes, source, node.pos, node.pos, ...result)
+ replaceSourceRange(
+ codes,
+ source,
+ getStart(node, options),
+ getStart(node, options),
+ ...result,
+ )
replaceSourceRange(
codes,
diff --git a/packages/volar/src/jsx-directive/v-if.ts b/packages/volar/src/jsx-directive/v-if.ts
index 429d30747..ed9215085 100644
--- a/packages/volar/src/jsx-directive/v-if.ts
+++ b/packages/volar/src/jsx-directive/v-if.ts
@@ -23,9 +23,9 @@ export function transformVIf(
replaceSourceRange(
codes,
source,
- node.pos,
- node.pos,
- `${hasScope ? '{' : ' '}(`,
+ getStart(node, options),
+ getStart(node, options),
+ `${hasScope ? '{' : ''}(`,
[
getText(attribute.initializer.expression, options),
source,
From 03bc217750225bc208c088458eb35483f88af060 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?=
Date: Fri, 9 May 2025 02:45:01 +0800
Subject: [PATCH 2/5] feat!(volar): remove cjs build
---
monoman.config.ts | 12 +--
packages/macros/package.json | 11 +--
packages/macros/src/volar.ts | 5 +
packages/macros/tsup.config.ts | 2 -
packages/macros/volar.cjs | 1 -
packages/macros/volar.d.ts | 1 -
packages/volar/loader.ts | 7 --
packages/volar/package.json | 168 +++++++++++++++------------------
packages/volar/tsup.config.ts | 25 +----
pnpm-lock.yaml | 3 -
tsup.config.ts | 9 +-
11 files changed, 86 insertions(+), 158 deletions(-)
create mode 100644 packages/macros/src/volar.ts
delete mode 100644 packages/macros/volar.cjs
delete mode 100644 packages/macros/volar.d.ts
delete mode 100644 packages/volar/loader.ts
diff --git a/monoman.config.ts b/monoman.config.ts
index 1184a7819..ddbddf720 100644
--- a/monoman.config.ts
+++ b/monoman.config.ts
@@ -84,7 +84,6 @@ export default defineConfig([
data.files = ['dist']
if (hasRootDts) data.files.push('*.d.ts')
- if (pkgName === 'macros') data.files.push('volar.cjs')
data.files.sort()
if (
@@ -130,10 +129,6 @@ export default unplugin.${entry} as typeof unplugin.${entry}\n`,
})
).map((file) => path.basename(path.relative(pkgSrc, file), '.ts'))
- if (pkgName === 'macros') {
- entries.push('volar')
- }
-
data.exports = buildExports(true)
const exports = (data.publishConfig.exports = buildExports())
@@ -162,12 +157,7 @@ export default unplugin.${entry} as typeof unplugin.${entry}\n`,
const map: Record = {}
if (withDev) map.dev = `./src/${entry}.ts`
- if (entry === 'volar') {
- map.types = `./volar.d.ts`
- map.default = `./volar.cjs`
- } else {
- map.default = `./dist/${entry}.js`
- }
+ map.default = `./dist/${entry}.js`
if (Object.keys(map).length === 1) {
return [key, Object.values(map)[0]]
diff --git a/packages/macros/package.json b/packages/macros/package.json
index 8511aa07b..8d8e52ef5 100644
--- a/packages/macros/package.json
+++ b/packages/macros/package.json
@@ -27,8 +27,7 @@
"funding": "https://github.com/sponsors/vue-macros",
"files": [
"*.d.ts",
- "dist",
- "volar.cjs"
+ "dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
@@ -64,8 +63,7 @@
},
"./volar": {
"dev": "./src/volar.ts",
- "types": "./volar.d.ts",
- "default": "./volar.cjs"
+ "default": "./dist/volar.js"
},
"./webpack": {
"dev": "./src/webpack.ts",
@@ -94,10 +92,7 @@
"./rspack": "./dist/rspack.js",
"./runtime": "./dist/runtime.js",
"./vite": "./dist/vite.js",
- "./volar": {
- "types": "./volar.d.ts",
- "default": "./volar.cjs"
- },
+ "./volar": "./dist/volar.js",
"./webpack": "./dist/webpack.js",
"./*": [
"./*",
diff --git a/packages/macros/src/volar.ts b/packages/macros/src/volar.ts
new file mode 100644
index 000000000..a939ef6c6
--- /dev/null
+++ b/packages/macros/src/volar.ts
@@ -0,0 +1,5 @@
+import plugin from '@vue-macros/volar'
+
+// eslint-disable-next-line import/no-default-export
+export default plugin
+export { plugin as 'module.exports' }
diff --git a/packages/macros/tsup.config.ts b/packages/macros/tsup.config.ts
index 38c6e1602..d661b8f1c 100644
--- a/packages/macros/tsup.config.ts
+++ b/packages/macros/tsup.config.ts
@@ -2,8 +2,6 @@ import { config } from '../../tsup.config.js'
export default config({
ignoreDeps: [
- '@vue-macros/volar',
-
// Used in dts
'@vue-macros/common',
],
diff --git a/packages/macros/volar.cjs b/packages/macros/volar.cjs
deleted file mode 100644
index 16f11743d..000000000
--- a/packages/macros/volar.cjs
+++ /dev/null
@@ -1 +0,0 @@
-module.exports = require('@vue-macros/volar')
diff --git a/packages/macros/volar.d.ts b/packages/macros/volar.d.ts
deleted file mode 100644
index 9dafe6cd6..000000000
--- a/packages/macros/volar.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@vue-macros/volar'
diff --git a/packages/volar/loader.ts b/packages/volar/loader.ts
deleted file mode 100644
index 317fd9e7a..000000000
--- a/packages/volar/loader.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import { createJiti } from 'jiti'
-
-const jiti = createJiti(__filename)
-const mod: any = jiti('__FILE__')
-
-// @ts-expect-error
-export = mod.default as any
diff --git a/packages/volar/package.json b/packages/volar/package.json
index fa81f1bf1..13ee1ad41 100644
--- a/packages/volar/package.json
+++ b/packages/volar/package.json
@@ -28,138 +28,96 @@
"*.d.ts",
"dist"
],
+ "main": "dist/index.js",
+ "module": "dist/index.js",
"exports": {
".": {
- "types": "./dist/index.d.ts",
- "module-sync": "./dist/index.js",
- "import": "./dist/index.js",
- "default": "./dist/loader/index.cjs"
+ "dev": "./src/index.ts",
+ "default": "./dist/index.js"
},
"./boolean-prop": {
- "types": "./dist/boolean-prop.d.ts",
- "module-sync": "./dist/boolean-prop.js",
- "import": "./dist/boolean-prop.js",
- "default": "./dist/loader/boolean-prop.cjs"
+ "dev": "./src/boolean-prop.ts",
+ "default": "./dist/boolean-prop.js"
},
"./common": {
- "types": "./dist/common.d.ts",
- "module-sync": "./dist/common.js",
- "import": "./dist/common.js",
- "default": "./dist/loader/common.cjs"
+ "dev": "./src/common.ts",
+ "default": "./dist/common.js"
},
"./define-emit": {
- "types": "./dist/define-emit.d.ts",
- "module-sync": "./dist/define-emit.js",
- "import": "./dist/define-emit.js",
- "default": "./dist/loader/define-emit.cjs"
+ "dev": "./src/define-emit.ts",
+ "default": "./dist/define-emit.js"
},
"./define-generic": {
- "types": "./dist/define-generic.d.ts",
- "module-sync": "./dist/define-generic.js",
- "import": "./dist/define-generic.js",
- "default": "./dist/loader/define-generic.cjs"
+ "dev": "./src/define-generic.ts",
+ "default": "./dist/define-generic.js"
},
"./define-models": {
- "types": "./dist/define-models.d.ts",
- "module-sync": "./dist/define-models.js",
- "import": "./dist/define-models.js",
- "default": "./dist/loader/define-models.cjs"
+ "dev": "./src/define-models.ts",
+ "default": "./dist/define-models.js"
},
"./define-options": {
- "types": "./dist/define-options.d.ts",
- "module-sync": "./dist/define-options.js",
- "import": "./dist/define-options.js",
- "default": "./dist/loader/define-options.cjs"
+ "dev": "./src/define-options.ts",
+ "default": "./dist/define-options.js"
},
"./define-prop": {
- "types": "./dist/define-prop.d.ts",
- "module-sync": "./dist/define-prop.js",
- "import": "./dist/define-prop.js",
- "default": "./dist/loader/define-prop.cjs"
+ "dev": "./src/define-prop.ts",
+ "default": "./dist/define-prop.js"
},
"./define-props": {
- "types": "./dist/define-props.d.ts",
- "module-sync": "./dist/define-props.js",
- "import": "./dist/define-props.js",
- "default": "./dist/loader/define-props.cjs"
+ "dev": "./src/define-props.ts",
+ "default": "./dist/define-props.js"
},
"./define-props-refs": {
- "types": "./dist/define-props-refs.d.ts",
- "module-sync": "./dist/define-props-refs.js",
- "import": "./dist/define-props-refs.js",
- "default": "./dist/loader/define-props-refs.cjs"
+ "dev": "./src/define-props-refs.ts",
+ "default": "./dist/define-props-refs.js"
},
"./define-slots": {
- "types": "./dist/define-slots.d.ts",
- "module-sync": "./dist/define-slots.js",
- "import": "./dist/define-slots.js",
- "default": "./dist/loader/define-slots.cjs"
+ "dev": "./src/define-slots.ts",
+ "default": "./dist/define-slots.js"
},
"./export-expose": {
- "types": "./dist/export-expose.d.ts",
- "module-sync": "./dist/export-expose.js",
- "import": "./dist/export-expose.js",
- "default": "./dist/loader/export-expose.cjs"
+ "dev": "./src/export-expose.ts",
+ "default": "./dist/export-expose.js"
},
"./export-props": {
- "types": "./dist/export-props.d.ts",
- "module-sync": "./dist/export-props.js",
- "import": "./dist/export-props.js",
- "default": "./dist/loader/export-props.cjs"
+ "dev": "./src/export-props.ts",
+ "default": "./dist/export-props.js"
},
"./export-render": {
- "types": "./dist/export-render.d.ts",
- "module-sync": "./dist/export-render.js",
- "import": "./dist/export-render.js",
- "default": "./dist/loader/export-render.cjs"
+ "dev": "./src/export-render.ts",
+ "default": "./dist/export-render.js"
},
"./jsx-directive": {
- "types": "./dist/jsx-directive.d.ts",
- "module-sync": "./dist/jsx-directive.js",
- "import": "./dist/jsx-directive.js",
- "default": "./dist/loader/jsx-directive.cjs"
+ "dev": "./src/jsx-directive.ts",
+ "default": "./dist/jsx-directive.js"
},
"./jsx-ref": {
- "types": "./dist/jsx-ref.d.ts",
- "module-sync": "./dist/jsx-ref.js",
- "import": "./dist/jsx-ref.js",
- "default": "./dist/loader/jsx-ref.cjs"
+ "dev": "./src/jsx-ref.ts",
+ "default": "./dist/jsx-ref.js"
},
"./script-lang": {
- "types": "./dist/script-lang.d.ts",
- "module-sync": "./dist/script-lang.js",
- "import": "./dist/script-lang.js",
- "default": "./dist/loader/script-lang.cjs"
+ "dev": "./src/script-lang.ts",
+ "default": "./dist/script-lang.js"
},
"./script-sfc": {
- "types": "./dist/script-sfc.d.ts",
- "module-sync": "./dist/script-sfc.js",
- "import": "./dist/script-sfc.js",
- "default": "./dist/loader/script-sfc.cjs"
+ "dev": "./src/script-sfc.ts",
+ "default": "./dist/script-sfc.js"
},
"./setup-jsdoc": {
- "types": "./dist/setup-jsdoc.d.ts",
- "module-sync": "./dist/setup-jsdoc.js",
- "import": "./dist/setup-jsdoc.js",
- "default": "./dist/loader/setup-jsdoc.cjs"
+ "dev": "./src/setup-jsdoc.ts",
+ "default": "./dist/setup-jsdoc.js"
},
"./setup-sfc": {
- "types": "./dist/setup-sfc.d.ts",
- "module-sync": "./dist/setup-sfc.js",
- "import": "./dist/setup-sfc.js",
- "default": "./dist/loader/setup-sfc.cjs"
+ "dev": "./src/setup-sfc.ts",
+ "default": "./dist/setup-sfc.js"
},
"./short-bind": {
- "types": "./dist/short-bind.d.ts",
- "module-sync": "./dist/short-bind.js",
- "import": "./dist/short-bind.js",
- "default": "./dist/loader/short-bind.cjs"
+ "dev": "./src/short-bind.ts",
+ "default": "./dist/short-bind.js"
},
"./short-vmodel": {
- "types": "./dist/short-vmodel.d.ts",
- "module-sync": "./dist/short-vmodel.js",
- "import": "./dist/short-vmodel.js",
- "default": "./dist/loader/short-vmodel.cjs"
+ "dev": "./src/short-vmodel.ts",
+ "default": "./dist/short-vmodel.js"
},
"./*": [
"./*",
@@ -176,7 +134,35 @@
},
"publishConfig": {
"access": "public",
- "tag": "next"
+ "tag": "next",
+ "exports": {
+ ".": "./dist/index.js",
+ "./boolean-prop": "./dist/boolean-prop.js",
+ "./common": "./dist/common.js",
+ "./define-emit": "./dist/define-emit.js",
+ "./define-generic": "./dist/define-generic.js",
+ "./define-models": "./dist/define-models.js",
+ "./define-options": "./dist/define-options.js",
+ "./define-prop": "./dist/define-prop.js",
+ "./define-props": "./dist/define-props.js",
+ "./define-props-refs": "./dist/define-props-refs.js",
+ "./define-slots": "./dist/define-slots.js",
+ "./export-expose": "./dist/export-expose.js",
+ "./export-props": "./dist/export-props.js",
+ "./export-render": "./dist/export-render.js",
+ "./jsx-directive": "./dist/jsx-directive.js",
+ "./jsx-ref": "./dist/jsx-ref.js",
+ "./script-lang": "./dist/script-lang.js",
+ "./script-sfc": "./dist/script-sfc.js",
+ "./setup-jsdoc": "./dist/setup-jsdoc.js",
+ "./setup-sfc": "./dist/setup-sfc.js",
+ "./short-bind": "./dist/short-bind.js",
+ "./short-vmodel": "./dist/short-vmodel.js",
+ "./*": [
+ "./*",
+ "./*.d.ts"
+ ]
+ }
},
"scripts": {
"build": "tsup",
@@ -197,7 +183,6 @@
"@vue-macros/short-bind": "workspace:*",
"@vue-macros/short-vmodel": "workspace:*",
"@vue/language-core": "catalog:",
- "jiti": "catalog:",
"muggle-string": "catalog:",
"ts-macro": "catalog:"
},
@@ -208,8 +193,5 @@
},
"engines": {
"node": ">=20.18.0"
- },
- "meta": {
- "skipExports": true
}
}
diff --git a/packages/volar/tsup.config.ts b/packages/volar/tsup.config.ts
index dee02be63..79217a5fd 100644
--- a/packages/volar/tsup.config.ts
+++ b/packages/volar/tsup.config.ts
@@ -1,29 +1,6 @@
-import { mkdir, readFile, writeFile } from 'node:fs/promises'
-import path from 'node:path'
-import { transform } from 'esbuild'
import { config } from '../../tsup.config.js'
export default config({
- ignoreDeps: ['vue-tsc', 'jiti'],
+ ignoreDeps: ['vue-tsc'],
platform: 'node',
- async onSuccess(entries) {
- const files = entries.map((file) => path.basename(file, '.ts'))
-
- const contents = await readFile('./loader.ts')
- const transformed = await transform(contents, {
- loader: 'ts',
- format: 'cjs',
- target: 'node20',
- minifySyntax: true,
- })
- await mkdir('./dist/loader', { recursive: true })
- await Promise.all(
- files.map((file) =>
- writeFile(
- `./dist/loader/${file}.cjs`,
- transformed.code.replace('__FILE__', `../${file}.js`),
- ),
- ),
- )
- },
})
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 151f8d5bd..44e46d8f8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1207,9 +1207,6 @@ importers:
'@vue/language-core':
specifier: 2.2.8
version: 2.2.8(typescript@5.8.3)
- jiti:
- specifier: 'catalog:'
- version: 2.4.2
muggle-string:
specifier: 'catalog:'
version: 0.4.1
diff --git a/tsup.config.ts b/tsup.config.ts
index 56cfc3722..e2f4cd743 100644
--- a/tsup.config.ts
+++ b/tsup.config.ts
@@ -24,8 +24,6 @@ export function config({
splitting = !onlyIndex,
platform = 'neutral',
external = [],
- cjs = false,
- esm = true,
onSuccess,
}: {
ignoreDeps?: UnusedOptions['ignore']
@@ -35,22 +33,17 @@ export function config({
onlyIndex?: boolean
platform?: Options['platform']
external?: string[]
- cjs?: boolean
- esm?: boolean
onSuccess?: (entries: string[]) => void | Promise
} = {}): Options {
const entry = onlyIndex ? ['./src/index.ts'] : ['./src/*.ts', '!./**.d.ts']
- const format: Format[] = []
- if (cjs) format.push('cjs')
- if (esm) format.push('esm')
+ const format: Format[] = ['esm']
return {
entry,
format,
target: 'node20.18',
splitting,
- cjsInterop: true,
watch: !!process.env.DEV,
dts: false,
tsconfig: '../../tsconfig.lib.json',
From 18e7aa29048b970dcf088e15f69f26a49e7aa8cc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?=
Date: Fri, 9 May 2025 02:47:42 +0800
Subject: [PATCH 3/5] ci: test on node 24
---
.github/workflows/unit-test.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index 1087f433c..34abccd32 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
- node-version: [20, 22, 23]
+ node-version: [20, 22, 24]
fail-fast: false
runs-on: ${{ matrix.os }}
From 631ae50ab36315c97835d83d4b5432177036c744 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?=
Date: Fri, 9 May 2025 02:58:50 +0800
Subject: [PATCH 4/5] chore: upgrade deps
---
monoman.config.ts | 2 +-
package.json | 2 +-
packages/common/src/dep.ts | 2 +-
pnpm-lock.yaml | 5238 +++++++++++++++++++-----------------
pnpm-workspace.yaml | 66 +-
5 files changed, 2864 insertions(+), 2446 deletions(-)
diff --git a/monoman.config.ts b/monoman.config.ts
index ddbddf720..0d7f38e74 100644
--- a/monoman.config.ts
+++ b/monoman.config.ts
@@ -214,7 +214,7 @@ Please refer to [README.md](${githubLink}#readme)\n`
/vite(?!-(plugin-(vue-inspector|inspect)|hot-client))/,
/unocss/,
/rolldown/,
- /oxc(?!-project\/types)/,
+ /oxc(?!-resolver|-project\/types)/,
],
}),
...noDuplicatedPnpmLockfile({
diff --git a/package.json b/package.json
index 5bf053f4e..b3225c19f 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "monorepo-vue-macros",
"version": "3.0.0-beta.10",
"private": true,
- "packageManager": "pnpm@10.9.0",
+ "packageManager": "pnpm@10.10.0",
"description": "Monorepo for Vue Macros.",
"type": "module",
"author": "三咲智子 Kevin Deng ",
diff --git a/packages/common/src/dep.ts b/packages/common/src/dep.ts
index 94838d03e..4005214ab 100644
--- a/packages/common/src/dep.ts
+++ b/packages/common/src/dep.ts
@@ -8,7 +8,7 @@ function getRequire() {
try {
// @ts-expect-error check api
if (globalThis.process?.getBuiltinModule) {
- const module = process.getBuiltinModule('module')
+ const module = process.getBuiltinModule('node:module')
// unenv has implemented `getBuiltinModule` but has yet to support `module.createRequire`
if (module?.createRequire) {
return (require = module.createRequire(import.meta.url))
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 44e46d8f8..d2591c2d3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -7,14 +7,14 @@ settings:
catalogs:
default:
'@astrojs/vue':
- specifier: ^5.0.9
- version: 5.0.11
+ specifier: ^5.0.13
+ version: 5.0.13
'@babel/parser':
- specifier: ^7.27.0
- version: 7.27.0
+ specifier: ^7.27.1
+ version: 7.27.2
'@babel/types':
- specifier: ^7.27.0
- version: 7.27.0
+ specifier: ^7.27.1
+ version: 7.27.1
'@iconify-json/logos':
specifier: ^1.2.4
version: 1.2.4
@@ -22,26 +22,26 @@ catalogs:
specifier: ^1.2.5
version: 1.2.5
'@nolebase/vitepress-plugin-enhanced-mark':
- specifier: ^2.16.0
- version: 2.16.0
+ specifier: ^2.17.0
+ version: 2.17.0
'@nolebase/vitepress-plugin-enhanced-readabilities':
- specifier: ^2.16.0
- version: 2.16.0
+ specifier: ^2.17.0
+ version: 2.17.0
'@nolebase/vitepress-plugin-git-changelog':
- specifier: ^2.16.0
- version: 2.16.0
+ specifier: ^2.17.0
+ version: 2.17.0
'@nolebase/vitepress-plugin-highlight-targeted-heading':
- specifier: ^2.16.0
- version: 2.16.0
+ specifier: ^2.17.0
+ version: 2.17.0
'@nuxt/devtools':
specifier: ^2.4.0
version: 2.4.0
'@nuxt/kit':
- specifier: ^3.16.2
- version: 3.16.2
+ specifier: ^3.17.2
+ version: 3.17.2
'@nuxt/schema':
- specifier: ^3.16.2
- version: 3.16.2
+ specifier: ^3.17.2
+ version: 3.17.2
'@rollup/plugin-commonjs':
specifier: ^28.0.3
version: 28.0.3
@@ -52,44 +52,44 @@ catalogs:
specifier: ^16.0.1
version: 16.0.1
'@rspack/core':
- specifier: ^1.3.5
- version: 1.3.5
+ specifier: ^1.3.9
+ version: 1.3.9
'@shikijs/vitepress-twoslash':
- specifier: ^3.3.0
- version: 3.3.0
+ specifier: ^3.4.0
+ version: 3.4.0
'@stylexjs/stylex':
specifier: ^0.12.0
version: 0.12.0
'@sxzz/eslint-config':
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^7.0.0
+ version: 7.0.0
'@sxzz/prettier-config':
specifier: ^2.2.1
version: 2.2.1
'@sxzz/test-utils':
- specifier: ^0.5.5
- version: 0.5.5
+ specifier: ^0.5.6
+ version: 0.5.6
'@types/node':
- specifier: ^22.14.1
- version: 22.14.1
+ specifier: ^22.15.17
+ version: 22.15.17
'@unocss/eslint-plugin':
- specifier: ^66.1.0-beta.12
- version: 66.1.0-beta.12
+ specifier: ^66.1.1
+ version: 66.1.1
'@unocss/nuxt':
- specifier: ^66.1.0-beta.12
- version: 66.1.0-beta.12
+ specifier: ^66.1.1
+ version: 66.1.1
'@unocss/reset':
- specifier: ^66.1.0-beta.12
- version: 66.1.0-beta.12
+ specifier: ^66.1.1
+ version: 66.1.1
'@vitejs/plugin-vue-jsx':
specifier: ^4.1.2
version: 4.1.2
'@vitest/coverage-v8':
- specifier: ^3.1.2
- version: 3.1.2
+ specifier: ^3.1.3
+ version: 3.1.3
'@vitest/ui':
- specifier: ^3.1.2
- version: 3.1.2
+ specifier: ^3.1.3
+ version: 3.1.3
'@vue/compiler-core':
specifier: ^3.5.13
version: 3.5.13
@@ -106,14 +106,14 @@ catalogs:
specifier: ^13.1.0
version: 13.1.0
ast-kit:
- specifier: ^1.4.2
- version: 1.4.2
+ specifier: ^1.4.3
+ version: 1.4.3
ast-walker-scope:
specifier: ^0.7.1
version: 0.7.1
astro:
- specifier: ^5.7.5
- version: 5.7.5
+ specifier: ^5.7.12
+ version: 5.7.12
bumpp:
specifier: ^10.1.0
version: 10.1.0
@@ -121,11 +121,11 @@ catalogs:
specifier: ^5.4.4
version: 5.4.4
cspell:
- specifier: ^8.19.2
- version: 8.19.2
+ specifier: ^9.0.1
+ version: 9.0.1
eslint:
- specifier: ^9.25.1
- version: 9.25.1
+ specifier: ^9.26.0
+ version: 9.26.0
expect-type:
specifier: ^1.2.1
version: 1.2.1
@@ -157,14 +157,14 @@ catalogs:
specifier: ^8.2.0
version: 8.2.0
nuxt:
- specifier: ^3.16.2
- version: 3.16.2
+ specifier: ^3.17.2
+ version: 3.17.2
oxc-resolver:
specifier: ^6.0.0
version: 6.0.0
oxc-transform:
- specifier: ^0.65.0
- version: 0.65.0
+ specifier: ^0.68.1
+ version: 0.68.1
pkg-types:
specifier: ^2.1.0
version: 2.1.0
@@ -190,8 +190,8 @@ catalogs:
specifier: ^1.0.0-beta.8
version: 1.0.0-beta.8
rollup:
- specifier: ^4.40.0
- version: 4.40.0
+ specifier: ^4.40.2
+ version: 4.40.2
rollup-plugin-dts:
specifier: ^6.2.1
version: 6.2.1
@@ -199,41 +199,41 @@ catalogs:
specifier: ^3.0.1
version: 3.0.1
taze:
- specifier: ^19.0.4
- version: 19.0.4
+ specifier: ^19.1.0
+ version: 19.1.0
ts-macro:
- specifier: ^0.1.25
- version: 0.1.25
+ specifier: ^0.1.27
+ version: 0.1.27
tsup:
specifier: ^8.4.0
version: 8.4.0
tsx:
- specifier: ^4.19.3
- version: 4.19.3
+ specifier: ^4.19.4
+ version: 4.19.4
type-fest:
- specifier: ^4.40.0
- version: 4.40.0
+ specifier: ^4.41.0
+ version: 4.41.0
typescript:
specifier: ^5.8.3
version: 5.8.3
unocss:
- specifier: ^66.1.0-beta.12
- version: 66.1.0-beta.12
+ specifier: ^66.1.1
+ version: 66.1.1
unplugin:
specifier: ^2.3.2
version: 2.3.2
unplugin-combine:
- specifier: ^1.2.1
- version: 1.2.1
+ specifier: ^2.0.0
+ version: 2.0.0
unplugin-isolated-decl:
- specifier: ^0.13.9
- version: 0.13.9
+ specifier: ^0.13.11
+ version: 0.13.11
unplugin-macros:
specifier: ^0.16.3
version: 0.16.3
unplugin-oxc:
- specifier: ^0.3.5
- version: 0.3.5
+ specifier: ^0.3.7
+ version: 0.3.7
unplugin-quansync:
specifier: ^0.3.6
version: 0.3.6
@@ -247,11 +247,11 @@ catalogs:
specifier: ^0.2.4
version: 0.2.4
unplugin-vue:
- specifier: ^6.1.0
- version: 6.1.0
+ specifier: ^6.2.0
+ version: 6.2.0
vite:
- specifier: ^6.3.2
- version: 6.3.2
+ specifier: ^6.3.5
+ version: 6.3.5
vite-hyper-config:
specifier: ^0.6.1
version: 0.6.1
@@ -262,8 +262,8 @@ catalogs:
specifier: ^0.13.0
version: 0.13.0
vite-plugin-vue-devtools:
- specifier: ^7.7.5
- version: 7.7.5
+ specifier: ^7.7.6
+ version: 7.7.6
vitepress:
specifier: ^2.0.0-alpha.2
version: 2.0.0-alpha.2
@@ -271,11 +271,11 @@ catalogs:
specifier: ^1.5.2
version: 1.5.2
vitepress-plugin-llms:
- specifier: ^1.1.0
- version: 1.1.0
+ specifier: ^1.1.3
+ version: 1.1.3
vitest:
- specifier: ^3.1.2
- version: 3.1.2
+ specifier: ^3.1.3
+ version: 3.1.3
vue:
specifier: ^3.5.13
version: 3.5.13
@@ -283,22 +283,22 @@ catalogs:
specifier: 2.2.8
version: 2.2.8
webpack:
- specifier: ^5.99.6
- version: 5.99.6
+ specifier: ^5.99.8
+ version: 5.99.8
overrides:
- '@shikijs/core': ^3.3.0
- '@shikijs/transformers': ^3.3.0
- '@shikijs/types': ^3.3.0
+ '@netlify/functions': '-'
+ '@shikijs/core': ^3.4.0
+ '@shikijs/transformers': ^3.4.0
+ '@shikijs/types': ^3.4.0
'@vitejs/plugin-vue': ^5.2.3
'@vue/language-core': 2.2.8
- esbuild: ^0.25.3
+ esbuild: ^0.25.4
is-core-module: npm:@no-shims/is-core-module
- oxc-parser: ^0.65.0
- shiki: ^3.3.0
+ oxc-parser: ^0.68.1
+ shiki: ^3.4.0
smartwrap: npm:@no-shims/smartwrap
unconfig: ^7.3.2
- '@netlify/functions': '-'
importers:
@@ -306,28 +306,28 @@ importers:
devDependencies:
'@babel/types':
specifier: 'catalog:'
- version: 7.27.0
+ version: 7.27.1
'@rspack/core':
specifier: 'catalog:'
- version: 1.3.5(@swc/helpers@0.5.17)
+ version: 1.3.9(@swc/helpers@0.5.17)
'@sxzz/eslint-config':
specifier: 'catalog:'
- version: 6.1.2(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(@unocss/eslint-plugin@66.1.0-beta.12(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ version: 7.0.0(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(@unocss/eslint-plugin@66.1.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
'@sxzz/prettier-config':
specifier: 'catalog:'
version: 2.2.1
'@types/node':
specifier: 'catalog:'
- version: 22.14.1
+ version: 22.15.17
'@unocss/eslint-plugin':
specifier: 'catalog:'
- version: 66.1.0-beta.12(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ version: 66.1.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
'@vitest/coverage-v8':
specifier: 'catalog:'
- version: 3.1.2(vitest@3.1.2)
+ version: 3.1.3(vitest@3.1.3)
'@vitest/ui':
specifier: 'catalog:'
- version: 3.1.2(vitest@3.1.2)
+ version: 3.1.3(vitest@3.1.3)
'@vue-macros/test-utils':
specifier: workspace:*
version: link:packages/test-utils
@@ -339,13 +339,13 @@ importers:
version: 5.4.4
cspell:
specifier: 'catalog:'
- version: 8.19.2
+ version: 9.0.1
esbuild:
- specifier: ^0.25.3
- version: 0.25.3
+ specifier: ^0.25.4
+ version: 0.25.4
eslint:
specifier: 'catalog:'
- version: 9.25.1(jiti@2.4.2)
+ version: 9.26.0(jiti@2.4.2)
expect-type:
specifier: 'catalog:'
version: 1.2.1
@@ -360,7 +360,7 @@ importers:
version: 0.6.8
oxc-transform:
specifier: 'catalog:'
- version: 0.65.0
+ version: 0.68.1
pkg-types:
specifier: 'catalog:'
version: 2.1.0
@@ -381,34 +381,34 @@ importers:
version: 1.0.0-beta.8(typescript@5.8.3)
rollup:
specifier: 'catalog:'
- version: 4.40.0
+ version: 4.40.2
rollup-plugin-dts:
specifier: 'catalog:'
- version: 6.2.1(rollup@4.40.0)(typescript@5.8.3)
+ version: 6.2.1(rollup@4.40.2)(typescript@5.8.3)
taze:
specifier: 'catalog:'
- version: 19.0.4
+ version: 19.1.0
tsup:
specifier: 'catalog:'
- version: 8.4.0(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ version: 8.4.0(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
tsx:
specifier: 'catalog:'
- version: 4.19.3
+ version: 4.19.4
typescript:
specifier: 'catalog:'
version: 5.8.3
unocss:
specifier: 'catalog:'
- version: 66.1.0-beta.12(@unocss/webpack@66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3)))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 66.1.1(@unocss/webpack@66.1.1(webpack@5.99.8(esbuild@0.25.4)))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
unplugin:
specifier: 'catalog:'
version: 2.3.2
unplugin-isolated-decl:
specifier: 'catalog:'
- version: 0.13.9(typescript@5.8.3)
+ version: 0.13.11(typescript@5.8.3)
unplugin-macros:
specifier: 'catalog:'
- version: 0.16.3(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ version: 0.16.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
unplugin-quansync:
specifier: 'catalog:'
version: 0.3.6(quansync@0.2.10)
@@ -420,10 +420,10 @@ importers:
version: 0.4.4
vite:
specifier: 'catalog:'
- version: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vitest:
specifier: 'catalog:'
- version: 3.1.2(@types/debug@4.1.12)(@types/node@22.14.1)(@vitest/ui@3.1.2)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ version: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(@vitest/ui@3.1.3)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue:
specifier: 'catalog:'
version: 3.5.13(typescript@5.8.3)
@@ -435,7 +435,7 @@ importers:
version: 2.2.8(typescript@5.8.3)
webpack:
specifier: 'catalog:'
- version: 5.99.6(esbuild@0.25.3)
+ version: 5.99.8(esbuild@0.25.4)
docs:
dependencies:
@@ -443,8 +443,8 @@ importers:
specifier: 'catalog:'
version: 3.5.3
shiki:
- specifier: ^3.3.0
- version: 3.3.0
+ specifier: ^3.4.0
+ version: 3.4.0
devDependencies:
'@iconify-json/logos':
specifier: 'catalog:'
@@ -454,40 +454,40 @@ importers:
version: 1.2.5
'@nolebase/vitepress-plugin-enhanced-mark':
specifier: 'catalog:'
- version: 2.16.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))
+ version: 2.17.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))
'@nolebase/vitepress-plugin-enhanced-readabilities':
specifier: 'catalog:'
- version: 2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))
+ version: 2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))
'@nolebase/vitepress-plugin-git-changelog':
specifier: 'catalog:'
- version: 2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))
+ version: 2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))
'@nolebase/vitepress-plugin-highlight-targeted-heading':
specifier: 'catalog:'
- version: 2.16.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))
+ version: 2.17.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))
'@shikijs/vitepress-twoslash':
specifier: 'catalog:'
- version: 3.3.0(@nuxt/kit@3.16.2(magicast@0.3.5))(typescript@5.8.3)
+ version: 3.4.0(@nuxt/kit@3.17.2(magicast@0.3.5))(typescript@5.8.3)
'@stylexjs/stylex':
specifier: 'catalog:'
version: 0.12.0
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 4.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 4.1.2(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
'@vueuse/core':
specifier: 'catalog:'
version: 13.1.0(vue@3.5.13(typescript@5.8.3))
vite-plugin-vue-devtools:
specifier: 'catalog:'
- version: 7.7.5(@nuxt/kit@3.16.2(magicast@0.3.5))(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 7.7.6(@nuxt/kit@3.17.2(magicast@0.3.5))(rollup@4.40.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
vitepress:
specifier: 'catalog:'
- version: 2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ version: 2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
vitepress-plugin-group-icons:
specifier: 'catalog:'
version: 1.5.2
vitepress-plugin-llms:
specifier: 'catalog:'
- version: 1.1.0
+ version: 1.1.3
vue:
specifier: 'catalog:'
version: 3.5.13(typescript@5.8.3)
@@ -515,10 +515,10 @@ importers:
devDependencies:
'@vitejs/plugin-vue':
specifier: ^5.2.3
- version: 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
astro:
specifier: 'catalog:'
- version: 5.7.5(@types/node@22.14.1)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ version: 5.7.12(@types/node@22.15.17)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
packages/better-define:
dependencies:
@@ -564,7 +564,7 @@ importers:
version: 3.5.13
ast-kit:
specifier: 'catalog:'
- version: 1.4.2
+ version: 1.4.3
local-pkg:
specifier: 'catalog:'
version: 1.1.1
@@ -577,10 +577,10 @@ importers:
devDependencies:
'@babel/parser':
specifier: 'catalog:'
- version: 7.27.0
+ version: 7.27.2
'@vitejs/plugin-vue':
specifier: ^5.2.3
- version: 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
packages/config:
dependencies:
@@ -822,28 +822,28 @@ importers:
devDependencies:
'@unocss/reset':
specifier: 'catalog:'
- version: 66.1.0-beta.12
+ version: 66.1.1
'@vitejs/plugin-vue':
specifier: ^5.2.3
- version: 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
get-port:
specifier: 'catalog:'
version: 7.1.0
unocss:
specifier: 'catalog:'
- version: 66.1.0-beta.12(@unocss/webpack@66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3)))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 66.1.1(@unocss/webpack@66.1.1(webpack@5.99.8(esbuild@0.25.4)))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
vite:
specifier: 'catalog:'
- version: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vite-plugin-inspect:
specifier: 'catalog:'
- version: 11.0.1(@nuxt/kit@3.16.2(magicast@0.3.5))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ version: 11.0.1(@nuxt/kit@3.17.2(magicast@0.3.5))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
packages/eslint-config:
devDependencies:
eslint:
specifier: 'catalog:'
- version: 9.25.1(jiti@2.4.2)
+ version: 9.26.0(jiti@2.4.2)
packages/export-expose:
dependencies:
@@ -1002,7 +1002,7 @@ importers:
version: 2.3.2
unplugin-combine:
specifier: 'catalog:'
- version: 1.2.1(@rspack/core@1.3.5(@swc/helpers@0.5.17))(esbuild@0.25.3)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(unplugin@2.3.2)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(webpack@5.99.6(esbuild@0.25.3))
+ version: 2.0.0(@rspack/core@1.3.9(@swc/helpers@0.5.17))(esbuild@0.25.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(unplugin@2.3.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(webpack@5.99.8(esbuild@0.25.4))
unplugin-vue-define-options:
specifier: workspace:*
version: link:../define-options
@@ -1031,7 +1031,7 @@ importers:
dependencies:
'@nuxt/kit':
specifier: 'catalog:'
- version: 3.16.2(magicast@0.3.5)
+ version: 3.17.2(magicast@0.3.5)
'@vue-macros/common':
specifier: workspace:*
version: link:../common
@@ -1041,10 +1041,10 @@ importers:
devDependencies:
'@nuxt/devtools':
specifier: 'catalog:'
- version: 2.4.0(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 2.4.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
'@nuxt/schema':
specifier: 'catalog:'
- version: 3.16.2
+ version: 3.17.2
'@vue/language-core':
specifier: 2.2.8
version: 2.2.8(typescript@5.8.3)
@@ -1053,7 +1053,7 @@ importers:
dependencies:
'@babel/parser':
specifier: 'catalog:'
- version: 7.27.0
+ version: 7.27.2
'@vue-macros/common':
specifier: workspace:*
version: link:../common
@@ -1160,29 +1160,29 @@ importers:
dependencies:
'@rollup/plugin-json':
specifier: 'catalog:'
- version: 6.1.0(rollup@4.40.0)
+ version: 6.1.0(rollup@4.40.2)
'@rollup/plugin-node-resolve':
specifier: 'catalog:'
- version: 16.0.1(rollup@4.40.0)
+ version: 16.0.1(rollup@4.40.2)
'@sxzz/test-utils':
specifier: 'catalog:'
- version: 0.5.5(esbuild@0.25.3)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(vitest@3.1.2)
+ version: 0.5.6(esbuild@0.25.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(vitest@3.1.3)
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 4.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 4.1.2(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
rollup:
specifier: 'catalog:'
- version: 4.40.0
+ version: 4.40.2
unplugin-oxc:
specifier: 'catalog:'
- version: 0.3.5
+ version: 0.3.7
unplugin-vue:
specifier: 'catalog:'
- version: 6.1.0(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
+ version: 6.2.0(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
devDependencies:
vite:
specifier: 'catalog:'
- version: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue:
specifier: 'catalog:'
version: 3.5.13(typescript@5.8.3)
@@ -1212,7 +1212,7 @@ importers:
version: 0.4.1
ts-macro:
specifier: 'catalog:'
- version: 0.1.25(typescript@5.8.3)
+ version: 0.1.27(typescript@5.8.3)
devDependencies:
'@vue/compiler-dom':
specifier: 'catalog:'
@@ -1228,7 +1228,7 @@ importers:
dependencies:
'@astrojs/vue':
specifier: 'catalog:'
- version: 5.0.11(@types/node@22.14.1)(astro@5.7.5(@types/node@22.14.1)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
+ version: 5.0.13(@types/node@22.15.17)(astro@5.7.12(@types/node@22.15.17)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
'@vue-macros/astro':
specifier: workspace:*
version: link:../../packages/astro
@@ -1237,7 +1237,7 @@ importers:
version: 13.1.0(vue@3.5.13(typescript@5.8.3))
astro:
specifier: 'catalog:'
- version: 5.7.5(@types/node@22.14.1)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ version: 5.7.12(@types/node@22.15.17)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
vue:
specifier: 'catalog:'
version: 3.5.13(typescript@5.8.3)
@@ -1253,13 +1253,13 @@ importers:
devDependencies:
'@nuxt/devtools':
specifier: 'catalog:'
- version: 2.4.0(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 2.4.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
'@unocss/nuxt':
specifier: 'catalog:'
- version: 66.1.0-beta.12(magicast@0.3.5)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))(webpack@5.99.6(esbuild@0.25.3))
+ version: 66.1.1(magicast@0.3.5)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))(webpack@5.99.8(esbuild@0.25.4))
nuxt:
specifier: 'catalog:'
- version: 3.16.2(@parcel/watcher@2.5.1)(@types/node@22.14.1)(db0@0.3.2)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3))(yaml@2.7.1)
+ version: 3.17.2(@parcel/watcher@2.5.1)(@types/node@22.15.17)(db0@0.3.2)(eslint@9.26.0(jiti@2.4.2))(ioredis@5.6.1)(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3))(yaml@2.7.1)
quasar:
specifier: 'catalog:'
version: 2.18.1
@@ -1278,52 +1278,52 @@ importers:
devDependencies:
'@rollup/plugin-commonjs':
specifier: 'catalog:'
- version: 28.0.3(rollup@4.40.0)
+ version: 28.0.3(rollup@4.40.2)
'@rollup/plugin-node-resolve':
specifier: 'catalog:'
- version: 16.0.1(rollup@4.40.0)
+ version: 16.0.1(rollup@4.40.2)
'@stylexjs/stylex':
specifier: 'catalog:'
version: 0.12.0
'@vitejs/plugin-vue':
specifier: ^5.2.3
- version: 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 4.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 4.1.2(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
esbuild:
- specifier: ^0.25.3
- version: 0.25.3
+ specifier: ^0.25.4
+ version: 0.25.4
rollup:
specifier: 'catalog:'
- version: 4.40.0
+ version: 4.40.2
type-fest:
specifier: 'catalog:'
- version: 4.40.0
+ version: 4.41.0
typescript:
specifier: 'catalog:'
version: 5.8.3
unocss:
specifier: 'catalog:'
- version: 66.1.0-beta.12(@unocss/webpack@66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3)))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ version: 66.1.1(@unocss/webpack@66.1.1(webpack@5.99.8(esbuild@0.25.4)))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
unplugin-oxc:
specifier: 'catalog:'
- version: 0.3.5
+ version: 0.3.7
unplugin-vue:
specifier: 'catalog:'
- version: 6.1.0(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
+ version: 6.2.0(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
vite:
specifier: 'catalog:'
- version: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vite-hyper-config:
specifier: 'catalog:'
- version: 0.6.1(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(yaml@2.7.1)
+ version: 0.6.1(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(yaml@2.7.1)
vite-plugin-inspect:
specifier: 'catalog:'
- version: 11.0.1(@nuxt/kit@3.16.2(magicast@0.3.5))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ version: 11.0.1(@nuxt/kit@3.17.2(magicast@0.3.5))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
vite-plugin-stylex:
specifier: 'catalog:'
- version: 0.13.0(@stylexjs/stylex@0.12.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ version: 0.13.0(@stylexjs/stylex@0.12.0)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
vue-macros:
specifier: workspace:*
version: link:../../packages/macros
@@ -1353,64 +1353,64 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.23.4':
- resolution: {integrity: sha512-WIMT2Kxy+FFWXWQxIU8QgbTioL+SGE24zhpj0kipG4uQbzXwONaWt7ffaYLjfge3gcGSgJVv+1VlahVckafluQ==}
+ '@algolia/client-abtesting@5.24.0':
+ resolution: {integrity: sha512-pNTIB5YqVVwu6UogvdX8TqsRZENaflqMMjdY7/XIPMNGrBoNH9tewINLI7+qc9tIaOLcAp3ZldqoEwAihZZ3ig==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.23.4':
- resolution: {integrity: sha512-4B9gChENsQA9kFmFlb+x3YhBz2Gx3vSsm81FHI1yJ3fn2zlxREHmfrjyqYoMunsU7BybT/o5Nb7ccCbm/vfseA==}
+ '@algolia/client-analytics@5.24.0':
+ resolution: {integrity: sha512-IF+r9RRQsIf0ylIBNFxo7c6hDxxuhIfIbffhBXEF1HD13rjhP5AVfiaea9RzbsAZoySkm318plDpH/nlGIjbRA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.23.4':
- resolution: {integrity: sha512-bsj0lwU2ytiWLtl7sPunr+oLe+0YJql9FozJln5BnIiqfKOaseSDdV42060vUy+D4373f2XBI009K/rm2IXYMA==}
+ '@algolia/client-common@5.24.0':
+ resolution: {integrity: sha512-p8K6tiXQTebRBxbrzWIfGCvfkT+Umml+2lzI92acZjHsvl6KYH6igOfVstKqXJRei9pvRzEEvVDNDLXDVleGTA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.23.4':
- resolution: {integrity: sha512-XSCtAYvJ/hnfDHfRVMbBH0dayR+2ofVZy3jf5qyifjguC6rwxDsSdQvXpT0QFVyG+h8UPGtDhMPoUIng4wIcZA==}
+ '@algolia/client-insights@5.24.0':
+ resolution: {integrity: sha512-jOHF0+tixR3IZJMhZPquFNdCVPzwzzXoiqVsbTvfKojeaY6ZXybgUiTSB8JNX+YpsUT8Ebhu3UvRy4mw2PbEzw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.23.4':
- resolution: {integrity: sha512-l/0QvqgRFFOf7BnKSJ3myd1WbDr86ftVaa3PQwlsNh7IpIHmvVcT83Bi5zlORozVGMwaKfyPZo6O48PZELsOeA==}
+ '@algolia/client-personalization@5.24.0':
+ resolution: {integrity: sha512-Fx/Fp6d8UmDBHecTt0XYF8C9TAaA3qeCQortfGSZzWp4gVmtrUCFNZ1SUwb8ULREnO9DanVrM5hGE8R8C4zZTQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.23.4':
- resolution: {integrity: sha512-TB0htrDgVacVGtPDyENoM6VIeYqR+pMsDovW94dfi2JoaRxfqu/tYmLpvgWcOknP6wLbr8bA+G7t/NiGksNAwQ==}
+ '@algolia/client-query-suggestions@5.24.0':
+ resolution: {integrity: sha512-F8ypOedSMhz6W7zuT5O1SXXsdXSOVhY2U6GkRbYk/mzrhs3jWFR3uQIfeQVWmsJjUwIGZmPoAr9E+T/Zm2M4wA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.23.4':
- resolution: {integrity: sha512-uBGo6KwUP6z+u6HZWRui8UJClS7fgUIAiYd1prUqCbkzDiCngTOzxaJbEvrdkK0hGCQtnPDiuNhC5MhtVNN4Eg==}
+ '@algolia/client-search@5.24.0':
+ resolution: {integrity: sha512-k+nuciQuq7WERNNE+hsx3DX636zIy+9R4xdtvW3PANT2a2BDGOv3fv2mta8+QUMcVTVcGe/Mo3QCb4pc1HNoxA==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.23.4':
- resolution: {integrity: sha512-Si6rFuGnSeEUPU9QchYvbknvEIyCRK7nkeaPVQdZpABU7m4V/tsiWdHmjVodtx3h20VZivJdHeQO9XbHxBOcCw==}
+ '@algolia/ingestion@1.24.0':
+ resolution: {integrity: sha512-/lqVxmrvwoA+OyVK4XLMdz/PJaCTW4qYchX1AZ+98fdnH3K6XM/kMydQLfP0bUNGBQbmVrF88MqhqZRnZEn/MA==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.23.4':
- resolution: {integrity: sha512-EXGoVVTshraqPJgr5cMd1fq7Jm71Ew6MpGCEaxI5PErBpJAmKdtjRIzs6JOGKHRaWLi+jdbJPYc2y8RN4qcx5Q==}
+ '@algolia/monitoring@1.24.0':
+ resolution: {integrity: sha512-cRisDXQJhvfZCXL4hD22qca2CmW52TniOx6L7pvkaBDx0oQk1k9o+3w11fgfcCG+47OndMeNx5CMpu+K+COMzg==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.23.4':
- resolution: {integrity: sha512-1t6glwKVCkjvBNlng2itTf8fwaLSqkL4JaMENgR3WTGR8mmW2akocUy/ZYSQcG4TcR7qu4zW2UMGAwLoWoflgQ==}
+ '@algolia/recommend@5.24.0':
+ resolution: {integrity: sha512-JTMz0JqN2gidvKa2QCF/rMe8LNtdHaght03px2cluZaZfBRYy8TgHgkCeBspKKvV/abWJwl7J0FzWThCshqT3w==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.23.4':
- resolution: {integrity: sha512-UUuizcgc5+VSY8hqzDFVdJ3Wcto03lpbFRGPgW12pHTlUQHUTADtIpIhkLLOZRCjXmCVhtr97Z+eR6LcRYXa3Q==}
+ '@algolia/requester-browser-xhr@5.24.0':
+ resolution: {integrity: sha512-B2Gc+iSxct1WSza5CF6AgfNgmLvVb61d5bqmIWUZixtJIhyAC6lSQZuF+nvt+lmKhQwuY2gYjGGClil8onQvKQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.23.4':
- resolution: {integrity: sha512-UhDg6elsek6NnV5z4VG1qMwR6vbp+rTMBEnl/v4hUyXQazU+CNdYkl++cpdmLwGI/7nXc28xtZiL90Es3I7viQ==}
+ '@algolia/requester-fetch@5.24.0':
+ resolution: {integrity: sha512-6E5+hliqGc5w8ZbyTAQ+C3IGLZ/GiX623Jl2bgHA974RPyFWzVSj4rKqkboUAxQmrFY7Z02ybJWVZS5OhPQocA==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.23.4':
- resolution: {integrity: sha512-jXGzGBRUS0oywQwnaCA6mMDJO7LoC3dYSLsyNfIqxDR4SNGLhtg3je0Y31lc24OA4nYyKAYgVLtjfrpcpsWShg==}
+ '@algolia/requester-node-http@5.24.0':
+ resolution: {integrity: sha512-zM+nnqZpiQj20PyAh6uvgdSz+hD7Rj7UfAZwizqNP+bLvcbGXZwABERobuilkCQqyDBBH4uv0yqIcPRl8dSBEg==}
engines: {node: '>= 14.0.0'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/install-pkg@1.0.0':
- resolution: {integrity: sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==}
+ '@antfu/install-pkg@1.1.0':
+ resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
'@antfu/ni@24.3.0':
resolution: {integrity: sha512-wBSav4mBxvHEW9RbdSo1SWLQ6MAlT0Dc423weC58yOWqW4OcMvtnNDdDrxOZeJ88fEIyPK93gDUWIelBxzSf8g==}
@@ -1422,8 +1422,8 @@ packages:
'@antfu/utils@8.1.1':
resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==}
- '@astrojs/compiler@2.11.0':
- resolution: {integrity: sha512-zZOO7i+JhojO8qmlyR/URui6LyfHJY6m+L9nwyX5GiKD78YoRaZ5tzz6X0fkl+5bD3uwlDHayf6Oe8Fu36RKNg==}
+ '@astrojs/compiler@2.12.0':
+ resolution: {integrity: sha512-7bCjW6tVDpUurQLeKBUN9tZ5kSv5qYrGmcn0sG0IwacL7isR2ZbyyA3AdZ4uxsuUFOS2SlgReTH7wkxO6zpqWA==}
'@astrojs/internal-helpers@0.6.1':
resolution: {integrity: sha512-l5Pqf6uZu31aG+3Lv8nl/3s4DbUzdlxTWDof4pEpto6GUJNhhCbelVi9dEyurOVyqaelwmS9oSyOWOENSfgo9A==}
@@ -1439,116 +1439,116 @@ packages:
resolution: {integrity: sha512-SSVM820Jqc6wjsn7qYfV9qfeQvePtVc1nSofhyap7l0/iakUKywj3hfy3UJAOV4sGV4Q/u450RD4AaCaFvNPlg==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
- '@astrojs/vue@5.0.11':
- resolution: {integrity: sha512-+K0oW8reSlc07coWcvXSTW2m5iWaDwiX+zaRnRkQb0U2oL9DqvJLyGQBv1LLmt+qqIiykF0Zt4TVu3+jc+SBmg==}
+ '@astrojs/vue@5.0.13':
+ resolution: {integrity: sha512-aM5ekWc/8rXiLtCy4OKXwel5gjnKpl647O/yNtEji8g6bVcec4aetE/KNWkYU6KU57SAsOlINeCDWHiIyqmz6Q==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
peerDependencies:
astro: ^5.0.0
vue: ^3.2.30
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ '@babel/compat-data@7.27.2':
+ resolution: {integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.10':
- resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ '@babel/core@7.27.1':
+ resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.27.0':
- resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
+ '@babel/generator@7.27.1':
+ resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.9':
- resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ '@babel/helper-annotate-as-pure@7.27.1':
+ resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.0':
- resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.27.0':
- resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
+ '@babel/helper-create-class-features-plugin@7.27.1':
+ resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-member-expression-to-functions@7.25.9':
- resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ '@babel/helper-module-transforms@7.27.1':
+ resolution: {integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.9':
- resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.26.5':
- resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-replace-supers@7.26.5':
- resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
+ '@babel/helper-replace-supers@7.27.1':
+ resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.27.0':
- resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
+ '@babel/helpers@7.27.1':
+ resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.27.0':
- resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
+ '@babel/parser@7.27.2':
+ resolution: {integrity: sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-proposal-decorators@7.25.9':
- resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
+ '@babel/plugin-proposal-decorators@7.27.1':
+ resolution: {integrity: sha512-DTxe4LBPrtFdsWzgpmbBKevg3e9PBy+dXRt19kSbucbZvL2uqtdqwwpluL1jfxYE0wIDTFp1nTy/q6gNLsxXrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.9':
- resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
+ '@babel/plugin-syntax-decorators@7.27.1':
+ resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.26.0':
- resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==}
+ '@babel/plugin-syntax-flow@7.27.1':
+ resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.26.0':
- resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ '@babel/plugin-syntax-import-attributes@7.27.1':
+ resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1558,34 +1558,34 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.9':
- resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
+ '@babel/plugin-syntax-jsx@7.27.1':
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.9':
- resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ '@babel/plugin-syntax-typescript@7.27.1':
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.27.0':
- resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==}
+ '@babel/plugin-transform-typescript@7.27.1':
+ resolution: {integrity: sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/template@7.27.0':
- resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.27.0':
- resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
+ '@babel/traverse@7.27.1':
+ resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.27.0':
- resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
+ '@babel/types@7.27.1':
+ resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@1.0.2':
@@ -1599,29 +1599,29 @@ packages:
resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==}
engines: {node: '>=18.0.0'}
- '@cspell/cspell-bundled-dicts@8.19.2':
- resolution: {integrity: sha512-17yxicBRJj/00KlZ9y3fziuY3Y8neK2PA+wzf/NhnyA6AhU60TjLGj2yocKtlg8TYBeQK2kRiKq/2Uy0tv1RKg==}
- engines: {node: '>=18'}
+ '@cspell/cspell-bundled-dicts@9.0.1':
+ resolution: {integrity: sha512-h7gTqg0VF4N8VhOPk66XewuSsT56OP2ujgxtAyYQ4H+NuYd3HMfS0h/I3/y9uBhllwOEamaeAzYhc5JF/qIrsQ==}
+ engines: {node: '>=20'}
- '@cspell/cspell-json-reporter@8.19.2':
- resolution: {integrity: sha512-vW7mybZi5TN0ejB4XY2hpXT0XSDiUduN69Gn+WZtNZYeLV3NWIH/RtzgT7VDGyKUadUeEvbemH3MdW34cCuZjA==}
- engines: {node: '>=18'}
+ '@cspell/cspell-json-reporter@9.0.1':
+ resolution: {integrity: sha512-Rpn7Tuq9t8bZpXZFV43NkhCl0LaPDJZSON4/JFxGbOcH16ryXfrx7oObUTIIyxSxO3fGkzaJZHIwGibRJSsbNQ==}
+ engines: {node: '>=20'}
- '@cspell/cspell-pipe@8.19.2':
- resolution: {integrity: sha512-UF9s/bph/ELak6ZDEox9SbvPGU0giZ10jISKkR65MDg3nO7TQxm8TQB4PuNfwrt7Eybm+P10XroeXWfW5BfFmA==}
- engines: {node: '>=18'}
+ '@cspell/cspell-pipe@9.0.1':
+ resolution: {integrity: sha512-bhFcvF2a8KYKVh/OebCfJ8LFw5GYHyUsUjAbxnznTBrYOFSIclDjwUwT29yVDXwnQkJkB6Px5Y9e2VvtFizVFg==}
+ engines: {node: '>=20'}
- '@cspell/cspell-resolver@8.19.2':
- resolution: {integrity: sha512-OWm3DWJXbFKpzETmzHXQ6cu7xrOoctU2BuqeRaR2nHHmuHLBEnOeS6OOQeYfWg4vTO5uGnFblWpCBYxFdny08Q==}
- engines: {node: '>=18'}
+ '@cspell/cspell-resolver@9.0.1':
+ resolution: {integrity: sha512-AhIXAhX1qt7Y3EyiP/5rAk7Ow7DJpAyB44wPbfdF9p1vhnk6oQ7RslnD3G6S9o/vNxZ0DWFPREMWx19J/3c+hw==}
+ engines: {node: '>=20'}
- '@cspell/cspell-service-bus@8.19.2':
- resolution: {integrity: sha512-+krdoByfZGMu7dMue4hMqRTJ/R+Lgzvz0fE9WhVdXhq6TB0EmR/y1b32fQ8XDfZQnOGpg+ZWiVbvAJp1QYmvuQ==}
- engines: {node: '>=18'}
+ '@cspell/cspell-service-bus@9.0.1':
+ resolution: {integrity: sha512-DoW6hLkFIO3BXePtUYQEax3FTH9fkwCUbf6qphAEXnr4PjoyPZsgBhR6iCrZd4DyhuFiRvK3Cgpq2o3O0NdODQ==}
+ engines: {node: '>=20'}
- '@cspell/cspell-types@8.19.2':
- resolution: {integrity: sha512-nmaxkoRZlHwMkUyNBHMT+vHaSUoCphS1DGAlfdkAt/vft8aisqFuH75hzcI52L4B1T8k/UYjn9BBwV1nQb14Ng==}
- engines: {node: '>=18'}
+ '@cspell/cspell-types@9.0.1':
+ resolution: {integrity: sha512-8FRmvyV1AYEepJB3J7jji1ZYG9yOK0eYr4WuUVPfUJa6N3HyeZjWKhxbVvqedmEI74f5Ls3cQKHY1T2Yvqk/ag==}
+ engines: {node: '>=20'}
'@cspell/dict-ada@4.1.0':
resolution: {integrity: sha512-7SvmhmX170gyPd+uHXrfmqJBY5qLcCX8kTGURPVeGxmt8XNXT75uu9rnZO+jwrfuU2EimNoArdVy5GZRGljGNg==}
@@ -1635,8 +1635,8 @@ packages:
'@cspell/dict-bash@4.2.0':
resolution: {integrity: sha512-HOyOS+4AbCArZHs/wMxX/apRkjxg6NDWdt0jF9i9XkvJQUltMwEhyA2TWYjQ0kssBsnof+9amax2lhiZnh3kCg==}
- '@cspell/dict-companies@3.1.15':
- resolution: {integrity: sha512-vnGYTJFrqM9HdtgpZFOThFTjlPyJWqPi0eidMKyZxMKTHhP7yg6mD5X9WPEPvfiysmJYMnA6KKYQEBqoKFPU9g==}
+ '@cspell/dict-companies@3.2.1':
+ resolution: {integrity: sha512-ryaeJ1KhTTKL4mtinMtKn8wxk6/tqD4vX5tFP+Hg89SiIXmbMk5vZZwVf+eyGUWJOyw5A1CVj9EIWecgoi+jYQ==}
'@cspell/dict-cpp@6.0.8':
resolution: {integrity: sha512-BzurRZilWqaJt32Gif6/yCCPi+FtrchjmnehVEIFzbWyeBd/VOUw77IwrEzehZsu5cRU91yPWuWp5fUsKfDAXA==}
@@ -1659,8 +1659,8 @@ packages:
'@cspell/dict-django@4.1.4':
resolution: {integrity: sha512-fX38eUoPvytZ/2GA+g4bbdUtCMGNFSLbdJJPKX2vbewIQGfgSFJKY56vvcHJKAvw7FopjvgyS/98Ta9WN1gckg==}
- '@cspell/dict-docker@1.1.13':
- resolution: {integrity: sha512-85X+ZC/CPT3ie26DcfeMFkZSNuhS8DlAqPXzAjilHtGE/Nj+QnS3jyBz0spDJOJrjh8wx1+ro2oCK98sbVcztw==}
+ '@cspell/dict-docker@1.1.14':
+ resolution: {integrity: sha512-p6Qz5mokvcosTpDlgSUREdSbZ10mBL3ndgCdEKMqjCSZJFdfxRdNdjrGER3lQ6LMq5jGr1r7nGXA0gvUJK80nw==}
'@cspell/dict-dotnet@5.0.9':
resolution: {integrity: sha512-JGD6RJW5sHtO5lfiJl11a5DpPN6eKSz5M1YBa1I76j4dDOIqgZB6rQexlDlK1DH9B06X4GdDQwdBfnpAB0r2uQ==}
@@ -1668,17 +1668,17 @@ packages:
'@cspell/dict-elixir@4.0.7':
resolution: {integrity: sha512-MAUqlMw73mgtSdxvbAvyRlvc3bYnrDqXQrx5K9SwW8F7fRYf9V4vWYFULh+UWwwkqkhX9w03ZqFYRTdkFku6uA==}
- '@cspell/dict-en-common-misspellings@2.0.10':
- resolution: {integrity: sha512-80mXJLtr0tVEtzowrI7ycVae/ULAYImZUlr0kUTpa8i57AUk7Zy3pYBs44EYIKW7ZC9AHu4Qjjfq4vriAtyTDQ==}
+ '@cspell/dict-en-common-misspellings@2.0.11':
+ resolution: {integrity: sha512-xFQjeg0wFHh9sFhshpJ+5BzWR1m9Vu8pD0CGPkwZLK9oii8AD8RXNchabLKy/O5VTLwyqPOi9qpyp1cxm3US4Q==}
- '@cspell/dict-en-gb@1.1.33':
- resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==}
+ '@cspell/dict-en-gb-mit@3.0.6':
+ resolution: {integrity: sha512-QYDwuXi9Yh+AvU1omhz8sWX+A1SxWI3zeK1HdGfTrICZavhp8xxcQGTa5zxTTFRCcQc483YzUH2Dl+6Zd50tJg==}
- '@cspell/dict-en_us@4.4.3':
- resolution: {integrity: sha512-KnsS19kL5lYEk2P9xGNwvZF5ZbDYv1Tkv4BKIx4n4jKlgUj9iHv7L0Q+2cCvllKDGjuP715G/3Rg0McKdHR1Xg==}
+ '@cspell/dict-en_us@4.4.8':
+ resolution: {integrity: sha512-OkNUVuU9Q+Sf827/61YPkk6ya6dSsllzeYniBFqNW9TkoqQXT3vggkgmtCE1aEhSvVctMwxpPYoC8pZgn1TeSA==}
- '@cspell/dict-filetypes@3.0.11':
- resolution: {integrity: sha512-bBtCHZLo7MiSRUqx5KEiPdGOmXIlDGY+L7SJEtRWZENpAKE+96rT7hj+TUUYWBbCzheqHr0OXZJFEKDgsG/uZg==}
+ '@cspell/dict-filetypes@3.0.12':
+ resolution: {integrity: sha512-+ds5wgNdlUxuJvhg8A1TjuSpalDFGCh7SkANCWvIplg6QZPXL4j83lqxP7PgjHpx7PsBUS7vw0aiHPjZy9BItw==}
'@cspell/dict-flutter@1.1.0':
resolution: {integrity: sha512-3zDeS7zc2p8tr9YH9tfbOEYfopKY/srNsAa+kE3rfBTtQERAZeOhe5yxrnTPoufctXLyuUtcGMUTpxr3dO0iaA==}
@@ -1698,8 +1698,8 @@ packages:
'@cspell/dict-git@3.0.4':
resolution: {integrity: sha512-C44M+m56rYn6QCsLbiKiedyPTMZxlDdEYAsPwwlL5bhMDDzXZ3Ic8OCQIhMbiunhCOJJT+er4URmOmM+sllnjg==}
- '@cspell/dict-golang@6.0.20':
- resolution: {integrity: sha512-b7nd9XXs+apMMzNSWorjirQsbmlwcTC0ViQJU8u+XNose3z0y7oNeEpbTPTVoN1+1sO9aOHuFwfwoOMFCDS14Q==}
+ '@cspell/dict-golang@6.0.21':
+ resolution: {integrity: sha512-D3wG1MWhFx54ySFJ00CS1MVjR4UiBVsOWGIjJ5Av+HamnguqEshxbF9mvy+BX0KqzdLVzwFkoLBs8QeOID56HA==}
'@cspell/dict-google@1.0.8':
resolution: {integrity: sha512-BnMHgcEeaLyloPmBs8phCqprI+4r2Jb8rni011A8hE+7FNk7FmLE3kiwxLFrcZnnb7eqM0agW4zUaNoB0P+z8A==}
@@ -1751,8 +1751,8 @@ packages:
'@cspell/dict-node@5.0.7':
resolution: {integrity: sha512-ZaPpBsHGQCqUyFPKLyCNUH2qzolDRm1/901IO8e7btk7bEDF56DN82VD43gPvD4HWz3yLs/WkcLa01KYAJpnOw==}
- '@cspell/dict-npm@5.2.1':
- resolution: {integrity: sha512-aqcit8e/Hsnsmd2QoDDAaai+l80bQItwLggmlio/e5NTAfUu7qIVmx+/VFtUlXQH6sMKp+aAvxPC3K8tH86+qg==}
+ '@cspell/dict-npm@5.2.3':
+ resolution: {integrity: sha512-EdGkCpAq66Mhi9Qldgsr+NvPVL4TdtmdlqDe4VBp0P3n6J0B7b0jT1MlVDIiLR+F1eqBfL0qjfHf0ey1CafeNw==}
'@cspell/dict-php@4.0.14':
resolution: {integrity: sha512-7zur8pyncYZglxNmqsRycOZ6inpDoVd4yFfz1pQRe5xaRWMiK3Km4n0/X/1YMWhh3e3Sl/fQg5Axb2hlN68t1g==}
@@ -1763,8 +1763,8 @@ packages:
'@cspell/dict-public-licenses@2.0.13':
resolution: {integrity: sha512-1Wdp/XH1ieim7CadXYE7YLnUlW0pULEjVl9WEeziZw3EKCAw8ZI8Ih44m4bEa5VNBLnuP5TfqC4iDautAleQzQ==}
- '@cspell/dict-python@4.2.17':
- resolution: {integrity: sha512-xqMKfVc8d7yDaOChFdL2uWAN3Mw9qObB/Zr6t5w1OHbi23gWs7V1lI9d0mXAoqSK6N3mosbum4OIq/FleQDnlw==}
+ '@cspell/dict-python@4.2.18':
+ resolution: {integrity: sha512-hYczHVqZBsck7DzO5LumBLJM119a3F17aj8a7lApnPIS7cmEwnPc2eACNscAHDk7qAo2127oI7axUoFMe9/g1g==}
'@cspell/dict-r@2.1.0':
resolution: {integrity: sha512-k2512wgGG0lTpTYH9w5Wwco+lAMf3Vz7mhqV8+OnalIE7muA0RSuD9tWBjiqLcX8zPvEJr4LdgxVju8Gk3OKyA==}
@@ -1781,8 +1781,8 @@ packages:
'@cspell/dict-shell@1.1.0':
resolution: {integrity: sha512-D/xHXX7T37BJxNRf5JJHsvziFDvh23IF/KvkZXNSh8VqcRdod3BAz9VGHZf6VDqcZXr1VRqIYR3mQ8DSvs3AVQ==}
- '@cspell/dict-software-terms@5.0.5':
- resolution: {integrity: sha512-ZjAOa8FI8/JrxaRqKT3eS7AQXFjU174xxQoKYMkmdwSyNIj7WUCAg10UeLqeMjFVv36zIO0Hm0dD2+Bvn18SLA==}
+ '@cspell/dict-software-terms@5.0.8':
+ resolution: {integrity: sha512-VsJesitvaHZpMgNwHHms3yDsZz7LNToC2HuSAnyt1znn37ribiJF1ty0jWhVQO6fv7K4PM1KsKTJIwqBwc446g==}
'@cspell/dict-sql@2.2.0':
resolution: {integrity: sha512-MUop+d1AHSzXpBvQgQkCiok8Ejzb+nrzyG16E8TvKL2MQeDwnIvMe3bv90eukP6E1HWb+V/MA/4pnq0pcJWKqQ==}
@@ -1802,21 +1802,21 @@ packages:
'@cspell/dict-vue@3.0.4':
resolution: {integrity: sha512-0dPtI0lwHcAgSiQFx8CzvqjdoXROcH+1LyqgROCpBgppommWpVhbQ0eubnKotFEXgpUCONVkeZJ6Ql8NbTEu+w==}
- '@cspell/dynamic-import@8.19.2':
- resolution: {integrity: sha512-Ylsda+IrXhrIlAyGhCbc62tEk8F4MpO3u8llUQtWKhhvqbcxY+waC0d8S9u95egCACTTZIVDyrcxHX1lGg5+mw==}
- engines: {node: '>=18.0'}
+ '@cspell/dynamic-import@9.0.1':
+ resolution: {integrity: sha512-BoWzHwkufo90ubMZUN8Jy4HQYYWFW7psVCdG/4RUgfvVnazkPfLxWBbsPQsLrlIP0utaqei7D9FU0K7r7mpl4A==}
+ engines: {node: '>=20'}
- '@cspell/filetypes@8.19.2':
- resolution: {integrity: sha512-GqS/N0gTcnaAcBOVdWrehI+w6e+TzLSDj+zjW0DFWAbqnFDUOI9+1XtISINzMV6apOrBg8sMmFuaqif3TqvuZw==}
- engines: {node: '>=18'}
+ '@cspell/filetypes@9.0.1':
+ resolution: {integrity: sha512-swZu3ra2AueyjEz/bPsvwFuHGYhjWZBx1K9FSvZA/yDIX5RVr6orQSuf9zvXNFui6Nyk0tudLnn3y9jT0LHk8A==}
+ engines: {node: '>=20'}
- '@cspell/strong-weak-map@8.19.2':
- resolution: {integrity: sha512-W/C6AK+z6sGOfdUsf75S/iLxyJkps8LEI/m9G/+R6RTHF4oyCGzh0JChHdnSjXrb0RpIPQjGOdwJcJOqVn/7/A==}
- engines: {node: '>=18'}
+ '@cspell/strong-weak-map@9.0.1':
+ resolution: {integrity: sha512-u87PWr1xACqs/F3HibZ4Eb0Za/ghWIa6WLvEKV9OaiLfEUQuczbrXPVgHmGr83H0XXWUKy8FvVbWGFmXwiw+gQ==}
+ engines: {node: '>=20'}
- '@cspell/url@8.19.2':
- resolution: {integrity: sha512-B6NzFapXtS4DkGHhW8wGNE7u8v6Y3dMzdbvV2VxD6N0ByEiWqvsB2rW55z8e4fUOlGKLtedrBTFPPFIuSPs4Wg==}
- engines: {node: '>=18.0'}
+ '@cspell/url@9.0.1':
+ resolution: {integrity: sha512-8xaLrsQ742dmwXwS6tjreps3NpSQe6WEZFPQQT2DprVJXGZnfQR8ob0c+kPhD0hu9A6PwShJsRsfh3DQGKCqAw==}
+ engines: {node: '>=20'}
'@docsearch/css@3.9.0':
resolution: {integrity: sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==}
@@ -1858,152 +1858,152 @@ packages:
resolution: {integrity: sha512-+zZymuVLH6zVwXPtCAtC+bDymxmEwEqDftdAK+f407IF1bnX49anIxvBhCA1AqUIfD6egj1jM1vUnSuijjNyYg==}
engines: {node: '>=18'}
- '@esbuild/aix-ppc64@0.25.3':
- resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
+ '@esbuild/aix-ppc64@0.25.4':
+ resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.3':
- resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
+ '@esbuild/android-arm64@0.25.4':
+ resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.3':
- resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
+ '@esbuild/android-arm@0.25.4':
+ resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.3':
- resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
+ '@esbuild/android-x64@0.25.4':
+ resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.3':
- resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
+ '@esbuild/darwin-arm64@0.25.4':
+ resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.3':
- resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
+ '@esbuild/darwin-x64@0.25.4':
+ resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.3':
- resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
+ '@esbuild/freebsd-arm64@0.25.4':
+ resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.3':
- resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
+ '@esbuild/freebsd-x64@0.25.4':
+ resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.3':
- resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
+ '@esbuild/linux-arm64@0.25.4':
+ resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.3':
- resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
+ '@esbuild/linux-arm@0.25.4':
+ resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.3':
- resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
+ '@esbuild/linux-ia32@0.25.4':
+ resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.3':
- resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
+ '@esbuild/linux-loong64@0.25.4':
+ resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.3':
- resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
+ '@esbuild/linux-mips64el@0.25.4':
+ resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.3':
- resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
+ '@esbuild/linux-ppc64@0.25.4':
+ resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.3':
- resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
+ '@esbuild/linux-riscv64@0.25.4':
+ resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.3':
- resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
+ '@esbuild/linux-s390x@0.25.4':
+ resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.3':
- resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
+ '@esbuild/linux-x64@0.25.4':
+ resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.3':
- resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
+ '@esbuild/netbsd-arm64@0.25.4':
+ resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.3':
- resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
+ '@esbuild/netbsd-x64@0.25.4':
+ resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.3':
- resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
+ '@esbuild/openbsd-arm64@0.25.4':
+ resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.3':
- resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
+ '@esbuild/openbsd-x64@0.25.4':
+ resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.25.3':
- resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
+ '@esbuild/sunos-x64@0.25.4':
+ resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.3':
- resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
+ '@esbuild/win32-arm64@0.25.4':
+ resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.3':
- resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
+ '@esbuild/win32-ia32@0.25.4':
+ resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.3':
- resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
+ '@esbuild/win32-x64@0.25.4':
+ resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -2014,8 +2014,8 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- '@eslint-community/eslint-utils@4.6.1':
- resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==}
+ '@eslint-community/eslint-utils@4.7.0':
+ resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -2024,8 +2024,8 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.8':
- resolution: {integrity: sha512-LqCYHdWL/QqKIJuZ/ucMAv8d4luKGs4oCPgpt8mWztQAtPrHfXKQ/XAUc8ljCHAfJCn6SvkpTcGt5Tsh8saowA==}
+ '@eslint/compat@1.2.9':
+ resolution: {integrity: sha512-gCdSY54n7k+driCadyMNv8JSPzYLeDVM/ikZRtvtROBpRdFSkS8W9A82MqsaY7lZuwL0wiapgD0NT1xT0hyJsA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
@@ -2037,8 +2037,8 @@ packages:
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.2.1':
- resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
+ '@eslint/config-helpers@0.2.2':
+ resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.10.0':
@@ -2053,8 +2053,8 @@ packages:
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.25.1':
- resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
+ '@eslint/js@9.26.0':
+ resolution: {integrity: sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/markdown@6.4.0':
@@ -2069,14 +2069,14 @@ packages:
resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@floating-ui/core@1.6.9':
- resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.7.0':
+ resolution: {integrity: sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA==}
'@floating-ui/dom@1.1.1':
resolution: {integrity: sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==}
- '@floating-ui/dom@1.6.13':
- resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.7.0':
+ resolution: {integrity: sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg==}
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
@@ -2100,8 +2100,8 @@ packages:
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
- '@humanwhocodes/retry@0.4.2':
- resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
'@iconify-json/carbon@1.2.8':
@@ -2122,8 +2122,8 @@ packages:
'@iconify-json/simple-icons@1.2.33':
resolution: {integrity: sha512-nL5/UmI9x5PQ/AHv6bOaL2pH6twEdEz4pI89efB/K7HFn5etQnxMtGx9DFlOg/sRA2/yFpX8KXvc95CSDv5bJA==}
- '@iconify-json/vscode-icons@1.2.19':
- resolution: {integrity: sha512-M6Ujx2Ncmr/jfHhLJ+unqaILOJ/wWAkfc84Eh3+e8PccFmB1TS4KwOSyqbawybbqKK7JaaEk5uhFYSFpYOeuOA==}
+ '@iconify-json/vscode-icons@1.2.20':
+ resolution: {integrity: sha512-xuWqr/SrckUoFi6kpSH/NrNGK+CuZ8LNnBY8qkRdkQvHmhirXvwsLfTKHoFndTsOlxfsHahlOLVCCb523kdqMA==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -2289,23 +2289,27 @@ packages:
engines: {node: '>=18'}
hasBin: true
- '@module-federation/error-codes@0.11.2':
- resolution: {integrity: sha512-ik1Qnn0I+WyEdprTck9WGlH41vGsVdUg8cfO+ZM02qOb2cZm5Vu3SlxGAobj6g7uAj0g8yINnd7h7Dci40BxQA==}
+ '@modelcontextprotocol/sdk@1.11.1':
+ resolution: {integrity: sha512-9LfmxKTb1v+vUS1/emSk1f5ePmTLkb9Le9AxOB5T0XM59EUumwcS45z05h7aiZx3GI0Bl7mjb3FMEglYj+acuQ==}
+ engines: {node: '>=18'}
+
+ '@module-federation/error-codes@0.13.1':
+ resolution: {integrity: sha512-azgGDBnFRfqlivHOl96ZjlFUFlukESz2Rnnz/pINiSqoBBNjUE0fcAZP4X6jgrVITuEg90YkruZa7pW9I3m7Uw==}
- '@module-federation/runtime-core@0.11.2':
- resolution: {integrity: sha512-dia5kKybi6MFU0s5PgglJwN27k7n9Sf69Cy5xZ4BWaP0qlaXTsxHKO0PECHNt2Pt8jDdyU29sQ4DwAQfxpnXJQ==}
+ '@module-federation/runtime-core@0.13.1':
+ resolution: {integrity: sha512-TfyKfkSAentKeuvSsAItk8s5tqQSMfIRTPN2e1aoaq/kFhE+7blps719csyWSX5Lg5Es7WXKMsXHy40UgtBtuw==}
- '@module-federation/runtime-tools@0.11.2':
- resolution: {integrity: sha512-4MJTGAxVq6vxQRkTtTlH7Mm9AVqgn0X9kdu+7RsL7T/qU+jeYsbrntN2CWG3GVVA8r5JddXyTI1iJ0VXQZLV1w==}
+ '@module-federation/runtime-tools@0.13.1':
+ resolution: {integrity: sha512-GEF1pxqLc80osIMZmE8j9UKZSaTm2hX2lql8tgIH/O9yK4wnF06k6LL5Ah+wJt+oJv6Dj55ri/MoxMP4SXoPNA==}
- '@module-federation/runtime@0.11.2':
- resolution: {integrity: sha512-Ya9u/L6z2LvhgpqxuKCB7LcigIIRf1BbaxAZIH7mzbq/A7rZtTP7v+73E433jvgiAlbAfPSZkeoYGele6hfRwA==}
+ '@module-federation/runtime@0.13.1':
+ resolution: {integrity: sha512-ZHnYvBquDm49LiHfv6fgagMo/cVJneijNJzfPh6S0CJrPS2Tay1bnTXzy8VA5sdIrESagYPaskKMGIj7YfnPug==}
- '@module-federation/sdk@0.11.2':
- resolution: {integrity: sha512-SBFe5xOamluT900J4AGBx+2/kCH/JbfqXoUwPSAC6PRzb8Y7LB0posnOGzmqYsLZXT37vp3d6AmJDsVoajDqxw==}
+ '@module-federation/sdk@0.13.1':
+ resolution: {integrity: sha512-bmf2FGQ0ymZuxYnw9bIUfhV3y6zDhaqgydEjbl4msObKMLGXZqhse2pTIIxBFpIxR1oONKX/y2FAolDCTlWKiw==}
- '@module-federation/webpack-bundler-runtime@0.11.2':
- resolution: {integrity: sha512-WdwIE6QF+MKs/PdVu0cKPETF743JB9PZ62/qf7Uo3gU4fjsUMc37RnbJZ/qB60EaHHfjwp1v6NnhZw1r4eVsnw==}
+ '@module-federation/webpack-bundler-runtime@0.13.1':
+ resolution: {integrity: sha512-QSuSIGa09S8mthbB1L6xERqrz+AzPlHR6D7RwAzssAc+IHf40U6NiTLPzUqp9mmKDhC5Tm0EISU0ZHNeJpnpBQ==}
'@napi-rs/wasm-runtime@0.2.9':
resolution: {integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==}
@@ -2326,28 +2330,28 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@nolebase/ui@2.16.0':
- resolution: {integrity: sha512-P/Q5ImarXUfgoqk2bV5FFfSVnHPpONd/HhkUaKxyWlL9TkNF+9PDyn/EztplnwBwzfd0sGX9L7wEP/Zd5PY38A==}
+ '@nolebase/ui@2.17.0':
+ resolution: {integrity: sha512-t0zr9FiUMju7W/iL/BzX+JuZZz0UgAC1ZMN4VKAOtRIUaQhPjE3LZMqfOrrsWhKNT8uTY7CVIcIzSulPuAe1og==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
- '@nolebase/vitepress-plugin-enhanced-mark@2.16.0':
- resolution: {integrity: sha512-TKHf7TR14D8WTfEcbhctNIWv4x4R/pQVzP2YU13mccM4tH4FQv4/E4/w1jQ6r6KTQo+cyBhh9zhtELjuH23y1Q==}
+ '@nolebase/vitepress-plugin-enhanced-mark@2.17.0':
+ resolution: {integrity: sha512-dfs6WNJ+8cph2xsoHhSQBoRDVeCRmOLqkhdDOnfoQv9S6E7eTZUsr6M/h3KYr45h8PLnp62jjcI7YB7iw5htkQ==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
- '@nolebase/vitepress-plugin-enhanced-readabilities@2.16.0':
- resolution: {integrity: sha512-taiG848UWFQizhJhbvbcpMo1JjA80aL4InepEcSJ9DxN7lNKJvqIOusSB6TjCBkNt8uY6jijSxjTI1tdec+ecg==}
+ '@nolebase/vitepress-plugin-enhanced-readabilities@2.17.0':
+ resolution: {integrity: sha512-3vSSK/sz9X3pnLFxch7o/WdQ7wOtxun16Jw6OnYxyS7tmGc7oLhR1GJaGBMkGCIkz8RX0Dwic4+HaExWZBPM/A==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
- '@nolebase/vitepress-plugin-git-changelog@2.16.0':
- resolution: {integrity: sha512-ztCK3Jk2UybktWl5O64hPJKsJEG1aqaxRRoI3CeiA3N1xOd+FC6iCHKj/rM6mzeEUqUcYzcj+EZ1YBUAqsfnag==}
+ '@nolebase/vitepress-plugin-git-changelog@2.17.0':
+ resolution: {integrity: sha512-XuJY/rVOltgKvfnjTtkCOTcgNsYPIAlAtUAz3kAmyVs9OQ5/26bBNhmAlcoOm5knQ6jffTTXLqSFQJcpA52Q0Q==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
- '@nolebase/vitepress-plugin-highlight-targeted-heading@2.16.0':
- resolution: {integrity: sha512-PqXllM4hKRKDtzYm0rCLx0C4g9QsOumTNq70XzmW3BvxSuuVS0hgbYAH9rI5KbuvaCQDo34ao095DhG+vXnozA==}
+ '@nolebase/vitepress-plugin-highlight-targeted-heading@2.17.0':
+ resolution: {integrity: sha512-A+QKazShXtwhhDlchSlI9Y8ptNVzbPYurQukgbgmUklA0n1n6hMwStJHPC1+RaD76qYmR/I3D1U6j3NLnHWVrA==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
@@ -2374,12 +2378,12 @@ packages:
peerDependencies:
vite: '>=6.0'
- '@nuxt/kit@3.16.2':
- resolution: {integrity: sha512-K1SAUo2vweTfudKZzjKsZ5YJoxPLTspR5qz5+G61xtZreLpsdpDYfBseqsIAl5VFLJuszeRpWQ01jP9LfQ6Ksw==}
+ '@nuxt/kit@3.17.2':
+ resolution: {integrity: sha512-Mz2Ni8iUwty5LBs3LepUL43rI2xXbuAz3Cqq37L9frOD2QI2tQUtasYaSoKk6U7nvYzuW2z/2b3YOLkMNi/k2w==}
engines: {node: '>=18.12.0'}
- '@nuxt/schema@3.16.2':
- resolution: {integrity: sha512-2HZPM372kuI/uw9VU/hOoYuzv803oZAtyoEKC5dQCQTKAQ293AjypF3WljMXUSReFS/hcbBSgGzYUPHr3Qo+pg==}
+ '@nuxt/schema@3.17.2':
+ resolution: {integrity: sha512-DzmvgqcfIoCkNKXrBU6wpGckIXSxHHU+7OTlE68qNq6y0lVYnUA0Akrn0I8j+n/vFdQTIpJXiRD4dAgcomsBAg==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.6':
@@ -2387,8 +2391,8 @@ packages:
engines: {node: '>=18.12.0'}
hasBin: true
- '@nuxt/vite-builder@3.16.2':
- resolution: {integrity: sha512-HjK3iZb5GAC4hADOkl2ayn2uNUG4K4qizJ7ud4crHLPw6WHPeT/RhB3j7PpsyRftBnHhlZCsL4Gj/i3rmdcVJw==}
+ '@nuxt/vite-builder@3.17.2':
+ resolution: {integrity: sha512-TfKuh7MPjIhlObLNcoNTRk6/s3L6b6Z7hPuJcnrAeh/a9JGH6fmRsKztW5D5mFEN3H3K6viXche8q2ftQEk7CQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
peerDependencies:
vue: ^3.3.4
@@ -2396,253 +2400,315 @@ packages:
'@oslojs/encoding@1.1.0':
resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==}
- '@oxc-minify/binding-darwin-arm64@0.65.0':
- resolution: {integrity: sha512-j72RsjdMOEDmPPHnRBoQ1dCIavYl5Zi4Jj9cmMQu8Ra+tuxd8oGy7lZ/JJ6wn5UdVu4XgT6/4mG9R7y84Th8Bw==}
+ '@oxc-minify/binding-darwin-arm64@0.68.1':
+ resolution: {integrity: sha512-ZTjpDV/NcF7wMh0z8Xn3C3OlSCbthig48z3y4mo5+/rhbFAIyYoz1SbWWioovYHiNIcK9PQ1CrB6TEzyTwnaGA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- '@oxc-minify/binding-darwin-x64@0.65.0':
- resolution: {integrity: sha512-+r17c5AT2ziXKwF3vqme+Bzz5yde2mzZwSxLVJ5ynxHGda2ok5Sz2J33aWnCiyhgqIHMVV1aVW3oTyRBMZRopQ==}
+ '@oxc-minify/binding-darwin-x64@0.68.1':
+ resolution: {integrity: sha512-TK2IIc/W57EocxfyMLWysfSQlJWwqj21QuB5RYCBkWZvRGwBXw6BByaCJaoXpq2To7KC2rNxBJydhmHWT+JQ0Q==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- '@oxc-minify/binding-linux-arm-gnueabihf@0.65.0':
- resolution: {integrity: sha512-GhxeNtgBJiLxSUUSnxWh3B0McK2kG3/OYmQ3tY4xCOPx9XY5Z1Mlw1WyX4wAgptz5qD9aQAUKy/IxOF0KmAXXA==}
+ '@oxc-minify/binding-linux-arm-gnueabihf@0.68.1':
+ resolution: {integrity: sha512-pjszUTEgynOE7FpuAjWiXnxz00tw1E8hxDFMklgZ/gU/tvsfj39LlzLM+LO28p8XYQODh7AWwbo0LeZoIyj05A==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-minify/binding-linux-arm64-gnu@0.65.0':
- resolution: {integrity: sha512-VfdpooHzlCoYmy+23+waccU8Nj8LXPUlX0vtEFNFm9XHe+f8+9fW6z/12Pn08dV1amGynMWznTeH9J6rKSzenw==}
+ '@oxc-minify/binding-linux-arm64-gnu@0.68.1':
+ resolution: {integrity: sha512-St1EAHCwPIPSnVVJ5Nci5hkCn8HKEbEia8oJCK8MgzzjXCn2nwQB0ZqxmIu1DHhqQCD+/zX7/JBhoBgEUfIVCQ==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-minify/binding-linux-arm64-musl@0.65.0':
- resolution: {integrity: sha512-CbCD3yAu8DdfS8ku1VkHxBtC5nVqcs3eVKIuZzQd/vx9qVBuOaCUKU66O8OCiNvsLJ5Hvw1yUZlW4AzBlIzfFA==}
+ '@oxc-minify/binding-linux-arm64-musl@0.68.1':
+ resolution: {integrity: sha512-DKFh53EVLz+9Zg7KTPO69KVoDR4dl5QoX4i4QMjrUW7CYCFy8zKea6se7a01/L9DNx66rJudYlKFuaJ5oFPGMg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-minify/binding-linux-x64-gnu@0.65.0':
- resolution: {integrity: sha512-hrCvr5VYe2NFsNtHifwYCYiCrqD23MSXDm62RHyT5vHMlknx5SXv9e2CWNvW5WR5IR5yofQVTE13Q6L5o+bPfQ==}
+ '@oxc-minify/binding-linux-x64-gnu@0.68.1':
+ resolution: {integrity: sha512-CDalEwTV1VWB7U1mqYUniWQ71WMx1cL3cBG5//5ums0Per61F0qaAUehcSBPQGzLtOPyjd98wK5S2gsNCfP5tA==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-minify/binding-linux-x64-musl@0.65.0':
- resolution: {integrity: sha512-2dKC53AbUUcQUOxaPmaMdEiXthis/HwulclhVuilnw+JjokUsECqejdzNLbpd3SDjEf49R8UC1SnJSpWfAu6IA==}
+ '@oxc-minify/binding-linux-x64-musl@0.68.1':
+ resolution: {integrity: sha512-/87QJu46XWkPtgvPfVviheefNZq7mJu3wMSarj3lzRq2Hm2kJRAgwHmuh0Ftsct3OuoLas09pE4H+V2dt4uq5A==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-minify/binding-wasm32-wasi@0.65.0':
- resolution: {integrity: sha512-F1eaLkFqaH7YhMCB+CSv83ljucs583snORzPVPH8bCAeIh97RbHrK2/A8EjNc3HwBYY0gOj5NP3COWBXb00ssQ==}
+ '@oxc-minify/binding-wasm32-wasi@0.68.1':
+ resolution: {integrity: sha512-7eaHTzetUR0H/jbXIH9EDAJ5NtF7GiqLv81vKXD/pii1yXZbpv+5vuZeryUnpjv4cNWFwr/v+8BJuh4FeuSR4w==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-minify/binding-win32-arm64-msvc@0.65.0':
- resolution: {integrity: sha512-JzX8HhdMUbICLlKHqZaRD+Ik65ghV8J9VMGXcDVmO0faWsZWPZwopFg05kCh4b+MPsZ3otX/JI1mbdWVs6JjWQ==}
+ '@oxc-minify/binding-win32-arm64-msvc@0.68.1':
+ resolution: {integrity: sha512-UmmEElpemF94cz+D/mj7g/jF3Mq0RhVCwqtJfUPw21r8CtY34c4OEOGc2/YcBaT0MpGD7Dul2jQCFoaGrXI2ag==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
- '@oxc-minify/binding-win32-x64-msvc@0.65.0':
- resolution: {integrity: sha512-IuA2xkN0dbhI5LWevKez6tFpT54OJpo/UX7ZHKOaxQDJArEoIhPjZgajJuNurHT+8wtr3EMr0ggySt/AYblBqw==}
+ '@oxc-minify/binding-win32-x64-msvc@0.68.1':
+ resolution: {integrity: sha512-h0q+TEoqzUx94PIamrIBRqFcHJcNMxb3wMi/9yzSyHa13+hSnIhnBz7U8oib87YQOCrLLoUlDpYVfJWMsiHgKA==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
- '@oxc-parser/binding-darwin-arm64@0.65.0':
- resolution: {integrity: sha512-bML5ABR5XLYOF/xtIQLVWhus7j+e00DOUZ5enFVDlYlrCD3n72/FTrSodJGuLXRvqQvsZL42zSe5wWsWCAjGzw==}
+ '@oxc-parser/binding-darwin-arm64@0.68.1':
+ resolution: {integrity: sha512-Y5FBQyPCLsldAZYEd+oZcUboXwpcLf42Lakx3EYtiYDbuK9M3IqBXMGxdM07P4PfGQrKYn6/cC8xAqkVHnbWPw==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- '@oxc-parser/binding-darwin-x64@0.65.0':
- resolution: {integrity: sha512-k6DNe28LjHTem8gjxjMoPye5gTGQQWzQG4oiyiq9qYMhnmAzGFN5m05kymPl3qi2wp0rbwUeWBJglcU9O3AROA==}
+ '@oxc-parser/binding-darwin-x64@0.68.1':
+ resolution: {integrity: sha512-nkiXpEKl8UOhNPdOY5hA2PFq9vQc9xVs7NFu2vUD9eH/j5uYfv8GnNaKkd+v6iH93JwEBxuK5gfwxiiCEMZRyg==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- '@oxc-parser/binding-linux-arm-gnueabihf@0.65.0':
- resolution: {integrity: sha512-VN63Gs/MEdsZ6LZ8vDjp/JY+3i557a/AFny1+z+NWUXSRhrnfsM3OWZBiKcjcKp9kauvDurVlGpAZjYiYKfcTg==}
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.68.1':
+ resolution: {integrity: sha512-38ejU7GP9sOILA82xcF9laJfCiwZWKp96+jeLQMkebZCfQqaGtld/hbJ2yvZ2laLQS3ISRasDemZEJuk/yb6Uw==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-parser/binding-linux-arm64-gnu@0.65.0':
- resolution: {integrity: sha512-cAs9OGhnRb/bzulGK3BdgNcgOeAQa2lXT42zNgtnysTO9lZnxqNMnvWaCwFCC4tL0YA7lfxn1Uf2rSEvysyP1A==}
+ '@oxc-parser/binding-linux-arm64-gnu@0.68.1':
+ resolution: {integrity: sha512-qJK9nzelQqMSLdZbWUpQ8rfSAiH5pgB7rR5OC3/DLbmvhnD+vvuet/67cNzYnGW4pcTzsWzcRTSkmH/b6VcDCA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-parser/binding-linux-arm64-musl@0.65.0':
- resolution: {integrity: sha512-3Rdg11QOir3YH9f3J0Ydo8zRWqmVAvrkAiIc/chRvozOZA+ajXP8fenfMOyuVks6SHvFvkyXnZWqEmhZ5TkfwA==}
+ '@oxc-parser/binding-linux-arm64-musl@0.68.1':
+ resolution: {integrity: sha512-Fd/yP458VG5wit7uku9iEXzl+qfNTuYTVaxfo6EFsBokOf5Xs6Y4LFeKAjtZfb/eCCsc7UY75sAjDyOGnPnNWg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-parser/binding-linux-x64-gnu@0.65.0':
- resolution: {integrity: sha512-eZPtnxBZBe+5wsU3KMHTAnuqwYTIaS+bOX7c0FQZYZBUh00EoAzlgZKiwL2gKuDdTNJ3YEUB735UWs6B7I66uQ==}
+ '@oxc-parser/binding-linux-x64-gnu@0.68.1':
+ resolution: {integrity: sha512-VH7q2GXcFKiecD2eNloB4o8Ho6dUeB92O9bS/GV0+Q/yZdu/l0zWXetaszaCviPHCf8YBQzpOHxzsqgVu0RYqQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-parser/binding-linux-x64-musl@0.65.0':
- resolution: {integrity: sha512-hTsQRUqnbXYTUg+yMfiQ/jMokAW9AtR1jyibrodF4bdF3dYyRJzGpMaLs9TOfHIjWM5xRykZ2br0ajBfgNeZuw==}
+ '@oxc-parser/binding-linux-x64-musl@0.68.1':
+ resolution: {integrity: sha512-35drWZMNp31JL0fjAK10pOfE20xVQXa7/o1NGqSGiZ2Huf4c0OK0TOggw+F7IEwPXpi5qOL6C+apY1zod8299A==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-parser/binding-wasm32-wasi@0.65.0':
- resolution: {integrity: sha512-V9WvM3iwgqohuGnNb01+agI+5TbpexZ55hpXfxl6YKhdjnGkCbV2c0qtaAw18enrjRsU0QeDqZ6SBPfjE0pi5g==}
+ '@oxc-parser/binding-wasm32-wasi@0.68.1':
+ resolution: {integrity: sha512-MkTZeTYEqZm18b1TaLSEuo0MxeAv8MNaKSjEz0GgldV3+lNowMbTLusW/QEgYczx/J9/9Y/oYj36Rja7qmfe1Q==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-parser/binding-win32-arm64-msvc@0.65.0':
- resolution: {integrity: sha512-Q0GvYjgFOYliEvWkr4FjBtERuXSiv0DwLtv8CtKfMIbLWzzzBSvQBx60PVD8BcZDvZBkTgomaijZ+wHcH2tjaQ==}
+ '@oxc-parser/binding-win32-arm64-msvc@0.68.1':
+ resolution: {integrity: sha512-27Mrz18+4l7ZzM5FYSCSXDOR+CfZPkxkDz85jADpOTO1lUxH+wkTZiTBAOYuyoyRYbjQOTiZzkYljXtDgNeeLg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
- '@oxc-parser/binding-win32-x64-msvc@0.65.0':
- resolution: {integrity: sha512-ymVMrxcsNxj8FNkuizoIwl49r5cv3Rmhvw3G3rOi/WqdlZdHi+nZ1PBYaf4rPPHwpijmIY+XnAs0dy1+ynAWtA==}
+ '@oxc-parser/binding-win32-x64-msvc@0.68.1':
+ resolution: {integrity: sha512-TUsmnbG2ysQ5bUSfWdDliDMXqu7KwAxtIkAtO4mzHKgEu5avVbqk26BhSJsEC9JXqWSo13yTYBmMtC498K3GzQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
- '@oxc-parser/wasm@0.60.0':
- resolution: {integrity: sha512-Dkf9/D87WGBCW3L0+1DtpAfL4SrNsgeRvxwjpKCtbH7Kf6K+pxrT0IridaJfmWKu1Ml+fDvj+7HEyBcfUC/TXQ==}
-
- '@oxc-project/types@0.60.0':
- resolution: {integrity: sha512-prhfNnb3ATFHOCv7mzKFfwLij5RzoUz6Y1n525ZhCEqfq5wreCXL+DyVoq3ShukPo7q45ZjYIdjFUgjj+WKzng==}
-
'@oxc-project/types@0.65.0':
resolution: {integrity: sha512-7MpMzyXCcwxrTxJ4L0siy63Ds/LA8LAM4szumTFiynxTJkfrIZEV4PyR4Th0CqFZQ+oNi8WvW3Dr1MLy7o9qPQ==}
+ '@oxc-project/types@0.68.1':
+ resolution: {integrity: sha512-Q/H52+HXPPxuIHwQnVkEM8GebLnNcokkI4zQQdbxLIZdfxMGhAm9+gEqsMku3t95trN/1titHUmCM9NxbKaE2g==}
+
'@oxc-resolver/binding-darwin-arm64@6.0.0':
resolution: {integrity: sha512-GKsfwUPgo4CjJioksA+DVEILT0aWhrbTBKHTiEvkTNC+bsafttSm0xqrIutCQqfqwuSa+Uj0VHylmL3Vv0F/7g==}
cpu: [arm64]
os: [darwin]
+ '@oxc-resolver/binding-darwin-arm64@8.0.0':
+ resolution: {integrity: sha512-rfoeXQgvZREwcGJd6un2P5Ca+vK8kiHmE70CHB4gqGanGlwo6zS81IHHA1Jaw29KOZ6BayDkU0IhpMP0GI1Frg==}
+ cpu: [arm64]
+ os: [darwin]
+
'@oxc-resolver/binding-darwin-x64@6.0.0':
resolution: {integrity: sha512-hwKfm4aT4SLuTkdF2NDYqYEnE9+m4emXLfFZ7D1mTIRul8If/fJop4I4YuIDrJfHVLQmSkpbPbI16XrNK3TftA==}
cpu: [x64]
os: [darwin]
+ '@oxc-resolver/binding-darwin-x64@8.0.0':
+ resolution: {integrity: sha512-RaeGUGem8xg12zJRw+hwozuTqGeMDw5+JsS+joe20lJrIsXJINFz1HJVhsK1BYc5CGUiOW6oqMEwgIYxkIgaPA==}
+ cpu: [x64]
+ os: [darwin]
+
'@oxc-resolver/binding-freebsd-x64@6.0.0':
resolution: {integrity: sha512-ZxFpS90awfLxWW0JqWFWO71p73SGWKhuocOMNQV30MtKZx5fX4lemnNl92Lr6Hvqg4egeSsPO5SGZbnMD5YShw==}
cpu: [x64]
os: [freebsd]
+ '@oxc-resolver/binding-freebsd-x64@8.0.0':
+ resolution: {integrity: sha512-LTTh5OgJvkhJInkgAwKuM7rBNjXFIQQSRc213hDGHTkTlYwWiV8Z3qVCzsOEECLs5Rr5NgaUIRuK3FBNglvGoA==}
+ cpu: [x64]
+ os: [freebsd]
+
'@oxc-resolver/binding-linux-arm-gnueabihf@6.0.0':
resolution: {integrity: sha512-ztc09+LDBxbAfndqTSvzz4KqN2fRRDCjj1eDRBGZMF5zQu/ThasERwh1ZzRp3sGZGRroZLQRCJunstS5OJKpww==}
cpu: [arm]
os: [linux]
+ '@oxc-resolver/binding-linux-arm-gnueabihf@8.0.0':
+ resolution: {integrity: sha512-nwBhaGbh4Izc0/fMuG9F2vbKU0CDLBpl5bd6mqq8MFQy3bapmG4E+4MHiUpSjHNIzKicYcjdlD8MVXj116vrrg==}
+ cpu: [arm]
+ os: [linux]
+
'@oxc-resolver/binding-linux-arm64-gnu@6.0.0':
resolution: {integrity: sha512-+x1xrEm2G/aOlTMzH3p53ayEEOCTFh4+H5EazdA1ljJP8m/ztrhtZGAo95dclYrCsRNP6KuVmIpw0Y4/RZT7EQ==}
cpu: [arm64]
os: [linux]
+ '@oxc-resolver/binding-linux-arm64-gnu@8.0.0':
+ resolution: {integrity: sha512-a8TVuLSWt79NK7Svz/I1COCoJxAaFW8LxbuhBoIkTJMiqR1cI0ZRwBlk9jArsvgyW93+z2OyOTXeh+qUtEE+PA==}
+ cpu: [arm64]
+ os: [linux]
+
'@oxc-resolver/binding-linux-arm64-musl@6.0.0':
resolution: {integrity: sha512-jgo0lz1569+yGpcZCjh0/wzgbvekTAaOB5JaOOWtgh7jvuVDIo6+m884Pf9V5U3Z2VLZts4J+e8hA1urA9Y1lg==}
cpu: [arm64]
os: [linux]
+ '@oxc-resolver/binding-linux-arm64-musl@8.0.0':
+ resolution: {integrity: sha512-Qitm6+dvYVpdiZxO4ICPXbFuBIvW9h5JxHt6zV2wlDtU2fGVn4zAQBPA43eFEvTQh4T3iemeWqqSQ7DYfFZjpw==}
+ cpu: [arm64]
+ os: [linux]
+
'@oxc-resolver/binding-linux-riscv64-gnu@6.0.0':
resolution: {integrity: sha512-uEhw/2oSnBp5PNv6sBev1koH4thSy1eH8LA6N3gAklrznqhFNqqvmXjlKZm9ek3bVFG44Hlx9BS5/tT0hXPbqA==}
cpu: [riscv64]
os: [linux]
+ '@oxc-resolver/binding-linux-riscv64-gnu@8.0.0':
+ resolution: {integrity: sha512-RU26a4fKom41ZfnU9AsfvA199F6dcxKxeQL/fMG/61q7E50AUk/JLPegR+P0OM69GCkBmcBBaVluzfhE4cYs9w==}
+ cpu: [riscv64]
+ os: [linux]
+
'@oxc-resolver/binding-linux-s390x-gnu@6.0.0':
resolution: {integrity: sha512-QR8d1f58XyTlkbATYxo2XhqyBNVT/Ma+z5dDvmjyYMa2S9u5yHKOch10I9fx/kLjRqfHzpl2H32NwwBnkaTzzg==}
cpu: [s390x]
os: [linux]
+ '@oxc-resolver/binding-linux-s390x-gnu@8.0.0':
+ resolution: {integrity: sha512-jV81rg2jh5a1TK1M8acDwaRnCFbMkJn3iiGVESzRAKZ4tTuVYTPkMtdgAQvummO1naUE2LRZxh8dA4v+gOkdYQ==}
+ cpu: [s390x]
+ os: [linux]
+
'@oxc-resolver/binding-linux-x64-gnu@6.0.0':
resolution: {integrity: sha512-CBp1yw8/jBhMuJnye1DJNUx1Rvpw4Zur4QqtjXXa+0kzTXr4qSsEsrdZj2p4USBQX/ComtK4UVPX4FqDj6VR0Q==}
cpu: [x64]
os: [linux]
+ '@oxc-resolver/binding-linux-x64-gnu@8.0.0':
+ resolution: {integrity: sha512-Dv1kxSarwtUD90EW8yQDLX4vSZme7CgMcf19PYYBMRujF5D96GOL76w53kblGHsJ+E3CRSvCXoRvsoPIi1MhDg==}
+ cpu: [x64]
+ os: [linux]
+
'@oxc-resolver/binding-linux-x64-musl@6.0.0':
resolution: {integrity: sha512-FM3bdl0ZfjGnHsFLUSPny9H8nsFXYXEVaD5juOnBW+RIcxN6tS9atzmki5ZmeTqgyDLZ68pM//b/UlI4V0GGvA==}
cpu: [x64]
os: [linux]
+ '@oxc-resolver/binding-linux-x64-musl@8.0.0':
+ resolution: {integrity: sha512-mLT1udjMfYKIoLgmvGWHingJn4bR9Yt9SodGpaKnFFCMs01timy4avmSyj75JDoyCnDiAmkAfBS1etlcz9XX8A==}
+ cpu: [x64]
+ os: [linux]
+
'@oxc-resolver/binding-wasm32-wasi@6.0.0':
resolution: {integrity: sha512-FLk/ip9wCbbeqBJAXCGmmZCMDNa9wT/Kbw1m5xWcMYy88Z65/zuAQs7Gg/okm77X/DE1ZJ766bnC3Cmz6SmWaA==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+ '@oxc-resolver/binding-wasm32-wasi@8.0.0':
+ resolution: {integrity: sha512-XRlYXYdNyZ4GEBfmrkXimBp2q5KuhccrQKq2epFe6Wif/5gx2TDItFtYSkEezrxMq6jdAIgEj6R5PjUNzqQxtQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
'@oxc-resolver/binding-win32-arm64-msvc@6.0.0':
resolution: {integrity: sha512-WEF2dSpwF5MEN1Zt/+dCCWpWXxsZTPPZPJXARV/1SP0ul9N0oijYyWO+8WYE0qREU8B0Toh/YGkA/wLSui3eRg==}
cpu: [arm64]
os: [win32]
+ '@oxc-resolver/binding-win32-arm64-msvc@8.0.0':
+ resolution: {integrity: sha512-ZFWMIKI6fn/LLZtX3TsivSuQ4LkBIBfMRNpH3zImDi43S4hAsxzfK9uVjWUeaI4+22TbqIIP363ILgfKzhZ9Lg==}
+ cpu: [arm64]
+ os: [win32]
+
'@oxc-resolver/binding-win32-x64-msvc@6.0.0':
resolution: {integrity: sha512-eTn8RUr6D2C+BGPG0ECtsqvUo8B+HvkhTkBG0Jel/7DqU+WCTNOT64+Ww9ZUhQxPJKa4laR9Zyu5yo/SaF6qPQ==}
cpu: [x64]
os: [win32]
- '@oxc-transform/binding-darwin-arm64@0.65.0':
- resolution: {integrity: sha512-hHfhOKyH+8DOj0VUmWl6RPLy3F0jCMCUMuKICzfelvSEs5uu8YRJ7fmQSsQD9E0oTrbbdkNVjq/1mcAPHzIBsg==}
+ '@oxc-resolver/binding-win32-x64-msvc@8.0.0':
+ resolution: {integrity: sha512-gbDIXWHtgfQUlCFUh7e7j8hhvtYNGSy9qOwGzJXBgWSCLuHmH2B5PRc4i2UJbYChSGD2H+4A38JnJxLb2/rs6w==}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxc-transform/binding-darwin-arm64@0.68.1':
+ resolution: {integrity: sha512-YlyzH6V/6Ib0dRKQ2dBfcHtsFfijTUNsBo85YxlUd9+eqo0RglTT2BGv+b85Z1dvtOopuz5zEa3x5r/bMwjQdA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- '@oxc-transform/binding-darwin-x64@0.65.0':
- resolution: {integrity: sha512-MNeaCPBVB1oOdb4kMZnKej8kSoxqf4XqAfFIKgx2mV1gJnW3PfwAbpqhad+XH3QM49dB++Gyaw7SPNwQLpL3YQ==}
+ '@oxc-transform/binding-darwin-x64@0.68.1':
+ resolution: {integrity: sha512-NzCwmM8SymtXlftGU5EkLIgeoYoIGejC1Zs234tPNBuoJ9xTW4RVIe67+MV7ePRTUU1oTJSKC+RlIWJ4qvwzdQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- '@oxc-transform/binding-linux-arm-gnueabihf@0.65.0':
- resolution: {integrity: sha512-YpmBf4AhtAdsLV7XYY9/UxVmgewumgVlNVcPXXXAQ5shMEYhu2K/fCvlWBFe6vYNXFmXAAnDihOjLrq8n+NhnA==}
+ '@oxc-transform/binding-linux-arm-gnueabihf@0.68.1':
+ resolution: {integrity: sha512-jgo1oEAFDR2jcp0BDF5bBRIMS9lyromAh5c9Kv914g8yPi6xMRGJmZkNkdBotjw3v0DG/Q7ECJUCgOABbmj5Lg==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-transform/binding-linux-arm64-gnu@0.65.0':
- resolution: {integrity: sha512-HbGl1QBvxCBVfRJdrcZliOsvjeoyMJQn6UUbYzQR8ud7SY2Ozp0Qf5VG0yjXvt/9BPcmOYMIxVCeKqSSkQ74XA==}
+ '@oxc-transform/binding-linux-arm64-gnu@0.68.1':
+ resolution: {integrity: sha512-3ZMKijcDfdtX7SXGLmyRouTGGOlON+poHPXrYAC+iFcKAVDnuoZuo/APZ6n33HQv5CCEijbdFoip8hxxfmvMLw==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-transform/binding-linux-arm64-musl@0.65.0':
- resolution: {integrity: sha512-80gSeSVY9fm+xoLBkTYdJT2RYCqMy/NAqT6azQoJj3DczoNKU/4GV4F6jpINRWYUqIUAZt3RSvAQtdW3tWAjfw==}
+ '@oxc-transform/binding-linux-arm64-musl@0.68.1':
+ resolution: {integrity: sha512-sLsbrUuOxADLMPkzwxA+laDAa1GBIVxCf5UKoEtHwSqBR/v2Kmv5YYs94Hpjeqf8sHl34njRWVs3hGOhYag/cw==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-transform/binding-linux-x64-gnu@0.65.0':
- resolution: {integrity: sha512-Wsl+qLcaC3EeZT/ZjPuGTOtcHYu25HeEO1jCnZmIhFfz+1RWmaEK5P5xVVJbrAgNPMVOfqbUM0EwMCfvNmmPaQ==}
+ '@oxc-transform/binding-linux-x64-gnu@0.68.1':
+ resolution: {integrity: sha512-fcZo4h+9U7mETFIT5kJCFRTuo3X3Iflr82H86pFF0PdZCKdvFiQ29JGDHVhsgj77bP84DdEhGVxBVhvBwpMLlQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-transform/binding-linux-x64-musl@0.65.0':
- resolution: {integrity: sha512-0kvRnt7EsKeGxxyt90l7yotSH5Ik5G9fbFJxkDCzPT23FzIQC8U4O1GzqNxnSj8VT/lRJGKcCL6KfSa6ttzQRQ==}
+ '@oxc-transform/binding-linux-x64-musl@0.68.1':
+ resolution: {integrity: sha512-ORwnm9SOyVlDHbOFrATQx9L8OGs87JXbWeXOW4mCEbvFdByd6Ps5MHVDI2bWPAoegCRKKiok1ytZKKLA/WncCQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-transform/binding-wasm32-wasi@0.65.0':
- resolution: {integrity: sha512-gKfpf5BY28Cq0scUV//oBlzXg+XFbi2tKpKDqE/ee4Z0ySeDQ66pwBUp3nnEG7EsVZjKhE8yksPN4YOCoZhG9g==}
+ '@oxc-transform/binding-wasm32-wasi@0.68.1':
+ resolution: {integrity: sha512-j34+k0j508K//mnjSRIU0FMUF6+7fdzDyRT2NwEAgxOx10HGgDQ+SYjBXIljYoL1jrVP0RV53rRm5c9nvranng==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-transform/binding-win32-arm64-msvc@0.65.0':
- resolution: {integrity: sha512-InHZNcL6hB2QLaiw3KNe+Aqnk+FRt4vuVmDXUibZ0fZSQorcFw/T267PtVVuWIzFNa6CQPU4ie0rxIdP0sHcFg==}
+ '@oxc-transform/binding-win32-arm64-msvc@0.68.1':
+ resolution: {integrity: sha512-JFIfZbLr9i939nNXwjJ9j/k7ZJdXIfFjCAbRMhRC0xzMRRbLeCR4W15tn+ixu31nhBLXzaXiiUAnGfwrjI9yPA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
- '@oxc-transform/binding-win32-x64-msvc@0.65.0':
- resolution: {integrity: sha512-qvLEPowed0OcSEgztGXw1QF53KhLYYYWGxOK2H+9PSXpkNcYaeUQ1XOngR9kO8yIhpBt1/EOrVFeNK8biy0c7g==}
+ '@oxc-transform/binding-win32-x64-msvc@0.68.1':
+ resolution: {integrity: sha512-LkZaBYXFil4K1GS6wgkUVNfVliZANrek1RTwC66vD0KfjTkkzeaibQ5gEk4wvIb3EgntK9mFdYKSSQJmtL5bfQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
@@ -2901,163 +2967,160 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.0':
- resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==}
+ '@rollup/rollup-android-arm-eabi@4.40.2':
+ resolution: {integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.0':
- resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==}
+ '@rollup/rollup-android-arm64@4.40.2':
+ resolution: {integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.0':
- resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==}
+ '@rollup/rollup-darwin-arm64@4.40.2':
+ resolution: {integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.0':
- resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==}
+ '@rollup/rollup-darwin-x64@4.40.2':
+ resolution: {integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.0':
- resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==}
+ '@rollup/rollup-freebsd-arm64@4.40.2':
+ resolution: {integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.0':
- resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==}
+ '@rollup/rollup-freebsd-x64@4.40.2':
+ resolution: {integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
- resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
+ resolution: {integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.0':
- resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.40.2':
+ resolution: {integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.0':
- resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
+ '@rollup/rollup-linux-arm64-gnu@4.40.2':
+ resolution: {integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.0':
- resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
+ '@rollup/rollup-linux-arm64-musl@4.40.2':
+ resolution: {integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
- resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
+ resolution: {integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
- resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
+ resolution: {integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.0':
- resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.40.2':
+ resolution: {integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.0':
- resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
+ '@rollup/rollup-linux-riscv64-musl@4.40.2':
+ resolution: {integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.0':
- resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
+ '@rollup/rollup-linux-s390x-gnu@4.40.2':
+ resolution: {integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.0':
- resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
+ '@rollup/rollup-linux-x64-gnu@4.40.2':
+ resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.0':
- resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
+ '@rollup/rollup-linux-x64-musl@4.40.2':
+ resolution: {integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.0':
- resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.40.2':
+ resolution: {integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.0':
- resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==}
+ '@rollup/rollup-win32-ia32-msvc@4.40.2':
+ resolution: {integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.0':
- resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==}
+ '@rollup/rollup-win32-x64-msvc@4.40.2':
+ resolution: {integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==}
cpu: [x64]
os: [win32]
- '@rspack/binding-darwin-arm64@1.3.5':
- resolution: {integrity: sha512-bhqi9nZ0jrlQc/YgTklzD02y0E8Emdrov6HLcxt/Dzwq5SZryl4Ik8yc/8E1M0PWNkr09+TO8i1Zc51z0Gfu2g==}
+ '@rspack/binding-darwin-arm64@1.3.9':
+ resolution: {integrity: sha512-lfTmsbUGab9Ak/X6aPLacHLe4MBRra+sLmhoNK8OKEN3qQCjDcomwW5OlmBRV5bcUYWdbK8vgDk2HUUXRuibVg==}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.3.5':
- resolution: {integrity: sha512-ysNn7bd/5NdVb0mTDBQl+D9GypCSS7FJoJJEeSpPcN01zFF8lRUsvdbOvzrG/CUBA2qbeWhwZvG2eKOy3p2NRA==}
+ '@rspack/binding-darwin-x64@1.3.9':
+ resolution: {integrity: sha512-rYuOUINhnhLDbG5LHHKurRSuKIsw0LKUHcd6AAsFmijo4RMnGBJ4NOI4tOLAQvkoSTQ+HU5wiTGSQOgHVhYreQ==}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.3.5':
- resolution: {integrity: sha512-oEfPjYx3RVsMeHG/kI9k96nLJUQhYfQS9HUKS37Ko3RWC84qTuzMAAdWIXE9ys8GHwpks7pL953AfYNK5PLhPw==}
+ '@rspack/binding-linux-arm64-gnu@1.3.9':
+ resolution: {integrity: sha512-pBKnS2Fbn9cDtWe1KcD1qRjQlJwQhP9pFW2KpxdjE7qXbaO11IHtem6dLZwdpNqbDn9QgyfdVGXBDvBaP1tGwA==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.3.5':
- resolution: {integrity: sha512-4cUoxd8nGsCCnqWBqortJRF+VKWzUm7ac9YRMQ+wpoL5i0abcQf8GqeilsNtRBRNqAlAh3mfgRlyeZgWvoS44g==}
+ '@rspack/binding-linux-arm64-musl@1.3.9':
+ resolution: {integrity: sha512-0B+iiINW0qOEkBE9exsRcdmcHtYIWAoJGnXrz9tUiiewRxX0Cmm0MjD2HAVUAggJZo+9IN8RGz5PopCjJ/dn1g==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.3.5':
- resolution: {integrity: sha512-JehI/z61Y9wwkcTxbAdPtjUnAyyAUCJZOqP3FwQTAd2gBFG/8k7v1quGwrfOLsCLOcT3azbd8YFoHmkveGQayQ==}
+ '@rspack/binding-linux-x64-gnu@1.3.9':
+ resolution: {integrity: sha512-82izGJw/qxJ4xaHJy/A4MF7aTRT9tE6VlWoWM4rJmqRszfujN/w54xJRie9jkt041TPvJWGNpYD4Hjpt0/n/oA==}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.3.5':
- resolution: {integrity: sha512-t8BqaOXrqIXZHTrz4ItX/m6BOvbBkeb7qTewlkN5mMHtPAF/Xg203rQ814VXx59kjgGF7i79PXIK2dQxHnCYDA==}
+ '@rspack/binding-linux-x64-musl@1.3.9':
+ resolution: {integrity: sha512-V9nDg63iPI6Z7kM11UPV5kBdOdLXPIu3IgI2ObON5Rd4KEZr7RLo/Q4HKzj0IH27Zwl5qeBJdx69zZdu66eOqg==}
cpu: [x64]
os: [linux]
- '@rspack/binding-win32-arm64-msvc@1.3.5':
- resolution: {integrity: sha512-k9vf/WgEwxtXzV4la1H6eL07GIlvNjdPdvo1AJZdu0Zcnm600Kv5NSBjySJCp3zUHIKkCE9A0+ibifqbliG0fw==}
+ '@rspack/binding-win32-arm64-msvc@1.3.9':
+ resolution: {integrity: sha512-owWCJTezFkiBOSRzH+eOTN15H5QYyThHE5crZ0I30UmpoSEchcPSCvddliA0W62ZJIOgG4IUSNamKBiiTwdjLQ==}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.3.5':
- resolution: {integrity: sha512-dGfGJySHC/ktbNkK/FY2vEpFNK4UT+fgChhmUxIyQaHWjloFGVmEr6NttS0GtdtvblfF3tTzkTe9pGMIkdlegw==}
+ '@rspack/binding-win32-ia32-msvc@1.3.9':
+ resolution: {integrity: sha512-YUuNA8lkGSXJ07fOjkX+yuWrWcsU5x5uGFuAYsglw+rDTWCS6m9HSwQjbCp7HUp81qPszjSk+Ore5XVh07FKeQ==}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.3.5':
- resolution: {integrity: sha512-GujYFTr043jse5gdvofsRvltkH/E8G5h3Yu9JG/+6EyQpFJebYm/NpRQrOyqZLIQP39+tbdViTfW4nOpUuurNA==}
+ '@rspack/binding-win32-x64-msvc@1.3.9':
+ resolution: {integrity: sha512-E0gtYBVt5vRj0zBeplEf8wsVDPDQ6XBdRiFVUgmgwYUYYkXaalaIvbD1ioB8cA05vfz8HrPGXcMrgletUP4ojA==}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.3.5':
- resolution: {integrity: sha512-2oluCT+iBnTg0w7XfR8AmfkvgMPSuqEndzhrlHY//qgyyI04CW1lCMgsh+9wcSOUWUKYSOMCiGiVlYFtae5Lcg==}
+ '@rspack/binding@1.3.9':
+ resolution: {integrity: sha512-3FFen1/0F2aP5uuCm8vPaJOrzM3karCPNMsc5gLCGfEy2rsK38Qinf9W4p1bw7+FhjOTzoSdkX+LFHeMDVxJhw==}
- '@rspack/core@1.3.5':
- resolution: {integrity: sha512-PwIpzXj9wjHM0Ohq6geIKPoh3yNb5oSK74gqzs0plR7pTYLbhrjG/1DSV/JLFF4C5WCpLHHiDEX5E0IYm2Aqeg==}
+ '@rspack/core@1.3.9':
+ resolution: {integrity: sha512-u7usd9srCBPBfNJCSvsfh14AOPq6LCVna0Vb/aA2nyJTawHqzfAMz1QRb/e27nP3NrV6RPiwx03W494Dd6r6wg==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@rspack/tracing': ^1.x
'@swc/helpers': '>=0.5.1'
peerDependenciesMeta:
- '@rspack/tracing':
- optional: true
'@swc/helpers':
optional: true
@@ -3068,34 +3131,34 @@ packages:
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@shikijs/core@3.3.0':
- resolution: {integrity: sha512-CovkFL2WVaHk6PCrwv6ctlmD4SS1qtIfN8yEyDXDYWh4ONvomdM9MaFw20qHuqJOcb8/xrkqoWQRJ//X10phOQ==}
+ '@shikijs/core@3.4.0':
+ resolution: {integrity: sha512-0YOzTSRDn/IAfQWtK791gs1u8v87HNGToU6IwcA3K7nPoVOrS2Dh6X6A6YfXgPTSkTwR5y6myk0MnI0htjnwrA==}
- '@shikijs/engine-javascript@3.3.0':
- resolution: {integrity: sha512-XlhnFGv0glq7pfsoN0KyBCz9FJU678LZdQ2LqlIdAj6JKsg5xpYKay3DkazXWExp3DTJJK9rMOuGzU2911pg7Q==}
+ '@shikijs/engine-javascript@3.4.0':
+ resolution: {integrity: sha512-1ywDoe+z/TPQKj9Jw0eU61B003J9DqUFRfH+DVSzdwPUFhR7yOmfyLzUrFz0yw8JxFg/NgzXoQyyykXgO21n5Q==}
- '@shikijs/engine-oniguruma@3.3.0':
- resolution: {integrity: sha512-l0vIw+GxeNU7uGnsu6B+Crpeqf+WTQ2Va71cHb5ZYWEVEPdfYwY5kXwYqRJwHrxz9WH+pjSpXQz+TJgAsrkA5A==}
+ '@shikijs/engine-oniguruma@3.4.0':
+ resolution: {integrity: sha512-zwcWlZ4OQuJ/+1t32ClTtyTU1AiDkK1lhtviRWoq/hFqPjCNyLj22bIg9rB7BfoZKOEOfrsGz7No33BPCf+WlQ==}
- '@shikijs/langs@3.3.0':
- resolution: {integrity: sha512-zt6Kf/7XpBQKSI9eqku+arLkAcDQ3NHJO6zFjiChI8w0Oz6Jjjay7pToottjQGjSDCFk++R85643WbyINcuL+g==}
+ '@shikijs/langs@3.4.0':
+ resolution: {integrity: sha512-bQkR+8LllaM2duU9BBRQU0GqFTx7TuF5kKlw/7uiGKoK140n1xlLAwCgXwSxAjJ7Htk9tXTFwnnsJTCU5nDPXQ==}
- '@shikijs/themes@3.3.0':
- resolution: {integrity: sha512-tXeCvLXBnqq34B0YZUEaAD1lD4lmN6TOHAhnHacj4Owh7Ptb/rf5XCDeROZt2rEOk5yuka3OOW2zLqClV7/SOg==}
+ '@shikijs/themes@3.4.0':
+ resolution: {integrity: sha512-YPP4PKNFcFGLxItpbU0ZW1Osyuk8AyZ24YEFaq04CFsuCbcqydMvMUTi40V2dkc0qs1U2uZFrnU6s5zI6IH+uA==}
- '@shikijs/transformers@3.3.0':
- resolution: {integrity: sha512-PIknEyxfkT7i7at/78ynVmuZEv4+7IcS37f6abxMjQ0pVIPEya8n+KNl7XtfbhNL+U9ElR3UzfSzuD5l5Iu+nw==}
+ '@shikijs/transformers@3.4.0':
+ resolution: {integrity: sha512-GrGaOj1/I6h75IU0VvjdWDpqGCynx0bqHzd1rErBTGxrcmusYIBhrV7aEySWyJ6HHb9figeXfcNxUFS1HKUfBw==}
- '@shikijs/twoslash@3.3.0':
- resolution: {integrity: sha512-kEq+oRJ1iyYyPisBBdC+/rgZ9WWvoIoBLpm3xxThmBZjQ0m1LlwM4XpSPvp4cvrXGTESXQtYMYwZ4694aU2Z1w==}
+ '@shikijs/twoslash@3.4.0':
+ resolution: {integrity: sha512-RM15Q6XK+renUX7tN/iUYR2W1qSojTm6kcJwD1FEP0YQoMn7E6Ogr9CqHNYfdDpT7EZBJvx0N96E/pTymWpSuQ==}
peerDependencies:
typescript: '>=5.5.0'
- '@shikijs/types@3.3.0':
- resolution: {integrity: sha512-KPCGnHG6k06QG/2pnYGbFtFvpVJmC3uIpXrAiPrawETifujPBv0Se2oUxm5qYgjCvGJS9InKvjytOdN+bGuX+Q==}
+ '@shikijs/types@3.4.0':
+ resolution: {integrity: sha512-EUT/0lGiE//7j5N/yTMNMT3eCWNcHJLrRKxT0NDXWIfdfSmFJKfPX7nMmRBrQnWboAzIsUziCThrYMMhjbMS1A==}
- '@shikijs/vitepress-twoslash@3.3.0':
- resolution: {integrity: sha512-JkR/gugFIMW3pEmgQ5ETfLR5HQs7FsYq0RBxJ3ty0qAJ1qi1WvA8kKD9hj0z4M75sXtpWqP8D0rPrl34w5czYQ==}
+ '@shikijs/vitepress-twoslash@3.4.0':
+ resolution: {integrity: sha512-3WPgEArF9sZamrB9WW6NGDj3r4+pvbWEvTjc+7jHkfoZRWJpIlyL6jqZ6MGScRHssgIq5ATG5WklflJs/nYoMw==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -3130,9 +3193,9 @@ packages:
'@swc/helpers@0.5.17':
resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==}
- '@sxzz/eslint-config@6.1.2':
- resolution: {integrity: sha512-tMOwINR8j6/0I7OXWxPFYstr3UNtp4j5Ahfr5r5N0nwklOp+Ba0a2dJK1E84LF2rQuO+VcG2UvZtRlOlZPJIcA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@sxzz/eslint-config@7.0.0':
+ resolution: {integrity: sha512-qLKt73ZlEj+V8l4nnclQTeIVo4OQV7P2PJq9/UuxkrZtOWrO39NlLRw5/jvYKdNkQMKi3VZ6oDPFdnnhU6gegA==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
'@unocss/eslint-plugin': '>=65.0.0'
eslint: ^9.5.0
@@ -3143,11 +3206,11 @@ packages:
'@sxzz/prettier-config@2.2.1':
resolution: {integrity: sha512-4eKrQdzJpMOFrUD9rFm1IfVkpchPvnPOObJvnX+DQB0KHRtHbU0vBwSpOLHioxLPYFwJGjSl6NC0trrCDkCtsA==}
- '@sxzz/test-utils@0.5.5':
- resolution: {integrity: sha512-3oHM0DRUxGevwNInP+STIvTTHSTSpM+gFgBHpd3tSe7Ny7uD41O7+FNP7H+7uLFxo/Z12bTRh9NVRW3WmUnNdw==}
+ '@sxzz/test-utils@0.5.6':
+ resolution: {integrity: sha512-BikHJPOsAqwKIwG5Eg9s8STJMIlg0USi1AdKqTkj9oXt2b/fAK+fV2EVgL1CKD3WQq1622G21AZXWqVLHKC+Lg==}
engines: {node: '>=20.18.0'}
peerDependencies:
- esbuild: ^0.25.3
+ esbuild: ^0.25.4
rolldown: '*'
rollup: ^4.1.0
vitest: ^2.0.0 || ^3.0.0-0
@@ -3159,11 +3222,11 @@ packages:
rollup:
optional: true
- '@tanstack/virtual-core@3.13.6':
- resolution: {integrity: sha512-cnQUeWnhNP8tJ4WsGcYiX24Gjkc9ALstLbHcBj1t3E7EimN6n6kHH+DPV4PpDnuw00NApQp+ViojMj1GRdwYQg==}
+ '@tanstack/virtual-core@3.13.8':
+ resolution: {integrity: sha512-BT6w89Hqy7YKaWewYzmecXQzcJh6HTBbKYJIIkMaNU49DZ06LoTV3z32DWWEdUsgW6n1xTmwTLs4GtWrZC261w==}
- '@tanstack/vue-virtual@3.13.6':
- resolution: {integrity: sha512-GYdZ3SJBQPzgxhuCE2fvpiH46qzHiVx5XzBSdtESgiqh4poj8UgckjGWYEhxaBbcVt1oLzh1m3Ql4TyH32TOzQ==}
+ '@tanstack/vue-virtual@3.13.8':
+ resolution: {integrity: sha512-CqyjKVc88YlE8JPth8a5Gi4CUoYrwJ2PZxtFbhoekx8Z2qqymxX2jzkbUMKFsX4EVNET90D5bLsG3epyozbzcg==}
peerDependencies:
vue: ^2.7.0 || ^3.0.0
@@ -3177,9 +3240,6 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
- '@types/doctrine@0.0.9':
- resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
-
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
@@ -3189,6 +3249,9 @@ packages:
'@types/estree@1.0.7':
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
+ '@types/fontkit@2.0.8':
+ resolution: {integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==}
+
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
@@ -3213,14 +3276,12 @@ packages:
'@types/nlcst@2.0.3':
resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
- '@types/node@22.14.1':
- resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
-
- '@types/normalize-package-data@2.4.4':
- resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+ '@types/node@22.15.17':
+ resolution: {integrity: sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw==}
- '@types/parse-path@7.0.3':
- resolution: {integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==}
+ '@types/parse-path@7.1.0':
+ resolution: {integrity: sha512-EULJ8LApcVEPbrfND0cRQqutIOdiIgJ1Mgrhpy755r14xMohPTEpkV/k28SJvuOs9bHRFW8x+KeDAEPiGQPB9Q==}
+ deprecated: This is a stub types definition. parse-path provides its own type definitions, so you do not need this installed.
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -3234,51 +3295,51 @@ packages:
'@types/web-bluetooth@0.0.21':
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
- '@typescript-eslint/eslint-plugin@8.31.0':
- resolution: {integrity: sha512-evaQJZ/J/S4wisevDvC1KFZkPzRetH8kYZbkgcTRyql3mcKsf+ZFDV1BVWUGTCAW5pQHoqn5gK5b8kn7ou9aFQ==}
+ '@typescript-eslint/eslint-plugin@8.32.0':
+ resolution: {integrity: sha512-/jU9ettcntkBFmWUzzGgsClEi2ZFiikMX5eEQsmxIAWMOn4H3D4rvHssstmAHGVvrYnaMqdWWWg0b5M6IN/MTQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.31.0':
- resolution: {integrity: sha512-67kYYShjBR0jNI5vsf/c3WG4u+zDnCTHTPqVMQguffaWWFs7artgwKmfwdifl+r6XyM5LYLas/dInj2T0SgJyw==}
+ '@typescript-eslint/parser@8.32.0':
+ resolution: {integrity: sha512-B2MdzyWxCE2+SqiZHAjPphft+/2x2FlO9YBx7eKE1BCb+rqBlQdhtAEhzIEdozHd55DXPmxBdpMygFJjfjjA9A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.31.0':
- resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==}
+ '@typescript-eslint/scope-manager@8.32.0':
+ resolution: {integrity: sha512-jc/4IxGNedXkmG4mx4nJTILb6TMjL66D41vyeaPWvDUmeYQzF3lKtN15WsAeTr65ce4mPxwopPSo1yUUAWw0hQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.31.0':
- resolution: {integrity: sha512-DJ1N1GdjI7IS7uRlzJuEDCgDQix3ZVYVtgeWEyhyn4iaoitpMBX6Ndd488mXSx0xah/cONAkEaYyylDyAeHMHg==}
+ '@typescript-eslint/type-utils@8.32.0':
+ resolution: {integrity: sha512-t2vouuYQKEKSLtJaa5bB4jHeha2HJczQ6E5IXPDPgIty9EqcJxpr1QHQ86YyIPwDwxvUmLfP2YADQ5ZY4qddZg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.31.0':
- resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==}
+ '@typescript-eslint/types@8.32.0':
+ resolution: {integrity: sha512-O5Id6tGadAZEMThM6L9HmVf5hQUXNSxLVKeGJYWNhhVseps/0LddMkp7//VDkzwJ69lPL0UmZdcZwggj9akJaA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.31.0':
- resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==}
+ '@typescript-eslint/typescript-estree@8.32.0':
+ resolution: {integrity: sha512-pU9VD7anSCOIoBFnhTGfOzlVFQIA1XXiQpH/CezqOBaDppRwTglJzCC6fUQGpfwey4T183NKhF1/mfatYmjRqQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.31.0':
- resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==}
+ '@typescript-eslint/utils@8.32.0':
+ resolution: {integrity: sha512-8S9hXau6nQ/sYVtC3D6ISIDoJzS1NsCK+gluVhLN2YkBPX+/1wkwyUiDKnxRh15579WoOIyVWnoyIf3yGI9REw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.31.0':
- resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==}
+ '@typescript-eslint/visitor-keys@8.32.0':
+ resolution: {integrity: sha512-1rYQTCLFFzOI5Nl0c8LUpJT8HxpwVRn9E4CkMsYfuN6ctmQqExjSTzzSk0Tz2apmXy7WU6/6fyaZVVA/thPN+w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript/vfs@1.6.1':
@@ -3294,179 +3355,184 @@ packages:
peerDependencies:
vue: '>=3.5.13'
- '@unocss/astro@66.1.0-beta.12':
- resolution: {integrity: sha512-zYvevDDmhNlMAxP4isyAK+byGoVfVqnbZPHJnbb7Hoj7+8uaz+D/byUKyRynynVZl3T13S+UesjNAcRyAQoXEg==}
+ '@unocss/astro@66.1.1':
+ resolution: {integrity: sha512-/wteVem8orDq5B4xhAol81WcK1eEwg6FCeWZhtWnP5u/1e0zI5h1rLTbyzb+qqXVNcGgqUo/jSYLLJ+dNQa99g==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
peerDependenciesMeta:
vite:
optional: true
- '@unocss/cli@66.1.0-beta.12':
- resolution: {integrity: sha512-WWtuYPk/nZSn6j6p/2pLZodV4UaieefVaKtTFYnz+sRPJCErrG41UMkwvgyDBzuQNYn7xbbQ+Mnzbs+TeHGGIA==}
+ '@unocss/cli@66.1.1':
+ resolution: {integrity: sha512-1bZ+iQJNt21bkBK+kmZymqSLt2W3zpawlx3w9SvQPuOy4xK8B6HkKaUcBnr9Wy3MymrI5Qwccr5f4vXweBkAxQ==}
engines: {node: '>=14'}
hasBin: true
- '@unocss/config@66.1.0-beta.12':
- resolution: {integrity: sha512-u0dcWKFK+DZQ6Z3Qim2qzj6I6tsdCwl8O86NRRNN4Yt0H9C7IHzYLykfo6jgFFxay47aUKCZevl+mNLPUktk9w==}
+ '@unocss/config@66.1.1':
+ resolution: {integrity: sha512-Fg4sRw5dncNHxh/SM6guRzAveBI1FErw2ncb70Qe0LzCY7+IfUqrOBep/HIHP7NA1Mcj2JxHlM61ITLqrcYKpw==}
engines: {node: '>=14'}
- '@unocss/core@66.1.0-beta.12':
- resolution: {integrity: sha512-8+KJAoqA7eHC5cBJtod1AqWqQbYKfhTvQEgVQzZJ2sTYNTuQz4qdzPhUgKF83wURUhznGkdDL1Jxc6YITB1KPg==}
+ '@unocss/core@66.1.1':
+ resolution: {integrity: sha512-EOewEnipyB7Y6ne0YQmxdCG1hbMjYJ7oPMeHKfQuCZz60DPzkYwV6zVMa35ySMs1xljb/vFTHVFcJA8du3i8XA==}
- '@unocss/eslint-plugin@66.1.0-beta.12':
- resolution: {integrity: sha512-aGc8X1SsAREsbFDBGDNOGr7pL0HOX0E4P2xua/Xd4DOMZKF8AhoQk+V4G9Zd/4s0bRkyVA78JO3vgOvmfVyxJQ==}
+ '@unocss/eslint-plugin@66.1.1':
+ resolution: {integrity: sha512-WkcyScjl3+6ERXCY/HBlBQJU/45HbRaklHc2u5F1Rdr1Pam/Fe90OnC93SB1oH7wwKmvE4vyP9dFQFrYVdUANg==}
engines: {node: '>=14'}
- '@unocss/extractor-arbitrary-variants@66.1.0-beta.12':
- resolution: {integrity: sha512-DOl0bWJzgNAkiteQJluRsEnEfkKX1MFg1xn8vpTrbmSPOFCEUGcmavR6d4aCrQuJ6eaZaAvmhT/WxyTJngBuJw==}
+ '@unocss/extractor-arbitrary-variants@66.1.1':
+ resolution: {integrity: sha512-hDbdXm2+LjQ18zkUniU6tCGdyBHxnMZ0M2LFF21iGEbDvK3ukX4uEVAhzASEmhkEE0nULyEJg0HkU4CRNBupBg==}
- '@unocss/inspector@66.1.0-beta.12':
- resolution: {integrity: sha512-J/xD22Q2hISMMKP4UB/V4rgnP0mbRDxFmPkst2PivI9YvCLAUy8Us+0/RYuI9VT8P5G/QcdRTnLidmLKAq3XMw==}
+ '@unocss/inspector@66.1.1':
+ resolution: {integrity: sha512-112uYliXR7VLYqdPfDWy/cL65An36IabFL7xU9dRPBDYmlB5qyVks9l5Sqd8uMafsZYjbMhpkjPRkXTmLMieEw==}
- '@unocss/nuxt@66.1.0-beta.12':
- resolution: {integrity: sha512-3N0pDQ3+SqNZDUfjfIjryQ191bLbYPq+b8slZ5fJK5djk22IfbVAZ1E8Hq4eD3dlg96mSW1Rm2PbKanCbkvfXA==}
+ '@unocss/nuxt@66.1.1':
+ resolution: {integrity: sha512-ToWvNo0g0tAeNcb/KFPY3id87Vu7b0QJ+oEVtpCDqED25uD6z1S4oJgDmWXgBCP9jtMfyhRdmvSWojoVKscNCQ==}
- '@unocss/postcss@66.1.0-beta.12':
- resolution: {integrity: sha512-CMF5Z2YwvyqEO3DPYJWm+E4fI98CIgUDDiRuh3OBZmmHoJw6JSFAEgajW+BRRDKXz2zJMmf/87hD6cOXbeMonA==}
+ '@unocss/postcss@66.1.1':
+ resolution: {integrity: sha512-+CTeYbUGDk8ESrwxRN6wkaIAJYfJekt7NvUSp1us9zws+2Ev3pH7GXztbGmTz8HCkSqLB/3MOQ6sIpviS1A7/Q==}
engines: {node: '>=14'}
- '@unocss/preset-attributify@66.1.0-beta.12':
- resolution: {integrity: sha512-0UDWmXgiHyrirEA1aHaoZrLUPEijetfLfZMgeM4k3F1vio6M3DgmkV82S+fZLk28XqFT5kWFkPRbmji/T+hUlg==}
+ '@unocss/preset-attributify@66.1.1':
+ resolution: {integrity: sha512-PQC0L5CVt8JRCPBHWX1YD/XmGVWT5HZLa3NHZkl2nezoZNAiSSmwe9f5kq+bZDUZYvtbAY6jltF+G4rUAdWvJA==}
- '@unocss/preset-icons@66.1.0-beta.12':
- resolution: {integrity: sha512-eiqHooDnubGtcx0b49uSNZu0BOX5hOLH7mJngfqb0w8ExMRkgG9iZIKkQw25TB3V9jUGfLHewfeH2J+H5LiIcg==}
+ '@unocss/preset-icons@66.1.1':
+ resolution: {integrity: sha512-F8NZKJfGzlv7tCxbo5cDXouxm1azKMzGOV11zbDTuZFDacyH5WprQ9zNMffUdUuVDy+rwAN+OoR0GEyggt4zww==}
- '@unocss/preset-mini@66.1.0-beta.12':
- resolution: {integrity: sha512-acnKtLmUX+imhc5RXS7z4InMbt0p1nShU/Lxr5yz4FtL8YaDMNk8SNTE4oCk1P7OQJVNsGdDCFtrhYWi9qAa1A==}
+ '@unocss/preset-mini@66.1.1':
+ resolution: {integrity: sha512-VRv1BWqnKaDQZb4EGZ6bV03+jLios9R8CmlOKAjr9AIAUuZv3OKP7LoSA9Jo0bci1wQUdHxNs8IvD2c1mDz+Pw==}
- '@unocss/preset-tagify@66.1.0-beta.12':
- resolution: {integrity: sha512-dhhiT8rpf8a5hrRYoIfV8X4KOs0Nugz15LIxJrv87zUZcWhMXA0Flla1IfgZ937ULIcqBBqZdQEYfVG0vc3FIw==}
+ '@unocss/preset-tagify@66.1.1':
+ resolution: {integrity: sha512-cC4MjyRVu3w4xxdlvz+mrkElNEYJpgCx/HVQehK9aXDBP9L9NgpEr+7Mqefhv5ES4a2U82MPNSElyFIwm3bOUw==}
- '@unocss/preset-typography@66.1.0-beta.12':
- resolution: {integrity: sha512-6qpDfPGxH/ComRMhVc+oZMUcbV+2tFFFVtNkIRFTDBlfDUMMtUc6xDcj6w/DeuIZpl67zSetvQSSWUBH2k1kuA==}
+ '@unocss/preset-typography@66.1.1':
+ resolution: {integrity: sha512-FB8leh/TANJB7U8sUuEG0pM+Nqhw65A1k+xJEXlYKAbfIdUN6mGNvFirh6c2WJXUg6rHe06l//TZAAvwJiS29Q==}
- '@unocss/preset-uno@66.1.0-beta.12':
- resolution: {integrity: sha512-GoRZUaVUdx/fJ88F19htObouYb7HhKTJn8Ab8jK6rdvt913K90xXJ7XxSMalRk2DUy01fXbHEWEw/ObdxTgtHA==}
+ '@unocss/preset-uno@66.1.1':
+ resolution: {integrity: sha512-2gfayXo7He9ecCIp4KzpRpCjc6bFtukAahdLf5WoW66GRxoTDAsOuWQitG+B2IiExIX0fci8uahFudMNyLpjMA==}
- '@unocss/preset-web-fonts@66.1.0-beta.12':
- resolution: {integrity: sha512-nVwSl3TO2n1H2e3RY9z0igUaGXMgedk+ByLZJYDLWj+a7nVlsFm6EOFbmKwdVQS+oruZXyrXN9rSnZt7yBBcuQ==}
+ '@unocss/preset-web-fonts@66.1.1':
+ resolution: {integrity: sha512-vVjidprhFWsZ0ClRIfGhH3evsdtDgXPSoyv8MlN8dP5RqkpH817h5PqmInxHkYeC5Mg/HsUy5HA0NryBQix0vQ==}
- '@unocss/preset-wind3@66.1.0-beta.12':
- resolution: {integrity: sha512-vjSH7K3mHrcfOarzhnRu4oz6MjtvKYCMNnvufhpntq+lQ6IyeAfFP/zuBhGxKQZg0Amwt+peChF3AysbJHxQOQ==}
+ '@unocss/preset-wind3@66.1.1':
+ resolution: {integrity: sha512-Z8SqXaubPJHltD0+dneYei0spxH+spzGNiOWI7qffsByxvc6B/kOdJFOhVWE5DhYO33KJWyGxZdXzCq7Xxdm9Q==}
- '@unocss/preset-wind4@66.1.0-beta.12':
- resolution: {integrity: sha512-n/0ohR52bQkfFLYd9+wRSvvxmKHqsvivn6tYVWdiyiv2FV+UMz2zwB6gv7meJzILVOfmXUGfwbTFTh1S6lClVg==}
+ '@unocss/preset-wind4@66.1.1':
+ resolution: {integrity: sha512-p7YU0xcYF/+DUcsV//QkrXVEvORefSmXNOHnZ3HqawWdOABQJD/pu3QMk64jnEdrjQg07s4Wd1Zh5DAhSXFmLw==}
- '@unocss/preset-wind@66.1.0-beta.12':
- resolution: {integrity: sha512-5vQp50poCHsexs2dbxi0/eWCwpvyPXHDE6serNr0JMY/5nNPuzEYGeqroN+/Mo6nofNu154gPs5TLdYESbnKRA==}
+ '@unocss/preset-wind@66.1.1':
+ resolution: {integrity: sha512-+C66yMgJe6/Xu3ZoP+8XMqL5N3RkLIZVVbVXtnhSvCF8qd4rJ+d4/odeQ8M/WUcQXSysIckkDfnYC2FGSTEakw==}
- '@unocss/reset@66.1.0-beta.12':
- resolution: {integrity: sha512-a8sqnzf1EFFqYmnc31B1owiQV3CKD0J7FAFFxsYYwshxSI2v0hDDVsDpfxvpWXX+ZI6khZccnsMR7uXzk/bImw==}
+ '@unocss/reset@66.1.1':
+ resolution: {integrity: sha512-WrI3sStMd/EXTcb3SaTVH10Wc9NKutW4+/HktQy470wEpncXdvihrXgCYwJH6LEEL4KOto3o+KKSD5xenWE7Aw==}
- '@unocss/rule-utils@66.1.0-beta.12':
- resolution: {integrity: sha512-txhJO8pqut5FjGxhFC/OzqvLkeyeSaXgvZLaPaCTnpmuzt78ZTmqpszAHSchr9qCEXtBbK9dKHH78Zh10SRDLg==}
+ '@unocss/rule-utils@66.1.1':
+ resolution: {integrity: sha512-a7xe3FsvsI6T6u8QtXcQF22jnElB68X92aHjuSRt512gRjhhu/5kSzLJbMkv9RsclHJbmjnz6OUkk/mlTTxcFg==}
engines: {node: '>=14'}
- '@unocss/transformer-attributify-jsx@66.1.0-beta.12':
- resolution: {integrity: sha512-nT+Zc7uteMlpRXGUKmJuypa4M44ImTwQhKw4sJNOcXckbliYlGjsOzAHR6khKF0eTWmaYLQ/VU+pqLQwls4m6Q==}
+ '@unocss/transformer-attributify-jsx@66.1.1':
+ resolution: {integrity: sha512-HE/O9xdPLrf20ZynvYsJOUwPQagExDUQSVdo9zYPwoUQ7O+Ep5uwRBp1vpT/suZfU87RwWSvKSFOHmFoKiJBCA==}
- '@unocss/transformer-compile-class@66.1.0-beta.12':
- resolution: {integrity: sha512-hlZ75IsXFOMcsPAQCLdtv2K9CFzR6ZNeB/hJ1Hx4easiWpCPkk9IiAcwQqSKpcEgX/vQkOkyc5LqqptcMJZsNg==}
+ '@unocss/transformer-compile-class@66.1.1':
+ resolution: {integrity: sha512-tptWeOEaR56XNLeJy+MtoTagYCH5giRYrlaOdQPX57NDnRqRB0KJYHew2YpgH6j6eZ1WbQ4WK8j1PzAmr1FVgg==}
- '@unocss/transformer-directives@66.1.0-beta.12':
- resolution: {integrity: sha512-2usowxuis00BJ6YHU5MFl484o3nXi4TSHs9ohiRIPurGMOz6puuR/e1mxqX/y1E7ziR+TR5TH4CzmNW8X0zm1w==}
+ '@unocss/transformer-directives@66.1.1':
+ resolution: {integrity: sha512-qj2oUc9P+cY6PD+vTmbyb830GTofKm1IMeT+lhH4eyMX3lpfbDxj1LTjyJzouhK8s5VD56gWXx8wFdTuaEQ2Ww==}
- '@unocss/transformer-variant-group@66.1.0-beta.12':
- resolution: {integrity: sha512-MWMJ2zMOdZm2yQptttzh8HoPwzmdk2BgShuoCE6B5jeTVhDpU52QSAZEewl2AAgv0VSz68X0QxxOC2j7GZ+90w==}
+ '@unocss/transformer-variant-group@66.1.1':
+ resolution: {integrity: sha512-opU9y9c6iGUtTXPa+bDfkihSAth+5PVO9hLbPWlDIiN6mDF7WHzAbnhg0Q+FixjAI+n772XWKoLdrPn3yM2NZA==}
- '@unocss/vite@66.1.0-beta.12':
- resolution: {integrity: sha512-ZIz8+LedpZSZwfCizFrZMcHRkjzTo+iVscL9oBfvzi7Sg37/zqRDY5XdyHUQsOI79Mu0527Mtu0lvyYGinS8zg==}
+ '@unocss/vite@66.1.1':
+ resolution: {integrity: sha512-+ddMVpMxvm+2r8Je3YJRGYiZ/p/7LPD69VKT3vjFG3lT3IbfXtt18q6kYwBi+9lcnI68qgh3/s4qXQ2Q/iX5NQ==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- '@unocss/webpack@66.1.0-beta.12':
- resolution: {integrity: sha512-qdavu/OYCfitvgYrWWlDNJaC2K8HWjQzQ+uGuEqzSlJIoGaJbpV9UpU5ELgZHevRfrtWqtNBSZ2gf+PdnMVbDQ==}
+ '@unocss/webpack@66.1.1':
+ resolution: {integrity: sha512-FtrTQQTurE7+1e7SwlWVWl4bOXOacmFl9TM8SQ7HhwLyUBu3p1ag/DJnx15hdKDmDZYqe1ZJ7gKksTVpEnLHZQ==}
peerDependencies:
webpack: ^4 || ^5
- '@unrs/resolver-binding-darwin-arm64@1.6.4':
- resolution: {integrity: sha512-ehtknxfSIlAIVFmQ9/yVbW4SzyjWuQpKAtRujNzuR0qS1avz4+BSmM0lVhl4OnU7nJaun/g+AM2FeaUY5KwZsg==}
+ '@unrs/resolver-binding-darwin-arm64@1.7.2':
+ resolution: {integrity: sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg==}
cpu: [arm64]
os: [darwin]
- '@unrs/resolver-binding-darwin-x64@1.6.4':
- resolution: {integrity: sha512-CtPj8lqQNVaNjnURq4lCAsanQGN/zO8yFKbL8a7RKH4SU7EMYhOrK8JgW5mbcEDinB4hVuZdgsDCTA3x24CuVQ==}
+ '@unrs/resolver-binding-darwin-x64@1.7.2':
+ resolution: {integrity: sha512-qhVa8ozu92C23Hsmv0BF4+5Dyyd5STT1FolV4whNgbY6mj3kA0qsrGPe35zNR3wAN7eFict3s4Rc2dDTPBTuFQ==}
cpu: [x64]
os: [darwin]
- '@unrs/resolver-binding-freebsd-x64@1.6.4':
- resolution: {integrity: sha512-N8UpCG5vis1srGACnJ03WG4N9YfkpzcF7Ooztv9uOE3IG7yjxT4wSVpfbTUof2kOM8TmVhgINoIDQ5wxo+CCxQ==}
+ '@unrs/resolver-binding-freebsd-x64@1.7.2':
+ resolution: {integrity: sha512-zKKdm2uMXqLFX6Ac7K5ElnnG5VIXbDlFWzg4WJ8CGUedJryM5A3cTgHuGMw1+P5ziV8CRhnSEgOnurTI4vpHpg==}
cpu: [x64]
os: [freebsd]
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.6.4':
- resolution: {integrity: sha512-Hllz4okH+R2P0YdFivGhrA1gjDLjQrhLmfu37TidpQpcp6tcTK40T9mt7SF8frXuPjd2/YNxXIyowOvswwnfOg==}
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2':
+ resolution: {integrity: sha512-8N1z1TbPnHH+iDS/42GJ0bMPLiGK+cUqOhNbMKtWJ4oFGzqSJk/zoXFzcQkgtI63qMcUI7wW1tq2usZQSb2jxw==}
cpu: [arm]
os: [linux]
- '@unrs/resolver-binding-linux-arm-musleabihf@1.6.4':
- resolution: {integrity: sha512-Mem13rJYfFvBj4xlkuok0zH5qn8vTm9FEm+FyiZeRK/6AFVPc/y596HihKcHIk7djvJ4BYXs7yIZo2ezabE7IA==}
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.7.2':
+ resolution: {integrity: sha512-tjYzI9LcAXR9MYd9rO45m1s0B/6bJNuZ6jeOxo1pq1K6OBuRMMmfyvJYval3s9FPPGmrldYA3mi4gWDlWuTFGA==}
cpu: [arm]
os: [linux]
- '@unrs/resolver-binding-linux-arm64-gnu@1.6.4':
- resolution: {integrity: sha512-kgyNRMgN7Z2pF2GJBHGIxhkN9e0rMOZwWORH3RjGHZnjtdrThxyQSMUGjK5MDM6+V3waPL0Kv9Y6pJnYxlvcXA==}
+ '@unrs/resolver-binding-linux-arm64-gnu@1.7.2':
+ resolution: {integrity: sha512-jon9M7DKRLGZ9VYSkFMflvNqu9hDtOCEnO2QAryFWgT6o6AXU8du56V7YqnaLKr6rAbZBWYsYpikF226v423QA==}
cpu: [arm64]
os: [linux]
- '@unrs/resolver-binding-linux-arm64-musl@1.6.4':
- resolution: {integrity: sha512-bLlGWp3Z7eiO6sytt5T3NFwiUfvIjYH9wGIVD01lnVOIBxHUjQQo+7Nv+SkZVP+Y7oySlyyrrzn5y9VFn1MLeQ==}
+ '@unrs/resolver-binding-linux-arm64-musl@1.7.2':
+ resolution: {integrity: sha512-c8Cg4/h+kQ63pL43wBNaVMmOjXI/X62wQmru51qjfTvI7kmCy5uHTJvK/9LrF0G8Jdx8r34d019P1DVJmhXQpA==}
cpu: [arm64]
os: [linux]
- '@unrs/resolver-binding-linux-ppc64-gnu@1.6.4':
- resolution: {integrity: sha512-Qt3g8MRemL9h51MCMh4BtQMNzK2JPo2CG8rVeTw8F2xKuUtLRqTsRGitOCbA6cuogv8EezBNyddKKT+bZ70W3g==}
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.7.2':
+ resolution: {integrity: sha512-A+lcwRFyrjeJmv3JJvhz5NbcCkLQL6Mk16kHTNm6/aGNc4FwPHPE4DR9DwuCvCnVHvF5IAd9U4VIs/VvVir5lg==}
cpu: [ppc64]
os: [linux]
- '@unrs/resolver-binding-linux-riscv64-gnu@1.6.4':
- resolution: {integrity: sha512-MFMn6TCZZkaOt90lTC+OzfGuGTcOyNDDB6gqgmHEiNUAz8sfljbhKIyms8e792J/Dsq0H1LSWcNhtMjnRZtv8g==}
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.7.2':
+ resolution: {integrity: sha512-hQQ4TJQrSQW8JlPm7tRpXN8OCNP9ez7PajJNjRD1ZTHQAy685OYqPrKjfaMw/8LiHCt8AZ74rfUVHP9vn0N69Q==}
cpu: [riscv64]
os: [linux]
- '@unrs/resolver-binding-linux-s390x-gnu@1.6.4':
- resolution: {integrity: sha512-RGV8V4VjxH8WhcAqvVuHAv85nbdU87dbcJmarXYuAUPLWC76ptJ32eGY5CM4MmmdU8NA3m4EkiBilSvzSt+BMA==}
+ '@unrs/resolver-binding-linux-riscv64-musl@1.7.2':
+ resolution: {integrity: sha512-NoAGbiqrxtY8kVooZ24i70CjLDlUFI7nDj3I9y54U94p+3kPxwd2L692YsdLa+cqQ0VoqMWoehDFp21PKRUoIQ==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-s390x-gnu@1.7.2':
+ resolution: {integrity: sha512-KaZByo8xuQZbUhhreBTW+yUnOIHUsv04P8lKjQ5otiGoSJ17ISGYArc+4vKdLEpGaLbemGzr4ZeUbYQQsLWFjA==}
cpu: [s390x]
os: [linux]
- '@unrs/resolver-binding-linux-x64-gnu@1.6.4':
- resolution: {integrity: sha512-9SWe0F8kD7+4oD1dLvyHiVXN77PrBKbo46JVuwiCGtv3HnbSgNpjyl/9N4xqsXQScERwRWS6qjjA8fTaedwjRQ==}
+ '@unrs/resolver-binding-linux-x64-gnu@1.7.2':
+ resolution: {integrity: sha512-dEidzJDubxxhUCBJ/SHSMJD/9q7JkyfBMT77Px1npl4xpg9t0POLvnWywSk66BgZS/b2Hy9Y1yFaoMTFJUe9yg==}
cpu: [x64]
os: [linux]
- '@unrs/resolver-binding-linux-x64-musl@1.6.4':
- resolution: {integrity: sha512-EJP5VyeRTPHqm1CEVoeAcGY7z6fmvAl8MGi06NFxdvczRRwazg0SZre+kzYis/Px4jZY6nZwBXMsHamyY0CELg==}
+ '@unrs/resolver-binding-linux-x64-musl@1.7.2':
+ resolution: {integrity: sha512-RvP+Ux3wDjmnZDT4XWFfNBRVG0fMsc+yVzNFUqOflnDfZ9OYujv6nkh+GOr+watwrW4wdp6ASfG/e7bkDradsw==}
cpu: [x64]
os: [linux]
- '@unrs/resolver-binding-wasm32-wasi@1.6.4':
- resolution: {integrity: sha512-/Igzy4K6QTajH0m1PesWaYyor/USENYiX7PQQHHsVvewX9rx2mUwpH0ckOLXKpnLNghm+mzDcEufdgFsZQEK3A==}
+ '@unrs/resolver-binding-wasm32-wasi@1.7.2':
+ resolution: {integrity: sha512-y797JBmO9IsvXVRCKDXOxjyAE4+CcZpla2GSoBQ33TVb3ILXuFnMrbR/QQZoauBYeOFuu4w3ifWLw52sdHGz6g==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@unrs/resolver-binding-win32-arm64-msvc@1.6.4':
- resolution: {integrity: sha512-MXx3CyX+XbNJm5HXgZrkiL1JbizaRbpEE1GnXYxIOjfBDFqzWl4tge5Fdp+sBtGeGPB42q6ZBnECEa/tzSWa6A==}
+ '@unrs/resolver-binding-win32-arm64-msvc@1.7.2':
+ resolution: {integrity: sha512-gtYTh4/VREVSLA+gHrfbWxaMO/00y+34htY7XpioBTy56YN2eBjkPrY1ML1Zys89X3RJDKVaogzwxlM1qU7egg==}
cpu: [arm64]
os: [win32]
- '@unrs/resolver-binding-win32-ia32-msvc@1.6.4':
- resolution: {integrity: sha512-ZDIZ4HMZI8GNEUfBaM844O0LfguwDBvpu7orTv+9kxPOAW/6Cxyh768f/qlHIl8Xp0AHZOSJKLc1UneMdt9O6w==}
+ '@unrs/resolver-binding-win32-ia32-msvc@1.7.2':
+ resolution: {integrity: sha512-Ywv20XHvHTDRQs12jd3MY8X5C8KLjDbg/jyaal/QLKx3fAShhJyD4blEANInsjxW3P7isHx1Blt56iUDDJO3jg==}
cpu: [ia32]
os: [win32]
- '@unrs/resolver-binding-win32-x64-msvc@1.6.4':
- resolution: {integrity: sha512-jZIMKjruJy9ddDIZBLGzyi2rqfRzi3lNQkQTuaQkcpUMSy+HValMS/fvRHZIB0BGw/fdu2uCDfpxB6dNwB1Ung==}
+ '@unrs/resolver-binding-win32-x64-msvc@1.7.2':
+ resolution: {integrity: sha512-friS8NEQfHaDbkThxopGk+LuE5v3iY0StruifjQEt7SLbA46OnfgMO15sOTkbpJkol6RB+1l1TYPXh0sCddpvA==}
cpu: [x64]
os: [win32]
@@ -3494,20 +3560,20 @@ packages:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitest/coverage-v8@3.1.2':
- resolution: {integrity: sha512-XDdaDOeaTMAMYW7N63AqoK32sYUWbXnTkC6tEbVcu3RlU1bB9of32T+PGf8KZvxqLNqeXhafDFqCkwpf2+dyaQ==}
+ '@vitest/coverage-v8@3.1.3':
+ resolution: {integrity: sha512-cj76U5gXCl3g88KSnf80kof6+6w+K4BjOflCl7t6yRJPDuCrHtVu0SgNYOUARJOL5TI8RScDbm5x4s1/P9bvpw==}
peerDependencies:
- '@vitest/browser': 3.1.2
- vitest: 3.1.2
+ '@vitest/browser': 3.1.3
+ vitest: 3.1.3
peerDependenciesMeta:
'@vitest/browser':
optional: true
- '@vitest/expect@3.1.2':
- resolution: {integrity: sha512-O8hJgr+zREopCAqWl3uCVaOdqJwZ9qaDwUP7vy3Xigad0phZe9APxKhPcDNqYYi0rX5oMvwJMSCAXY2afqeTSA==}
+ '@vitest/expect@3.1.3':
+ resolution: {integrity: sha512-7FTQQuuLKmN1Ig/h+h/GO+44Q1IlglPlR2es4ab7Yvfx+Uk5xsv+Ykk+MEt/M2Yn/xGmzaLKxGw2lgy2bwuYqg==}
- '@vitest/mocker@3.1.2':
- resolution: {integrity: sha512-kOtd6K2lc7SQ0mBqYv/wdGedlqPdM/B38paPY+OwJ1XiNi44w3Fpog82UfOibmHaV9Wod18A09I9SCKLyDMqgw==}
+ '@vitest/mocker@3.1.3':
+ resolution: {integrity: sha512-PJbLjonJK82uCWHjzgBJZuR7zmAOrSvKk1QBxrennDIgtH4uK0TB1PvYmc0XBCigxxtiAVPfWtAdy4lpz8SQGQ==}
peerDependencies:
msw: ^2.4.9
vite: ^5.0.0 || ^6.0.0
@@ -3517,34 +3583,34 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@3.1.2':
- resolution: {integrity: sha512-R0xAiHuWeDjTSB3kQ3OQpT8Rx3yhdOAIm/JM4axXxnG7Q/fS8XUwggv/A4xzbQA+drYRjzkMnpYnOGAc4oeq8w==}
+ '@vitest/pretty-format@3.1.3':
+ resolution: {integrity: sha512-i6FDiBeJUGLDKADw2Gb01UtUNb12yyXAqC/mmRWuYl+m/U9GS7s8us5ONmGkGpUUo7/iAYzI2ePVfOZTYvUifA==}
- '@vitest/runner@3.1.2':
- resolution: {integrity: sha512-bhLib9l4xb4sUMPXnThbnhX2Yi8OutBMA8Yahxa7yavQsFDtwY/jrUZwpKp2XH9DhRFJIeytlyGpXCqZ65nR+g==}
+ '@vitest/runner@3.1.3':
+ resolution: {integrity: sha512-Tae+ogtlNfFei5DggOsSUvkIaSuVywujMj6HzR97AHK6XK8i3BuVyIifWAm/sE3a15lF5RH9yQIrbXYuo0IFyA==}
- '@vitest/snapshot@3.1.2':
- resolution: {integrity: sha512-Q1qkpazSF/p4ApZg1vfZSQ5Yw6OCQxVMVrLjslbLFA1hMDrT2uxtqMaw8Tc/jy5DLka1sNs1Y7rBcftMiaSH/Q==}
+ '@vitest/snapshot@3.1.3':
+ resolution: {integrity: sha512-XVa5OPNTYUsyqG9skuUkFzAeFnEzDp8hQu7kZ0N25B1+6KjGm4hWLtURyBbsIAOekfWQ7Wuz/N/XXzgYO3deWQ==}
- '@vitest/spy@3.1.2':
- resolution: {integrity: sha512-OEc5fSXMws6sHVe4kOFyDSj/+4MSwst0ib4un0DlcYgQvRuYQ0+M2HyqGaauUMnjq87tmUaMNDxKQx7wNfVqPA==}
+ '@vitest/spy@3.1.3':
+ resolution: {integrity: sha512-x6w+ctOEmEXdWaa6TO4ilb7l9DxPR5bwEb6hILKuxfU1NqWT2mpJD9NJN7t3OTfxmVlOMrvtoFJGdgyzZ605lQ==}
- '@vitest/ui@3.1.2':
- resolution: {integrity: sha512-+YPgKiLpFEyBVJNHDkRcSDcLrrnr20lyU4HQoI9Jtq1MdvoX8usql9h38mQw82MBU1Zo5BPC6sw+sXZ6NS18CQ==}
+ '@vitest/ui@3.1.3':
+ resolution: {integrity: sha512-IipSzX+8DptUdXN/GWq3hq5z18MwnpphYdOMm0WndkRGYELzfq7NDP8dMpZT7JGW1uXFrIGxOW2D0Xi++ulByg==}
peerDependencies:
- vitest: 3.1.2
+ vitest: 3.1.3
- '@vitest/utils@3.1.2':
- resolution: {integrity: sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==}
+ '@vitest/utils@3.1.3':
+ resolution: {integrity: sha512-2Ltrpht4OmHO9+c/nmHtF09HWiyWdworqnHIwjfvDyWjuwKbdkcS9AnhsDn+8E2RM4x++foD1/tNuLPVvWG1Rg==}
- '@volar/language-core@2.4.12':
- resolution: {integrity: sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==}
+ '@volar/language-core@2.4.13':
+ resolution: {integrity: sha512-MnQJ7eKchJx5Oz+YdbqyFUk8BN6jasdJv31n/7r6/WwlOOv7qzvot6B66887l2ST3bUW4Mewml54euzpJWA6bg==}
- '@volar/source-map@2.4.12':
- resolution: {integrity: sha512-bUFIKvn2U0AWojOaqf63ER0N/iHIBYZPpNGogfLPQ68F5Eet6FnLlyho7BS0y2HJ1jFhSif7AcuTx1TqsCzRzw==}
+ '@volar/source-map@2.4.13':
+ resolution: {integrity: sha512-l/EBcc2FkvHgz2ZxV+OZK3kMSroMr7nN3sZLF2/f6kWW66q8+tEL4giiYyFjt0BcubqJhBt6soYIrAPhg/Yr+Q==}
- '@volar/typescript@2.4.12':
- resolution: {integrity: sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==}
+ '@volar/typescript@2.4.13':
+ resolution: {integrity: sha512-Ukz4xv84swJPupZeoFsQoeJEOm7U9pqsEnaGGgt5ni3SCTa22m8oJP5Nng3Wed7Uw5RBELdLxxORX8YhJPyOgQ==}
'@vue-macros/common@1.16.1':
resolution: {integrity: sha512-Pn/AWMTjoMYuquepLZP813BIcq8DTZiNCoaceuNlvaYuOTd8DqBZWc5u0uOMQZMInwME1mdSmmBAcTluiV9Jtg==}
@@ -3589,19 +3655,19 @@ packages:
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@7.7.5':
- resolution: {integrity: sha512-HYV3tJGARROq5nlVMJh5KKHk7GU8Au3IrrmNNqr978m0edxgpHgYPDoNUGrvEgIbObz09SQezFR3A1EVmB5WZg==}
+ '@vue/devtools-api@7.7.6':
+ resolution: {integrity: sha512-b2Xx0KvXZObePpXPYHvBRRJLDQn5nhKjXh7vUhMEtWxz1AYNFOVIsh5+HLP8xDGL7sy+Q7hXeUxPHB/KgbtsPw==}
- '@vue/devtools-core@7.7.5':
- resolution: {integrity: sha512-ElKr0NDor57gVaT+gMQ8kcVP4uFGqHcxuuQndW/rPwh6aHWvEcUL3sxL8cEk+e1Rdt28kS88erpsiIMO6hEENQ==}
+ '@vue/devtools-core@7.7.6':
+ resolution: {integrity: sha512-ghVX3zjKPtSHu94Xs03giRIeIWlb9M+gvDRVpIZ/cRIxKHdW6HE/sm1PT3rUYS3aV92CazirT93ne+7IOvGUWg==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-kit@7.7.5':
- resolution: {integrity: sha512-S9VAVJYVAe4RPx2JZb9ZTEi0lqTySz2CBeF0wHT5D3dkTLnT9yMMGegKNl4b2EIELwLSkcI9bl2qp0/jW+upqA==}
+ '@vue/devtools-kit@7.7.6':
+ resolution: {integrity: sha512-geu7ds7tem2Y7Wz+WgbnbZ6T5eadOvozHZ23Atk/8tksHMFOFylKi1xgGlQlVn0wlkEf4hu+vd5ctj1G4kFtwA==}
- '@vue/devtools-shared@7.7.5':
- resolution: {integrity: sha512-QBjG72RfpM0DKtpns2RZOxBltO226kOAls9e4Lri6YxS2gWTgL0H+wj1R2K76lxxIeOrqo4+2Ty6RQnzv+WSTQ==}
+ '@vue/devtools-shared@7.7.6':
+ resolution: {integrity: sha512-yFEgJZ/WblEsojQQceuyK6FzpFDx4kqrz2ohInxNj5/DnhoX023upTv4OD6lNPLAA5LLkbwPVb10o/7b+Y4FVA==}
'@vue/language-core@2.2.8':
resolution: {integrity: sha512-rrzB0wPGBvcwaSNRriVWdNAbHQWSf0NlGqgKHK5mEkXpefjUlVRP62u03KvwZpvKVjRnBIQ/Lwre+Mx9N6juUQ==}
@@ -3763,6 +3829,10 @@ packages:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
+
acorn-import-attributes@1.9.5:
resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
peerDependencies:
@@ -3796,8 +3866,8 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@5.23.4:
- resolution: {integrity: sha512-QzAKFHl3fm53s44VHrTdEo0TkpL3XVUYQpnZy1r6/EHvMAyIg+O4hwprzlsNmcCHTNyVcF2S13DAUn7XhkC6qg==}
+ algoliasearch@5.24.0:
+ resolution: {integrity: sha512-CkaUygzZ91Xbw11s0CsHMawrK3tl+Ue57725HGRgRzKgt2Z4wvXVXRCtQfvzh8K7Tp4Zp7f1pyHAtMROtTJHxg==}
engines: {node: '>= 14.0.0'}
alien-signals@1.0.13:
@@ -3872,8 +3942,8 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- ast-kit@1.4.2:
- resolution: {integrity: sha512-lvGehj1XsrIoQrD5CfPduIzQbcpuX2EPjlk/vDMDQF9U9HLRB6WwMTdighj5n52hdhh8xg9VgPTU7Q25MuJ/rw==}
+ ast-kit@1.4.3:
+ resolution: {integrity: sha512-MdJqjpodkS5J149zN0Po+HPshkTdUyrvF7CKTafUgv69vBSPtncrj+3IiUgqdd7ElIEkbeXCsEouBUwLrw9Ilg==}
engines: {node: '>=16.14.0'}
ast-walker-scope@0.6.2:
@@ -3884,8 +3954,8 @@ packages:
resolution: {integrity: sha512-zTOcMXHkj0ZsNrOzkrpblALruIynlNJuDtdRHxDkO/SnR2WvQxbuZP6J2iTGB8h2DzfeUOGh6wWZUDhKwMK7uw==}
engines: {node: '>=18.12.0'}
- astro@5.7.5:
- resolution: {integrity: sha512-c59YuYiXyWWnUMOBlDczrjqKzF0dJQP20EP9vqDggcyKm//tEt9iJHNwoYq4r3UeO9UJCwlGK8FwaGTAwwF3IA==}
+ astro@5.7.12:
+ resolution: {integrity: sha512-UQOItiZz2hcv9PlHTQ6dNqFDIVNPnmwk6eyAjJqPE9O8EDHZK2JKtTRD0CBFN2Uqr0RE0TWP2gqDpLfsa5dJEA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
hasBin: true
@@ -3937,6 +4007,10 @@ packages:
blob-to-buffer@1.2.9:
resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==}
+ body-parser@2.2.0:
+ resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==}
+ engines: {node: '>=18'}
+
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -3957,8 +4031,8 @@ packages:
brotli@1.3.3:
resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==}
- browserslist@4.24.4:
- resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ browserslist@4.24.5:
+ resolution: {integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -3989,7 +4063,7 @@ packages:
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
- esbuild: ^0.25.3
+ esbuild: ^0.25.4
byte-size@9.0.1:
resolution: {integrity: sha512-YLe9x3rabBrcI0cueCdLS2l5ONUKywcRpTs02B8KP9/Cimhj7o3ZccGrPnRvcbyHMbb7W79/3MUJl7iGgTXKEw==}
@@ -4000,6 +4074,10 @@ packages:
'@75lb/nature':
optional: true
+ bytes@3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
+
c12@3.0.3:
resolution: {integrity: sha512-uC3MacKBb0Z15o5QWCHvHWj5Zv34pGQj9P+iXKSpTuSGFS0KKhUWf4t9AJ+gWjYOdmWCPEGpEzm8sS0iqbpo1w==}
peerDependencies:
@@ -4012,6 +4090,14 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
+ engines: {node: '>= 0.4'}
+
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -4023,8 +4109,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001715:
- resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==}
+ caniuse-lite@1.0.30001717:
+ resolution: {integrity: sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -4171,9 +4257,6 @@ packages:
compare-versions@6.1.1:
resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
- compatx@0.1.8:
- resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==}
-
compatx@0.2.0:
resolution: {integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==}
@@ -4194,6 +4277,14 @@ packages:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
+ content-disposition@1.0.0:
+ resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==}
+ engines: {node: '>= 0.6'}
+
+ content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
@@ -4203,6 +4294,14 @@ packages:
cookie-es@2.0.0:
resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==}
+ cookie-signature@1.2.2:
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
+ engines: {node: '>=6.6.0'}
+
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
+ engines: {node: '>= 0.6'}
+
cookie@1.0.2:
resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
engines: {node: '>=18'}
@@ -4214,12 +4313,16 @@ packages:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
- core-js-compat@3.41.0:
- resolution: {integrity: sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==}
+ core-js-compat@3.42.0:
+ resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ cors@2.8.5:
+ resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
+ engines: {node: '>= 0.10'}
+
crc-32@1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
engines: {node: '>=0.8'}
@@ -4240,46 +4343,46 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crossws@0.3.4:
- resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==}
+ crossws@0.3.5:
+ resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
- cspell-config-lib@8.19.2:
- resolution: {integrity: sha512-FW7rYL952LSIzTpesmTw856dIV7jhKFvbH/Ug9i74/omC57vsA/caLH8SqYXS+Z2PslihBKKCU8j2aB2qiybMQ==}
- engines: {node: '>=18'}
+ cspell-config-lib@9.0.1:
+ resolution: {integrity: sha512-hbeyU6cY4NPKh69L4QpBZgGz00f7rLk10xPlCo6MxEmCqSOTuXXvDEUR51d2ED69G+GyFAeZi5VU9IdJ4jhvzQ==}
+ engines: {node: '>=20'}
- cspell-dictionary@8.19.2:
- resolution: {integrity: sha512-YEVM61V0d4TmxB0Dtk3L5I7Rz3WA8Y4vjxO7rPX2piieMwp7T7l4aHb/ZpHx7JqsJSSzp9vjtgVrwVE0gCJpZw==}
- engines: {node: '>=18'}
+ cspell-dictionary@9.0.1:
+ resolution: {integrity: sha512-I9gjRpfV4djxN0i2p9OzWIrkjtUaGUyVE9atvRbkHUMeqDUhC2Qt0Mb9tnF8I7qnHeZt+U44vUa9Dg7yrJ+k4Q==}
+ engines: {node: '>=20'}
- cspell-gitignore@8.19.2:
- resolution: {integrity: sha512-GxWHMow+o5RqVYw9WjIbExiWE1abnF0PqrbVh3gcwCoM/xYTBfGUDBnpD/PQB4uqH1oDolMfu1wp5/J1D97OFw==}
- engines: {node: '>=18'}
+ cspell-gitignore@9.0.1:
+ resolution: {integrity: sha512-xjgOmeGbHEaeF0erRQ2QXwqxWqGDiI4mu+NjCL7ZHPoAM5y8PEO6IbxVNabIB1xC4QAborbtEQ/8ydDWLJcPoQ==}
+ engines: {node: '>=20'}
hasBin: true
- cspell-glob@8.19.2:
- resolution: {integrity: sha512-5/UBFLMh+3vhAyI3ep4Oqrt0rAb1mQHXmmpwk+WDpiS9CoSjoATIvibH5Ln9riwiIt1Bo7lH0BqfEQ3NtcegUg==}
- engines: {node: '>=18'}
+ cspell-glob@9.0.1:
+ resolution: {integrity: sha512-dQU/ln6J9Qe31zk1cLJnq/WNAjRrTUig1GG8WA2oK1jHZKY9VbyJLb5DUFnDUx35cI0jdOEnGSCWi8qNjHSc1Q==}
+ engines: {node: '>=20'}
- cspell-grammar@8.19.2:
- resolution: {integrity: sha512-jrgMWIivZ9HFLXqdkR5eQ7tmvePYYnFRy4Hs1VGpCr36DqPcrURxtONFJuLCJwKl0xRSlhPIeC8fpIeEwtxUvQ==}
- engines: {node: '>=18'}
+ cspell-grammar@9.0.1:
+ resolution: {integrity: sha512-FZ1z1p3pslfotZT/W/VRZjB4S+z0ETrTbNmQ5pGmhdY0nm7Slmg+8nIJluLEjBneBGTJIOcLjYykwS2vI6jzxw==}
+ engines: {node: '>=20'}
hasBin: true
- cspell-io@8.19.2:
- resolution: {integrity: sha512-qt0QaUCw1/atoA960ev8z2ryT5+vGpXYcp71bzE52PPBACW2vKhwlBfc/4YpCC8pcNQGj6N9hzEX+G6nDTHnUw==}
- engines: {node: '>=18'}
+ cspell-io@9.0.1:
+ resolution: {integrity: sha512-L5fZY0glVeQb6nmt1WL1wKzZzoHJUkBQ9BGCrwqSXIrjZrYmBNSKixCjo6o9n2keRUwpNjsvZj1TQDKDV+FsXA==}
+ engines: {node: '>=20'}
- cspell-lib@8.19.2:
- resolution: {integrity: sha512-we1IeovendX+vRhdOQpOdwFX7CRxLDMMGcm0Sy6Duo66IKerPYeSJwbTfQi8G8e5ZIU14F0psnjoBaOBcqpLrg==}
- engines: {node: '>=18'}
+ cspell-lib@9.0.1:
+ resolution: {integrity: sha512-F4vJG6GmAGVAuhgcepO12UtG7yev7Rcfa31MLIyYNTrd5NeORzM+GTHnL970FlEflwYPYjcSTGwkyowQ+ZbmDg==}
+ engines: {node: '>=20'}
- cspell-trie-lib@8.19.2:
- resolution: {integrity: sha512-/0DuCmBwz1B3yOlxCgib98uVVdIBOp/PNWEA3pmmjPOiWvOb/bBdw5C5o+ghnf93scDZQJF3l8a2sAQmsZkkIw==}
- engines: {node: '>=18'}
+ cspell-trie-lib@9.0.1:
+ resolution: {integrity: sha512-gIupiHwLdsQun79biJgiqmXffKUGzFjGLFEeVptI2Zy5Oa3XhRJsHap4PyeleErONkpzxMG1tgpOWzhOqwl65Q==}
+ engines: {node: '>=20'}
- cspell@8.19.2:
- resolution: {integrity: sha512-CwH6eARg9nQE5WDSGFac4gde3S8L+1jhgd5rDe4enoGXqW0hBwsDvbIPCaiQTjG4KN+3u2QFxNMsX5lLBJjTmw==}
- engines: {node: '>=18'}
+ cspell@9.0.1:
+ resolution: {integrity: sha512-AJqsX+3eSTz9GmIuyEZUzCCTbvCPw6+Nv7UYa4PCn7vNV3XEb5LHTp5i9y2i65fNaeNEcQXLrLYoY/JcBFmUSQ==}
+ engines: {node: '>=20'}
hasBin: true
css-declaration-sorter@7.2.0:
@@ -4315,23 +4418,23 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@7.0.6:
- resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
+ cssnano-preset-default@7.0.7:
+ resolution: {integrity: sha512-jW6CG/7PNB6MufOrlovs1TvBTEVmhY45yz+bd0h6nw3h6d+1e+/TX+0fflZ+LzvZombbT5f+KC063w9VoHeHow==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- cssnano-utils@5.0.0:
- resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
+ cssnano-utils@5.0.1:
+ resolution: {integrity: sha512-ZIP71eQgG9JwjVZsTPSqhc6GHgEr53uJ7tK5///VfyWj6Xp2DBmixWHqJgPno+PqATzn48pL42ww9x5SSGmhZg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- cssnano@7.0.6:
- resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
+ cssnano@7.0.7:
+ resolution: {integrity: sha512-evKu7yiDIF7oS+EIpwFlMF730ijRyLFaM2o5cTxRGJR9OKHKkc+qP443ZEVR9kZG0syaAJJCPJyfv5pbrxlSng==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
csso@5.0.5:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
@@ -4467,10 +4570,6 @@ packages:
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- doctrine@3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
-
dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
@@ -4496,6 +4595,10 @@ packages:
resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
@@ -4505,11 +4608,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.140:
- resolution: {integrity: sha512-o82Rj+ONp4Ip7Cl1r7lrqx/pXhbp/lh9DpKcMNscFJdh8ebyRofnc7Sh01B4jx403RI0oqTBvlZ7OBIZLMr2+Q==}
-
- emoji-regex-xs@1.0.0:
- resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
+ electron-to-chromium@1.5.151:
+ resolution: {integrity: sha512-Rl6uugut2l9sLojjS4H4SAr3A4IgACMLgpuEMPYCVcKydzfyPrn5absNRju38IhQOf/NwjJY8OGWjlteqYeBCA==}
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -4553,14 +4653,26 @@ packages:
errx@0.1.0:
resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+
es-module-lexer@1.7.0:
resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
- es-toolkit@1.35.0:
- resolution: {integrity: sha512-kVHyrRoC0eLc1hWJ6npG8nNFtOG+nWfcMI+XE0RaFO0gxd6Ions8r0O/U64QyZgY7IeidUnS5oZlRZYUgMGCAg==}
+ es-object-atoms@1.1.1:
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+ engines: {node: '>= 0.4'}
+
+ es-toolkit@1.37.2:
+ resolution: {integrity: sha512-ADDfk+pPFF0ofMpRAIc6on01p8heiuwuuJsYLzTP4UOjxVK9QsE2+0D1Q4J/zX2XBo6ac+27H5++YBIwmGAX/g==}
- esbuild@0.25.3:
- resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
+ esbuild@0.25.4:
+ resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==}
engines: {node: '>=18'}
hasBin: true
@@ -4600,8 +4712,8 @@ packages:
peerDependencies:
eslint: ^9.5.0
- eslint-config-prettier@10.1.2:
- resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==}
+ eslint-config-prettier@10.1.3:
+ resolution: {integrity: sha512-vDo4d9yQE+cS2tdIT4J02H/16veRvkHgiLDRpej+WL67oCfbOb97itZXn8wMPJ/GsiEBVjrjs//AVNw2Cp1EcA==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
@@ -4645,14 +4757,14 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-import-x@4.10.6:
- resolution: {integrity: sha512-sWIaoezWK7kuPA7u29ULsO8WzlYYC8uivaipsazyHiZDykjNsuPtwRsYZIK2luqc5wppwXOop8iFdW7xffo/Xw==}
+ eslint-plugin-import-x@4.11.0:
+ resolution: {integrity: sha512-NAaYY49342gj09QGvwnFFl5KcD5aLzjAz97Lo+upnN8MzjEGSIlmL5sxCYGqtIeMjw8fSRDFZIp2xjRLT+yl4Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- eslint-plugin-jsdoc@50.6.9:
- resolution: {integrity: sha512-7/nHu3FWD4QRG8tCVqcv+BfFtctUtEDWc29oeDXB4bwmDM2/r1ndl14AG/2DUntdqH7qmpvdemJKwb3R97/QEw==}
+ eslint-plugin-jsdoc@50.6.11:
+ resolution: {integrity: sha512-k4+MnBCGR8cuIB5MZ++FGd4gbXxjob2rX1Nq0q3nWFF4xSGZENTgTLZSjb+u9B8SAnP6lpGV2FJrBjllV3pVSg==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -4669,8 +4781,8 @@ packages:
peerDependencies:
eslint: '>=8.23.0'
- eslint-plugin-perfectionist@4.12.1:
- resolution: {integrity: sha512-0w0zF4ugHqFfsSFfZcg/pQTUoKkSJOYqqFPURRgA8hkpZsbYksCO4rfpDdiMkOgCJ3y4wxPvwKm3eTrP7jl7zg==}
+ eslint-plugin-perfectionist@4.12.3:
+ resolution: {integrity: sha512-V0dmpq6fBbn0BYofHsiRuuY9wgkKMDkdruM0mIRBIJ8XZ8vEaTAZqFsywm40RuWNVnduWBt5HO1ZZ+flE2yqjg==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
eslint: '>=8.45.0'
@@ -4680,8 +4792,8 @@ packages:
peerDependencies:
eslint: ^9.0.0
- eslint-plugin-prettier@5.2.6:
- resolution: {integrity: sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==}
+ eslint-plugin-prettier@5.4.0:
+ resolution: {integrity: sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
'@types/eslint': '>=8.0.0'
@@ -4706,8 +4818,8 @@ packages:
peerDependencies:
eslint: '*'
- eslint-plugin-unicorn@58.0.0:
- resolution: {integrity: sha512-fc3iaxCm9chBWOHPVjn+Czb/wHS0D2Mko7wkOdobqo9R2bbFObc4LyZaLTNy0mhZOP84nKkLhTUQxlLOZ7EjKw==}
+ eslint-plugin-unicorn@59.0.1:
+ resolution: {integrity: sha512-EtNXYuWPUmkgSU2E7Ttn57LbRREQesIP1BiLn7OZLKodopKfDXfBUkC/0j6mpw2JExwf43Uf3qLSvrSvppgy8Q==}
engines: {node: ^18.20.0 || ^20.10.0 || >=21.0.0}
peerDependencies:
eslint: '>=9.22.0'
@@ -4721,8 +4833,8 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-vue@10.0.0:
- resolution: {integrity: sha512-XKckedtajqwmaX6u1VnECmZ6xJt+YvlmMzBPZd+/sI3ub2lpYZyFnsyWo7c3nMOQKJQudeyk1lw/JxdgeKT64w==}
+ eslint-plugin-vue@10.1.0:
+ resolution: {integrity: sha512-/VTiJ1eSfNLw6lvG9ENySbGmcVvz6wZ9nA7ZqXlLBY2RkaF15iViYKxglWiIch12KiLAj0j1iXPYU6W4wTROFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -4750,8 +4862,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.25.1:
- resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
+ eslint@9.26.0:
+ resolution: {integrity: sha512-Hx0MOjPh6uK9oq9nVsATZKE/Wlbai7KFjfCuw9UHaguDW3x+HF0O5nIi3ud39TWgrTjTO5nHxmL3R1eANinWHQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -4817,6 +4929,14 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
+ eventsource-parser@3.0.1:
+ resolution: {integrity: sha512-VARTJ9CYeuQYb0pZEPbzi740OWFgpHe7AYJ2WFZVnUDUQp5Dk2yJUgF36YsZ81cOyxT0QxmXD2EQpapAouzWVA==}
+ engines: {node: '>=18.0.0'}
+
+ eventsource@3.0.6:
+ resolution: {integrity: sha512-l19WpE2m9hSuyP06+FbuUUf1G+R0SFLrtQfbRb9PRr+oimOfxQhgGCbVaXg5IvZyyTThJsxh6L/srkMiCeBPDA==}
+ engines: {node: '>=18.0.0'}
+
execa@8.0.1:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
@@ -4829,6 +4949,16 @@ packages:
resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==}
engines: {node: '>=12.0.0'}
+ express-rate-limit@7.5.0:
+ resolution: {integrity: sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ express: ^4.11 || 5 || ^5.0.0-beta.1
+
+ express@5.1.0:
+ resolution: {integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==}
+ engines: {node: '>= 18'}
+
exsolve@1.0.5:
resolution: {integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg==}
@@ -4907,6 +5037,10 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
+ finalhandler@2.1.0:
+ resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==}
+ engines: {node: '>= 0.8'}
+
find-up-simple@1.0.1:
resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==}
engines: {node: '>=18'}
@@ -4942,6 +5076,9 @@ packages:
focus-trap@7.6.4:
resolution: {integrity: sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==}
+ fontace@0.3.0:
+ resolution: {integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==}
+
fontkit@2.0.4:
resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==}
@@ -4953,6 +5090,10 @@ packages:
resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
engines: {node: '>=0.4.x'}
+ forwarded@0.2.0:
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+ engines: {node: '>= 0.6'}
+
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
@@ -4969,6 +5110,9 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+
fuse.js@7.1.0:
resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
engines: {node: '>=10'}
@@ -4992,6 +5136,10 @@ packages:
resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
engines: {node: '>=18'}
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
+
get-port-please@3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
@@ -4999,9 +5147,9 @@ packages:
resolution: {integrity: sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==}
engines: {node: '>=16'}
- get-stdin@9.0.0:
- resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==}
- engines: {node: '>=12'}
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
@@ -5042,8 +5190,8 @@ packages:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
- glob@11.0.1:
- resolution: {integrity: sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==}
+ glob@11.0.2:
+ resolution: {integrity: sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==}
engines: {node: 20 || >=22}
hasBin: true
@@ -5063,14 +5211,18 @@ packages:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
- globals@16.0.0:
- resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
+ globals@16.1.0:
+ resolution: {integrity: sha512-aibexHNbb/jiUSObBgpHLj+sIuUmJnYcgXBlrfsiDZ9rt4aF2TFRbyLgZ2iFQuVZ1K5Mx3FVkbKRSgKrbK3K2g==}
engines: {node: '>=18'}
globby@14.1.0:
resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
engines: {node: '>=18'}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -5089,8 +5241,8 @@ packages:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- h3@1.15.1:
- resolution: {integrity: sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==}
+ h3@1.15.3:
+ resolution: {integrity: sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==}
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
@@ -5100,6 +5252,14 @@ packages:
resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==}
engines: {node: '>=8'}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
+
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+
hast-util-from-html@2.0.3:
resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
@@ -5137,10 +5297,6 @@ packages:
hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- hosted-git-info@7.0.2:
- resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
@@ -5187,8 +5343,8 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- ignore@7.0.3:
- resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==}
+ ignore@7.0.4:
+ resolution: {integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==}
engines: {node: '>= 4'}
image-meta@0.2.1:
@@ -5206,8 +5362,8 @@ packages:
import-meta-resolve@4.1.0:
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
- impound@0.2.2:
- resolution: {integrity: sha512-9CNg+Ly8QjH4FwCUoE9nl1zeqY1NPK1s1P6Btp4L8lJxn8oZLN/0p6RZhitnyEL0BnVWrcVPfbs0Q3x+O/ucHg==}
+ impound@1.0.0:
+ resolution: {integrity: sha512-8lAJ+1Arw2sMaZ9HE2ZmL5zOcMnt18s6+7Xqgq2aUVy4P1nlzAyPtzCDxsk51KVFwHEEdc6OWvUyqwHwhRYaug==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -5217,10 +5373,6 @@ packages:
resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
engines: {node: '>=12'}
- index-to-position@1.1.0:
- resolution: {integrity: sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==}
- engines: {node: '>=18'}
-
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
@@ -5235,6 +5387,10 @@ packages:
resolution: {integrity: sha512-UxC0Yv1Y4WRJiGQxQkP0hfdL0/5/6YvdfOOClRgJ0qppSarkhneSa6UvkMkms0AkdGimSH3Ikqm+6mkMmX7vGA==}
engines: {node: '>=12.22.0'}
+ ipaddr.js@1.9.1:
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+ engines: {node: '>= 0.10'}
+
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
@@ -5299,6 +5455,9 @@ packages:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
+ is-promise@4.0.0:
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
+
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
@@ -5584,6 +5743,10 @@ packages:
resolution: {integrity: sha512-MqIQVVkz+uGEHi3TsHx/czcxxCbRIL7sv5K5DnYw/tI+apY54IbPefV/cmgxp6LoJSEx/TqcHdLs/298afG5QQ==}
engines: {node: '>=6'}
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
mdast-util-definitions@6.0.0:
resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==}
@@ -5635,6 +5798,14 @@ packages:
mdn-data@2.12.2:
resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
+ media-typer@1.1.0:
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
+ engines: {node: '>= 0.8'}
+
+ merge-descriptors@2.0.0:
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
+ engines: {node: '>=18'}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -5855,8 +6026,8 @@ packages:
nanotar@0.2.0:
resolution: {integrity: sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==}
- napi-postinstall@0.1.5:
- resolution: {integrity: sha512-HI5bHONOUYqV+FJvueOSgjRxHTLB25a3xIv59ugAxFe7xRNbW96hyYbMbsKzl+QvFV9mN/SrtHwiU+vYhMwA7Q==}
+ napi-postinstall@0.2.3:
+ resolution: {integrity: sha512-Mi7JISo/4Ij2tDZ2xBE2WH+/KvVlkhA6juEjpEeRAVPNCpN3nxJo/5FhDNKgBcdmcmhaH6JjgST4xY/23ZYK0w==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
@@ -5872,6 +6043,10 @@ packages:
engines: {node: '>= 4.4.x'}
hasBin: true
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -5883,8 +6058,8 @@ packages:
resolution: {integrity: sha512-kOCT/1MCPAxY5iUV3wytNFUMUolzuwd/VF/1KCx7kf6CutrOsTie+84zTGTpgQycjvfLdBBdvBvFLqFD2c0wkQ==}
engines: {node: '>=18'}
- nitropack@2.11.9:
- resolution: {integrity: sha512-SL5L3EDMJFXbEX0zZbNl67jRW+5312UGAkw6t0PGjjP1cuLULvR9trhx2rz/RYltRCfzrJG1hp6j3vxxhDLohg==}
+ nitropack@2.11.11:
+ resolution: {integrity: sha512-KnWkajf2ZIsjr7PNeENvDRi87UdMrn8dRTe/D/Ak3Ud6sbC7ZCArVGeosoY7WZvsvLBN1YAwm//34Bq4dKkAaw==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -5930,10 +6105,6 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- normalize-package-data@6.0.2:
- resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -5953,8 +6124,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nuxt@3.16.2:
- resolution: {integrity: sha512-yjIC/C4HW8Pd+m0ACGliEF0HnimXYGYvUzjOsTiLQKkDDt2T+djyZ+pCl9BfhQBA8rYmnsym2jUI+ubjv1iClw==}
+ nuxt@3.17.2:
+ resolution: {integrity: sha512-zPEGeGlHoMCFf+Y9I7iEZKhdfsRq0Zf2qE8wEEcjP9T6omzm776h9KVzoj3+qPL1v0rGzSyCFslFtxk+Ey6neA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -5975,6 +6146,10 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+ engines: {node: '>= 0.4'}
+
ofetch@1.4.1:
resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
@@ -5989,6 +6164,9 @@ packages:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
+ once@1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
@@ -5997,14 +6175,14 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- oniguruma-parser@0.11.2:
- resolution: {integrity: sha512-F7Ld4oDZJCI5/wCZ8AOffQbqjSzIRpKH7I/iuSs1SkhZeCj0wS6PMZ4W6VA16TWHrAo0Y9bBKEJOe7tvwcTXnw==}
+ oniguruma-parser@0.12.1:
+ resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
- oniguruma-to-es@4.2.0:
- resolution: {integrity: sha512-MDPs6KSOLS0tKQ7joqg44dRIRZUyotfTy0r+7oEEs6VwWWP0+E2PPDYWMFN0aqOjRyWHBYq7RfKw9GQk2S2z5g==}
+ oniguruma-to-es@4.3.3:
+ resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==}
- open@10.1.1:
- resolution: {integrity: sha512-zy1wx4+P3PfhXSEPJNtZmJXfhkkIaxU1VauWIrDZw1O7uJRDRJtKr9n3Ic4NgbA16KyOxOXO2ng9gYwCdXuSXA==}
+ open@10.1.2:
+ resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==}
engines: {node: '>=18'}
open@8.4.2:
@@ -6015,19 +6193,22 @@ packages:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- oxc-minify@0.65.0:
- resolution: {integrity: sha512-qL+93NLoI2mi0PhG4TBgQ5nCRt4H6J46YEyKuxQ/5E31TnHblfo2Qbr8X/sFmTN3Rbjitl1Jd5ox305RhE1UVg==}
+ oxc-minify@0.68.1:
+ resolution: {integrity: sha512-fZ7nA/ZGwvKFU8tY/SeM9o5HdC3XJa/xZ9WMZpVzv8keyAlPp83AdqCrDIiULPqUNq97PPiqTF6Snyi2y8Mlpw==}
engines: {node: '>=14.0.0'}
- oxc-parser@0.65.0:
- resolution: {integrity: sha512-2u3iUChO386K2sBBxTPCKweoJfbo4qLGfOJN964yEg6KmHadp4daWklhS56UUaHT2Qj057brG/G7WuyIP10lUg==}
+ oxc-parser@0.68.1:
+ resolution: {integrity: sha512-dHwz+xP9r1GTvqyywfws4j7EEP/OaeTpHEjTcvIjViB/R2IdUn52AnoUFNjpw8yRU52XVE76rOA4IEj7I0EjnA==}
engines: {node: '>=14.0.0'}
oxc-resolver@6.0.0:
resolution: {integrity: sha512-XbjFKJrpQiVl4XlJE44ly+fNdV5+adm8b/Ax9EIGYpA160PVgYVRUfmdYD1SHOO8z1oZ+CFNZ4/A3EUrNP+/cA==}
- oxc-transform@0.65.0:
- resolution: {integrity: sha512-TWAMi8zVvORQw545O1/1irpbMPDQGD6ernen5QyY5PCL9nj3RqgR1ULlQiHVDXEl2rW+OtHF8KS0ItAUyOfQ+Q==}
+ oxc-resolver@8.0.0:
+ resolution: {integrity: sha512-qY7JxZ9FPL1n4hcLi5y8JVKVLRUbFLw9PZ0zsK/xdIHJpJOu4DLEGXepyNjPtnTY+WDAj75LR+JjbDHj0sqlBA==}
+
+ oxc-transform@0.68.1:
+ resolution: {integrity: sha512-a3P3cdSp8rUAMmL22QcM1+Hcs12c/0/Gj9brUQfhXARCbxZXDKocVGlXi5BAsqjsQjM5rFMC6ef2HuuQHHN+gA==}
engines: {node: '>=14.0.0'}
p-limit@3.1.0:
@@ -6053,11 +6234,8 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- package-manager-detector@0.2.11:
- resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
-
- package-manager-detector@1.2.0:
- resolution: {integrity: sha512-PutJepsOtsqVfUsxCzgTTpyXmiAgvKptIgY4th5eq5UXXFhj5PxfQ9hnGkypMeovpAvVshFRItoFHYO18TCOqA==}
+ package-manager-detector@1.3.0:
+ resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==}
pako@0.2.9:
resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
@@ -6070,13 +6248,8 @@ packages:
resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
engines: {node: '>=8'}
- parse-imports@2.2.1:
- resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
- engines: {node: '>= 18'}
-
- parse-json@8.3.0:
- resolution: {integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==}
- engines: {node: '>=18'}
+ parse-imports-exports@0.2.4:
+ resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==}
parse-latin@7.0.0:
resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==}
@@ -6092,6 +6265,9 @@ packages:
parse-path@7.1.0:
resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==}
+ parse-statements@1.0.11:
+ resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==}
+
parse-url@9.2.0:
resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==}
engines: {node: '>=14.13.0'}
@@ -6129,6 +6305,10 @@ packages:
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
engines: {node: 20 || >=22}
+ path-to-regexp@8.2.0:
+ resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==}
+ engines: {node: '>=16'}
+
path-type@6.0.0:
resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
engines: {node: '>=18'}
@@ -6165,6 +6345,10 @@ packages:
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
+ pkce-challenge@5.0.0:
+ resolution: {integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==}
+ engines: {node: '>=16.20.0'}
+
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
@@ -6189,41 +6373,41 @@ packages:
peerDependencies:
postcss: ^8.4.38
- postcss-colormin@7.0.2:
- resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==}
+ postcss-colormin@7.0.3:
+ resolution: {integrity: sha512-xZxQcSyIVZbSsl1vjoqZAcMYYdnJsIyG8OvqShuuqf12S88qQboxxEy0ohNCOLwVPXTU+hFHvJPACRL2B5ohTA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-convert-values@7.0.4:
- resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
+ postcss-convert-values@7.0.5:
+ resolution: {integrity: sha512-0VFhH8nElpIs3uXKnVtotDJJNX0OGYSZmdt4XfSfvOMrFw1jKfpwpZxfC4iN73CTM/MWakDEmsHQXkISYj4BXw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-comments@7.0.3:
- resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
+ postcss-discard-comments@7.0.4:
+ resolution: {integrity: sha512-6tCUoql/ipWwKtVP/xYiFf1U9QgJ0PUvxN7pTcsQ8Ns3Fnwq1pU5D5s1MhT/XySeLq6GXNvn37U46Ded0TckWg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-duplicates@7.0.1:
- resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
+ postcss-discard-duplicates@7.0.2:
+ resolution: {integrity: sha512-eTonaQvPZ/3i1ASDHOKkYwAybiM45zFIc7KXils4mQmHLqIswXD9XNOKEVxtTFnsmwYzF66u4LMgSr0abDlh5w==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-empty@7.0.0:
- resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
+ postcss-discard-empty@7.0.1:
+ resolution: {integrity: sha512-cFrJKZvcg/uxB6Ijr4l6qmn3pXQBna9zyrPC+sK0zjbkDUZew+6xDltSF7OeB7rAtzaaMVYSdbod+sZOCWnMOg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-overridden@7.0.0:
- resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==}
+ postcss-discard-overridden@7.0.1:
+ resolution: {integrity: sha512-7c3MMjjSZ/qYrx3uc1940GSOzN1Iqjtlqe8uoSg+qdVPYyRb0TILSqqmtlSFuE4mTDECwsm397Ya7iXGzfF7lg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-load-config@6.0.1:
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
@@ -6243,113 +6427,113 @@ packages:
yaml:
optional: true
- postcss-merge-longhand@7.0.4:
- resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
+ postcss-merge-longhand@7.0.5:
+ resolution: {integrity: sha512-Kpu5v4Ys6QI59FxmxtNB/iHUVDn9Y9sYw66D6+SZoIk4QTz1prC4aYkhIESu+ieG1iylod1f8MILMs1Em3mmIw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-merge-rules@7.0.4:
- resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
+ postcss-merge-rules@7.0.5:
+ resolution: {integrity: sha512-ZonhuSwEaWA3+xYbOdJoEReKIBs5eDiBVLAGpYZpNFPzXZcEE5VKR7/qBEQvTZpiwjqhhqEQ+ax5O3VShBj9Wg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-font-values@7.0.0:
- resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==}
+ postcss-minify-font-values@7.0.1:
+ resolution: {integrity: sha512-2m1uiuJeTplll+tq4ENOQSzB8LRnSUChBv7oSyFLsJRtUgAAJGP6LLz0/8lkinTgxrmJSPOEhgY1bMXOQ4ZXhQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-gradients@7.0.0:
- resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==}
+ postcss-minify-gradients@7.0.1:
+ resolution: {integrity: sha512-X9JjaysZJwlqNkJbUDgOclyG3jZEpAMOfof6PUZjPnPrePnPG62pS17CjdM32uT1Uq1jFvNSff9l7kNbmMSL2A==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-params@7.0.2:
- resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==}
+ postcss-minify-params@7.0.3:
+ resolution: {integrity: sha512-vUKV2+f5mtjewYieanLX0xemxIp1t0W0H/D11u+kQV/MWdygOO7xPMkbK+r9P6Lhms8MgzKARF/g5OPXhb8tgg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-selectors@7.0.4:
- resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
+ postcss-minify-selectors@7.0.5:
+ resolution: {integrity: sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-charset@7.0.0:
- resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==}
+ postcss-normalize-charset@7.0.1:
+ resolution: {integrity: sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-display-values@7.0.0:
- resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==}
+ postcss-normalize-display-values@7.0.1:
+ resolution: {integrity: sha512-E5nnB26XjSYz/mGITm6JgiDpAbVuAkzXwLzRZtts19jHDUBFxZ0BkXAehy0uimrOjYJbocby4FVswA/5noOxrQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-positions@7.0.0:
- resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==}
+ postcss-normalize-positions@7.0.1:
+ resolution: {integrity: sha512-pB/SzrIP2l50ZIYu+yQZyMNmnAcwyYb9R1fVWPRxm4zcUFCY2ign7rcntGFuMXDdd9L2pPNUgoODDk91PzRZuQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-repeat-style@7.0.0:
- resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==}
+ postcss-normalize-repeat-style@7.0.1:
+ resolution: {integrity: sha512-NsSQJ8zj8TIDiF0ig44Byo3Jk9e4gNt9x2VIlJudnQQ5DhWAHJPF4Tr1ITwyHio2BUi/I6Iv0HRO7beHYOloYQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-string@7.0.0:
- resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==}
+ postcss-normalize-string@7.0.1:
+ resolution: {integrity: sha512-QByrI7hAhsoze992kpbMlJSbZ8FuCEc1OT9EFbZ6HldXNpsdpZr+YXC5di3UEv0+jeZlHbZcoCADgb7a+lPmmQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-timing-functions@7.0.0:
- resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==}
+ postcss-normalize-timing-functions@7.0.1:
+ resolution: {integrity: sha512-bHifyuuSNdKKsnNJ0s8fmfLMlvsQwYVxIoUBnowIVl2ZAdrkYQNGVB4RxjfpvkMjipqvbz0u7feBZybkl/6NJg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-unicode@7.0.2:
- resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==}
+ postcss-normalize-unicode@7.0.3:
+ resolution: {integrity: sha512-EcoA29LvG3F+EpOh03iqu+tJY3uYYKzArqKJHxDhUYLa2u58aqGq16K6/AOsXD9yqLN8O6y9mmePKN5cx6krOw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-url@7.0.0:
- resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==}
+ postcss-normalize-url@7.0.1:
+ resolution: {integrity: sha512-sUcD2cWtyK1AOL/82Fwy1aIVm/wwj5SdZkgZ3QiUzSzQQofrbq15jWJ3BA7Z+yVRwamCjJgZJN0I9IS7c6tgeQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-whitespace@7.0.0:
- resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
+ postcss-normalize-whitespace@7.0.1:
+ resolution: {integrity: sha512-vsbgFHMFQrJBJKrUFJNZ2pgBeBkC2IvvoHjz1to0/0Xk7sII24T0qFOiJzG6Fu3zJoq/0yI4rKWi7WhApW+EFA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-ordered-values@7.0.1:
- resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==}
+ postcss-ordered-values@7.0.2:
+ resolution: {integrity: sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-reduce-initial@7.0.2:
- resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==}
+ postcss-reduce-initial@7.0.3:
+ resolution: {integrity: sha512-RFvkZaqiWtGMlVjlUHpaxGqEL27lgt+Q2Ixjf83CRAzqdo+TsDyGPtJUbPx2MuYIJ+sCQc2TrOvRnhcXQfgIVA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-reduce-transforms@7.0.0:
- resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==}
+ postcss-reduce-transforms@7.0.1:
+ resolution: {integrity: sha512-MhyEbfrm+Mlp/36hvZ9mT9DaO7dbncU0CvWI8V93LRkY6IYlu38OPg3FObnuKTUxJ4qA8HpurdQOo5CyqqO76g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-selector-parser@6.1.2:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
@@ -6359,17 +6543,17 @@ packages:
resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
engines: {node: '>=4'}
- postcss-svgo@7.0.1:
- resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==}
+ postcss-svgo@7.0.2:
+ resolution: {integrity: sha512-5Dzy66JlnRM6pkdOTF8+cGsB1fnERTE8Nc+Eed++fOWo1hdsBptCsbG8UuJkgtZt75bRtMJIrPeZmtfANixdFA==}
engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-unique-selectors@7.0.3:
- resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
+ postcss-unique-selectors@7.0.4:
+ resolution: {integrity: sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
@@ -6378,8 +6562,8 @@ packages:
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.26.5:
- resolution: {integrity: sha512-fmpDkgfGU6JYux9teDWLhj9mKN55tyepwYbxHgQuIxbWQzgFg5vk7Mrrtfx7xRxq798ynkY4DDDxZr235Kk+4w==}
+ preact@10.26.6:
+ resolution: {integrity: sha512-5SRRBinwpwkaD+OqlBDeITlRgvd8I8QlxHJw9AxSdMNV6O+LodN9nUyYGpSF7sadHjs6RzeFShMexC6DbtWr9g==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -6420,12 +6604,16 @@ packages:
property-information@6.5.0:
resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
- property-information@7.0.0:
- resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==}
+ property-information@7.1.0:
+ resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
protocols@2.0.2:
resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==}
+ proxy-addr@2.0.7:
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
+
prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
@@ -6438,6 +6626,10 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
+ qs@6.14.0:
+ resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
+ engines: {node: '>=0.6'}
+
quansync@0.2.10:
resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
@@ -6463,17 +6655,13 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
+ raw-body@3.0.0:
+ resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==}
+ engines: {node: '>= 0.8'}
+
rc9@2.1.2:
resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
- read-package-up@11.0.0:
- resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==}
- engines: {node: '>=18'}
-
- read-pkg@9.0.1:
- resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==}
- engines: {node: '>=18'}
-
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -6647,11 +6835,15 @@ packages:
rollup:
optional: true
- rollup@4.40.0:
- resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==}
+ rollup@4.40.2:
+ resolution: {integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ router@2.2.0:
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
+ engines: {node: '>= 18'}
+
run-applescript@7.0.0:
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
engines: {node: '>=18'}
@@ -6736,8 +6928,24 @@ packages:
resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
engines: {node: '>= 0.4'}
- shiki@3.3.0:
- resolution: {integrity: sha512-j0Z1tG5vlOFGW8JVj0Cpuatzvshes7VJy5ncDmmMaYcmnGW0Js1N81TOW98ivTFNZfKRn9uwEg/aIm638o368g==}
+ shiki@3.4.0:
+ resolution: {integrity: sha512-Ni80XHcqhOEXv5mmDAvf5p6PAJqbUc/RzFeaOqk+zP5DLvTPS3j0ckvA+MI87qoxTQ5RGJDVTbdl/ENLSyyAnQ==}
+
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ engines: {node: '>= 0.4'}
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -6763,14 +6971,11 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
- slashes@3.0.12:
- resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==}
-
smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
- smol-toml@1.3.3:
- resolution: {integrity: sha512-KMVLNWu490KlNfD0lbfDBUktJIEaZRBj1eeK0SMfdpO/rfyARIzlnPVI1Ge4l0vtSJmQUAiGKxMyLGrCT38iyA==}
+ smol-toml@1.3.4:
+ resolution: {integrity: sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA==}
engines: {node: '>= 18'}
source-map-js@1.2.1:
@@ -6795,15 +7000,9 @@ packages:
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
-
spdx-exceptions@2.5.0:
resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
-
spdx-expression-parse@4.0.0:
resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
@@ -6891,11 +7090,11 @@ packages:
structured-clone-es@1.0.0:
resolution: {integrity: sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==}
- stylehacks@7.0.4:
- resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
+ stylehacks@7.0.5:
+ resolution: {integrity: sha512-5kNb7V37BNf0Q3w+1pxfa+oiNPS++/b4Jil9e/kPDgrk1zjEd6uR7SZeJiYaLYH6RRSC1XX2/37OTeU/4FvuIA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
styleq@0.1.3:
resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==}
@@ -6963,8 +7162,8 @@ packages:
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
engines: {node: '>=18'}
- taze@19.0.4:
- resolution: {integrity: sha512-bviyNotzqcIWpVBCC4QYVb2yupzKyUDGQi2m/8GERdiPaudVMtgAqaE98+x0cDDaByYRMJCyhQWM04ikUL6+kQ==}
+ taze@19.1.0:
+ resolution: {integrity: sha512-MDN2WZb7TgsIvtFxqsLJ4GYy9dTDG5Dea/ZfPHrG98Cy7UH1EFIOzH+zDjnoP38ImuBbxZy1Zl8AbiwOZpYMUQ==}
hasBin: true
terser-webpack-plugin@5.3.14:
@@ -7017,10 +7216,6 @@ packages:
tinyexec@1.0.1:
resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
- tinyglobby@0.2.12:
- resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
- engines: {node: '>=12.0.0'}
-
tinyglobby@0.2.13:
resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
engines: {node: '>=12.0.0'}
@@ -7077,8 +7272,8 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- ts-macro@0.1.25:
- resolution: {integrity: sha512-C8Lxnn/XXvqMx+orKU6/gKrCmU/dOFUAxRstRTSmNUdrIjxoTuwsK8vTrLyYP0L+IVbIq9WgKBiGFUIab36l1Q==}
+ ts-macro@0.1.27:
+ resolution: {integrity: sha512-OQdlaacSA58vydi6EW7XjqY2Xom1TjQbMTbVYaKdhp/WIGRoLvO7lEf2XjjJe6b5hnjrYgtmauAel3f613Uu1A==}
tsconfck@3.1.5:
resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==}
@@ -7112,8 +7307,8 @@ packages:
typescript:
optional: true
- tsx@4.19.3:
- resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==}
+ tsx@4.19.4:
+ resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -7134,12 +7329,16 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-fest@4.40.0:
- resolution: {integrity: sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==}
+ type-fest@4.41.0:
+ resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
engines: {node: '>=16'}
- typescript-eslint@8.31.0:
- resolution: {integrity: sha512-u+93F0sB0An8WEAPtwxVhFby573E8ckdjwUUQUj9QA4v8JAvgtoDdIyYR3XFwFHq2W1KJ1AurwJCO+w+Y1ixyQ==}
+ type-is@2.0.1:
+ resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
+ engines: {node: '>= 0.6'}
+
+ typescript-eslint@8.32.0:
+ resolution: {integrity: sha512-UMq2kxdXCzinFFPsXc9o2ozIpYCCOiEC46MG3yEh5Vipq6BO27otTtEBZA1fQ66DulEUgE97ucQ/3YY66CPg0A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -7180,10 +7379,6 @@ packages:
unicode-trie@2.0.0:
resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==}
- unicorn-magic@0.1.0:
- resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
- engines: {node: '>=18'}
-
unicorn-magic@0.3.0:
resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
engines: {node: '>=18'}
@@ -7191,15 +7386,11 @@ packages:
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
- unifont@0.2.0:
- resolution: {integrity: sha512-RoF14/tOhLvDa7R5K6A3PjsfJVFKvadvRpWjfV1ttabUe9704P1ie9z1ABLWEts/8SxrBVePav/XhgeFNltpsw==}
-
- unimport@4.2.0:
- resolution: {integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==}
- engines: {node: '>=18.12.0'}
+ unifont@0.5.0:
+ resolution: {integrity: sha512-4DueXMP5Hy4n607sh+vJ+rajoLu778aU3GzqeTCqsD/EaUcvqZT9wPC8kgK6Vjh22ZskrxyRCR71FwNOaYn6jA==}
- unimport@5.0.0:
- resolution: {integrity: sha512-8jL3T+FKDg+qLFX55X9j92uFRqH5vWrNlf/eJb5IQlQB5q5wjooXQDXP1ulhJJQHbosBmlKhBo/ZVS5jHlcJGA==}
+ unimport@5.0.1:
+ resolution: {integrity: sha512-1YWzPj6wYhtwHE+9LxRlyqP4DiRrhGfJxdtH475im8ktyZXO3jHj/3PZ97zDdvkYoovFdi0K4SKl3a7l92v3sQ==}
engines: {node: '>=18.12.0'}
unist-util-find-after@5.0.0:
@@ -7236,11 +7427,11 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unocss@66.1.0-beta.12:
- resolution: {integrity: sha512-BcOL+K97CYV9GC9OlHTI8pPBVSELloKQGAvLYKi2P/aNgHpH6PzJ+5OTNk39jQeOp+25tu/Q6VQIEmK3I0+nww==}
+ unocss@66.1.1:
+ resolution: {integrity: sha512-GD/y7AsvbO6bG9Zu+5xf6UNIPyIwOUffTqLgFaWXHOqO6xXpbH9SWz2B+ATMdjwsRGr/JJHn3pLFo8lHGsHKsQ==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 66.1.0-beta.12
+ '@unocss/webpack': 66.1.1
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
@@ -7248,12 +7439,16 @@ packages:
vite:
optional: true
- unplugin-combine@1.2.1:
- resolution: {integrity: sha512-qGkXjQo8yTq5QknP8f8p8/Aw3BJKqclTbTe8de0pC6exHzpoPBnH69Eztf00G2oc50IaIlV7KX/g4cKgzCq9BA==}
- engines: {node: '>=16.14.0'}
+ unpipe@1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
+
+ unplugin-combine@2.0.0:
+ resolution: {integrity: sha512-+hHz4CmZ6MCb9c0KbekEmOO+YNePPzJCmXI49vZwfXGS617jdM3ZsPXSd2WqmQPZFPecIg6BVd0tsIfWnaxGpA==}
+ engines: {node: '>=20.18.0'}
peerDependencies:
'@rspack/core': '*'
- esbuild: ^0.25.3
+ esbuild: ^0.25.4
rolldown: '*'
rollup: ^3.2.0 || ^4.0.0
unplugin: ^1.0.0 || ^2.0.0
@@ -7275,8 +7470,8 @@ packages:
webpack:
optional: true
- unplugin-isolated-decl@0.13.9:
- resolution: {integrity: sha512-KgwzyDjWPpXR8nLZsQfb5bBgDnF5jr138Z4uYFIu/rnYc6ep1Uv80SY9f4eQJ80UFIFmRWTKtW7xKMXnzGXtGw==}
+ unplugin-isolated-decl@0.13.11:
+ resolution: {integrity: sha512-EDGBKPSEPq2n+lmCrBo98h9vJA54RfZys3Mif9JaO7q+lQnLfH9kDw46uxjIwQ+qi556n5AWldq0u2HS6ePIbQ==}
engines: {node: '>=18.12.0'}
peerDependencies:
'@swc/core': ^1.6.6
@@ -7291,8 +7486,8 @@ packages:
resolution: {integrity: sha512-owWV/VYmOayHBMfmjUW9z1zFqTCBXdC1CJmQVdn9KFZDEioNu6cIf1CX2gYZ4VEOBtP2A9VdgY3Bbr+dO5I1mg==}
engines: {node: '>=18.12.0'}
- unplugin-oxc@0.3.5:
- resolution: {integrity: sha512-/kC2/pjGSV7lxX8JPOVUv1v0bOgSzGq+m4H6RtERtxoLqtyVA65giSW4E9ubGQ2CfMuATJKKgGULgqzm0v8dug==}
+ unplugin-oxc@0.3.7:
+ resolution: {integrity: sha512-9X3nVQjhuwcT7Hsa9JM3er7mARqth7QHk8GWJVTZUo1/+m4Da9R++N5CyfahA+Lcd7nQmsGmQ6l+xNbtmR1RDQ==}
engines: {node: '>=18.12.0'}
peerDependencies:
unloader: '*'
@@ -7326,8 +7521,8 @@ packages:
vue-router:
optional: true
- unplugin-vue@6.1.0:
- resolution: {integrity: sha512-0b9sAjcp1DN4fgC++Dc1l1JXuY0IO+eQDC40FrJKWrhi4j+w0p4MWpPbOZgQEfC2UC/DoflYfoZ5BRvtFjycjg==}
+ unplugin-vue@6.2.0:
+ resolution: {integrity: sha512-/FRiRuBu8AFzeF9qetgMLrDJtBGvJTOn/TqA0DiURIYT8IMAttXajjMO7UM2oK07R5ZX3mFW+OGe/reYEq9wSQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
vue: ^3.2.25
@@ -7340,11 +7535,11 @@ packages:
resolution: {integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w==}
engines: {node: '>=18.12.0'}
- unrs-resolver@1.6.4:
- resolution: {integrity: sha512-Fb6KH4pQK0XjR5PdRW8BEzsQmbYjkeRHF3IIIZtOVXVFM6Nh+Gb2fQh23Ba7qaYloDp+Aa8/JeNqyImJ8xHlkQ==}
+ unrs-resolver@1.7.2:
+ resolution: {integrity: sha512-BBKpaylOW8KbHsu378Zky/dGh4ckT/4NW/0SHRABdqRLcQJ2dAOjDo9g97p04sWflm0kqPqpUatxReNV/dqI5A==}
- unstorage@1.15.0:
- resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
+ unstorage@1.16.0:
+ resolution: {integrity: sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==}
peerDependencies:
'@azure/app-configuration': ^1.8.0
'@azure/cosmos': ^4.2.0
@@ -7352,7 +7547,7 @@ packages:
'@azure/identity': ^4.6.0
'@azure/keyvault-secrets': ^4.9.0
'@azure/storage-blob': ^12.26.0
- '@capacitor/preferences': ^6.0.3
+ '@capacitor/preferences': ^6.0.3 || ^7.0.0
'@deno/kv': '>=0.9.0'
'@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
'@planetscale/database': ^1.19.0
@@ -7436,8 +7631,9 @@ packages:
typescript:
optional: true
- validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+ vary@1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
vfile-location@5.0.3:
resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
@@ -7464,13 +7660,13 @@ packages:
peerDependencies:
vite: ^4.0.0 || ^5.0.0 || ^6.0.0
- vite-node@3.1.2:
- resolution: {integrity: sha512-/8iMryv46J3aK13iUXsei5G/A3CUlW4665THCPS+K8xAaqrVWiGB4RfXMQXCLjpK9P2eK//BczrVkn5JLAk6DA==}
+ vite-node@3.1.3:
+ resolution: {integrity: sha512-uHV4plJ2IxCl4u1up1FQRrqclylKAogbtBfOTwcuJ28xFi+89PZ57BRh+naIRvH70HPwxy5QHYzg1OrEaC7AbA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-plugin-checker@0.9.1:
- resolution: {integrity: sha512-neH3CSNWdkZ+zi+WPt/0y5+IO2I0UAI0NX6MaXqU/KxN1Lz6np/7IooRB6VVAMBa4nigqm1GRF6qNa4+EL5jDQ==}
+ vite-plugin-checker@0.9.3:
+ resolution: {integrity: sha512-Tf7QBjeBtG7q11zG0lvoF38/2AVUzzhMNu+Wk+mcsJ00Rk/FpJ4rmUviVJpzWkagbU13cGXvKpt7CMiqtxVTbQ==}
engines: {node: '>=14.16'}
peerDependencies:
'@biomejs/biome': '>=1.7'
@@ -7482,7 +7678,7 @@ packages:
vite: '>=2.0.0'
vls: '*'
vti: '*'
- vue-tsc: ~2.2.2
+ vue-tsc: ~2.2.10
peerDependenciesMeta:
'@biomejs/biome':
optional: true
@@ -7533,8 +7729,8 @@ packages:
react-strict-dom:
optional: true
- vite-plugin-vue-devtools@7.7.5:
- resolution: {integrity: sha512-cSlQYI1E+8d0qubBg70suTBbXMFbTHLn7vLPYUPK9GjNNJ0nw+Yks0ZLOAp7/+PjmqSpN5fK1taor6HeAjKb1g==}
+ vite-plugin-vue-devtools@7.7.6:
+ resolution: {integrity: sha512-L7nPVM5a7lgit/Z+36iwoqHOaP3wxqVi1UvaDJwGCfblS9Y6vNqf32ILlzJVH9c47aHu90BhDXeZc+rgzHRHcw==}
engines: {node: '>=v14.21.3'}
peerDependencies:
vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
@@ -7550,8 +7746,8 @@ packages:
vite: ^6.0.0
vue: ^3.5.0
- vite@6.3.2:
- resolution: {integrity: sha512-ZSvGOXKGceizRQIZSz7TGJ0pS3QLlVY/9hwxVh17W3re67je1RKYzFHivZ/t0tubU78Vkyb9WnHPENSBCzbckg==}
+ vite@6.3.5:
+ resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -7601,8 +7797,8 @@ packages:
vitepress-plugin-group-icons@1.5.2:
resolution: {integrity: sha512-zen07KxZ83y3eecou4EraaEgwIriwHaB5Q0cHAmS4yO1UZEQvbljTylHPqiJ7LNkV39U8VehfcyquAJXg/26LA==}
- vitepress-plugin-llms@1.1.0:
- resolution: {integrity: sha512-nb7bG/lBDihlcFTzqxRxQIyzeBWQW9F6OwuUWQ7PFUNK5kVbybxXGISU4wvAV8osQmfrD9xNIGJQfuOLj5CzHg==}
+ vitepress-plugin-llms@1.1.3:
+ resolution: {integrity: sha512-7pJbG92hI70KerMc0SViIsKzwQHNz6ftrwfmwaT/z1TyfIH3p0X2sZ+fHmSIYYtrYhGPEpqiUhGfAVLhLX54hQ==}
vitepress@2.0.0-alpha.2:
resolution: {integrity: sha512-w+1WCkd8ko8lDUh61OWo4dj5Y4VHYJvwmJ9/iOXoVlzxOfO5Hoio2H3OMOgNlCzq0E0rTp9UR5GPU120AnH2dg==}
@@ -7616,16 +7812,16 @@ packages:
postcss:
optional: true
- vitest@3.1.2:
- resolution: {integrity: sha512-WaxpJe092ID1C0mr+LH9MmNrhfzi8I65EX/NRU/Ld016KqQNRgxSOlGNP1hHN+a/F8L15Mh8klwaF77zR3GeDQ==}
+ vitest@3.1.3:
+ resolution: {integrity: sha512-188iM4hAHQ0km23TN/adso1q5hhwKqUpv+Sd6p5sOuh6FhQnRNW3IsiIpvxqahtBabsJ2SLZgmGSpcYK4wQYJw==}
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.2
- '@vitest/ui': 3.1.2
+ '@vitest/browser': 3.1.3
+ '@vitest/ui': 3.1.3
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -7683,8 +7879,8 @@ packages:
peerDependencies:
vue: ^3.0.0
- vue-router@4.5.0:
- resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
+ vue-router@4.5.1:
+ resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
peerDependencies:
vue: ^3.2.0
@@ -7722,8 +7918,8 @@ packages:
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.99.6:
- resolution: {integrity: sha512-TJOLrJ6oeccsGWPl7ujCYuc0pIq2cNsuD6GZDma8i5o5Npvcco/z+NKvZSFsP0/x6SShVb0+X2JK/JHUjKY9dQ==}
+ webpack@5.99.8:
+ resolution: {integrity: sha512-lQ3CPiSTpfOnrEGeXDwoq5hIGzSjmwD72GdfVzF7CQAI7t47rJG9eDWvcEkEn3CUQymAElVvDg3YNTlCYj+qUQ==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -7777,8 +7973,11 @@ packages:
resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
engines: {node: '>=18'}
- ws@8.18.1:
- resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ wrappy@1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+
+ ws@8.18.2:
+ resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -7867,140 +8066,140 @@ packages:
typescript: ^4.9.4 || ^5.0.2
zod: ^3
- zod@3.24.3:
- resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==}
+ zod@3.24.4:
+ resolution: {integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==}
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)':
+ '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)':
+ '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)
- '@algolia/client-search': 5.23.4
- algoliasearch: 5.23.4
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)
+ '@algolia/client-search': 5.24.0
+ algoliasearch: 5.24.0
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)':
+ '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)':
dependencies:
- '@algolia/client-search': 5.23.4
- algoliasearch: 5.23.4
+ '@algolia/client-search': 5.24.0
+ algoliasearch: 5.24.0
- '@algolia/client-abtesting@5.23.4':
+ '@algolia/client-abtesting@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/client-analytics@5.23.4':
+ '@algolia/client-analytics@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/client-common@5.23.4': {}
+ '@algolia/client-common@5.24.0': {}
- '@algolia/client-insights@5.23.4':
+ '@algolia/client-insights@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/client-personalization@5.23.4':
+ '@algolia/client-personalization@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/client-query-suggestions@5.23.4':
+ '@algolia/client-query-suggestions@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/client-search@5.23.4':
+ '@algolia/client-search@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/ingestion@1.23.4':
+ '@algolia/ingestion@1.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/monitoring@1.23.4':
+ '@algolia/monitoring@1.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/recommend@5.23.4':
+ '@algolia/recommend@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ '@algolia/client-common': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
- '@algolia/requester-browser-xhr@5.23.4':
+ '@algolia/requester-browser-xhr@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
+ '@algolia/client-common': 5.24.0
- '@algolia/requester-fetch@5.23.4':
+ '@algolia/requester-fetch@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
+ '@algolia/client-common': 5.24.0
- '@algolia/requester-node-http@5.23.4':
+ '@algolia/requester-node-http@5.24.0':
dependencies:
- '@algolia/client-common': 5.23.4
+ '@algolia/client-common': 5.24.0
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/install-pkg@1.0.0':
+ '@antfu/install-pkg@1.1.0':
dependencies:
- package-manager-detector: 0.2.11
- tinyexec: 0.3.2
+ package-manager-detector: 1.3.0
+ tinyexec: 1.0.1
'@antfu/ni@24.3.0':
dependencies:
ansis: 3.17.0
fzf: 0.5.2
- package-manager-detector: 1.2.0
+ package-manager-detector: 1.3.0
tinyexec: 1.0.1
'@antfu/utils@0.7.10': {}
'@antfu/utils@8.1.1': {}
- '@astrojs/compiler@2.11.0': {}
+ '@astrojs/compiler@2.12.0': {}
'@astrojs/internal-helpers@0.6.1': {}
@@ -8020,8 +8219,8 @@ snapshots:
remark-parse: 11.0.0
remark-rehype: 11.1.2
remark-smartypants: 3.0.2
- shiki: 3.3.0
- smol-toml: 1.3.3
+ shiki: 3.4.0
+ smol-toml: 1.3.4
unified: 11.0.5
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
@@ -8046,14 +8245,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/vue@5.0.11(@types/node@22.14.1)(astro@5.7.5(@types/node@22.14.1)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)':
+ '@astrojs/vue@5.0.13(@types/node@22.15.17)(astro@5.7.12(@types/node@22.15.17)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)':
dependencies:
- '@vitejs/plugin-vue': 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@vitejs/plugin-vue-jsx': 4.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@vitejs/plugin-vue': 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@vitejs/plugin-vue-jsx': 4.1.2(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
'@vue/compiler-sfc': 3.5.13
- astro: 5.7.5(@types/node@22.14.1)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-plugin-vue-devtools: 7.7.5(@nuxt/kit@3.16.2(magicast@0.3.5))(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ astro: 5.7.12(@types/node@22.15.17)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-plugin-vue-devtools: 7.7.6(@nuxt/kit@3.17.2(magicast@0.3.5))(rollup@4.40.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- '@nuxt/kit'
@@ -8071,26 +8270,26 @@ snapshots:
- tsx
- yaml
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.8': {}
+ '@babel/compat-data@7.27.2': {}
- '@babel/core@7.26.10':
+ '@babel/core@7.27.1':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helpers': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
+ '@babel/helpers': 7.27.1
+ '@babel/parser': 7.27.2
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
convert-source-map: 2.0.0
debug: 4.4.0
gensync: 1.0.0-beta.2
@@ -8099,171 +8298,171 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.27.0':
+ '@babel/generator@7.27.1':
dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/parser': 7.27.2
+ '@babel/types': 7.27.1
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.25.9':
+ '@babel/helper-annotate-as-pure@7.27.1':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.1
- '@babel/helper-compilation-targets@7.27.0':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
+ '@babel/compat-data': 7.27.2
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.24.5
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.27.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.9':
+ '@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
+ '@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.1
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.9':
+ '@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.1
- '@babel/helper-plugin-utils@7.26.5': {}
+ '@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
- '@babel/helper-validator-option@7.25.9': {}
+ '@babel/helper-validator-option@7.27.1': {}
- '@babel/helpers@7.27.0':
+ '@babel/helpers@7.27.1':
dependencies:
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.27.1
- '@babel/parser@7.27.0':
+ '@babel/parser@7.27.2':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.1
- '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-decorators@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.27.1)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
transitivePeerDependencies:
- supports-color
- '@babel/template@7.27.0':
+ '@babel/template@7.27.2':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.27.2
+ '@babel/types': 7.27.1
- '@babel/traverse@7.27.0':
+ '@babel/traverse@7.27.1':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/parser': 7.27.2
+ '@babel/template': 7.27.2
+ '@babel/types': 7.27.1
debug: 4.4.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.27.0':
+ '@babel/types@7.27.1':
dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
'@bcoe/v8-coverage@1.0.2': {}
@@ -8279,13 +8478,13 @@ snapshots:
dependencies:
mime: 3.0.0
- '@cspell/cspell-bundled-dicts@8.19.2':
+ '@cspell/cspell-bundled-dicts@9.0.1':
dependencies:
'@cspell/dict-ada': 4.1.0
'@cspell/dict-al': 1.1.0
'@cspell/dict-aws': 4.0.10
'@cspell/dict-bash': 4.2.0
- '@cspell/dict-companies': 3.1.15
+ '@cspell/dict-companies': 3.2.1
'@cspell/dict-cpp': 6.0.8
'@cspell/dict-cryptocurrencies': 5.0.4
'@cspell/dict-csharp': 4.0.6
@@ -8293,20 +8492,20 @@ snapshots:
'@cspell/dict-dart': 2.3.0
'@cspell/dict-data-science': 2.0.8
'@cspell/dict-django': 4.1.4
- '@cspell/dict-docker': 1.1.13
+ '@cspell/dict-docker': 1.1.14
'@cspell/dict-dotnet': 5.0.9
'@cspell/dict-elixir': 4.0.7
- '@cspell/dict-en-common-misspellings': 2.0.10
- '@cspell/dict-en-gb': 1.1.33
- '@cspell/dict-en_us': 4.4.3
- '@cspell/dict-filetypes': 3.0.11
+ '@cspell/dict-en-common-misspellings': 2.0.11
+ '@cspell/dict-en-gb-mit': 3.0.6
+ '@cspell/dict-en_us': 4.4.8
+ '@cspell/dict-filetypes': 3.0.12
'@cspell/dict-flutter': 1.1.0
'@cspell/dict-fonts': 4.0.4
'@cspell/dict-fsharp': 1.1.0
'@cspell/dict-fullstack': 3.2.6
'@cspell/dict-gaming-terms': 1.1.1
'@cspell/dict-git': 3.0.4
- '@cspell/dict-golang': 6.0.20
+ '@cspell/dict-golang': 6.0.21
'@cspell/dict-google': 1.0.8
'@cspell/dict-haskell': 4.0.5
'@cspell/dict-html': 4.0.11
@@ -8322,17 +8521,17 @@ snapshots:
'@cspell/dict-markdown': 2.0.10(@cspell/dict-css@4.0.17)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.11)(@cspell/dict-typescript@3.2.1)
'@cspell/dict-monkeyc': 1.0.10
'@cspell/dict-node': 5.0.7
- '@cspell/dict-npm': 5.2.1
+ '@cspell/dict-npm': 5.2.3
'@cspell/dict-php': 4.0.14
'@cspell/dict-powershell': 5.0.14
'@cspell/dict-public-licenses': 2.0.13
- '@cspell/dict-python': 4.2.17
+ '@cspell/dict-python': 4.2.18
'@cspell/dict-r': 2.1.0
'@cspell/dict-ruby': 5.0.8
'@cspell/dict-rust': 4.0.11
'@cspell/dict-scala': 5.0.7
'@cspell/dict-shell': 1.1.0
- '@cspell/dict-software-terms': 5.0.5
+ '@cspell/dict-software-terms': 5.0.8
'@cspell/dict-sql': 2.2.0
'@cspell/dict-svelte': 1.0.6
'@cspell/dict-swift': 2.0.5
@@ -8340,19 +8539,19 @@ snapshots:
'@cspell/dict-typescript': 3.2.1
'@cspell/dict-vue': 3.0.4
- '@cspell/cspell-json-reporter@8.19.2':
+ '@cspell/cspell-json-reporter@9.0.1':
dependencies:
- '@cspell/cspell-types': 8.19.2
+ '@cspell/cspell-types': 9.0.1
- '@cspell/cspell-pipe@8.19.2': {}
+ '@cspell/cspell-pipe@9.0.1': {}
- '@cspell/cspell-resolver@8.19.2':
+ '@cspell/cspell-resolver@9.0.1':
dependencies:
global-directory: 4.0.1
- '@cspell/cspell-service-bus@8.19.2': {}
+ '@cspell/cspell-service-bus@9.0.1': {}
- '@cspell/cspell-types@8.19.2': {}
+ '@cspell/cspell-types@9.0.1': {}
'@cspell/dict-ada@4.1.0': {}
@@ -8364,7 +8563,7 @@ snapshots:
dependencies:
'@cspell/dict-shell': 1.1.0
- '@cspell/dict-companies@3.1.15': {}
+ '@cspell/dict-companies@3.2.1': {}
'@cspell/dict-cpp@6.0.8': {}
@@ -8380,19 +8579,19 @@ snapshots:
'@cspell/dict-django@4.1.4': {}
- '@cspell/dict-docker@1.1.13': {}
+ '@cspell/dict-docker@1.1.14': {}
'@cspell/dict-dotnet@5.0.9': {}
'@cspell/dict-elixir@4.0.7': {}
- '@cspell/dict-en-common-misspellings@2.0.10': {}
+ '@cspell/dict-en-common-misspellings@2.0.11': {}
- '@cspell/dict-en-gb@1.1.33': {}
+ '@cspell/dict-en-gb-mit@3.0.6': {}
- '@cspell/dict-en_us@4.4.3': {}
+ '@cspell/dict-en_us@4.4.8': {}
- '@cspell/dict-filetypes@3.0.11': {}
+ '@cspell/dict-filetypes@3.0.12': {}
'@cspell/dict-flutter@1.1.0': {}
@@ -8406,7 +8605,7 @@ snapshots:
'@cspell/dict-git@3.0.4': {}
- '@cspell/dict-golang@6.0.20': {}
+ '@cspell/dict-golang@6.0.21': {}
'@cspell/dict-google@1.0.8': {}
@@ -8443,7 +8642,7 @@ snapshots:
'@cspell/dict-node@5.0.7': {}
- '@cspell/dict-npm@5.2.1': {}
+ '@cspell/dict-npm@5.2.3': {}
'@cspell/dict-php@4.0.14': {}
@@ -8451,7 +8650,7 @@ snapshots:
'@cspell/dict-public-licenses@2.0.13': {}
- '@cspell/dict-python@4.2.17':
+ '@cspell/dict-python@4.2.18':
dependencies:
'@cspell/dict-data-science': 2.0.8
@@ -8465,7 +8664,7 @@ snapshots:
'@cspell/dict-shell@1.1.0': {}
- '@cspell/dict-software-terms@5.0.5': {}
+ '@cspell/dict-software-terms@5.0.8': {}
'@cspell/dict-sql@2.2.0': {}
@@ -8479,23 +8678,23 @@ snapshots:
'@cspell/dict-vue@3.0.4': {}
- '@cspell/dynamic-import@8.19.2':
+ '@cspell/dynamic-import@9.0.1':
dependencies:
- '@cspell/url': 8.19.2
+ '@cspell/url': 9.0.1
import-meta-resolve: 4.1.0
- '@cspell/filetypes@8.19.2': {}
+ '@cspell/filetypes@9.0.1': {}
- '@cspell/strong-weak-map@8.19.2': {}
+ '@cspell/strong-weak-map@9.0.1': {}
- '@cspell/url@8.19.2': {}
+ '@cspell/url@9.0.1': {}
'@docsearch/css@3.9.0': {}
- '@docsearch/js@3.9.0(@algolia/client-search@5.23.4)':
+ '@docsearch/js@3.9.0(@algolia/client-search@5.24.0)':
dependencies:
- '@docsearch/react': 3.9.0(@algolia/client-search@5.23.4)
- preact: 10.26.5
+ '@docsearch/react': 3.9.0(@algolia/client-search@5.24.0)
+ preact: 10.26.6
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -8503,12 +8702,12 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.9.0(@algolia/client-search@5.23.4)':
+ '@docsearch/react@3.9.0(@algolia/client-search@5.24.0)':
dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.23.4)(algoliasearch@5.23.4)
+ '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)
+ '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.24.0)(algoliasearch@5.24.0)
'@docsearch/css': 3.9.0
- algoliasearch: 5.23.4
+ algoliasearch: 5.24.0
transitivePeerDependencies:
- '@algolia/client-search'
@@ -8538,102 +8737,102 @@ snapshots:
dependencies:
'@types/eslint': 9.6.1
'@types/estree': 1.0.7
- '@typescript-eslint/types': 8.31.0
+ '@typescript-eslint/types': 8.32.0
comment-parser: 1.4.1
esquery: 1.6.0
jsdoc-type-pratt-parser: 4.1.0
- '@esbuild/aix-ppc64@0.25.3':
+ '@esbuild/aix-ppc64@0.25.4':
optional: true
- '@esbuild/android-arm64@0.25.3':
+ '@esbuild/android-arm64@0.25.4':
optional: true
- '@esbuild/android-arm@0.25.3':
+ '@esbuild/android-arm@0.25.4':
optional: true
- '@esbuild/android-x64@0.25.3':
+ '@esbuild/android-x64@0.25.4':
optional: true
- '@esbuild/darwin-arm64@0.25.3':
+ '@esbuild/darwin-arm64@0.25.4':
optional: true
- '@esbuild/darwin-x64@0.25.3':
+ '@esbuild/darwin-x64@0.25.4':
optional: true
- '@esbuild/freebsd-arm64@0.25.3':
+ '@esbuild/freebsd-arm64@0.25.4':
optional: true
- '@esbuild/freebsd-x64@0.25.3':
+ '@esbuild/freebsd-x64@0.25.4':
optional: true
- '@esbuild/linux-arm64@0.25.3':
+ '@esbuild/linux-arm64@0.25.4':
optional: true
- '@esbuild/linux-arm@0.25.3':
+ '@esbuild/linux-arm@0.25.4':
optional: true
- '@esbuild/linux-ia32@0.25.3':
+ '@esbuild/linux-ia32@0.25.4':
optional: true
- '@esbuild/linux-loong64@0.25.3':
+ '@esbuild/linux-loong64@0.25.4':
optional: true
- '@esbuild/linux-mips64el@0.25.3':
+ '@esbuild/linux-mips64el@0.25.4':
optional: true
- '@esbuild/linux-ppc64@0.25.3':
+ '@esbuild/linux-ppc64@0.25.4':
optional: true
- '@esbuild/linux-riscv64@0.25.3':
+ '@esbuild/linux-riscv64@0.25.4':
optional: true
- '@esbuild/linux-s390x@0.25.3':
+ '@esbuild/linux-s390x@0.25.4':
optional: true
- '@esbuild/linux-x64@0.25.3':
+ '@esbuild/linux-x64@0.25.4':
optional: true
- '@esbuild/netbsd-arm64@0.25.3':
+ '@esbuild/netbsd-arm64@0.25.4':
optional: true
- '@esbuild/netbsd-x64@0.25.3':
+ '@esbuild/netbsd-x64@0.25.4':
optional: true
- '@esbuild/openbsd-arm64@0.25.3':
+ '@esbuild/openbsd-arm64@0.25.4':
optional: true
- '@esbuild/openbsd-x64@0.25.3':
+ '@esbuild/openbsd-x64@0.25.4':
optional: true
- '@esbuild/sunos-x64@0.25.3':
+ '@esbuild/sunos-x64@0.25.4':
optional: true
- '@esbuild/win32-arm64@0.25.3':
+ '@esbuild/win32-arm64@0.25.4':
optional: true
- '@esbuild/win32-ia32@0.25.3':
+ '@esbuild/win32-ia32@0.25.4':
optional: true
- '@esbuild/win32-x64@0.25.3':
+ '@esbuild/win32-x64@0.25.4':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.25.1(jiti@2.4.2))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.26.0(jiti@2.4.2))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
ignore: 5.3.2
- '@eslint-community/eslint-utils@4.6.1(eslint@9.25.1(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.26.0(jiti@2.4.2))':
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.8(eslint@9.25.1(jiti@2.4.2))':
+ '@eslint/compat@1.2.9(eslint@9.26.0(jiti@2.4.2))':
optionalDependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
'@eslint/config-array@0.20.0':
dependencies:
@@ -8643,7 +8842,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.2.1': {}
+ '@eslint/config-helpers@0.2.2': {}
'@eslint/core@0.10.0':
dependencies:
@@ -8667,7 +8866,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.25.1': {}
+ '@eslint/js@9.26.0': {}
'@eslint/markdown@6.4.0':
dependencies:
@@ -8688,24 +8887,24 @@ snapshots:
'@eslint/core': 0.13.0
levn: 0.4.1
- '@floating-ui/core@1.6.9':
+ '@floating-ui/core@1.7.0':
dependencies:
'@floating-ui/utils': 0.2.9
'@floating-ui/dom@1.1.1':
dependencies:
- '@floating-ui/core': 1.6.9
+ '@floating-ui/core': 1.7.0
- '@floating-ui/dom@1.6.13':
+ '@floating-ui/dom@1.7.0':
dependencies:
- '@floating-ui/core': 1.6.9
+ '@floating-ui/core': 1.7.0
'@floating-ui/utils': 0.2.9
'@floating-ui/utils@0.2.9': {}
'@floating-ui/vue@1.1.6(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@floating-ui/dom': 1.6.13
+ '@floating-ui/dom': 1.7.0
'@floating-ui/utils': 0.2.9
vue-demi: 0.14.10(vue@3.5.13(typescript@5.8.3))
transitivePeerDependencies:
@@ -8723,7 +8922,7 @@ snapshots:
'@humanwhocodes/retry@0.3.1': {}
- '@humanwhocodes/retry@0.4.2': {}
+ '@humanwhocodes/retry@0.4.3': {}
'@iconify-json/carbon@1.2.8':
dependencies:
@@ -8749,7 +8948,7 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/vscode-icons@1.2.19':
+ '@iconify-json/vscode-icons@1.2.20':
dependencies:
'@iconify/types': 2.0.0
@@ -8757,7 +8956,7 @@ snapshots:
'@iconify/utils@2.3.0':
dependencies:
- '@antfu/install-pkg': 1.0.0
+ '@antfu/install-pkg': 1.1.0
'@antfu/utils': 8.1.1
'@iconify/types': 2.0.0
debug: 4.4.0
@@ -8911,30 +9110,45 @@ snapshots:
- encoding
- supports-color
- '@module-federation/error-codes@0.11.2': {}
+ '@modelcontextprotocol/sdk@1.11.1':
+ dependencies:
+ content-type: 1.0.5
+ cors: 2.8.5
+ cross-spawn: 7.0.6
+ eventsource: 3.0.6
+ express: 5.1.0
+ express-rate-limit: 7.5.0(express@5.1.0)
+ pkce-challenge: 5.0.0
+ raw-body: 3.0.0
+ zod: 3.24.4
+ zod-to-json-schema: 3.24.5(zod@3.24.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@module-federation/error-codes@0.13.1': {}
- '@module-federation/runtime-core@0.11.2':
+ '@module-federation/runtime-core@0.13.1':
dependencies:
- '@module-federation/error-codes': 0.11.2
- '@module-federation/sdk': 0.11.2
+ '@module-federation/error-codes': 0.13.1
+ '@module-federation/sdk': 0.13.1
- '@module-federation/runtime-tools@0.11.2':
+ '@module-federation/runtime-tools@0.13.1':
dependencies:
- '@module-federation/runtime': 0.11.2
- '@module-federation/webpack-bundler-runtime': 0.11.2
+ '@module-federation/runtime': 0.13.1
+ '@module-federation/webpack-bundler-runtime': 0.13.1
- '@module-federation/runtime@0.11.2':
+ '@module-federation/runtime@0.13.1':
dependencies:
- '@module-federation/error-codes': 0.11.2
- '@module-federation/runtime-core': 0.11.2
- '@module-federation/sdk': 0.11.2
+ '@module-federation/error-codes': 0.13.1
+ '@module-federation/runtime-core': 0.13.1
+ '@module-federation/sdk': 0.13.1
- '@module-federation/sdk@0.11.2': {}
+ '@module-federation/sdk@0.13.1': {}
- '@module-federation/webpack-bundler-runtime@0.11.2':
+ '@module-federation/webpack-bundler-runtime@0.13.1':
dependencies:
- '@module-federation/runtime': 0.11.2
- '@module-federation/sdk': 0.11.2
+ '@module-federation/runtime': 0.13.1
+ '@module-federation/sdk': 0.13.1
'@napi-rs/wasm-runtime@0.2.9':
dependencies:
@@ -8957,51 +9171,51 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- '@nolebase/ui@2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))':
+ '@nolebase/ui@2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))':
dependencies:
'@iconify-json/octicon': 1.2.5
less: 4.3.0
- vitepress: 2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ vitepress: 2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- typescript
- '@nolebase/vitepress-plugin-enhanced-mark@2.16.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))':
+ '@nolebase/vitepress-plugin-enhanced-mark@2.17.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))':
dependencies:
less: 4.3.0
- vitepress: 2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ vitepress: 2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
- '@nolebase/vitepress-plugin-enhanced-readabilities@2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))':
+ '@nolebase/vitepress-plugin-enhanced-readabilities@2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))':
dependencies:
'@iconify-json/carbon': 1.2.8
'@iconify-json/icon-park-outline': 1.2.2
- '@nolebase/ui': 2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))
+ '@nolebase/ui': 2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))
less: 4.3.0
- vitepress: 2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ vitepress: 2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
transitivePeerDependencies:
- typescript
- '@nolebase/vitepress-plugin-git-changelog@2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))':
+ '@nolebase/vitepress-plugin-git-changelog@2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))':
dependencies:
'@iconify-json/octicon': 1.2.5
- '@nolebase/ui': 2.16.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))
+ '@nolebase/ui': 2.17.0(typescript@5.8.3)(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))
colorette: 2.0.20
date-fns: 4.1.0
defu: 6.1.4
- es-toolkit: 1.35.0
+ es-toolkit: 1.37.2
execa: 9.5.2
globby: 14.1.0
gray-matter: 4.0.3
less: 4.3.0
uncrypto: 0.1.3
- vitepress: 2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ vitepress: 2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
transitivePeerDependencies:
- typescript
- '@nolebase/vitepress-plugin-highlight-targeted-heading@2.16.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1))':
+ '@nolebase/vitepress-plugin-highlight-targeted-heading@2.17.0(vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1))':
dependencies:
less: 4.3.0
- vitepress: 2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
+ vitepress: 2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
'@nuxt/cli@3.25.0(magicast@0.3.5)':
dependencies:
@@ -9013,7 +9227,7 @@ snapshots:
defu: 6.1.4
fuse.js: 7.1.0
giget: 2.0.0
- h3: 1.15.1
+ h3: 1.15.3
httpxy: 0.1.7
jiti: 2.4.2
listhen: 1.9.0
@@ -9034,12 +9248,12 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@2.4.0(magicast@0.3.5)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))':
+ '@nuxt/devtools-kit@2.4.0(magicast@0.3.5)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))':
dependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
- '@nuxt/schema': 3.16.2
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
+ '@nuxt/schema': 3.17.2
execa: 8.0.1
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- magicast
@@ -9054,13 +9268,13 @@ snapshots:
prompts: 2.4.2
semver: 7.7.1
- '@nuxt/devtools@2.4.0(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
+ '@nuxt/devtools@2.4.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@nuxt/devtools-kit': 2.4.0(magicast@0.3.5)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ '@nuxt/devtools-kit': 2.4.0(magicast@0.3.5)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
'@nuxt/devtools-wizard': 2.4.0
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
- '@vue/devtools-core': 7.7.5(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@vue/devtools-kit': 7.7.5
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
+ '@vue/devtools-core': 7.7.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@vue/devtools-kit': 7.7.6
birpc: 2.3.0
consola: 3.4.2
destr: 2.0.5
@@ -9084,18 +9298,18 @@ snapshots:
sirv: 3.0.1
structured-clone-es: 1.0.0
tinyglobby: 0.2.13
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-plugin-inspect: 11.0.1(@nuxt/kit@3.16.2(magicast@0.3.5))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
- vite-plugin-vue-tracer: 0.1.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-plugin-inspect: 11.0.1(@nuxt/kit@3.17.2(magicast@0.3.5))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ vite-plugin-vue-tracer: 0.1.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
which: 5.0.0
- ws: 8.18.1
+ ws: 8.18.2
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- vue
- '@nuxt/kit@3.16.2(magicast@0.3.5)':
+ '@nuxt/kit@3.17.2(magicast@0.3.5)':
dependencies:
c12: 3.0.3(magicast@0.3.5)
consola: 3.4.2
@@ -9103,8 +9317,7 @@ snapshots:
destr: 2.0.5
errx: 0.1.0
exsolve: 1.0.5
- globby: 14.1.0
- ignore: 7.0.3
+ ignore: 7.0.4
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
@@ -9115,15 +9328,17 @@ snapshots:
scule: 1.3.0
semver: 7.7.1
std-env: 3.9.0
+ tinyglobby: 0.2.13
ufo: 1.6.1
unctx: 2.4.1
- unimport: 4.2.0
+ unimport: 5.0.1
untyped: 2.0.0
transitivePeerDependencies:
- magicast
- '@nuxt/schema@3.16.2':
+ '@nuxt/schema@3.17.2':
dependencies:
+ '@vue/shared': 3.5.13
consola: 3.4.2
defu: 6.1.4
pathe: 2.0.3
@@ -9131,7 +9346,7 @@ snapshots:
'@nuxt/telemetry@2.6.6(magicast@0.3.5)':
dependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
citty: 0.1.6
consola: 3.4.2
destr: 2.0.5
@@ -9139,29 +9354,29 @@ snapshots:
git-url-parse: 16.1.0
is-docker: 3.0.0
ofetch: 1.4.1
- package-manager-detector: 1.2.0
+ package-manager-detector: 1.3.0
pathe: 2.0.3
rc9: 2.1.2
std-env: 3.9.0
transitivePeerDependencies:
- magicast
- '@nuxt/vite-builder@3.16.2(@types/node@22.14.1)(eslint@9.25.1(jiti@2.4.2))(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(vue-tsc@2.2.8(typescript@5.8.3))(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)':
+ '@nuxt/vite-builder@3.17.2(@types/node@22.15.17)(eslint@9.26.0(jiti@2.4.2))(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(vue-tsc@2.2.8(typescript@5.8.3))(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)':
dependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
- '@rollup/plugin-replace': 6.0.2(rollup@4.40.0)
- '@vitejs/plugin-vue': 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@vitejs/plugin-vue-jsx': 4.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.40.2)
+ '@vitejs/plugin-vue': 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@vitejs/plugin-vue-jsx': 4.1.2(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
autoprefixer: 10.4.21(postcss@8.5.3)
consola: 3.4.2
- cssnano: 7.0.6(postcss@8.5.3)
+ cssnano: 7.0.7(postcss@8.5.3)
defu: 6.1.4
- esbuild: 0.25.3
+ esbuild: 0.25.4
escape-string-regexp: 5.0.0
exsolve: 1.0.5
externality: 1.0.2
get-port-please: 3.1.2
- h3: 1.15.1
+ h3: 1.15.3
jiti: 2.4.2
knitwork: 1.2.0
magic-string: 0.30.17
@@ -9172,14 +9387,14 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 2.1.0
postcss: 8.5.3
- rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)
+ rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)
std-env: 3.9.0
ufo: 1.6.1
unenv: 2.0.0-rc.15
unplugin: 2.3.2
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-plugin-checker: 0.9.1(eslint@9.25.1(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-node: 3.1.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-plugin-checker: 0.9.3(eslint@9.26.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3))
vue: 3.5.13(typescript@5.8.3)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
@@ -9209,149 +9424,186 @@ snapshots:
'@oslojs/encoding@1.1.0': {}
- '@oxc-minify/binding-darwin-arm64@0.65.0':
+ '@oxc-minify/binding-darwin-arm64@0.68.1':
optional: true
- '@oxc-minify/binding-darwin-x64@0.65.0':
+ '@oxc-minify/binding-darwin-x64@0.68.1':
optional: true
- '@oxc-minify/binding-linux-arm-gnueabihf@0.65.0':
+ '@oxc-minify/binding-linux-arm-gnueabihf@0.68.1':
optional: true
- '@oxc-minify/binding-linux-arm64-gnu@0.65.0':
+ '@oxc-minify/binding-linux-arm64-gnu@0.68.1':
optional: true
- '@oxc-minify/binding-linux-arm64-musl@0.65.0':
+ '@oxc-minify/binding-linux-arm64-musl@0.68.1':
optional: true
- '@oxc-minify/binding-linux-x64-gnu@0.65.0':
+ '@oxc-minify/binding-linux-x64-gnu@0.68.1':
optional: true
- '@oxc-minify/binding-linux-x64-musl@0.65.0':
+ '@oxc-minify/binding-linux-x64-musl@0.68.1':
optional: true
- '@oxc-minify/binding-wasm32-wasi@0.65.0':
+ '@oxc-minify/binding-wasm32-wasi@0.68.1':
dependencies:
'@napi-rs/wasm-runtime': 0.2.9
optional: true
- '@oxc-minify/binding-win32-arm64-msvc@0.65.0':
+ '@oxc-minify/binding-win32-arm64-msvc@0.68.1':
optional: true
- '@oxc-minify/binding-win32-x64-msvc@0.65.0':
+ '@oxc-minify/binding-win32-x64-msvc@0.68.1':
optional: true
- '@oxc-parser/binding-darwin-arm64@0.65.0':
+ '@oxc-parser/binding-darwin-arm64@0.68.1':
optional: true
- '@oxc-parser/binding-darwin-x64@0.65.0':
+ '@oxc-parser/binding-darwin-x64@0.68.1':
optional: true
- '@oxc-parser/binding-linux-arm-gnueabihf@0.65.0':
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.68.1':
optional: true
- '@oxc-parser/binding-linux-arm64-gnu@0.65.0':
+ '@oxc-parser/binding-linux-arm64-gnu@0.68.1':
optional: true
- '@oxc-parser/binding-linux-arm64-musl@0.65.0':
+ '@oxc-parser/binding-linux-arm64-musl@0.68.1':
optional: true
- '@oxc-parser/binding-linux-x64-gnu@0.65.0':
+ '@oxc-parser/binding-linux-x64-gnu@0.68.1':
optional: true
- '@oxc-parser/binding-linux-x64-musl@0.65.0':
+ '@oxc-parser/binding-linux-x64-musl@0.68.1':
optional: true
- '@oxc-parser/binding-wasm32-wasi@0.65.0':
+ '@oxc-parser/binding-wasm32-wasi@0.68.1':
dependencies:
'@napi-rs/wasm-runtime': 0.2.9
optional: true
- '@oxc-parser/binding-win32-arm64-msvc@0.65.0':
+ '@oxc-parser/binding-win32-arm64-msvc@0.68.1':
optional: true
- '@oxc-parser/binding-win32-x64-msvc@0.65.0':
+ '@oxc-parser/binding-win32-x64-msvc@0.68.1':
optional: true
- '@oxc-parser/wasm@0.60.0':
- dependencies:
- '@oxc-project/types': 0.60.0
-
- '@oxc-project/types@0.60.0': {}
-
'@oxc-project/types@0.65.0': {}
+ '@oxc-project/types@0.68.1': {}
+
'@oxc-resolver/binding-darwin-arm64@6.0.0':
optional: true
+ '@oxc-resolver/binding-darwin-arm64@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-darwin-x64@6.0.0':
optional: true
+ '@oxc-resolver/binding-darwin-x64@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-freebsd-x64@6.0.0':
optional: true
+ '@oxc-resolver/binding-freebsd-x64@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-arm-gnueabihf@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-arm-gnueabihf@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-arm64-gnu@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-arm64-gnu@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-arm64-musl@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-arm64-musl@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-riscv64-gnu@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-riscv64-gnu@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-s390x-gnu@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-s390x-gnu@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-x64-gnu@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-x64-gnu@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-linux-x64-musl@6.0.0':
optional: true
+ '@oxc-resolver/binding-linux-x64-musl@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-wasm32-wasi@6.0.0':
dependencies:
'@napi-rs/wasm-runtime': 0.2.9
optional: true
+ '@oxc-resolver/binding-wasm32-wasi@8.0.0':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.9
+ optional: true
+
'@oxc-resolver/binding-win32-arm64-msvc@6.0.0':
optional: true
+ '@oxc-resolver/binding-win32-arm64-msvc@8.0.0':
+ optional: true
+
'@oxc-resolver/binding-win32-x64-msvc@6.0.0':
optional: true
- '@oxc-transform/binding-darwin-arm64@0.65.0':
+ '@oxc-resolver/binding-win32-x64-msvc@8.0.0':
+ optional: true
+
+ '@oxc-transform/binding-darwin-arm64@0.68.1':
optional: true
- '@oxc-transform/binding-darwin-x64@0.65.0':
+ '@oxc-transform/binding-darwin-x64@0.68.1':
optional: true
- '@oxc-transform/binding-linux-arm-gnueabihf@0.65.0':
+ '@oxc-transform/binding-linux-arm-gnueabihf@0.68.1':
optional: true
- '@oxc-transform/binding-linux-arm64-gnu@0.65.0':
+ '@oxc-transform/binding-linux-arm64-gnu@0.68.1':
optional: true
- '@oxc-transform/binding-linux-arm64-musl@0.65.0':
+ '@oxc-transform/binding-linux-arm64-musl@0.68.1':
optional: true
- '@oxc-transform/binding-linux-x64-gnu@0.65.0':
+ '@oxc-transform/binding-linux-x64-gnu@0.68.1':
optional: true
- '@oxc-transform/binding-linux-x64-musl@0.65.0':
+ '@oxc-transform/binding-linux-x64-musl@0.68.1':
optional: true
- '@oxc-transform/binding-wasm32-wasi@0.65.0':
+ '@oxc-transform/binding-wasm32-wasi@0.68.1':
dependencies:
'@napi-rs/wasm-runtime': 0.2.9
optional: true
- '@oxc-transform/binding-win32-arm64-msvc@0.65.0':
+ '@oxc-transform/binding-win32-arm64-msvc@0.68.1':
optional: true
- '@oxc-transform/binding-win32-x64-msvc@0.65.0':
+ '@oxc-transform/binding-win32-x64-msvc@0.68.1':
optional: true
'@parcel/watcher-android-arm64@2.5.1':
@@ -9484,13 +9736,13 @@ snapshots:
'@rolldown/binding-win32-x64-msvc@1.0.0-beta.8':
optional: true
- '@rollup/plugin-alias@5.1.1(rollup@4.40.0)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.40.2)':
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/plugin-commonjs@28.0.3(rollup@4.40.0)':
+ '@rollup/plugin-commonjs@28.0.3(rollup@4.40.2)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.4(picomatch@4.0.2)
@@ -9498,160 +9750,160 @@ snapshots:
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/plugin-inject@5.0.5(rollup@4.40.0)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.40.2)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
estree-walker: 2.0.2
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/plugin-json@6.1.0(rollup@4.40.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.40.2)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.0)':
+ '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.2)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/plugin-replace@6.0.2(rollup@4.40.0)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.40.2)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/plugin-terser@0.4.4(rollup@4.40.0)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.40.2)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.39.0
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/pluginutils@5.1.4(rollup@4.40.0)':
+ '@rollup/pluginutils@5.1.4(rollup@4.40.2)':
dependencies:
'@types/estree': 1.0.7
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.40.2
- '@rollup/rollup-android-arm-eabi@4.40.0':
+ '@rollup/rollup-android-arm-eabi@4.40.2':
optional: true
- '@rollup/rollup-android-arm64@4.40.0':
+ '@rollup/rollup-android-arm64@4.40.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.0':
+ '@rollup/rollup-darwin-arm64@4.40.2':
optional: true
- '@rollup/rollup-darwin-x64@4.40.0':
+ '@rollup/rollup-darwin-x64@4.40.2':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.0':
+ '@rollup/rollup-freebsd-arm64@4.40.2':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.0':
+ '@rollup/rollup-freebsd-x64@4.40.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.40.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.0':
+ '@rollup/rollup-linux-arm64-gnu@4.40.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.0':
+ '@rollup/rollup-linux-arm64-musl@4.40.2':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.40.2':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.0':
+ '@rollup/rollup-linux-riscv64-musl@4.40.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.0':
+ '@rollup/rollup-linux-s390x-gnu@4.40.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.0':
+ '@rollup/rollup-linux-x64-gnu@4.40.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.0':
+ '@rollup/rollup-linux-x64-musl@4.40.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.0':
+ '@rollup/rollup-win32-arm64-msvc@4.40.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.0':
+ '@rollup/rollup-win32-ia32-msvc@4.40.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.0':
+ '@rollup/rollup-win32-x64-msvc@4.40.2':
optional: true
- '@rspack/binding-darwin-arm64@1.3.5':
+ '@rspack/binding-darwin-arm64@1.3.9':
optional: true
- '@rspack/binding-darwin-x64@1.3.5':
+ '@rspack/binding-darwin-x64@1.3.9':
optional: true
- '@rspack/binding-linux-arm64-gnu@1.3.5':
+ '@rspack/binding-linux-arm64-gnu@1.3.9':
optional: true
- '@rspack/binding-linux-arm64-musl@1.3.5':
+ '@rspack/binding-linux-arm64-musl@1.3.9':
optional: true
- '@rspack/binding-linux-x64-gnu@1.3.5':
+ '@rspack/binding-linux-x64-gnu@1.3.9':
optional: true
- '@rspack/binding-linux-x64-musl@1.3.5':
+ '@rspack/binding-linux-x64-musl@1.3.9':
optional: true
- '@rspack/binding-win32-arm64-msvc@1.3.5':
+ '@rspack/binding-win32-arm64-msvc@1.3.9':
optional: true
- '@rspack/binding-win32-ia32-msvc@1.3.5':
+ '@rspack/binding-win32-ia32-msvc@1.3.9':
optional: true
- '@rspack/binding-win32-x64-msvc@1.3.5':
+ '@rspack/binding-win32-x64-msvc@1.3.9':
optional: true
- '@rspack/binding@1.3.5':
+ '@rspack/binding@1.3.9':
optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.3.5
- '@rspack/binding-darwin-x64': 1.3.5
- '@rspack/binding-linux-arm64-gnu': 1.3.5
- '@rspack/binding-linux-arm64-musl': 1.3.5
- '@rspack/binding-linux-x64-gnu': 1.3.5
- '@rspack/binding-linux-x64-musl': 1.3.5
- '@rspack/binding-win32-arm64-msvc': 1.3.5
- '@rspack/binding-win32-ia32-msvc': 1.3.5
- '@rspack/binding-win32-x64-msvc': 1.3.5
-
- '@rspack/core@1.3.5(@swc/helpers@0.5.17)':
- dependencies:
- '@module-federation/runtime-tools': 0.11.2
- '@rspack/binding': 1.3.5
+ '@rspack/binding-darwin-arm64': 1.3.9
+ '@rspack/binding-darwin-x64': 1.3.9
+ '@rspack/binding-linux-arm64-gnu': 1.3.9
+ '@rspack/binding-linux-arm64-musl': 1.3.9
+ '@rspack/binding-linux-x64-gnu': 1.3.9
+ '@rspack/binding-linux-x64-musl': 1.3.9
+ '@rspack/binding-win32-arm64-msvc': 1.3.9
+ '@rspack/binding-win32-ia32-msvc': 1.3.9
+ '@rspack/binding-win32-x64-msvc': 1.3.9
+
+ '@rspack/core@1.3.9(@swc/helpers@0.5.17)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.13.1
+ '@rspack/binding': 1.3.9
'@rspack/lite-tapable': 1.0.1
- caniuse-lite: 1.0.30001715
+ caniuse-lite: 1.0.30001717
optionalDependencies:
'@swc/helpers': 0.5.17
@@ -9659,59 +9911,59 @@ snapshots:
'@sec-ant/readable-stream@0.4.1': {}
- '@shikijs/core@3.3.0':
+ '@shikijs/core@3.4.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.4.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
- '@shikijs/engine-javascript@3.3.0':
+ '@shikijs/engine-javascript@3.4.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.4.0
'@shikijs/vscode-textmate': 10.0.2
- oniguruma-to-es: 4.2.0
+ oniguruma-to-es: 4.3.3
- '@shikijs/engine-oniguruma@3.3.0':
+ '@shikijs/engine-oniguruma@3.4.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.4.0
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/langs@3.3.0':
+ '@shikijs/langs@3.4.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.4.0
- '@shikijs/themes@3.3.0':
+ '@shikijs/themes@3.4.0':
dependencies:
- '@shikijs/types': 3.3.0
+ '@shikijs/types': 3.4.0
- '@shikijs/transformers@3.3.0':
+ '@shikijs/transformers@3.4.0':
dependencies:
- '@shikijs/core': 3.3.0
- '@shikijs/types': 3.3.0
+ '@shikijs/core': 3.4.0
+ '@shikijs/types': 3.4.0
- '@shikijs/twoslash@3.3.0(typescript@5.8.3)':
+ '@shikijs/twoslash@3.4.0(typescript@5.8.3)':
dependencies:
- '@shikijs/core': 3.3.0
- '@shikijs/types': 3.3.0
+ '@shikijs/core': 3.4.0
+ '@shikijs/types': 3.4.0
twoslash: 0.3.1(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@shikijs/types@3.3.0':
+ '@shikijs/types@3.4.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- '@shikijs/vitepress-twoslash@3.3.0(@nuxt/kit@3.16.2(magicast@0.3.5))(typescript@5.8.3)':
+ '@shikijs/vitepress-twoslash@3.4.0(@nuxt/kit@3.17.2(magicast@0.3.5))(typescript@5.8.3)':
dependencies:
- '@shikijs/twoslash': 3.3.0(typescript@5.8.3)
- floating-vue: 5.2.2(@nuxt/kit@3.16.2(magicast@0.3.5))(vue@3.5.13(typescript@5.8.3))
+ '@shikijs/twoslash': 3.4.0(typescript@5.8.3)
+ floating-vue: 5.2.2(@nuxt/kit@3.17.2(magicast@0.3.5))(vue@3.5.13(typescript@5.8.3))
mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.1.0
mdast-util-to-hast: 13.2.0
- shiki: 3.3.0
+ shiki: 3.4.0
twoslash: 0.3.1(typescript@5.8.3)
twoslash-vue: 0.3.1(typescript@5.8.3)
vue: 3.5.13(typescript@5.8.3)
@@ -9732,10 +9984,10 @@ snapshots:
'@stylexjs/babel-plugin@0.9.3':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/core': 7.27.1
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
'@stylexjs/shared': 0.9.3
'@stylexjs/stylex': 0.9.3
esm-resolve: 1.0.11
@@ -9762,40 +10014,40 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@sxzz/eslint-config@6.1.2(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(@unocss/eslint-plugin@66.1.0-beta.12(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@sxzz/eslint-config@7.0.0(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(@unocss/eslint-plugin@66.1.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.25.1(jiti@2.4.2))
- '@eslint/js': 9.25.1
+ '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.26.0(jiti@2.4.2))
+ '@eslint/js': 9.26.0
'@eslint/markdown': 6.4.0
- eslint: 9.25.1(jiti@2.4.2)
- eslint-config-flat-gitignore: 2.1.0(eslint@9.25.1(jiti@2.4.2))
- eslint-config-prettier: 10.1.2(eslint@9.25.1(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
+ eslint-config-flat-gitignore: 2.1.0(eslint@9.26.0(jiti@2.4.2))
+ eslint-config-prettier: 10.1.3(eslint@9.26.0(jiti@2.4.2))
eslint-flat-config-utils: 2.0.1
- eslint-plugin-antfu: 3.1.1(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-command: 3.2.0(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-de-morgan: 1.2.1(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-import-x: 4.10.6(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- eslint-plugin-jsdoc: 50.6.9(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-jsonc: 2.20.0(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-n: 17.17.0(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-perfectionist: 4.12.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- eslint-plugin-pnpm: 0.3.1(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-prettier: 5.2.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.2(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))(prettier@3.5.3)
- eslint-plugin-regexp: 2.7.0(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-sxzz: 0.2.2(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-unicorn: 58.0.0(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-vue: 10.0.0(eslint@9.25.1(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.25.1(jiti@2.4.2)))
- eslint-plugin-yml: 1.18.0(eslint@9.25.1(jiti@2.4.2))
- globals: 16.0.0
+ eslint-plugin-antfu: 3.1.1(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-command: 3.2.0(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-de-morgan: 1.2.1(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-import-x: 4.11.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint-plugin-jsdoc: 50.6.11(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-jsonc: 2.20.0(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-n: 17.17.0(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-perfectionist: 4.12.3(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint-plugin-pnpm: 0.3.1(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-prettier: 5.4.0(@types/eslint@9.6.1)(eslint-config-prettier@10.1.3(eslint@9.26.0(jiti@2.4.2)))(eslint@9.26.0(jiti@2.4.2))(prettier@3.5.3)
+ eslint-plugin-regexp: 2.7.0(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-sxzz: 0.2.2(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-unicorn: 59.0.1(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-vue: 10.1.0(eslint@9.26.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.26.0(jiti@2.4.2)))
+ eslint-plugin-yml: 1.18.0(eslint@9.26.0(jiti@2.4.2))
+ globals: 16.1.0
jsonc-eslint-parser: 2.4.0
local-pkg: 1.1.1
prettier: 3.5.3
- typescript-eslint: 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- vue-eslint-parser: 10.1.3(eslint@9.25.1(jiti@2.4.2))
+ typescript-eslint: 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ vue-eslint-parser: 10.1.3(eslint@9.26.0(jiti@2.4.2))
yaml-eslint-parser: 1.3.0
optionalDependencies:
- '@unocss/eslint-plugin': 66.1.0-beta.12(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@unocss/eslint-plugin': 66.1.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
transitivePeerDependencies:
- '@eslint/json'
- '@types/eslint'
@@ -9805,21 +10057,21 @@ snapshots:
'@sxzz/prettier-config@2.2.1': {}
- '@sxzz/test-utils@0.5.5(esbuild@0.25.3)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(vitest@3.1.2)':
+ '@sxzz/test-utils@0.5.6(esbuild@0.25.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(vitest@3.1.3)':
dependencies:
tinyglobby: 0.2.13
unplugin-utils: 0.2.4
- vitest: 3.1.2(@types/debug@4.1.12)(@types/node@22.14.1)(@vitest/ui@3.1.2)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vitest: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(@vitest/ui@3.1.3)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
optionalDependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.4
rolldown: 1.0.0-beta.8(typescript@5.8.3)
- rollup: 4.40.0
+ rollup: 4.40.2
- '@tanstack/virtual-core@3.13.6': {}
+ '@tanstack/virtual-core@3.13.8': {}
- '@tanstack/vue-virtual@3.13.6(vue@3.5.13(typescript@5.8.3))':
+ '@tanstack/vue-virtual@3.13.8(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@tanstack/virtual-core': 3.13.6
+ '@tanstack/virtual-core': 3.13.8
vue: 3.5.13(typescript@5.8.3)
'@trysound/sax@0.2.0': {}
@@ -9833,8 +10085,6 @@ snapshots:
dependencies:
'@types/ms': 2.1.0
- '@types/doctrine@0.0.9': {}
-
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 9.6.1
@@ -9847,6 +10097,10 @@ snapshots:
'@types/estree@1.0.7': {}
+ '@types/fontkit@2.0.8':
+ dependencies:
+ '@types/node': 22.15.17
+
'@types/hast@3.0.4':
dependencies:
'@types/unist': 3.0.3
@@ -9872,13 +10126,13 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
- '@types/node@22.14.1':
+ '@types/node@22.15.17':
dependencies:
undici-types: 6.21.0
- '@types/normalize-package-data@2.4.4': {}
-
- '@types/parse-path@7.0.3': {}
+ '@types/parse-path@7.1.0':
+ dependencies:
+ parse-path: 7.1.0
'@types/resolve@1.20.2': {}
@@ -9888,15 +10142,15 @@ snapshots:
'@types/web-bluetooth@0.0.21': {}
- '@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.31.0
- '@typescript-eslint/type-utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.31.0
- eslint: 9.25.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.32.0
+ '@typescript-eslint/type-utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.32.0
+ eslint: 9.26.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -9905,40 +10159,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.31.0
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.31.0
+ '@typescript-eslint/scope-manager': 8.32.0
+ '@typescript-eslint/types': 8.32.0
+ '@typescript-eslint/typescript-estree': 8.32.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.32.0
debug: 4.4.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.31.0':
+ '@typescript-eslint/scope-manager@8.32.0':
dependencies:
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/visitor-keys': 8.31.0
+ '@typescript-eslint/types': 8.32.0
+ '@typescript-eslint/visitor-keys': 8.32.0
- '@typescript-eslint/type-utils@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/typescript-estree': 8.32.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
debug: 4.4.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.31.0': {}
+ '@typescript-eslint/types@8.32.0': {}
- '@typescript-eslint/typescript-estree@8.31.0(typescript@5.8.3)':
+ '@typescript-eslint/typescript-estree@8.32.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/visitor-keys': 8.31.0
+ '@typescript-eslint/types': 8.32.0
+ '@typescript-eslint/visitor-keys': 8.32.0
debug: 4.4.0
fast-glob: 3.3.3
is-glob: 4.0.3
@@ -9949,20 +10203,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.31.0
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
- eslint: 9.25.1(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.32.0
+ '@typescript-eslint/types': 8.32.0
+ '@typescript-eslint/typescript-estree': 8.32.0(typescript@5.8.3)
+ eslint: 9.26.0(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.31.0':
+ '@typescript-eslint/visitor-keys@8.32.0':
dependencies:
- '@typescript-eslint/types': 8.31.0
+ '@typescript-eslint/types': 8.32.0
eslint-visitor-keys: 4.2.0
'@typescript/vfs@1.6.1(typescript@5.8.3)':
@@ -9980,22 +10234,22 @@ snapshots:
unhead: 2.0.8
vue: 3.5.13(typescript@5.8.3)
- '@unocss/astro@66.1.0-beta.12(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
+ '@unocss/astro@66.1.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/reset': 66.1.0-beta.12
- '@unocss/vite': 66.1.0-beta.12(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@unocss/core': 66.1.1
+ '@unocss/reset': 66.1.1
+ '@unocss/vite': 66.1.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
optionalDependencies:
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- vue
- '@unocss/cli@66.1.0-beta.12':
+ '@unocss/cli@66.1.1':
dependencies:
'@ampproject/remapping': 2.3.0
- '@unocss/config': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
- '@unocss/preset-uno': 66.1.0-beta.12
+ '@unocss/config': 66.1.1
+ '@unocss/core': 66.1.1
+ '@unocss/preset-uno': 66.1.1
cac: 6.7.14
chokidar: 3.6.0
colorette: 2.0.20
@@ -10006,19 +10260,19 @@ snapshots:
tinyglobby: 0.2.13
unplugin-utils: 0.2.4
- '@unocss/config@66.1.0-beta.12':
+ '@unocss/config@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
unconfig: 7.3.2
- '@unocss/core@66.1.0-beta.12': {}
+ '@unocss/core@66.1.1': {}
- '@unocss/eslint-plugin@66.1.0-beta.12(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@unocss/eslint-plugin@66.1.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@unocss/config': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@unocss/config': 66.1.1
+ '@unocss/core': 66.1.1
+ '@unocss/rule-utils': 66.1.1
magic-string: 0.30.17
synckit: 0.9.2
transitivePeerDependencies:
@@ -10026,14 +10280,14 @@ snapshots:
- supports-color
- typescript
- '@unocss/extractor-arbitrary-variants@66.1.0-beta.12':
+ '@unocss/extractor-arbitrary-variants@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
- '@unocss/inspector@66.1.0-beta.12(vue@3.5.13(typescript@5.8.3))':
+ '@unocss/inspector@66.1.1(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/rule-utils': 66.1.1
colorette: 2.0.20
gzip-size: 6.0.0
sirv: 3.0.1
@@ -10041,22 +10295,22 @@ snapshots:
transitivePeerDependencies:
- vue
- '@unocss/nuxt@66.1.0-beta.12(magicast@0.3.5)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))(webpack@5.99.6(esbuild@0.25.3))':
- dependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
- '@unocss/config': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
- '@unocss/preset-attributify': 66.1.0-beta.12
- '@unocss/preset-icons': 66.1.0-beta.12
- '@unocss/preset-tagify': 66.1.0-beta.12
- '@unocss/preset-typography': 66.1.0-beta.12
- '@unocss/preset-uno': 66.1.0-beta.12
- '@unocss/preset-web-fonts': 66.1.0-beta.12
- '@unocss/preset-wind': 66.1.0-beta.12
- '@unocss/reset': 66.1.0-beta.12
- '@unocss/vite': 66.1.0-beta.12(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@unocss/webpack': 66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3))
- unocss: 66.1.0-beta.12(@unocss/webpack@66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3)))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@unocss/nuxt@66.1.1(magicast@0.3.5)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))(webpack@5.99.8(esbuild@0.25.4))':
+ dependencies:
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
+ '@unocss/config': 66.1.1
+ '@unocss/core': 66.1.1
+ '@unocss/preset-attributify': 66.1.1
+ '@unocss/preset-icons': 66.1.1
+ '@unocss/preset-tagify': 66.1.1
+ '@unocss/preset-typography': 66.1.1
+ '@unocss/preset-uno': 66.1.1
+ '@unocss/preset-web-fonts': 66.1.1
+ '@unocss/preset-wind': 66.1.1
+ '@unocss/reset': 66.1.1
+ '@unocss/vite': 66.1.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@unocss/webpack': 66.1.1(webpack@5.99.8(esbuild@0.25.4))
+ unocss: 66.1.1(@unocss/webpack@66.1.1(webpack@5.99.8(esbuild@0.25.4)))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
transitivePeerDependencies:
- magicast
- supports-color
@@ -10064,182 +10318,185 @@ snapshots:
- vue
- webpack
- '@unocss/postcss@66.1.0-beta.12':
+ '@unocss/postcss@66.1.1':
dependencies:
- '@unocss/config': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/config': 66.1.1
+ '@unocss/core': 66.1.1
+ '@unocss/rule-utils': 66.1.1
css-tree: 3.1.0
postcss: 8.5.3
tinyglobby: 0.2.13
- '@unocss/preset-attributify@66.1.0-beta.12':
+ '@unocss/preset-attributify@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
- '@unocss/preset-icons@66.1.0-beta.12':
+ '@unocss/preset-icons@66.1.1':
dependencies:
'@iconify/utils': 2.3.0
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
ofetch: 1.4.1
transitivePeerDependencies:
- supports-color
- '@unocss/preset-mini@66.1.0-beta.12':
+ '@unocss/preset-mini@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/extractor-arbitrary-variants': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/extractor-arbitrary-variants': 66.1.1
+ '@unocss/rule-utils': 66.1.1
- '@unocss/preset-tagify@66.1.0-beta.12':
+ '@unocss/preset-tagify@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
- '@unocss/preset-typography@66.1.0-beta.12':
+ '@unocss/preset-typography@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/preset-mini': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/preset-mini': 66.1.1
+ '@unocss/rule-utils': 66.1.1
- '@unocss/preset-uno@66.1.0-beta.12':
+ '@unocss/preset-uno@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/preset-wind3': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/preset-wind3': 66.1.1
- '@unocss/preset-web-fonts@66.1.0-beta.12':
+ '@unocss/preset-web-fonts@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
ofetch: 1.4.1
- '@unocss/preset-wind3@66.1.0-beta.12':
+ '@unocss/preset-wind3@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/preset-mini': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/preset-mini': 66.1.1
+ '@unocss/rule-utils': 66.1.1
- '@unocss/preset-wind4@66.1.0-beta.12':
+ '@unocss/preset-wind4@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/extractor-arbitrary-variants': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/extractor-arbitrary-variants': 66.1.1
+ '@unocss/rule-utils': 66.1.1
- '@unocss/preset-wind@66.1.0-beta.12':
+ '@unocss/preset-wind@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/preset-wind3': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/preset-wind3': 66.1.1
- '@unocss/reset@66.1.0-beta.12': {}
+ '@unocss/reset@66.1.1': {}
- '@unocss/rule-utils@66.1.0-beta.12':
+ '@unocss/rule-utils@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
magic-string: 0.30.17
- '@unocss/transformer-attributify-jsx@66.1.0-beta.12':
+ '@unocss/transformer-attributify-jsx@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
- '@unocss/transformer-compile-class@66.1.0-beta.12':
+ '@unocss/transformer-compile-class@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
- '@unocss/transformer-directives@66.1.0-beta.12':
+ '@unocss/transformer-directives@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
- '@unocss/rule-utils': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
+ '@unocss/rule-utils': 66.1.1
css-tree: 3.1.0
- '@unocss/transformer-variant-group@66.1.0-beta.12':
+ '@unocss/transformer-variant-group@66.1.1':
dependencies:
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/core': 66.1.1
- '@unocss/vite@66.1.0-beta.12(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
+ '@unocss/vite@66.1.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@unocss/config': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
- '@unocss/inspector': 66.1.0-beta.12(vue@3.5.13(typescript@5.8.3))
+ '@unocss/config': 66.1.1
+ '@unocss/core': 66.1.1
+ '@unocss/inspector': 66.1.1(vue@3.5.13(typescript@5.8.3))
chokidar: 3.6.0
magic-string: 0.30.17
pathe: 2.0.3
tinyglobby: 0.2.13
unplugin-utils: 0.2.4
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- vue
- '@unocss/webpack@66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3))':
+ '@unocss/webpack@66.1.1(webpack@5.99.8(esbuild@0.25.4))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@unocss/config': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
+ '@unocss/config': 66.1.1
+ '@unocss/core': 66.1.1
chokidar: 3.6.0
magic-string: 0.30.17
pathe: 2.0.3
tinyglobby: 0.2.13
unplugin: 2.3.2
unplugin-utils: 0.2.4
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.8(esbuild@0.25.4)
webpack-sources: 3.2.3
- '@unrs/resolver-binding-darwin-arm64@1.6.4':
+ '@unrs/resolver-binding-darwin-arm64@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-darwin-x64@1.7.2':
optional: true
- '@unrs/resolver-binding-darwin-x64@1.6.4':
+ '@unrs/resolver-binding-freebsd-x64@1.7.2':
optional: true
- '@unrs/resolver-binding-freebsd-x64@1.6.4':
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.6.4':
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-arm-musleabihf@1.6.4':
+ '@unrs/resolver-binding-linux-arm64-gnu@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-arm64-gnu@1.6.4':
+ '@unrs/resolver-binding-linux-arm64-musl@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-arm64-musl@1.6.4':
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-ppc64-gnu@1.6.4':
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-riscv64-gnu@1.6.4':
+ '@unrs/resolver-binding-linux-riscv64-musl@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-s390x-gnu@1.6.4':
+ '@unrs/resolver-binding-linux-s390x-gnu@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-x64-gnu@1.6.4':
+ '@unrs/resolver-binding-linux-x64-gnu@1.7.2':
optional: true
- '@unrs/resolver-binding-linux-x64-musl@1.6.4':
+ '@unrs/resolver-binding-linux-x64-musl@1.7.2':
optional: true
- '@unrs/resolver-binding-wasm32-wasi@1.6.4':
+ '@unrs/resolver-binding-wasm32-wasi@1.7.2':
dependencies:
'@napi-rs/wasm-runtime': 0.2.9
optional: true
- '@unrs/resolver-binding-win32-arm64-msvc@1.6.4':
+ '@unrs/resolver-binding-win32-arm64-msvc@1.7.2':
optional: true
- '@unrs/resolver-binding-win32-ia32-msvc@1.6.4':
+ '@unrs/resolver-binding-win32-ia32-msvc@1.7.2':
optional: true
- '@unrs/resolver-binding-win32-x64-msvc@1.6.4':
+ '@unrs/resolver-binding-win32-x64-msvc@1.7.2':
optional: true
'@valibot/to-json-schema@1.0.0(valibot@1.0.0(typescript@5.8.3))':
dependencies:
valibot: 1.0.0(typescript@5.8.3)
- '@vercel/nft@0.29.2(rollup@4.40.0)':
+ '@vercel/nft@0.29.2(rollup@4.40.2)':
dependencies:
'@mapbox/node-pre-gyp': 2.0.0
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
acorn: 8.14.1
acorn-import-attributes: 1.9.5(acorn@8.14.1)
async-sema: 3.1.1
@@ -10255,22 +10512,22 @@ snapshots:
- rollup
- supports-color
- '@vitejs/plugin-vue-jsx@4.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
+ '@vitejs/plugin-vue-jsx@4.1.2(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
- '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ '@babel/core': 7.27.1
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
+ '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.27.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
+ '@vitejs/plugin-vue@5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue: 3.5.13(typescript@5.8.3)
- '@vitest/coverage-v8@3.1.2(vitest@3.1.2)':
+ '@vitest/coverage-v8@3.1.3(vitest@3.1.3)':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
@@ -10284,77 +10541,77 @@ snapshots:
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.1.2(@types/debug@4.1.12)(@types/node@22.14.1)(@vitest/ui@3.1.2)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vitest: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(@vitest/ui@3.1.3)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@3.1.2':
+ '@vitest/expect@3.1.3':
dependencies:
- '@vitest/spy': 3.1.2
- '@vitest/utils': 3.1.2
+ '@vitest/spy': 3.1.3
+ '@vitest/utils': 3.1.3
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))':
+ '@vitest/mocker@3.1.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))':
dependencies:
- '@vitest/spy': 3.1.2
+ '@vitest/spy': 3.1.3
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
- '@vitest/pretty-format@3.1.2':
+ '@vitest/pretty-format@3.1.3':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.1.2':
+ '@vitest/runner@3.1.3':
dependencies:
- '@vitest/utils': 3.1.2
+ '@vitest/utils': 3.1.3
pathe: 2.0.3
- '@vitest/snapshot@3.1.2':
+ '@vitest/snapshot@3.1.3':
dependencies:
- '@vitest/pretty-format': 3.1.2
+ '@vitest/pretty-format': 3.1.3
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.1.2':
+ '@vitest/spy@3.1.3':
dependencies:
tinyspy: 3.0.2
- '@vitest/ui@3.1.2(vitest@3.1.2)':
+ '@vitest/ui@3.1.3(vitest@3.1.3)':
dependencies:
- '@vitest/utils': 3.1.2
+ '@vitest/utils': 3.1.3
fflate: 0.8.2
flatted: 3.3.3
pathe: 2.0.3
sirv: 3.0.1
tinyglobby: 0.2.13
tinyrainbow: 2.0.0
- vitest: 3.1.2(@types/debug@4.1.12)(@types/node@22.14.1)(@vitest/ui@3.1.2)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vitest: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(@vitest/ui@3.1.3)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
- '@vitest/utils@3.1.2':
+ '@vitest/utils@3.1.3':
dependencies:
- '@vitest/pretty-format': 3.1.2
+ '@vitest/pretty-format': 3.1.3
loupe: 3.1.3
tinyrainbow: 2.0.0
- '@volar/language-core@2.4.12':
+ '@volar/language-core@2.4.13':
dependencies:
- '@volar/source-map': 2.4.12
+ '@volar/source-map': 2.4.13
- '@volar/source-map@2.4.12': {}
+ '@volar/source-map@2.4.13': {}
- '@volar/typescript@2.4.12':
+ '@volar/typescript@2.4.13':
dependencies:
- '@volar/language-core': 2.4.12
+ '@volar/language-core': 2.4.13
path-browserify: 1.0.1
vscode-uri: 3.1.0
'@vue-macros/common@1.16.1(vue@3.5.13(typescript@5.8.3))':
dependencies:
'@vue/compiler-sfc': 3.5.13
- ast-kit: 1.4.2
+ ast-kit: 1.4.3
local-pkg: 1.1.1
magic-string-ast: 0.7.1
pathe: 2.0.3
@@ -10364,36 +10621,36 @@ snapshots:
'@vue/babel-helper-vue-transform-on@1.4.0': {}
- '@vue/babel-plugin-jsx@1.4.0(@babel/core@7.26.10)':
+ '@vue/babel-plugin-jsx@1.4.0(@babel/core@7.27.1)':
dependencies:
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
'@vue/babel-helper-vue-transform-on': 1.4.0
- '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.26.10)
+ '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.27.1)
'@vue/shared': 3.5.13
optionalDependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.27.1
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.4.0(@babel/core@7.26.10)':
+ '@vue/babel-plugin-resolve-type@1.4.0(@babel/core@7.27.1)':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/parser': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/core': 7.27.1
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/parser': 7.27.2
'@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
'@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.27.0
+ '@babel/parser': 7.27.2
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
@@ -10406,7 +10663,7 @@ snapshots:
'@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.27.0
+ '@babel/parser': 7.27.2
'@vue/compiler-core': 3.5.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-ssr': 3.5.13
@@ -10428,25 +10685,25 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-api@7.7.5':
+ '@vue/devtools-api@7.7.6':
dependencies:
- '@vue/devtools-kit': 7.7.5
+ '@vue/devtools-kit': 7.7.6
- '@vue/devtools-core@7.7.5(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
+ '@vue/devtools-core@7.7.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@vue/devtools-kit': 7.7.5
- '@vue/devtools-shared': 7.7.5
+ '@vue/devtools-kit': 7.7.6
+ '@vue/devtools-shared': 7.7.6
mitt: 3.0.1
nanoid: 5.1.5
pathe: 2.0.3
- vite-hot-client: 2.0.4(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ vite-hot-client: 2.0.4(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.7.5':
+ '@vue/devtools-kit@7.7.6':
dependencies:
- '@vue/devtools-shared': 7.7.5
+ '@vue/devtools-shared': 7.7.6
birpc: 2.3.0
hookable: 5.5.3
mitt: 3.0.1
@@ -10454,13 +10711,13 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.2
- '@vue/devtools-shared@7.7.5':
+ '@vue/devtools-shared@7.7.6':
dependencies:
rfdc: 1.4.1
'@vue/language-core@2.2.8(typescript@5.8.3)':
dependencies:
- '@volar/language-core': 2.4.12
+ '@volar/language-core': 2.4.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.13
@@ -10646,6 +10903,11 @@ snapshots:
dependencies:
event-target-shim: 5.0.1
+ accepts@2.0.0:
+ dependencies:
+ mime-types: 3.0.1
+ negotiator: 1.0.0
+
acorn-import-attributes@1.9.5(acorn@8.14.1):
dependencies:
acorn: 8.14.1
@@ -10681,21 +10943,21 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.23.4:
- dependencies:
- '@algolia/client-abtesting': 5.23.4
- '@algolia/client-analytics': 5.23.4
- '@algolia/client-common': 5.23.4
- '@algolia/client-insights': 5.23.4
- '@algolia/client-personalization': 5.23.4
- '@algolia/client-query-suggestions': 5.23.4
- '@algolia/client-search': 5.23.4
- '@algolia/ingestion': 1.23.4
- '@algolia/monitoring': 1.23.4
- '@algolia/recommend': 5.23.4
- '@algolia/requester-browser-xhr': 5.23.4
- '@algolia/requester-fetch': 5.23.4
- '@algolia/requester-node-http': 5.23.4
+ algoliasearch@5.24.0:
+ dependencies:
+ '@algolia/client-abtesting': 5.24.0
+ '@algolia/client-analytics': 5.24.0
+ '@algolia/client-common': 5.24.0
+ '@algolia/client-insights': 5.24.0
+ '@algolia/client-personalization': 5.24.0
+ '@algolia/client-query-suggestions': 5.24.0
+ '@algolia/client-search': 5.24.0
+ '@algolia/ingestion': 1.24.0
+ '@algolia/monitoring': 1.24.0
+ '@algolia/recommend': 5.24.0
+ '@algolia/requester-browser-xhr': 5.24.0
+ '@algolia/requester-fetch': 5.24.0
+ '@algolia/requester-node-http': 5.24.0
alien-signals@1.0.13: {}
@@ -10764,30 +11026,30 @@ snapshots:
assertion-error@2.0.1: {}
- ast-kit@1.4.2:
+ ast-kit@1.4.3:
dependencies:
- '@babel/parser': 7.27.0
+ '@babel/parser': 7.27.2
pathe: 2.0.3
ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.27.0
- ast-kit: 1.4.2
+ '@babel/parser': 7.27.2
+ ast-kit: 1.4.3
ast-walker-scope@0.7.1:
dependencies:
- '@babel/parser': 7.27.0
- ast-kit: 1.4.2
+ '@babel/parser': 7.27.2
+ ast-kit: 1.4.3
- astro@5.7.5(@types/node@22.14.1)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1):
+ astro@5.7.12(@types/node@22.15.17)(db0@0.3.2)(ioredis@5.6.1)(jiti@2.4.2)(less@4.3.0)(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1):
dependencies:
- '@astrojs/compiler': 2.11.0
+ '@astrojs/compiler': 2.12.0
'@astrojs/internal-helpers': 0.6.1
'@astrojs/markdown-remark': 6.3.1
'@astrojs/telemetry': 3.2.1
'@capsizecss/unpack': 2.4.0
'@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
acorn: 8.14.1
aria-query: 5.3.2
axobject-query: 4.1.0
@@ -10804,9 +11066,10 @@ snapshots:
dlv: 1.1.3
dset: 3.1.4
es-module-lexer: 1.7.0
- esbuild: 0.25.3
+ esbuild: 0.25.4
estree-walker: 3.0.3
flattie: 1.1.1
+ fontace: 0.3.0
github-slugger: 2.0.0
html-escaper: 3.0.3
http-cache-semantics: 4.1.1
@@ -10818,28 +11081,28 @@ snapshots:
neotraverse: 0.6.18
p-limit: 6.2.0
p-queue: 8.1.0
- package-manager-detector: 1.2.0
+ package-manager-detector: 1.3.0
picomatch: 4.0.2
prompts: 2.4.2
rehype: 13.0.2
semver: 7.7.1
- shiki: 3.3.0
+ shiki: 3.4.0
tinyexec: 0.3.2
tinyglobby: 0.2.13
tsconfck: 3.1.5(typescript@5.8.3)
ultrahtml: 1.6.0
- unifont: 0.2.0
+ unifont: 0.5.0
unist-util-visit: 5.0.0
- unstorage: 1.15.0(db0@0.3.2)(ioredis@5.6.1)
+ unstorage: 1.16.0(db0@0.3.2)(ioredis@5.6.1)
vfile: 6.0.3
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vitefu: 1.0.6(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vitefu: 1.0.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
xxhash-wasm: 1.1.0
yargs-parser: 21.1.1
yocto-spinner: 0.2.2
- zod: 3.24.3
- zod-to-json-schema: 3.24.5(zod@3.24.3)
- zod-to-ts: 1.2.0(typescript@5.8.3)(zod@3.24.3)
+ zod: 3.24.4
+ zod-to-json-schema: 3.24.5(zod@3.24.4)
+ zod-to-ts: 1.2.0(typescript@5.8.3)(zod@3.24.4)
optionalDependencies:
sharp: 0.33.5
transitivePeerDependencies:
@@ -10883,8 +11146,8 @@ snapshots:
autoprefixer@10.4.21(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001715
+ browserslist: 4.24.5
+ caniuse-lite: 1.0.30001717
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -10916,6 +11179,20 @@ snapshots:
blob-to-buffer@1.2.9: {}
+ body-parser@2.2.0:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 4.4.0
+ http-errors: 2.0.0
+ iconv-lite: 0.6.3
+ on-finished: 2.4.1
+ qs: 6.14.0
+ raw-body: 3.0.0
+ type-is: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
boolbase@1.0.0: {}
boxen@8.0.1:
@@ -10925,7 +11202,7 @@ snapshots:
chalk: 5.4.1
cli-boxes: 3.0.0
string-width: 7.2.0
- type-fest: 4.40.0
+ type-fest: 4.41.0
widest-line: 5.0.0
wrap-ansi: 9.0.0
@@ -10946,12 +11223,12 @@ snapshots:
dependencies:
base64-js: 1.5.1
- browserslist@4.24.4:
+ browserslist@4.24.5:
dependencies:
- caniuse-lite: 1.0.30001715
- electron-to-chromium: 1.5.140
+ caniuse-lite: 1.0.30001717
+ electron-to-chromium: 1.5.151
node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.24.4)
+ update-browserslist-db: 1.1.3(browserslist@4.24.5)
buffer-crc32@1.0.0: {}
@@ -10972,7 +11249,7 @@ snapshots:
cac: 6.7.14
escalade: 3.2.0
jsonc-parser: 3.3.1
- package-manager-detector: 1.2.0
+ package-manager-detector: 1.3.0
semver: 7.7.1
tinyexec: 0.3.2
tinyglobby: 0.2.13
@@ -10984,13 +11261,15 @@ snapshots:
dependencies:
run-applescript: 7.0.0
- bundle-require@5.1.0(esbuild@0.25.3):
+ bundle-require@5.1.0(esbuild@0.25.4):
dependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.4
load-tsconfig: 0.2.5
byte-size@9.0.1: {}
+ bytes@3.1.2: {}
+
c12@3.0.3(magicast@0.3.5):
dependencies:
chokidar: 4.0.3
@@ -11010,18 +11289,28 @@ snapshots:
cac@6.7.14: {}
+ call-bind-apply-helpers@1.0.2:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
+ call-bound@1.0.4:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
+
callsites@3.1.0: {}
camelcase@8.0.0: {}
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.24.4
- caniuse-lite: 1.0.30001715
+ browserslist: 4.24.5
+ caniuse-lite: 1.0.30001717
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001715: {}
+ caniuse-lite@1.0.30001717: {}
ccount@2.0.1: {}
@@ -11157,8 +11446,6 @@ snapshots:
compare-versions@6.1.1: {}
- compatx@0.1.8: {}
-
compatx@0.2.0: {}
compress-commons@6.0.2:
@@ -11177,12 +11464,22 @@ snapshots:
consola@3.4.2: {}
+ content-disposition@1.0.0:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ content-type@1.0.5: {}
+
convert-source-map@2.0.0: {}
cookie-es@1.2.2: {}
cookie-es@2.0.0: {}
+ cookie-signature@1.2.2: {}
+
+ cookie@0.7.2: {}
+
cookie@1.0.2: {}
copy-anything@2.0.6:
@@ -11193,12 +11490,17 @@ snapshots:
dependencies:
is-what: 4.1.16
- core-js-compat@3.41.0:
+ core-js-compat@3.42.0:
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
core-util-is@1.0.3: {}
+ cors@2.8.5:
+ dependencies:
+ object-assign: 4.1.1
+ vary: 1.1.2
+
crc-32@1.2.2: {}
crc32-stream@6.0.0:
@@ -11220,62 +11522,62 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crossws@0.3.4:
+ crossws@0.3.5:
dependencies:
uncrypto: 0.1.3
- cspell-config-lib@8.19.2:
+ cspell-config-lib@9.0.1:
dependencies:
- '@cspell/cspell-types': 8.19.2
+ '@cspell/cspell-types': 9.0.1
comment-json: 4.2.5
yaml: 2.7.1
- cspell-dictionary@8.19.2:
+ cspell-dictionary@9.0.1:
dependencies:
- '@cspell/cspell-pipe': 8.19.2
- '@cspell/cspell-types': 8.19.2
- cspell-trie-lib: 8.19.2
+ '@cspell/cspell-pipe': 9.0.1
+ '@cspell/cspell-types': 9.0.1
+ cspell-trie-lib: 9.0.1
fast-equals: 5.2.2
- cspell-gitignore@8.19.2:
+ cspell-gitignore@9.0.1:
dependencies:
- '@cspell/url': 8.19.2
- cspell-glob: 8.19.2
- cspell-io: 8.19.2
+ '@cspell/url': 9.0.1
+ cspell-glob: 9.0.1
+ cspell-io: 9.0.1
- cspell-glob@8.19.2:
+ cspell-glob@9.0.1:
dependencies:
- '@cspell/url': 8.19.2
+ '@cspell/url': 9.0.1
picomatch: 4.0.2
- cspell-grammar@8.19.2:
+ cspell-grammar@9.0.1:
dependencies:
- '@cspell/cspell-pipe': 8.19.2
- '@cspell/cspell-types': 8.19.2
+ '@cspell/cspell-pipe': 9.0.1
+ '@cspell/cspell-types': 9.0.1
- cspell-io@8.19.2:
+ cspell-io@9.0.1:
dependencies:
- '@cspell/cspell-service-bus': 8.19.2
- '@cspell/url': 8.19.2
+ '@cspell/cspell-service-bus': 9.0.1
+ '@cspell/url': 9.0.1
- cspell-lib@8.19.2:
+ cspell-lib@9.0.1:
dependencies:
- '@cspell/cspell-bundled-dicts': 8.19.2
- '@cspell/cspell-pipe': 8.19.2
- '@cspell/cspell-resolver': 8.19.2
- '@cspell/cspell-types': 8.19.2
- '@cspell/dynamic-import': 8.19.2
- '@cspell/filetypes': 8.19.2
- '@cspell/strong-weak-map': 8.19.2
- '@cspell/url': 8.19.2
+ '@cspell/cspell-bundled-dicts': 9.0.1
+ '@cspell/cspell-pipe': 9.0.1
+ '@cspell/cspell-resolver': 9.0.1
+ '@cspell/cspell-types': 9.0.1
+ '@cspell/dynamic-import': 9.0.1
+ '@cspell/filetypes': 9.0.1
+ '@cspell/strong-weak-map': 9.0.1
+ '@cspell/url': 9.0.1
clear-module: 4.1.2
comment-json: 4.2.5
- cspell-config-lib: 8.19.2
- cspell-dictionary: 8.19.2
- cspell-glob: 8.19.2
- cspell-grammar: 8.19.2
- cspell-io: 8.19.2
- cspell-trie-lib: 8.19.2
+ cspell-config-lib: 9.0.1
+ cspell-dictionary: 9.0.1
+ cspell-glob: 9.0.1
+ cspell-grammar: 9.0.1
+ cspell-io: 9.0.1
+ cspell-trie-lib: 9.0.1
env-paths: 3.0.0
fast-equals: 5.2.2
gensequence: 7.0.0
@@ -11285,30 +11587,29 @@ snapshots:
vscode-uri: 3.1.0
xdg-basedir: 5.1.0
- cspell-trie-lib@8.19.2:
+ cspell-trie-lib@9.0.1:
dependencies:
- '@cspell/cspell-pipe': 8.19.2
- '@cspell/cspell-types': 8.19.2
+ '@cspell/cspell-pipe': 9.0.1
+ '@cspell/cspell-types': 9.0.1
gensequence: 7.0.0
- cspell@8.19.2:
+ cspell@9.0.1:
dependencies:
- '@cspell/cspell-json-reporter': 8.19.2
- '@cspell/cspell-pipe': 8.19.2
- '@cspell/cspell-types': 8.19.2
- '@cspell/dynamic-import': 8.19.2
- '@cspell/url': 8.19.2
+ '@cspell/cspell-json-reporter': 9.0.1
+ '@cspell/cspell-pipe': 9.0.1
+ '@cspell/cspell-types': 9.0.1
+ '@cspell/dynamic-import': 9.0.1
+ '@cspell/url': 9.0.1
chalk: 5.4.1
chalk-template: 1.1.0
commander: 13.1.0
- cspell-dictionary: 8.19.2
- cspell-gitignore: 8.19.2
- cspell-glob: 8.19.2
- cspell-io: 8.19.2
- cspell-lib: 8.19.2
+ cspell-dictionary: 9.0.1
+ cspell-gitignore: 9.0.1
+ cspell-glob: 9.0.1
+ cspell-io: 9.0.1
+ cspell-lib: 9.0.1
fast-json-stable-stringify: 2.1.0
file-entry-cache: 9.1.0
- get-stdin: 9.0.0
semver: 7.7.1
tinyglobby: 0.2.13
@@ -11345,47 +11646,47 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.6(postcss@8.5.3):
+ cssnano-preset-default@7.0.7(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
css-declaration-sorter: 7.2.0(postcss@8.5.3)
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.1(postcss@8.5.3)
postcss: 8.5.3
postcss-calc: 10.1.1(postcss@8.5.3)
- postcss-colormin: 7.0.2(postcss@8.5.3)
- postcss-convert-values: 7.0.4(postcss@8.5.3)
- postcss-discard-comments: 7.0.3(postcss@8.5.3)
- postcss-discard-duplicates: 7.0.1(postcss@8.5.3)
- postcss-discard-empty: 7.0.0(postcss@8.5.3)
- postcss-discard-overridden: 7.0.0(postcss@8.5.3)
- postcss-merge-longhand: 7.0.4(postcss@8.5.3)
- postcss-merge-rules: 7.0.4(postcss@8.5.3)
- postcss-minify-font-values: 7.0.0(postcss@8.5.3)
- postcss-minify-gradients: 7.0.0(postcss@8.5.3)
- postcss-minify-params: 7.0.2(postcss@8.5.3)
- postcss-minify-selectors: 7.0.4(postcss@8.5.3)
- postcss-normalize-charset: 7.0.0(postcss@8.5.3)
- postcss-normalize-display-values: 7.0.0(postcss@8.5.3)
- postcss-normalize-positions: 7.0.0(postcss@8.5.3)
- postcss-normalize-repeat-style: 7.0.0(postcss@8.5.3)
- postcss-normalize-string: 7.0.0(postcss@8.5.3)
- postcss-normalize-timing-functions: 7.0.0(postcss@8.5.3)
- postcss-normalize-unicode: 7.0.2(postcss@8.5.3)
- postcss-normalize-url: 7.0.0(postcss@8.5.3)
- postcss-normalize-whitespace: 7.0.0(postcss@8.5.3)
- postcss-ordered-values: 7.0.1(postcss@8.5.3)
- postcss-reduce-initial: 7.0.2(postcss@8.5.3)
- postcss-reduce-transforms: 7.0.0(postcss@8.5.3)
- postcss-svgo: 7.0.1(postcss@8.5.3)
- postcss-unique-selectors: 7.0.3(postcss@8.5.3)
-
- cssnano-utils@5.0.0(postcss@8.5.3):
+ postcss-colormin: 7.0.3(postcss@8.5.3)
+ postcss-convert-values: 7.0.5(postcss@8.5.3)
+ postcss-discard-comments: 7.0.4(postcss@8.5.3)
+ postcss-discard-duplicates: 7.0.2(postcss@8.5.3)
+ postcss-discard-empty: 7.0.1(postcss@8.5.3)
+ postcss-discard-overridden: 7.0.1(postcss@8.5.3)
+ postcss-merge-longhand: 7.0.5(postcss@8.5.3)
+ postcss-merge-rules: 7.0.5(postcss@8.5.3)
+ postcss-minify-font-values: 7.0.1(postcss@8.5.3)
+ postcss-minify-gradients: 7.0.1(postcss@8.5.3)
+ postcss-minify-params: 7.0.3(postcss@8.5.3)
+ postcss-minify-selectors: 7.0.5(postcss@8.5.3)
+ postcss-normalize-charset: 7.0.1(postcss@8.5.3)
+ postcss-normalize-display-values: 7.0.1(postcss@8.5.3)
+ postcss-normalize-positions: 7.0.1(postcss@8.5.3)
+ postcss-normalize-repeat-style: 7.0.1(postcss@8.5.3)
+ postcss-normalize-string: 7.0.1(postcss@8.5.3)
+ postcss-normalize-timing-functions: 7.0.1(postcss@8.5.3)
+ postcss-normalize-unicode: 7.0.3(postcss@8.5.3)
+ postcss-normalize-url: 7.0.1(postcss@8.5.3)
+ postcss-normalize-whitespace: 7.0.1(postcss@8.5.3)
+ postcss-ordered-values: 7.0.2(postcss@8.5.3)
+ postcss-reduce-initial: 7.0.3(postcss@8.5.3)
+ postcss-reduce-transforms: 7.0.1(postcss@8.5.3)
+ postcss-svgo: 7.0.2(postcss@8.5.3)
+ postcss-unique-selectors: 7.0.4(postcss@8.5.3)
+
+ cssnano-utils@5.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- cssnano@7.0.6(postcss@8.5.3):
+ cssnano@7.0.7(postcss@8.5.3):
dependencies:
- cssnano-preset-default: 7.0.6(postcss@8.5.3)
+ cssnano-preset-default: 7.0.7(postcss@8.5.3)
lilconfig: 3.1.3
postcss: 8.5.3
@@ -11462,10 +11763,6 @@ snapshots:
dlv@1.1.3: {}
- doctrine@3.0.0:
- dependencies:
- esutils: 2.0.3
-
dom-serializer@2.0.0:
dependencies:
domelementtype: 2.3.0
@@ -11486,21 +11783,25 @@ snapshots:
dot-prop@9.0.0:
dependencies:
- type-fest: 4.40.0
+ type-fest: 4.41.0
dotenv@16.5.0: {}
dset@3.1.4: {}
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
duplexer@0.1.2: {}
eastasianwidth@0.2.0: {}
ee-first@1.1.1: {}
- electron-to-chromium@1.5.140: {}
-
- emoji-regex-xs@1.0.0: {}
+ electron-to-chromium@1.5.151: {}
emoji-regex@10.4.0: {}
@@ -11532,37 +11833,45 @@ snapshots:
errx@0.1.0: {}
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
+
es-module-lexer@1.7.0: {}
- es-toolkit@1.35.0: {}
+ es-object-atoms@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
- esbuild@0.25.3:
+ es-toolkit@1.37.2: {}
+
+ esbuild@0.25.4:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.3
- '@esbuild/android-arm': 0.25.3
- '@esbuild/android-arm64': 0.25.3
- '@esbuild/android-x64': 0.25.3
- '@esbuild/darwin-arm64': 0.25.3
- '@esbuild/darwin-x64': 0.25.3
- '@esbuild/freebsd-arm64': 0.25.3
- '@esbuild/freebsd-x64': 0.25.3
- '@esbuild/linux-arm': 0.25.3
- '@esbuild/linux-arm64': 0.25.3
- '@esbuild/linux-ia32': 0.25.3
- '@esbuild/linux-loong64': 0.25.3
- '@esbuild/linux-mips64el': 0.25.3
- '@esbuild/linux-ppc64': 0.25.3
- '@esbuild/linux-riscv64': 0.25.3
- '@esbuild/linux-s390x': 0.25.3
- '@esbuild/linux-x64': 0.25.3
- '@esbuild/netbsd-arm64': 0.25.3
- '@esbuild/netbsd-x64': 0.25.3
- '@esbuild/openbsd-arm64': 0.25.3
- '@esbuild/openbsd-x64': 0.25.3
- '@esbuild/sunos-x64': 0.25.3
- '@esbuild/win32-arm64': 0.25.3
- '@esbuild/win32-ia32': 0.25.3
- '@esbuild/win32-x64': 0.25.3
+ '@esbuild/aix-ppc64': 0.25.4
+ '@esbuild/android-arm': 0.25.4
+ '@esbuild/android-arm64': 0.25.4
+ '@esbuild/android-x64': 0.25.4
+ '@esbuild/darwin-arm64': 0.25.4
+ '@esbuild/darwin-x64': 0.25.4
+ '@esbuild/freebsd-arm64': 0.25.4
+ '@esbuild/freebsd-x64': 0.25.4
+ '@esbuild/linux-arm': 0.25.4
+ '@esbuild/linux-arm64': 0.25.4
+ '@esbuild/linux-ia32': 0.25.4
+ '@esbuild/linux-loong64': 0.25.4
+ '@esbuild/linux-mips64el': 0.25.4
+ '@esbuild/linux-ppc64': 0.25.4
+ '@esbuild/linux-riscv64': 0.25.4
+ '@esbuild/linux-s390x': 0.25.4
+ '@esbuild/linux-x64': 0.25.4
+ '@esbuild/netbsd-arm64': 0.25.4
+ '@esbuild/netbsd-x64': 0.25.4
+ '@esbuild/openbsd-arm64': 0.25.4
+ '@esbuild/openbsd-x64': 0.25.4
+ '@esbuild/sunos-x64': 0.25.4
+ '@esbuild/win32-arm64': 0.25.4
+ '@esbuild/win32-ia32': 0.25.4
+ '@esbuild/win32-x64': 0.25.4
escalade@3.2.0: {}
@@ -11574,24 +11883,24 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-compat-utils@0.5.1(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
semver: 7.7.1
- eslint-compat-utils@0.6.5(eslint@9.25.1(jiti@2.4.2)):
+ eslint-compat-utils@0.6.5(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
semver: 7.7.1
- eslint-config-flat-gitignore@2.1.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-config-flat-gitignore@2.1.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- '@eslint/compat': 1.2.8(eslint@9.25.1(jiti@2.4.2))
- eslint: 9.25.1(jiti@2.4.2)
+ '@eslint/compat': 1.2.9(eslint@9.26.0(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
- eslint-config-prettier@10.1.2(eslint@9.25.1(jiti@2.4.2)):
+ eslint-config-prettier@10.1.3(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-flat-config-utils@2.0.1:
dependencies:
@@ -11605,40 +11914,38 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-json-compat-utils@0.2.1(eslint@9.25.1(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
+ eslint-json-compat-utils@0.2.1(eslint@9.26.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-plugin-antfu@3.1.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-antfu@3.1.1(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
- eslint-plugin-command@3.2.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-command@3.2.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.50.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
- eslint-plugin-de-morgan@1.2.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-de-morgan@1.2.1(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
- eslint-plugin-es-x@7.8.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-es-x@7.8.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.25.1(jiti@2.4.2)
- eslint-compat-utils: 0.5.1(eslint@9.25.1(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
+ eslint-compat-utils: 0.5.1(eslint@9.26.0(jiti@2.4.2))
- eslint-plugin-import-x@4.10.6(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
+ eslint-plugin-import-x@4.11.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@pkgr/core': 0.2.4
- '@types/doctrine': 0.0.9
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ comment-parser: 1.4.1
debug: 4.4.0
- doctrine: 3.0.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.10.0
is-glob: 4.0.3
@@ -11646,34 +11953,33 @@ snapshots:
semver: 7.7.1
stable-hash: 0.0.5
tslib: 2.8.1
- unrs-resolver: 1.6.4
+ unrs-resolver: 1.7.2
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsdoc@50.6.9(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-jsdoc@50.6.11(eslint@9.26.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
espree: 10.3.0
esquery: 1.6.0
- parse-imports: 2.2.1
+ parse-imports-exports: 0.2.4
semver: 7.7.1
spdx-expression-parse: 4.0.0
- synckit: 0.9.2
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.20.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-jsonc@2.20.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
- eslint: 9.25.1(jiti@2.4.2)
- eslint-compat-utils: 0.6.5(eslint@9.25.1(jiti@2.4.2))
- eslint-json-compat-utils: 0.2.1(eslint@9.25.1(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.5(eslint@9.26.0(jiti@2.4.2))
+ eslint-json-compat-utils: 0.2.1(eslint@9.26.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
espree: 10.3.0
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -11682,31 +11988,31 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.17.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-n@17.17.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
enhanced-resolve: 5.18.1
- eslint: 9.25.1(jiti@2.4.2)
- eslint-plugin-es-x: 7.8.0(eslint@9.25.1(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
+ eslint-plugin-es-x: 7.8.0(eslint@9.26.0(jiti@2.4.2))
get-tsconfig: 4.10.0
globals: 15.15.0
ignore: 5.3.2
minimatch: 9.0.5
semver: 7.7.1
- eslint-plugin-perfectionist@4.12.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
+ eslint-plugin-perfectionist@4.12.3(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/types': 8.31.0
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.25.1(jiti@2.4.2)
+ '@typescript-eslint/types': 8.32.0
+ '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.26.0(jiti@2.4.2)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-pnpm@0.3.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-pnpm@0.3.1(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
find-up-simple: 1.0.1
jsonc-eslint-parser: 2.4.0
pathe: 2.0.3
@@ -11714,75 +12020,75 @@ snapshots:
tinyglobby: 0.2.13
yaml-eslint-parser: 1.3.0
- eslint-plugin-prettier@5.2.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.2(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))(prettier@3.5.3):
+ eslint-plugin-prettier@5.4.0(@types/eslint@9.6.1)(eslint-config-prettier@10.1.3(eslint@9.26.0(jiti@2.4.2)))(eslint@9.26.0(jiti@2.4.2))(prettier@3.5.3):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
prettier: 3.5.3
prettier-linter-helpers: 1.0.0
synckit: 0.11.4
optionalDependencies:
'@types/eslint': 9.6.1
- eslint-config-prettier: 10.1.2(eslint@9.25.1(jiti@2.4.2))
+ eslint-config-prettier: 10.1.3(eslint@9.26.0(jiti@2.4.2))
- eslint-plugin-regexp@2.7.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-regexp@2.7.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-sxzz@0.2.2(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-sxzz@0.2.2(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
- eslint-plugin-unicorn@58.0.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-unicorn@59.0.1(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
+ '@babel/helper-validator-identifier': 7.27.1
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
'@eslint/plugin-kit': 0.2.8
ci-info: 4.2.0
clean-regexp: 1.0.0
- core-js-compat: 3.41.0
- eslint: 9.25.1(jiti@2.4.2)
+ core-js-compat: 3.42.0
+ eslint: 9.26.0(jiti@2.4.2)
esquery: 1.6.0
- globals: 16.0.0
+ find-up-simple: 1.0.1
+ globals: 16.1.0
indent-string: 5.0.0
is-builtin-module: 5.0.0
jsesc: 3.1.0
pluralize: 8.0.0
- read-package-up: 11.0.0
regexp-tree: 0.1.27
regjsparser: 0.12.0
semver: 7.7.1
strip-indent: 4.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/eslint-plugin': 8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
- eslint-plugin-vue@10.0.0(eslint@9.25.1(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.25.1(jiti@2.4.2))):
+ eslint-plugin-vue@10.1.0(eslint@9.26.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.26.0(jiti@2.4.2))):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
- eslint: 9.25.1(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.7.1
- vue-eslint-parser: 10.1.3(eslint@9.25.1(jiti@2.4.2))
+ vue-eslint-parser: 10.1.3(eslint@9.26.0(jiti@2.4.2))
xml-name-validator: 4.0.0
- eslint-plugin-yml@1.18.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-yml@1.18.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint: 9.25.1(jiti@2.4.2)
- eslint-compat-utils: 0.6.5(eslint@9.25.1(jiti@2.4.2))
+ eslint: 9.26.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.5(eslint@9.26.0(jiti@2.4.2))
natural-compare: 1.4.0
yaml-eslint-parser: 1.3.0
transitivePeerDependencies:
@@ -11802,19 +12108,20 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.25.1(jiti@2.4.2):
+ eslint@9.26.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.20.0
- '@eslint/config-helpers': 0.2.1
+ '@eslint/config-helpers': 0.2.2
'@eslint/core': 0.13.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.25.1
+ '@eslint/js': 9.26.0
'@eslint/plugin-kit': 0.2.8
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
+ '@humanwhocodes/retry': 0.4.3
+ '@modelcontextprotocol/sdk': 1.11.1
'@types/estree': 1.0.7
'@types/json-schema': 7.0.15
ajv: 6.12.6
@@ -11839,6 +12146,7 @@ snapshots:
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
+ zod: 3.24.4
optionalDependencies:
jiti: 2.4.2
transitivePeerDependencies:
@@ -11888,6 +12196,12 @@ snapshots:
events@3.3.0: {}
+ eventsource-parser@3.0.1: {}
+
+ eventsource@3.0.6:
+ dependencies:
+ eventsource-parser: 3.0.1
+
execa@8.0.1:
dependencies:
cross-spawn: 7.0.6
@@ -11917,6 +12231,42 @@ snapshots:
expect-type@1.2.1: {}
+ express-rate-limit@7.5.0(express@5.1.0):
+ dependencies:
+ express: 5.1.0
+
+ express@5.1.0:
+ dependencies:
+ accepts: 2.0.0
+ body-parser: 2.2.0
+ content-disposition: 1.0.0
+ content-type: 1.0.5
+ cookie: 0.7.2
+ cookie-signature: 1.2.2
+ debug: 4.4.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.0
+ fresh: 2.0.0
+ http-errors: 2.0.0
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.1
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.14.0
+ range-parser: 1.2.1
+ router: 2.2.0
+ send: 1.2.0
+ serve-static: 2.2.0
+ statuses: 2.0.1
+ type-is: 2.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
exsolve@1.0.5: {}
extend-shallow@2.0.1:
@@ -11988,6 +12338,17 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
+ finalhandler@2.1.0:
+ dependencies:
+ debug: 4.4.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
find-up-simple@1.0.1: {}
find-up@5.0.0:
@@ -12009,18 +12370,23 @@ snapshots:
flattie@1.1.1: {}
- floating-vue@5.2.2(@nuxt/kit@3.16.2(magicast@0.3.5))(vue@3.5.13(typescript@5.8.3)):
+ floating-vue@5.2.2(@nuxt/kit@3.17.2(magicast@0.3.5))(vue@3.5.13(typescript@5.8.3)):
dependencies:
'@floating-ui/dom': 1.1.1
vue: 3.5.13(typescript@5.8.3)
vue-resize: 2.0.0-alpha.1(vue@3.5.13(typescript@5.8.3))
optionalDependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
focus-trap@7.6.4:
dependencies:
tabbable: 6.2.0
+ fontace@0.3.0:
+ dependencies:
+ '@types/fontkit': 2.0.8
+ fontkit: 2.0.4
+
fontkit@2.0.4:
dependencies:
'@swc/helpers': 0.5.17
@@ -12040,6 +12406,8 @@ snapshots:
format@0.2.2: {}
+ forwarded@0.2.0: {}
+
fraction.js@4.3.7: {}
fresh@2.0.0: {}
@@ -12053,6 +12421,8 @@ snapshots:
fsevents@2.3.3:
optional: true
+ function-bind@1.1.2: {}
+
fuse.js@7.1.0: {}
fzf@0.5.2: {}
@@ -12065,11 +12435,27 @@ snapshots:
get-east-asian-width@1.3.0: {}
+ get-intrinsic@1.3.0:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
+
get-port-please@3.1.2: {}
get-port@7.1.0: {}
- get-stdin@9.0.0: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
get-stream@8.0.1: {}
@@ -12121,7 +12507,7 @@ snapshots:
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
- glob@11.0.1:
+ glob@11.0.2:
dependencies:
foreground-child: 3.3.1
jackspeak: 4.1.0
@@ -12140,17 +12526,19 @@ snapshots:
globals@15.15.0: {}
- globals@16.0.0: {}
+ globals@16.1.0: {}
globby@14.1.0:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.3
- ignore: 7.0.3
+ ignore: 7.0.4
path-type: 6.0.0
slash: 5.1.0
unicorn-magic: 0.3.0
+ gopd@1.2.0: {}
+
graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -12170,10 +12558,10 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3@1.15.1:
+ h3@1.15.3:
dependencies:
cookie-es: 1.2.2
- crossws: 0.3.4
+ crossws: 0.3.5
defu: 6.1.4
destr: 2.0.5
iron-webcrypto: 1.2.1
@@ -12186,6 +12574,12 @@ snapshots:
has-own-prop@2.0.0: {}
+ has-symbols@1.1.0: {}
+
+ hasown@2.0.2:
+ dependencies:
+ function-bind: 1.1.2
+
hast-util-from-html@2.0.3:
dependencies:
'@types/hast': 3.0.4
@@ -12201,7 +12595,7 @@ snapshots:
'@types/unist': 3.0.3
devlop: 1.1.0
hastscript: 9.0.1
- property-information: 7.0.0
+ property-information: 7.1.0
vfile: 6.0.3
vfile-location: 5.0.3
web-namespaces: 2.0.1
@@ -12239,7 +12633,7 @@ snapshots:
hast-util-whitespace: 3.0.0
html-void-elements: 3.0.0
mdast-util-to-hast: 13.2.0
- property-information: 7.0.0
+ property-information: 7.1.0
space-separated-tokens: 2.0.2
stringify-entities: 4.0.4
zwitch: 2.0.4
@@ -12270,17 +12664,13 @@ snapshots:
'@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 4.0.0
- property-information: 7.0.0
+ property-information: 7.1.0
space-separated-tokens: 2.0.2
he@1.2.0: {}
hookable@5.5.3: {}
- hosted-git-info@7.0.2:
- dependencies:
- lru-cache: 10.4.3
-
html-escaper@2.0.2: {}
html-escaper@3.0.3: {}
@@ -12315,13 +12705,12 @@ snapshots:
iconv-lite@0.6.3:
dependencies:
safer-buffer: 2.1.2
- optional: true
ieee754@1.2.1: {}
ignore@5.3.2: {}
- ignore@7.0.3: {}
+ ignore@7.0.4: {}
image-meta@0.2.1: {}
@@ -12335,22 +12724,18 @@ snapshots:
import-meta-resolve@4.1.0: {}
- impound@0.2.2(rollup@4.40.0):
+ impound@1.0.0:
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
- mlly: 1.7.4
+ exsolve: 1.0.5
mocked-exports: 0.1.1
pathe: 2.0.3
unplugin: 2.3.2
- transitivePeerDependencies:
- - rollup
+ unplugin-utils: 0.2.4
imurmurhash@0.1.4: {}
indent-string@5.0.0: {}
- index-to-position@1.1.0: {}
-
inherits@2.0.4: {}
ini@4.1.1: {}
@@ -12373,6 +12758,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ ipaddr.js@1.9.1: {}
+
iron-webcrypto@1.2.1: {}
is-arrayish@0.3.2:
@@ -12417,6 +12804,8 @@ snapshots:
is-plain-obj@4.1.0: {}
+ is-promise@4.0.0: {}
+
is-reference@1.2.1:
dependencies:
'@types/estree': 1.0.7
@@ -12488,7 +12877,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.17
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -12597,10 +12986,10 @@ snapshots:
citty: 0.1.6
clipboardy: 4.0.0
consola: 3.4.2
- crossws: 0.3.4
+ crossws: 0.3.5
defu: 6.1.4
get-port-please: 3.1.2
- h3: 1.15.1
+ h3: 1.15.3
http-shutdown: 1.2.2
jiti: 2.4.2
mlly: 1.7.4
@@ -12669,8 +13058,8 @@ snapshots:
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/parser': 7.27.2
+ '@babel/types': 7.27.1
source-map-js: 1.2.1
make-dir@2.1.0:
@@ -12689,6 +13078,8 @@ snapshots:
markdown-title@1.0.2: {}
+ math-intrinsics@1.1.0: {}
+
mdast-util-definitions@6.0.0:
dependencies:
'@types/mdast': 4.0.4
@@ -12826,6 +13217,10 @@ snapshots:
mdn-data@2.12.2: {}
+ media-typer@1.1.0: {}
+
+ merge-descriptors@2.0.0: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -13128,7 +13523,7 @@ snapshots:
nanotar@0.2.0: {}
- napi-postinstall@0.1.5: {}
+ napi-postinstall@0.2.3: {}
natural-compare@1.4.0: {}
@@ -13140,25 +13535,27 @@ snapshots:
sax: 1.4.1
optional: true
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
neotraverse@0.6.18: {}
neverthrow@8.2.0:
optionalDependencies:
- '@rollup/rollup-linux-x64-gnu': 4.40.0
+ '@rollup/rollup-linux-x64-gnu': 4.40.2
- nitropack@2.11.9(rolldown@1.0.0-beta.8(typescript@5.8.3)):
+ nitropack@2.11.11(rolldown@1.0.0-beta.8(typescript@5.8.3)):
dependencies:
'@cloudflare/kv-asset-handler': 0.4.0
- '@rollup/plugin-alias': 5.1.1(rollup@4.40.0)
- '@rollup/plugin-commonjs': 28.0.3(rollup@4.40.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.40.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.40.0)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.40.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.40.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.40.0)
- '@vercel/nft': 0.29.2(rollup@4.40.0)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.40.2)
+ '@rollup/plugin-commonjs': 28.0.3(rollup@4.40.2)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.40.2)
+ '@rollup/plugin-json': 6.1.0(rollup@4.40.2)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.40.2)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.40.2)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.40.2)
+ '@vercel/nft': 0.29.2(rollup@4.40.2)
archiver: 7.0.1
c12: 3.0.3(magicast@0.3.5)
chokidar: 4.0.3
@@ -13168,18 +13565,18 @@ snapshots:
consola: 3.4.2
cookie-es: 2.0.0
croner: 9.0.0
- crossws: 0.3.4
+ crossws: 0.3.5
db0: 0.3.2
defu: 6.1.4
destr: 2.0.5
dot-prop: 9.0.0
- esbuild: 0.25.3
+ esbuild: 0.25.4
escape-string-regexp: 5.0.0
etag: 1.8.1
exsolve: 1.0.5
globby: 14.1.0
gzip-size: 7.0.0
- h3: 1.15.1
+ h3: 1.15.3
hookable: 5.5.3
httpxy: 0.1.7
ioredis: 5.6.1
@@ -13200,8 +13597,8 @@ snapshots:
pkg-types: 2.1.0
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.40.0
- rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)
+ rollup: 4.40.2
+ rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)
scule: 1.3.0
semver: 7.7.1
serve-placeholder: 2.0.2
@@ -13213,9 +13610,9 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.4.1
unenv: 2.0.0-rc.15
- unimport: 5.0.0
+ unimport: 5.0.1
unplugin-utils: 0.2.4
- unstorage: 1.15.0(db0@0.3.2)(ioredis@5.6.1)
+ unstorage: 1.16.0(db0@0.3.2)(ioredis@5.6.1)
untyped: 2.0.0
unwasm: 0.3.9
youch: 4.1.0-beta.7
@@ -13271,12 +13668,6 @@ snapshots:
dependencies:
abbrev: 3.0.1
- normalize-package-data@6.0.2:
- dependencies:
- hosted-git-info: 7.0.2
- semver: 7.7.1
- validate-npm-package-license: 3.0.4
-
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
@@ -13294,36 +13685,35 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxt@3.16.2(@parcel/watcher@2.5.1)(@types/node@22.14.1)(db0@0.3.2)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3))(yaml@2.7.1):
+ nuxt@3.17.2(@parcel/watcher@2.5.1)(@types/node@22.15.17)(db0@0.3.2)(eslint@9.26.0(jiti@2.4.2))(ioredis@5.6.1)(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3))(yaml@2.7.1):
dependencies:
'@nuxt/cli': 3.25.0(magicast@0.3.5)
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 2.4.0(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
- '@nuxt/schema': 3.16.2
+ '@nuxt/devtools': 2.4.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
+ '@nuxt/schema': 3.17.2
'@nuxt/telemetry': 2.6.6(magicast@0.3.5)
- '@nuxt/vite-builder': 3.16.2(@types/node@22.14.1)(eslint@9.25.1(jiti@2.4.2))(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(vue-tsc@2.2.8(typescript@5.8.3))(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
- '@oxc-parser/wasm': 0.60.0
+ '@nuxt/vite-builder': 3.17.2(@types/node@22.15.17)(eslint@9.26.0(jiti@2.4.2))(less@4.3.0)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(vue-tsc@2.2.8(typescript@5.8.3))(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1)
'@unhead/vue': 2.0.8(vue@3.5.13(typescript@5.8.3))
'@vue/shared': 3.5.13
c12: 3.0.3(magicast@0.3.5)
chokidar: 4.0.3
- compatx: 0.1.8
+ compatx: 0.2.0
consola: 3.4.2
cookie-es: 2.0.0
defu: 6.1.4
destr: 2.0.5
devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.25.3
+ esbuild: 0.25.4
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
exsolve: 1.0.5
globby: 14.1.0
- h3: 1.15.1
+ h3: 1.15.3
hookable: 5.5.3
- ignore: 7.0.3
- impound: 0.2.2(rollup@4.40.0)
+ ignore: 7.0.4
+ impound: 1.0.0
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
@@ -13331,12 +13721,12 @@ snapshots:
mlly: 1.7.4
mocked-exports: 0.1.1
nanotar: 0.2.0
- nitropack: 2.11.9(rolldown@1.0.0-beta.8(typescript@5.8.3))
+ nitropack: 2.11.11(rolldown@1.0.0-beta.8(typescript@5.8.3))
nypm: 0.6.0
ofetch: 1.4.1
ohash: 2.0.11
on-change: 5.0.1
- oxc-parser: 0.65.0
+ oxc-parser: 0.68.1
pathe: 2.0.3
perfect-debounce: 1.0.0
pkg-types: 2.1.0
@@ -13345,23 +13735,23 @@ snapshots:
semver: 7.7.1
std-env: 3.9.0
strip-literal: 3.0.0
- tinyglobby: 0.2.12
+ tinyglobby: 0.2.13
ufo: 1.6.1
ultrahtml: 1.6.0
uncrypto: 0.1.3
unctx: 2.4.1
- unimport: 4.2.0
+ unimport: 5.0.1
unplugin: 2.3.2
- unplugin-vue-router: 0.12.0(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3))
- unstorage: 1.15.0(db0@0.3.2)(ioredis@5.6.1)
+ unplugin-vue-router: 0.12.0(vue-router@4.5.1(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3))
+ unstorage: 1.16.0(db0@0.3.2)(ioredis@5.6.1)
untyped: 2.0.0
vue: 3.5.13(typescript@5.8.3)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.5.0(vue@3.5.13(typescript@5.8.3))
+ vue-router: 4.5.1(vue@3.5.13(typescript@5.8.3))
optionalDependencies:
'@parcel/watcher': 2.5.1
- '@types/node': 22.14.1
+ '@types/node': 22.15.17
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -13425,6 +13815,8 @@ snapshots:
object-assign@4.1.1: {}
+ object-inspect@1.13.4: {}
+
ofetch@1.4.1:
dependencies:
destr: 2.0.5
@@ -13439,6 +13831,10 @@ snapshots:
dependencies:
ee-first: 1.1.1
+ once@1.4.0:
+ dependencies:
+ wrappy: 1.0.2
+
onetime@6.0.0:
dependencies:
mimic-fn: 4.0.0
@@ -13447,16 +13843,15 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- oniguruma-parser@0.11.2: {}
+ oniguruma-parser@0.12.1: {}
- oniguruma-to-es@4.2.0:
+ oniguruma-to-es@4.3.3:
dependencies:
- emoji-regex-xs: 1.0.0
- oniguruma-parser: 0.11.2
+ oniguruma-parser: 0.12.1
regex: 6.0.1
regex-recursion: 6.0.2
- open@10.1.1:
+ open@10.1.2:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
@@ -13478,33 +13873,33 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- oxc-minify@0.65.0:
+ oxc-minify@0.68.1:
optionalDependencies:
- '@oxc-minify/binding-darwin-arm64': 0.65.0
- '@oxc-minify/binding-darwin-x64': 0.65.0
- '@oxc-minify/binding-linux-arm-gnueabihf': 0.65.0
- '@oxc-minify/binding-linux-arm64-gnu': 0.65.0
- '@oxc-minify/binding-linux-arm64-musl': 0.65.0
- '@oxc-minify/binding-linux-x64-gnu': 0.65.0
- '@oxc-minify/binding-linux-x64-musl': 0.65.0
- '@oxc-minify/binding-wasm32-wasi': 0.65.0
- '@oxc-minify/binding-win32-arm64-msvc': 0.65.0
- '@oxc-minify/binding-win32-x64-msvc': 0.65.0
-
- oxc-parser@0.65.0:
- dependencies:
- '@oxc-project/types': 0.65.0
+ '@oxc-minify/binding-darwin-arm64': 0.68.1
+ '@oxc-minify/binding-darwin-x64': 0.68.1
+ '@oxc-minify/binding-linux-arm-gnueabihf': 0.68.1
+ '@oxc-minify/binding-linux-arm64-gnu': 0.68.1
+ '@oxc-minify/binding-linux-arm64-musl': 0.68.1
+ '@oxc-minify/binding-linux-x64-gnu': 0.68.1
+ '@oxc-minify/binding-linux-x64-musl': 0.68.1
+ '@oxc-minify/binding-wasm32-wasi': 0.68.1
+ '@oxc-minify/binding-win32-arm64-msvc': 0.68.1
+ '@oxc-minify/binding-win32-x64-msvc': 0.68.1
+
+ oxc-parser@0.68.1:
+ dependencies:
+ '@oxc-project/types': 0.68.1
optionalDependencies:
- '@oxc-parser/binding-darwin-arm64': 0.65.0
- '@oxc-parser/binding-darwin-x64': 0.65.0
- '@oxc-parser/binding-linux-arm-gnueabihf': 0.65.0
- '@oxc-parser/binding-linux-arm64-gnu': 0.65.0
- '@oxc-parser/binding-linux-arm64-musl': 0.65.0
- '@oxc-parser/binding-linux-x64-gnu': 0.65.0
- '@oxc-parser/binding-linux-x64-musl': 0.65.0
- '@oxc-parser/binding-wasm32-wasi': 0.65.0
- '@oxc-parser/binding-win32-arm64-msvc': 0.65.0
- '@oxc-parser/binding-win32-x64-msvc': 0.65.0
+ '@oxc-parser/binding-darwin-arm64': 0.68.1
+ '@oxc-parser/binding-darwin-x64': 0.68.1
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.68.1
+ '@oxc-parser/binding-linux-arm64-gnu': 0.68.1
+ '@oxc-parser/binding-linux-arm64-musl': 0.68.1
+ '@oxc-parser/binding-linux-x64-gnu': 0.68.1
+ '@oxc-parser/binding-linux-x64-musl': 0.68.1
+ '@oxc-parser/binding-wasm32-wasi': 0.68.1
+ '@oxc-parser/binding-win32-arm64-msvc': 0.68.1
+ '@oxc-parser/binding-win32-x64-msvc': 0.68.1
oxc-resolver@6.0.0:
optionalDependencies:
@@ -13522,18 +13917,34 @@ snapshots:
'@oxc-resolver/binding-win32-arm64-msvc': 6.0.0
'@oxc-resolver/binding-win32-x64-msvc': 6.0.0
- oxc-transform@0.65.0:
+ oxc-resolver@8.0.0:
+ optionalDependencies:
+ '@oxc-resolver/binding-darwin-arm64': 8.0.0
+ '@oxc-resolver/binding-darwin-x64': 8.0.0
+ '@oxc-resolver/binding-freebsd-x64': 8.0.0
+ '@oxc-resolver/binding-linux-arm-gnueabihf': 8.0.0
+ '@oxc-resolver/binding-linux-arm64-gnu': 8.0.0
+ '@oxc-resolver/binding-linux-arm64-musl': 8.0.0
+ '@oxc-resolver/binding-linux-riscv64-gnu': 8.0.0
+ '@oxc-resolver/binding-linux-s390x-gnu': 8.0.0
+ '@oxc-resolver/binding-linux-x64-gnu': 8.0.0
+ '@oxc-resolver/binding-linux-x64-musl': 8.0.0
+ '@oxc-resolver/binding-wasm32-wasi': 8.0.0
+ '@oxc-resolver/binding-win32-arm64-msvc': 8.0.0
+ '@oxc-resolver/binding-win32-x64-msvc': 8.0.0
+
+ oxc-transform@0.68.1:
optionalDependencies:
- '@oxc-transform/binding-darwin-arm64': 0.65.0
- '@oxc-transform/binding-darwin-x64': 0.65.0
- '@oxc-transform/binding-linux-arm-gnueabihf': 0.65.0
- '@oxc-transform/binding-linux-arm64-gnu': 0.65.0
- '@oxc-transform/binding-linux-arm64-musl': 0.65.0
- '@oxc-transform/binding-linux-x64-gnu': 0.65.0
- '@oxc-transform/binding-linux-x64-musl': 0.65.0
- '@oxc-transform/binding-wasm32-wasi': 0.65.0
- '@oxc-transform/binding-win32-arm64-msvc': 0.65.0
- '@oxc-transform/binding-win32-x64-msvc': 0.65.0
+ '@oxc-transform/binding-darwin-arm64': 0.68.1
+ '@oxc-transform/binding-darwin-x64': 0.68.1
+ '@oxc-transform/binding-linux-arm-gnueabihf': 0.68.1
+ '@oxc-transform/binding-linux-arm64-gnu': 0.68.1
+ '@oxc-transform/binding-linux-arm64-musl': 0.68.1
+ '@oxc-transform/binding-linux-x64-gnu': 0.68.1
+ '@oxc-transform/binding-linux-x64-musl': 0.68.1
+ '@oxc-transform/binding-wasm32-wasi': 0.68.1
+ '@oxc-transform/binding-win32-arm64-msvc': 0.68.1
+ '@oxc-transform/binding-win32-x64-msvc': 0.68.1
p-limit@3.1.0:
dependencies:
@@ -13556,11 +13967,7 @@ snapshots:
package-json-from-dist@1.0.1: {}
- package-manager-detector@0.2.11:
- dependencies:
- quansync: 0.2.10
-
- package-manager-detector@1.2.0: {}
+ package-manager-detector@1.3.0: {}
pako@0.2.9: {}
@@ -13572,16 +13979,9 @@ snapshots:
dependencies:
callsites: 3.1.0
- parse-imports@2.2.1:
+ parse-imports-exports@0.2.4:
dependencies:
- es-module-lexer: 1.7.0
- slashes: 3.0.12
-
- parse-json@8.3.0:
- dependencies:
- '@babel/code-frame': 7.26.2
- index-to-position: 1.1.0
- type-fest: 4.40.0
+ parse-statements: 1.0.11
parse-latin@7.0.0:
dependencies:
@@ -13600,9 +14000,11 @@ snapshots:
dependencies:
protocols: 2.0.2
+ parse-statements@1.0.11: {}
+
parse-url@9.2.0:
dependencies:
- '@types/parse-path': 7.0.3
+ '@types/parse-path': 7.1.0
parse-path: 7.1.0
parse5@7.3.0:
@@ -13631,6 +14033,8 @@ snapshots:
lru-cache: 11.1.0
minipass: 7.1.2
+ path-to-regexp@8.2.0: {}
+
path-type@6.0.0: {}
pathe@1.1.2: {}
@@ -13652,6 +14056,8 @@ snapshots:
pirates@4.0.7: {}
+ pkce-challenge@5.0.0: {}
+
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
@@ -13683,143 +14089,143 @@ snapshots:
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-colormin@7.0.2(postcss@8.5.3):
+ postcss-colormin@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.4(postcss@8.5.3):
+ postcss-convert-values@7.0.5(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-discard-comments@7.0.3(postcss@8.5.3):
+ postcss-discard-comments@7.0.4(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- postcss-selector-parser: 6.1.2
+ postcss-selector-parser: 7.1.0
- postcss-discard-duplicates@7.0.1(postcss@8.5.3):
+ postcss-discard-duplicates@7.0.2(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- postcss-discard-empty@7.0.0(postcss@8.5.3):
+ postcss-discard-empty@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- postcss-discard-overridden@7.0.0(postcss@8.5.3):
+ postcss-discard-overridden@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(yaml@2.7.1):
+ postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.4)(yaml@2.7.1):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
jiti: 2.4.2
postcss: 8.5.3
- tsx: 4.19.3
+ tsx: 4.19.4
yaml: 2.7.1
- postcss-merge-longhand@7.0.4(postcss@8.5.3):
+ postcss-merge-longhand@7.0.5(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- stylehacks: 7.0.4(postcss@8.5.3)
+ stylehacks: 7.0.5(postcss@8.5.3)
- postcss-merge-rules@7.0.4(postcss@8.5.3):
+ postcss-merge-rules@7.0.5(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
caniuse-api: 3.0.0
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.1(postcss@8.5.3)
postcss: 8.5.3
- postcss-selector-parser: 6.1.2
+ postcss-selector-parser: 7.1.0
- postcss-minify-font-values@7.0.0(postcss@8.5.3):
+ postcss-minify-font-values@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-gradients@7.0.0(postcss@8.5.3):
+ postcss-minify-gradients@7.0.1(postcss@8.5.3):
dependencies:
colord: 2.9.3
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.1(postcss@8.5.3)
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-params@7.0.2(postcss@8.5.3):
+ postcss-minify-params@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ browserslist: 4.24.5
+ cssnano-utils: 5.0.1(postcss@8.5.3)
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-selectors@7.0.4(postcss@8.5.3):
+ postcss-minify-selectors@7.0.5(postcss@8.5.3):
dependencies:
cssesc: 3.0.0
postcss: 8.5.3
- postcss-selector-parser: 6.1.2
+ postcss-selector-parser: 7.1.0
- postcss-normalize-charset@7.0.0(postcss@8.5.3):
+ postcss-normalize-charset@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- postcss-normalize-display-values@7.0.0(postcss@8.5.3):
+ postcss-normalize-display-values@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-positions@7.0.0(postcss@8.5.3):
+ postcss-normalize-positions@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@7.0.0(postcss@8.5.3):
+ postcss-normalize-repeat-style@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-string@7.0.0(postcss@8.5.3):
+ postcss-normalize-string@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@7.0.0(postcss@8.5.3):
+ postcss-normalize-timing-functions@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@7.0.2(postcss@8.5.3):
+ postcss-normalize-unicode@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-url@7.0.0(postcss@8.5.3):
+ postcss-normalize-url@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@7.0.0(postcss@8.5.3):
+ postcss-normalize-whitespace@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-ordered-values@7.0.1(postcss@8.5.3):
+ postcss-ordered-values@7.0.2(postcss@8.5.3):
dependencies:
- cssnano-utils: 5.0.0(postcss@8.5.3)
+ cssnano-utils: 5.0.1(postcss@8.5.3)
postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-reduce-initial@7.0.2(postcss@8.5.3):
+ postcss-reduce-initial@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
caniuse-api: 3.0.0
postcss: 8.5.3
- postcss-reduce-transforms@7.0.0(postcss@8.5.3):
+ postcss-reduce-transforms@7.0.1(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
@@ -13834,16 +14240,16 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@7.0.1(postcss@8.5.3):
+ postcss-svgo@7.0.2(postcss@8.5.3):
dependencies:
postcss: 8.5.3
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@7.0.3(postcss@8.5.3):
+ postcss-unique-selectors@7.0.4(postcss@8.5.3):
dependencies:
postcss: 8.5.3
- postcss-selector-parser: 6.1.2
+ postcss-selector-parser: 7.1.0
postcss-value-parser@4.2.0: {}
@@ -13853,7 +14259,7 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.26.5: {}
+ preact@10.26.6: {}
prelude-ls@1.2.1: {}
@@ -13882,22 +14288,31 @@ snapshots:
property-information@6.5.0: {}
- property-information@7.0.0: {}
+ property-information@7.1.0: {}
protocols@2.0.2: {}
+ proxy-addr@2.0.7:
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+
prr@1.0.1:
optional: true
publint@0.3.12:
dependencies:
'@publint/pack': 0.1.2
- package-manager-detector: 1.2.0
+ package-manager-detector: 1.3.0
picocolors: 1.1.1
sade: 1.8.1
punycode@2.3.1: {}
+ qs@6.14.0:
+ dependencies:
+ side-channel: 1.1.0
+
quansync@0.2.10: {}
quasar@2.18.1: {}
@@ -13906,11 +14321,11 @@ snapshots:
radix-vue@1.9.17(vue@3.5.13(typescript@5.8.3)):
dependencies:
- '@floating-ui/dom': 1.6.13
+ '@floating-ui/dom': 1.7.0
'@floating-ui/vue': 1.1.6(vue@3.5.13(typescript@5.8.3))
'@internationalized/date': 3.8.0
'@internationalized/number': 3.6.1
- '@tanstack/vue-virtual': 3.13.6(vue@3.5.13(typescript@5.8.3))
+ '@tanstack/vue-virtual': 3.13.8(vue@3.5.13(typescript@5.8.3))
'@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.8.3))
'@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.8.3))
aria-hidden: 1.2.4
@@ -13929,25 +14344,18 @@ snapshots:
range-parser@1.2.1: {}
+ raw-body@3.0.0:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.6.3
+ unpipe: 1.0.0
+
rc9@2.1.2:
dependencies:
defu: 6.1.4
destr: 2.0.5
- read-package-up@11.0.0:
- dependencies:
- find-up-simple: 1.0.1
- read-pkg: 9.0.1
- type-fest: 4.40.0
-
- read-pkg@9.0.1:
- dependencies:
- '@types/normalize-package-data': 2.4.4
- normalize-package-data: 6.0.2
- parse-json: 8.3.0
- type-fest: 4.40.0
- unicorn-magic: 0.1.0
-
readable-stream@2.3.8:
dependencies:
core-util-is: 1.0.3
@@ -14147,7 +14555,7 @@ snapshots:
rimraf@6.0.1:
dependencies:
- glob: 11.0.1
+ glob: 11.0.2
package-json-from-dist: 1.0.1
rolldown@1.0.0-beta.8(typescript@5.8.3):
@@ -14172,15 +14580,15 @@ snapshots:
transitivePeerDependencies:
- typescript
- rollup-plugin-dts@6.2.1(rollup@4.40.0)(typescript@5.8.3):
+ rollup-plugin-dts@6.2.1(rollup@4.40.2)(typescript@5.8.3):
dependencies:
magic-string: 0.30.17
- rollup: 4.40.0
+ rollup: 4.40.2
typescript: 5.8.3
optionalDependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
- rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0):
+ rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2):
dependencies:
open: 8.4.2
picomatch: 4.0.2
@@ -14188,34 +14596,44 @@ snapshots:
yargs: 17.7.2
optionalDependencies:
rolldown: 1.0.0-beta.8(typescript@5.8.3)
- rollup: 4.40.0
+ rollup: 4.40.2
- rollup@4.40.0:
+ rollup@4.40.2:
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.0
- '@rollup/rollup-android-arm64': 4.40.0
- '@rollup/rollup-darwin-arm64': 4.40.0
- '@rollup/rollup-darwin-x64': 4.40.0
- '@rollup/rollup-freebsd-arm64': 4.40.0
- '@rollup/rollup-freebsd-x64': 4.40.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.0
- '@rollup/rollup-linux-arm-musleabihf': 4.40.0
- '@rollup/rollup-linux-arm64-gnu': 4.40.0
- '@rollup/rollup-linux-arm64-musl': 4.40.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0
- '@rollup/rollup-linux-riscv64-gnu': 4.40.0
- '@rollup/rollup-linux-riscv64-musl': 4.40.0
- '@rollup/rollup-linux-s390x-gnu': 4.40.0
- '@rollup/rollup-linux-x64-gnu': 4.40.0
- '@rollup/rollup-linux-x64-musl': 4.40.0
- '@rollup/rollup-win32-arm64-msvc': 4.40.0
- '@rollup/rollup-win32-ia32-msvc': 4.40.0
- '@rollup/rollup-win32-x64-msvc': 4.40.0
+ '@rollup/rollup-android-arm-eabi': 4.40.2
+ '@rollup/rollup-android-arm64': 4.40.2
+ '@rollup/rollup-darwin-arm64': 4.40.2
+ '@rollup/rollup-darwin-x64': 4.40.2
+ '@rollup/rollup-freebsd-arm64': 4.40.2
+ '@rollup/rollup-freebsd-x64': 4.40.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.40.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.40.2
+ '@rollup/rollup-linux-arm64-gnu': 4.40.2
+ '@rollup/rollup-linux-arm64-musl': 4.40.2
+ '@rollup/rollup-linux-loongarch64-gnu': 4.40.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.40.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.40.2
+ '@rollup/rollup-linux-riscv64-musl': 4.40.2
+ '@rollup/rollup-linux-s390x-gnu': 4.40.2
+ '@rollup/rollup-linux-x64-gnu': 4.40.2
+ '@rollup/rollup-linux-x64-musl': 4.40.2
+ '@rollup/rollup-win32-arm64-msvc': 4.40.2
+ '@rollup/rollup-win32-ia32-msvc': 4.40.2
+ '@rollup/rollup-win32-x64-msvc': 4.40.2
fsevents: 2.3.3
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.0
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.2.0
+ transitivePeerDependencies:
+ - supports-color
+
run-applescript@7.0.0: {}
run-parallel@1.2.0:
@@ -14230,8 +14648,7 @@ snapshots:
safe-buffer@5.2.1: {}
- safer-buffer@2.1.2:
- optional: true
+ safer-buffer@2.1.2: {}
sax@1.4.1:
optional: true
@@ -14333,17 +14750,45 @@ snapshots:
shell-quote@1.8.2: {}
- shiki@3.3.0:
+ shiki@3.4.0:
dependencies:
- '@shikijs/core': 3.3.0
- '@shikijs/engine-javascript': 3.3.0
- '@shikijs/engine-oniguruma': 3.3.0
- '@shikijs/langs': 3.3.0
- '@shikijs/themes': 3.3.0
- '@shikijs/types': 3.3.0
+ '@shikijs/core': 3.4.0
+ '@shikijs/engine-javascript': 3.4.0
+ '@shikijs/engine-oniguruma': 3.4.0
+ '@shikijs/langs': 3.4.0
+ '@shikijs/themes': 3.4.0
+ '@shikijs/types': 3.4.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
+
siginfo@2.0.0: {}
signal-exit@4.1.0: {}
@@ -14371,11 +14816,9 @@ snapshots:
slash@5.1.0: {}
- slashes@3.0.12: {}
-
smob@1.5.0: {}
- smol-toml@1.3.3: {}
+ smol-toml@1.3.4: {}
source-map-js@1.2.1: {}
@@ -14394,18 +14837,8 @@ snapshots:
space-separated-tokens@2.0.2: {}
- spdx-correct@3.2.0:
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.21
-
spdx-exceptions@2.5.0: {}
- spdx-expression-parse@3.0.1:
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.21
-
spdx-expression-parse@4.0.0:
dependencies:
spdx-exceptions: 2.5.0
@@ -14491,11 +14924,11 @@ snapshots:
structured-clone-es@1.0.0: {}
- stylehacks@7.0.4(postcss@8.5.3):
+ stylehacks@7.0.5(postcss@8.5.3):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
postcss: 8.5.3
- postcss-selector-parser: 6.1.2
+ postcss-selector-parser: 7.1.0
styleq@0.1.3: {}
@@ -14573,13 +15006,13 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- taze@19.0.4:
+ taze@19.1.0:
dependencies:
'@antfu/ni': 24.3.0
cac: 6.7.14
find-up-simple: 1.0.1
ofetch: 1.4.1
- package-manager-detector: 1.2.0
+ package-manager-detector: 1.3.0
pathe: 2.0.3
pnpm-workspace-yaml: 0.3.1
restore-cursor: 5.1.0
@@ -14588,16 +15021,16 @@ snapshots:
unconfig: 7.3.2
yaml: 2.7.1
- terser-webpack-plugin@5.3.14(esbuild@0.25.3)(webpack@5.99.6(esbuild@0.25.3)):
+ terser-webpack-plugin@5.3.14(esbuild@0.25.4)(webpack@5.99.8(esbuild@0.25.4)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.2
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.99.6(esbuild@0.25.3)
+ webpack: 5.99.8(esbuild@0.25.4)
optionalDependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.4
terser@5.39.0:
dependencies:
@@ -14634,11 +15067,6 @@ snapshots:
tinyexec@1.0.1: {}
- tinyglobby@0.2.12:
- dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
-
tinyglobby@0.2.13:
dependencies:
fdir: 6.4.4(picomatch@4.0.2)
@@ -14678,9 +15106,9 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-macro@0.1.25(typescript@5.8.3):
+ ts-macro@0.1.27(typescript@5.8.3):
dependencies:
- '@volar/language-core': 2.4.12
+ '@volar/language-core': 2.4.13
'@vue/language-core': 2.2.8(typescript@5.8.3)
muggle-string: 0.4.1
unplugin-utils: 0.2.4
@@ -14693,19 +15121,19 @@ snapshots:
tslib@2.8.1: {}
- tsup@8.4.0(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1):
+ tsup@8.4.0(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1):
dependencies:
- bundle-require: 5.1.0(esbuild@0.25.3)
+ bundle-require: 5.1.0(esbuild@0.25.4)
cac: 6.7.14
chokidar: 4.0.3
consola: 3.4.2
debug: 4.4.0
- esbuild: 0.25.3
+ esbuild: 0.25.4
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(yaml@2.7.1)
+ postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.4)(yaml@2.7.1)
resolve-from: 5.0.0
- rollup: 4.40.0
+ rollup: 4.40.2
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.2
@@ -14720,9 +15148,9 @@ snapshots:
- tsx
- yaml
- tsx@4.19.3:
+ tsx@4.19.4:
dependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.4
get-tsconfig: 4.10.0
optionalDependencies:
fsevents: 2.3.3
@@ -14750,14 +15178,20 @@ snapshots:
dependencies:
prelude-ls: 1.2.1
- type-fest@4.40.0: {}
+ type-fest@4.41.0: {}
- typescript-eslint@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
+ type-is@2.0.1:
dependencies:
- '@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.25.1(jiti@2.4.2)
+ content-type: 1.0.5
+ media-typer: 1.1.0
+ mime-types: 3.0.1
+
+ typescript-eslint@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.26.0(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -14808,8 +15242,6 @@ snapshots:
pako: 0.2.9
tiny-inflate: 1.0.3
- unicorn-magic@0.1.0: {}
-
unicorn-magic@0.3.0: {}
unified@11.0.5:
@@ -14822,12 +15254,12 @@ snapshots:
trough: 2.2.0
vfile: 6.0.3
- unifont@0.2.0:
+ unifont@0.5.0:
dependencies:
css-tree: 3.1.0
ohash: 2.0.11
- unimport@4.2.0:
+ unimport@5.0.1:
dependencies:
acorn: 8.14.1
escape-string-regexp: 5.0.0
@@ -14844,23 +15276,6 @@ snapshots:
unplugin: 2.3.2
unplugin-utils: 0.2.4
- unimport@5.0.0:
- dependencies:
- acorn: 8.14.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- local-pkg: 1.1.1
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.3
- picomatch: 4.0.2
- pkg-types: 2.1.0
- scule: 1.3.0
- strip-literal: 3.0.0
- tinyglobby: 0.2.12
- unplugin: 2.3.2
- unplugin-utils: 0.2.4
-
unist-util-find-after@5.0.0:
dependencies:
'@types/unist': 3.0.3
@@ -14911,50 +15326,52 @@ snapshots:
universalify@2.0.1: {}
- unocss@66.1.0-beta.12(@unocss/webpack@66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3)))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
- dependencies:
- '@unocss/astro': 66.1.0-beta.12(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@unocss/cli': 66.1.0-beta.12
- '@unocss/core': 66.1.0-beta.12
- '@unocss/postcss': 66.1.0-beta.12
- '@unocss/preset-attributify': 66.1.0-beta.12
- '@unocss/preset-icons': 66.1.0-beta.12
- '@unocss/preset-mini': 66.1.0-beta.12
- '@unocss/preset-tagify': 66.1.0-beta.12
- '@unocss/preset-typography': 66.1.0-beta.12
- '@unocss/preset-uno': 66.1.0-beta.12
- '@unocss/preset-web-fonts': 66.1.0-beta.12
- '@unocss/preset-wind': 66.1.0-beta.12
- '@unocss/preset-wind3': 66.1.0-beta.12
- '@unocss/preset-wind4': 66.1.0-beta.12
- '@unocss/transformer-attributify-jsx': 66.1.0-beta.12
- '@unocss/transformer-compile-class': 66.1.0-beta.12
- '@unocss/transformer-directives': 66.1.0-beta.12
- '@unocss/transformer-variant-group': 66.1.0-beta.12
- '@unocss/vite': 66.1.0-beta.12(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ unocss@66.1.1(@unocss/webpack@66.1.1(webpack@5.99.8(esbuild@0.25.4)))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
+ dependencies:
+ '@unocss/astro': 66.1.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@unocss/cli': 66.1.1
+ '@unocss/core': 66.1.1
+ '@unocss/postcss': 66.1.1
+ '@unocss/preset-attributify': 66.1.1
+ '@unocss/preset-icons': 66.1.1
+ '@unocss/preset-mini': 66.1.1
+ '@unocss/preset-tagify': 66.1.1
+ '@unocss/preset-typography': 66.1.1
+ '@unocss/preset-uno': 66.1.1
+ '@unocss/preset-web-fonts': 66.1.1
+ '@unocss/preset-wind': 66.1.1
+ '@unocss/preset-wind3': 66.1.1
+ '@unocss/preset-wind4': 66.1.1
+ '@unocss/transformer-attributify-jsx': 66.1.1
+ '@unocss/transformer-compile-class': 66.1.1
+ '@unocss/transformer-directives': 66.1.1
+ '@unocss/transformer-variant-group': 66.1.1
+ '@unocss/vite': 66.1.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
optionalDependencies:
- '@unocss/webpack': 66.1.0-beta.12(webpack@5.99.6(esbuild@0.25.3))
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ '@unocss/webpack': 66.1.1(webpack@5.99.8(esbuild@0.25.4))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- supports-color
- vue
- unplugin-combine@1.2.1(@rspack/core@1.3.5(@swc/helpers@0.5.17))(esbuild@0.25.3)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.0)(unplugin@2.3.2)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(webpack@5.99.6(esbuild@0.25.3)):
+ unpipe@1.0.0: {}
+
+ unplugin-combine@2.0.0(@rspack/core@1.3.9(@swc/helpers@0.5.17))(esbuild@0.25.4)(rolldown@1.0.0-beta.8(typescript@5.8.3))(rollup@4.40.2)(unplugin@2.3.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(webpack@5.99.8(esbuild@0.25.4)):
optionalDependencies:
- '@rspack/core': 1.3.5(@swc/helpers@0.5.17)
- esbuild: 0.25.3
+ '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ esbuild: 0.25.4
rolldown: 1.0.0-beta.8(typescript@5.8.3)
- rollup: 4.40.0
+ rollup: 4.40.2
unplugin: 2.3.2
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- webpack: 5.99.6(esbuild@0.25.3)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ webpack: 5.99.8(esbuild@0.25.4)
- unplugin-isolated-decl@0.13.9(typescript@5.8.3):
+ unplugin-isolated-decl@0.13.11(typescript@5.8.3):
dependencies:
debug: 4.4.0
magic-string: 0.30.17
- oxc-parser: 0.65.0
- oxc-transform: 0.65.0
+ oxc-parser: 0.68.1
+ oxc-transform: 0.68.1
unplugin: 2.3.2
unplugin-utils: 0.2.4
optionalDependencies:
@@ -14962,13 +15379,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- unplugin-macros@0.16.3(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
+ unplugin-macros@0.16.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
dependencies:
- ast-kit: 1.4.2
+ ast-kit: 1.4.3
magic-string-ast: 0.9.1
unplugin: 2.3.2
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-node: 3.1.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -14983,17 +15400,17 @@ snapshots:
- tsx
- yaml
- unplugin-oxc@0.3.5:
+ unplugin-oxc@0.3.7:
dependencies:
- oxc-minify: 0.65.0
- oxc-resolver: 6.0.0
- oxc-transform: 0.65.0
+ oxc-minify: 0.68.1
+ oxc-resolver: 8.0.0
+ oxc-transform: 0.68.1
unplugin: 2.3.2
unplugin-utils: 0.2.4
unplugin-quansync@0.3.6(quansync@0.2.10):
dependencies:
- ast-kit: 1.4.2
+ ast-kit: 1.4.3
magic-string-ast: 0.9.1
quansync: 0.2.10
unplugin: 2.3.2
@@ -15001,7 +15418,7 @@ snapshots:
unplugin-raw@0.4.5:
dependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.4
unplugin: 2.3.2
unplugin-utils: 0.2.4
@@ -15018,9 +15435,9 @@ snapshots:
pathe: 2.0.3
picomatch: 4.0.2
- unplugin-vue-router@0.12.0(vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)):
+ unplugin-vue-router@0.12.0(vue-router@4.5.1(vue@3.5.13(typescript@5.8.3)))(vue@3.5.13(typescript@5.8.3)):
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.27.1
'@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.8.3))
ast-walker-scope: 0.6.2
chokidar: 4.0.3
@@ -15036,16 +15453,16 @@ snapshots:
unplugin-utils: 0.2.4
yaml: 2.7.1
optionalDependencies:
- vue-router: 4.5.0(vue@3.5.13(typescript@5.8.3))
+ vue-router: 4.5.1(vue@3.5.13(typescript@5.8.3))
transitivePeerDependencies:
- vue
- unplugin-vue@6.1.0(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1):
+ unplugin-vue@6.2.0(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.1):
dependencies:
'@vue/reactivity': 3.5.13
debug: 4.4.0
unplugin: 2.3.2
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- '@types/node'
@@ -15072,33 +15489,34 @@ snapshots:
picomatch: 4.0.2
webpack-virtual-modules: 0.6.2
- unrs-resolver@1.6.4:
+ unrs-resolver@1.7.2:
dependencies:
- napi-postinstall: 0.1.5
+ napi-postinstall: 0.2.3
optionalDependencies:
- '@unrs/resolver-binding-darwin-arm64': 1.6.4
- '@unrs/resolver-binding-darwin-x64': 1.6.4
- '@unrs/resolver-binding-freebsd-x64': 1.6.4
- '@unrs/resolver-binding-linux-arm-gnueabihf': 1.6.4
- '@unrs/resolver-binding-linux-arm-musleabihf': 1.6.4
- '@unrs/resolver-binding-linux-arm64-gnu': 1.6.4
- '@unrs/resolver-binding-linux-arm64-musl': 1.6.4
- '@unrs/resolver-binding-linux-ppc64-gnu': 1.6.4
- '@unrs/resolver-binding-linux-riscv64-gnu': 1.6.4
- '@unrs/resolver-binding-linux-s390x-gnu': 1.6.4
- '@unrs/resolver-binding-linux-x64-gnu': 1.6.4
- '@unrs/resolver-binding-linux-x64-musl': 1.6.4
- '@unrs/resolver-binding-wasm32-wasi': 1.6.4
- '@unrs/resolver-binding-win32-arm64-msvc': 1.6.4
- '@unrs/resolver-binding-win32-ia32-msvc': 1.6.4
- '@unrs/resolver-binding-win32-x64-msvc': 1.6.4
-
- unstorage@1.15.0(db0@0.3.2)(ioredis@5.6.1):
+ '@unrs/resolver-binding-darwin-arm64': 1.7.2
+ '@unrs/resolver-binding-darwin-x64': 1.7.2
+ '@unrs/resolver-binding-freebsd-x64': 1.7.2
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.7.2
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.7.2
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-arm64-musl': 1.7.2
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-riscv64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-riscv64-musl': 1.7.2
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-x64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-x64-musl': 1.7.2
+ '@unrs/resolver-binding-wasm32-wasi': 1.7.2
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.7.2
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.7.2
+ '@unrs/resolver-binding-win32-x64-msvc': 1.7.2
+
+ unstorage@1.16.0(db0@0.3.2)(ioredis@5.6.1):
dependencies:
anymatch: 3.1.3
chokidar: 4.0.3
destr: 2.0.5
- h3: 1.15.1
+ h3: 1.15.3
lru-cache: 10.4.3
node-fetch-native: 1.6.6
ofetch: 1.4.1
@@ -15130,9 +15548,9 @@ snapshots:
pkg-types: 1.3.1
unplugin: 1.16.1
- update-browserslist-db@1.1.3(browserslist@4.24.4):
+ update-browserslist-db@1.1.3(browserslist@4.24.5):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
escalade: 3.2.0
picocolors: 1.1.1
@@ -15148,10 +15566,7 @@ snapshots:
optionalDependencies:
typescript: 5.8.3
- validate-npm-package-license@3.0.4:
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
+ vary@1.1.2: {}
vfile-location@5.0.3:
dependencies:
@@ -15168,22 +15583,22 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-dev-rpc@1.0.7(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vite-dev-rpc@1.0.7(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
dependencies:
birpc: 2.3.0
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-hot-client: 2.0.4(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-hot-client: 2.0.4(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
- vite-hot-client@2.0.4(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vite-hot-client@2.0.4(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
dependencies:
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
- vite-hyper-config@0.6.1(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(yaml@2.7.1):
+ vite-hyper-config@0.6.1(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(yaml@2.7.1):
dependencies:
cac: 6.7.14
picocolors: 1.1.1
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-node: 3.1.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -15198,13 +15613,13 @@ snapshots:
- tsx
- yaml
- vite-node@3.1.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
+ vite-node@3.1.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
dependencies:
cac: 6.7.14
debug: 4.4.0
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -15219,143 +15634,143 @@ snapshots:
- tsx
- yaml
- vite-plugin-checker@0.9.1(eslint@9.25.1(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3)):
+ vite-plugin-checker@0.9.3(eslint@9.26.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.8.3)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue-tsc@2.2.8(typescript@5.8.3)):
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
chokidar: 4.0.3
npm-run-path: 6.0.0
picocolors: 1.1.1
picomatch: 4.0.2
strip-ansi: 7.1.0
tiny-invariant: 1.3.3
- tinyglobby: 0.2.12
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ tinyglobby: 0.2.13
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vscode-uri: 3.1.0
optionalDependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
optionator: 0.9.4
typescript: 5.8.3
vue-tsc: 2.2.8(typescript@5.8.3)
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.16.2(magicast@0.3.5))(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vite-plugin-inspect@0.8.9(@nuxt/kit@3.17.2(magicast@0.3.5))(rollup@4.40.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.2)
debug: 4.4.0
error-stack-parser-es: 0.1.5
fs-extra: 11.3.0
- open: 10.1.1
+ open: 10.1.2
perfect-debounce: 1.0.0
picocolors: 1.1.1
sirv: 3.0.1
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
optionalDependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-inspect@11.0.1(@nuxt/kit@3.16.2(magicast@0.3.5))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vite-plugin-inspect@11.0.1(@nuxt/kit@3.17.2(magicast@0.3.5))(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
dependencies:
ansis: 3.17.0
debug: 4.4.0
error-stack-parser-es: 1.0.5
ohash: 2.0.11
- open: 10.1.1
+ open: 10.1.2
perfect-debounce: 1.0.0
sirv: 3.0.1
unplugin-utils: 0.2.4
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-dev-rpc: 1.0.7(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-dev-rpc: 1.0.7(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
optionalDependencies:
- '@nuxt/kit': 3.16.2(magicast@0.3.5)
+ '@nuxt/kit': 3.17.2(magicast@0.3.5)
transitivePeerDependencies:
- supports-color
- vite-plugin-stylex@0.13.0(@stylexjs/stylex@0.12.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vite-plugin-stylex@0.13.0(@stylexjs/stylex@0.12.0)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.1
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
'@stylexjs/babel-plugin': 0.9.3
'@stylexjs/stylex': 0.12.0
compare-versions: 6.1.1
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-devtools@7.7.5(@nuxt/kit@3.16.2(magicast@0.3.5))(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
+ vite-plugin-vue-devtools@7.7.6(@nuxt/kit@3.17.2(magicast@0.3.5))(rollup@4.40.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
dependencies:
- '@vue/devtools-core': 7.7.5(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@vue/devtools-kit': 7.7.5
- '@vue/devtools-shared': 7.7.5
+ '@vue/devtools-core': 7.7.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@vue/devtools-kit': 7.7.6
+ '@vue/devtools-shared': 7.7.6
execa: 9.5.2
sirv: 3.0.1
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.16.2(magicast@0.3.5))(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
- vite-plugin-vue-inspector: 5.3.1(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.17.2(magicast@0.3.5))(rollup@4.40.2)(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ vite-plugin-vue-inspector: 5.3.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
transitivePeerDependencies:
- '@nuxt/kit'
- rollup
- supports-color
- vue
- vite-plugin-vue-inspector@5.3.1(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vite-plugin-vue-inspector@5.3.1(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
- '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.10)
+ '@babel/core': 7.27.1
+ '@babel/plugin-proposal-decorators': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.1)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.1)
+ '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.27.1)
'@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
magic-string: 0.30.17
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-tracer@0.1.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
+ vite-plugin-vue-tracer@0.1.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
dependencies:
estree-walker: 3.0.3
exsolve: 1.0.5
magic-string: 0.30.17
pathe: 2.0.3
source-map-js: 1.2.1
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue: 3.5.13(typescript@5.8.3)
- vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
+ vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
dependencies:
- esbuild: 0.25.3
+ esbuild: 0.25.4
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
postcss: 8.5.3
- rollup: 4.40.0
+ rollup: 4.40.2
tinyglobby: 0.2.13
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.15.17
fsevents: 2.3.3
jiti: 2.4.2
less: 4.3.0
terser: 5.39.0
- tsx: 4.19.3
+ tsx: 4.19.4
yaml: 2.7.1
- vitefu@1.0.6(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)):
+ vitefu@1.0.6(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)):
optionalDependencies:
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vitepress-plugin-group-icons@1.5.2:
dependencies:
'@iconify-json/logos': 1.2.4
- '@iconify-json/vscode-icons': 1.2.19
+ '@iconify-json/vscode-icons': 1.2.20
'@iconify/utils': 2.3.0
transitivePeerDependencies:
- supports-color
- vitepress-plugin-llms@1.1.0:
+ vitepress-plugin-llms@1.1.3:
dependencies:
byte-size: 9.0.1
gray-matter: 4.0.3
@@ -15371,25 +15786,25 @@ snapshots:
- '@75lb/nature'
- supports-color
- vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.4)(@types/node@22.14.1)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1):
+ vitepress@2.0.0-alpha.2(@algolia/client-search@5.24.0)(@types/node@22.15.17)(change-case@5.4.4)(fuse.js@7.1.0)(jiti@2.4.2)(less@4.3.0)(postcss@8.5.3)(terser@5.39.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1):
dependencies:
'@docsearch/css': 3.9.0
- '@docsearch/js': 3.9.0(@algolia/client-search@5.23.4)
+ '@docsearch/js': 3.9.0(@algolia/client-search@5.24.0)
'@iconify-json/simple-icons': 1.2.33
- '@shikijs/core': 3.3.0
- '@shikijs/transformers': 3.3.0
- '@shikijs/types': 3.3.0
+ '@shikijs/core': 3.4.0
+ '@shikijs/transformers': 3.4.0
+ '@shikijs/types': 3.4.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.3(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
- '@vue/devtools-api': 7.7.5
+ '@vitejs/plugin-vue': 5.2.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@vue/devtools-api': 7.7.6
'@vue/shared': 3.5.13
'@vueuse/core': 12.8.2(typescript@5.8.3)
'@vueuse/integrations': 12.8.2(change-case@5.4.4)(focus-trap@7.6.4)(fuse.js@7.1.0)(typescript@5.8.3)
focus-trap: 7.6.4
mark.js: 8.11.1
minisearch: 7.1.2
- shiki: 3.3.0
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ shiki: 3.4.0
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
vue: 3.5.13(typescript@5.8.3)
optionalDependencies:
postcss: 8.5.3
@@ -15423,15 +15838,15 @@ snapshots:
- universal-cookie
- yaml
- vitest@3.1.2(@types/debug@4.1.12)(@types/node@22.14.1)(@vitest/ui@3.1.2)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
+ vitest@3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(@vitest/ui@3.1.3)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1):
dependencies:
- '@vitest/expect': 3.1.2
- '@vitest/mocker': 3.1.2(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
- '@vitest/pretty-format': 3.1.2
- '@vitest/runner': 3.1.2
- '@vitest/snapshot': 3.1.2
- '@vitest/spy': 3.1.2
- '@vitest/utils': 3.1.2
+ '@vitest/expect': 3.1.3
+ '@vitest/mocker': 3.1.3(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1))
+ '@vitest/pretty-format': 3.1.3
+ '@vitest/runner': 3.1.3
+ '@vitest/snapshot': 3.1.3
+ '@vitest/spy': 3.1.3
+ '@vitest/utils': 3.1.3
chai: 5.2.0
debug: 4.4.0
expect-type: 1.2.1
@@ -15443,13 +15858,13 @@ snapshots:
tinyglobby: 0.2.13
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.14.1)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite-node: 3.1.3(@types/node@22.15.17)(jiti@2.4.2)(less@4.3.0)(terser@5.39.0)(tsx@4.19.4)(yaml@2.7.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.14.1
- '@vitest/ui': 3.1.2(vitest@3.1.2)
+ '@types/node': 22.15.17
+ '@vitest/ui': 3.1.3(vitest@3.1.3)
transitivePeerDependencies:
- jiti
- less
@@ -15478,10 +15893,10 @@ snapshots:
vue-devtools-stub@0.1.0: {}
- vue-eslint-parser@10.1.3(eslint@9.25.1(jiti@2.4.2)):
+ vue-eslint-parser@10.1.3(eslint@9.26.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
@@ -15499,14 +15914,14 @@ snapshots:
dependencies:
vue: 3.5.13(typescript@5.8.3)
- vue-router@4.5.0(vue@3.5.13(typescript@5.8.3)):
+ vue-router@4.5.1(vue@3.5.13(typescript@5.8.3)):
dependencies:
'@vue/devtools-api': 6.6.4
vue: 3.5.13(typescript@5.8.3)
vue-tsc@2.2.8(typescript@5.8.3):
dependencies:
- '@volar/typescript': 2.4.12
+ '@volar/typescript': 2.4.13
'@vue/language-core': 2.2.8(typescript@5.8.3)
typescript: 5.8.3
@@ -15535,15 +15950,16 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.99.6(esbuild@0.25.3):
+ webpack@5.99.8(esbuild@0.25.4):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.7
+ '@types/json-schema': 7.0.15
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.14.1
- browserslist: 4.24.4
+ browserslist: 4.24.5
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.1
es-module-lexer: 1.7.0
@@ -15557,7 +15973,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(esbuild@0.25.3)(webpack@5.99.6(esbuild@0.25.3))
+ terser-webpack-plugin: 5.3.14(esbuild@0.25.4)(webpack@5.99.8(esbuild@0.25.4))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -15615,7 +16031,9 @@ snapshots:
string-width: 7.2.0
strip-ansi: 7.1.0
- ws@8.18.1: {}
+ wrappy@1.0.2: {}
+
+ ws@8.18.2: {}
xdg-basedir@5.1.0: {}
@@ -15676,15 +16094,15 @@ snapshots:
compress-commons: 6.0.2
readable-stream: 4.7.0
- zod-to-json-schema@3.24.5(zod@3.24.3):
+ zod-to-json-schema@3.24.5(zod@3.24.4):
dependencies:
- zod: 3.24.3
+ zod: 3.24.4
- zod-to-ts@1.2.0(typescript@5.8.3)(zod@3.24.3):
+ zod-to-ts@1.2.0(typescript@5.8.3)(zod@3.24.4):
dependencies:
typescript: 5.8.3
- zod: 3.24.3
+ zod: 3.24.4
- zod@3.24.3: {}
+ zod@3.24.4: {}
zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 1f8ff055c..8a40b5787 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -4,11 +4,11 @@ packages:
- docs
defines:
- - &babel ^7.27.0
- - &nolebase ^2.16.0
- - &shiki ^3.3.0
- - &unocss ^66.1.0-beta.12
- - &vitest ^3.1.2
+ - &babel ^7.27.1
+ - &nolebase ^2.17.0
+ - &shiki ^3.4.0
+ - &unocss ^66.1.1
+ - &vitest ^3.1.3
- &volar 2.2.8
- &vue ^3.5.13
@@ -45,32 +45,32 @@ catalog:
'@nolebase/vitepress-plugin-git-changelog': *nolebase
'@nolebase/vitepress-plugin-highlight-targeted-heading': *nolebase
- '@astrojs/vue': ^5.0.9
+ '@astrojs/vue': ^5.0.13
'@iconify-json/logos': ^1.2.4
'@iconify-json/ri': ^1.2.5
'@nuxt/devtools': ^2.4.0
- '@nuxt/kit': ^3.16.2
- '@nuxt/schema': ^3.16.2
+ '@nuxt/kit': ^3.17.2
+ '@nuxt/schema': ^3.17.2
'@rollup/plugin-commonjs': ^28.0.3
'@rollup/plugin-json': ^6.1.0
'@rollup/plugin-node-resolve': ^16.0.1
- '@rspack/core': ^1.3.5
+ '@rspack/core': ^1.3.9
'@stylexjs/stylex': ^0.12.0
- '@sxzz/eslint-config': ^6.1.2
+ '@sxzz/eslint-config': ^7.0.0
'@sxzz/prettier-config': ^2.2.1
- '@sxzz/test-utils': ^0.5.5
- '@types/node': ^22.14.1
+ '@sxzz/test-utils': ^0.5.6
+ '@types/node': ^22.15.17
'@vitejs/plugin-vue': ^5.2.3
'@vitejs/plugin-vue-jsx': ^4.1.2
'@vueuse/core': ^13.1.0
- ast-kit: ^1.4.2
+ ast-kit: ^1.4.3
ast-walker-scope: ^0.7.1
- astro: ^5.7.5
+ astro: ^5.7.12
bumpp: ^10.1.0
change-case: ^5.4.4
- cspell: ^8.19.2
- esbuild: ^0.25.3
- eslint: ^9.25.1
+ cspell: ^9.0.1
+ esbuild: ^0.25.4
+ eslint: ^9.26.0
expect-type: ^1.2.1
fast-glob: ^3.3.3
get-port: ^7.1.0
@@ -81,10 +81,10 @@ catalog:
monoman: ^0.6.8
muggle-string: ^0.4.1
neverthrow: ^8.2.0
- nuxt: ^3.16.2
- oxc-parser: ^0.65.0
+ nuxt: ^3.17.2
+ oxc-parser: ^0.68.1
oxc-resolver: ^6.0.0
- oxc-transform: ^0.65.0
+ oxc-transform: ^0.68.1
pkg-types: ^2.1.0
prettier: ^3.5.3
publint: ^0.3.12
@@ -93,35 +93,35 @@ catalog:
radix-vue: ^1.9.17
rimraf: ^6.0.1
rolldown: ^1.0.0-beta.8
- rollup: ^4.40.0
+ rollup: ^4.40.2
rollup-plugin-dts: ^6.2.1
sirv: ^3.0.1
- taze: ^19.0.4
- ts-macro: ^0.1.25
+ taze: ^19.1.0
+ ts-macro: ^0.1.27
tsup: ^8.4.0
- tsx: ^4.19.3
- type-fest: ^4.40.0
+ tsx: ^4.19.4
+ type-fest: ^4.41.0
typescript: ^5.8.3
unconfig: ^7.3.2
unplugin: ^2.3.2
- unplugin-combine: ^1.2.1
- unplugin-isolated-decl: ^0.13.9
+ unplugin-combine: ^2.0.0
+ unplugin-isolated-decl: ^0.13.11
unplugin-macros: ^0.16.3
- unplugin-oxc: ^0.3.5
+ unplugin-oxc: ^0.3.7
unplugin-quansync: ^0.3.6
unplugin-raw: ^0.4.5
unplugin-unused: ^0.4.4
unplugin-utils: ^0.2.4
- unplugin-vue: ^6.1.0
- vite: ^6.3.2
+ unplugin-vue: ^6.2.0
+ vite: ^6.3.5
vite-hyper-config: ^0.6.1
vite-plugin-inspect: ^11.0.1
vite-plugin-stylex: ^0.13.0
- vite-plugin-vue-devtools: ^7.7.5
+ vite-plugin-vue-devtools: ^7.7.6
vitepress: ^2.0.0-alpha.2
vitepress-plugin-group-icons: ^1.5.2
- vitepress-plugin-llms: ^1.1.0
- webpack: ^5.99.6
+ vitepress-plugin-llms: ^1.1.3
+ webpack: ^5.99.8
peerDependencyRules:
ignoreMissing:
From 3e2f1e9fd4c20e010f1860a43151fcd1e70bb1dc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?=
Date: Fri, 9 May 2025 03:13:40 +0800
Subject: [PATCH 5/5] chore: release v3.0.0-beta.11
---
package.json | 2 +-
packages/api/package.json | 2 +-
packages/astro/package.json | 2 +-
packages/better-define/package.json | 2 +-
packages/boolean-prop/package.json | 2 +-
packages/chain-call/package.json | 2 +-
packages/common/package.json | 2 +-
packages/config/package.json | 2 +-
packages/define-emit/package.json | 2 +-
packages/define-models/package.json | 2 +-
packages/define-options/package.json | 2 +-
packages/define-prop/package.json | 2 +-
packages/define-props-refs/package.json | 2 +-
packages/define-props/package.json | 2 +-
packages/define-render/package.json | 2 +-
packages/define-slots/package.json | 2 +-
packages/define-stylex/package.json | 2 +-
packages/devtools/package.json | 2 +-
packages/eslint-config/package.json | 2 +-
packages/export-expose/package.json | 2 +-
packages/export-props/package.json | 2 +-
packages/export-render/package.json | 2 +-
packages/hoist-static/package.json | 2 +-
packages/jsx-directive/package.json | 2 +-
packages/macros/package.json | 2 +-
packages/named-template/package.json | 2 +-
packages/nuxt/package.json | 2 +-
packages/reactivity-transform/package.json | 2 +-
packages/script-lang/package.json | 2 +-
packages/setup-block/package.json | 2 +-
packages/setup-component/package.json | 2 +-
packages/setup-sfc/package.json | 2 +-
packages/short-bind/package.json | 2 +-
packages/short-emits/package.json | 2 +-
packages/short-vmodel/package.json | 2 +-
packages/test-utils/package.json | 2 +-
packages/volar/package.json | 2 +-
37 files changed, 37 insertions(+), 37 deletions(-)
diff --git a/package.json b/package.json
index b3225c19f..02e45362a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "monorepo-vue-macros",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"private": true,
"packageManager": "pnpm@10.10.0",
"description": "Monorepo for Vue Macros.",
diff --git a/packages/api/package.json b/packages/api/package.json
index 48c2c4e32..77e9d48e1 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/api",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "General API for Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 14483ac89..840dbb8f9 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/astro",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "Astro integration of Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/better-define/package.json b/packages/better-define/package.json
index 26e0f863e..bc4bc72d6 100644
--- a/packages/better-define/package.json
+++ b/packages/better-define/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/better-define",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "betterDefine feature from Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/boolean-prop/package.json b/packages/boolean-prop/package.json
index d2401b6c7..a5e5f6592 100644
--- a/packages/boolean-prop/package.json
+++ b/packages/boolean-prop/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/boolean-prop",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "booleanProp feature from Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/chain-call/package.json b/packages/chain-call/package.json
index b6e67f9dd..29b458768 100644
--- a/packages/chain-call/package.json
+++ b/packages/chain-call/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/chain-call",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "chainCall feature from Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/common/package.json b/packages/common/package.json
index b15c9f3c6..f54a8f738 100644
--- a/packages/common/package.json
+++ b/packages/common/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/common",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "common feature from Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/config/package.json b/packages/config/package.json
index 0652e123d..43a3707e2 100644
--- a/packages/config/package.json
+++ b/packages/config/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/config",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "Config API for Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/define-emit/package.json b/packages/define-emit/package.json
index e28a8d6b4..f3d008f1d 100644
--- a/packages/define-emit/package.json
+++ b/packages/define-emit/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/define-emit",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "defineEmit feature from Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/define-models/package.json b/packages/define-models/package.json
index 8b47a9a67..743a2ad46 100644
--- a/packages/define-models/package.json
+++ b/packages/define-models/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-macros/define-models",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "defineModels feature from Vue Macros.",
"type": "module",
"keywords": [
diff --git a/packages/define-options/package.json b/packages/define-options/package.json
index 709361500..1c36a53e3 100644
--- a/packages/define-options/package.json
+++ b/packages/define-options/package.json
@@ -1,6 +1,6 @@
{
"name": "unplugin-vue-define-options",
- "version": "3.0.0-beta.10",
+ "version": "3.0.0-beta.11",
"description": "Add defineOptions macro for Vue