diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8e031e46..0510cb7e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,13 +15,13 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+
- name: Set node
uses: actions/setup-node@v4
with:
node-version: lts/*
- - run: corepack enable
-
- name: Setup
run: npm i -g @antfu/ni
@@ -31,6 +31,9 @@ jobs:
- name: Lint
run: nr lint
+ - name: Typecheck
+ run: nr typecheck
+
test:
runs-on: ${{ matrix.os }}
@@ -43,13 +46,13 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+
- name: Set node version to ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- - run: corepack enable
-
- name: Setup
run: npm i -g @antfu/ni
diff --git a/.gitignore b/.gitignore
index bbae2f96..4d637feb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@ node_modules
.DS_Store
dist
.idea
+.components-info.json
components.d.ts
diff --git a/README.md b/README.md
index 0928c180..9aaf358c 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,22 @@ export default {
+
+Rolldown
+
+```ts
+// rolldown.config.js
+import Components from 'unplugin-vue-components/rolldown'
+
+export default {
+ plugins: [
+ Components({ /* options */ }),
+ ],
+}
+```
+
+
+
Webpack
@@ -73,7 +89,7 @@ export default {
module.exports = {
/* ... */
plugins: [
- require('unplugin-vue-components/webpack').default({ /* options */ }),
+ require('unplugin-vue-components/webpack')({ /* options */ }),
],
}
```
@@ -88,7 +104,7 @@ module.exports = {
module.exports = {
/* ... */
plugins: [
- require('unplugin-vue-components/rspack').default({ /* options */ }),
+ require('unplugin-vue-components/rspack')({ /* options */ }),
],
}
```
@@ -110,7 +126,7 @@ You might not need this plugin for Nuxt. Use [`@nuxt/components`](https://github
module.exports = {
/* ... */
plugins: [
- require('unplugin-vue-components/webpack').default({ /* options */ }),
+ require('unplugin-vue-components/webpack')({ /* options */ }),
],
}
```
@@ -132,6 +148,36 @@ export default {
+
+Quasar
+
+```ts
+// vite.config.js [Vite]
+import Components from 'unplugin-vue-components/vite'
+import { defineConfig } from 'vite'
+
+export default defineConfig({
+ plugins: [
+ Components({ /* options */ })
+ ]
+})
+```
+
+```ts
+// quasar.config.js
+export default defineConfig(() => {
+ return {
+ build: {
+ vitePlugins: [
+ ['unplugin-vue-components/vite', { /* options */ }],
+ ]
+ },
+ }
+})
+```
+
+
+
esbuild
@@ -229,6 +275,7 @@ Supported Resolvers:
- [Prime Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/prime-vue.ts)
- [Quasar](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/quasar.ts)
- [TDesign](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/tdesign.ts)
+ - [`@tdesign-vue-next/auto-import-resolver`](https://github.com/Tencent/tdesign-vue-next/blob/develop/packages/auto-import-resolver/README.md) - TDesign's own auto-import resolver
- [Vant](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vant.ts)
- [`@vant/auto-import-resolver`](https://github.com/youzan/vant/blob/main/packages/vant-auto-import-resolver/README.md) - Vant's own auto-import resolver
- [Varlet UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/varlet-ui.ts)
@@ -341,7 +388,7 @@ export default {
// `customLoaderMatcher` is depreacted, use `include` instead
- customLoaderMatcher: id => id.endsWith('.md'),
-+ include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
++ include: [/\.vue$/, /\.vue\?vue/, /\.vue\.[tj]sx?\?vue/, /\.md$/],
}),
],
}
@@ -360,9 +407,10 @@ Components({
extensions: ['vue'],
// Glob patterns to match file names to be detected as components.
+ // You can also specify multiple like this: `src/components/*.{vue,tsx}`
// When specified, the `dirs`, `extensions`, and `directoryAsNamespace` options will be ignored.
// If you want to exclude components being registered, use negative globs with leading `!`.
- globs: ['src/components/*.{vue}'],
+ globs: ['src/components/*.vue'],
// search for subdirectories
deep: true,
@@ -401,7 +449,7 @@ Components({
// Filters for transforming targets (components to insert the auto import)
// Note these are NOT about including/excluding components registered - use `globs` or `excludeNames` for that
- include: [/\.vue$/, /\.vue\?vue/],
+ include: [/\.vue$/, /\.vue\?vue/, /\.vue\.[tj]sx?\?vue/],
exclude: [/[\\/]node_modules[\\/]/, /[\\/]\.git[\\/]/, /[\\/]\.nuxt[\\/]/],
// Filters for component names that will not be imported
@@ -413,7 +461,10 @@ Components({
version: 2.7,
// Only provide types of components in library (registered globally)
- types: []
+ // see https://github.com/unplugin/unplugin-vue-components/blob/main/src/core/type-imports/index.ts
+ types: [
+ /* ... */
+ ],
})
```
diff --git a/examples/vite-vue2/package.json b/examples/vite-vue2/package.json
index e05b8f7b..479de602 100644
--- a/examples/vite-vue2/package.json
+++ b/examples/vite-vue2/package.json
@@ -7,12 +7,12 @@
"dev": "cross-env DEBUG=unplugin-vue-components:* vite"
},
"dependencies": {
- "vue": "^2.7.16"
+ "vue": "2.7.16"
},
"devDependencies": {
"@vitejs/plugin-vue2": "^2.3.3",
- "cross-env": "^7.0.3",
+ "cross-env": "^10.0.0",
"unplugin-vue-components": "workspace:*",
- "vite": "^6.1.0"
+ "vite": "^7.0.6"
}
}
diff --git a/examples/vite-vue2/vite.config.ts b/examples/vite-vue2/vite.config.ts
index 148b1ac9..e703731e 100644
--- a/examples/vite-vue2/vite.config.ts
+++ b/examples/vite-vue2/vite.config.ts
@@ -8,6 +8,7 @@ const config: UserConfig = {
Components({
transformer: 'vue2',
dts: 'src/components.d.ts',
+ dumpComponentsInfo: true,
}),
],
build: {
diff --git a/examples/vite-vue3/package.json b/examples/vite-vue3/package.json
index 9db66739..56ad611a 100644
--- a/examples/vite-vue3/package.json
+++ b/examples/vite-vue3/package.json
@@ -9,20 +9,20 @@
"preview": "cross-env DEBUG=unplugin-vue-components:* vite preview"
},
"dependencies": {
- "vant": "^4.9.17"
+ "vant": "^4.9.21"
},
"devDependencies": {
- "@iconify/json": "^2.2.307",
- "@vitejs/plugin-vue": "^5.2.1",
- "@vue/compiler-sfc": "^3.5.13",
- "cross-env": "^7.0.3",
+ "@iconify/json": "^2.2.366",
+ "@vitejs/plugin-vue": "^6.0.1",
+ "@vue/compiler-sfc": "^3.5.18",
+ "cross-env": "^10.0.0",
"has-pkg": "^0.0.1",
- "typescript": "^5.7.3",
- "unplugin-icons": "^22.0.0",
+ "typescript": "^5.8.3",
+ "unplugin-icons": "^22.2.0",
"unplugin-vue-components": "workspace:*",
- "unplugin-vue-markdown": "^28.3.0",
- "vite": "^6.1.0",
- "vite-plugin-inspect": "^10.2.1",
- "vue-router": "^4.5.0"
+ "unplugin-vue-markdown": "^29.1.0",
+ "vite": "^7.0.6",
+ "vite-plugin-inspect": "^11.3.2",
+ "vue-router": "^4.5.1"
}
}
diff --git a/examples/vite-vue3/vite.config.ts b/examples/vite-vue3/vite.config.ts
index 926eae87..feaee8ef 100644
--- a/examples/vite-vue3/vite.config.ts
+++ b/examples/vite-vue3/vite.config.ts
@@ -37,6 +37,7 @@ const config: UserConfig = {
componentPrefix: 'i',
}),
],
+ dumpComponentsInfo: true,
}),
],
build: {
diff --git a/examples/vue-cli-vue3/jsconfig.json b/examples/vue-cli-vue3/jsconfig.json
index 4aafc5f6..36750781 100644
--- a/examples/vue-cli-vue3/jsconfig.json
+++ b/examples/vue-cli-vue3/jsconfig.json
@@ -1,19 +1,19 @@
{
"compilerOptions": {
"target": "es5",
- "module": "esnext",
+ "lib": [
+ "esnext",
+ "dom",
+ "dom.iterable",
+ "scripthost"
+ ],
"baseUrl": "./",
+ "module": "esnext",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
+ }
}
}
diff --git a/examples/vue-cli-vue3/package.json b/examples/vue-cli-vue3/package.json
index 84dfe18f..22b6da0a 100644
--- a/examples/vue-cli-vue3/package.json
+++ b/examples/vue-cli-vue3/package.json
@@ -8,11 +8,11 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
- "core-js": "^3.40.0",
- "vue": "^3.5.13"
+ "core-js": "^3.45.0",
+ "vue": "^3.5.18"
},
"devDependencies": {
- "@babel/core": "^7.26.9",
+ "@babel/core": "^7.28.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"unplugin-vue-components": "workspace:*"
diff --git a/examples/vue-cli/package.json b/examples/vue-cli/package.json
index a6534da4..a7f29132 100644
--- a/examples/vue-cli/package.json
+++ b/examples/vue-cli/package.json
@@ -8,15 +8,15 @@
},
"dependencies": {
"@vue/composition-api": "^1.7.2",
- "core-js": "^3.40.0",
- "vue": "^3.5.13"
+ "core-js": "^3.45.0",
+ "vue": "2.7.16"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
- "typescript": "^5.7.3",
- "unplugin-icons": "^22.0.0",
+ "typescript": "^5.8.3",
+ "unplugin-icons": "^22.2.0",
"unplugin-vue-components": "workspace:*",
"unplugin-vue2-script-setup": "^0.11.4"
}
diff --git a/examples/vue-cli/vue.config.js b/examples/vue-cli/vue.config.js
index 466b02db..46fec0c6 100644
--- a/examples/vue-cli/vue.config.js
+++ b/examples/vue-cli/vue.config.js
@@ -1,6 +1,6 @@
-const IconsResolver = require('unplugin-icons/resolver')
-const Icons = require('unplugin-icons/webpack')
-const ScriptSetup = require('unplugin-vue2-script-setup/webpack')
+const IconsResolver = require('unplugin-icons/resolver').default
+const Icons = require('unplugin-icons/webpack').default
+const ScriptSetup = require('unplugin-vue2-script-setup/webpack').default
const Components = require('unplugin-vue-components/webpack')
/**
diff --git a/package.json b/package.json
index 19c0076b..57412139 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "unplugin-vue-components",
"type": "module",
- "version": "28.3.0",
- "packageManager": "pnpm@10.4.0",
+ "version": "29.0.0",
+ "packageManager": "pnpm@10.14.0",
"description": "Components auto importing for Vue",
"author": "antfu ",
"license": "MIT",
@@ -30,6 +30,10 @@
"import": "./dist/rollup.js",
"require": "./dist/rollup.cjs"
},
+ "./rolldown": {
+ "import": "./dist/rolldown.js",
+ "require": "./dist/rolldown.cjs"
+ },
"./types": {
"import": "./dist/types.js",
"require": "./dist/types.cjs"
@@ -69,19 +73,20 @@
"node": ">=14"
},
"scripts": {
- "build": "tsup",
- "dev": "tsup --watch src",
+ "build": "tsdown",
+ "dev": "tsdown -w",
"example:build": "npm -C examples/vite-vue3 run build",
"example:dev": "npm -C examples/vite-vue3 run dev",
"prepublishOnly": "npm run build",
"lint": "eslint .",
+ "typecheck": "tsc",
"release": "bumpp && npm publish",
"test": "vitest",
"test:update": "vitest --u"
},
"peerDependencies": {
"@babel/parser": "^7.15.8",
- "@nuxt/kit": "^3.2.2",
+ "@nuxt/kit": "^3.2.2 || ^4.0.0",
"vue": "2 || 3"
},
"peerDependenciesMeta": {
@@ -94,39 +99,40 @@
},
"dependencies": {
"chokidar": "^3.6.0",
- "debug": "^4.4.0",
- "local-pkg": "^1.0.0",
+ "debug": "^4.4.1",
+ "local-pkg": "^1.1.1",
"magic-string": "^0.30.17",
"mlly": "^1.7.4",
- "tinyglobby": "^0.2.10",
- "unplugin": "^2.2.0",
+ "tinyglobby": "^0.2.14",
+ "unplugin": "^2.3.5",
"unplugin-utils": "^0.2.4"
},
"devDependencies": {
- "@antfu/eslint-config": "^4.2.0",
- "@antfu/utils": "^9.0.0",
- "@babel/parser": "^7.26.9",
- "@babel/types": "^7.26.9",
- "@nuxt/kit": "^3.15.4",
- "@nuxt/schema": "^3.15.4",
+ "@antfu/eslint-config": "^5.1.0",
+ "@antfu/utils": "^9.2.0",
+ "@babel/parser": "^7.28.0",
+ "@babel/types": "^7.28.2",
+ "@nuxt/kit": "^4.0.3",
+ "@nuxt/schema": "^4.0.3",
"@types/debug": "^4.1.12",
- "@types/minimatch": "^5.1.2",
- "@types/node": "^22.13.4",
- "bumpp": "^10.0.3",
+ "@types/minimatch": "^6.0.0",
+ "@types/node": "^24.2.0",
+ "bumpp": "^10.2.2",
"compare-versions": "^6.1.1",
- "element-plus": "^2.9.4",
- "eslint": "^9.20.1",
+ "element-plus": "^2.10.5",
+ "eslint": "^9.32.0",
"eslint-plugin-format": "^1.0.1",
"esno": "^4.8.0",
"estree-walker": "^3.0.3",
- "minimatch": "^10.0.1",
+ "minimatch": "^10.0.3",
"pathe": "^2.0.3",
- "rollup": "^4.34.7",
- "tsup": "^8.3.6",
- "typescript": "^5.7.3",
- "vite": "^6.1.0",
- "vitest": "^3.0.5",
+ "rolldown": "^1.0.0-beta.32",
+ "rollup": "^4.46.2",
+ "tsdown": "^0.13.3",
+ "typescript": "^5.8.3",
+ "vite": "^7.0.6",
+ "vitest": "^3.2.4",
"vue": "3.2.45",
- "vue-tsc": "^2.2.0"
+ "vue-tsc": "^3.0.5"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 9718f6b5..41e7a686 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,11 +12,11 @@ importers:
specifier: ^3.6.0
version: 3.6.0
debug:
- specifier: ^4.4.0
- version: 4.4.0
+ specifier: ^4.4.1
+ version: 4.4.1
local-pkg:
- specifier: ^1.0.0
- version: 1.0.0
+ specifier: ^1.1.1
+ version: 1.1.1
magic-string:
specifier: ^0.30.17
version: 0.30.17
@@ -24,57 +24,57 @@ importers:
specifier: ^1.7.4
version: 1.7.4
tinyglobby:
- specifier: ^0.2.10
- version: 0.2.10
+ specifier: ^0.2.14
+ version: 0.2.14
unplugin:
- specifier: ^2.2.0
- version: 2.2.0
+ specifier: ^2.3.5
+ version: 2.3.5
unplugin-utils:
specifier: ^0.2.4
version: 0.2.4
devDependencies:
'@antfu/eslint-config':
- specifier: ^4.2.0
- version: 4.2.0(@typescript-eslint/utils@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@1.0.1(eslint@9.20.1(jiti@2.4.2)))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))
+ specifier: ^5.1.0
+ version: 5.1.0(@vue/compiler-sfc@3.5.18)(eslint-plugin-format@1.0.1(eslint@9.32.0(jiti@2.5.1)))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
'@antfu/utils':
- specifier: ^9.0.0
- version: 9.0.0
+ specifier: ^9.2.0
+ version: 9.2.0
'@babel/parser':
- specifier: ^7.26.9
- version: 7.26.9
+ specifier: ^7.28.0
+ version: 7.28.0
'@babel/types':
- specifier: ^7.26.9
- version: 7.26.9
+ specifier: ^7.28.2
+ version: 7.28.2
'@nuxt/kit':
- specifier: ^3.15.4
- version: 3.15.4
+ specifier: ^4.0.3
+ version: 4.0.3
'@nuxt/schema':
- specifier: ^3.15.4
- version: 3.15.4
+ specifier: ^4.0.3
+ version: 4.0.3
'@types/debug':
specifier: ^4.1.12
version: 4.1.12
'@types/minimatch':
- specifier: ^5.1.2
- version: 5.1.2
+ specifier: ^6.0.0
+ version: 6.0.0
'@types/node':
- specifier: ^22.13.4
- version: 22.13.4
+ specifier: ^24.2.0
+ version: 24.2.0
bumpp:
- specifier: ^10.0.3
- version: 10.0.3
+ specifier: ^10.2.2
+ version: 10.2.2
compare-versions:
specifier: ^6.1.1
version: 6.1.1
element-plus:
- specifier: ^2.9.4
- version: 2.9.4(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
+ specifier: ^2.10.5
+ version: 2.10.5(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
eslint:
- specifier: ^9.20.1
- version: 9.20.1(jiti@2.4.2)
+ specifier: ^9.32.0
+ version: 9.32.0(jiti@2.5.1)
eslint-plugin-format:
specifier: ^1.0.1
- version: 1.0.1(eslint@9.20.1(jiti@2.4.2))
+ version: 1.0.1(eslint@9.32.0(jiti@2.5.1))
esno:
specifier: ^4.8.0
version: 4.8.0
@@ -82,157 +82,156 @@ importers:
specifier: ^3.0.3
version: 3.0.3
minimatch:
- specifier: ^10.0.1
- version: 10.0.1
+ specifier: ^10.0.3
+ version: 10.0.3
pathe:
specifier: ^2.0.3
version: 2.0.3
+ rolldown:
+ specifier: ^1.0.0-beta.32
+ version: 1.0.0-beta.9-commit.d91dfb5
rollup:
- specifier: ^4.34.7
- version: 4.34.7
- tsup:
- specifier: ^8.3.6
- version: 8.3.6(jiti@2.4.2)(postcss@8.5.2)(tsx@4.19.2)(typescript@5.7.3)
+ specifier: ^4.46.2
+ version: 4.46.2
+ tsdown:
+ specifier: ^0.13.3
+ version: 0.13.3(typescript@5.8.3)(vue-tsc@3.0.5(typescript@5.8.3))
typescript:
- specifier: ^5.7.3
- version: 5.7.3
+ specifier: ^5.8.3
+ version: 5.8.3
vite:
- specifier: ^6.1.0
- version: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
vitest:
- specifier: ^3.0.5
- version: 3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
vue:
specifier: 3.2.45
version: 3.2.45
vue-tsc:
- specifier: ^2.2.0
- version: 2.2.0(typescript@5.7.3)
+ specifier: ^3.0.5
+ version: 3.0.5(typescript@5.8.3)
examples/vite-vue2:
dependencies:
vue:
- specifier: ^2.7.16
+ specifier: 2.7.16
version: 2.7.16
devDependencies:
'@vitejs/plugin-vue2':
specifier: ^2.3.3
- version: 2.3.3(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))(vue@2.7.16)
+ version: 2.3.3(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))(vue@2.7.16)
cross-env:
- specifier: ^7.0.3
- version: 7.0.3
+ specifier: ^10.0.0
+ version: 10.0.0
unplugin-vue-components:
specifier: workspace:*
version: link:../..
vite:
- specifier: ^6.1.0
- version: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
examples/vite-vue3:
dependencies:
vant:
- specifier: ^4.9.17
- version: 4.9.17(vue@3.5.13(typescript@5.7.3))
+ specifier: ^4.9.21
+ version: 4.9.21(vue@3.5.18(typescript@5.8.3))
devDependencies:
'@iconify/json':
- specifier: ^2.2.307
- version: 2.2.307
+ specifier: ^2.2.366
+ version: 2.2.366
'@vitejs/plugin-vue':
- specifier: ^5.2.1
- version: 5.2.1(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))(vue@3.5.13(typescript@5.7.3))
+ specifier: ^6.0.1
+ version: 6.0.1(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))(vue@3.5.18(typescript@5.8.3))
'@vue/compiler-sfc':
- specifier: ^3.5.13
- version: 3.5.13
+ specifier: ^3.5.18
+ version: 3.5.18
cross-env:
- specifier: ^7.0.3
- version: 7.0.3
+ specifier: ^10.0.0
+ version: 10.0.0
has-pkg:
specifier: ^0.0.1
version: 0.0.1
typescript:
- specifier: ^5.7.3
- version: 5.7.3
+ specifier: ^5.8.3
+ version: 5.8.3
unplugin-icons:
- specifier: ^22.0.0
- version: 22.0.0(@vue/compiler-sfc@3.5.13)(vue-template-es2015-compiler@1.9.1)
+ specifier: ^22.2.0
+ version: 22.2.0(@vue/compiler-sfc@3.5.18)(vue-template-es2015-compiler@1.9.1)
unplugin-vue-components:
specifier: workspace:*
version: link:../..
unplugin-vue-markdown:
- specifier: ^28.3.0
- version: 28.3.0(rollup@4.34.7)(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))
+ specifier: ^29.1.0
+ version: 29.1.0(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
vite:
- specifier: ^6.1.0
- version: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
vite-plugin-inspect:
- specifier: ^10.2.1
- version: 10.2.1(@nuxt/kit@3.15.4)(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))
+ specifier: ^11.3.2
+ version: 11.3.2(@nuxt/kit@4.0.3)(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
vue-router:
- specifier: ^4.5.0
- version: 4.5.0(vue@3.5.13(typescript@5.7.3))
+ specifier: ^4.5.1
+ version: 4.5.1(vue@3.5.18(typescript@5.8.3))
examples/vue-cli:
dependencies:
'@vue/composition-api':
specifier: ^1.7.2
- version: 1.7.2(vue@3.5.13(typescript@5.7.3))
+ version: 1.7.2(vue@2.7.16)
core-js:
- specifier: ^3.40.0
- version: 3.40.0
+ specifier: ^3.45.0
+ version: 3.45.0
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.7.3)
+ specifier: 2.7.16
+ version: 2.7.16
devDependencies:
'@vue/cli-plugin-babel':
specifier: ^5.0.8
- version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.40.0)(esbuild@0.24.2)(vue@3.5.13(typescript@5.7.3))
+ version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.45.0)(vue@2.7.16)
'@vue/cli-plugin-typescript':
specifier: ^5.0.8
- version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))(esbuild@0.24.2)(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))
+ version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(vue@2.7.16)
'@vue/cli-service':
specifier: ^5.0.8
- version: 5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)
+ version: 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
typescript:
- specifier: ^5.7.3
- version: 5.7.3
+ specifier: ^5.8.3
+ version: 5.8.3
unplugin-icons:
- specifier: ^22.0.0
- version: 22.0.0(@vue/compiler-sfc@3.5.13)(vue-template-es2015-compiler@1.9.1)
+ specifier: ^22.2.0
+ version: 22.2.0(@vue/compiler-sfc@3.5.18)(vue-template-es2015-compiler@1.9.1)
unplugin-vue-components:
specifier: workspace:*
version: link:../..
unplugin-vue2-script-setup:
specifier: ^0.11.4
- version: 0.11.4(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(@vue/runtime-dom@3.5.13)(rollup@4.34.7)
+ version: 0.11.4(@vue/composition-api@1.7.2(vue@2.7.16))(@vue/runtime-dom@3.5.18)(rollup@4.46.2)
examples/vue-cli-vue3:
dependencies:
core-js:
- specifier: ^3.40.0
- version: 3.40.0
+ specifier: ^3.45.0
+ version: 3.45.0
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.8.3)
devDependencies:
'@babel/core':
- specifier: ^7.26.9
- version: 7.26.9
+ specifier: ^7.28.0
+ version: 7.28.0
'@vue/cli-plugin-babel':
specifier: ~5.0.8
- version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.40.0)(esbuild@0.24.2)(vue@3.5.13(typescript@5.7.3))
+ version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.45.0)(vue@3.5.18(typescript@5.8.3))
'@vue/cli-service':
specifier: ~5.0.8
- version: 5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)
+ version: 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
unplugin-vue-components:
specifier: workspace:*
version: link:../..
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@achrinza/node-ipc@9.2.5':
resolution: {integrity: sha512-kBX7Ay911iXZ3VZ1pYltj3Rfu7Ow9H7sK4H4RSfWIfWR2JKNB40K808wppoRIEzE2j2hXLU+r6TJgCAliCGhyQ==}
engines: {node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18}
@@ -241,27 +240,32 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/eslint-config@4.2.0':
- resolution: {integrity: sha512-FoYfLF2QfWZ3ifix495g23sFlsy45/enEw+ZCMWRPzs7tah3Mw1/zu4i73ZcbLa37QgCJSNv7licFmgQ25E0MQ==}
+ '@antfu/eslint-config@5.1.0':
+ resolution: {integrity: sha512-JirdCHnt2frnUf7kmXBxvFfdca1UnC19AP89/nKgZIV71PXxhH6pX/jqF13OKpbOo4hxJQfs6yuS1Kl5LoW4Yw==}
hasBin: true
peerDependencies:
- '@eslint-react/eslint-plugin': ^1.19.0
+ '@eslint-react/eslint-plugin': ^1.38.4
+ '@next/eslint-plugin-next': ^15.4.0-canary.115
'@prettier/plugin-xml': ^3.4.1
'@unocss/eslint-plugin': '>=0.50.0'
astro-eslint-parser: ^1.0.2
eslint: ^9.10.0
eslint-plugin-astro: ^1.2.0
eslint-plugin-format: '>=0.1.0'
- eslint-plugin-react-hooks: ^5.0.0
- eslint-plugin-react-refresh: ^0.4.4
+ eslint-plugin-jsx-a11y: '>=6.10.2'
+ eslint-plugin-react-hooks: ^5.2.0
+ eslint-plugin-react-refresh: ^0.4.19
eslint-plugin-solid: ^0.14.3
eslint-plugin-svelte: '>=2.35.1'
+ eslint-plugin-vuejs-accessibility: ^2.4.1
prettier-plugin-astro: ^0.14.0
prettier-plugin-slidev: ^1.0.5
svelte-eslint-parser: '>=0.37.0'
peerDependenciesMeta:
'@eslint-react/eslint-plugin':
optional: true
+ '@next/eslint-plugin-next':
+ optional: true
'@prettier/plugin-xml':
optional: true
'@unocss/eslint-plugin':
@@ -272,6 +276,8 @@ packages:
optional: true
eslint-plugin-format:
optional: true
+ eslint-plugin-jsx-a11y:
+ optional: true
eslint-plugin-react-hooks:
optional: true
eslint-plugin-react-refresh:
@@ -280,6 +286,8 @@ packages:
optional: true
eslint-plugin-svelte:
optional: true
+ eslint-plugin-vuejs-accessibility:
+ optional: true
prettier-plugin-astro:
optional: true
prettier-plugin-slidev:
@@ -287,11 +295,8 @@ packages:
svelte-eslint-parser:
optional: true
- '@antfu/install-pkg@0.5.0':
- resolution: {integrity: sha512-dKnk2xlAyC7rvTkpkHmu+Qy/2Zc3Vm/l8PtNyIOGDBtXPY3kThfU4ORNEp3V7SXw5XSOb+tOJaUYpfquPzL/Tg==}
-
- '@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/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
@@ -299,23 +304,31 @@ packages:
'@antfu/utils@8.1.1':
resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==}
- '@antfu/utils@9.0.0':
- resolution: {integrity: sha512-0+y1FiFZgAGntZvD1e3fdOKDC1N3RzzX+ILRJu+v1tQUsJxJDQwzenwgv6oqclI6u/Eyh26SnXZHrA/rWZF2TQ==}
+ '@antfu/utils@9.2.0':
+ resolution: {integrity: sha512-Oq1d9BGZakE/FyoEtcNeSwM7MpDO2vUBi11RWBZXf75zPsbUVWmUs03EqkRFrcgbXyKTas0BdZWC1wcuSoqSAw==}
+
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.27.2':
+ resolution: {integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==}
+ engines: {node: '>=6.9.0'}
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/core@7.27.7':
+ resolution: {integrity: sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ '@babel/core@7.28.0':
+ resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.9':
- resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
+ '@babel/generator@7.27.5':
+ resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.9':
- resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
+ '@babel/generator@7.28.0':
+ resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.16.7':
@@ -326,8 +339,8 @@ packages:
resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.26.5':
- resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.17.9':
@@ -359,6 +372,10 @@ packages:
resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-globals@7.28.0':
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-hoist-variables@7.24.7':
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
@@ -367,12 +384,12 @@ packages:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
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.3':
+ resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -405,28 +422,33 @@ packages:
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
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/helper-wrap-function@7.16.8':
resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.9':
- resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
+ '@babel/helpers@7.27.6':
+ resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.9':
- resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
+ '@babel/parser@7.27.7':
+ resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/parser@7.28.0':
+ resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -851,30 +873,34 @@ packages:
resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.26.4':
- resolution: {integrity: sha512-SF+g7S2mhTT1b7CHyfNjDkPU1corxg4LPYsyP0x5KuCl+EbtBQHRLqr9N3q7e7+x7NQ5LYxQf8mJ2PmzebLr0A==}
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.27.7':
+ resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.26.9':
- resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
+ '@babel/traverse@7.28.0':
+ resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.9':
- resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==}
+ '@babel/types@7.27.7':
+ resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.9':
- resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
+ '@babel/types@7.28.2':
+ resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
engines: {node: '>=6.9.0'}
- '@clack/core@0.4.1':
- resolution: {integrity: sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==}
+ '@clack/core@0.5.0':
+ resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==}
- '@clack/prompts@0.10.0':
- resolution: {integrity: sha512-H3rCl6CwW1NdQt9rE3n373t7o5cthPv7yUoxF2ytZvyvlJv89C5RYMJu83Hed8ODgys5vpBU0GKxIRG83jd8NQ==}
+ '@clack/prompts@0.11.0':
+ resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==}
- '@ctrl/tinycolor@3.4.1':
- resolution: {integrity: sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==}
+ '@ctrl/tinycolor@3.6.1':
+ resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
'@dprint/formatter@0.3.0':
@@ -891,316 +917,184 @@ packages:
peerDependencies:
vue: ^3.2.0
- '@es-joy/jsdoccomment@0.49.0':
- resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
- engines: {node: '>=16'}
+ '@emnapi/core@1.4.3':
+ resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
- '@es-joy/jsdoccomment@0.50.0':
- resolution: {integrity: sha512-+zZymuVLH6zVwXPtCAtC+bDymxmEwEqDftdAK+f407IF1bnX49anIxvBhCA1AqUIfD6egj1jM1vUnSuijjNyYg==}
- engines: {node: '>=18'}
+ '@emnapi/runtime@1.4.3':
+ resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
+
+ '@emnapi/wasi-threads@1.0.2':
+ resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
+
+ '@epic-web/invariant@1.0.0':
+ resolution: {integrity: sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==}
- '@esbuild/aix-ppc64@0.23.0':
- resolution: {integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==}
+ '@es-joy/jsdoccomment@0.50.2':
+ resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==}
engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
- '@esbuild/aix-ppc64@0.24.2':
- resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
+ '@es-joy/jsdoccomment@0.52.0':
+ resolution: {integrity: sha512-BXuN7BII+8AyNtn57euU2Yxo9yA/KUDNzrpXyi3pfqKmBhhysR6ZWOebFh3vyPoqA3/j1SOvGgucElMGwlXing==}
+ engines: {node: '>=20.11.0'}
+
+ '@esbuild/aix-ppc64@0.25.0':
+ resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.23.0':
- resolution: {integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.24.2':
- resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
+ '@esbuild/android-arm64@0.25.0':
+ resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.23.0':
- resolution: {integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.24.2':
- resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
+ '@esbuild/android-arm@0.25.0':
+ resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.23.0':
- resolution: {integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.24.2':
- resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
+ '@esbuild/android-x64@0.25.0':
+ resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.23.0':
- resolution: {integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.24.2':
- resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
+ '@esbuild/darwin-arm64@0.25.0':
+ resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.23.0':
- resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.24.2':
- resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
+ '@esbuild/darwin-x64@0.25.0':
+ resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.23.0':
- resolution: {integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.24.2':
- resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
+ '@esbuild/freebsd-arm64@0.25.0':
+ resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.23.0':
- resolution: {integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.24.2':
- resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
+ '@esbuild/freebsd-x64@0.25.0':
+ resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.23.0':
- resolution: {integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.24.2':
- resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
+ '@esbuild/linux-arm64@0.25.0':
+ resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.23.0':
- resolution: {integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.24.2':
- resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
+ '@esbuild/linux-arm@0.25.0':
+ resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.23.0':
- resolution: {integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.24.2':
- resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
+ '@esbuild/linux-ia32@0.25.0':
+ resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.23.0':
- resolution: {integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.24.2':
- resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
+ '@esbuild/linux-loong64@0.25.0':
+ resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.23.0':
- resolution: {integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.24.2':
- resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
+ '@esbuild/linux-mips64el@0.25.0':
+ resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.23.0':
- resolution: {integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.24.2':
- resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
+ '@esbuild/linux-ppc64@0.25.0':
+ resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.23.0':
- resolution: {integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.24.2':
- resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
+ '@esbuild/linux-riscv64@0.25.0':
+ resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.23.0':
- resolution: {integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.24.2':
- resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
+ '@esbuild/linux-s390x@0.25.0':
+ resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.23.0':
- resolution: {integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.24.2':
- resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
+ '@esbuild/linux-x64@0.25.0':
+ resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.24.2':
- resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
+ '@esbuild/netbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.0':
- resolution: {integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.24.2':
- resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
+ '@esbuild/netbsd-x64@0.25.0':
+ resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.0':
- resolution: {integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-arm64@0.24.2':
- resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
+ '@esbuild/openbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.23.0':
- resolution: {integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.24.2':
- resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
+ '@esbuild/openbsd-x64@0.25.0':
+ resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.23.0':
- resolution: {integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.24.2':
- resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
+ '@esbuild/sunos-x64@0.25.0':
+ resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.23.0':
- resolution: {integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.24.2':
- resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
+ '@esbuild/win32-arm64@0.25.0':
+ resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.23.0':
- resolution: {integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.24.2':
- resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
+ '@esbuild/win32-ia32@0.25.0':
+ resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.23.0':
- resolution: {integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.24.2':
- resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
+ '@esbuild/win32-x64@0.25.0':
+ resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-plugin-eslint-comments@4.4.1':
- resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
+ '@eslint-community/eslint-plugin-eslint-comments@4.5.0':
+ resolution: {integrity: sha512-MAhuTKlr4y/CE3WYX26raZjy+I/kS2PLKSzvfmDCGrBLTFHOYwqROZdr4XwPgXwX3K9rjzMr4pSmUWGnzsUyMg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- '@eslint-community/eslint-utils@4.4.1':
- resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ '@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
@@ -1209,8 +1103,8 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.5':
- resolution: {integrity: sha512-5iuG/StT+7OfvhoBHPlmxkPA9om6aDUFgmD4+mWKAGsYt4vCe8rypneG03AuseyRHBmcCLXQtIH5S26tIoggLg==}
+ '@eslint/compat@1.2.7':
+ resolution: {integrity: sha512-xvv7hJE32yhegJ8xNAnb62ggiAwTYHBpUCWhRxEj/ksvgDJuSXfoDkBcRYaYNFiJ+jH0IE3K16hd+xXzhBgNbg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
@@ -1218,43 +1112,46 @@ packages:
eslint:
optional: true
- '@eslint/config-array@0.19.0':
- resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==}
+ '@eslint/config-array@0.21.0':
+ resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.10.0':
- resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
+ '@eslint/config-helpers@0.3.0':
+ resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.11.0':
- resolution: {integrity: sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==}
+ '@eslint/core@0.15.1':
+ resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/eslintrc@3.2.0':
- resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ '@eslint/eslintrc@3.3.1':
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.20.0':
- resolution: {integrity: sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==}
+ '@eslint/js@9.32.0':
+ resolution: {integrity: sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/markdown@6.2.2':
- resolution: {integrity: sha512-U0/KgzI9BVUuHDQ9M2fuVgB0QZ1fSyzwm8jKmHr1dlsLHGHYzoeIA9yqLMdTbV3ivZfp6rTdt6zqre3TfNExUQ==}
+ '@eslint/markdown@7.1.0':
+ resolution: {integrity: sha512-Y+X1B1j+/zupKDVJfkKc8uYMjQkGzfnd8lt7vK3y8x9Br6H5dBuhAfFrQ6ff7HAMm/1BwgecyEiRFkYCWPRxmA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/object-schema@2.1.4':
- resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
+ '@eslint/object-schema@2.1.6':
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.5':
- resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
+ '@eslint/plugin-kit@0.3.4':
+ resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@floating-ui/core@1.0.1':
- resolution: {integrity: sha512-bO37brCPfteXQfFY0DyNDGB3+IMe4j150KFQcgJ5aBP295p9nBGeHEs/p0czrRbtlHq4Px/yoPXO/+dOCcF4uA==}
+ '@floating-ui/core@1.6.9':
+ resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+
+ '@floating-ui/dom@1.6.13':
+ resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
- '@floating-ui/dom@1.0.1':
- resolution: {integrity: sha512-wBDiLUKWU8QNPNOTAFHiIAkBv1KlHauG2AhqjSeh2H+wR8PX+AArXfz8NkRexH5PgMJMmSOS70YS89AbWYh5dA==}
+ '@floating-ui/utils@0.2.9':
+ resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
'@hapi/hoek@9.2.1':
resolution: {integrity: sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==}
@@ -1274,16 +1171,16 @@ packages:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/retry@0.3.0':
- resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
- '@humanwhocodes/retry@0.4.1':
- resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ '@humanwhocodes/retry@0.4.2':
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
engines: {node: '>=18.18'}
- '@iconify/json@2.2.307':
- resolution: {integrity: sha512-540d6XxtPwSVdWf2fM0JTq9j7DYPV7SLpjxPtU5i/AXPTltqZVk0hjVCt5yiFW5fYi0/eiCM44tSDJZJXgKp/w==}
+ '@iconify/json@2.2.366':
+ resolution: {integrity: sha512-qTSvcqPRlFN1v3MqJs8EH6o0JxtuvrRngGFdqLaa/T/VdtovTcCf4I+bi+/aYnhpan425iIKE9JFQ32Rbm6Ydg==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -1291,12 +1188,19 @@ packages:
'@iconify/utils@2.3.0':
resolution: {integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==}
- '@isaacs/cliui@8.0.2':
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
+ '@isaacs/balanced-match@4.0.1':
+ resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
+ engines: {node: 20 || >=22}
+
+ '@isaacs/brace-expansion@5.0.0':
+ resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
+ engines: {node: 20 || >=22}
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ '@jridgewell/gen-mapping@0.3.12':
+ resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
+
+ '@jridgewell/gen-mapping@0.3.8':
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.0':
@@ -1313,14 +1217,20 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@mdit-vue/plugin-component@2.1.3':
- resolution: {integrity: sha512-9AG17beCgpEw/4ldo/M6Y/1Rh4E1bqMmr/rCkWKmCAxy9tJz3lzY7HQJanyHMJufwsb3WL5Lp7Om/aPcQTZ9SA==}
+ '@jridgewell/trace-mapping@0.3.29':
+ resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
+
+ '@mdit-vue/plugin-component@2.1.4':
+ resolution: {integrity: sha512-fiLbwcaE6gZE4c8Mkdkc4X38ltXh/EdnuPE1hepFT2dLiW6I4X8ho2Wq7nhYuT8RmV4OKlCFENwCuXlKcpV/sw==}
- '@mdit-vue/plugin-frontmatter@2.1.3':
- resolution: {integrity: sha512-KxsSCUVBEmn6sJcchSTiI5v9bWaoRxe68RBYRDGcSEY1GTnfQ5gQPMIsM48P4q1luLEIWurVGGrRu7u93//LDQ==}
+ '@mdit-vue/plugin-frontmatter@2.1.4':
+ resolution: {integrity: sha512-mOlavV176njnozIf0UZGFYymmQ2LK5S1rjrbJ1uGz4Df59tu0DQntdE7YZXqmJJA9MiSx7ViCTUQCNPKg7R8Ow==}
- '@mdit-vue/types@2.1.0':
- resolution: {integrity: sha512-TMBB/BQWVvwtpBdWD75rkZx4ZphQ6MN0O4QB2Bc0oI5PC2uE57QerhNxdRZ7cvBHE2iY2C+BUNUziCfJbjIRRA==}
+ '@mdit-vue/types@2.1.4':
+ resolution: {integrity: sha512-QiGNZslz+zXUs2X8D11UQhB4KAMZ0DZghvYxa7+1B+VMLcDtz//XHpWbcuexjzE3kBXSxIUTPH3eSQCa0puZHA==}
+
+ '@napi-rs/wasm-runtime@0.2.10':
+ resolution: {integrity: sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==}
'@node-ipc/js-queue@2.0.3':
resolution: {integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==}
@@ -1338,17 +1248,20 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@nuxt/kit@3.15.4':
- resolution: {integrity: sha512-dr7I7eZOoRLl4uxdxeL2dQsH0OrbEiVPIyBHnBpA4co24CBnoJoF+JINuP9l3PAM3IhUzc5JIVq3/YY3lEc3Hw==}
+ '@nuxt/kit@4.0.3':
+ resolution: {integrity: sha512-9+lwvP4n8KhO91azoebO0o39smESGzEV4HU6nef9HIFyt04YwlVMY37Pk63GgZn0WhWVjyPWcQWs0rUdZUYcPw==}
engines: {node: '>=18.12.0'}
- '@nuxt/schema@3.15.4':
- resolution: {integrity: sha512-pAYZb/3ocSC/db1EFd5y+otmgHqUkvfxfhd9EknDB5DygnJuOIQNuGJ7LMJM6S2c0DYgBIHOdEelLxKHOjwbgQ==}
+ '@nuxt/schema@4.0.3':
+ resolution: {integrity: sha512-acDigyy8tF8xDCMFee00mt5u2kE5Qx5Y34ButBlibLzhguQjc+6f6FpMGdieN07oahjpegWIQG66yQywjw+sKw==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
+ '@oxc-project/runtime@0.71.0':
+ resolution: {integrity: sha512-QwoF5WUXIGFQ+hSxWEib4U/aeLoiDN9JlP18MnBgx9LLPRDfn1iICtcow7Jgey6HLH4XFceWXQD5WBJ39dyJcw==}
+ engines: {node: '>=6.9.0'}
+
+ '@oxc-project/types@0.71.0':
+ resolution: {integrity: sha512-5CwQ4MI+P4MQbjLWXgNurA+igGwu/opNetIE13LBs9+V93R64MLvDKOOLZIXSzEfovU3Zef3q3GjPnMTgJTn2w==}
'@pkgr/core@0.1.1':
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
@@ -1357,6 +1270,76 @@ packages:
'@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
+ '@quansync/fs@0.1.3':
+ resolution: {integrity: sha512-G0OnZbMWEs5LhDyqy2UL17vGhSVHkQIfVojMtEWVenvj0V5S84VBgy86kJIuNsGDp2p7sTKlpSIpBUWdC35OKg==}
+ engines: {node: '>=20.0.0'}
+
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-Mp0/gqiPdepHjjVm7e0yL1acWvI0rJVVFQEADSezvAjon9sjQ7CEg9JnXICD4B1YrPmN9qV/e7cQZCp87tTV4w==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-40re4rMNrsi57oavRzIOpRGmg3QRlW6Ea8Q3znaqgOuJuKVrrm2bIQInTfkZJG7a4/5YMX7T951d0+toGLTdCA==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-8BDM939bbMariZupiHp3OmP5N+LXPT4mULA0hZjDaq970PCxv4krZOSMG+HkWUUwmuQROtV+/00xw39EO0P+8g==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-sntsPaPgrECpBB/+2xrQzVUt0r493TMPI+4kWRMhvMsmrxOqH1Ep5lM0Wua/ZdbfZNwm1aVa5pcESQfNfM4Fhw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-5clBW/I+er9F2uM1OFjJFWX86y7Lcy0M+NqsN4s3o07W+8467Zk8oQa4B45vdaXoNUF/yqIAgKkA/OEdQDxZqA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-wv+rnAfQDk9p/CheX8/Kmqk2o1WaFa4xhWI9gOyDMk/ljvOX0u0ubeM8nI1Qfox7Tnh71eV5AjzSePXUhFOyOg==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-gxD0/xhU4Py47IH3bKZbWtvB99tMkUPGPJFRfSc5UB9Osoje0l0j1PPbxpUtXIELurYCqwLBKXIMTQGifox1BQ==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-HotuVe3XUjDwqqEMbm3o3IRkP9gdm8raY/btd/6KE3JGLF/cv4+3ff1l6nOhAZI8wulWDPEXPtE7v+HQEaTXnA==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-8Cx+ucbd8n2dIr21FqBh6rUvTVL0uTgEtKR7l+MUZ5BgY4dFh1e4mPVX8oqmoYwOxBiXrsD2JIOCz4AyKLKxWA==}
+ engines: {node: '>=14.21.3'}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-Vhq5vikrVDxAa75fxsyqj0c0Y/uti/TwshXI71Xb8IeUQJOBnmLUsn5dgYf5ljpYYkNa0z9BPAvUDIDMmyDi+w==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-lN7RIg9Iugn08zP2aZN9y/MIdG8iOOCE93M1UrFlrxMTqPf8X+fDzmR/OKhTSd1A2pYNipZHjyTcb5H8kyQSow==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-7/7cLIn48Y+EpQ4CePvf8reFl63F15yPUlg4ZAhl+RXJIfydkdak1WD8Ir3AwAO+bJBXzrfNL+XQbxm0mcQZmw==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rolldown/pluginutils@1.0.0-beta.29':
+ resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==}
+
+ '@rolldown/pluginutils@1.0.0-beta.9-commit.d91dfb5':
+ resolution: {integrity: sha512-8sExkWRK+zVybw3+2/kBkYBFeLnEUWz1fT7BLHplpzmtqkOfTbAQ9gkt4pzwGIIZmg4Qn5US5ACjUBenrhezwQ==}
+
'@rollup/pluginutils@5.1.4':
resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
engines: {node: '>=14.0.0'}
@@ -1366,98 +1349,103 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.34.7':
- resolution: {integrity: sha512-l6CtzHYo8D2TQ3J7qJNpp3Q1Iye56ssIAtqbM2H8axxCEEwvN7o8Ze9PuIapbxFL3OHrJU2JBX6FIIVnP/rYyw==}
+ '@rollup/rollup-android-arm-eabi@4.46.2':
+ resolution: {integrity: sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.34.7':
- resolution: {integrity: sha512-KvyJpFUueUnSp53zhAa293QBYqwm94TgYTIfXyOTtidhm5V0LbLCJQRGkQClYiX3FXDQGSvPxOTD/6rPStMMDg==}
+ '@rollup/rollup-android-arm64@4.46.2':
+ resolution: {integrity: sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.34.7':
- resolution: {integrity: sha512-jq87CjmgL9YIKvs8ybtIC98s/M3HdbqXhllcy9EdLV0yMg1DpxES2gr65nNy7ObNo/vZ/MrOTxt0bE5LinL6mA==}
+ '@rollup/rollup-darwin-arm64@4.46.2':
+ resolution: {integrity: sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.34.7':
- resolution: {integrity: sha512-rSI/m8OxBjsdnMMg0WEetu/w+LhLAcCDEiL66lmMX4R3oaml3eXz3Dxfvrxs1FbzPbJMaItQiksyMfv1hoIxnA==}
+ '@rollup/rollup-darwin-x64@4.46.2':
+ resolution: {integrity: sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.34.7':
- resolution: {integrity: sha512-oIoJRy3ZrdsXpFuWDtzsOOa/E/RbRWXVokpVrNnkS7npz8GEG++E1gYbzhYxhxHbO2om1T26BZjVmdIoyN2WtA==}
+ '@rollup/rollup-freebsd-arm64@4.46.2':
+ resolution: {integrity: sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.34.7':
- resolution: {integrity: sha512-X++QSLm4NZfZ3VXGVwyHdRf58IBbCu9ammgJxuWZYLX0du6kZvdNqPwrjvDfwmi6wFdvfZ/s6K7ia0E5kI7m8Q==}
+ '@rollup/rollup-freebsd-x64@4.46.2':
+ resolution: {integrity: sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.34.7':
- resolution: {integrity: sha512-Z0TzhrsNqukTz3ISzrvyshQpFnFRfLunYiXxlCRvcrb3nvC5rVKI+ZXPFG/Aa4jhQa1gHgH3A0exHaRRN4VmdQ==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.46.2':
+ resolution: {integrity: sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.34.7':
- resolution: {integrity: sha512-nkznpyXekFAbvFBKBy4nNppSgneB1wwG1yx/hujN3wRnhnkrYVugMTCBXED4+Ni6thoWfQuHNYbFjgGH0MBXtw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.46.2':
+ resolution: {integrity: sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.34.7':
- resolution: {integrity: sha512-KCjlUkcKs6PjOcxolqrXglBDcfCuUCTVlX5BgzgoJHw+1rWH1MCkETLkLe5iLLS9dP5gKC7mp3y6x8c1oGBUtA==}
+ '@rollup/rollup-linux-arm64-gnu@4.46.2':
+ resolution: {integrity: sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.34.7':
- resolution: {integrity: sha512-uFLJFz6+utmpbR313TTx+NpPuAXbPz4BhTQzgaP0tozlLnGnQ6rCo6tLwaSa6b7l6gRErjLicXQ1iPiXzYotjw==}
+ '@rollup/rollup-linux-arm64-musl@4.46.2':
+ resolution: {integrity: sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.34.7':
- resolution: {integrity: sha512-ws8pc68UcJJqCpneDFepnwlsMUFoWvPbWXT/XUrJ7rWUL9vLoIN3GAasgG+nCvq8xrE3pIrd+qLX/jotcLy0Qw==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.46.2':
+ resolution: {integrity: sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.7':
- resolution: {integrity: sha512-vrDk9JDa/BFkxcS2PbWpr0C/LiiSLxFbNOBgfbW6P8TBe9PPHx9Wqbvx2xgNi1TOAyQHQJ7RZFqBiEohm79r0w==}
+ '@rollup/rollup-linux-ppc64-gnu@4.46.2':
+ resolution: {integrity: sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.34.7':
- resolution: {integrity: sha512-rB+ejFyjtmSo+g/a4eovDD1lHWHVqizN8P0Hm0RElkINpS0XOdpaXloqM4FBkF9ZWEzg6bezymbpLmeMldfLTw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.46.2':
+ resolution: {integrity: sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-musl@4.46.2':
+ resolution: {integrity: sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.34.7':
- resolution: {integrity: sha512-nNXNjo4As6dNqRn7OrsnHzwTgtypfRA3u3AKr0B3sOOo+HkedIbn8ZtFnB+4XyKJojIfqDKmbIzO1QydQ8c+Pw==}
+ '@rollup/rollup-linux-s390x-gnu@4.46.2':
+ resolution: {integrity: sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.34.7':
- resolution: {integrity: sha512-9kPVf9ahnpOMSGlCxXGv980wXD0zRR3wyk8+33/MXQIpQEOpaNe7dEHm5LMfyRZRNt9lMEQuH0jUKj15MkM7QA==}
+ '@rollup/rollup-linux-x64-gnu@4.46.2':
+ resolution: {integrity: sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.34.7':
- resolution: {integrity: sha512-7wJPXRWTTPtTFDFezA8sle/1sdgxDjuMoRXEKtx97ViRxGGkVQYovem+Q8Pr/2HxiHp74SSRG+o6R0Yq0shPwQ==}
+ '@rollup/rollup-linux-x64-musl@4.46.2':
+ resolution: {integrity: sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.34.7':
- resolution: {integrity: sha512-MN7aaBC7mAjsiMEZcsJvwNsQVNZShgES/9SzWp1HC9Yjqb5OpexYnRjF7RmE4itbeesHMYYQiAtUAQaSKs2Rfw==}
+ '@rollup/rollup-win32-arm64-msvc@4.46.2':
+ resolution: {integrity: sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.34.7':
- resolution: {integrity: sha512-aeawEKYswsFu1LhDM9RIgToobquzdtSc4jSVqHV8uApz4FVvhFl/mKh92wc8WpFc6aYCothV/03UjY6y7yLgbg==}
+ '@rollup/rollup-win32-ia32-msvc@4.46.2':
+ resolution: {integrity: sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.34.7':
- resolution: {integrity: sha512-4ZedScpxxIrVO7otcZ8kCX1mZArtH2Wfj3uFCxRJ9NO80gg1XV0U/b2f/MKaGwj2X3QopHfoWiDQ917FRpwY3w==}
+ '@rollup/rollup-win32-x64-msvc@4.46.2':
+ resolution: {integrity: sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==}
cpu: [x64]
os: [win32]
@@ -1470,10 +1458,6 @@ packages:
'@sideway/pinpoint@2.0.0':
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- '@sindresorhus/merge-streams@2.3.0':
- resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
- engines: {node: '>=18'}
-
'@soda/friendly-errors-webpack-plugin@1.8.1':
resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==}
engines: {node: '>=8.0.0'}
@@ -1483,8 +1467,8 @@ packages:
'@soda/get-current-script@1.0.2':
resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==}
- '@stylistic/eslint-plugin@4.0.0-beta.1':
- resolution: {integrity: sha512-QjXLdE0K6NWxCj3G6588UCxWRbZ7wW/shInTC0iruog4qfvlhWhW67+6GZvBHs3qK53ucoI03fyM8I+hg2i7Dg==}
+ '@stylistic/eslint-plugin@5.2.2':
+ resolution: {integrity: sha512-bE2DUjruqXlHYP3Q2Gpqiuj2bHq7/88FnuaS0FjeGGLCy+X6a07bGVuwtiOYnPSLHR6jmx5Bwdv+j7l8H+G97A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=9.0.0'
@@ -1496,12 +1480,18 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
+ '@tybys/wasm-util@0.9.0':
+ resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+
'@types/body-parser@1.19.2':
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
'@types/bonjour@3.5.10':
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
'@types/connect-history-api-fallback@1.3.5':
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
@@ -1511,8 +1501,8 @@ 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/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
'@types/eslint-scope@3.7.3':
resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==}
@@ -1523,8 +1513,8 @@ packages:
'@types/estree@0.0.51':
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/express-serve-static-core@4.17.28':
resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==}
@@ -1544,11 +1534,11 @@ packages:
'@types/linkify-it@5.0.0':
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
- '@types/lodash-es@4.17.6':
- resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==}
+ '@types/lodash-es@4.17.12':
+ resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
- '@types/lodash@4.14.182':
- resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
+ '@types/lodash@4.17.15':
+ resolution: {integrity: sha512-w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw==}
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
@@ -1562,17 +1552,18 @@ packages:
'@types/mime@1.3.2':
resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
- '@types/minimatch@5.1.2':
- resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
+ '@types/minimatch@6.0.0':
+ resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==}
+ deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.
'@types/minimist@1.2.2':
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
- '@types/ms@0.7.31':
- resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
+ '@types/ms@2.1.0':
+ resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
- '@types/node@22.13.4':
- resolution: {integrity: sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==}
+ '@types/node@24.2.0':
+ resolution: {integrity: sha512-3xyG3pMCq3oYCNg7/ZP+E1ooTaGB4cG8JWRsqqOYQdbWNY4zbaV0Ennrd7stjiJEFZCaybcIgpTjJWHRfBSIDw==}
'@types/normalize-package-data@2.4.1':
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -1601,8 +1592,8 @@ packages:
'@types/unist@3.0.3':
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
- '@types/web-bluetooth@0.0.15':
- resolution: {integrity: sha512-w7hEHXnPMEZ+4nGKl/KDRVpxkwYxYExuHOYXyzIzCDzEZ9ZCGMAewulr9IqJu2LR4N37fcnb1XVeuZ09qgOxhA==}
+ '@types/web-bluetooth@0.0.16':
+ resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
'@types/webpack-env@1.16.3':
resolution: {integrity: sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==}
@@ -1610,76 +1601,100 @@ packages:
'@types/ws@8.5.2':
resolution: {integrity: sha512-VXI82ykONr5tacHEojnErTQk+KQSoYbW1NB6iz6wUwrNd+BqfkfggQNoNdCqhJSzbNumShPERbM+Pc5zpfhlbw==}
- '@typescript-eslint/eslint-plugin@8.23.0':
- resolution: {integrity: sha512-vBz65tJgRrA1Q5gWlRfvoH+w943dq9K1p1yDBY2pc+a1nbBLZp7fB9+Hk8DaALUbzjqlMfgaqlVPT1REJdkt/w==}
+ '@typescript-eslint/eslint-plugin@8.39.0':
+ resolution: {integrity: sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ '@typescript-eslint/parser': ^8.39.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.24.0':
- resolution: {integrity: sha512-MFDaO9CYiard9j9VepMNa9MTcqVvSny2N4hkY6roquzj8pdCBRENhErrteaQuu7Yjn1ppk0v1/ZF9CG3KIlrTA==}
+ '@typescript-eslint/parser@8.39.0':
+ resolution: {integrity: sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/project-service@8.35.0':
+ resolution: {integrity: sha512-41xatqRwWZuhUMF/aZm2fcUsOFKNcG28xqRSS6ZVr9BVJtGExosLAm5A1OxTjRMagx8nJqva+P5zNIGt8RIgbQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
+ '@typescript-eslint/project-service@8.39.0':
+ resolution: {integrity: sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@8.23.0':
- resolution: {integrity: sha512-OGqo7+dXHqI7Hfm+WqkZjKjsiRtFUQHPdGMXzk5mYXhJUedO7e/Y7i8AK3MyLMgZR93TX4bIzYrfyVjLC+0VSw==}
+ '@typescript-eslint/scope-manager@8.35.0':
+ resolution: {integrity: sha512-+AgL5+mcoLxl1vGjwNfiWq5fLDZM1TmTPYs2UkyHfFhgERxBbqHlNjRzhThJqz+ktBqTChRYY6zwbMwy0591AA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/scope-manager@8.24.0':
- resolution: {integrity: sha512-HZIX0UByphEtdVBKaQBgTDdn9z16l4aTUz8e8zPQnyxwHBtf5vtl1L+OhH+m1FGV9DrRmoDuYKqzVrvWDcDozw==}
+ '@typescript-eslint/scope-manager@8.39.0':
+ resolution: {integrity: sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.23.0':
- resolution: {integrity: sha512-iIuLdYpQWZKbiH+RkCGc6iu+VwscP5rCtQ1lyQ7TYuKLrcZoeJVpcLiG8DliXVkUxirW/PWlmS+d6yD51L9jvA==}
+ '@typescript-eslint/tsconfig-utils@8.35.0':
+ resolution: {integrity: sha512-04k/7247kZzFraweuEirmvUj+W3bJLI9fX6fbo1Qm2YykuBvEhRTPl8tcxlYO8kZZW+HIXfkZNoasVb8EV4jpA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
+ '@typescript-eslint/tsconfig-utils@8.39.0':
+ resolution: {integrity: sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/type-utils@8.39.0':
+ resolution: {integrity: sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@8.23.0':
- resolution: {integrity: sha512-1sK4ILJbCmZOTt9k4vkoulT6/y5CHJ1qUYxqpF1K/DBAd8+ZUL4LlSCxOssuH5m4rUaaN0uS0HlVPvd45zjduQ==}
+ '@typescript-eslint/types@8.35.0':
+ resolution: {integrity: sha512-0mYH3emanku0vHw2aRLNGqe7EXh9WHEhi7kZzscrMDf6IIRUQ5Jk4wp1QrledE/36KtdZrVfKnE32eZCf/vaVQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/types@8.24.0':
- resolution: {integrity: sha512-VacJCBTyje7HGAw7xp11q439A+zeGG0p0/p2zsZwpnMzjPB5WteaWqt4g2iysgGFafrqvyLWqq6ZPZAOCoefCw==}
+ '@typescript-eslint/types@8.39.0':
+ resolution: {integrity: sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.23.0':
- resolution: {integrity: sha512-LcqzfipsB8RTvH8FX24W4UUFk1bl+0yTOf9ZA08XngFwMg4Kj8A+9hwz8Cr/ZS4KwHrmo9PJiLZkOt49vPnuvQ==}
+ '@typescript-eslint/typescript-estree@8.35.0':
+ resolution: {integrity: sha512-F+BhnaBemgu1Qf8oHrxyw14wq6vbL8xwWKKMwTMwYIRmFFY/1n/9T/jpbobZL8vp7QyEUcC6xGrnAO4ua8Kp7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/typescript-estree@8.24.0':
- resolution: {integrity: sha512-ITjYcP0+8kbsvT9bysygfIfb+hBj6koDsu37JZG7xrCiy3fPJyNmfVtaGsgTUSEuTzcvME5YI5uyL5LD1EV5ZQ==}
+ '@typescript-eslint/typescript-estree@8.39.0':
+ resolution: {integrity: sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@8.23.0':
- resolution: {integrity: sha512-uB/+PSo6Exu02b5ZEiVtmY6RVYO7YU5xqgzTIVZwTHvvK3HsL8tZZHFaTLFtRG3CsV4A5mhOv+NZx5BlhXPyIA==}
+ '@typescript-eslint/utils@8.35.0':
+ resolution: {integrity: sha512-nqoMu7WWM7ki5tPgLVsmPM8CkqtoPUG6xXGeefM5t4x3XumOEKMoUZPdi+7F+/EotukN4R9OWdmDxN80fqoZeg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.24.0':
- resolution: {integrity: sha512-07rLuUBElvvEb1ICnafYWr4hk8/U7X9RDCOqd9JcAMtjh/9oRmcfN4yGzbPVirgMR0+HLVHehmu19CWeh7fsmQ==}
+ '@typescript-eslint/utils@8.39.0':
+ resolution: {integrity: sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@8.23.0':
- resolution: {integrity: sha512-oWWhcWDLwDfu++BGTZcmXWqpwtkwb5o7fxUIGksMQQDSdPW9prsSnfIOZMlsj4vBOSrcnjIUZMiIjODgGosFhQ==}
+ '@typescript-eslint/visitor-keys@8.35.0':
+ resolution: {integrity: sha512-zTh2+1Y8ZpmeQaQVIc/ZZxsx8UzgKJyNg1PTvjzC7WMhPSVS8bfDX34k1SrwOf016qd5RU3az2UxUNue3IfQ5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/visitor-keys@8.24.0':
- resolution: {integrity: sha512-kArLq83QxGLbuHrTMoOEWO+l2MwsNS2TGISEdx8xgqpkbytB07XmlQyQdNDrCc1ecSqx0cnmhGvpX+VBwqqSkg==}
+ '@typescript-eslint/visitor-keys@8.39.0':
+ resolution: {integrity: sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@vant/popperjs@1.3.0':
@@ -1697,17 +1712,16 @@ packages:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
vue: ^2.7.0-0
- '@vitejs/plugin-vue@5.2.1':
- resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ '@vitejs/plugin-vue@6.0.1':
+ resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0
vue: ^3.2.25
- '@vitest/eslint-plugin@1.1.27':
- resolution: {integrity: sha512-aGPTmeaNiUDo2OIMPj1HKiF5q4fu2IIA9lMc0AwOk0nOvL2kLmQBY8AbFmYj895ApzamN46UtQYmxlRSjbTZqQ==}
+ '@vitest/eslint-plugin@1.3.4':
+ resolution: {integrity: sha512-EOg8d0jn3BAiKnR55WkFxmxfWA3nmzrbIIuOXyTe6A72duryNgyU+bdBEauA97Aab3ho9kLmAwgPX63Ckj4QEg==}
peerDependencies:
- '@typescript-eslint/utils': '>= 8.0'
eslint: '>= 8.57.0'
typescript: '>= 5.0.0'
vitest: '*'
@@ -1717,43 +1731,43 @@ packages:
vitest:
optional: true
- '@vitest/expect@3.0.5':
- resolution: {integrity: sha512-nNIOqupgZ4v5jWuQx2DSlHLEs7Q4Oh/7AYwNyE+k0UQzG7tSmjPXShUikn1mpNGzYEN2jJbTvLejwShMitovBA==}
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/mocker@3.0.5':
- resolution: {integrity: sha512-CLPNBFBIE7x6aEGbIjaQAX03ZZlBMaWwAjBdMkIf/cAn6xzLTiM3zYqO/WAbieEjsAZir6tO71mzeHZoodThvw==}
+ '@vitest/mocker@3.2.4':
+ resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.0.5':
- resolution: {integrity: sha512-CjUtdmpOcm4RVtB+up8r2vVDLR16Mgm/bYdkGFe3Yj/scRfCpbSi2W/BDSDcFK7ohw8UXvjMbOp9H4fByd/cOA==}
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
- '@vitest/runner@3.0.5':
- resolution: {integrity: sha512-BAiZFityFexZQi2yN4OX3OkJC6scwRo8EhRB0Z5HIGGgd2q+Nq29LgHU/+ovCtd0fOfXj5ZI6pwdlUmC5bpi8A==}
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
- '@vitest/snapshot@3.0.5':
- resolution: {integrity: sha512-GJPZYcd7v8QNUJ7vRvLDmRwl+a1fGg4T/54lZXe+UOGy47F9yUfE18hRCtXL5aHN/AONu29NGzIXSVFh9K0feA==}
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
- '@vitest/spy@3.0.5':
- resolution: {integrity: sha512-5fOzHj0WbUNqPK6blI/8VzZdkBlQLnT25knX0r4dbZI9qoZDf3qAdjoMmDcLG5A83W6oUUFJgUd0EYBc2P5xqg==}
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
- '@vitest/utils@3.0.5':
- resolution: {integrity: sha512-N9AX0NUoUtVwKwy21JtwzaqR5L5R5A99GAbrHfCCXK1lp593i/3AZAXhSP43wRQuxYsflrdzEfXZFo1reR1Nkg==}
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
- '@volar/language-core@2.4.11':
- resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ '@volar/language-core@2.4.22':
+ resolution: {integrity: sha512-gp4M7Di5KgNyIyO903wTClYBavRt6UyFNpc5LWfyZr1lBsTUY+QrVZfmbNF2aCyfklBOVk9YC4p+zkwoyT7ECg==}
- '@volar/source-map@2.4.11':
- resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ '@volar/source-map@2.4.22':
+ resolution: {integrity: sha512-L2nVr/1vei0xKRgO2tYVXtJYd09HTRjaZi418e85Q+QdbbqA8h7bBjfNyPPSsjnrOO4l4kaAo78c8SQUAdHvgA==}
- '@volar/typescript@2.4.11':
- resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
+ '@volar/typescript@2.4.22':
+ resolution: {integrity: sha512-6ZczlJW1/GWTrNnkmZxJp4qyBt/SGVlcTuCWpI5zLrdPdCZsj66Aff9ZsfFaT3TyjG8zVYgBMYPuCm/eRkpcpQ==}
'@vue/babel-helper-vue-jsx-merge-props@1.2.1':
resolution: {integrity: sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA==}
@@ -1888,14 +1902,20 @@ packages:
'@vue/compiler-core@3.3.4':
resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==}
- '@vue/compiler-core@3.5.13':
- resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+ '@vue/compiler-core@3.5.17':
+ resolution: {integrity: sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==}
+
+ '@vue/compiler-core@3.5.18':
+ resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
'@vue/compiler-dom@3.2.45':
resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==}
- '@vue/compiler-dom@3.5.13':
- resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+ '@vue/compiler-dom@3.5.17':
+ resolution: {integrity: sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==}
+
+ '@vue/compiler-dom@3.5.18':
+ resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
'@vue/compiler-sfc@2.7.16':
resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==}
@@ -1903,14 +1923,14 @@ packages:
'@vue/compiler-sfc@3.2.45':
resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==}
- '@vue/compiler-sfc@3.5.13':
- resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
+ '@vue/compiler-sfc@3.5.18':
+ resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
'@vue/compiler-ssr@3.2.45':
resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==}
- '@vue/compiler-ssr@3.5.13':
- resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
+ '@vue/compiler-ssr@3.5.18':
+ resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -1926,8 +1946,8 @@ packages:
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/language-core@2.2.0':
- resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
+ '@vue/language-core@3.0.5':
+ resolution: {integrity: sha512-gCEjn9Ik7I/seHVNIEipOm8W+f3/kg60e8s1IgIkMYma2wu9ZGUTMv3mSL2bX+Md2L8fslceJ4SU8j1fgSRoiw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -1943,30 +1963,30 @@ packages:
'@vue/reactivity@3.2.45':
resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==}
- '@vue/reactivity@3.5.13':
- resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
+ '@vue/reactivity@3.5.18':
+ resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
'@vue/runtime-core@3.2.45':
resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==}
- '@vue/runtime-core@3.5.13':
- resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
+ '@vue/runtime-core@3.5.18':
+ resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
'@vue/runtime-dom@3.2.45':
resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==}
- '@vue/runtime-dom@3.5.13':
- resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
+ '@vue/runtime-dom@3.5.18':
+ resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
'@vue/server-renderer@3.2.45':
resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==}
peerDependencies:
vue: 3.2.45
- '@vue/server-renderer@3.5.13':
- resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
+ '@vue/server-renderer@3.5.18':
+ resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
peerDependencies:
- vue: 3.5.13
+ vue: 3.5.18
'@vue/shared@3.2.45':
resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==}
@@ -1974,20 +1994,23 @@ packages:
'@vue/shared@3.3.4':
resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
- '@vue/shared@3.5.13':
- resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+ '@vue/shared@3.5.17':
+ resolution: {integrity: sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==}
+
+ '@vue/shared@3.5.18':
+ resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
'@vue/web-component-wrapper@1.3.0':
resolution: {integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==}
- '@vueuse/core@9.2.0':
- resolution: {integrity: sha512-/MZ6qpz6uSyaXrtoeBWQzAKRG3N7CvfVWvQxiM3ei3Xe5ydOjjtVbo7lGl9p8dECV93j7W8s63A8H0kFLpLyxg==}
+ '@vueuse/core@9.13.0':
+ resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
- '@vueuse/metadata@9.2.0':
- resolution: {integrity: sha512-exN4KE6iquxDCdt72BgEhb3tlOpECtD61AUdXnUqBTIUCl70x1Ar/QXo3bYcvxmdMS2/peQyfeTzBjRTpvL5xw==}
+ '@vueuse/metadata@9.13.0':
+ resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
- '@vueuse/shared@9.2.0':
- resolution: {integrity: sha512-NnRp/noSWuXW0dKhZK5D0YLrDi0nmZ18UeEgwXQq7Ul5TTP93lcNnKjrHtd68j2xFB/l59yPGFlCryL692bnrA==}
+ '@vueuse/shared@9.13.0':
+ resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
'@webassemblyjs/ast@1.11.1':
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
@@ -2059,8 +2082,8 @@ packages:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
- acorn@8.14.0:
- resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -2096,8 +2119,8 @@ packages:
ajv@8.10.0:
resolution: {integrity: sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==}
- alien-signals@0.4.12:
- resolution: {integrity: sha512-Og0PgAihxlp1R22bsoBsyhhMG4+qhU+fkkLPoGBQkYVc3qt9rYnrwYTf+M6kqUqUZpf3rXDnpL90iKa0QcSVVg==}
+ alien-signals@2.0.6:
+ resolution: {integrity: sha512-P3TxJSe31bUHBiblg59oU1PpaWPtmxF9GhJ/cB7OkgJ0qN/ifFSKUI25/v8ZhsT+lIG6ac8DpTOplXxORX6F3Q==}
ansi-escapes@3.2.0:
resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
@@ -2128,12 +2151,8 @@ packages:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- ansi-styles@6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
- engines: {node: '>=12'}
-
- ansis@3.14.0:
- resolution: {integrity: sha512-R1LnSpYZWMDEFoAyCrfgToVz4ES25luDpjlZsUlD5GXdPWb91U+TZGkxWAOvt+7zWRY/ctOxhtTx5HUtL3qmbA==}
+ ansis@4.1.0:
+ resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==}
engines: {node: '>=14'}
any-promise@1.3.0:
@@ -2173,6 +2192,10 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
+ ast-kit@2.1.1:
+ resolution: {integrity: sha512-mfh6a7gKXE8pDlxTvqIc/syH/P3RkzbOF6LeHdcKztLEzYe6IMsRCL7N8vI7hqTGWNxpkCuuRTpT21xNWqhRtQ==}
+ engines: {node: '>=20.18.0'}
+
async-validator@4.2.5:
resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
@@ -2231,6 +2254,12 @@ packages:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
+ birpc@2.4.0:
+ resolution: {integrity: sha512-5IdNxTyhXHv2UlgnPHQ0h+5ypVmkrYHzL8QT+DwFZ//2N/oNV8Ch+BCRmTJ3x6/z9Axo/cXYBc9eprsUVK/Jsg==}
+
+ birpc@2.5.0:
+ resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==}
+
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -2257,8 +2286,13 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.24.2:
- resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
+ browserslist@4.24.4:
+ resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
+ browserslist@4.25.1:
+ resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2271,12 +2305,12 @@ packages:
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- builtin-modules@3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
- engines: {node: '>=6'}
+ builtin-modules@5.0.0:
+ resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==}
+ engines: {node: '>=18.20'}
- bumpp@10.0.3:
- resolution: {integrity: sha512-5ONBZenNf9yfTIl2vFvDEfeeioidt0fG10SzjHQw50BRxOmXzsdY+lab1+SDMfiW6UyJ1xQqzFymcy5wa8YhTA==}
+ bumpp@10.2.2:
+ resolution: {integrity: sha512-b6LpQOuXqhejTfNV8r1XkdPQiPWS09l+k+W8raTV2YaFeIqCA76D81G22ac/2jhVTCWXwbEMgvxbQtHriOIPkw==}
engines: {node: '>=18'}
hasBin: true
@@ -2284,12 +2318,6 @@ packages:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- bundle-require@5.0.0:
- resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- peerDependencies:
- esbuild: '>=0.18'
-
bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
@@ -2298,8 +2326,8 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@2.0.1:
- resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
+ c12@3.2.0:
+ resolution: {integrity: sha512-ixkEtbYafL56E6HiFuonMm1ZjoKtIo7TH68/uiEq4DAwv9NcUX2nJ95F8TrbMeNjqIkZpruo3ojXQJ+MGG5gcQ==}
peerDependencies:
magicast: ^0.3.5
peerDependenciesMeta:
@@ -2331,8 +2359,11 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001680:
- resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==}
+ caniuse-lite@1.0.30001701:
+ resolution: {integrity: sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==}
+
+ caniuse-lite@1.0.30001731:
+ resolution: {integrity: sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==}
case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
@@ -2341,8 +2372,8 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.1.2:
- resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
+ chai@5.2.0:
+ resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
engines: {node: '>=12'}
chalk@2.4.2:
@@ -2357,6 +2388,9 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ change-case@5.4.4:
+ resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
+
character-entities@2.0.2:
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
@@ -2372,20 +2406,16 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- chokidar@4.0.1:
- resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
- chownr@2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
-
chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- ci-info@4.0.0:
- resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
+ ci-info@4.3.0:
+ resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==}
engines: {node: '>=8'}
citty@0.1.6:
@@ -2427,10 +2457,6 @@ packages:
cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
- cliui@8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
-
clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
@@ -2461,10 +2487,6 @@ packages:
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@4.1.1:
- resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
- engines: {node: '>= 6'}
-
commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
@@ -2497,12 +2519,15 @@ packages:
confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+ confbox@0.2.2:
+ resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
+
connect-history-api-fallback@1.6.0:
resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
engines: {node: '>=0.8'}
- consola@3.4.0:
- resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
+ consola@3.4.2:
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
consolidate@0.15.1:
@@ -2695,11 +2720,14 @@ packages:
peerDependencies:
webpack: ^5.1.0
- core-js-compat@3.39.0:
- resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
+ core-js-compat@3.41.0:
+ resolution: {integrity: sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==}
+
+ core-js-compat@3.45.0:
+ resolution: {integrity: sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==}
- core-js@3.40.0:
- resolution: {integrity: sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==}
+ core-js@3.45.0:
+ resolution: {integrity: sha512-c2KZL9lP4DjkN3hk/an4pWn5b5ZefhRJnAc42n6LJ19kSnbeRbdQZE5dSeE2LBol1OwJD3X1BQvFTAsa8ReeDA==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -2712,9 +2740,9 @@ packages:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
engines: {node: '>=10'}
- cross-env@7.0.3:
- resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
- engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
+ cross-env@10.0.0:
+ resolution: {integrity: sha512-aU8qlEK/nHYtVuN4p7UQgAwVljzMg8hB4YK5ThRqD2l/ziSnryncPNn7bMLt5cFYsKVKBh8HqLqyCoTupEUu7Q==}
+ engines: {node: '>=20'}
hasBin: true
cross-spawn@6.0.5:
@@ -2794,8 +2822,8 @@ packages:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
- csstype@2.6.20:
- resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
+ csstype@2.6.21:
+ resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
@@ -2822,8 +2850,8 @@ packages:
supports-color:
optional: true
- debug@4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ debug@4.4.1:
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -2894,8 +2922,8 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- destr@2.0.3:
- resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
+ destr@2.0.5:
+ resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
destroy@1.0.4:
resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
@@ -2906,6 +2934,10 @@ packages:
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+ diff@8.0.2:
+ resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==}
+ engines: {node: '>=0.3.1'}
+
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -2919,10 +2951,6 @@ packages:
dns-txt@2.0.2:
resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==}
- doctrine@3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
-
dom-converter@0.2.0:
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
@@ -2949,16 +2977,22 @@ packages:
resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
engines: {node: '>=10'}
- dotenv@16.4.5:
- resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ dotenv@17.2.1:
+ resolution: {integrity: sha512-kQhDYKZecqnM0fCnzI5eIv5L4cAe/iRI+HqMbO/hbRdTAeXDG+M9FjipUxNfbARuEg4iHIbhnhs78BCHNbSxEQ==}
engines: {node: '>=12'}
+ dts-resolver@2.1.1:
+ resolution: {integrity: sha512-3BiGFhB6mj5Kv+W2vdJseQUYW+SKVzAFJL6YNP6ursbrwy1fXHRotfHi3xLNxe4wZl/K8qbAFeCDjZLjzqxxRw==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ oxc-resolver: '>=11.0.0'
+ peerDependenciesMeta:
+ oxc-resolver:
+ optional: true
+
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
-
easy-stack@1.0.1:
resolution: {integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==}
engines: {node: '>=6.0.0'}
@@ -2966,24 +3000,28 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.63:
- resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==}
+ electron-to-chromium@1.5.107:
+ resolution: {integrity: sha512-dJr1o6yCntRkXElnhsHh1bAV19bo/hKyFf7tCcWgpXbuFIF0Lakjgqv5LRfSDaNzAII8Fnxg2tqgHkgCvxdbxw==}
- element-plus@2.9.4:
- resolution: {integrity: sha512-sGnW0wd9zf6lEGixXV2gfwx3X6VTMkP52qTkX7zbURJ2oariyslrKTBh2txt1sdn1pUvj2l0KY3OfSXoZGmDOw==}
+ electron-to-chromium@1.5.196:
+ resolution: {integrity: sha512-FnnXV0dXANe7YNtKl/Af1raw+sBBUPuwcNEWfLOJyumXBvfQEBsnc0Gn+yEnVscq4x3makTtrlf4TjAo7lcXTQ==}
+
+ element-plus@2.10.5:
+ resolution: {integrity: sha512-O9wTDu3Tm51ACVByWrThtBhH4Ygefg1HGY5pyAaxnoIrj8uMN0GtZ4IREwR3Yw/6sM2HyxjrsGI/D46iUVP97A==}
peerDependencies:
vue: ^3.2.0
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- emoji-regex@9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
-
emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
+ empathic@2.0.0:
+ resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==}
+ engines: {node: '>=14'}
+
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -2991,8 +3029,8 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- enhanced-resolve@5.17.1:
- resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
+ enhanced-resolve@5.18.1:
+ resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
entities@2.2.0:
@@ -3011,19 +3049,17 @@ packages:
error-stack-parser@2.0.7:
resolution: {integrity: sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==}
+ errx@0.1.0:
+ resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
+
es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
-
- esbuild@0.23.0:
- resolution: {integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==}
- engines: {node: '>=18'}
- hasBin: true
+ es-module-lexer@1.7.0:
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
- esbuild@0.24.2:
- resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
+ esbuild@0.25.0:
+ resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
engines: {node: '>=18'}
hasBin: true
@@ -3052,28 +3088,25 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-compat-utils@0.6.3:
- resolution: {integrity: sha512-9IDdksh5pUYP2ZLi7mOdROxVjLY8gY2qKxprmrJ/5Dyqud7M/IFKxF3o0VLlRhITm1pK6Fk7NiBxE39M/VlUcw==}
+ eslint-compat-utils@0.6.4:
+ resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
- eslint-config-flat-gitignore@2.0.0:
- resolution: {integrity: sha512-9iH+DZO94uxsw5iFjzqa9GfahA5oK3nA1GoJK/6u8evAtooYJMwuSWiLcGDfrdLoqdQ5/kqFJKKuMY/+SAasvg==}
+ eslint-config-flat-gitignore@2.1.0:
+ resolution: {integrity: sha512-cJzNJ7L+psWp5mXM7jBX+fjHtBvvh06RBlcweMhKD8jWqQw0G78hOW5tpVALGHGFPsBV+ot2H+pdDGJy6CV8pA==}
peerDependencies:
eslint: ^9.5.0
- eslint-flat-config-utils@2.0.1:
- resolution: {integrity: sha512-brf0eAgQ6JlKj3bKfOTuuI7VcCZvi8ZCD1MMTVoEvS/d38j8cByZViLFALH/36+eqB17ukmfmKq3bWzGvizejA==}
+ eslint-flat-config-utils@2.1.1:
+ resolution: {integrity: sha512-K8eaPkBemHkfbYsZH7z4lZ/tt6gNSsVh535Wh9W9gQBS2WjvfUbbVr2NZR3L1yiRCLuOEimYfPxCxODczD4Opg==}
eslint-formatting-reporter@0.0.0:
resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==}
peerDependencies:
eslint: '>=8.40.0'
- eslint-import-resolver-node@0.3.9:
- resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
-
eslint-json-compat-utils@0.2.1:
resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
engines: {node: '>=12'}
@@ -3093,13 +3126,13 @@ packages:
eslint-parser-plain@0.1.1:
resolution: {integrity: sha512-KRgd6wuxH4U8kczqPp+Oyk4irThIhHWxgFgLDtpgjUGVIS3wGrJntvZW/p6hHq1T4FOwnOtCNkvAI4Kr+mQ/Hw==}
- eslint-plugin-antfu@3.0.0:
- resolution: {integrity: sha512-USaQMR17+l7a0XWS9Pk0T+t9PszkdeIncyAOp1vsjHQnDKIlusSg+9bwTYWIzlJXkHDarAI06cdt+d5mbAGEKA==}
+ eslint-plugin-antfu@3.1.1:
+ resolution: {integrity: sha512-7Q+NhwLfHJFvopI2HBZbSxWXngTwBLKxW1AGXLr2lEGxcEIK/AsDs8pn8fvIizl5aZjBbVbVK5ujmMpBe4Tvdg==}
peerDependencies:
eslint: '*'
- eslint-plugin-command@3.0.0:
- resolution: {integrity: sha512-6EFOKGnBMHr0dN/9uKYmxYz6RbsCmEzPRcKYrl+dfEMvlt6+zf6x5TzXKzOowhh3f/hqSBMZmxcB3HHyfbpwWw==}
+ eslint-plugin-command@3.3.1:
+ resolution: {integrity: sha512-fBVTXQ2y48TVLT0+4A6PFINp7GcdIailHAXbvPBixE7x+YpYnNQhFZxTdvnb+aWk+COgNebQKen/7m4dmgyWAw==}
peerDependencies:
eslint: '*'
@@ -3114,26 +3147,30 @@ packages:
peerDependencies:
eslint: ^8.40.0 || ^9.0.0
- eslint-plugin-import-x@4.6.1:
- resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==}
+ eslint-plugin-import-lite@0.3.0:
+ resolution: {integrity: sha512-dkNBAL6jcoCsXZsQ/Tt2yXmMDoNt5NaBh/U7yvccjiK8cai6Ay+MK77bMykmqQA2bTF6lngaLCDij6MTO3KkvA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: '>=9.0.0'
+ typescript: '>=4.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- eslint-plugin-jsdoc@50.6.3:
- resolution: {integrity: sha512-NxbJyt1M5zffPcYZ8Nb53/8nnbIScmiLAMdoe0/FAszwb7lcSiX3iYBTsuF7RV84dZZJC8r3NghomrUXsmWvxQ==}
- engines: {node: '>=18'}
+ eslint-plugin-jsdoc@52.0.3:
+ resolution: {integrity: sha512-QTFvtVVWXwk0RxYF2GDHIQpkz/0fkonthp13YFMBI+Mco+tFrvU8I8E/WKo5ThcH6y3ya9Zx2VHRrZUrcLhs1A==}
+ engines: {node: '>=20.11.0'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-jsonc@2.19.1:
- resolution: {integrity: sha512-MmlAOaZK1+Lg7YoCZPGRjb88ZjT+ct/KTsvcsbZdBm+w8WMzGx+XEmexk0m40P1WV9G2rFV7X3klyRGRpFXEjA==}
+ eslint-plugin-jsonc@2.20.1:
+ resolution: {integrity: sha512-gUzIwQHXx7ZPypUoadcyRi4WbHW2TPixDr0kqQ4miuJBU0emJmyGTlnaT3Og9X2a8R1CDayN9BFSq5weGWbTng==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-n@17.15.1:
- resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
+ eslint-plugin-n@17.21.3:
+ resolution: {integrity: sha512-MtxYjDZhMQgsWRm/4xYLL0i2EhusWT7itDxlJ80l1NND2AL2Vi5Mvneqv/ikG9+zpran0VsVRXTEHrpLmUZRNw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -3142,14 +3179,19 @@ packages:
resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@4.8.0:
- resolution: {integrity: sha512-ZF04IAPGItYMlj9xjgvvl/QpksZf79g0dkxbNcuxDjbcUSZ4CwucJ7h5Yzt5JuHe+i6igQbUYEp40j4ndfbvWQ==}
+ eslint-plugin-perfectionist@4.15.0:
+ resolution: {integrity: sha512-pC7PgoXyDnEXe14xvRUhBII8A3zRgggKqJFx2a82fjrItDs1BSI7zdZnQtM2yQvcyod6/ujmzb7ejKPx8lZTnw==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- eslint: '>=8.0.0'
+ eslint: '>=8.45.0'
+
+ eslint-plugin-pnpm@1.1.0:
+ resolution: {integrity: sha512-sL93w0muBtjnogzk/loDsxzMbmXQOLP5Blw3swLDBXZgfb+qQI73bPcUbjVR+ZL+K62vGJdErV+43i3r5DsZPg==}
+ peerDependencies:
+ eslint: ^9.0.0
- eslint-plugin-regexp@2.7.0:
- resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
+ eslint-plugin-regexp@2.9.0:
+ resolution: {integrity: sha512-9WqJMnOq8VlE/cK+YAo9C9YHhkOtcEtEk9d12a+H7OSZFwlpI6stiHmYPGa2VE0QhTzodJyhlyprUaXDZLgHBw==}
engines: {node: ^18 || >=20}
peerDependencies:
eslint: '>=8.44.0'
@@ -3160,11 +3202,11 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-unicorn@56.0.1:
- resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==}
- engines: {node: '>=18.18'}
+ eslint-plugin-unicorn@60.0.0:
+ resolution: {integrity: sha512-QUzTefvP8stfSXsqKQ+vBQSEsXIlAiCduS/V1Em+FKgL9c21U/IIm20/e3MFy1jyCf14tHAhqC1sX8OTy6VUCg==}
+ engines: {node: ^20.10.0 || >=21.0.0}
peerDependencies:
- eslint: '>=8.56.0'
+ eslint: '>=9.29.0'
eslint-plugin-unused-imports@4.1.4:
resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
@@ -3175,14 +3217,19 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-vue@9.32.0:
- resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
- engines: {node: ^14.17.0 || >=16.0.0}
+ eslint-plugin-vue@10.4.0:
+ resolution: {integrity: sha512-K6tP0dW8FJVZLQxa2S7LcE1lLw3X8VvB3t887Q6CLrFVxHYBXGANbXvwNzYIu6Ughx1bSJ5BDT0YB3ybPT39lw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ '@typescript-eslint/parser': ^7.0.0 || ^8.0.0
+ eslint: ^8.57.0 || ^9.0.0
+ vue-eslint-parser: ^10.0.0
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
- eslint-plugin-yml@1.16.0:
- resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==}
+ eslint-plugin-yml@1.18.0:
+ resolution: {integrity: sha512-9NtbhHRN2NJa/s3uHchO3qVVZw0vyOIvWlXWGaKCr/6l3Go62wsvJK5byiI6ZoYztDsow4GnS69BZD3GnqH3hA==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
@@ -3197,24 +3244,20 @@ packages:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- eslint-scope@8.2.0:
- resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ eslint-scope@8.4.0:
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.2.0:
- resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.20.1:
- resolution: {integrity: sha512-m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==}
+ eslint@9.32.0:
+ resolution: {integrity: sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -3227,8 +3270,8 @@ packages:
resolution: {integrity: sha512-acMtooReAQGzLU0zcuEDHa8S62meh5aIyi8jboYxyvAePdmuWx2Mpwmt0xjwO0bs9/SXf+dvXJ0QJoDWw814Iw==}
hasBin: true
- espree@10.3.0:
- resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ espree@10.4.0:
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
espree@9.6.1:
@@ -3289,18 +3332,20 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
- expect-type@1.1.0:
- resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ expect-type@1.2.1:
+ resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==}
engines: {node: '>=12.0.0'}
express@4.17.3:
resolution: {integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==}
engines: {node: '>= 0.10.0'}
+ exsolve@1.0.5:
+ resolution: {integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg==}
+
+ exsolve@1.0.7:
+ resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
+
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -3321,15 +3366,18 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fastq@1.13.0:
- resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
+ fastq@1.19.1:
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
+
+ fault@2.0.1:
+ resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
- fdir@6.4.2:
- resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -3356,6 +3404,10 @@ packages:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
+ find-up-simple@1.0.1:
+ resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==}
+ engines: {node: '>=18'}
+
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -3368,8 +3420,8 @@ packages:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
- flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
follow-redirects@1.14.9:
resolution: {integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==}
@@ -3380,10 +3432,6 @@ packages:
debug:
optional: true
- foreground-child@3.2.1:
- resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
- engines: {node: '>=14'}
-
fork-ts-checker-webpack-plugin@6.5.0:
resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==}
engines: {node: '>=10', yarn: '>=1.0.0'}
@@ -3398,6 +3446,10 @@ packages:
vue-template-compiler:
optional: true
+ format@0.2.2:
+ resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
+ engines: {node: '>=0.4.x'}
+
forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
@@ -3413,10 +3465,6 @@ packages:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
- fs-minipass@2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
-
fs-monkey@1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
@@ -3428,8 +3476,8 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
@@ -3453,17 +3501,16 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
-
- get-tsconfig@4.8.1:
- resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
+ get-tsconfig@4.10.1:
+ resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
- giget@1.2.3:
- resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
+ giget@2.0.0:
+ resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
hasBin: true
+ github-slugger@2.0.0:
+ resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
+
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
@@ -3475,10 +3522,6 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.5:
- resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
- hasBin: true
-
glob@7.2.0:
resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -3487,28 +3530,27 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
-
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.14.0:
- resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
+ globals@15.15.0:
+ resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
+ engines: {node: '>=18'}
+
+ globals@16.3.0:
+ resolution: {integrity: sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==}
engines: {node: '>=18'}
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@14.0.2:
- resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
- engines: {node: '>=18'}
+ globrex@0.1.2:
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- graceful-fs@4.2.9:
- resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
+ graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
@@ -3556,6 +3598,10 @@ packages:
hash-sum@2.0.0:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
@@ -3563,6 +3609,9 @@ packages:
highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
+ hookable@5.5.3:
+ resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
+
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
@@ -3625,10 +3674,6 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -3646,12 +3691,12 @@ 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.5:
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
imurmurhash@0.1.4:
@@ -3662,6 +3707,10 @@ packages:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
+ indent-string@5.0.0:
+ resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
+ engines: {node: '>=12'}
+
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
@@ -3694,12 +3743,13 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-builtin-module@3.2.1:
- resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
- engines: {node: '>=6'}
+ is-builtin-module@5.0.0:
+ resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==}
+ engines: {node: '>=18.20'}
- is-core-module@2.13.0:
- resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
@@ -3779,10 +3829,6 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
@@ -3805,10 +3851,6 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- jackspeak@3.4.2:
- resolution: {integrity: sha512-qH3nOSj8q/8+Eg8LUPOq3C+6HWkpUioIjDsq1+D4zY91oZvpPttw8GwtF1nReRYKXl+1AORyFqtm2f5Q1SB6/Q==}
- engines: {node: 14 >=14.21 || 16 >=16.20 || >=18}
-
javascript-stringify@2.1.0:
resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==}
@@ -3820,13 +3862,13 @@ packages:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
+ jiti@2.5.1:
+ resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
+ hasBin: true
+
joi@17.6.0:
resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==}
- joycon@3.1.1:
- resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
- engines: {node: '>=10'}
-
js-message@1.0.7:
resolution: {integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==}
engines: {node: '>=0.6.0'}
@@ -3858,6 +3900,11 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -3876,8 +3923,8 @@ packages:
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- json5@1.0.1:
- resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
+ json5@1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
json5@2.2.3:
@@ -3902,10 +3949,6 @@ packages:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- kleur@3.0.3:
- resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
- engines: {node: '>=6'}
-
klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -3930,38 +3973,26 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- lilconfig@3.1.2:
- resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
- engines: {node: '>=14'}
-
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- load-tsconfig@0.2.3:
- resolution: {integrity: sha512-iyT2MXws+dc2Wi6o3grCFtGXpeMvHmJqS27sMPGtV2eUu4PeFnG+33I8BlFK1t1NWMjOpcx9bridn5yxLDX2gQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
loader-runner@4.2.0:
resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
engines: {node: '>=6.11.5'}
- loader-utils@1.4.0:
- resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
+ loader-utils@1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
engines: {node: '>=4.0.0'}
loader-utils@2.0.2:
resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
engines: {node: '>=8.9.0'}
- local-pkg@0.5.1:
- resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
- engines: {node: '>=14'}
-
- local-pkg@1.0.0:
- resolution: {integrity: sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==}
+ local-pkg@1.1.1:
+ resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
engines: {node: '>=14'}
locate-path@5.0.0:
@@ -3975,8 +4006,8 @@ packages:
lodash-es@4.17.21:
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
- lodash-unified@1.0.2:
- resolution: {integrity: sha512-OGbEy+1P+UT26CYi4opY4gebD8cWRDxAT6MAObIVQMiqYdxZr1g3QHWCToVsm31x2NkLS4K3+MC2qInaRMa39g==}
+ lodash-unified@1.0.3:
+ resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
peerDependencies:
'@types/lodash-es': '*'
lodash: '*'
@@ -4000,9 +4031,6 @@ packages:
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- lodash.sortby@4.7.0:
- resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
-
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
@@ -4020,15 +4048,12 @@ packages:
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
- loupe@3.1.2:
- resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
+ loupe@3.1.4:
+ resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
- lru-cache@10.4.3:
- resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
-
lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -4049,8 +4074,8 @@ packages:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
- markdown-it-async@2.0.0:
- resolution: {integrity: sha512-jBthmQR5MwXR9Y8Y0teRoZAenaKQMdjuTfpbNARqMBSRPvyzyXCVduHZHakyyhL3ugIacCobXJrO07t277sIjw==}
+ markdown-it-async@2.2.0:
+ resolution: {integrity: sha512-sITME+kf799vMeO/ww/CjH6q+c05f6TLpn6VOmmWCGNqPJzSh+uFgZoMB9s0plNtW6afy63qglNAC3MhrhP/gg==}
markdown-it@14.1.0:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
@@ -4059,17 +4084,20 @@ packages:
markdown-table@3.0.4:
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- mdast-util-find-and-replace@3.0.1:
- resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
+ mdast-util-find-and-replace@3.0.2:
+ resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
mdast-util-from-markdown@2.0.2:
resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
+ mdast-util-frontmatter@2.0.1:
+ resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
+
mdast-util-gfm-autolink-literal@2.0.1:
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
- mdast-util-gfm-footnote@2.0.0:
- resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
+ mdast-util-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
mdast-util-gfm-strikethrough@2.0.0:
resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
@@ -4080,8 +4108,8 @@ packages:
mdast-util-gfm-task-list-item@2.0.0:
resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
- mdast-util-gfm@3.0.0:
- resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
+ mdast-util-gfm@3.1.0:
+ resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
mdast-util-phrasing@4.1.0:
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
@@ -4129,6 +4157,9 @@ packages:
micromark-core-commonmark@2.0.2:
resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
+ micromark-extension-frontmatter@2.0.0:
+ resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==}
+
micromark-extension-gfm-autolink-literal@2.1.0:
resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
@@ -4138,8 +4169,8 @@ packages:
micromark-extension-gfm-strikethrough@2.1.0:
resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
- micromark-extension-gfm-table@2.1.0:
- resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
+ micromark-extension-gfm-table@2.1.1:
+ resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
micromark-extension-gfm-tagfilter@2.0.0:
resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
@@ -4198,8 +4229,8 @@ packages:
micromark-util-sanitize-uri@2.0.1:
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
- micromark-util-subtokenize@2.0.2:
- resolution: {integrity: sha512-xKxhkB62vwHUuuxHe9Xqty3UaAsizV2YKq5OV344u3hFBbf8zIYrhYOWhAQb94MtMPkjTOzzjJ/hid9/dR5vFA==}
+ micromark-util-subtokenize@2.0.4:
+ resolution: {integrity: sha512-N6hXjrin2GTJDe3MVjf5FuXpm12PGm80BrUAeub9XFXca8JZbP+oIwY4LJSVwFUCL1IPm/WwSVUN7goFHmSGGQ==}
micromark-util-symbol@2.0.1:
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
@@ -4239,10 +4270,6 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -4256,8 +4283,8 @@ packages:
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- minimatch@10.0.1:
- resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
+ minimatch@10.0.3:
+ resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
engines: {node: 20 || >=22}
minimatch@3.1.2:
@@ -4274,27 +4301,10 @@ packages:
resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==}
engines: {node: '>=8'}
- minipass@5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
- engines: {node: '>=8'}
-
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minizlib@2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
-
mkdirp@0.5.5:
resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
hasBin: true
- mkdirp@1.0.4:
- resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
- engines: {node: '>=10'}
- hasBin: true
-
mlly@1.7.4:
resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
@@ -4328,8 +4338,8 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ nanoid@3.3.11:
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -4353,8 +4363,8 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-fetch-native@1.6.4:
- resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
+ node-fetch-native@1.6.6:
+ resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==}
node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
@@ -4369,8 +4379,8 @@ packages:
resolution: {integrity: sha512-Fcvtbb+zBcZXbTTVwqGA5W+MKBj56UjVRevvchv5XrcyXbmNdesfZL37nlcWOfpgHhgmxApw3tQbTr4CqNmX4w==}
engines: {node: '>= 6.13.0'}
- node-releases@2.0.18:
- resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -4398,15 +4408,11 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nypm@0.3.8:
- resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
+ nypm@0.6.0:
+ resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -4429,8 +4435,8 @@ packages:
obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- ohash@1.1.4:
- resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
+ ohash@2.0.11:
+ resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
on-finished@2.3.0:
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
@@ -4451,12 +4457,8 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
- open@10.1.0:
- resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
open@8.4.0:
@@ -4467,8 +4469,8 @@ packages:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
ora@5.4.1:
@@ -4507,11 +4509,8 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- package-json-from-dist@1.0.0:
- resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
-
- package-manager-detector@0.2.9:
- resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==}
+ package-manager-detector@1.3.0:
+ resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==}
param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
@@ -4524,14 +4523,16 @@ packages:
resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
engines: {node: '>=14'}
- parse-imports@2.1.1:
- resolution: {integrity: sha512-TDT4HqzUiTMO1wJRwg/t/hYk8Wdp3iF/ToMIlAoVQfL1Xs/sTxq1dKWSMjMbQmIarfWKymOyly40+zmPHXMqCA==}
- engines: {node: '>= 18'}
+ parse-imports-exports@0.2.4:
+ resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==}
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
+ parse-statements@1.0.11:
+ resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==}
+
parse5-htmlparser2-tree-adapter@6.0.1:
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
@@ -4567,17 +4568,9 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- path-key@4.0.0:
- resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
- engines: {node: '>=12'}
-
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
-
path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -4585,10 +4578,6 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- path-type@5.0.0:
- resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
- engines: {node: '>=12'}
-
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
@@ -4616,9 +4605,9 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
- pirates@4.0.5:
- resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
- engines: {node: '>= 6'}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ engines: {node: '>=12'}
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
@@ -4627,10 +4616,19 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+ pkg-types@2.1.0:
+ resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
+
+ pkg-types@2.2.0:
+ resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==}
+
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
+ pnpm-workspace-yaml@1.1.0:
+ resolution: {integrity: sha512-OWUzBxtitpyUV0fBYYwLAfWxn3mSzVbVB7cwgNaHvTTU9P0V2QHjyaY5i7f1hEiT9VeKsNH1Skfhe2E3lx/zhA==}
+
portfinder@1.0.28:
resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
engines: {node: '>= 0.12.0'}
@@ -4676,24 +4674,6 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss-load-config@6.0.1:
- resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
- engines: {node: '>= 18'}
- peerDependencies:
- jiti: '>=1.21.0'
- postcss: '>=8.0.9'
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- jiti:
- optional: true
- postcss:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
postcss-loader@6.2.1:
resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
engines: {node: '>= 12.13.0'}
@@ -4833,8 +4813,8 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-svgo@5.1.0:
@@ -4856,8 +4836,8 @@ packages:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
- postcss@8.5.2:
- resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
prelude-ls@1.2.1:
@@ -4873,8 +4853,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.4.2:
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ prettier@3.5.2:
+ resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==}
engines: {node: '>=14'}
hasBin: true
@@ -4890,10 +4870,6 @@ packages:
peerDependencies:
webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- prompts@2.4.2:
- resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
- engines: {node: '>= 6'}
-
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -4908,14 +4884,17 @@ packages:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
- punycode@2.1.1:
- resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
qs@6.9.7:
resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==}
engines: {node: '>=0.6'}
+ quansync@0.2.10:
+ resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
+
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
@@ -4952,9 +4931,9 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- readdirp@4.0.2:
- resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
- engines: {node: '>= 14.16.0'}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
+ engines: {node: '>= 14.18.0'}
refa@0.12.1:
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
@@ -4992,8 +4971,8 @@ packages:
regjsgen@0.6.0:
resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==}
- regjsparser@0.10.0:
- resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
regjsparser@0.8.4:
@@ -5022,15 +5001,12 @@ packages:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- resolve-from@5.0.0:
- resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
- engines: {node: '>=8'}
-
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
hasBin: true
restore-cursor@2.0.0:
@@ -5045,8 +5021,8 @@ packages:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@3.0.2:
@@ -5054,8 +5030,28 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rollup@4.34.7:
- resolution: {integrity: sha512-8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ==}
+ rolldown-plugin-dts@0.15.3:
+ resolution: {integrity: sha512-qILn8tXV828UpzgSN7R3KeCl1lfc2eRhPJDGO78C6PztEQH51gBTG3tyQDIVIAYY58afhOsWW/zTYpfewTGCdg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ '@typescript/native-preview': '>=7.0.0-dev.20250601.1'
+ rolldown: ^1.0.0-beta.9
+ typescript: ^5.0.0
+ vue-tsc: ~3.0.3
+ peerDependenciesMeta:
+ '@typescript/native-preview':
+ optional: true
+ typescript:
+ optional: true
+ vue-tsc:
+ optional: true
+
+ rolldown@1.0.0-beta.9-commit.d91dfb5:
+ resolution: {integrity: sha512-FHkj6gGEiEgmAXQchglofvUUdwj2Oiw603Rs+zgFAnn9Cb7T7z3fiaEc0DbN3ja4wYkW6sF2rzMEtC1V4BGx/g==}
+ hasBin: true
+
+ rollup@4.46.2:
+ resolution: {integrity: sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -5117,8 +5113,8 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
@@ -5172,16 +5168,12 @@ packages:
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- signal-exit@4.1.0:
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
- engines: {node: '>=14'}
-
sirv@1.0.19:
resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
engines: {node: '>= 10'}
- sirv@3.0.0:
- resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ sirv@3.0.1:
+ resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
engines: {node: '>=18'}
sisteransi@1.0.5:
@@ -5191,13 +5183,6 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@5.1.0:
- resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
- engines: {node: '>=14.16'}
-
- slashes@3.0.12:
- resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==}
-
sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
@@ -5216,10 +5201,6 @@ packages:
resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
engines: {node: '>= 8'}
- source-map@0.8.0-beta.0:
- resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
- engines: {node: '>= 8'}
-
sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
@@ -5227,8 +5208,8 @@ packages:
spdx-correct@3.1.1:
resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
- spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ 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==}
@@ -5236,8 +5217,8 @@ packages:
spdx-expression-parse@4.0.0:
resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
- spdx-license-ids@3.0.11:
- resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==}
+ spdx-license-ids@3.0.21:
+ resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
@@ -5253,9 +5234,6 @@ packages:
resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
engines: {node: '>= 8'}
- stable-hash@0.0.4:
- resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
-
stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
@@ -5270,8 +5248,8 @@ packages:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- std-env@3.8.0:
- resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
+ std-env@3.9.0:
+ resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
string-width@2.1.1:
resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
@@ -5281,10 +5259,6 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
-
string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -5315,14 +5289,10 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+ strip-indent@4.0.0:
+ resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
engines: {node: '>=12'}
- strip-indent@3.0.0:
- resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
- engines: {node: '>=8'}
-
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -5336,11 +5306,6 @@ packages:
peerDependencies:
postcss: ^8.2.15
- sucrase@3.35.0:
- resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -5381,10 +5346,6 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
-
terser-webpack-plugin@5.3.1:
resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==}
engines: {node: '>= 10.13.0'}
@@ -5431,20 +5392,23 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.10:
- resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
+ tinyexec@1.0.1:
+ resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
+
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
engines: {node: '>=12.0.0'}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@2.0.0:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
to-regex-range@5.0.1:
@@ -5470,21 +5434,20 @@ packages:
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@1.0.1:
- resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
-
tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- ts-api-utils@2.0.1:
- resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
+ ts-api-utils@2.1.0:
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
engines: {node: '>=18.12'}
peerDependencies:
typescript: '>=4.8.4'
- ts-interface-checker@0.1.13:
- resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+ ts-declaration-location@1.0.7:
+ resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
+ peerDependencies:
+ typescript: '>=4.0.0'
ts-loader@9.2.8:
resolution: {integrity: sha512-gxSak7IHUuRtwKf3FIPSW1VpZcqF9+MBrHOvBp9cjHh+525SjtCIJKVGjRKIAfxBwDGDGCFF00rTfzB1quxdSw==}
@@ -5493,30 +5456,33 @@ packages:
typescript: '*'
webpack: ^5.0.0
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
-
- tsup@8.3.6:
- resolution: {integrity: sha512-XkVtlDV/58S9Ye0JxUUTcrQk4S+EqlOHKzg6Roa62rdjL1nGWNUstG0xgI4vanHdfIpjP448J8vlN0oK6XOJ5g==}
- engines: {node: '>=18'}
+ tsdown@0.13.3:
+ resolution: {integrity: sha512-3ujweLJB70DdWXX3v7xnzrFhzW1F/6/99XhGeKzh1UCmZ+ttFmF7Czha7VaunA5Dq/u+z4aNz3n4GH748uivYg==}
+ engines: {node: '>=20.19.0'}
hasBin: true
peerDependencies:
- '@microsoft/api-extractor': ^7.36.0
- '@swc/core': ^1
- postcss: ^8.4.12
- typescript: '>=4.5.0'
+ '@arethetypeswrong/core': ^0.18.1
+ publint: ^0.3.0
+ typescript: ^5.0.0
+ unplugin-lightningcss: ^0.4.0
+ unplugin-unused: ^0.5.0
peerDependenciesMeta:
- '@microsoft/api-extractor':
+ '@arethetypeswrong/core':
optional: true
- '@swc/core':
- optional: true
- postcss:
+ publint:
optional: true
typescript:
optional: true
+ unplugin-lightningcss:
+ optional: true
+ unplugin-unused:
+ optional: true
+
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsx@4.19.2:
- resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
+ tsx@4.19.3:
+ resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -5524,10 +5490,6 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
-
type-fest@0.6.0:
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
engines: {node: '>=8'}
@@ -5540,22 +5502,25 @@ packages:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- typescript@5.7.3:
- resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
engines: {node: '>=14.17'}
hasBin: true
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
- ufo@1.5.4:
- resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+ ufo@1.6.1:
+ resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
+
+ unconfig@7.3.2:
+ resolution: {integrity: sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==}
unctx@2.4.1:
resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
- undici-types@6.20.0:
- resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+ undici-types@7.10.0:
+ resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==}
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
@@ -5573,12 +5538,8 @@ packages:
resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==}
engines: {node: '>=4'}
- unicorn-magic@0.1.0:
- resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
- engines: {node: '>=18'}
-
- unimport@4.1.1:
- resolution: {integrity: sha512-j9+fijH6aDd05yv1fXlyt7HSxtOWtGtrZeYTVBsSUg57Iuf+Ps2itIZjeyu7bEQ4k0WOgYhHrdW8m/pJgOpl5g==}
+ unimport@5.2.0:
+ resolution: {integrity: sha512-bTuAMMOOqIAyjV4i4UH7P07pO+EsVxmhOzQ2YJ290J6mkLUdozNhb5I/YoOEheeNADC03ent3Qj07X0fWfUpmw==}
engines: {node: '>=18.12.0'}
unist-util-is@6.0.0:
@@ -5601,8 +5562,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin-icons@22.0.0:
- resolution: {integrity: sha512-+1jIt2wynxL+GISehNok8MIb9RaCufIZCHJs0HKbxOljJL9m4NtOhva+dZhNtSKtfQ62Hwd/RRbniSVuuD4Xow==}
+ unplugin-icons@22.2.0:
+ resolution: {integrity: sha512-OdrXCiXexC1rFd0QpliAgcd4cMEEEQtoCf2WIrRIGu4iW6auBPpQKMCBeWxoe55phYdRyZLUWNOtzyTX+HOFSA==}
peerDependencies:
'@svgr/core': '>=7.0.0'
'@svgx/core': ^1.0.1
@@ -5628,10 +5589,11 @@ packages:
resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
engines: {node: '>=18.12.0'}
- unplugin-vue-markdown@28.3.0:
- resolution: {integrity: sha512-N84cKGjyzGYIxuew+Oxnf7SulbNZjbdh0mJt1i2tuUMvplPGYIyafHueTMIi+nu47DBn+BV+CwjBkVbHh0L4Ug==}
+ unplugin-vue-markdown@29.1.0:
+ resolution: {integrity: sha512-BvDFrhsiXzVvzfq1y68jtZwHg1NYJBteSXmUK4zMdX1HT2QtKw8yimjUbDwuI1K9TW/1/L6QYiRQSl1OkHcxWg==}
+ engines: {node: '>=20'}
peerDependencies:
- vite: ^2.0.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0
+ vite: ^2.0.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0 || ^7.0.0
unplugin-vue2-script-setup@0.11.4:
resolution: {integrity: sha512-HOJn7PwKBq36vvtAkx2QXpmMmXk9owIX4H77d4cF5RpiPuSY/u4P3nWF6a276LHrBGtb0/UHmCbeUeGeeJ1DWg==}
@@ -5647,16 +5609,16 @@ packages:
resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
engines: {node: '>=14.0.0'}
- unplugin@2.2.0:
- resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==}
+ unplugin@2.3.5:
+ resolution: {integrity: sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw==}
engines: {node: '>=18.12.0'}
- untyped@1.5.2:
- resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
+ untyped@2.0.0:
+ resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
hasBin: true
- update-browserslist-db@1.1.1:
- resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
+ update-browserslist-db@1.1.3:
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -5681,8 +5643,8 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- vant@4.9.17:
- resolution: {integrity: sha512-so/plH9G4au9rUrqy7yLB1slmZqY2Ub3Gq8ckMSQXbUEwTzmViVjEDqh/hNck/XELxwL+gIy2hLXiSgVcf2EBQ==}
+ vant@4.9.21:
+ resolution: {integrity: sha512-hXUoZMrLLjykimFRLDlGNd+K2iYSRh9YwLMKnsVdVZ+9inUKxpqnjhOqlZwocbnYkvJlS+febf9u9aJpDol4Pw==}
peerDependencies:
vue: ^3.0.0
@@ -5690,34 +5652,44 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vite-node@3.0.5:
- resolution: {integrity: sha512-02JEJl7SbtwSDJdYS537nU6l+ktdvcREfLksk/NDAqtdKWGqHl+joXzEubHROmS3E6pip+Xgu2tFezMu75jH7A==}
+ vite-dev-rpc@1.1.0:
+ resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0
+
+ vite-hot-client@2.1.0:
+ resolution: {integrity: sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
+
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-plugin-inspect@10.2.1:
- resolution: {integrity: sha512-SO3kz3J4yUCNb/cndtIf1mGSJitnbmxjDSRUr0srqfHf06ry9i9ujHQFU7ZUarlf9HFqXW14VyC70fFojP/fKg==}
+ vite-plugin-inspect@11.3.2:
+ resolution: {integrity: sha512-nzwvyFQg58XSMAmKVLr2uekAxNYvAbz1lyPmCAFVIBncCgN9S/HPM+2UM9Q9cvc4JEbC5ZBgwLAdaE2onmQuKg==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
- vite: ^6.0.0
+ vite: ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
'@nuxt/kit':
optional: true
- vite@6.1.0:
- resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ vite@7.0.6:
+ resolution: {integrity: sha512-MHFiOENNBd+Bd9uvc8GEsIzdkn1JxMmEeYX35tI3fv0sJBUTfW5tQsoaOwuY4KhBI09A3dUJ/DXf2yxPVPUceg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@types/node': ^20.19.0 || >=22.12.0
jiti: '>=1.21.0'
- less: '*'
+ less: ^4.0.0
lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
terser: ^5.16.0
tsx: ^4.8.1
yaml: ^2.4.2
@@ -5745,16 +5717,16 @@ packages:
yaml:
optional: true
- vitest@3.0.5:
- resolution: {integrity: sha512-4dof+HvqONw9bvsYxtkfUp2uHsTN9bV2CZIi1pWgoFpL1Lld8LA1ka9q/ONSsoScAKG7NVGf2stJTI7XRkXb2Q==}
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
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.0.5
- '@vitest/ui': 3.0.5
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -5773,11 +5745,11 @@ packages:
jsdom:
optional: true
- vscode-uri@3.0.8:
- resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+ vscode-uri@3.1.0:
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
- vue-demi@0.12.1:
- resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==}
+ vue-demi@0.14.10:
+ resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
engines: {node: '>=12'}
hasBin: true
peerDependencies:
@@ -5787,21 +5759,22 @@ packages:
'@vue/composition-api':
optional: true
- vue-eslint-parser@9.4.3:
- resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
- engines: {node: ^14.17.0 || >=16.0.0}
+ vue-eslint-parser@10.2.0:
+ resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: '>=6.0.0'
+ eslint: ^8.57.0 || ^9.0.0
vue-hot-reload-api@2.3.4:
resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==}
- vue-loader@15.9.8:
- resolution: {integrity: sha512-GwSkxPrihfLR69/dSV3+5CdMQ0D+jXg8Ma1S4nQXKJAznYFX14vHdc/NetQc34Dw+rBbIJyP7JOuVb9Fhprvog==}
+ vue-loader@15.11.1:
+ resolution: {integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==}
peerDependencies:
'@vue/compiler-sfc': ^3.0.8
cache-loader: '*'
css-loader: '*'
+ prettier: '*'
vue-template-compiler: '*'
webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0
peerDependenciesMeta:
@@ -5809,6 +5782,8 @@ packages:
optional: true
cache-loader:
optional: true
+ prettier:
+ optional: true
vue-template-compiler:
optional: true
@@ -5817,8 +5792,8 @@ packages:
peerDependencies:
webpack: ^4.1.0 || ^5.0.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
@@ -5828,8 +5803,8 @@ packages:
vue-template-es2015-compiler@1.9.1:
resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==}
- vue-tsc@2.2.0:
- resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
+ vue-tsc@3.0.5:
+ resolution: {integrity: sha512-PsTFN9lo1HJCrZw9NoqjYcAbYDXY0cOKyuW2E7naX5jcaVyWpqEsZOHN9Dws5890E8e5SDAD4L4Zam3dxG3/Cw==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
@@ -5841,8 +5816,8 @@ packages:
vue@3.2.45:
resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==}
- vue@3.5.13:
- resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
+ vue@3.5.18:
+ resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -5862,9 +5837,6 @@ packages:
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webidl-conversions@4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
-
webpack-bundle-analyzer@4.5.0:
resolution: {integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==}
engines: {node: '>= 10.13.0'}
@@ -5930,9 +5902,6 @@ packages:
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- whatwg-url@7.1.0:
- resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
-
which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
@@ -5950,6 +5919,10 @@ packages:
wildcard@2.0.0:
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
wrap-ansi@3.0.1:
resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==}
engines: {node: '>=4'}
@@ -5958,10 +5931,6 @@ packages:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -5989,6 +5958,10 @@ packages:
utf-8-validate:
optional: true
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -6006,34 +5979,27 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml-eslint-parser@1.2.3:
- resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
+ yaml-eslint-parser@1.3.0:
+ resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==}
engines: {node: ^14.17.0 || >=16.0.0}
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.1.1:
- resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==}
- engines: {node: '>= 14'}
+ yaml@2.8.0:
+ resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
- yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
-
yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
- yargs@17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
-
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -6043,8 +6009,6 @@ packages:
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
'@achrinza/node-ipc@9.2.5':
dependencies:
'@node-ipc/js-queue': 2.0.3
@@ -6053,129 +6017,152 @@ snapshots:
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@4.2.0(@typescript-eslint/utils@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@1.0.1(eslint@9.20.1(jiti@2.4.2)))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))':
- dependencies:
- '@antfu/install-pkg': 1.0.0
- '@clack/prompts': 0.10.0
- '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- '@eslint/markdown': 6.2.2
- '@stylistic/eslint-plugin': 4.0.0-beta.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/parser': 8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- '@vitest/eslint-plugin': 1.1.27(@typescript-eslint/utils@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))
- eslint: 9.20.1(jiti@2.4.2)
- eslint-config-flat-gitignore: 2.0.0(eslint@9.20.1(jiti@2.4.2))
- eslint-flat-config-utils: 2.0.1
- eslint-merge-processors: 2.0.0(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-antfu: 3.0.0(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-command: 3.0.0(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-import-x: 4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- eslint-plugin-jsdoc: 50.6.3(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-jsonc: 2.19.1(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-n: 17.15.1(eslint@9.20.1(jiti@2.4.2))
+ '@antfu/eslint-config@5.1.0(@vue/compiler-sfc@3.5.18)(eslint-plugin-format@1.0.1(eslint@9.32.0(jiti@2.5.1)))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))':
+ dependencies:
+ '@antfu/install-pkg': 1.1.0
+ '@clack/prompts': 0.11.0
+ '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.32.0(jiti@2.5.1))
+ '@eslint/markdown': 7.1.0
+ '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.5.1))
+ '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
+ ansis: 4.1.0
+ cac: 6.7.14
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-config-flat-gitignore: 2.1.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-flat-config-utils: 2.1.1
+ eslint-merge-processors: 2.0.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-antfu: 3.1.1(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-command: 3.3.1(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ eslint-plugin-jsdoc: 52.0.3(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-jsonc: 2.20.1(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-n: 17.21.3(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
eslint-plugin-no-only-tests: 3.3.0
- eslint-plugin-perfectionist: 4.8.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- eslint-plugin-regexp: 2.7.0(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-toml: 0.12.0(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-unicorn: 56.0.1(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-vue: 9.32.0(eslint@9.20.1(jiti@2.4.2))
- eslint-plugin-yml: 1.16.0(eslint@9.20.1(jiti@2.4.2))
- eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.20.1(jiti@2.4.2))
- globals: 15.14.0
+ eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ eslint-plugin-pnpm: 1.1.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-regexp: 2.9.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-toml: 0.12.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-unicorn: 60.0.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.5.1)))
+ eslint-plugin-yml: 1.18.0(eslint@9.32.0(jiti@2.5.1))
+ eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.18)(eslint@9.32.0(jiti@2.5.1))
+ globals: 16.3.0
jsonc-eslint-parser: 2.4.0
- local-pkg: 1.0.0
+ local-pkg: 1.1.1
parse-gitignore: 2.0.0
- picocolors: 1.1.1
toml-eslint-parser: 0.10.0
- vue-eslint-parser: 9.4.3(eslint@9.20.1(jiti@2.4.2))
- yaml-eslint-parser: 1.2.3
- yargs: 17.7.2
+ vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.5.1))
+ yaml-eslint-parser: 1.3.0
optionalDependencies:
- eslint-plugin-format: 1.0.1(eslint@9.20.1(jiti@2.4.2))
+ eslint-plugin-format: 1.0.1(eslint@9.32.0(jiti@2.5.1))
transitivePeerDependencies:
- '@eslint/json'
- - '@typescript-eslint/utils'
- '@vue/compiler-sfc'
- supports-color
- typescript
- vitest
- '@antfu/install-pkg@0.5.0':
- dependencies:
- package-manager-detector: 0.2.9
- tinyexec: 0.3.2
-
- '@antfu/install-pkg@1.0.0':
+ '@antfu/install-pkg@1.1.0':
dependencies:
- package-manager-detector: 0.2.9
- tinyexec: 0.3.2
+ package-manager-detector: 1.3.0
+ tinyexec: 1.0.1
'@antfu/utils@0.7.10': {}
'@antfu/utils@8.1.1': {}
- '@antfu/utils@9.0.0': {}
+ '@antfu/utils@9.2.0': {}
- '@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.9':
+ '@babel/core@7.27.7':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
- '@babel/helpers': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
convert-source-map: 2.0.0
- debug: 4.4.0
+ debug: 4.4.1
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.9':
+ '@babel/core@7.28.0':
dependencies:
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
- '@jridgewell/gen-mapping': 0.3.5
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.2
+ convert-source-map: 2.0.0
+ debug: 4.4.1
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/generator@7.27.5':
+ dependencies:
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.2
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.0.2
+ jsesc: 3.1.0
+
+ '@babel/generator@7.28.0':
+ dependencies:
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.2
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
+ jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.16.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
'@babel/helper-builder-binary-assignment-operator-visitor@7.16.7':
dependencies:
'@babel/helper-explode-assignable-expression': 7.16.7
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
- '@babel/helper-compilation-targets@7.26.5':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.2
+ '@babel/compat-data': 7.27.2
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.24.4
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.17.9(@babel/core@7.26.9)':
+ '@babel/helper-create-class-features-plugin@7.17.9(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
@@ -6186,66 +6173,77 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.17.0(@babel/core@7.26.9)':
+ '@babel/helper-create-regexp-features-plugin@7.17.0(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-annotate-as-pure': 7.16.7
regexpu-core: 5.0.1
- '@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.26.9)':
+ '@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-imports': 7.25.9
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.26.9
- debug: 4.4.0
+ '@babel/traverse': 7.27.7
+ debug: 4.4.1
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
'@babel/helper-explode-assignable-expression@7.16.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
'@babel/helper-function-name@7.24.7':
dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.2
+
+ '@babel/helper-globals@7.28.0': {}
'@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
'@babel/helper-member-expression-to-functions@7.17.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.9
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.16.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
'@babel/helper-plugin-utils@7.16.7': {}
@@ -6253,7 +6251,7 @@ snapshots:
dependencies:
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-wrap-function': 7.16.8
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
@@ -6262,289 +6260,293 @@ snapshots:
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.16.0':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
- '@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/helper-wrap-function@7.16.8':
dependencies:
'@babel/helper-function-name': 7.24.7
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.26.9':
+ '@babel/helpers@7.27.6':
+ dependencies:
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.2
+
+ '@babel/parser@7.27.7':
dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
- '@babel/parser@7.26.9':
+ '@babel/parser@7.28.0':
dependencies:
- '@babel/types': 7.26.9
+ '@babel/types': 7.28.2
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.26.9)
+ '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.27.7)
- '@babel/plugin-proposal-async-generator-functions@7.16.8(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-async-generator-functions@7.16.8(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-remap-async-to-generator': 7.16.8
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-static-block@7.17.6(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-class-static-block@7.17.6(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.17.9(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-decorators@7.17.9(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-replace-supers': 7.16.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.26.9)
+ '@babel/plugin-syntax-decorators': 7.17.0(@babel/core@7.27.7)
charcodes: 0.2.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-proposal-json-strings@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-json-strings@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-proposal-logical-assignment-operators@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-logical-assignment-operators@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.7)
- '@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.7)
- '@babel/plugin-proposal-object-rest-spread@7.17.3(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-object-rest-spread@7.17.3(@babel/core@7.27.7)':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/compat-data': 7.27.2
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.26.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.27.7)
- '@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-proposal-private-methods@7.16.11(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-private-methods@7.16.11(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-private-property-in-object@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.26.9)
+ '@babel/helper-create-class-features-plugin': 7.17.9(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-decorators@7.17.0(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-decorators@7.17.0(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-jsx@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-jsx@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.9)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-arrow-functions@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-arrow-functions@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-async-to-generator@7.16.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-async-to-generator@7.16.8(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-remap-async-to-generator': 7.16.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-block-scoping@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-block-scoping@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-classes@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-classes@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
@@ -6556,310 +6558,325 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-computed-properties@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-destructuring@7.17.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-destructuring@7.17.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-duplicate-keys@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-duplicate-keys@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-for-of@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-for-of@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-function-name@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-function-name@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-function-name': 7.24.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-literals@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-literals@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-modules-amd@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-amd@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.16.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-commonjs@7.16.8(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-simple-access': 7.24.7
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-systemjs@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-modules-umd@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.16.8(@babel/core@7.26.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.16.8(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.27.7)
- '@babel/plugin-transform-new-target@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-new-target@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-object-super@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-object-super@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-replace-supers': 7.16.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-parameters@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-regenerator@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-regenerator@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
regenerator-transform: 0.14.5
- '@babel/plugin-transform-reserved-words@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-reserved-words@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-runtime@7.17.0(@babel/core@7.26.9)':
+ '@babel/plugin-transform-runtime@7.17.0(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.16.7
- babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.26.9)
+ babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.27.7)
+ babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.27.7)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.27.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-spread@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-spread@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-template-literals@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-template-literals@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-typeof-symbol@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-typeof-symbol@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.26.9)':
+ '@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-regexp-features-plugin': 7.17.0(@babel/core@7.27.7)
'@babel/helper-plugin-utils': 7.16.7
- '@babel/preset-env@7.16.11(@babel/core@7.26.9)':
+ '@babel/preset-env@7.16.11(@babel/core@7.27.7)':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
+ '@babel/compat-data': 7.27.2
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-async-generator-functions': 7.16.8(@babel/core@7.26.9)
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-class-static-block': 7.17.6(@babel/core@7.26.9)
- '@babel/plugin-proposal-dynamic-import': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-export-namespace-from': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-json-strings': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-numeric-separator': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-object-rest-spread': 7.17.3(@babel/core@7.26.9)
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.26.9)
- '@babel/plugin-proposal-private-property-in-object': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9)
- '@babel/plugin-transform-arrow-functions': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-async-to-generator': 7.16.8(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoped-functions': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-block-scoping': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-classes': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-computed-properties': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-destructuring': 7.17.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-duplicate-keys': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-exponentiation-operator': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-for-of': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-function-name': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-literals': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-member-expression-literals': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-amd': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-commonjs': 7.16.8(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-systemjs': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-modules-umd': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8(@babel/core@7.26.9)
- '@babel/plugin-transform-new-target': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-property-literals': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-regenerator': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-reserved-words': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-shorthand-properties': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-spread': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-sticky-regex': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-template-literals': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-typeof-symbol': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-escapes': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-unicode-regex': 7.16.7(@babel/core@7.26.9)
- '@babel/preset-modules': 0.1.5(@babel/core@7.26.9)
- '@babel/types': 7.26.9
- babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.26.9)
- babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.26.9)
- babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.26.9)
- core-js-compat: 3.39.0
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-async-generator-functions': 7.16.8(@babel/core@7.27.7)
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-class-static-block': 7.17.6(@babel/core@7.27.7)
+ '@babel/plugin-proposal-dynamic-import': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-export-namespace-from': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-json-strings': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-numeric-separator': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-object-rest-spread': 7.17.3(@babel/core@7.27.7)
+ '@babel/plugin-proposal-optional-catch-binding': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.27.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-unicode-property-regex': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.7)
+ '@babel/plugin-transform-arrow-functions': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-async-to-generator': 7.16.8(@babel/core@7.27.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-block-scoping': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-classes': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-computed-properties': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-destructuring': 7.17.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-dotall-regex': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-duplicate-keys': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-for-of': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-function-name': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-literals': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-member-expression-literals': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-amd': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-commonjs': 7.16.8(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-systemjs': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-modules-umd': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8(@babel/core@7.27.7)
+ '@babel/plugin-transform-new-target': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-object-super': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-property-literals': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-regenerator': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-reserved-words': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-shorthand-properties': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-spread': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-sticky-regex': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-template-literals': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-typeof-symbol': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-unicode-escapes': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-unicode-regex': 7.16.7(@babel/core@7.27.7)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.27.7)
+ '@babel/types': 7.28.2
+ babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.27.7)
+ babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.27.7)
+ babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.27.7)
+ core-js-compat: 3.41.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.5(@babel/core@7.26.9)':
+ '@babel/preset-modules@0.1.5(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-dotall-regex': 7.16.7(@babel/core@7.26.9)
- '@babel/types': 7.26.9
+ '@babel/plugin-proposal-unicode-property-regex': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-dotall-regex': 7.16.7(@babel/core@7.27.7)
+ '@babel/types': 7.28.2
esutils: 2.0.3
'@babel/runtime@7.17.2':
dependencies:
regenerator-runtime: 0.13.9
- '@babel/standalone@7.26.4': {}
-
- '@babel/template@7.26.9':
+ '@babel/template@7.27.2':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.2
- '@babel/traverse@7.26.9':
+ '@babel/traverse@7.27.7':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/template': 7.26.9
- '@babel/types': 7.26.9
- debug: 4.4.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.2
+ debug: 4.4.1
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.9':
+ '@babel/traverse@7.28.0':
dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.2
+ debug: 4.4.1
+ transitivePeerDependencies:
+ - supports-color
- '@clack/core@0.4.1':
+ '@babel/types@7.27.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+
+ '@babel/types@7.28.2':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+
+ '@clack/core@0.5.0':
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@0.10.0':
+ '@clack/prompts@0.11.0':
dependencies:
- '@clack/core': 0.4.1
+ '@clack/core': 0.5.0
picocolors: 1.1.1
sisteransi: 1.0.5
- '@ctrl/tinycolor@3.4.1': {}
+ '@ctrl/tinycolor@3.6.1': {}
'@dprint/formatter@0.3.0': {}
@@ -6871,239 +6888,192 @@ snapshots:
dependencies:
vue: 3.2.45
- '@es-joy/jsdoccomment@0.49.0':
- dependencies:
- comment-parser: 1.4.1
- esquery: 1.6.0
- jsdoc-type-pratt-parser: 4.1.0
-
- '@es-joy/jsdoccomment@0.50.0':
+ '@emnapi/core@1.4.3':
dependencies:
- '@types/eslint': 9.6.1
- '@types/estree': 1.0.6
- '@typescript-eslint/types': 8.24.0
- comment-parser: 1.4.1
- esquery: 1.6.0
- jsdoc-type-pratt-parser: 4.1.0
-
- '@esbuild/aix-ppc64@0.23.0':
- optional: true
-
- '@esbuild/aix-ppc64@0.24.2':
- optional: true
-
- '@esbuild/android-arm64@0.23.0':
- optional: true
-
- '@esbuild/android-arm64@0.24.2':
- optional: true
-
- '@esbuild/android-arm@0.23.0':
- optional: true
-
- '@esbuild/android-arm@0.24.2':
- optional: true
-
- '@esbuild/android-x64@0.23.0':
- optional: true
-
- '@esbuild/android-x64@0.24.2':
- optional: true
-
- '@esbuild/darwin-arm64@0.23.0':
- optional: true
-
- '@esbuild/darwin-arm64@0.24.2':
- optional: true
-
- '@esbuild/darwin-x64@0.23.0':
- optional: true
-
- '@esbuild/darwin-x64@0.24.2':
- optional: true
-
- '@esbuild/freebsd-arm64@0.23.0':
- optional: true
-
- '@esbuild/freebsd-arm64@0.24.2':
- optional: true
-
- '@esbuild/freebsd-x64@0.23.0':
- optional: true
-
- '@esbuild/freebsd-x64@0.24.2':
- optional: true
-
- '@esbuild/linux-arm64@0.23.0':
- optional: true
-
- '@esbuild/linux-arm64@0.24.2':
- optional: true
-
- '@esbuild/linux-arm@0.23.0':
+ '@emnapi/wasi-threads': 1.0.2
+ tslib: 2.8.1
optional: true
- '@esbuild/linux-arm@0.24.2':
+ '@emnapi/runtime@1.4.3':
+ dependencies:
+ tslib: 2.8.1
optional: true
- '@esbuild/linux-ia32@0.23.0':
+ '@emnapi/wasi-threads@1.0.2':
+ dependencies:
+ tslib: 2.8.1
optional: true
- '@esbuild/linux-ia32@0.24.2':
- optional: true
+ '@epic-web/invariant@1.0.0': {}
- '@esbuild/linux-loong64@0.23.0':
- optional: true
+ '@es-joy/jsdoccomment@0.50.2':
+ dependencies:
+ '@types/estree': 1.0.8
+ '@typescript-eslint/types': 8.35.0
+ comment-parser: 1.4.1
+ esquery: 1.6.0
+ jsdoc-type-pratt-parser: 4.1.0
- '@esbuild/linux-loong64@0.24.2':
- optional: true
+ '@es-joy/jsdoccomment@0.52.0':
+ dependencies:
+ '@types/estree': 1.0.8
+ '@typescript-eslint/types': 8.35.0
+ comment-parser: 1.4.1
+ esquery: 1.6.0
+ jsdoc-type-pratt-parser: 4.1.0
- '@esbuild/linux-mips64el@0.23.0':
+ '@esbuild/aix-ppc64@0.25.0':
optional: true
- '@esbuild/linux-mips64el@0.24.2':
+ '@esbuild/android-arm64@0.25.0':
optional: true
- '@esbuild/linux-ppc64@0.23.0':
+ '@esbuild/android-arm@0.25.0':
optional: true
- '@esbuild/linux-ppc64@0.24.2':
+ '@esbuild/android-x64@0.25.0':
optional: true
- '@esbuild/linux-riscv64@0.23.0':
+ '@esbuild/darwin-arm64@0.25.0':
optional: true
- '@esbuild/linux-riscv64@0.24.2':
+ '@esbuild/darwin-x64@0.25.0':
optional: true
- '@esbuild/linux-s390x@0.23.0':
+ '@esbuild/freebsd-arm64@0.25.0':
optional: true
- '@esbuild/linux-s390x@0.24.2':
+ '@esbuild/freebsd-x64@0.25.0':
optional: true
- '@esbuild/linux-x64@0.23.0':
+ '@esbuild/linux-arm64@0.25.0':
optional: true
- '@esbuild/linux-x64@0.24.2':
+ '@esbuild/linux-arm@0.25.0':
optional: true
- '@esbuild/netbsd-arm64@0.24.2':
+ '@esbuild/linux-ia32@0.25.0':
optional: true
- '@esbuild/netbsd-x64@0.23.0':
+ '@esbuild/linux-loong64@0.25.0':
optional: true
- '@esbuild/netbsd-x64@0.24.2':
+ '@esbuild/linux-mips64el@0.25.0':
optional: true
- '@esbuild/openbsd-arm64@0.23.0':
+ '@esbuild/linux-ppc64@0.25.0':
optional: true
- '@esbuild/openbsd-arm64@0.24.2':
+ '@esbuild/linux-riscv64@0.25.0':
optional: true
- '@esbuild/openbsd-x64@0.23.0':
+ '@esbuild/linux-s390x@0.25.0':
optional: true
- '@esbuild/openbsd-x64@0.24.2':
+ '@esbuild/linux-x64@0.25.0':
optional: true
- '@esbuild/sunos-x64@0.23.0':
+ '@esbuild/netbsd-arm64@0.25.0':
optional: true
- '@esbuild/sunos-x64@0.24.2':
+ '@esbuild/netbsd-x64@0.25.0':
optional: true
- '@esbuild/win32-arm64@0.23.0':
+ '@esbuild/openbsd-arm64@0.25.0':
optional: true
- '@esbuild/win32-arm64@0.24.2':
+ '@esbuild/openbsd-x64@0.25.0':
optional: true
- '@esbuild/win32-ia32@0.23.0':
+ '@esbuild/sunos-x64@0.25.0':
optional: true
- '@esbuild/win32-ia32@0.24.2':
+ '@esbuild/win32-arm64@0.25.0':
optional: true
- '@esbuild/win32-x64@0.23.0':
+ '@esbuild/win32-ia32@0.25.0':
optional: true
- '@esbuild/win32-x64@0.24.2':
+ '@esbuild/win32-x64@0.25.0':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.20.1(jiti@2.4.2))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.32.0(jiti@2.5.1))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
ignore: 5.3.2
- '@eslint-community/eslint-utils@4.4.1(eslint@9.20.1(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.32.0(jiti@2.5.1))':
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.5(eslint@9.20.1(jiti@2.4.2))':
+ '@eslint/compat@1.2.7(eslint@9.32.0(jiti@2.5.1))':
optionalDependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
- '@eslint/config-array@0.19.0':
+ '@eslint/config-array@0.21.0':
dependencies:
- '@eslint/object-schema': 2.1.4
- debug: 4.4.0
+ '@eslint/object-schema': 2.1.6
+ debug: 4.4.1
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.10.0':
- dependencies:
- '@types/json-schema': 7.0.15
+ '@eslint/config-helpers@0.3.0': {}
- '@eslint/core@0.11.0':
+ '@eslint/core@0.15.1':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.2.0':
+ '@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.0
- espree: 10.3.0
+ debug: 4.4.1
+ espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.20.0': {}
+ '@eslint/js@9.32.0': {}
- '@eslint/markdown@6.2.2':
+ '@eslint/markdown@7.1.0':
dependencies:
- '@eslint/core': 0.10.0
- '@eslint/plugin-kit': 0.2.5
+ '@eslint/core': 0.15.1
+ '@eslint/plugin-kit': 0.3.4
+ github-slugger: 2.0.0
mdast-util-from-markdown: 2.0.2
- mdast-util-gfm: 3.0.0
+ mdast-util-frontmatter: 2.0.1
+ mdast-util-gfm: 3.1.0
+ micromark-extension-frontmatter: 2.0.0
micromark-extension-gfm: 3.0.0
transitivePeerDependencies:
- supports-color
- '@eslint/object-schema@2.1.4': {}
+ '@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.2.5':
+ '@eslint/plugin-kit@0.3.4':
dependencies:
- '@eslint/core': 0.10.0
+ '@eslint/core': 0.15.1
levn: 0.4.1
- '@floating-ui/core@1.0.1': {}
+ '@floating-ui/core@1.6.9':
+ dependencies:
+ '@floating-ui/utils': 0.2.9
- '@floating-ui/dom@1.0.1':
+ '@floating-ui/dom@1.6.13':
dependencies:
- '@floating-ui/core': 1.0.1
+ '@floating-ui/core': 1.6.9
+ '@floating-ui/utils': 0.2.9
+
+ '@floating-ui/utils@0.2.9': {}
'@hapi/hoek@9.2.1': {}
@@ -7116,15 +7086,15 @@ snapshots:
'@humanfs/node@0.16.6':
dependencies:
'@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.0
+ '@humanwhocodes/retry': 0.3.1
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/retry@0.3.0': {}
+ '@humanwhocodes/retry@0.3.1': {}
- '@humanwhocodes/retry@0.4.1': {}
+ '@humanwhocodes/retry@0.4.2': {}
- '@iconify/json@2.2.307':
+ '@iconify/json@2.2.366':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -7133,27 +7103,29 @@ 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
- globals: 15.14.0
+ debug: 4.4.1
+ globals: 15.15.0
kolorist: 1.8.0
- local-pkg: 1.0.0
+ local-pkg: 1.1.1
mlly: 1.7.4
transitivePeerDependencies:
- supports-color
- '@isaacs/cliui@8.0.2':
+ '@isaacs/balanced-match@4.0.1': {}
+
+ '@isaacs/brace-expansion@5.0.0':
dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.0.1
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@isaacs/balanced-match': 4.0.1
+
+ '@jridgewell/gen-mapping@0.3.12':
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.29
- '@jridgewell/gen-mapping@0.3.5':
+ '@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.5.0
@@ -7170,19 +7142,31 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.5.0
- '@mdit-vue/plugin-component@2.1.3':
+ '@jridgewell/trace-mapping@0.3.29':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ '@mdit-vue/plugin-component@2.1.4':
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- '@mdit-vue/plugin-frontmatter@2.1.3':
+ '@mdit-vue/plugin-frontmatter@2.1.4':
dependencies:
- '@mdit-vue/types': 2.1.0
+ '@mdit-vue/types': 2.1.4
'@types/markdown-it': 14.1.2
gray-matter: 4.0.3
markdown-it: 14.1.0
- '@mdit-vue/types@2.1.0': {}
+ '@mdit-vue/types@2.1.4': {}
+
+ '@napi-rs/wasm-runtime@0.2.10':
+ dependencies:
+ '@emnapi/core': 1.4.3
+ '@emnapi/runtime': 1.4.3
+ '@tybys/wasm-util': 0.9.0
+ optional: true
'@node-ipc/js-queue@2.0.3':
dependencies:
@@ -7198,111 +7182,163 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.13.0
+ fastq: 1.19.1
- '@nuxt/kit@3.15.4':
+ '@nuxt/kit@4.0.3':
dependencies:
- c12: 2.0.1
- consola: 3.4.0
+ c12: 3.2.0
+ consola: 3.4.2
defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- ignore: 7.0.3
- jiti: 2.4.2
+ destr: 2.0.5
+ errx: 0.1.0
+ exsolve: 1.0.7
+ ignore: 7.0.5
+ jiti: 2.5.1
klona: 2.0.6
- knitwork: 1.2.0
mlly: 1.7.4
- ohash: 1.1.4
+ ohash: 2.0.11
pathe: 2.0.3
- pkg-types: 1.3.1
+ pkg-types: 2.2.0
scule: 1.3.0
- semver: 7.7.1
- std-env: 3.8.0
- ufo: 1.5.4
+ semver: 7.7.2
+ std-env: 3.9.0
+ tinyglobby: 0.2.14
+ ufo: 1.6.1
unctx: 2.4.1
- unimport: 4.1.1
- untyped: 1.5.2
+ unimport: 5.2.0
+ untyped: 2.0.0
transitivePeerDependencies:
- magicast
- - supports-color
- '@nuxt/schema@3.15.4':
+ '@nuxt/schema@4.0.3':
dependencies:
- consola: 3.4.0
+ '@vue/shared': 3.5.18
+ consola: 3.4.2
defu: 6.1.4
pathe: 2.0.3
- std-env: 3.8.0
+ std-env: 3.9.0
+ ufo: 1.6.1
- '@pkgjs/parseargs@0.11.0':
- optional: true
+ '@oxc-project/runtime@0.71.0': {}
+
+ '@oxc-project/types@0.71.0': {}
'@pkgr/core@0.1.1': {}
'@polka/url@1.0.0-next.25': {}
- '@rollup/pluginutils@5.1.4(rollup@4.34.7)':
+ '@quansync/fs@0.1.3':
dependencies:
- '@types/estree': 1.0.6
+ quansync: 0.2.10
+
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-darwin-x64@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.9-commit.d91dfb5':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.10
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.9-commit.d91dfb5':
+ optional: true
+
+ '@rolldown/pluginutils@1.0.0-beta.29': {}
+
+ '@rolldown/pluginutils@1.0.0-beta.9-commit.d91dfb5': {}
+
+ '@rollup/pluginutils@5.1.4(rollup@4.46.2)':
+ dependencies:
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.34.7
+ rollup: 4.46.2
+
+ '@rollup/rollup-android-arm-eabi@4.46.2':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.34.7':
+ '@rollup/rollup-android-arm64@4.46.2':
optional: true
- '@rollup/rollup-android-arm64@4.34.7':
+ '@rollup/rollup-darwin-arm64@4.46.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.34.7':
+ '@rollup/rollup-darwin-x64@4.46.2':
optional: true
- '@rollup/rollup-darwin-x64@4.34.7':
+ '@rollup/rollup-freebsd-arm64@4.46.2':
optional: true
- '@rollup/rollup-freebsd-arm64@4.34.7':
+ '@rollup/rollup-freebsd-x64@4.46.2':
optional: true
- '@rollup/rollup-freebsd-x64@4.34.7':
+ '@rollup/rollup-linux-arm-gnueabihf@4.46.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.7':
+ '@rollup/rollup-linux-arm-musleabihf@4.46.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.7':
+ '@rollup/rollup-linux-arm64-gnu@4.46.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.7':
+ '@rollup/rollup-linux-arm64-musl@4.46.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.7':
+ '@rollup/rollup-linux-loongarch64-gnu@4.46.2':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.7':
+ '@rollup/rollup-linux-ppc64-gnu@4.46.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.7':
+ '@rollup/rollup-linux-riscv64-gnu@4.46.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.7':
+ '@rollup/rollup-linux-riscv64-musl@4.46.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.7':
+ '@rollup/rollup-linux-s390x-gnu@4.46.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.7':
+ '@rollup/rollup-linux-x64-gnu@4.46.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.34.7':
+ '@rollup/rollup-linux-x64-musl@4.46.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.7':
+ '@rollup/rollup-win32-arm64-msvc@4.46.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.7':
+ '@rollup/rollup-win32-ia32-msvc@4.46.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.7':
+ '@rollup/rollup-win32-x64-msvc@4.46.2':
optional: true
'@sideway/address@4.1.3':
@@ -7313,75 +7349,80 @@ snapshots:
'@sideway/pinpoint@2.0.0': {}
- '@sindresorhus/merge-streams@2.3.0': {}
-
- '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.70.0(esbuild@0.24.2))':
+ '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.70.0)':
dependencies:
chalk: 3.0.0
error-stack-parser: 2.0.7
string-width: 4.2.3
strip-ansi: 6.0.1
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
'@soda/get-current-script@1.0.2': {}
- '@stylistic/eslint-plugin@4.0.0-beta.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@stylistic/eslint-plugin@5.2.2(eslint@9.32.0(jiti@2.5.1))':
dependencies:
- '@typescript-eslint/utils': 8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.20.1(jiti@2.4.2)
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ '@typescript-eslint/types': 8.39.0
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
estraverse: 5.3.0
- picomatch: 4.0.2
- transitivePeerDependencies:
- - supports-color
- - typescript
+ picomatch: 4.0.3
'@sxzz/popperjs-es@2.11.7': {}
'@trysound/sax@0.2.0': {}
+ '@tybys/wasm-util@0.9.0':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/body-parser@1.19.2':
dependencies:
'@types/connect': 3.4.35
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/bonjour@3.5.10':
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
+
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
'@types/connect-history-api-fallback@1.3.5':
dependencies:
'@types/express-serve-static-core': 4.17.28
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/connect@3.4.35':
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/debug@4.1.12':
dependencies:
- '@types/ms': 0.7.31
+ '@types/ms': 2.1.0
- '@types/doctrine@0.0.9': {}
+ '@types/deep-eql@4.0.2': {}
'@types/eslint-scope@3.7.3':
dependencies:
'@types/eslint': 9.6.1
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
'@types/estree@0.0.51': {}
- '@types/estree@1.0.6': {}
+ '@types/estree@1.0.8': {}
'@types/express-serve-static-core@4.17.28':
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
@@ -7396,17 +7437,17 @@ snapshots:
'@types/http-proxy@1.17.8':
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/json-schema@7.0.15': {}
'@types/linkify-it@5.0.0': {}
- '@types/lodash-es@4.17.6':
+ '@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.14.182
+ '@types/lodash': 4.17.15
- '@types/lodash@4.14.182': {}
+ '@types/lodash@4.17.15': {}
'@types/markdown-it@14.1.2':
dependencies:
@@ -7421,15 +7462,17 @@ snapshots:
'@types/mime@1.3.2': {}
- '@types/minimatch@5.1.2': {}
+ '@types/minimatch@6.0.0':
+ dependencies:
+ minimatch: 10.0.3
'@types/minimist@1.2.2': {}
- '@types/ms@0.7.31': {}
+ '@types/ms@2.1.0': {}
- '@types/node@22.13.4':
+ '@types/node@24.2.0':
dependencies:
- undici-types: 6.20.0
+ undici-types: 7.10.0
'@types/normalize-package-data@2.4.1': {}
@@ -7448,223 +7491,259 @@ snapshots:
'@types/serve-static@1.13.10':
dependencies:
'@types/mime': 1.3.2
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/sockjs@0.3.33':
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
'@types/unist@3.0.3': {}
- '@types/web-bluetooth@0.0.15': {}
+ '@types/web-bluetooth@0.0.16': {}
'@types/webpack-env@1.16.3': {}
'@types/ws@8.5.2':
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
- '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/scope-manager': 8.23.0
- '@typescript-eslint/type-utils': 8.23.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/utils': 8.23.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.23.0
- eslint: 9.20.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.39.0
+ '@typescript-eslint/type-utils': 8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.39.0
+ eslint: 9.32.0(jiti@2.5.1)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.39.0
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.39.0
+ debug: 4.4.1
+ eslint: 9.32.0(jiti@2.5.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/project-service@8.35.0(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.35.0
+ debug: 4.4.1
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/project-service@8.39.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.24.0
- '@typescript-eslint/types': 8.24.0
- '@typescript-eslint/typescript-estree': 8.24.0(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.24.0
- debug: 4.4.0
- eslint: 9.20.1(jiti@2.4.2)
- typescript: 5.7.3
+ '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.39.0
+ debug: 4.4.1
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.23.0':
+ '@typescript-eslint/scope-manager@8.35.0':
+ dependencies:
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/visitor-keys': 8.35.0
+
+ '@typescript-eslint/scope-manager@8.39.0':
+ dependencies:
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/visitor-keys': 8.39.0
+
+ '@typescript-eslint/tsconfig-utils@8.35.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.23.0
- '@typescript-eslint/visitor-keys': 8.23.0
+ typescript: 5.8.3
- '@typescript-eslint/scope-manager@8.24.0':
+ '@typescript-eslint/tsconfig-utils@8.39.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.24.0
- '@typescript-eslint/visitor-keys': 8.24.0
+ typescript: 5.8.3
- '@typescript-eslint/type-utils@8.23.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/type-utils@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.7.3)
- '@typescript-eslint/utils': 8.23.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- debug: 4.4.0
- eslint: 9.20.1(jiti@2.4.2)
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ debug: 4.4.1
+ eslint: 9.32.0(jiti@2.5.1)
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.23.0': {}
+ '@typescript-eslint/types@8.35.0': {}
- '@typescript-eslint/types@8.24.0': {}
+ '@typescript-eslint/types@8.39.0': {}
- '@typescript-eslint/typescript-estree@8.23.0(typescript@5.7.3)':
+ '@typescript-eslint/typescript-estree@8.35.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.23.0
- '@typescript-eslint/visitor-keys': 8.23.0
- debug: 4.4.0
+ '@typescript-eslint/project-service': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.35.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/visitor-keys': 8.35.0
+ debug: 4.4.1
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ semver: 7.7.2
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.24.0(typescript@5.7.3)':
+ '@typescript-eslint/typescript-estree@8.39.0(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.24.0
- '@typescript-eslint/visitor-keys': 8.24.0
- debug: 4.4.0
+ '@typescript-eslint/project-service': 8.39.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/visitor-keys': 8.39.0
+ debug: 4.4.1
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ semver: 7.7.2
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.23.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/utils@8.35.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.23.0
- '@typescript-eslint/types': 8.23.0
- '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.7.3)
- eslint: 9.20.1(jiti@2.4.2)
- typescript: 5.7.3
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.35.0
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
+ eslint: 9.32.0(jiti@2.5.1)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/utils@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.24.0
- '@typescript-eslint/types': 8.24.0
- '@typescript-eslint/typescript-estree': 8.24.0(typescript@5.7.3)
- eslint: 9.20.1(jiti@2.4.2)
- typescript: 5.7.3
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.39.0
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.8.3)
+ eslint: 9.32.0(jiti@2.5.1)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.23.0':
+ '@typescript-eslint/visitor-keys@8.35.0':
dependencies:
- '@typescript-eslint/types': 8.23.0
- eslint-visitor-keys: 4.2.0
+ '@typescript-eslint/types': 8.35.0
+ eslint-visitor-keys: 4.2.1
- '@typescript-eslint/visitor-keys@8.24.0':
+ '@typescript-eslint/visitor-keys@8.39.0':
dependencies:
- '@typescript-eslint/types': 8.24.0
- eslint-visitor-keys: 4.2.0
+ '@typescript-eslint/types': 8.39.0
+ eslint-visitor-keys: 4.2.1
'@vant/popperjs@1.3.0': {}
- '@vant/use@1.6.0(vue@3.5.13(typescript@5.7.3))':
+ '@vant/use@1.6.0(vue@3.5.18(typescript@5.8.3))':
dependencies:
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.8.3)
- '@vitejs/plugin-vue2@2.3.3(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))(vue@2.7.16)':
+ '@vitejs/plugin-vue2@2.3.3(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))(vue@2.7.16)':
dependencies:
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
vue: 2.7.16
- '@vitejs/plugin-vue@5.2.1(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))(vue@3.5.13(typescript@5.7.3))':
+ '@vitejs/plugin-vue@6.0.1(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))(vue@3.5.18(typescript@5.8.3))':
dependencies:
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
- vue: 3.5.13(typescript@5.7.3)
+ '@rolldown/pluginutils': 1.0.0-beta.29
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
+ vue: 3.5.18(typescript@5.8.3)
- '@vitest/eslint-plugin@1.1.27(@typescript-eslint/utils@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))':
+ '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))':
dependencies:
- '@typescript-eslint/utils': 8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.20.1(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.35.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ eslint: 9.32.0(jiti@2.5.1)
optionalDependencies:
- typescript: 5.7.3
- vitest: 3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ typescript: 5.8.3
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
+ transitivePeerDependencies:
+ - supports-color
- '@vitest/expect@3.0.5':
+ '@vitest/expect@3.2.4':
dependencies:
- '@vitest/spy': 3.0.5
- '@vitest/utils': 3.0.5
- chai: 5.1.2
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.5(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))':
+ '@vitest/mocker@3.2.4(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))':
dependencies:
- '@vitest/spy': 3.0.5
+ '@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
- '@vitest/pretty-format@3.0.5':
+ '@vitest/pretty-format@3.2.4':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.0.5':
+ '@vitest/runner@3.2.4':
dependencies:
- '@vitest/utils': 3.0.5
+ '@vitest/utils': 3.2.4
pathe: 2.0.3
+ strip-literal: 3.0.0
- '@vitest/snapshot@3.0.5':
+ '@vitest/snapshot@3.2.4':
dependencies:
- '@vitest/pretty-format': 3.0.5
+ '@vitest/pretty-format': 3.2.4
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.0.5':
+ '@vitest/spy@3.2.4':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.3
- '@vitest/utils@3.0.5':
+ '@vitest/utils@3.2.4':
dependencies:
- '@vitest/pretty-format': 3.0.5
- loupe: 3.1.2
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.1.4
tinyrainbow: 2.0.0
- '@volar/language-core@2.4.11':
+ '@volar/language-core@2.4.22':
dependencies:
- '@volar/source-map': 2.4.11
+ '@volar/source-map': 2.4.22
- '@volar/source-map@2.4.11': {}
+ '@volar/source-map@2.4.22': {}
- '@volar/typescript@2.4.11':
+ '@volar/typescript@2.4.22':
dependencies:
- '@volar/language-core': 2.4.11
+ '@volar/language-core': 2.4.22
path-browserify: 1.0.1
- vscode-uri: 3.0.8
+ vscode-uri: 3.1.0
'@vue/babel-helper-vue-jsx-merge-props@1.2.1': {}
'@vue/babel-helper-vue-transform-on@1.0.2': {}
- '@vue/babel-plugin-jsx@1.1.1(@babel/core@7.26.9)':
+ '@vue/babel-plugin-jsx@1.1.1(@babel/core@7.27.7)':
dependencies:
- '@babel/helper-module-imports': 7.25.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
html-tags: 3.1.0
@@ -7673,11 +7752,11 @@ snapshots:
- '@babel/core'
- supports-color
- '@vue/babel-plugin-transform-vue-jsx@1.2.1(@babel/core@7.26.9)':
+ '@vue/babel-plugin-transform-vue-jsx@1.2.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
'@vue/babel-helper-vue-jsx-merge-props': 1.2.1
html-tags: 2.0.0
lodash.kebabcase: 4.1.1
@@ -7685,95 +7764,137 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vue/babel-preset-app@5.0.8(@babel/core@7.26.9)(core-js@3.40.0)(vue@3.5.13(typescript@5.7.3))':
- dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-imports': 7.25.9
- '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.26.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9)
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
- '@babel/plugin-transform-runtime': 7.17.0(@babel/core@7.26.9)
- '@babel/preset-env': 7.16.11(@babel/core@7.26.9)
+ '@vue/babel-preset-app@5.0.8(@babel/core@7.27.7)(core-js@3.45.0)(vue@2.7.16)':
+ dependencies:
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.27.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-runtime': 7.17.0(@babel/core@7.27.7)
+ '@babel/preset-env': 7.16.11(@babel/core@7.27.7)
'@babel/runtime': 7.17.2
- '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.26.9)
- '@vue/babel-preset-jsx': 1.2.4(@babel/core@7.26.9)
+ '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.27.7)
+ '@vue/babel-preset-jsx': 1.2.4(@babel/core@7.27.7)
babel-plugin-dynamic-import-node: 2.3.3
- core-js-compat: 3.39.0
- semver: 7.7.1
+ core-js-compat: 3.41.0
+ semver: 7.7.2
optionalDependencies:
- core-js: 3.40.0
- vue: 3.5.13(typescript@5.7.3)
+ core-js: 3.45.0
+ vue: 2.7.16
transitivePeerDependencies:
- supports-color
- '@vue/babel-preset-jsx@1.2.4(@babel/core@7.26.9)':
+ '@vue/babel-preset-app@5.0.8(@babel/core@7.27.7)(core-js@3.45.0)(vue@3.5.18(typescript@5.8.3))':
+ dependencies:
+ '@babel/core': 7.27.7
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-proposal-decorators': 7.17.9(@babel/core@7.27.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.7)
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
+ '@babel/plugin-transform-runtime': 7.17.0(@babel/core@7.27.7)
+ '@babel/preset-env': 7.16.11(@babel/core@7.27.7)
+ '@babel/runtime': 7.17.2
+ '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.27.7)
+ '@vue/babel-preset-jsx': 1.2.4(@babel/core@7.27.7)
+ babel-plugin-dynamic-import-node: 2.3.3
+ core-js-compat: 3.41.0
+ semver: 7.7.2
+ optionalDependencies:
+ core-js: 3.45.0
+ vue: 3.5.18(typescript@5.8.3)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vue/babel-preset-jsx@1.2.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@vue/babel-helper-vue-jsx-merge-props': 1.2.1
- '@vue/babel-plugin-transform-vue-jsx': 1.2.1(@babel/core@7.26.9)
- '@vue/babel-sugar-composition-api-inject-h': 1.2.1(@babel/core@7.26.9)
- '@vue/babel-sugar-composition-api-render-instance': 1.2.4(@babel/core@7.26.9)
- '@vue/babel-sugar-functional-vue': 1.2.2(@babel/core@7.26.9)
- '@vue/babel-sugar-inject-h': 1.2.2(@babel/core@7.26.9)
- '@vue/babel-sugar-v-model': 1.2.3(@babel/core@7.26.9)
- '@vue/babel-sugar-v-on': 1.2.3(@babel/core@7.26.9)
+ '@vue/babel-plugin-transform-vue-jsx': 1.2.1(@babel/core@7.27.7)
+ '@vue/babel-sugar-composition-api-inject-h': 1.2.1(@babel/core@7.27.7)
+ '@vue/babel-sugar-composition-api-render-instance': 1.2.4(@babel/core@7.27.7)
+ '@vue/babel-sugar-functional-vue': 1.2.2(@babel/core@7.27.7)
+ '@vue/babel-sugar-inject-h': 1.2.2(@babel/core@7.27.7)
+ '@vue/babel-sugar-v-model': 1.2.3(@babel/core@7.27.7)
+ '@vue/babel-sugar-v-on': 1.2.3(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@vue/babel-sugar-composition-api-inject-h@1.2.1(@babel/core@7.26.9)':
+ '@vue/babel-sugar-composition-api-inject-h@1.2.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
- '@vue/babel-sugar-composition-api-render-instance@1.2.4(@babel/core@7.26.9)':
+ '@vue/babel-sugar-composition-api-render-instance@1.2.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
- '@vue/babel-sugar-functional-vue@1.2.2(@babel/core@7.26.9)':
+ '@vue/babel-sugar-functional-vue@1.2.2(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
- '@vue/babel-sugar-inject-h@1.2.2(@babel/core@7.26.9)':
+ '@vue/babel-sugar-inject-h@1.2.2(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
- '@vue/babel-sugar-v-model@1.2.3(@babel/core@7.26.9)':
+ '@vue/babel-sugar-v-model@1.2.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
'@vue/babel-helper-vue-jsx-merge-props': 1.2.1
- '@vue/babel-plugin-transform-vue-jsx': 1.2.1(@babel/core@7.26.9)
+ '@vue/babel-plugin-transform-vue-jsx': 1.2.1(@babel/core@7.27.7)
camelcase: 5.3.1
html-tags: 2.0.0
svg-tags: 1.0.0
transitivePeerDependencies:
- supports-color
- '@vue/babel-sugar-v-on@1.2.3(@babel/core@7.26.9)':
+ '@vue/babel-sugar-v-on@1.2.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.9
- '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.26.9)
- '@vue/babel-plugin-transform-vue-jsx': 1.2.1(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.27.7)
+ '@vue/babel-plugin-transform-vue-jsx': 1.2.1(@babel/core@7.27.7)
camelcase: 5.3.1
transitivePeerDependencies:
- supports-color
'@vue/cli-overlay@5.0.8': {}
- '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.40.0)(esbuild@0.24.2)(vue@3.5.13(typescript@5.7.3))':
+ '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.45.0)(vue@2.7.16)':
+ dependencies:
+ '@babel/core': 7.27.7
+ '@vue/babel-preset-app': 5.0.8(@babel/core@7.27.7)(core-js@3.45.0)(vue@2.7.16)
+ '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
+ '@vue/cli-shared-utils': 5.0.8
+ babel-loader: 8.2.3(@babel/core@7.27.7)(webpack@5.70.0)
+ thread-loader: 3.0.4(webpack@5.70.0)
+ webpack: 5.70.0
+ transitivePeerDependencies:
+ - '@swc/core'
+ - core-js
+ - encoding
+ - esbuild
+ - supports-color
+ - uglify-js
+ - vue
+ - webpack-cli
+
+ '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))(core-js@3.45.0)(vue@3.5.18(typescript@5.8.3))':
dependencies:
- '@babel/core': 7.26.9
- '@vue/babel-preset-app': 5.0.8(@babel/core@7.26.9)(core-js@3.40.0)(vue@3.5.13(typescript@5.7.3))
- '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)
+ '@babel/core': 7.27.7
+ '@vue/babel-preset-app': 5.0.8(@babel/core@7.27.7)(core-js@3.45.0)(vue@3.5.18(typescript@5.8.3))
+ '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
'@vue/cli-shared-utils': 5.0.8
- babel-loader: 8.2.3(@babel/core@7.26.9)(webpack@5.70.0(esbuild@0.24.2))
- thread-loader: 3.0.4(webpack@5.70.0(esbuild@0.24.2))
- webpack: 5.70.0(esbuild@0.24.2)
+ babel-loader: 8.2.3(@babel/core@7.27.7)(webpack@5.70.0)
+ thread-loader: 3.0.4(webpack@5.70.0)
+ webpack: 5.70.0
transitivePeerDependencies:
- '@swc/core'
- core-js
@@ -7784,27 +7905,27 @@ snapshots:
- vue
- webpack-cli
- '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))':
+ '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))':
dependencies:
- '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)
+ '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
'@vue/cli-shared-utils': 5.0.8
transitivePeerDependencies:
- encoding
- '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))(esbuild@0.24.2)(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))':
+ '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(vue@2.7.16)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
'@types/webpack-env': 1.16.3
- '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)
+ '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
'@vue/cli-shared-utils': 5.0.8
- babel-loader: 8.2.3(@babel/core@7.26.9)(webpack@5.70.0(esbuild@0.24.2))
- fork-ts-checker-webpack-plugin: 6.5.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(webpack@5.70.0(esbuild@0.24.2))
+ babel-loader: 8.2.3(@babel/core@7.27.7)(webpack@5.70.0)
+ fork-ts-checker-webpack-plugin: 6.5.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(webpack@5.70.0)
globby: 11.1.0
- thread-loader: 3.0.4(webpack@5.70.0(esbuild@0.24.2))
- ts-loader: 9.2.8(typescript@5.7.3)(webpack@5.70.0(esbuild@0.24.2))
- typescript: 5.7.3
- vue: 3.5.13(typescript@5.7.3)
- webpack: 5.70.0(esbuild@0.24.2)
+ thread-loader: 3.0.4(webpack@5.70.0)
+ ts-loader: 9.2.8(typescript@5.8.3)(webpack@5.70.0)
+ typescript: 5.8.3
+ vue: 2.7.16
+ webpack: 5.70.0
transitivePeerDependencies:
- '@swc/core'
- encoding
@@ -7814,64 +7935,64 @@ snapshots:
- uglify-js
- webpack-cli
- '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))':
+ '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))':
dependencies:
- '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)
+ '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)
- '@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3)':
+ '@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3)':
dependencies:
- '@babel/helper-compilation-targets': 7.26.5
- '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.70.0(esbuild@0.24.2))
+ '@babel/helper-compilation-targets': 7.27.2
+ '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.70.0)
'@soda/get-current-script': 1.0.2
'@types/minimist': 1.2.2
'@vue/cli-overlay': 5.0.8
- '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))
- '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.13)(esbuild@0.24.2)(lodash@4.17.21)(webpack-sources@3.2.3))
+ '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))
+ '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.5.18)(lodash@4.17.21)(webpack-sources@3.2.3))
'@vue/cli-shared-utils': 5.0.8
'@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)
- '@vue/vue-loader-v15': vue-loader@15.9.8(@vue/compiler-sfc@3.5.13)(css-loader@6.7.1(webpack@5.70.0(esbuild@0.24.2)))(lodash@4.17.21)(webpack@5.70.0(esbuild@0.24.2))
+ '@vue/vue-loader-v15': vue-loader@15.11.1(@vue/compiler-sfc@3.5.18)(css-loader@6.7.1(webpack@5.70.0))(lodash@4.17.21)(webpack@5.70.0)
'@vue/web-component-wrapper': 1.3.0
- acorn: 8.14.0
+ acorn: 8.15.0
acorn-walk: 8.3.2
address: 1.1.2
- autoprefixer: 10.4.2(postcss@8.5.2)
- browserslist: 4.24.2
+ autoprefixer: 10.4.2(postcss@8.5.6)
+ browserslist: 4.24.4
case-sensitive-paths-webpack-plugin: 2.4.0
cli-highlight: 2.1.11
clipboardy: 2.3.0
cliui: 7.0.4
- copy-webpack-plugin: 9.1.0(webpack@5.70.0(esbuild@0.24.2))
- css-loader: 6.7.1(webpack@5.70.0(esbuild@0.24.2))
- css-minimizer-webpack-plugin: 3.4.1(esbuild@0.24.2)(webpack@5.70.0(esbuild@0.24.2))
- cssnano: 5.1.2(postcss@8.5.2)
- debug: 4.4.0
+ copy-webpack-plugin: 9.1.0(webpack@5.70.0)
+ css-loader: 6.7.1(webpack@5.70.0)
+ css-minimizer-webpack-plugin: 3.4.1(webpack@5.70.0)
+ cssnano: 5.1.2(postcss@8.5.6)
+ debug: 4.4.1
default-gateway: 6.0.3
dotenv: 10.0.0
dotenv-expand: 5.1.0
fs-extra: 9.1.0
globby: 11.1.0
hash-sum: 2.0.0
- html-webpack-plugin: 5.5.0(webpack@5.70.0(esbuild@0.24.2))
+ html-webpack-plugin: 5.5.0(webpack@5.70.0)
is-file-esm: 1.0.0
launch-editor-middleware: 2.3.0
lodash.defaultsdeep: 4.6.1
lodash.mapvalues: 4.6.0
- mini-css-extract-plugin: 2.6.0(webpack@5.70.0(esbuild@0.24.2))
+ mini-css-extract-plugin: 2.6.0(webpack@5.70.0)
minimist: 1.2.6
module-alias: 2.2.2
portfinder: 1.0.28
- postcss: 8.5.2
- postcss-loader: 6.2.1(postcss@8.5.2)(webpack@5.70.0(esbuild@0.24.2))
- progress-webpack-plugin: 1.0.12(webpack@5.70.0(esbuild@0.24.2))
+ postcss: 8.5.6
+ postcss-loader: 6.2.1(postcss@8.5.6)(webpack@5.70.0)
+ progress-webpack-plugin: 1.0.12(webpack@5.70.0)
ssri: 8.0.1
- terser-webpack-plugin: 5.3.1(esbuild@0.24.2)(webpack@5.70.0(esbuild@0.24.2))
- thread-loader: 3.0.4(webpack@5.70.0(esbuild@0.24.2))
- vue-loader: 17.0.0(webpack@5.70.0(esbuild@0.24.2))
+ terser-webpack-plugin: 5.3.1(webpack@5.70.0)
+ thread-loader: 3.0.4(webpack@5.70.0)
+ vue-loader: 17.0.0(webpack@5.70.0)
vue-style-loader: 4.1.3
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
webpack-bundle-analyzer: 4.5.0
webpack-chain: 6.5.1
- webpack-dev-server: 4.7.4(debug@4.4.0)(webpack@5.70.0(esbuild@0.24.2))
+ webpack-dev-server: 4.7.4(debug@4.4.1)(webpack@5.70.0)
webpack-merge: 5.8.0
webpack-virtual-modules: 0.4.4
whatwg-fetch: 3.6.2
@@ -7916,6 +8037,7 @@ snapshots:
- mustache
- nunjucks
- plates
+ - prettier
- pug
- qejs
- ractive
@@ -7956,29 +8078,37 @@ snapshots:
open: 8.4.0
ora: 5.4.1
read-pkg: 5.2.0
- semver: 7.7.1
+ semver: 7.7.2
strip-ansi: 6.0.1
transitivePeerDependencies:
- encoding
'@vue/compiler-core@3.2.45':
dependencies:
- '@babel/parser': 7.26.9
+ '@babel/parser': 7.28.0
'@vue/shared': 3.2.45
estree-walker: 2.0.2
source-map: 0.6.1
'@vue/compiler-core@3.3.4':
dependencies:
- '@babel/parser': 7.26.9
+ '@babel/parser': 7.28.0
'@vue/shared': 3.3.4
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-core@3.5.13':
+ '@vue/compiler-core@3.5.17':
+ dependencies:
+ '@babel/parser': 7.28.0
+ '@vue/shared': 3.5.17
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
+ '@vue/compiler-core@3.5.18':
dependencies:
- '@babel/parser': 7.26.9
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.28.0
+ '@vue/shared': 3.5.18
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
@@ -7988,22 +8118,27 @@ snapshots:
'@vue/compiler-core': 3.2.45
'@vue/shared': 3.2.45
- '@vue/compiler-dom@3.5.13':
+ '@vue/compiler-dom@3.5.17':
+ dependencies:
+ '@vue/compiler-core': 3.5.17
+ '@vue/shared': 3.5.17
+
+ '@vue/compiler-dom@3.5.18':
dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-core': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/compiler-sfc@2.7.16':
dependencies:
- '@babel/parser': 7.26.9
- postcss: 8.5.2
+ '@babel/parser': 7.28.0
+ postcss: 8.5.6
source-map: 0.6.1
optionalDependencies:
prettier: 2.8.8
'@vue/compiler-sfc@3.2.45':
dependencies:
- '@babel/parser': 7.26.9
+ '@babel/parser': 7.28.0
'@vue/compiler-core': 3.2.45
'@vue/compiler-dom': 3.2.45
'@vue/compiler-ssr': 3.2.45
@@ -8011,19 +8146,19 @@ snapshots:
'@vue/shared': 3.2.45
estree-walker: 2.0.2
magic-string: 0.25.9
- postcss: 8.5.2
+ postcss: 8.5.6
source-map: 0.6.1
- '@vue/compiler-sfc@3.5.13':
+ '@vue/compiler-sfc@3.5.18':
dependencies:
- '@babel/parser': 7.26.9
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.28.0
+ '@vue/compiler-core': 3.5.18
+ '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-ssr': 3.5.18
+ '@vue/shared': 3.5.18
estree-walker: 2.0.2
magic-string: 0.30.17
- postcss: 8.5.2
+ postcss: 8.5.6
source-map-js: 1.2.1
'@vue/compiler-ssr@3.2.45':
@@ -8031,10 +8166,10 @@ snapshots:
'@vue/compiler-dom': 3.2.45
'@vue/shared': 3.2.45
- '@vue/compiler-ssr@3.5.13':
+ '@vue/compiler-ssr@3.5.18':
dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-dom': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -8048,7 +8183,7 @@ snapshots:
lru-cache: 4.1.5
merge-source-map: 1.1.0
postcss: 7.0.39
- postcss-selector-parser: 6.0.16
+ postcss-selector-parser: 6.1.2
source-map: 0.6.1
vue-template-es2015-compiler: 1.9.1
optionalDependencies:
@@ -8108,33 +8243,33 @@ snapshots:
- walrus
- whiskers
+ '@vue/composition-api@1.7.2(vue@2.7.16)':
+ dependencies:
+ vue: 2.7.16
+
'@vue/composition-api@1.7.2(vue@3.2.45)':
dependencies:
vue: 3.2.45
optional: true
- '@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3))':
- dependencies:
- vue: 3.5.13(typescript@5.7.3)
-
'@vue/devtools-api@6.6.4': {}
- '@vue/language-core@2.2.0(typescript@5.7.3)':
+ '@vue/language-core@3.0.5(typescript@5.8.3)':
dependencies:
- '@volar/language-core': 2.4.11
- '@vue/compiler-dom': 3.5.13
+ '@volar/language-core': 2.4.22
+ '@vue/compiler-dom': 3.5.17
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.13
- alien-signals: 0.4.12
- minimatch: 9.0.5
+ '@vue/shared': 3.5.17
+ alien-signals: 2.0.6
muggle-string: 0.4.1
path-browserify: 1.0.1
+ picomatch: 4.0.2
optionalDependencies:
- typescript: 5.7.3
+ typescript: 5.8.3
'@vue/reactivity-transform@3.2.45':
dependencies:
- '@babel/parser': 7.26.9
+ '@babel/parser': 7.28.0
'@vue/compiler-core': 3.2.45
'@vue/shared': 3.2.45
estree-walker: 2.0.2
@@ -8142,7 +8277,7 @@ snapshots:
'@vue/reactivity-transform@3.3.4':
dependencies:
- '@babel/parser': 7.26.9
+ '@babel/parser': 7.28.0
'@vue/compiler-core': 3.3.4
'@vue/shared': 3.3.4
estree-walker: 2.0.2
@@ -8152,31 +8287,31 @@ snapshots:
dependencies:
'@vue/shared': 3.2.45
- '@vue/reactivity@3.5.13':
+ '@vue/reactivity@3.5.18':
dependencies:
- '@vue/shared': 3.5.13
+ '@vue/shared': 3.5.18
'@vue/runtime-core@3.2.45':
dependencies:
'@vue/reactivity': 3.2.45
'@vue/shared': 3.2.45
- '@vue/runtime-core@3.5.13':
+ '@vue/runtime-core@3.5.18':
dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/reactivity': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/runtime-dom@3.2.45':
dependencies:
'@vue/runtime-core': 3.2.45
'@vue/shared': 3.2.45
- csstype: 2.6.20
+ csstype: 2.6.21
- '@vue/runtime-dom@3.5.13':
+ '@vue/runtime-dom@3.5.18':
dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/runtime-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/reactivity': 3.5.18
+ '@vue/runtime-core': 3.5.18
+ '@vue/shared': 3.5.18
csstype: 3.1.3
'@vue/server-renderer@3.2.45(vue@3.2.45)':
@@ -8185,35 +8320,37 @@ snapshots:
'@vue/shared': 3.2.45
vue: 3.2.45
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.3))':
+ '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.8.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.7.3)
+ '@vue/compiler-ssr': 3.5.18
+ '@vue/shared': 3.5.18
+ vue: 3.5.18(typescript@5.8.3)
'@vue/shared@3.2.45': {}
'@vue/shared@3.3.4': {}
- '@vue/shared@3.5.13': {}
+ '@vue/shared@3.5.17': {}
+
+ '@vue/shared@3.5.18': {}
'@vue/web-component-wrapper@1.3.0': {}
- '@vueuse/core@9.2.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)':
+ '@vueuse/core@9.13.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)':
dependencies:
- '@types/web-bluetooth': 0.0.15
- '@vueuse/metadata': 9.2.0
- '@vueuse/shared': 9.2.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
- vue-demi: 0.12.1(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
+ '@types/web-bluetooth': 0.0.16
+ '@vueuse/metadata': 9.13.0
+ '@vueuse/shared': 9.13.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
+ vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/metadata@9.2.0': {}
+ '@vueuse/metadata@9.13.0': {}
- '@vueuse/shared@9.2.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)':
+ '@vueuse/shared@9.13.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)':
dependencies:
- vue-demi: 0.12.1(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
+ vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -8303,17 +8440,17 @@ snapshots:
mime-types: 2.1.34
negotiator: 0.6.3
- acorn-import-assertions@1.8.0(acorn@8.14.0):
+ acorn-import-assertions@1.8.0(acorn@8.15.0):
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
- acorn-jsx@5.3.2(acorn@8.14.0):
+ acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
acorn-walk@8.3.2: {}
- acorn@8.14.0: {}
+ acorn@8.15.0: {}
address@1.1.2: {}
@@ -8349,7 +8486,7 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- alien-signals@0.4.12: {}
+ alien-signals@2.0.6: {}
ansi-escapes@3.2.0: {}
@@ -8369,9 +8506,7 @@ snapshots:
dependencies:
color-convert: 2.0.1
- ansi-styles@6.2.1: {}
-
- ansis@3.14.0: {}
+ ansis@4.1.0: {}
any-promise@1.3.0: {}
@@ -8400,6 +8535,11 @@ snapshots:
assertion-error@2.0.1: {}
+ ast-kit@2.1.1:
+ dependencies:
+ '@babel/parser': 7.28.0
+ pathe: 2.0.3
+
async-validator@4.2.5: {}
async@2.6.3:
@@ -8408,50 +8548,50 @@ snapshots:
at-least-node@1.0.0: {}
- autoprefixer@10.4.2(postcss@8.5.2):
+ autoprefixer@10.4.2(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
- caniuse-lite: 1.0.30001680
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001701
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- babel-loader@8.2.3(@babel/core@7.26.9)(webpack@5.70.0(esbuild@0.24.2)):
+ babel-loader@8.2.3(@babel/core@7.27.7)(webpack@5.70.0):
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.27.7
find-cache-dir: 3.3.2
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
babel-plugin-dynamic-import-node@2.3.3:
dependencies:
object.assign: 4.1.4
- babel-plugin-polyfill-corejs2@0.3.1(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs2@0.3.1(@babel/core@7.27.7):
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.26.9)
+ '@babel/compat-data': 7.27.2
+ '@babel/core': 7.27.7
+ '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.27.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.26.9):
+ babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.26.9)
- core-js-compat: 3.39.0
+ '@babel/core': 7.27.7
+ '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.27.7)
+ core-js-compat: 3.41.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.26.9):
+ babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.27.7):
dependencies:
- '@babel/core': 7.26.9
- '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.26.9)
+ '@babel/core': 7.27.7
+ '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
@@ -8465,6 +8605,10 @@ snapshots:
binary-extensions@2.2.0: {}
+ birpc@2.4.0: {}
+
+ birpc@2.5.0: {}
+
bl@4.1.0:
dependencies:
buffer: 5.7.1
@@ -8512,12 +8656,19 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.24.2:
+ browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001680
- electron-to-chromium: 1.5.63
- node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.24.2)
+ caniuse-lite: 1.0.30001701
+ electron-to-chromium: 1.5.107
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.24.4)
+
+ browserslist@4.25.1:
+ dependencies:
+ caniuse-lite: 1.0.30001731
+ electron-to-chromium: 1.5.196
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.25.1)
buffer-from@1.1.2: {}
@@ -8528,21 +8679,21 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@3.3.0: {}
+ builtin-modules@5.0.0: {}
- bumpp@10.0.3:
+ bumpp@10.2.2:
dependencies:
+ ansis: 4.1.0
args-tokenizer: 0.3.0
- c12: 2.0.1
+ c12: 3.2.0
cac: 6.7.14
escalade: 3.2.0
- js-yaml: 4.1.0
jsonc-parser: 3.3.1
- package-manager-detector: 0.2.9
- prompts: 2.4.2
- semver: 7.7.1
- tinyexec: 0.3.2
- tinyglobby: 0.2.10
+ package-manager-detector: 1.3.0
+ semver: 7.7.2
+ tinyexec: 1.0.1
+ tinyglobby: 0.2.14
+ yaml: 2.8.0
transitivePeerDependencies:
- magicast
@@ -8550,35 +8701,30 @@ snapshots:
dependencies:
run-applescript: 7.0.0
- bundle-require@5.0.0(esbuild@0.24.2):
- dependencies:
- esbuild: 0.24.2
- load-tsconfig: 0.2.3
-
bytes@3.0.0: {}
bytes@3.1.2: {}
- c12@2.0.1:
+ c12@3.2.0:
dependencies:
- chokidar: 4.0.1
- confbox: 0.1.8
+ chokidar: 4.0.3
+ confbox: 0.2.2
defu: 6.1.4
- dotenv: 16.4.5
- giget: 1.2.3
- jiti: 2.4.2
- mlly: 1.7.4
- ohash: 1.1.4
- pathe: 1.1.2
+ dotenv: 17.2.1
+ exsolve: 1.0.7
+ giget: 2.0.0
+ jiti: 2.5.1
+ ohash: 2.0.11
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
+ pkg-types: 2.2.0
rc9: 2.1.2
cac@6.7.14: {}
call-bind@1.0.2:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
get-intrinsic: 1.2.0
callsites@3.1.0: {}
@@ -8586,7 +8732,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.3
+ tslib: 2.8.1
camelcase@5.3.1: {}
@@ -8594,23 +8740,25 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.24.2
- caniuse-lite: 1.0.30001680
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001701
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001680: {}
+ caniuse-lite@1.0.30001701: {}
+
+ caniuse-lite@1.0.30001731: {}
case-sensitive-paths-webpack-plugin@2.4.0: {}
ccount@2.0.1: {}
- chai@5.1.2:
+ chai@5.2.0:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.2
+ loupe: 3.1.4
pathval: 2.0.0
chalk@2.4.2:
@@ -8629,6 +8777,8 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ change-case@5.4.4: {}
+
character-entities@2.0.2: {}
charcodes@0.2.0: {}
@@ -8647,19 +8797,17 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chokidar@4.0.1:
+ chokidar@4.0.3:
dependencies:
- readdirp: 4.0.2
-
- chownr@2.0.0: {}
+ readdirp: 4.1.2
chrome-trace-event@1.0.3: {}
- ci-info@4.0.0: {}
+ ci-info@4.3.0: {}
citty@0.1.6:
dependencies:
- consola: 3.4.0
+ consola: 3.4.2
clean-css@5.2.4:
dependencies:
@@ -8702,12 +8850,6 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- cliui@8.0.1:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
-
clone-deep@4.0.1:
dependencies:
is-plain-object: 2.0.4
@@ -8734,8 +8876,6 @@ snapshots:
commander@2.20.3: {}
- commander@4.1.1: {}
-
commander@7.2.0: {}
commander@8.3.0: {}
@@ -8766,9 +8906,11 @@ snapshots:
confbox@0.1.8: {}
+ confbox@0.2.2: {}
+
connect-history-api-fallback@1.6.0: {}
- consola@3.4.0: {}
+ consola@3.4.2: {}
consolidate@0.15.1(lodash@4.17.21):
dependencies:
@@ -8788,7 +8930,7 @@ snapshots:
cookie@0.4.2: {}
- copy-webpack-plugin@9.1.0(webpack@5.70.0(esbuild@0.24.2)):
+ copy-webpack-plugin@9.1.0(webpack@5.70.0):
dependencies:
fast-glob: 3.3.3
glob-parent: 6.0.2
@@ -8796,20 +8938,24 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 3.1.1
serialize-javascript: 6.0.0
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
+
+ core-js-compat@3.41.0:
+ dependencies:
+ browserslist: 4.24.4
- core-js-compat@3.39.0:
+ core-js-compat@3.45.0:
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.25.1
- core-js@3.40.0: {}
+ core-js@3.45.0: {}
core-util-is@1.0.3: {}
cosmiconfig@6.0.0:
dependencies:
'@types/parse-json': 4.0.0
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
@@ -8817,13 +8963,14 @@ snapshots:
cosmiconfig@7.0.1:
dependencies:
'@types/parse-json': 4.0.0
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
- cross-env@7.0.3:
+ cross-env@10.0.0:
dependencies:
+ '@epic-web/invariant': 1.0.0
cross-spawn: 7.0.6
cross-spawn@6.0.5:
@@ -8840,34 +8987,32 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- css-declaration-sorter@6.1.4(postcss@8.5.2):
+ css-declaration-sorter@6.1.4(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
timsort: 0.3.0
- css-loader@6.7.1(webpack@5.70.0(esbuild@0.24.2)):
+ css-loader@6.7.1(webpack@5.70.0):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.2)
- postcss: 8.5.2
- postcss-modules-extract-imports: 3.0.0(postcss@8.5.2)
- postcss-modules-local-by-default: 4.0.0(postcss@8.5.2)
- postcss-modules-scope: 3.0.0(postcss@8.5.2)
- postcss-modules-values: 4.0.0(postcss@8.5.2)
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-modules-extract-imports: 3.0.0(postcss@8.5.6)
+ postcss-modules-local-by-default: 4.0.0(postcss@8.5.6)
+ postcss-modules-scope: 3.0.0(postcss@8.5.6)
+ postcss-modules-values: 4.0.0(postcss@8.5.6)
postcss-value-parser: 4.2.0
- semver: 7.7.1
- webpack: 5.70.0(esbuild@0.24.2)
+ semver: 7.7.2
+ webpack: 5.70.0
- css-minimizer-webpack-plugin@3.4.1(esbuild@0.24.2)(webpack@5.70.0(esbuild@0.24.2)):
+ css-minimizer-webpack-plugin@3.4.1(webpack@5.70.0):
dependencies:
- cssnano: 5.1.2(postcss@8.5.2)
+ cssnano: 5.1.2(postcss@8.5.6)
jest-worker: 27.5.1
- postcss: 8.5.2
+ postcss: 8.5.6
schema-utils: 4.0.0
serialize-javascript: 6.0.0
source-map: 0.6.1
- webpack: 5.70.0(esbuild@0.24.2)
- optionalDependencies:
- esbuild: 0.24.2
+ webpack: 5.70.0
css-select@4.2.1:
dependencies:
@@ -8886,55 +9031,55 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@5.2.2(postcss@8.5.2):
- dependencies:
- css-declaration-sorter: 6.1.4(postcss@8.5.2)
- cssnano-utils: 3.1.0(postcss@8.5.2)
- postcss: 8.5.2
- postcss-calc: 8.2.4(postcss@8.5.2)
- postcss-colormin: 5.3.0(postcss@8.5.2)
- postcss-convert-values: 5.1.0(postcss@8.5.2)
- postcss-discard-comments: 5.1.1(postcss@8.5.2)
- postcss-discard-duplicates: 5.1.0(postcss@8.5.2)
- postcss-discard-empty: 5.1.1(postcss@8.5.2)
- postcss-discard-overridden: 5.1.0(postcss@8.5.2)
- postcss-merge-longhand: 5.1.0(postcss@8.5.2)
- postcss-merge-rules: 5.1.0(postcss@8.5.2)
- postcss-minify-font-values: 5.1.0(postcss@8.5.2)
- postcss-minify-gradients: 5.1.0(postcss@8.5.2)
- postcss-minify-params: 5.1.1(postcss@8.5.2)
- postcss-minify-selectors: 5.2.0(postcss@8.5.2)
- postcss-normalize-charset: 5.1.0(postcss@8.5.2)
- postcss-normalize-display-values: 5.1.0(postcss@8.5.2)
- postcss-normalize-positions: 5.1.0(postcss@8.5.2)
- postcss-normalize-repeat-style: 5.1.0(postcss@8.5.2)
- postcss-normalize-string: 5.1.0(postcss@8.5.2)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.5.2)
- postcss-normalize-unicode: 5.1.0(postcss@8.5.2)
- postcss-normalize-url: 5.1.0(postcss@8.5.2)
- postcss-normalize-whitespace: 5.1.1(postcss@8.5.2)
- postcss-ordered-values: 5.1.0(postcss@8.5.2)
- postcss-reduce-initial: 5.1.0(postcss@8.5.2)
- postcss-reduce-transforms: 5.1.0(postcss@8.5.2)
- postcss-svgo: 5.1.0(postcss@8.5.2)
- postcss-unique-selectors: 5.1.1(postcss@8.5.2)
-
- cssnano-utils@3.1.0(postcss@8.5.2):
- dependencies:
- postcss: 8.5.2
-
- cssnano@5.1.2(postcss@8.5.2):
- dependencies:
- cssnano-preset-default: 5.2.2(postcss@8.5.2)
+ cssnano-preset-default@5.2.2(postcss@8.5.6):
+ dependencies:
+ css-declaration-sorter: 6.1.4(postcss@8.5.6)
+ cssnano-utils: 3.1.0(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-calc: 8.2.4(postcss@8.5.6)
+ postcss-colormin: 5.3.0(postcss@8.5.6)
+ postcss-convert-values: 5.1.0(postcss@8.5.6)
+ postcss-discard-comments: 5.1.1(postcss@8.5.6)
+ postcss-discard-duplicates: 5.1.0(postcss@8.5.6)
+ postcss-discard-empty: 5.1.1(postcss@8.5.6)
+ postcss-discard-overridden: 5.1.0(postcss@8.5.6)
+ postcss-merge-longhand: 5.1.0(postcss@8.5.6)
+ postcss-merge-rules: 5.1.0(postcss@8.5.6)
+ postcss-minify-font-values: 5.1.0(postcss@8.5.6)
+ postcss-minify-gradients: 5.1.0(postcss@8.5.6)
+ postcss-minify-params: 5.1.1(postcss@8.5.6)
+ postcss-minify-selectors: 5.2.0(postcss@8.5.6)
+ postcss-normalize-charset: 5.1.0(postcss@8.5.6)
+ postcss-normalize-display-values: 5.1.0(postcss@8.5.6)
+ postcss-normalize-positions: 5.1.0(postcss@8.5.6)
+ postcss-normalize-repeat-style: 5.1.0(postcss@8.5.6)
+ postcss-normalize-string: 5.1.0(postcss@8.5.6)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.5.6)
+ postcss-normalize-unicode: 5.1.0(postcss@8.5.6)
+ postcss-normalize-url: 5.1.0(postcss@8.5.6)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.5.6)
+ postcss-ordered-values: 5.1.0(postcss@8.5.6)
+ postcss-reduce-initial: 5.1.0(postcss@8.5.6)
+ postcss-reduce-transforms: 5.1.0(postcss@8.5.6)
+ postcss-svgo: 5.1.0(postcss@8.5.6)
+ postcss-unique-selectors: 5.1.1(postcss@8.5.6)
+
+ cssnano-utils@3.1.0(postcss@8.5.6):
+ dependencies:
+ postcss: 8.5.6
+
+ cssnano@5.1.2(postcss@8.5.6):
+ dependencies:
+ cssnano-preset-default: 5.2.2(postcss@8.5.6)
lilconfig: 2.1.0
- postcss: 8.5.2
+ postcss: 8.5.6
yaml: 1.10.2
csso@4.2.0:
dependencies:
css-tree: 1.1.3
- csstype@2.6.20: {}
+ csstype@2.6.21: {}
csstype@3.1.3: {}
@@ -8950,7 +9095,7 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.0:
+ debug@4.4.1:
dependencies:
ms: 2.1.3
@@ -9004,7 +9149,7 @@ snapshots:
del@6.0.0:
dependencies:
globby: 11.1.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
is-glob: 4.0.3
is-path-cwd: 2.2.0
is-path-inside: 3.0.3
@@ -9016,7 +9161,7 @@ snapshots:
dequal@2.0.3: {}
- destr@2.0.3: {}
+ destr@2.0.5: {}
destroy@1.0.4: {}
@@ -9026,6 +9171,8 @@ snapshots:
dependencies:
dequal: 2.0.3
+ diff@8.0.2: {}
+
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
@@ -9041,10 +9188,6 @@ snapshots:
dependencies:
buffer-indexof: 1.1.1
- doctrine@3.0.0:
- dependencies:
- esutils: 2.0.3
-
dom-converter@0.2.0:
dependencies:
utila: 0.4.0
@@ -9070,39 +9213,41 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.8.1
dotenv-expand@5.1.0: {}
dotenv@10.0.0: {}
- dotenv@16.4.5: {}
+ dotenv@17.2.1: {}
- duplexer@0.1.2: {}
+ dts-resolver@2.1.1: {}
- eastasianwidth@0.2.0: {}
+ duplexer@0.1.2: {}
easy-stack@1.0.1: {}
ee-first@1.1.1: {}
- electron-to-chromium@1.5.63: {}
+ electron-to-chromium@1.5.107: {}
+
+ electron-to-chromium@1.5.196: {}
- element-plus@2.9.4(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45):
+ element-plus@2.10.5(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45):
dependencies:
- '@ctrl/tinycolor': 3.4.1
+ '@ctrl/tinycolor': 3.6.1
'@element-plus/icons-vue': 2.3.1(vue@3.2.45)
- '@floating-ui/dom': 1.0.1
+ '@floating-ui/dom': 1.6.13
'@popperjs/core': '@sxzz/popperjs-es@2.11.7'
- '@types/lodash': 4.14.182
- '@types/lodash-es': 4.17.6
- '@vueuse/core': 9.2.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
+ '@types/lodash': 4.17.15
+ '@types/lodash-es': 4.17.12
+ '@vueuse/core': 9.13.0(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45)
async-validator: 4.2.5
dayjs: 1.11.13
escape-html: 1.0.3
lodash: 4.17.21
lodash-es: 4.17.21
- lodash-unified: 1.0.2(@types/lodash-es@4.17.6)(lodash-es@4.17.21)(lodash@4.17.21)
+ lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
memoize-one: 6.0.0
normalize-wheel-es: 1.2.0
vue: 3.2.45
@@ -9111,19 +9256,19 @@ snapshots:
emoji-regex@8.0.0: {}
- emoji-regex@9.2.2: {}
-
emojis-list@3.0.0: {}
+ empathic@2.0.0: {}
+
encodeurl@1.0.2: {}
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
- enhanced-resolve@5.17.1:
+ enhanced-resolve@5.18.1:
dependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
tapable: 2.2.1
entities@2.2.0: {}
@@ -9140,64 +9285,39 @@ snapshots:
dependencies:
stackframe: 1.2.1
+ errx@0.1.0: {}
+
es-module-lexer@0.9.3: {}
- es-module-lexer@1.6.0: {}
+ es-module-lexer@1.7.0: {}
- esbuild@0.23.0:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.0
- '@esbuild/android-arm': 0.23.0
- '@esbuild/android-arm64': 0.23.0
- '@esbuild/android-x64': 0.23.0
- '@esbuild/darwin-arm64': 0.23.0
- '@esbuild/darwin-x64': 0.23.0
- '@esbuild/freebsd-arm64': 0.23.0
- '@esbuild/freebsd-x64': 0.23.0
- '@esbuild/linux-arm': 0.23.0
- '@esbuild/linux-arm64': 0.23.0
- '@esbuild/linux-ia32': 0.23.0
- '@esbuild/linux-loong64': 0.23.0
- '@esbuild/linux-mips64el': 0.23.0
- '@esbuild/linux-ppc64': 0.23.0
- '@esbuild/linux-riscv64': 0.23.0
- '@esbuild/linux-s390x': 0.23.0
- '@esbuild/linux-x64': 0.23.0
- '@esbuild/netbsd-x64': 0.23.0
- '@esbuild/openbsd-arm64': 0.23.0
- '@esbuild/openbsd-x64': 0.23.0
- '@esbuild/sunos-x64': 0.23.0
- '@esbuild/win32-arm64': 0.23.0
- '@esbuild/win32-ia32': 0.23.0
- '@esbuild/win32-x64': 0.23.0
-
- esbuild@0.24.2:
+ esbuild@0.25.0:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.2
- '@esbuild/android-arm': 0.24.2
- '@esbuild/android-arm64': 0.24.2
- '@esbuild/android-x64': 0.24.2
- '@esbuild/darwin-arm64': 0.24.2
- '@esbuild/darwin-x64': 0.24.2
- '@esbuild/freebsd-arm64': 0.24.2
- '@esbuild/freebsd-x64': 0.24.2
- '@esbuild/linux-arm': 0.24.2
- '@esbuild/linux-arm64': 0.24.2
- '@esbuild/linux-ia32': 0.24.2
- '@esbuild/linux-loong64': 0.24.2
- '@esbuild/linux-mips64el': 0.24.2
- '@esbuild/linux-ppc64': 0.24.2
- '@esbuild/linux-riscv64': 0.24.2
- '@esbuild/linux-s390x': 0.24.2
- '@esbuild/linux-x64': 0.24.2
- '@esbuild/netbsd-arm64': 0.24.2
- '@esbuild/netbsd-x64': 0.24.2
- '@esbuild/openbsd-arm64': 0.24.2
- '@esbuild/openbsd-x64': 0.24.2
- '@esbuild/sunos-x64': 0.24.2
- '@esbuild/win32-arm64': 0.24.2
- '@esbuild/win32-ia32': 0.24.2
- '@esbuild/win32-x64': 0.24.2
+ '@esbuild/aix-ppc64': 0.25.0
+ '@esbuild/android-arm': 0.25.0
+ '@esbuild/android-arm64': 0.25.0
+ '@esbuild/android-x64': 0.25.0
+ '@esbuild/darwin-arm64': 0.25.0
+ '@esbuild/darwin-x64': 0.25.0
+ '@esbuild/freebsd-arm64': 0.25.0
+ '@esbuild/freebsd-x64': 0.25.0
+ '@esbuild/linux-arm': 0.25.0
+ '@esbuild/linux-arm64': 0.25.0
+ '@esbuild/linux-ia32': 0.25.0
+ '@esbuild/linux-loong64': 0.25.0
+ '@esbuild/linux-mips64el': 0.25.0
+ '@esbuild/linux-ppc64': 0.25.0
+ '@esbuild/linux-riscv64': 0.25.0
+ '@esbuild/linux-s390x': 0.25.0
+ '@esbuild/linux-x64': 0.25.0
+ '@esbuild/netbsd-arm64': 0.25.0
+ '@esbuild/netbsd-x64': 0.25.0
+ '@esbuild/openbsd-arm64': 0.25.0
+ '@esbuild/openbsd-x64': 0.25.0
+ '@esbuild/sunos-x64': 0.25.0
+ '@esbuild/win32-arm64': 0.25.0
+ '@esbuild/win32-ia32': 0.25.0
+ '@esbuild/win32-x64': 0.25.0
escalade@3.2.0: {}
@@ -9209,121 +9329,100 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.20.1(jiti@2.4.2)):
+ eslint-compat-utils@0.5.1(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
- semver: 7.7.1
+ eslint: 9.32.0(jiti@2.5.1)
+ semver: 7.7.2
- eslint-compat-utils@0.6.3(eslint@9.20.1(jiti@2.4.2)):
+ eslint-compat-utils@0.6.4(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
- semver: 7.7.1
+ eslint: 9.32.0(jiti@2.5.1)
+ semver: 7.7.2
- eslint-config-flat-gitignore@2.0.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-config-flat-gitignore@2.1.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@eslint/compat': 1.2.5(eslint@9.20.1(jiti@2.4.2))
- eslint: 9.20.1(jiti@2.4.2)
+ '@eslint/compat': 1.2.7(eslint@9.32.0(jiti@2.5.1))
+ eslint: 9.32.0(jiti@2.5.1)
- eslint-flat-config-utils@2.0.1:
+ eslint-flat-config-utils@2.1.1:
dependencies:
pathe: 2.0.3
- eslint-formatting-reporter@0.0.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-formatting-reporter@0.0.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
prettier-linter-helpers: 1.0.0
- eslint-import-resolver-node@0.3.9:
+ eslint-json-compat-utils@0.2.1(eslint@9.32.0(jiti@2.5.1))(jsonc-eslint-parser@2.4.0):
dependencies:
- debug: 3.2.7
- is-core-module: 2.13.0
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
- eslint-json-compat-utils@0.2.1(eslint@9.20.1(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
- dependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-merge-processors@2.0.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-merge-processors@2.0.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
eslint-parser-plain@0.1.1: {}
- eslint-plugin-antfu@3.0.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-antfu@3.1.1(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
- eslint-plugin-command@3.0.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-command@3.3.1(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@es-joy/jsdoccomment': 0.50.0
- eslint: 9.20.1(jiti@2.4.2)
+ '@es-joy/jsdoccomment': 0.50.2
+ eslint: 9.32.0(jiti@2.5.1)
- eslint-plugin-es-x@7.8.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-es-x@7.8.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.20.1(jiti@2.4.2)
- eslint-compat-utils: 0.5.1(eslint@9.20.1(jiti@2.4.2))
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-compat-utils: 0.5.1(eslint@9.32.0(jiti@2.5.1))
- eslint-plugin-format@1.0.1(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-format@1.0.1(eslint@9.32.0(jiti@2.5.1)):
dependencies:
'@dprint/formatter': 0.3.0
'@dprint/markdown': 0.17.8
'@dprint/toml': 0.6.4
- eslint: 9.20.1(jiti@2.4.2)
- eslint-formatting-reporter: 0.0.0(eslint@9.20.1(jiti@2.4.2))
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-formatting-reporter: 0.0.0(eslint@9.32.0(jiti@2.5.1))
eslint-parser-plain: 0.1.1
- prettier: 3.4.2
+ prettier: 3.5.2
synckit: 0.9.2
- eslint-plugin-import-x@4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3):
- dependencies:
- '@types/doctrine': 0.0.9
- '@typescript-eslint/scope-manager': 8.24.0
- '@typescript-eslint/utils': 8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- debug: 4.4.0
- doctrine: 3.0.0
- enhanced-resolve: 5.17.1
- eslint: 9.20.1(jiti@2.4.2)
- eslint-import-resolver-node: 0.3.9
- get-tsconfig: 4.8.1
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- stable-hash: 0.0.4
- tslib: 2.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
+ eslint-plugin-import-lite@0.3.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ '@typescript-eslint/types': 8.35.0
+ eslint: 9.32.0(jiti@2.5.1)
+ optionalDependencies:
+ typescript: 5.8.3
- eslint-plugin-jsdoc@50.6.3(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-jsdoc@52.0.3(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@es-joy/jsdoccomment': 0.49.0
+ '@es-joy/jsdoccomment': 0.52.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
- debug: 4.4.0
+ debug: 4.4.1
escape-string-regexp: 4.0.0
- eslint: 9.20.1(jiti@2.4.2)
- espree: 10.3.0
+ eslint: 9.32.0(jiti@2.5.1)
+ espree: 10.4.0
esquery: 1.6.0
- parse-imports: 2.1.1
- semver: 7.7.1
+ parse-imports-exports: 0.2.4
+ semver: 7.7.2
spdx-expression-parse: 4.0.0
- synckit: 0.9.2
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.19.1(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-jsonc@2.20.1(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- eslint: 9.20.1(jiti@2.4.2)
- eslint-compat-utils: 0.6.3(eslint@9.20.1(jiti@2.4.2))
- eslint-json-compat-utils: 0.2.1(eslint@9.20.1(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
- espree: 9.6.1
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-compat-utils: 0.6.4(eslint@9.32.0(jiti@2.5.1))
+ eslint-json-compat-utils: 0.2.1(eslint@9.32.0(jiti@2.5.1))(jsonc-eslint-parser@2.4.0)
+ espree: 10.4.0
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
natural-compare: 1.4.0
@@ -9331,148 +9430,158 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.15.1(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-n@17.21.3(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- enhanced-resolve: 5.17.1
- eslint: 9.20.1(jiti@2.4.2)
- eslint-plugin-es-x: 7.8.0(eslint@9.20.1(jiti@2.4.2))
- get-tsconfig: 4.8.1
- globals: 15.14.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ enhanced-resolve: 5.18.1
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-plugin-es-x: 7.8.0(eslint@9.32.0(jiti@2.5.1))
+ get-tsconfig: 4.10.1
+ globals: 15.15.0
+ globrex: 0.1.2
ignore: 5.3.2
- minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.2
+ ts-declaration-location: 1.0.7(typescript@5.8.3)
+ transitivePeerDependencies:
+ - typescript
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@4.8.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3):
+ eslint-plugin-perfectionist@4.15.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/types': 8.24.0
- '@typescript-eslint/utils': 8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.20.1(jiti@2.4.2)
+ '@typescript-eslint/types': 8.35.0
+ '@typescript-eslint/utils': 8.35.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ eslint: 9.32.0(jiti@2.5.1)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-regexp@2.7.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-pnpm@1.1.0(eslint@9.32.0(jiti@2.5.1)):
+ dependencies:
+ eslint: 9.32.0(jiti@2.5.1)
+ find-up-simple: 1.0.1
+ jsonc-eslint-parser: 2.4.0
+ pathe: 2.0.3
+ pnpm-workspace-yaml: 1.1.0
+ tinyglobby: 0.2.14
+ yaml-eslint-parser: 1.3.0
+
+ eslint-plugin-regexp@2.9.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-toml@0.12.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-toml@0.12.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- debug: 4.4.0
- eslint: 9.20.1(jiti@2.4.2)
- eslint-compat-utils: 0.6.3(eslint@9.20.1(jiti@2.4.2))
+ debug: 4.4.1
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-compat-utils: 0.6.4(eslint@9.32.0(jiti@2.5.1))
lodash: 4.17.21
toml-eslint-parser: 0.10.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@56.0.1(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-unicorn@60.0.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- ci-info: 4.0.0
+ '@babel/helper-validator-identifier': 7.27.1
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ '@eslint/plugin-kit': 0.3.4
+ change-case: 5.4.4
+ ci-info: 4.3.0
clean-regexp: 1.0.0
- core-js-compat: 3.39.0
- eslint: 9.20.1(jiti@2.4.2)
+ core-js-compat: 3.45.0
+ eslint: 9.32.0(jiti@2.5.1)
esquery: 1.6.0
- globals: 15.14.0
- indent-string: 4.0.0
- is-builtin-module: 3.2.1
- jsesc: 3.0.2
+ find-up-simple: 1.0.1
+ globals: 16.3.0
+ indent-string: 5.0.0
+ is-builtin-module: 5.0.0
+ jsesc: 3.1.0
pluralize: 8.0.0
- read-pkg-up: 7.0.1
regexp-tree: 0.1.27
- regjsparser: 0.10.0
- semver: 7.7.1
- strip-indent: 3.0.0
+ regjsparser: 0.12.0
+ semver: 7.7.2
+ strip-indent: 4.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.24.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
- eslint-plugin-vue@9.32.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.5.1))):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
- eslint: 9.20.1(jiti@2.4.2)
- globals: 13.24.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
+ eslint: 9.32.0(jiti@2.5.1)
natural-compare: 1.4.0
nth-check: 2.1.1
- postcss-selector-parser: 6.0.16
- semver: 7.7.1
- vue-eslint-parser: 9.4.3(eslint@9.20.1(jiti@2.4.2))
+ postcss-selector-parser: 6.1.2
+ semver: 7.7.2
+ vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.5.1))
xml-name-validator: 4.0.0
- transitivePeerDependencies:
- - supports-color
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
- eslint-plugin-yml@1.16.0(eslint@9.20.1(jiti@2.4.2)):
+ eslint-plugin-yml@1.18.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- debug: 4.4.0
- eslint: 9.20.1(jiti@2.4.2)
- eslint-compat-utils: 0.6.3(eslint@9.20.1(jiti@2.4.2))
- lodash: 4.17.21
+ debug: 4.4.1
+ escape-string-regexp: 4.0.0
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-compat-utils: 0.6.4(eslint@9.32.0(jiti@2.5.1))
natural-compare: 1.4.0
- yaml-eslint-parser: 1.2.3
+ yaml-eslint-parser: 1.3.0
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.20.1(jiti@2.4.2)):
+ eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.18)(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- '@vue/compiler-sfc': 3.5.13
- eslint: 9.20.1(jiti@2.4.2)
+ '@vue/compiler-sfc': 3.5.18
+ eslint: 9.32.0(jiti@2.5.1)
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@7.2.2:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
-
- eslint-scope@8.2.0:
+ eslint-scope@8.4.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.2.0: {}
+ eslint-visitor-keys@4.2.1: {}
- eslint@9.20.1(jiti@2.4.2):
+ eslint@9.32.0(jiti@2.5.1):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.19.0
- '@eslint/core': 0.11.0
- '@eslint/eslintrc': 3.2.0
- '@eslint/js': 9.20.0
- '@eslint/plugin-kit': 0.2.5
+ '@eslint/config-array': 0.21.0
+ '@eslint/config-helpers': 0.3.0
+ '@eslint/core': 0.15.1
+ '@eslint/eslintrc': 3.3.1
+ '@eslint/js': 9.32.0
+ '@eslint/plugin-kit': 0.3.4
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.1
- '@types/estree': 1.0.6
+ '@humanwhocodes/retry': 0.4.2
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.0
+ debug: 4.4.1
escape-string-regexp: 4.0.0
- eslint-scope: 8.2.0
- eslint-visitor-keys: 4.2.0
- espree: 10.3.0
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -9486,26 +9595,26 @@ snapshots:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
optionalDependencies:
- jiti: 2.4.2
+ jiti: 2.5.1
transitivePeerDependencies:
- supports-color
esno@4.8.0:
dependencies:
- tsx: 4.19.2
+ tsx: 4.19.3
- espree@10.3.0:
+ espree@10.4.0:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
- eslint-visitor-keys: 4.2.0
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
+ eslint-visitor-keys: 4.2.1
espree@9.6.1:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -9526,7 +9635,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
esutils@2.0.3: {}
@@ -9560,19 +9669,7 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.1.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
- expect-type@1.1.0: {}
+ expect-type@1.2.1: {}
express@4.17.3:
dependencies:
@@ -9609,6 +9706,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ exsolve@1.0.5: {}
+
+ exsolve@1.0.7: {}
+
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -9629,18 +9730,26 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fastq@1.13.0:
+ fastq@1.19.1:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
+
+ fault@2.0.1:
+ dependencies:
+ format: 0.2.2
faye-websocket@0.11.4:
dependencies:
websocket-driver: 0.7.4
- fdir@6.4.2(picomatch@4.0.2):
+ fdir@6.4.6(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
+ fdir@6.4.6(picomatch@4.0.3):
+ optionalDependencies:
+ picomatch: 4.0.3
+
figures@2.0.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -9671,6 +9780,8 @@ snapshots:
make-dir: 3.1.0
pkg-dir: 4.2.0
+ find-up-simple@1.0.1: {}
+
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -9683,23 +9794,18 @@ snapshots:
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.3
keyv: 4.5.4
- flatted@3.3.1: {}
+ flatted@3.3.3: {}
- follow-redirects@1.14.9(debug@4.4.0):
+ follow-redirects@1.14.9(debug@4.4.1):
optionalDependencies:
- debug: 4.4.0
-
- foreground-child@3.2.1:
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
+ debug: 4.4.1
- fork-ts-checker-webpack-plugin@6.5.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)(webpack@5.70.0(esbuild@0.24.2)):
+ fork-ts-checker-webpack-plugin@6.5.0(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)(webpack@5.70.0):
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
'@types/json-schema': 7.0.15
chalk: 4.1.2
chokidar: 3.6.0
@@ -9710,12 +9816,14 @@ snapshots:
memfs: 3.4.1
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.7.1
+ semver: 7.7.2
tapable: 1.1.3
- typescript: 5.7.3
- webpack: 5.70.0(esbuild@0.24.2)
+ typescript: 5.8.3
+ webpack: 5.70.0
optionalDependencies:
- eslint: 9.20.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
+
+ format@0.2.2: {}
forwarded@0.2.0: {}
@@ -9726,14 +9834,10 @@ snapshots:
fs-extra@9.1.0:
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.1.6
-
fs-monkey@1.0.3: {}
fs.realpath@1.0.0: {}
@@ -9741,7 +9845,7 @@ snapshots:
fsevents@2.3.3:
optional: true
- function-bind@1.1.1: {}
+ function-bind@1.1.2: {}
functions-have-names@1.2.3: {}
@@ -9751,7 +9855,7 @@ snapshots:
get-intrinsic@1.2.0:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
has: 1.0.3
has-symbols: 1.0.3
@@ -9761,22 +9865,20 @@ snapshots:
get-stream@6.0.1: {}
- get-stream@8.0.1: {}
-
- get-tsconfig@4.8.1:
+ get-tsconfig@4.10.1:
dependencies:
resolve-pkg-maps: 1.0.0
- giget@1.2.3:
+ giget@2.0.0:
dependencies:
citty: 0.1.6
- consola: 3.4.0
+ consola: 3.4.2
defu: 6.1.4
- node-fetch-native: 1.6.4
- nypm: 0.3.8
- ohash: 1.1.4
- pathe: 1.1.2
- tar: 6.2.1
+ node-fetch-native: 1.6.6
+ nypm: 0.6.0
+ pathe: 2.0.3
+
+ github-slugger@2.0.0: {}
glob-parent@5.1.2:
dependencies:
@@ -9788,15 +9890,6 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.5:
- dependencies:
- foreground-child: 3.2.1
- jackspeak: 3.4.2
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.0
- path-scurry: 1.11.1
-
glob@7.2.0:
dependencies:
fs.realpath: 1.0.0
@@ -9808,13 +9901,11 @@ snapshots:
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
-
globals@14.0.0: {}
- globals@15.14.0: {}
+ globals@15.15.0: {}
+
+ globals@16.3.0: {}
globby@11.1.0:
dependencies:
@@ -9825,16 +9916,9 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@14.0.2:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.3
- ignore: 5.3.2
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
+ globrex@0.1.2: {}
- graceful-fs@4.2.9: {}
+ graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -9869,16 +9953,22 @@ snapshots:
has@1.0.3:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
hash-sum@1.0.2: {}
hash-sum@2.0.0: {}
+ hasown@2.0.2:
+ dependencies:
+ function-bind: 1.1.2
+
he@1.2.0: {}
highlight.js@10.7.3: {}
+ hookable@5.5.3: {}
+
hosted-git-info@2.8.9: {}
hpack.js@2.1.6:
@@ -9904,14 +9994,14 @@ snapshots:
html-tags@3.1.0: {}
- html-webpack-plugin@5.5.0(webpack@5.70.0(esbuild@0.24.2)):
+ html-webpack-plugin@5.5.0(webpack@5.70.0):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
htmlparser2@6.1.0:
dependencies:
@@ -9939,10 +10029,10 @@ snapshots:
http-parser-js@0.5.6: {}
- http-proxy-middleware@2.0.3(@types/express@4.17.13)(debug@4.4.0):
+ http-proxy-middleware@2.0.3(@types/express@4.17.13)(debug@4.4.1):
dependencies:
'@types/http-proxy': 1.17.8
- http-proxy: 1.18.1(debug@4.4.0)
+ http-proxy: 1.18.1(debug@4.4.1)
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
@@ -9951,33 +10041,31 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy@1.18.1(debug@4.4.0):
+ http-proxy@1.18.1(debug@4.4.1):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.14.9(debug@4.4.0)
+ follow-redirects: 1.14.9(debug@4.4.1)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
human-signals@2.1.0: {}
- human-signals@5.0.0: {}
-
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.5.2):
+ icss-utils@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
ieee754@1.2.1: {}
ignore@5.3.2: {}
- ignore@7.0.3: {}
+ ignore@7.0.5: {}
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
@@ -9986,6 +10074,8 @@ snapshots:
indent-string@4.0.0: {}
+ indent-string@5.0.0: {}
+
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -10012,13 +10102,13 @@ snapshots:
dependencies:
binary-extensions: 2.2.0
- is-builtin-module@3.2.1:
+ is-builtin-module@5.0.0:
dependencies:
- builtin-modules: 3.3.0
+ builtin-modules: 5.0.0
- is-core-module@2.13.0:
+ is-core-module@2.16.1:
dependencies:
- has: 1.0.3
+ hasown: 2.0.2
is-date-object@1.0.5:
dependencies:
@@ -10071,8 +10161,6 @@ snapshots:
is-stream@2.0.1: {}
- is-stream@3.0.0: {}
-
is-unicode-supported@0.1.0: {}
is-wsl@2.2.0:
@@ -10089,22 +10177,18 @@ snapshots:
isobject@3.0.1: {}
- jackspeak@3.4.2:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
javascript-stringify@2.1.0: {}
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
merge-stream: 2.0.0
supports-color: 8.1.1
jiti@2.4.2: {}
+ jiti@2.5.1: {}
+
joi@17.6.0:
dependencies:
'@hapi/hoek': 9.2.1
@@ -10113,8 +10197,6 @@ snapshots:
'@sideway/formula': 3.0.0
'@sideway/pinpoint': 2.0.0
- joycon@3.1.1: {}
-
js-message@1.0.7: {}
js-tokens@4.0.0: {}
@@ -10136,6 +10218,8 @@ snapshots:
jsesc@3.0.2: {}
+ jsesc@3.1.0: {}
+
json-buffer@3.0.1: {}
json-parse-better-errors@1.0.2: {}
@@ -10148,7 +10232,7 @@ snapshots:
json-stable-stringify-without-jsonify@1.0.1: {}
- json5@1.0.1:
+ json5@1.0.2:
dependencies:
minimist: 1.2.6
@@ -10156,10 +10240,10 @@ snapshots:
jsonc-eslint-parser@2.4.0:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.7.1
+ semver: 7.7.2
jsonc-parser@3.3.1: {}
@@ -10167,7 +10251,7 @@ snapshots:
dependencies:
universalify: 2.0.0
optionalDependencies:
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
keyv@4.5.4:
dependencies:
@@ -10175,8 +10259,6 @@ snapshots:
kind-of@6.0.3: {}
- kleur@3.0.3: {}
-
klona@2.0.6: {}
knitwork@1.2.0: {}
@@ -10199,23 +10281,19 @@ snapshots:
lilconfig@2.1.0: {}
- lilconfig@3.1.2: {}
-
lines-and-columns@1.2.4: {}
linkify-it@5.0.0:
dependencies:
uc.micro: 2.1.0
- load-tsconfig@0.2.3: {}
-
loader-runner@4.2.0: {}
- loader-utils@1.4.0:
+ loader-utils@1.4.2:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 1.0.1
+ json5: 1.0.2
loader-utils@2.0.2:
dependencies:
@@ -10223,15 +10301,11 @@ snapshots:
emojis-list: 3.0.0
json5: 2.2.3
- local-pkg@0.5.1:
- dependencies:
- mlly: 1.7.4
- pkg-types: 1.3.1
-
- local-pkg@1.0.0:
+ local-pkg@1.1.1:
dependencies:
mlly: 1.7.4
- pkg-types: 1.3.1
+ pkg-types: 2.1.0
+ quansync: 0.2.10
locate-path@5.0.0:
dependencies:
@@ -10243,9 +10317,9 @@ snapshots:
lodash-es@4.17.21: {}
- lodash-unified@1.0.2(@types/lodash-es@4.17.6)(lodash-es@4.17.21)(lodash@4.17.21):
+ lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
dependencies:
- '@types/lodash-es': 4.17.6
+ '@types/lodash-es': 4.17.12
lodash: 4.17.21
lodash-es: 4.17.21
@@ -10261,8 +10335,6 @@ snapshots:
lodash.merge@4.6.2: {}
- lodash.sortby@4.7.0: {}
-
lodash.uniq@4.5.0: {}
lodash@4.17.21: {}
@@ -10280,13 +10352,11 @@ snapshots:
longest-streak@3.1.0: {}
- loupe@3.1.2: {}
+ loupe@3.1.4: {}
lower-case@2.0.2:
dependencies:
- tslib: 2.6.3
-
- lru-cache@10.4.3: {}
+ tslib: 2.8.1
lru-cache@4.1.5:
dependencies:
@@ -10313,7 +10383,7 @@ snapshots:
dependencies:
semver: 6.3.1
- markdown-it-async@2.0.0:
+ markdown-it-async@2.2.0:
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
@@ -10329,7 +10399,7 @@ snapshots:
markdown-table@3.0.4: {}
- mdast-util-find-and-replace@3.0.1:
+ mdast-util-find-and-replace@3.0.2:
dependencies:
'@types/mdast': 4.0.4
escape-string-regexp: 5.0.0
@@ -10353,15 +10423,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-frontmatter@2.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ escape-string-regexp: 5.0.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ micromark-extension-frontmatter: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm-autolink-literal@2.0.1:
dependencies:
'@types/mdast': 4.0.4
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-find-and-replace: 3.0.1
+ mdast-util-find-and-replace: 3.0.2
micromark-util-character: 2.1.1
- mdast-util-gfm-footnote@2.0.0:
+ mdast-util-gfm-footnote@2.1.0:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
@@ -10398,11 +10479,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-gfm@3.0.0:
+ mdast-util-gfm@3.1.0:
dependencies:
mdast-util-from-markdown: 2.0.2
mdast-util-gfm-autolink-literal: 2.0.1
- mdast-util-gfm-footnote: 2.0.0
+ mdast-util-gfm-footnote: 2.1.0
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
mdast-util-gfm-task-list-item: 2.0.0
@@ -10470,7 +10551,14 @@ snapshots:
micromark-util-html-tag-name: 2.0.1
micromark-util-normalize-identifier: 2.0.1
micromark-util-resolve-all: 2.0.1
- micromark-util-subtokenize: 2.0.2
+ micromark-util-subtokenize: 2.0.4
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
+
+ micromark-extension-frontmatter@2.0.0:
+ dependencies:
+ fault: 2.0.1
+ micromark-util-character: 2.1.1
micromark-util-symbol: 2.0.1
micromark-util-types: 2.0.1
@@ -10501,7 +10589,7 @@ snapshots:
micromark-util-symbol: 2.0.1
micromark-util-types: 2.0.1
- micromark-extension-gfm-table@2.1.0:
+ micromark-extension-gfm-table@2.1.1:
dependencies:
devlop: 1.1.0
micromark-factory-space: 2.0.1
@@ -10526,7 +10614,7 @@ snapshots:
micromark-extension-gfm-autolink-literal: 2.1.0
micromark-extension-gfm-footnote: 2.1.0
micromark-extension-gfm-strikethrough: 2.1.0
- micromark-extension-gfm-table: 2.1.0
+ micromark-extension-gfm-table: 2.1.1
micromark-extension-gfm-tagfilter: 2.0.0
micromark-extension-gfm-task-list-item: 2.1.0
micromark-util-combine-extensions: 2.0.1
@@ -10613,7 +10701,7 @@ snapshots:
micromark-util-encode: 2.0.1
micromark-util-symbol: 2.0.1
- micromark-util-subtokenize@2.0.2:
+ micromark-util-subtokenize@2.0.4:
dependencies:
devlop: 1.1.0
micromark-util-chunked: 2.0.1
@@ -10627,7 +10715,7 @@ snapshots:
micromark@4.0.1:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.0
+ debug: 4.4.1
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.2
@@ -10640,7 +10728,7 @@ snapshots:
micromark-util-normalize-identifier: 2.0.1
micromark-util-resolve-all: 2.0.1
micromark-util-sanitize-uri: 2.0.1
- micromark-util-subtokenize: 2.0.2
+ micromark-util-subtokenize: 2.0.4
micromark-util-symbol: 2.0.1
micromark-util-types: 2.0.1
transitivePeerDependencies:
@@ -10665,20 +10753,18 @@ snapshots:
mimic-fn@2.1.0: {}
- mimic-fn@4.0.0: {}
-
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.6.0(webpack@5.70.0(esbuild@0.24.2)):
+ mini-css-extract-plugin@2.6.0(webpack@5.70.0):
dependencies:
schema-utils: 4.0.0
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
minimalistic-assert@1.0.1: {}
- minimatch@10.0.1:
+ minimatch@10.0.3:
dependencies:
- brace-expansion: 2.0.1
+ '@isaacs/brace-expansion': 5.0.0
minimatch@3.1.2:
dependencies:
@@ -10694,27 +10780,16 @@ snapshots:
dependencies:
yallist: 4.0.0
- minipass@5.0.0: {}
-
- minipass@7.1.2: {}
-
- minizlib@2.1.2:
- dependencies:
- minipass: 3.1.6
- yallist: 4.0.0
-
mkdirp@0.5.5:
dependencies:
minimist: 1.2.6
- mkdirp@1.0.4: {}
-
mlly@1.7.4:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
pathe: 2.0.3
pkg-types: 1.3.1
- ufo: 1.5.4
+ ufo: 1.6.1
module-alias@2.2.2: {}
@@ -10741,7 +10816,7 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.8: {}
+ nanoid@3.3.11: {}
natural-compare@1.4.0: {}
@@ -10756,9 +10831,9 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.3
+ tslib: 2.8.1
- node-fetch-native@1.6.4: {}
+ node-fetch-native@1.6.6: {}
node-fetch@2.6.7:
dependencies:
@@ -10766,12 +10841,12 @@ snapshots:
node-forge@1.2.1: {}
- node-releases@2.0.18: {}
+ node-releases@2.0.19: {}
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.1
validate-npm-package-license: 3.0.4
@@ -10791,21 +10866,17 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.1.0:
- dependencies:
- path-key: 4.0.0
-
nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
- nypm@0.3.8:
+ nypm@0.6.0:
dependencies:
citty: 0.1.6
- consola: 3.4.0
- execa: 8.0.1
- pathe: 1.1.2
- ufo: 1.5.4
+ consola: 3.4.2
+ pathe: 2.0.3
+ pkg-types: 2.2.0
+ tinyexec: 0.3.2
object-assign@4.1.1: {}
@@ -10825,7 +10896,7 @@ snapshots:
obuf@1.1.2: {}
- ohash@1.1.4: {}
+ ohash@2.0.11: {}
on-finished@2.3.0:
dependencies:
@@ -10845,16 +10916,12 @@ snapshots:
dependencies:
mimic-fn: 2.1.0
- onetime@6.0.0:
- dependencies:
- mimic-fn: 4.0.0
-
- open@10.1.0:
+ open@10.2.0:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
- is-wsl: 3.1.0
+ wsl-utils: 0.1.0
open@8.4.0:
dependencies:
@@ -10864,14 +10931,14 @@ snapshots:
opener@1.5.2: {}
- optionator@0.9.3:
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
ora@5.4.1:
dependencies:
@@ -10914,14 +10981,12 @@ snapshots:
p-try@2.2.0: {}
- package-json-from-dist@1.0.0: {}
-
- package-manager-detector@0.2.9: {}
+ package-manager-detector@1.3.0: {}
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.8.1
parent-module@1.0.1:
dependencies:
@@ -10929,18 +10994,19 @@ snapshots:
parse-gitignore@2.0.0: {}
- parse-imports@2.1.1:
+ parse-imports-exports@0.2.4:
dependencies:
- es-module-lexer: 1.6.0
- slashes: 3.0.12
+ parse-statements: 1.0.11
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ parse-statements@1.0.11: {}
+
parse5-htmlparser2-tree-adapter@6.0.1:
dependencies:
parse5: 6.0.1
@@ -10954,7 +11020,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.8.1
path-browserify@1.0.1: {}
@@ -10966,21 +11032,12 @@ snapshots:
path-key@3.1.1: {}
- path-key@4.0.0: {}
-
path-parse@1.0.7: {}
- path-scurry@1.11.1:
- dependencies:
- lru-cache: 10.4.3
- minipass: 7.1.2
-
path-to-regexp@0.1.7: {}
path-type@4.0.0: {}
- path-type@5.0.0: {}
-
pathe@1.1.2: {}
pathe@2.0.3: {}
@@ -10997,7 +11054,7 @@ snapshots:
picomatch@4.0.2: {}
- pirates@4.0.5: {}
+ picomatch@4.0.3: {}
pkg-dir@4.2.0:
dependencies:
@@ -11009,8 +11066,24 @@ snapshots:
mlly: 1.7.4
pathe: 2.0.3
+ pkg-types@2.1.0:
+ dependencies:
+ confbox: 0.2.2
+ exsolve: 1.0.5
+ pathe: 2.0.3
+
+ pkg-types@2.2.0:
+ dependencies:
+ confbox: 0.2.2
+ exsolve: 1.0.7
+ pathe: 2.0.3
+
pluralize@8.0.0: {}
+ pnpm-workspace-yaml@1.1.0:
+ dependencies:
+ yaml: 2.8.0
+
portfinder@1.0.28:
dependencies:
async: 2.6.3
@@ -11019,194 +11092,186 @@ snapshots:
transitivePeerDependencies:
- supports-color
- postcss-calc@8.2.4(postcss@8.5.2):
+ postcss-calc@8.2.4(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@5.3.0(postcss@8.5.2):
+ postcss-colormin@5.3.0(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.24.4
caniuse-api: 3.0.0
colord: 2.9.2
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-convert-values@5.1.0(postcss@8.5.2):
+ postcss-convert-values@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-discard-comments@5.1.1(postcss@8.5.2):
- dependencies:
- postcss: 8.5.2
-
- postcss-discard-duplicates@5.1.0(postcss@8.5.2):
+ postcss-discard-comments@5.1.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
- postcss-discard-empty@5.1.1(postcss@8.5.2):
+ postcss-discard-duplicates@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
- postcss-discard-overridden@5.1.0(postcss@8.5.2):
+ postcss-discard-empty@5.1.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
- postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.2)(tsx@4.19.2):
+ postcss-discard-overridden@5.1.0(postcss@8.5.6):
dependencies:
- lilconfig: 3.1.2
- optionalDependencies:
- jiti: 2.4.2
- postcss: 8.5.2
- tsx: 4.19.2
+ postcss: 8.5.6
- postcss-loader@6.2.1(postcss@8.5.2)(webpack@5.70.0(esbuild@0.24.2)):
+ postcss-loader@6.2.1(postcss@8.5.6)(webpack@5.70.0):
dependencies:
cosmiconfig: 7.0.1
klona: 2.0.6
- postcss: 8.5.2
- semver: 7.7.1
- webpack: 5.70.0(esbuild@0.24.2)
+ postcss: 8.5.6
+ semver: 7.7.2
+ webpack: 5.70.0
- postcss-merge-longhand@5.1.0(postcss@8.5.2):
+ postcss-merge-longhand@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- stylehacks: 5.1.0(postcss@8.5.2)
+ stylehacks: 5.1.0(postcss@8.5.6)
- postcss-merge-rules@5.1.0(postcss@8.5.2):
+ postcss-merge-rules@5.1.0(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.24.4
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.5.2)
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
+ cssnano-utils: 3.1.0(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
- postcss-minify-font-values@5.1.0(postcss@8.5.2):
+ postcss-minify-font-values@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-gradients@5.1.0(postcss@8.5.2):
+ postcss-minify-gradients@5.1.0(postcss@8.5.6):
dependencies:
colord: 2.9.2
- cssnano-utils: 3.1.0(postcss@8.5.2)
- postcss: 8.5.2
+ cssnano-utils: 3.1.0(postcss@8.5.6)
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-params@5.1.1(postcss@8.5.2):
+ postcss-minify-params@5.1.1(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
- cssnano-utils: 3.1.0(postcss@8.5.2)
- postcss: 8.5.2
+ browserslist: 4.24.4
+ cssnano-utils: 3.1.0(postcss@8.5.6)
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-selectors@5.2.0(postcss@8.5.2):
+ postcss-minify-selectors@5.2.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.0.0(postcss@8.5.2):
+ postcss-modules-extract-imports@3.0.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
- postcss-modules-local-by-default@4.0.0(postcss@8.5.2):
+ postcss-modules-local-by-default@4.0.0(postcss@8.5.6):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.2)
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.0.0(postcss@8.5.2):
+ postcss-modules-scope@3.0.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
- postcss-modules-values@4.0.0(postcss@8.5.2):
+ postcss-modules-values@4.0.0(postcss@8.5.6):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.2)
- postcss: 8.5.2
+ icss-utils: 5.1.0(postcss@8.5.6)
+ postcss: 8.5.6
- postcss-normalize-charset@5.1.0(postcss@8.5.2):
+ postcss-normalize-charset@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
- postcss-normalize-display-values@5.1.0(postcss@8.5.2):
+ postcss-normalize-display-values@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-positions@5.1.0(postcss@8.5.2):
+ postcss-normalize-positions@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@5.1.0(postcss@8.5.2):
+ postcss-normalize-repeat-style@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-string@5.1.0(postcss@8.5.2):
+ postcss-normalize-string@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@5.1.0(postcss@8.5.2):
+ postcss-normalize-timing-functions@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@5.1.0(postcss@8.5.2):
+ postcss-normalize-unicode@5.1.0(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
- postcss: 8.5.2
+ browserslist: 4.24.4
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-url@5.1.0(postcss@8.5.2):
+ postcss-normalize-url@5.1.0(postcss@8.5.6):
dependencies:
normalize-url: 6.1.0
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@5.1.1(postcss@8.5.2):
+ postcss-normalize-whitespace@5.1.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-ordered-values@5.1.0(postcss@8.5.2):
+ postcss-ordered-values@5.1.0(postcss@8.5.6):
dependencies:
- cssnano-utils: 3.1.0(postcss@8.5.2)
- postcss: 8.5.2
+ cssnano-utils: 3.1.0(postcss@8.5.6)
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-reduce-initial@5.1.0(postcss@8.5.2):
+ postcss-reduce-initial@5.1.0(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.24.4
caniuse-api: 3.0.0
- postcss: 8.5.2
+ postcss: 8.5.6
- postcss-reduce-transforms@5.1.0(postcss@8.5.2):
+ postcss-reduce-transforms@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-selector-parser@6.0.16:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@5.1.0(postcss@8.5.2):
+ postcss-svgo@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
svgo: 2.8.0
- postcss-unique-selectors@5.1.1(postcss@8.5.2):
+ postcss-unique-selectors@5.1.1(postcss@8.5.6):
dependencies:
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
@@ -11215,9 +11280,9 @@ snapshots:
picocolors: 0.2.1
source-map: 0.6.1
- postcss@8.5.2:
+ postcss@8.5.6:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -11230,7 +11295,7 @@ snapshots:
prettier@2.8.8:
optional: true
- prettier@3.4.2: {}
+ prettier@3.5.2: {}
pretty-error@4.0.0:
dependencies:
@@ -11239,17 +11304,12 @@ snapshots:
process-nextick-args@2.0.1: {}
- progress-webpack-plugin@1.0.12(webpack@5.70.0(esbuild@0.24.2)):
+ progress-webpack-plugin@1.0.12(webpack@5.70.0):
dependencies:
chalk: 2.4.2
figures: 2.0.0
log-update: 2.3.0
- webpack: 5.70.0(esbuild@0.24.2)
-
- prompts@2.4.2:
- dependencies:
- kleur: 3.0.3
- sisteransi: 1.0.5
+ webpack: 5.70.0
proxy-addr@2.0.7:
dependencies:
@@ -11265,10 +11325,12 @@ snapshots:
punycode.js@2.3.1: {}
- punycode@2.1.1: {}
+ punycode@2.3.1: {}
qs@6.9.7: {}
+ quansync@0.2.10: {}
+
queue-microtask@1.2.3: {}
randombytes@2.1.0:
@@ -11287,7 +11349,7 @@ snapshots:
rc9@2.1.2:
dependencies:
defu: 6.1.4
- destr: 2.0.3
+ destr: 2.0.5
read-pkg-up@7.0.1:
dependencies:
@@ -11322,7 +11384,7 @@ snapshots:
dependencies:
picomatch: 2.3.1
- readdirp@4.0.2: {}
+ readdirp@4.1.2: {}
refa@0.12.1:
dependencies:
@@ -11364,9 +11426,9 @@ snapshots:
regjsgen@0.6.0: {}
- regjsparser@0.10.0:
+ regjsparser@0.12.0:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.0.2
regjsparser@0.8.4:
dependencies:
@@ -11390,13 +11452,11 @@ snapshots:
resolve-from@4.0.0: {}
- resolve-from@5.0.0: {}
-
resolve-pkg-maps@1.0.0: {}
- resolve@1.22.8:
+ resolve@1.22.10:
dependencies:
- is-core-module: 2.13.0
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -11412,35 +11472,74 @@ snapshots:
retry@0.13.1: {}
- reusify@1.0.4: {}
+ reusify@1.1.0: {}
rimraf@3.0.2:
dependencies:
glob: 7.2.0
- rollup@4.34.7:
+ rolldown-plugin-dts@0.15.3(rolldown@1.0.0-beta.9-commit.d91dfb5)(typescript@5.8.3)(vue-tsc@3.0.5(typescript@5.8.3)):
+ dependencies:
+ '@babel/generator': 7.28.0
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.2
+ ast-kit: 2.1.1
+ birpc: 2.5.0
+ debug: 4.4.1
+ dts-resolver: 2.1.1
+ get-tsconfig: 4.10.1
+ rolldown: 1.0.0-beta.9-commit.d91dfb5
+ optionalDependencies:
+ typescript: 5.8.3
+ vue-tsc: 3.0.5(typescript@5.8.3)
+ transitivePeerDependencies:
+ - oxc-resolver
+ - supports-color
+
+ rolldown@1.0.0-beta.9-commit.d91dfb5:
dependencies:
- '@types/estree': 1.0.6
+ '@oxc-project/runtime': 0.71.0
+ '@oxc-project/types': 0.71.0
+ '@rolldown/pluginutils': 1.0.0-beta.9-commit.d91dfb5
+ ansis: 4.1.0
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.7
- '@rollup/rollup-android-arm64': 4.34.7
- '@rollup/rollup-darwin-arm64': 4.34.7
- '@rollup/rollup-darwin-x64': 4.34.7
- '@rollup/rollup-freebsd-arm64': 4.34.7
- '@rollup/rollup-freebsd-x64': 4.34.7
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.7
- '@rollup/rollup-linux-arm-musleabihf': 4.34.7
- '@rollup/rollup-linux-arm64-gnu': 4.34.7
- '@rollup/rollup-linux-arm64-musl': 4.34.7
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.7
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.7
- '@rollup/rollup-linux-riscv64-gnu': 4.34.7
- '@rollup/rollup-linux-s390x-gnu': 4.34.7
- '@rollup/rollup-linux-x64-gnu': 4.34.7
- '@rollup/rollup-linux-x64-musl': 4.34.7
- '@rollup/rollup-win32-arm64-msvc': 4.34.7
- '@rollup/rollup-win32-ia32-msvc': 4.34.7
- '@rollup/rollup-win32-x64-msvc': 4.34.7
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.9-commit.d91dfb5
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.9-commit.d91dfb5
+
+ rollup@4.46.2:
+ dependencies:
+ '@types/estree': 1.0.8
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.46.2
+ '@rollup/rollup-android-arm64': 4.46.2
+ '@rollup/rollup-darwin-arm64': 4.46.2
+ '@rollup/rollup-darwin-x64': 4.46.2
+ '@rollup/rollup-freebsd-arm64': 4.46.2
+ '@rollup/rollup-freebsd-x64': 4.46.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.46.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.46.2
+ '@rollup/rollup-linux-arm64-gnu': 4.46.2
+ '@rollup/rollup-linux-arm64-musl': 4.46.2
+ '@rollup/rollup-linux-loongarch64-gnu': 4.46.2
+ '@rollup/rollup-linux-ppc64-gnu': 4.46.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.46.2
+ '@rollup/rollup-linux-riscv64-musl': 4.46.2
+ '@rollup/rollup-linux-s390x-gnu': 4.46.2
+ '@rollup/rollup-linux-x64-gnu': 4.46.2
+ '@rollup/rollup-linux-x64-musl': 4.46.2
+ '@rollup/rollup-win32-arm64-msvc': 4.46.2
+ '@rollup/rollup-win32-ia32-msvc': 4.46.2
+ '@rollup/rollup-win32-x64-msvc': 4.46.2
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -11503,7 +11602,7 @@ snapshots:
semver@6.3.1: {}
- semver@7.7.1: {}
+ semver@7.7.2: {}
send@0.17.2:
dependencies:
@@ -11574,15 +11673,13 @@ snapshots:
signal-exit@3.0.7: {}
- signal-exit@4.1.0: {}
-
sirv@1.0.19:
dependencies:
'@polka/url': 1.0.0-next.25
mrmime: 1.0.0
totalist: 1.1.0
- sirv@3.0.0:
+ sirv@3.0.1:
dependencies:
'@polka/url': 1.0.0-next.25
mrmime: 2.0.0
@@ -11592,10 +11689,6 @@ snapshots:
slash@3.0.0: {}
- slash@5.1.0: {}
-
- slashes@3.0.12: {}
-
sockjs@0.3.24:
dependencies:
faye-websocket: 0.11.4
@@ -11613,34 +11706,30 @@ snapshots:
source-map@0.7.3: {}
- source-map@0.8.0-beta.0:
- dependencies:
- whatwg-url: 7.1.0
-
sourcemap-codec@1.4.8: {}
spdx-correct@3.1.1:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.11
+ spdx-license-ids: 3.0.21
- spdx-exceptions@2.3.0: {}
+ spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.11
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.21
spdx-expression-parse@4.0.0:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.11
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.21
- spdx-license-ids@3.0.11: {}
+ spdx-license-ids@3.0.21: {}
spdy-transport@3.0.0:
dependencies:
- debug: 4.4.0
+ debug: 4.4.1
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -11651,7 +11740,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.4.0
+ debug: 4.4.1
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -11665,8 +11754,6 @@ snapshots:
dependencies:
minipass: 3.1.6
- stable-hash@0.0.4: {}
-
stable@0.1.8: {}
stackback@0.0.2: {}
@@ -11675,7 +11762,7 @@ snapshots:
statuses@1.5.0: {}
- std-env@3.8.0: {}
+ std-env@3.9.0: {}
string-width@2.1.1:
dependencies:
@@ -11688,12 +11775,6 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string-width@5.1.2:
- dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
- strip-ansi: 7.0.1
-
string_decoder@1.1.1:
dependencies:
safe-buffer: 5.1.2
@@ -11720,9 +11801,7 @@ snapshots:
strip-final-newline@2.0.0: {}
- strip-final-newline@3.0.0: {}
-
- strip-indent@3.0.0:
+ strip-indent@4.0.0:
dependencies:
min-indent: 1.0.1
@@ -11732,21 +11811,11 @@ snapshots:
dependencies:
js-tokens: 9.0.1
- stylehacks@5.1.0(postcss@8.5.2):
- dependencies:
- browserslist: 4.24.2
- postcss: 8.5.2
- postcss-selector-parser: 6.0.16
-
- sucrase@3.35.0:
+ stylehacks@5.1.0(postcss@8.5.6):
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- commander: 4.1.1
- glob: 10.4.5
- lines-and-columns: 1.2.4
- mz: 2.7.0
- pirates: 4.0.5
- ts-interface-checker: 0.1.13
+ browserslist: 4.24.4
+ postcss: 8.5.6
+ postcss-selector-parser: 6.1.2
supports-color@5.5.0:
dependencies:
@@ -11776,40 +11845,29 @@ snapshots:
synckit@0.6.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
synckit@0.9.2:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.3
+ tslib: 2.8.1
tapable@1.1.3: {}
tapable@2.2.1: {}
- tar@6.2.1:
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
-
- terser-webpack-plugin@5.3.1(esbuild@0.24.2)(webpack@5.70.0(esbuild@0.24.2)):
+ terser-webpack-plugin@5.3.1(webpack@5.70.0):
dependencies:
jest-worker: 27.5.1
schema-utils: 3.1.1
serialize-javascript: 6.0.0
source-map: 0.6.1
terser: 5.12.0
- webpack: 5.70.0(esbuild@0.24.2)
- optionalDependencies:
- esbuild: 0.24.2
+ webpack: 5.70.0
terser@5.12.0:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
commander: 2.20.3
source-map: 0.7.3
source-map-support: 0.5.21
@@ -11822,14 +11880,14 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thread-loader@3.0.4(webpack@5.70.0(esbuild@0.24.2)):
+ thread-loader@3.0.4(webpack@5.70.0):
dependencies:
json-parse-better-errors: 1.0.2
loader-runner: 4.2.0
loader-utils: 2.0.2
neo-async: 2.6.2
schema-utils: 3.1.1
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
thunky@1.1.0: {}
@@ -11839,16 +11897,18 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.10:
+ tinyexec@1.0.1: {}
+
+ tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.2(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.2)
picomatch: 4.0.2
- tinypool@1.0.2: {}
+ tinypool@1.1.1: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
+ tinyspy@4.0.3: {}
to-regex-range@5.0.1:
dependencies:
@@ -11866,60 +11926,56 @@ snapshots:
tr46@0.0.3: {}
- tr46@1.0.1:
- dependencies:
- punycode: 2.1.1
-
tree-kill@1.2.2: {}
- ts-api-utils@2.0.1(typescript@5.7.3):
+ ts-api-utils@2.1.0(typescript@5.8.3):
dependencies:
- typescript: 5.7.3
+ typescript: 5.8.3
- ts-interface-checker@0.1.13: {}
+ ts-declaration-location@1.0.7(typescript@5.8.3):
+ dependencies:
+ picomatch: 4.0.2
+ typescript: 5.8.3
- ts-loader@9.2.8(typescript@5.7.3)(webpack@5.70.0(esbuild@0.24.2)):
+ ts-loader@9.2.8(typescript@5.8.3)(webpack@5.70.0):
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.17.1
+ enhanced-resolve: 5.18.1
micromatch: 4.0.8
- semver: 7.7.1
- typescript: 5.7.3
- webpack: 5.70.0(esbuild@0.24.2)
+ semver: 7.7.2
+ typescript: 5.8.3
+ webpack: 5.70.0
- tslib@2.6.3: {}
-
- tsup@8.3.6(jiti@2.4.2)(postcss@8.5.2)(tsx@4.19.2)(typescript@5.7.3):
+ tsdown@0.13.3(typescript@5.8.3)(vue-tsc@3.0.5(typescript@5.8.3)):
dependencies:
- bundle-require: 5.0.0(esbuild@0.24.2)
+ ansis: 4.1.0
cac: 6.7.14
- chokidar: 4.0.1
- consola: 3.4.0
- debug: 4.4.0
- esbuild: 0.24.2
- joycon: 3.1.1
- picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.2)(tsx@4.19.2)
- resolve-from: 5.0.0
- rollup: 4.34.7
- source-map: 0.8.0-beta.0
- sucrase: 3.35.0
- tinyexec: 0.3.2
- tinyglobby: 0.2.10
+ chokidar: 4.0.3
+ debug: 4.4.1
+ diff: 8.0.2
+ empathic: 2.0.0
+ hookable: 5.5.3
+ rolldown: 1.0.0-beta.9-commit.d91dfb5
+ rolldown-plugin-dts: 0.15.3(rolldown@1.0.0-beta.9-commit.d91dfb5)(typescript@5.8.3)(vue-tsc@3.0.5(typescript@5.8.3))
+ semver: 7.7.2
+ tinyexec: 1.0.1
+ tinyglobby: 0.2.14
tree-kill: 1.2.2
+ unconfig: 7.3.2
optionalDependencies:
- postcss: 8.5.2
- typescript: 5.7.3
+ typescript: 5.8.3
transitivePeerDependencies:
- - jiti
+ - '@typescript/native-preview'
+ - oxc-resolver
- supports-color
- - tsx
- - yaml
+ - vue-tsc
- tsx@4.19.2:
+ tslib@2.8.1: {}
+
+ tsx@4.19.3:
dependencies:
- esbuild: 0.23.0
- get-tsconfig: 4.8.1
+ esbuild: 0.25.0
+ get-tsconfig: 4.10.1
optionalDependencies:
fsevents: 2.3.3
@@ -11927,8 +11983,6 @@ snapshots:
dependencies:
prelude-ls: 1.2.1
- type-fest@0.20.2: {}
-
type-fest@0.6.0: {}
type-fest@0.8.1: {}
@@ -11938,20 +11992,27 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.34
- typescript@5.7.3: {}
+ typescript@5.8.3: {}
uc.micro@2.1.0: {}
- ufo@1.5.4: {}
+ ufo@1.6.1: {}
+
+ unconfig@7.3.2:
+ dependencies:
+ '@quansync/fs': 0.1.3
+ defu: 6.1.4
+ jiti: 2.4.2
+ quansync: 0.2.10
unctx@2.4.1:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
estree-walker: 3.0.3
magic-string: 0.30.17
- unplugin: 2.2.0
+ unplugin: 2.3.5
- undici-types@6.20.0: {}
+ undici-types@7.10.0: {}
unicode-canonical-property-names-ecmascript@2.0.0: {}
@@ -11964,23 +12025,21 @@ snapshots:
unicode-property-aliases-ecmascript@2.0.0: {}
- unicorn-magic@0.1.0: {}
-
- unimport@4.1.1:
+ unimport@5.2.0:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.0.0
+ local-pkg: 1.1.1
magic-string: 0.30.17
mlly: 1.7.4
pathe: 2.0.3
- picomatch: 4.0.2
- pkg-types: 1.3.1
+ picomatch: 4.0.3
+ pkg-types: 2.2.0
scule: 1.3.0
strip-literal: 3.0.0
- unplugin: 2.2.0
+ tinyglobby: 0.2.14
+ unplugin: 2.3.5
unplugin-utils: 0.2.4
unist-util-is@6.0.0:
@@ -12006,17 +12065,15 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-icons@22.0.0(@vue/compiler-sfc@3.5.13)(vue-template-es2015-compiler@1.9.1):
+ unplugin-icons@22.2.0(@vue/compiler-sfc@3.5.18)(vue-template-es2015-compiler@1.9.1):
dependencies:
- '@antfu/install-pkg': 0.5.0
- '@antfu/utils': 0.7.10
+ '@antfu/install-pkg': 1.1.0
'@iconify/utils': 2.3.0
- debug: 4.4.0
- kolorist: 1.8.0
- local-pkg: 0.5.1
- unplugin: 2.2.0
+ debug: 4.4.1
+ local-pkg: 1.1.1
+ unplugin: 2.3.5
optionalDependencies:
- '@vue/compiler-sfc': 3.5.13
+ '@vue/compiler-sfc': 3.5.18
vue-template-es2015-compiler: 1.9.1
transitivePeerDependencies:
- supports-color
@@ -12026,35 +12083,33 @@ snapshots:
pathe: 2.0.3
picomatch: 4.0.2
- unplugin-vue-markdown@28.3.0(rollup@4.34.7)(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)):
+ unplugin-vue-markdown@29.1.0(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)):
dependencies:
- '@mdit-vue/plugin-component': 2.1.3
- '@mdit-vue/plugin-frontmatter': 2.1.3
- '@mdit-vue/types': 2.1.0
- '@rollup/pluginutils': 5.1.4(rollup@4.34.7)
+ '@mdit-vue/plugin-component': 2.1.4
+ '@mdit-vue/plugin-frontmatter': 2.1.4
+ '@mdit-vue/types': 2.1.4
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- markdown-it-async: 2.0.0
- unplugin: 2.2.0
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
- transitivePeerDependencies:
- - rollup
+ markdown-it-async: 2.2.0
+ unplugin: 2.3.5
+ unplugin-utils: 0.2.4
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
- unplugin-vue2-script-setup@0.11.4(@vue/composition-api@1.7.2(vue@3.5.13(typescript@5.7.3)))(@vue/runtime-dom@3.5.13)(rollup@4.34.7):
+ unplugin-vue2-script-setup@0.11.4(@vue/composition-api@1.7.2(vue@2.7.16))(@vue/runtime-dom@3.5.18)(rollup@4.46.2):
dependencies:
'@antfu/utils': 0.7.10
- '@babel/core': 7.26.9
- '@babel/generator': 7.26.9
- '@babel/parser': 7.26.9
- '@babel/traverse': 7.26.9
- '@babel/types': 7.26.9
- '@rollup/pluginutils': 5.1.4(rollup@4.34.7)
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/composition-api': 1.7.2(vue@3.5.13(typescript@5.7.3))
+ '@babel/core': 7.27.7
+ '@babel/generator': 7.27.5
+ '@babel/parser': 7.27.7
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.27.7
+ '@rollup/pluginutils': 5.1.4(rollup@4.46.2)
+ '@vue/compiler-core': 3.5.17
+ '@vue/compiler-dom': 3.5.17
+ '@vue/composition-api': 1.7.2(vue@2.7.16)
'@vue/reactivity-transform': 3.3.4
- '@vue/runtime-dom': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/runtime-dom': 3.5.18
+ '@vue/shared': 3.5.17
defu: 6.1.4
magic-string: 0.30.17
unplugin: 1.16.0
@@ -12064,36 +12119,38 @@ snapshots:
unplugin@1.16.0:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
webpack-virtual-modules: 0.6.2
- unplugin@2.2.0:
+ unplugin@2.3.5:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
+ picomatch: 4.0.2
webpack-virtual-modules: 0.6.2
- untyped@1.5.2:
+ untyped@2.0.0:
dependencies:
- '@babel/core': 7.26.9
- '@babel/standalone': 7.26.4
- '@babel/types': 7.26.9
citty: 0.1.6
defu: 6.1.4
- jiti: 2.4.2
+ jiti: 2.5.1
knitwork: 1.2.0
scule: 1.3.0
- transitivePeerDependencies:
- - supports-color
- update-browserslist-db@1.1.1(browserslist@4.24.2):
+ update-browserslist-db@1.1.3(browserslist@4.24.4):
+ dependencies:
+ browserslist: 4.24.4
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
+ update-browserslist-db@1.1.3(browserslist@4.25.1):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.25.1
escalade: 3.2.0
picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
util-deprecate@1.0.2: {}
@@ -12108,22 +12165,32 @@ snapshots:
spdx-correct: 3.1.1
spdx-expression-parse: 3.0.1
- vant@4.9.17(vue@3.5.13(typescript@5.7.3)):
+ vant@4.9.21(vue@3.5.18(typescript@5.8.3)):
dependencies:
'@vant/popperjs': 1.3.0
- '@vant/use': 1.6.0(vue@3.5.13(typescript@5.7.3))
- '@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.7.3)
+ '@vant/use': 1.6.0(vue@3.5.18(typescript@5.8.3))
+ '@vue/shared': 3.5.17
+ vue: 3.5.18(typescript@5.8.3)
vary@1.1.2: {}
- vite-node@3.0.5(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2):
+ vite-dev-rpc@1.1.0(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)):
+ dependencies:
+ birpc: 2.4.0
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
+ vite-hot-client: 2.1.0(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
+
+ vite-hot-client@2.1.0(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)):
+ dependencies:
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
+
+ vite-node@3.2.4(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0):
dependencies:
cac: 6.7.14
- debug: 4.4.0
- es-module-lexer: 1.6.0
+ debug: 4.4.1
+ es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -12138,55 +12205,66 @@ snapshots:
- tsx
- yaml
- vite-plugin-inspect@10.2.1(@nuxt/kit@3.15.4)(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)):
+ vite-plugin-inspect@11.3.2(@nuxt/kit@4.0.3)(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)):
dependencies:
- ansis: 3.14.0
- debug: 4.4.0
+ ansis: 4.1.0
+ debug: 4.4.1
error-stack-parser-es: 1.0.5
- open: 10.1.0
- sirv: 3.0.0
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ ohash: 2.0.11
+ open: 10.2.0
+ perfect-debounce: 1.0.0
+ sirv: 3.0.1
+ unplugin-utils: 0.2.4
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
+ vite-dev-rpc: 1.1.0(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
optionalDependencies:
- '@nuxt/kit': 3.15.4
+ '@nuxt/kit': 4.0.3
transitivePeerDependencies:
- supports-color
- vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2):
+ vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0):
dependencies:
- esbuild: 0.24.2
- postcss: 8.5.2
- rollup: 4.34.7
+ esbuild: 0.25.0
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.46.2
+ tinyglobby: 0.2.14
optionalDependencies:
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
fsevents: 2.3.3
- jiti: 2.4.2
- tsx: 4.19.2
-
- vitest@3.0.5(@types/debug@4.1.12)(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2):
- dependencies:
- '@vitest/expect': 3.0.5
- '@vitest/mocker': 3.0.5(vite@6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2))
- '@vitest/pretty-format': 3.0.5
- '@vitest/runner': 3.0.5
- '@vitest/snapshot': 3.0.5
- '@vitest/spy': 3.0.5
- '@vitest/utils': 3.0.5
- chai: 5.1.2
- debug: 4.4.0
- expect-type: 1.1.0
+ jiti: 2.5.1
+ tsx: 4.19.3
+ yaml: 2.8.0
+
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0):
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(vite@7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0))
+ '@vitest/pretty-format': 3.2.4
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.2.0
+ debug: 4.4.1
+ expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
- std-env: 3.8.0
+ picomatch: 4.0.2
+ std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinypool: 1.0.2
+ tinyglobby: 0.2.14
+ tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.1.0(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
- vite-node: 3.0.5(@types/node@22.13.4)(jiti@2.4.2)(tsx@4.19.2)
+ vite: 7.0.6(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
+ vite-node: 3.2.4(@types/node@24.2.0)(jiti@2.5.1)(tsx@4.19.3)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.13.4
+ '@types/node': 24.2.0
transitivePeerDependencies:
- jiti
- less
@@ -12201,40 +12279,39 @@ snapshots:
- tsx
- yaml
- vscode-uri@3.0.8: {}
+ vscode-uri@3.1.0: {}
- vue-demi@0.12.1(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45):
+ vue-demi@0.14.10(@vue/composition-api@1.7.2(vue@3.2.45))(vue@3.2.45):
dependencies:
vue: 3.2.45
optionalDependencies:
'@vue/composition-api': 1.7.2(vue@3.2.45)
- vue-eslint-parser@9.4.3(eslint@9.20.1(jiti@2.4.2)):
+ vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- debug: 4.4.0
- eslint: 9.20.1(jiti@2.4.2)
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
+ debug: 4.4.1
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
esquery: 1.6.0
- lodash: 4.17.21
- semver: 7.7.1
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
vue-hot-reload-api@2.3.4: {}
- vue-loader@15.9.8(@vue/compiler-sfc@3.5.13)(css-loader@6.7.1(webpack@5.70.0(esbuild@0.24.2)))(lodash@4.17.21)(webpack@5.70.0(esbuild@0.24.2)):
+ vue-loader@15.11.1(@vue/compiler-sfc@3.5.18)(css-loader@6.7.1(webpack@5.70.0))(lodash@4.17.21)(webpack@5.70.0):
dependencies:
'@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)
- css-loader: 6.7.1(webpack@5.70.0(esbuild@0.24.2))
+ css-loader: 6.7.1(webpack@5.70.0)
hash-sum: 1.0.2
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
vue-hot-reload-api: 2.3.4
vue-style-loader: 4.1.3
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
optionalDependencies:
- '@vue/compiler-sfc': 3.5.13
+ '@vue/compiler-sfc': 3.5.18
transitivePeerDependencies:
- arc-templates
- atpl
@@ -12290,30 +12367,30 @@ snapshots:
- walrus
- whiskers
- vue-loader@17.0.0(webpack@5.70.0(esbuild@0.24.2)):
+ vue-loader@17.0.0(webpack@5.70.0):
dependencies:
chalk: 4.1.2
hash-sum: 2.0.0
loader-utils: 2.0.2
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
- vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)):
+ vue-router@4.5.1(vue@3.5.18(typescript@5.8.3)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.8.3)
vue-style-loader@4.1.3:
dependencies:
hash-sum: 1.0.2
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
vue-template-es2015-compiler@1.9.1: {}
- vue-tsc@2.2.0(typescript@5.7.3):
+ vue-tsc@3.0.5(typescript@5.8.3):
dependencies:
- '@volar/typescript': 2.4.11
- '@vue/language-core': 2.2.0(typescript@5.7.3)
- typescript: 5.7.3
+ '@volar/typescript': 2.4.22
+ '@vue/language-core': 3.0.5(typescript@5.8.3)
+ typescript: 5.8.3
vue@2.7.16:
dependencies:
@@ -12328,20 +12405,20 @@ snapshots:
'@vue/server-renderer': 3.2.45(vue@3.2.45)
'@vue/shared': 3.2.45
- vue@3.5.13(typescript@5.7.3):
+ vue@3.5.18(typescript@5.8.3):
dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-sfc': 3.5.13
- '@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.3))
- '@vue/shared': 3.5.13
+ '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-sfc': 3.5.18
+ '@vue/runtime-dom': 3.5.18
+ '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.8.3))
+ '@vue/shared': 3.5.18
optionalDependencies:
- typescript: 5.7.3
+ typescript: 5.8.3
watchpack@2.3.1:
dependencies:
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
wbuf@1.7.3:
dependencies:
@@ -12353,11 +12430,9 @@ snapshots:
webidl-conversions@3.0.1: {}
- webidl-conversions@4.0.2: {}
-
webpack-bundle-analyzer@4.5.0:
dependencies:
- acorn: 8.14.0
+ acorn: 8.15.0
acorn-walk: 8.3.2
chalk: 4.1.2
commander: 7.2.0
@@ -12375,16 +12450,16 @@ snapshots:
deepmerge: 1.5.2
javascript-stringify: 2.1.0
- webpack-dev-middleware@5.3.1(webpack@5.70.0(esbuild@0.24.2)):
+ webpack-dev-middleware@5.3.1(webpack@5.70.0):
dependencies:
colorette: 2.0.19
memfs: 3.4.1
mime-types: 2.1.34
range-parser: 1.2.1
schema-utils: 4.0.0
- webpack: 5.70.0(esbuild@0.24.2)
+ webpack: 5.70.0
- webpack-dev-server@4.7.4(debug@4.4.0)(webpack@5.70.0(esbuild@0.24.2)):
+ webpack-dev-server@4.7.4(debug@4.4.1)(webpack@5.70.0):
dependencies:
'@types/bonjour': 3.5.10
'@types/connect-history-api-fallback': 1.3.5
@@ -12401,9 +12476,9 @@ snapshots:
default-gateway: 6.0.3
del: 6.0.0
express: 4.17.3
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
html-entities: 2.3.2
- http-proxy-middleware: 2.0.3(@types/express@4.17.13)(debug@4.4.0)
+ http-proxy-middleware: 2.0.3(@types/express@4.17.13)(debug@4.4.1)
ipaddr.js: 2.0.1
open: 8.4.0
p-retry: 4.6.1
@@ -12414,8 +12489,8 @@ snapshots:
sockjs: 0.3.24
spdy: 4.0.2
strip-ansi: 7.0.1
- webpack: 5.70.0(esbuild@0.24.2)
- webpack-dev-middleware: 5.3.1(webpack@5.70.0(esbuild@0.24.2))
+ webpack: 5.70.0
+ webpack-dev-middleware: 5.3.1(webpack@5.70.0)
ws: 8.5.0
transitivePeerDependencies:
- bufferutil
@@ -12434,30 +12509,30 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.70.0(esbuild@0.24.2):
+ webpack@5.70.0:
dependencies:
'@types/eslint-scope': 3.7.3
'@types/estree': 0.0.51
'@webassemblyjs/ast': 1.11.1
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.14.0
- acorn-import-assertions: 1.8.0(acorn@8.14.0)
- browserslist: 4.24.2
+ acorn: 8.15.0
+ acorn-import-assertions: 1.8.0(acorn@8.15.0)
+ browserslist: 4.24.4
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.17.1
+ enhanced-resolve: 5.18.1
es-module-lexer: 0.9.3
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
- graceful-fs: 4.2.9
+ graceful-fs: 4.2.11
json-parse-better-errors: 1.0.2
loader-runner: 4.2.0
mime-types: 2.1.34
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.3.1(esbuild@0.24.2)(webpack@5.70.0(esbuild@0.24.2))
+ terser-webpack-plugin: 5.3.1(webpack@5.70.0)
watchpack: 2.3.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -12480,12 +12555,6 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
- whatwg-url@7.1.0:
- dependencies:
- lodash.sortby: 4.7.0
- tr46: 1.0.1
- webidl-conversions: 4.0.2
-
which@1.3.1:
dependencies:
isexe: 2.0.0
@@ -12501,6 +12570,8 @@ snapshots:
wildcard@2.0.0: {}
+ word-wrap@1.2.5: {}
+
wrap-ansi@3.0.1:
dependencies:
string-width: 2.1.1
@@ -12512,18 +12583,16 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
- dependencies:
- ansi-styles: 6.2.1
- string-width: 5.1.2
- strip-ansi: 7.0.1
-
wrappy@1.0.2: {}
ws@7.5.7: {}
ws@8.5.0: {}
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.0
+
xml-name-validator@4.0.0: {}
y18n@5.0.8: {}
@@ -12534,20 +12603,17 @@ snapshots:
yallist@4.0.0: {}
- yaml-eslint-parser@1.2.3:
+ yaml-eslint-parser@1.3.0:
dependencies:
eslint-visitor-keys: 3.4.3
- lodash: 4.17.21
- yaml: 2.1.1
+ yaml: 2.8.0
yaml@1.10.2: {}
- yaml@2.1.1: {}
+ yaml@2.8.0: {}
yargs-parser@20.2.9: {}
- yargs-parser@21.1.1: {}
-
yargs@16.2.0:
dependencies:
cliui: 7.0.4
@@ -12558,16 +12624,6 @@ snapshots:
y18n: 5.0.8
yargs-parser: 20.2.9
- yargs@17.7.2:
- dependencies:
- cliui: 8.0.1
- escalade: 3.2.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
- y18n: 5.0.8
- yargs-parser: 21.1.1
-
yocto-queue@0.1.0: {}
zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index fe455acd..00704766 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,2 +1,7 @@
packages:
- examples/*
+onlyBuiltDependencies:
+ - core-js
+ - esbuild
+ - unrs-resolver
+ - vue-demi
diff --git a/src/core/context.ts b/src/core/context.ts
index 1e40f340..5f5e04a1 100644
--- a/src/core/context.ts
+++ b/src/core/context.ts
@@ -6,7 +6,7 @@ import process from 'node:process'
import { slash, throttle, toArray } from '@antfu/utils'
import Debug from 'debug'
import { DIRECTIVE_IMPORT_PREFIX } from './constants'
-import { writeDeclaration } from './declaration'
+import { writeComponentsJson, writeDeclaration } from './declaration'
import { searchComponents } from './fs/glob'
import { resolveOptions } from './options'
import transformer from './transformer'
@@ -34,12 +34,24 @@ export class Context {
root = process.cwd()
sourcemap: string | boolean = true
alias: Record = {}
+ dumpComponentsInfoPath: string | undefined
constructor(
private rawOptions: Options,
) {
this.options = resolveOptions(rawOptions, this.root)
+ this.sourcemap = rawOptions.sourcemap ?? true
this.generateDeclaration = throttle(500, this._generateDeclaration.bind(this), { noLeading: false })
+
+ if (this.options.dumpComponentsInfo) {
+ const dumpComponentsInfo = this.options.dumpComponentsInfo === true
+ ? './.components-info.json'
+ : this.options.dumpComponentsInfo ?? false
+
+ this.dumpComponentsInfoPath = dumpComponentsInfo
+ this.generateComponentsJson = throttle(500, this._generateComponentsJson.bind(this), { noLeading: false })
+ }
+
this.setTransformer(this.options.transformer)
}
@@ -168,6 +180,7 @@ export class Context {
onUpdate(path: string) {
this.generateDeclaration()
+ this.generateComponentsJson()
if (!this._server)
return
@@ -202,7 +215,10 @@ export class Context {
Array
.from(this._componentPaths)
.forEach((path) => {
- const name = pascalCase(getNameFromFilePath(path, this.options))
+ const fileName = getNameFromFilePath(path, this.options)
+ const name = this.options.prefix
+ ? `${pascalCase(this.options.prefix)}${pascalCase(fileName)}`
+ : pascalCase(fileName)
if (isExclude(name, this.options.excludeNames)) {
debug.components('exclude', name)
return
@@ -287,7 +303,7 @@ export class Context {
if (!this.options.dts)
return
- debug.declaration('generating')
+ debug.declaration('generating dts')
return writeDeclaration(this, this.options.dts, removeUnused)
}
@@ -295,6 +311,18 @@ export class Context {
this._generateDeclaration(removeUnused)
}
+ _generateComponentsJson(removeUnused = !this._server) {
+ if (!Object.keys(this._componentNameMap).length)
+ return
+
+ debug.components('generating components-info')
+ return writeComponentsJson(this, removeUnused)
+ }
+
+ generateComponentsJson(removeUnused = !this._server): void {
+ this._generateComponentsJson(removeUnused)
+ }
+
get componentNameMap() {
return this._componentNameMap
}
diff --git a/src/core/declaration.ts b/src/core/declaration.ts
index 2c4b633d..cd92106e 100644
--- a/src/core/declaration.ts
+++ b/src/core/declaration.ts
@@ -12,7 +12,7 @@ const singlelineCommentsRE = /\/\/.*$/gm
function extractImports(code: string) {
// eslint-disable-next-line regexp/no-super-linear-backtracking, regexp/no-misleading-capturing-group
- return Object.fromEntries(Array.from(code.matchAll(/['"]?([^\s'"]+)['"]?\s*:\s*(.+?)[,;\n]/g)).map(i => [i[1], i[2]]))
+ return Object.fromEntries(Array.from(code.matchAll(/['"]?([^\s'"]+)['"]?\s*:\s*(.+?)[,;\r\n]/g)).map(i => [i[1], i[2]]))
}
export function parseDeclaration(code: string): DeclarationImports | undefined {
@@ -31,7 +31,7 @@ export function parseDeclaration(code: string): DeclarationImports | undefined {
if (componentDeclaration)
imports.component = extractImports(componentDeclaration)
- const directiveDeclaration = /export\s+interface\s+ComponentCustomProperties\s*\{.*?\}/s.exec(code)?.[0]
+ const directiveDeclaration = /export\s+interface\s+GlobalDirectives\s*\{.*?\}/s.exec(code)?.[0]
if (directiveDeclaration)
imports.directive = extractImports(directiveDeclaration)
@@ -118,6 +118,7 @@ export function getDeclaration(ctx: Context, filepath: string, originalImports?:
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
@@ -131,7 +132,7 @@ declare module 'vue' {`
}
if (Object.keys(declarations.directive).length > 0) {
code += `
- export interface ComponentCustomProperties {
+ export interface GlobalDirectives {
${declarations.directive.join('\n ')}
}`
}
@@ -155,3 +156,22 @@ export async function writeDeclaration(ctx: Context, filepath: string, removeUnu
if (code !== originalContent)
await writeFile(filepath, code)
}
+
+export async function writeComponentsJson(ctx: Context, _removeUnused = false) {
+ if (!ctx.dumpComponentsInfoPath)
+ return
+
+ const components = [
+ ...Object.entries({
+ ...ctx.componentNameMap,
+ ...ctx.componentCustomMap,
+ }).map(([_, { name, as, from }]) => ({
+ name: name || 'default',
+ as,
+ from,
+ })),
+ ...resolveTypeImports(ctx.options.types),
+ ]
+
+ await writeFile(ctx.dumpComponentsInfoPath, JSON.stringify(components, null, 2))
+}
diff --git a/src/core/fs/glob.ts b/src/core/fs/glob.ts
index eb917792..912d326b 100644
--- a/src/core/fs/glob.ts
+++ b/src/core/fs/glob.ts
@@ -12,6 +12,7 @@ export function searchComponents(ctx: Context) {
onlyFiles: true,
cwd: root,
absolute: true,
+ expandDirectories: false,
})
if (!files.length && !ctx.options.resolvers?.length)
diff --git a/src/core/options.ts b/src/core/options.ts
index 2c3939dc..699062bc 100644
--- a/src/core/options.ts
+++ b/src/core/options.ts
@@ -3,8 +3,9 @@ import { join, resolve } from 'node:path'
import { slash, toArray } from '@antfu/utils'
import { getPackageInfoSync, isPackageExists } from 'local-pkg'
import { detectTypeImports } from './type-imports/detect'
+import { escapeSpecialChars } from './utils'
-export const defaultOptions: Omit, 'include' | 'exclude' | 'excludeNames' | 'transformer' | 'globs' | 'directives' | 'types' | 'version'> = {
+export const defaultOptions: Omit, 'include' | 'exclude' | 'excludeNames' | 'transformer' | 'globs' | 'globsExclude' | 'directives' | 'types' | 'version'> = {
dirs: 'src/components',
extensions: 'vue',
deep: true,
@@ -17,11 +18,14 @@ export const defaultOptions: Omit, 'include' | 'exclude' | 'ex
transformerUserResolveFunctions: true,
resolvers: [],
- globsExclude: [],
importPathTransform: v => v,
allowOverrides: false,
+
+ sourcemap: true,
+ dumpComponentsInfo: false,
+ prefix: '',
}
function normalizeResolvers(resolvers: (ComponentResolver | ComponentResolver[])[]): ComponentResolverObject[] {
@@ -30,7 +34,7 @@ function normalizeResolvers(resolvers: (ComponentResolver | ComponentResolver[])
function resolveGlobsExclude(root: string, glob: string) {
const excludeReg = /^!/
- return `${excludeReg.test(glob) ? '!' : ''}${resolve(root, glob.replace(excludeReg, ''))}`
+ return slash(`${excludeReg.test(glob) ? '!' : ''}${resolve(root, glob.replace(excludeReg, ''))}`)
}
export function resolveOptions(options: Options, root: string): ResolvedOptions {
@@ -39,7 +43,8 @@ export function resolveOptions(options: Options, root: string): ResolvedOptions
resolved.extensions = toArray(resolved.extensions)
if (resolved.globs) {
- resolved.globs = toArray(resolved.globs).map((glob: string) => slash(resolveGlobsExclude(root, glob)))
+ resolved.globs = toArray(resolved.globs)
+ .map(glob => resolveGlobsExclude(root, glob))
resolved.resolvedDirs = []
}
else {
@@ -48,17 +53,36 @@ export function resolveOptions(options: Options, root: string): ResolvedOptions
: `{${resolved.extensions.join(',')}}`
resolved.dirs = toArray(resolved.dirs)
- resolved.resolvedDirs = resolved.dirs.map(i => slash(resolveGlobsExclude(root, i)))
- resolved.globs = resolved.resolvedDirs.map(i => resolved.deep
- ? slash(join(i, `**/*.${extsGlob}`))
- : slash(join(i, `*.${extsGlob}`)),
- )
+ const globs = resolved.dirs.map(i => resolveGlobsExclude(root, i))
+
+ resolved.resolvedDirs = globs.filter(i => !i.startsWith('!'))
+ resolved.globs = globs.map((i) => {
+ let prefix = ''
+ if (i.startsWith('!')) {
+ prefix = '!'
+ i = i.slice(1)
+ }
+ return resolved.deep
+ ? prefix + escapeSpecialChars(slash(join(i, `**/*.${extsGlob}`)))
+ : prefix + escapeSpecialChars(slash(join(i, `*.${extsGlob}`)))
+ })
if (!resolved.extensions.length)
throw new Error('[unplugin-vue-components] `extensions` option is required to search for components')
}
+ resolved.globsExclude = toArray(resolved.globsExclude || [])
+ .map(i => resolveGlobsExclude(root, i))
+
+ // Move negated globs to globsExclude
+ resolved.globs = resolved.globs.filter((i) => {
+ if (!i.startsWith('!'))
+ return true
+ resolved.globsExclude.push(i.slice(1))
+ return false
+ })
+
resolved.dts = !resolved.dts
? false
: resolve(
diff --git a/src/core/resolvers/element-plus.ts b/src/core/resolvers/element-plus.ts
index 3b312d74..b7619089 100644
--- a/src/core/resolvers/element-plus.ts
+++ b/src/core/resolvers/element-plus.ts
@@ -45,8 +45,8 @@ export interface ElementPlusResolverOptions {
nightly?: boolean
}
-type ElementPlusResolverOptionsResolved = Required> &
- Pick
+type ElementPlusResolverOptionsResolved = Required>
+ & Pick
/**
* @deprecated
diff --git a/src/core/resolvers/ionic.ts b/src/core/resolvers/ionic.ts
index 5aa01d50..b3a504ad 100644
--- a/src/core/resolvers/ionic.ts
+++ b/src/core/resolvers/ionic.ts
@@ -82,10 +82,12 @@ export const IonicBuiltInComponents = [
'IonSegmentContent',
'IonSegmentView',
'IonSelect',
+ 'IonSelectModal',
'IonSelectOption',
'IonSkeletonText',
'IonSpinner',
'IonSplitPane',
+ 'IonTab',
'IonTabBar',
'IonTabButton',
'IonTabs',
diff --git a/src/core/resolvers/tdesign.ts b/src/core/resolvers/tdesign.ts
index 4ebf3e4d..283d7368 100644
--- a/src/core/resolvers/tdesign.ts
+++ b/src/core/resolvers/tdesign.ts
@@ -46,6 +46,13 @@ export function TDesignResolver(options: TDesignResolverOptions = {}): Component
}
}
+ if (name.startsWith('TTypography') || name.startsWith('Typography')) {
+ return {
+ name: name.slice(name.startsWith('TTypography') ? 11 : 10),
+ from: `tdesign-${library}${importFrom}`,
+ }
+ }
+
if (name.match(/^T[A-Z]/) || pluginList.includes(name)) {
const importName = name.match(/^T[A-Z]/) ? name.slice(1) : name
diff --git a/src/core/unplugin.ts b/src/core/unplugin.ts
index 5f07ad43..39616787 100644
--- a/src/core/unplugin.ts
+++ b/src/core/unplugin.ts
@@ -13,7 +13,12 @@ const PLUGIN_NAME = 'unplugin:webpack'
export default createUnplugin((options = {}) => {
const filter = createFilter(
- options.include || [/\.vue$/, /\.vue\?vue/, /\.vue\?v=/],
+ options.include || [
+ /\.vue$/,
+ /\.vue\?vue/,
+ /\.vue\.[tj]sx?\?vue/, // for vue-loader with experimentalInlineMatchResource enabled
+ /\.vue\?v=/,
+ ],
options.exclude || [/[\\/]node_modules[\\/]/, /[\\/]\.git[\\/]/, /[\\/]\.nuxt[\\/]/],
)
const ctx: Context = new Context(options)
@@ -43,6 +48,7 @@ export default createUnplugin((options = {}) => {
try {
const result = await ctx.transform(code, id)
ctx.generateDeclaration()
+ ctx.generateComponentsJson()
return result
}
catch (e) {
@@ -64,6 +70,11 @@ export default createUnplugin((options = {}) => {
ctx.generateDeclaration()
}
+ if (ctx.options.dumpComponentsInfo && ctx.dumpComponentsInfoPath) {
+ if (!existsSync(ctx.dumpComponentsInfoPath))
+ ctx.generateComponentsJson()
+ }
+
if (config.build.watch && config.command === 'build')
ctx.setupWatcher(chokidar.watch(ctx.options.globs))
},
diff --git a/src/core/utils.ts b/src/core/utils.ts
index 53e1c132..ab86231d 100644
--- a/src/core/utils.ts
+++ b/src/core/utils.ts
@@ -242,3 +242,9 @@ export function isExclude(name: string, exclude?: FilterPattern): boolean {
}
return false
}
+
+const ESCAPE_PARENTHESES_REGEX = /[()]/g
+
+export function escapeSpecialChars(str: string): string {
+ return str.replace(ESCAPE_PARENTHESES_REGEX, '\\$&')
+}
diff --git a/src/rolldown.ts b/src/rolldown.ts
new file mode 100644
index 00000000..34c46599
--- /dev/null
+++ b/src/rolldown.ts
@@ -0,0 +1,3 @@
+import unplugin from '.'
+
+export default unplugin.rolldown
diff --git a/src/types.ts b/src/types.ts
index f16133a7..bce2a70c 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -114,6 +114,11 @@ export interface Options {
*/
directoryAsNamespace?: boolean
+ /**
+ * Generate components with prefix.
+ */
+ prefix?: string
+
/**
* Collapse same prefixes (camel-sensitive) of folders and components
* to prevent duplication inside namespaced component name.
@@ -198,6 +203,23 @@ export interface Options {
* Vue version of project. It will detect automatically if not specified.
*/
version?: 2 | 2.7 | 3
+
+ /**
+ * Generate sourcemap for the transformed code.
+ *
+ * @default true
+ */
+ sourcemap?: boolean
+
+ /**
+ * Save component information into a JSON file for other tools to consume.
+ * Provide a filepath to save the JSON file.
+ *
+ * When set to `true`, it will save to `./.components-info.json`
+ *
+ * @default false
+ */
+ dumpComponentsInfo?: boolean | string
}
export type ResolvedOptions = Omit<
@@ -209,6 +231,7 @@ export type ResolvedOptions = Omit<
dirs: string[]
resolvedDirs: string[]
globs: string[]
+ globsExclude: string[]
dts: string | false
root: string
}
diff --git a/test/__snapshots__/dts.test.ts.snap b/test/__snapshots__/dts.test.ts.snap
index 7dabf7c9..1359bad0 100644
--- a/test/__snapshots__/dts.test.ts.snap
+++ b/test/__snapshots__/dts.test.ts.snap
@@ -5,6 +5,7 @@ exports[`dts > components only 1`] = `
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
@@ -23,11 +24,48 @@ exports[`dts > directive only 1`] = `
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
declare module 'vue' {
- export interface ComponentCustomProperties {
+ export interface GlobalDirectives {
+ vLoading: typeof import('test/directive/Loading')['default']
+ }
+}
+"
+`;
+
+exports[`dts > generate components with prefix 1`] = `
+"/* eslint-disable */
+// @ts-nocheck
+// Generated by unplugin-vue-components
+// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
+export {}
+
+/* prettier-ignore */
+declare module 'vue' {
+ export interface GlobalComponents {
+ CustomPrefixAvatar: typeof import('./examples/vite-vue3/src/components/global/avatar.vue')['default']
+ CustomPrefixBook: typeof import('./examples/vite-vue3/src/components/book/index.vue')['default']
+ CustomPrefixButton: typeof import('./examples/vite-vue3/src/components/ui/button.vue')['default']
+ CustomPrefixCheckbox: typeof import('./examples/vite-vue3/src/components/ui/nested/checkbox.vue')['default']
+ CustomPrefixCollapseFolderAndComponentFromRoot: typeof import('./examples/vite-vue3/src/components/collapse/collapseFolder/CollapseFolderAndComponentFromRoot.vue')['default']
+ CustomPrefixComponentA: typeof import('./examples/vite-vue3/src/components/ComponentA.vue')['default']
+ CustomPrefixComponentAsync: typeof import('./examples/vite-vue3/src/components/ComponentAsync.vue')['default']
+ CustomPrefixComponentB: typeof import('./examples/vite-vue3/src/components/ComponentB.vue')['default']
+ CustomPrefixComponentC: typeof import('./examples/vite-vue3/src/components/component-c.vue')['default']
+ CustomPrefixComponentD: typeof import('./examples/vite-vue3/src/components/ComponentD.vue')['default']
+ CustomPrefixFolderAndComponentPartially: typeof import('./examples/vite-vue3/src/components/collapse/collapseFolder/FolderAndComponentPartially.vue')['default']
+ CustomPrefixKebabCaseCollapseFile: typeof import('./examples/vite-vue3/src/components/kebab-case/kebab-case-collapse/KebabCaseCollapseFile.vue')['default']
+ CustomPrefixKebabCaseFile: typeof import('./examples/vite-vue3/src/components/kebab-case/KebabCaseFile.vue')['default']
+ CustomPrefixRecursive: typeof import('./examples/vite-vue3/src/components/Recursive.vue')['default']
+ RouterLink: typeof import('vue-router')['RouterLink']
+ RouterView: typeof import('vue-router')['RouterView']
+ TestComp: typeof import('test/component/TestComp')['default']
+ }
+ export interface GlobalDirectives {
vLoading: typeof import('test/directive/Loading')['default']
}
}
@@ -39,6 +77,7 @@ exports[`dts > getDeclaration 1`] = `
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
@@ -48,7 +87,7 @@ declare module 'vue' {
RouterView: typeof import('vue-router')['RouterView']
TestComp: typeof import('test/component/TestComp')['default']
}
- export interface ComponentCustomProperties {
+ export interface GlobalDirectives {
vLoading: typeof import('test/directive/Loading')['default']
}
}
@@ -97,6 +136,7 @@ exports[`dts > vue 2.7 components only 1`] = `
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
@@ -115,6 +155,7 @@ exports[`dts > writeDeclaration - keep unused 1`] = `
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
@@ -125,7 +166,7 @@ declare module 'vue' {
SomeComp: typeof import('test/component/SomeComp')['default']
TestComp: typeof import('test/component/TestComp')['default']
}
- export interface ComponentCustomProperties {
+ export interface GlobalDirectives {
vDirective: typeof import('foo')
vLoading: typeof import('test/directive/Loading')['default']
vSome: typeof import('test/directive/Some')['default']
@@ -139,6 +180,7 @@ exports[`dts > writeDeclaration 1`] = `
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
+// biome-ignore lint: disable
export {}
/* prettier-ignore */
@@ -148,7 +190,7 @@ declare module 'vue' {
RouterView: typeof import('vue-router')['RouterView']
TestComp: typeof import('test/component/TestComp')['default']
}
- export interface ComponentCustomProperties {
+ export interface GlobalDirectives {
vLoading: typeof import('test/directive/Loading')['default']
}
}
diff --git a/test/__snapshots__/transform.test.ts.snap b/test/__snapshots__/transform.test.ts.snap
index 14fb2184..1c48d31f 100644
--- a/test/__snapshots__/transform.test.ts.snap
+++ b/test/__snapshots__/transform.test.ts.snap
@@ -63,6 +63,28 @@ import __unplugin_components_0 from 'test/component/ElInfiniteScroll';
}
`;
+exports[`prefix transform > transform with prefix should work 1`] = `
+{
+ "code": "/* unplugin-vue-components disabled */import __unplugin_components_2 from 'test/component/test-comp.vue';
+import __unplugin_components_1 from 'test/component/test-comp.vue';
+import __unplugin_components_0 from 'test/component/test-comp.vue';
+
+ const render = (_ctx, _cache) => {
+ const _component_test_comp = __unplugin_components_0
+ const _component_testComp = __unplugin_components_1
+ const _component_testComp = __unplugin_components_2
+
+ return _withDirectives(
+ (_openBlock(),
+ _createBlock(_component_test_comp, null, null, 512 /* NEED_PATCH */)),
+ _createBlock(_component_testComp, null, null, 512 /* NEED_PATCH */)),
+ _createBlock(_component_TestComp, null, null, 512 /* NEED_PATCH */))
+ )
+ }
+ ",
+}
+`;
+
exports[`transform > vue2 transform should work 1`] = `
{
"code": "/* unplugin-vue-components disabled */import __unplugin_directives_0 from 'test/directive/Loading';
diff --git a/test/dts.test.ts b/test/dts.test.ts
index b26ccba4..aa8715d1 100644
--- a/test/dts.test.ts
+++ b/test/dts.test.ts
@@ -5,6 +5,7 @@ import { describe, expect, it } from 'vitest'
import { Context } from '../src/core/context'
import { getDeclaration, parseDeclaration } from '../src/core/declaration'
+const root = path.resolve(__dirname, '../examples/vite-vue3')
const resolver: ComponentResolver[] = [
{
type: 'component',
@@ -57,7 +58,7 @@ declare module 'vue' {
SomeComp: typeof import('test/component/SomeComp')['default']
TestComp: typeof import('test/component/OldComp')['default']
}
- export interface ComponentCustomProperties{
+ export interface GlobalDirectives{
// with comment: b
// a:
vSome: typeof import('test/directive/Some')['default'];vDirective:typeof import('foo')
@@ -179,7 +180,7 @@ declare module 'vue' {
IMdiLightAlarm: typeof import('~icons/mdi-light/alarm')['default']
}
- export interface ComponentCustomProperties {
+ export interface GlobalDirectives {
vDirective: typeof import('foo')
vLoading: typeof import('test/directive/Loading')['default']
vSome: typeof import('test/directive/Some')['default']
@@ -189,4 +190,21 @@ declare module 'vue' {
const imports = parseDeclaration(code)
expect(imports).matchSnapshot()
})
+
+ it('generate components with prefix', async () => {
+ const ctx = new Context({
+ resolvers: resolver,
+ directives: true,
+ prefix: 'CustomPrefix',
+ dirs: ['src/components'],
+ })
+ ctx.setRoot(root)
+ const code = `
+const _component_test_comp = _resolveComponent("test-comp")
+const _directive_loading = _resolveDirective("loading")`
+ await ctx.transform(code, '')
+
+ const declarations = getDeclaration(ctx, 'test.d.ts')
+ expect(declarations).toMatchSnapshot()
+ })
})
diff --git a/test/search.test.ts b/test/search.test.ts
index e48bec4d..3277da05 100644
--- a/test/search.test.ts
+++ b/test/search.test.ts
@@ -1,5 +1,5 @@
import { relative, resolve } from 'pathe'
-import { describe, expect, it } from 'vitest'
+import { describe, expect, it, onTestFailed } from 'vitest'
import { Context } from '../src/core/context'
const root = resolve(__dirname, '../examples/vite-vue3')
@@ -64,10 +64,18 @@ describe('search', () => {
'!src/components/book',
],
})
+
+ onTestFailed(() => {
+ console.error('resolved options')
+ console.error(ctx.options)
+ })
+
ctx.setRoot(root)
ctx.searchGlob()
- expect(cleanup(ctx.componentNameMap).map(i => i.as)).not.toEqual(expect.arrayContaining(['Book']))
+ expect(cleanup(ctx.componentNameMap).map(i => i.as))
+ .not
+ .contain('Book')
})
it('should excludeNames', () => {
diff --git a/test/transform.test.ts b/test/transform.test.ts
index 6544e5e1..9b3f5db3 100644
--- a/test/transform.test.ts
+++ b/test/transform.test.ts
@@ -1,5 +1,6 @@
import type { ComponentResolver } from '../src'
import { describe, expect, it } from 'vitest'
+import { pascalCase } from '../src'
import { Context } from '../src/core/context'
const resolver: ComponentResolver[] = [
@@ -173,3 +174,38 @@ describe('component and directive as same name', () => {
expect(await ctx.transform(code, '')).toMatchSnapshot()
})
})
+
+describe('prefix transform', () => {
+ it('transform with prefix should work', async () => {
+ const code = `
+ const render = (_ctx, _cache) => {
+ const _component_test_comp = _resolveComponent("custom-prefix-test-comp")
+ const _component_testComp = _resolveComponent("CustomPrefixTestComp")
+ const _component_testComp = _resolveComponent("customPrefixTestComp")
+
+ return _withDirectives(
+ (_openBlock(),
+ _createBlock(_component_test_comp, null, null, 512 /* NEED_PATCH */)),
+ _createBlock(_component_testComp, null, null, 512 /* NEED_PATCH */)),
+ _createBlock(_component_TestComp, null, null, 512 /* NEED_PATCH */))
+ )
+ }
+ `
+
+ const ctx = new Context({
+ prefix: 'CustomPrefix',
+ directives: true,
+ })
+ ctx.sourcemap = false
+ const componentName = 'TestComp'
+ const name = `${pascalCase(ctx.options.prefix)}${pascalCase(componentName)}`
+ // @ts-expect-error for test
+ ctx._componentNameMap = {
+ [name]: {
+ as: name,
+ from: 'test/component/test-comp.vue',
+ },
+ }
+ expect(await ctx.transform(code, '')).toMatchSnapshot()
+ })
+})
diff --git a/test/utils.test.ts b/test/utils.test.ts
index cdabab87..a9f38bf2 100644
--- a/test/utils.test.ts
+++ b/test/utils.test.ts
@@ -1,6 +1,6 @@
import type { ResolvedOptions } from '../src'
import { describe, expect, it } from 'vitest'
-import { getNameFromFilePath } from '../src/core/utils'
+import { escapeSpecialChars, getNameFromFilePath } from '../src/core/utils'
describe('getNameFromFilePath', () => {
const options: Partial = {
@@ -20,3 +20,9 @@ describe('getNameFromFilePath', () => {
expect(getNameFromFilePath(inComponentFilePath, options as ResolvedOptions)).toBe('a1-b2-c3-d4-ef-ghi')
})
})
+
+describe('escapeSpecialChars', () => {
+ it('should escape parentheses', () => {
+ expect(escapeSpecialChars('component()')).toBe('component\\(\\)')
+ })
+})
diff --git a/tsconfig.json b/tsconfig.json
index 85659df5..62c450c5 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -8,6 +8,7 @@
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
+ "noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true
},
diff --git a/tsdown.config.ts b/tsdown.config.ts
new file mode 100644
index 00000000..2cf55521
--- /dev/null
+++ b/tsdown.config.ts
@@ -0,0 +1,6 @@
+import { defineConfig } from 'tsdown'
+
+export default defineConfig({
+ entry: ['src/*.ts'],
+ format: ['esm', 'cjs'],
+})
diff --git a/tsup.config.ts b/tsup.config.ts
deleted file mode 100644
index 674d9e4d..00000000
--- a/tsup.config.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import type { Options } from 'tsup'
-
-export const tsup: Options = {
- entry: [
- 'src/*.ts',
- ],
- format: ['cjs', 'esm'],
- dts: true,
- splitting: true,
- clean: true,
- shims: false,
-}
diff --git a/vitest.config.ts b/vitest.config.ts
index 637aa94f..93c91c41 100644
--- a/vitest.config.ts
+++ b/vitest.config.ts
@@ -2,10 +2,12 @@ import { defineConfig } from 'vite'
export default defineConfig({
test: {
- deps: {
- inline: [
- '@babel/types',
- ],
+ server: {
+ deps: {
+ inline: [
+ '@babel/types',
+ ],
+ },
},
},
})