diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 00000000..7b5ef185
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,6 @@
+{
+ "recommendations": [
+ "dbaeumer.vscode-eslint",
+ "antfu.pnpm-catalog-lens"
+ ]
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 0967ef42..78994605 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1 +1,37 @@
-{}
+{
+ "prettier.enable": false,
+ "editor.formatOnSave": false,
+
+ // Auto fix
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": "explicit",
+ "source.organizeImports": "never"
+ },
+
+ // Silent the stylistic rules in you IDE, but still auto fix them
+ "eslint.rules.customizations": [
+ { "rule": "style/*", "severity": "off" },
+ { "rule": "*-indent", "severity": "off" },
+ { "rule": "*-spacing", "severity": "off" },
+ { "rule": "*-spaces", "severity": "off" },
+ { "rule": "*-order", "severity": "off" },
+ { "rule": "*-dangle", "severity": "off" },
+ { "rule": "*-newline", "severity": "off" },
+ { "rule": "*quotes", "severity": "off" },
+ { "rule": "*semi", "severity": "off" }
+ ],
+
+ // Enable eslint for all supported languages
+ "eslint.validate": [
+ "javascript",
+ "javascriptreact",
+ "typescript",
+ "typescriptreact",
+ "vue",
+ "html",
+ "markdown",
+ "json",
+ "jsonc",
+ "yaml"
+ ]
+}
diff --git a/README.md b/README.md
index 4dae3169..2f7157fa 100644
--- a/README.md
+++ b/README.md
@@ -8,12 +8,12 @@ Unified plugin system for build tools.
Currently supports:
-- [Vite](https://vitejs.dev/)
+- [Vite](https://vite.dev/)
- [Rollup](https://rollupjs.org/)
- [Webpack](https://webpack.js.org/)
- [esbuild](https://esbuild.github.io/)
- [Rspack](https://www.rspack.dev/)
-- [Rolldown](https://rolldown.rs/) (⚠️ experimental)
+- [Rolldown](https://rolldown.rs/)
- [Farm](https://www.farmfe.org/)
- And every framework built on top of them.
diff --git a/docs/guide/index.md b/docs/guide/index.md
index 0a5031b1..6e0fd129 100644
--- a/docs/guide/index.md
+++ b/docs/guide/index.md
@@ -11,12 +11,12 @@ lastUpdated: false
**Unplugin** current supports:
-- [Vite](https://vitejs.dev/)
+- [Vite](https://vite.dev/)
- [Rollup](https://rollupjs.org/)
- [webpack](https://webpack.js.org/)
- [esbuild](https://esbuild.github.io/)
- [Rspack](https://www.rspack.dev/)
-- [Rolldown](https://rolldown.rs/) (⚠️ experimental)
+- [Rolldown](https://rolldown.rs/)
- [Farm](https://www.farmfe.org/)
## Trying It Online
@@ -195,12 +195,12 @@ export default defineConfig({
| Hook | Rollup | Vite | webpack | esbuild | Rspack | Farm | Rolldown |
| --------------------------------------------------------------------------------- | :-------------: | :--: | :-----: | :-------------: | :-------------: | :--: | :------: |
-| [`enforce`](https://vitejs.dev/guide/api-plugin.html#plugin-ordering) | ❌ 1 | ✅ | ✅ | ❌ 1 | ✅ | ✅ | ✅ |
+| [`enforce`](https://vite.dev/guide/api-plugin.html#plugin-ordering) | ❌ 1 | ✅ | ✅ | ❌ 1 | ✅ | ✅ | ✅ |
| [`buildStart`](https://rollupjs.org/plugin-development/#buildstart) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`resolveId`](https://rollupjs.org/plugin-development/#resolveid) | ✅ | ✅ | ✅ | ✅ | ✅ 5 | ✅ | ✅ |
-| `loadInclude`2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
+| ~~`loadInclude`~~2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`load`](https://rollupjs.org/plugin-development/#load) | ✅ | ✅ | ✅ | ✅ 3 | ✅ | ✅ | ✅ |
-| `transformInclude`2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
+| ~~`transformInclude`~~2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`transform`](https://rollupjs.org/plugin-development/#transform) | ✅ | ✅ | ✅ | ✅ 3 | ✅ | ✅ | ✅ |
| [`watchChange`](https://rollupjs.org/plugin-development/#watchchange) | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ |
| [`buildEnd`](https://rollupjs.org/plugin-development/#buildend) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -209,11 +209,14 @@ export default defineConfig({
::: details Notice
1. Rollup and esbuild do not support using `enforce` to control the order of plugins. Users need to maintain the order manually.
-2. webpack's id filter is outside of loader logic; an additional hook is needed for better perf on webpack. In Rollup and Vite, this hook has been polyfilled to match the behaviors. See for the following usage examples.
+2. Webpack's id filter is outside of loader logic; an additional hook is needed for better performance on Webpack and Rolldown.
+ However, it is now deprecated. Please use `transform/load/resolveId.filter` instead.
+ In Rollup, this hook has been polyfilled to match the behaviors. See the following usage examples for reference.
3. Although esbuild can handle both JavaScript and CSS and many other file formats, you can only return JavaScript in `load` and `transform` results.
4. Currently, `writeBundle` is only serves as a hook for the timing. It doesn't pass any arguments.
5. Rspack supports `resolveId` with a minimum required version of v1.0.0-alpha.1.
- :::
+
+:::
### Usage
@@ -227,14 +230,14 @@ export interface Options {
export const unpluginFactory: UnpluginFactory = options => ({
name: 'unplugin-starter',
- // webpack's id filter is outside of loader logic,
- // an additional hook is needed for better perf on webpack
- transformInclude(id) {
- return id.endsWith('main.ts')
- },
- // just like rollup transform
- transform(code) {
- return code.replace(//, 'Injected
')
+ transform: {
+ // an additional hook is needed for better perf on webpack and rolldown
+ filter: {
+ id: /main\.ts$/
+ },
+ handler(code) {
+ return code.replace(//, 'Injected
')
+ },
},
// more hooks coming
})
@@ -334,11 +337,14 @@ export const unpluginFactory: UnpluginFactory = (
console.log(meta.framework) // vite rollup webpack esbuild rspack...
return {
name: 'unplugin-starter',
- transform(code) {
- return code.replace(//, 'Injected
')
- },
- transformInclude(id) {
- return id.endsWith('main.ts')
+ transform: {
+ // an additional hook is needed for better perf on webpack and rolldown
+ filter: {
+ id: /main\.ts$/
+ },
+ handler(code) {
+ return code.replace(//, 'Injected
')
+ },
},
vite: {
// Vite plugin
diff --git a/docs/index.md b/docs/index.md
index 61de10e3..3fe61441 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -24,7 +24,7 @@ hero:
features:
- title: Vite
details: Next Generation Frontend Tooling.
- link: https://vitejs.dev/
+ link: https://vite.dev/
icon:
src: /features/vitejs.svg
diff --git a/docs/package.json b/docs/package.json
index 5929caef..34cd2a6d 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -15,19 +15,19 @@
"devDependencies": {
"@iconify-json/ri": "^1.2.5",
"@shikijs/vitepress-twoslash": "^3.2.1",
- "case-police": "^1.0.0",
+ "case-police": "^2.0.0",
"consola": "^3.4.2",
"dotenv": "^16.4.7",
"markdown-it": "^14.1.0",
- "markdown-it-github-alerts": "^0.3.1",
+ "markdown-it-github-alerts": "^1.0.0",
"ofetch": "^1.4.1",
"tsx": "^4.19.3",
- "unocss": "^66.1.0-beta.6",
+ "unocss": "^66.1.0-beta.10",
"unplugin": "workspace:*",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.4.1",
"vitepress": "2.0.0-alpha.2",
- "vitepress-plugin-group-icons": "^1.3.8",
+ "vitepress-plugin-group-icons": "^1.4.1",
"vue": "^3.5.13",
"vue-tsc": "^2.2.8"
}
diff --git a/eslint.config.js b/eslint.config.js
index c60925f6..da4b4db2 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -2,7 +2,12 @@
import antfu from '@antfu/eslint-config'
export default antfu(
- { vue: true },
+ {
+ vue: true,
+ formatters: {
+ markdown: 'dprint',
+ },
+ },
{
ignores: [
'test-out/**',
diff --git a/package.json b/package.json
index a0be99d0..36203cb4 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "unplugin",
"type": "module",
- "version": "2.2.2",
- "packageManager": "pnpm@10.6.5",
+ "version": "2.3.0",
+ "packageManager": "pnpm@10.8.0",
"description": "Unified plugin system for build tools",
"license": "MIT",
"repository": {
@@ -43,45 +43,48 @@
},
"dependencies": {
"acorn": "^8.14.1",
+ "picomatch": "^4.0.2",
"webpack-virtual-modules": "^0.6.2"
},
"devDependencies": {
"@ampproject/remapping": "^2.3.0",
- "@antfu/eslint-config": "^4.10.2",
+ "@antfu/eslint-config": "^4.11.0",
"@antfu/ni": "^24.3.0",
"@farmfe/cli": "^1.0.4",
- "@farmfe/core": "^1.7.1",
- "@rspack/cli": "^1.2.8",
- "@rspack/core": "^1.2.8",
+ "@farmfe/core": "^1.7.2",
+ "@rspack/cli": "^1.3.4",
+ "@rspack/core": "^1.3.4",
"@types/fs-extra": "^11.0.4",
- "@types/node": "^22.13.11",
+ "@types/node": "^22.14.0",
+ "@types/picomatch": "^3.0.2",
"ansis": "^3.17.0",
"bumpp": "^10.1.0",
- "esbuild": "^0.25.1",
+ "esbuild": "^0.25.2",
"esbuild-plugin-copy": "^2.1.1",
- "eslint": "^9.22.0",
+ "eslint": "^9.24.0",
+ "eslint-plugin-format": "^1.0.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"jiti": "^2.4.2",
"lint-staged": "^15.5.0",
"magic-string": "^0.30.17",
- "rolldown": "^1.0.0-beta.6",
- "rollup": "^4.36.0",
+ "rolldown": "^1.0.0-beta.7",
+ "rollup": "^4.39.0",
"simple-git-hooks": "^2.12.1",
- "tsdown": "^0.6.9",
- "typescript": "~5.8.2",
+ "tsdown": "^0.6.10",
+ "typescript": "~5.8.3",
"unloader": "^0.4.3",
"unplugin": "workspace:*",
- "vite": "^6.2.2",
- "vitest": "^3.0.9",
- "webpack": "^5.98.0",
+ "vite": "^6.2.5",
+ "vitest": "^3.1.1",
+ "webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"resolutions": {
- "esbuild": "^0.25.1"
+ "esbuild": "^0.25.2"
},
"simple-git-hooks": {
- "pre-commit": "pnpm lint-staged"
+ "pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 4ae2b1f0..d9833385 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -5,7 +5,7 @@ settings:
excludeLinksFromLockfile: false
overrides:
- esbuild: ^0.25.1
+ esbuild: ^0.25.2
importers:
@@ -14,6 +14,9 @@ importers:
acorn:
specifier: ^8.14.1
version: 8.14.1
+ picomatch:
+ specifier: ^4.0.2
+ version: 4.0.2
webpack-virtual-modules:
specifier: ^0.6.2
version: 0.6.2
@@ -22,8 +25,8 @@ importers:
specifier: ^2.3.0
version: 2.3.0
'@antfu/eslint-config':
- specifier: ^4.10.2
- version: 4.10.2(@typescript-eslint/utils@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
+ specifier: ^4.11.0
+ version: 4.11.0(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@1.0.1(eslint@9.24.0(jiti@2.4.2)))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
'@antfu/ni':
specifier: ^24.3.0
version: 24.3.0
@@ -31,20 +34,23 @@ importers:
specifier: ^1.0.4
version: 1.0.4
'@farmfe/core':
- specifier: ^1.7.1
- version: 1.7.1
+ specifier: ^1.7.2
+ version: 1.7.2
'@rspack/cli':
- specifier: ^1.2.8
- version: 1.2.8(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.98.0)
+ specifier: ^1.3.4
+ version: 1.3.4(@rspack/core@1.3.4(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.99.5)
'@rspack/core':
- specifier: ^1.2.8
- version: 1.2.8(@swc/helpers@0.5.15)
+ specifier: ^1.3.4
+ version: 1.3.4(@swc/helpers@0.5.15)
'@types/fs-extra':
specifier: ^11.0.4
version: 11.0.4
'@types/node':
- specifier: ^22.13.11
- version: 22.13.11
+ specifier: ^22.14.0
+ version: 22.14.0
+ '@types/picomatch':
+ specifier: ^3.0.2
+ version: 3.0.2
ansis:
specifier: ^3.17.0
version: 3.17.0
@@ -52,14 +58,17 @@ importers:
specifier: ^10.1.0
version: 10.1.0
esbuild:
- specifier: ^0.25.1
- version: 0.25.1
+ specifier: ^0.25.2
+ version: 0.25.2
esbuild-plugin-copy:
specifier: ^2.1.1
- version: 2.1.1(esbuild@0.25.1)
+ version: 2.1.1(esbuild@0.25.2)
eslint:
- specifier: ^9.22.0
- version: 9.22.0(jiti@2.4.2)
+ specifier: ^9.24.0
+ version: 9.24.0(jiti@2.4.2)
+ eslint-plugin-format:
+ specifier: ^1.0.1
+ version: 1.0.1(eslint@9.24.0(jiti@2.4.2))
fast-glob:
specifier: ^3.3.3
version: 3.3.3
@@ -76,20 +85,20 @@ importers:
specifier: ^0.30.17
version: 0.30.17
rolldown:
- specifier: ^1.0.0-beta.6
- version: 1.0.0-beta.6(typescript@5.8.2)
+ specifier: ^1.0.0-beta.7
+ version: 1.0.0-beta.7(typescript@5.8.3)
rollup:
- specifier: ^4.36.0
- version: 4.36.0
+ specifier: ^4.39.0
+ version: 4.39.0
simple-git-hooks:
specifier: ^2.12.1
version: 2.12.1
tsdown:
- specifier: ^0.6.9
- version: 0.6.9(publint@0.3.5)(typescript@5.8.2)(unplugin-unused@0.4.1)
+ specifier: ^0.6.10
+ version: 0.6.10(publint@0.3.5)(typescript@5.8.3)(unplugin-unused@0.4.1)
typescript:
- specifier: ~5.8.2
- version: 5.8.2
+ specifier: ~5.8.3
+ version: 5.8.3
unloader:
specifier: ^0.4.3
version: 0.4.3
@@ -97,17 +106,17 @@ importers:
specifier: workspace:*
version: 'link:'
vite:
- specifier: ^6.2.2
- version: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ specifier: ^6.2.5
+ version: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
vitest:
- specifier: ^3.0.9
- version: 3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
webpack:
- specifier: ^5.98.0
- version: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
+ specifier: ^5.99.5
+ version: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
webpack-cli:
specifier: ^6.0.1
- version: 6.0.1(webpack@5.98.0)
+ version: 6.0.1(webpack@5.99.5)
docs:
devDependencies:
@@ -116,10 +125,10 @@ importers:
version: 1.2.5
'@shikijs/vitepress-twoslash':
specifier: ^3.2.1
- version: 3.2.1(typescript@5.8.2)
+ version: 3.2.1(typescript@5.8.3)
case-police:
- specifier: ^1.0.0
- version: 1.0.0
+ specifier: ^2.0.0
+ version: 2.0.0
consola:
specifier: ^3.4.2
version: 3.4.2
@@ -130,8 +139,8 @@ importers:
specifier: ^14.1.0
version: 14.1.0
markdown-it-github-alerts:
- specifier: ^0.3.1
- version: 0.3.1(markdown-it@14.1.0)
+ specifier: ^1.0.0
+ version: 1.0.0(markdown-it@14.1.0)
ofetch:
specifier: ^1.4.1
version: 1.4.1
@@ -139,8 +148,8 @@ importers:
specifier: ^4.19.3
version: 4.19.3
unocss:
- specifier: ^66.1.0-beta.6
- version: 66.1.0-beta.6(postcss@8.5.3)(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ specifier: ^66.1.0-beta.10
+ version: 66.1.0-beta.10(postcss@8.5.3)(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
unplugin:
specifier: workspace:*
version: link:..
@@ -149,19 +158,19 @@ importers:
version: 22.1.0(@vue/compiler-sfc@3.5.13)
unplugin-vue-components:
specifier: ^28.4.1
- version: 28.4.1(@babel/parser@7.26.10)(vue@3.5.13(typescript@5.8.2))
+ version: 28.4.1(@babel/parser@7.27.0)(vue@3.5.13(typescript@5.8.3))
vitepress:
specifier: 2.0.0-alpha.2
- version: 2.0.0-alpha.2(@algolia/client-search@5.21.0)(@types/node@22.13.11)(jiti@2.4.2)(postcss@8.5.3)(search-insights@2.17.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.2)(yaml@2.7.0)
+ version: 2.0.0-alpha.2(@algolia/client-search@5.23.3)(@types/node@22.14.0)(jiti@2.4.2)(postcss@8.5.3)(search-insights@2.17.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1)
vitepress-plugin-group-icons:
- specifier: ^1.3.8
- version: 1.3.8
+ specifier: ^1.4.1
+ version: 1.4.1
vue:
specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ version: 3.5.13(typescript@5.8.3)
vue-tsc:
specifier: ^2.2.8
- version: 2.2.8(typescript@5.8.2)
+ version: 2.2.8(typescript@5.8.3)
packages:
@@ -185,64 +194,64 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.21.0':
- resolution: {integrity: sha512-I239aSmXa3pXDhp3AWGaIfesqJBNFA7drUM8SIfNxMIzvQXUnHRf4rW1o77QXLI/nIClNsb8KOLaB62gO9LnlQ==}
+ '@algolia/client-abtesting@5.23.3':
+ resolution: {integrity: sha512-yHI0hBwYcNPc+nJoHPTmmlP8pG6nstCEhpHaZQCDwLZhdMtNhd1hliZMCtLgNnvd1yKEgTt/ZDnTSdZLehfKdA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.21.0':
- resolution: {integrity: sha512-OxoUfeG9G4VE4gS7B4q65KkHzdGsQsDwxQfR5J9uKB8poSGuNlHJWsF3ABqCkc5VliAR0m8KMjsQ9o/kOpEGnQ==}
+ '@algolia/client-analytics@5.23.3':
+ resolution: {integrity: sha512-/70Ey+nZm4bRr2DcNrGU251YIn9lDu0g8xeP4jTCyunGRNFZ/d8hQAw9El34pcTpO1QDojJWAi6ywKIrUaks9w==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.21.0':
- resolution: {integrity: sha512-iHLgDQFyZNe9M16vipbx6FGOA8NoMswHrfom/QlCGoyh7ntjGvfMb+J2Ss8rRsAlOWluv8h923Ku3QVaB0oWDQ==}
+ '@algolia/client-common@5.23.3':
+ resolution: {integrity: sha512-fkpbPclIvaiyw3ADKRBCxMZhrNx/8//6DClfWGxeEiTJ0HEEYtHlqE6GjAkEJubz4v1ioCQkhZwMoFfFct2/vQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.21.0':
- resolution: {integrity: sha512-y7XBO9Iwb75FLDl95AYcWSLIViJTpR5SUUCyKsYhpP9DgyUqWbISqDLXc96TS9shj+H+7VsTKA9cJK8NUfVN6g==}
+ '@algolia/client-insights@5.23.3':
+ resolution: {integrity: sha512-TXc5Ve6QOCihWCTWY9N56CZxF1iovzpBWBUhQhy6JSiUfX3MXceV3saV+sXHQ1NVt2NKkyUfEspYHBsTrYzIDg==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.21.0':
- resolution: {integrity: sha512-6KU658lD9Tss4oCX6c/O15tNZxw7vR+WAUG95YtZzYG/KGJHTpy2uckqbMmC2cEK4a86FAq4pH5azSJ7cGMjuw==}
+ '@algolia/client-personalization@5.23.3':
+ resolution: {integrity: sha512-JlReruxxiw9LB53jF/BmvVV+c0thiWQUHRdgtbVIEusvRaiX1IdpWJSPQExEtBQ7VFg89nP8niCzWtA34ktKSA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.21.0':
- resolution: {integrity: sha512-pG6MyVh1v0X+uwrKHn3U+suHdgJ2C+gug+UGkNHfMELHMsEoWIAQhxMBOFg7hCnWBFjQnuq6qhM3X9X5QO3d9Q==}
+ '@algolia/client-query-suggestions@5.23.3':
+ resolution: {integrity: sha512-GDEExFMXwx0ScE0AZUA4F6ssztdJvGcXUkdWmWyt2hbYz43ukqmlVJqPaYgGmWdjJjvTx+dNF/hcinwWuXbCug==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.21.0':
- resolution: {integrity: sha512-nZfgJH4njBK98tFCmCW1VX/ExH4bNOl9DSboxeXGgvhoL0fG1+4DDr/mrLe21OggVCQqHwXBMh6fFInvBeyhiQ==}
+ '@algolia/client-search@5.23.3':
+ resolution: {integrity: sha512-mwofV6tGo0oHt4BPi+S5eLC3wnhOa4A1OVgPxetTxZuetod+2W4cxKavUW2v/Ma5CABXPLooXX+g9E67umELZw==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.21.0':
- resolution: {integrity: sha512-k6MZxLbZphGN5uRri9J/krQQBjUrqNcScPh985XXEFXbSCRvOPKVtjjLdVjGVHXXPOQgKrIZHxIdRNbHS+wVuA==}
+ '@algolia/ingestion@1.23.3':
+ resolution: {integrity: sha512-Zxgmi7Hk4lI52YFphzzJekUqWxYxVjY2GrCpOxV+QiojvUi8Ru+knq6REcwLHFSwpwaDh2Th5pOefMpn4EkQCw==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.21.0':
- resolution: {integrity: sha512-FiW5nnmyHvaGdorqLClw3PM6keXexAMiwbwJ9xzQr4LcNefLG3ln82NafRPgJO/z0dETAOKjds5aSmEFMiITHQ==}
+ '@algolia/monitoring@1.23.3':
+ resolution: {integrity: sha512-zi/IqvsmFW4E5gMaovAE4KRbXQ+LDYpPGG1nHtfuD5u3SSuQ31fT1vX2zqb6PbPTlgJMEmMk91Mbb7fIKmbQUw==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.21.0':
- resolution: {integrity: sha512-+JXavbbliaLmah5QNgc/TDW/+r0ALa+rGhg5Y7+pF6GpNnzO0L+nlUaDNE8QbiJfz54F9BkwFUnJJeRJAuzTFw==}
+ '@algolia/recommend@5.23.3':
+ resolution: {integrity: sha512-C9TwbT1zGwULLXGSUSB+G7o/30djacPmQcsTHepvT47PVfPr2ISK/5QVtUnjMU84LEP8uNjuPUeM4ZeWVJ2iuQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.21.0':
- resolution: {integrity: sha512-Iw+Yj5hOmo/iixHS94vEAQ3zi5GPpJywhfxn1el/zWo4AvPIte/+1h9Ywgw/+3M7YBj4jgAkScxjxQCxzLBsjA==}
+ '@algolia/requester-browser-xhr@5.23.3':
+ resolution: {integrity: sha512-/7oYeUhYzY0lls7WtkAURM6wy21/Wwmq9GdujW1MpoYVC0ATXXxwCiAfOpYL9xdWxLV0R3wjyD+yZEni+nboKg==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.21.0':
- resolution: {integrity: sha512-Z00SRLlIFj3SjYVfsd9Yd3kB3dUwQFAkQG18NunWP7cix2ezXpJqA+xAoEf9vc4QZHdxU3Gm8gHAtRiM2iVaTQ==}
+ '@algolia/requester-fetch@5.23.3':
+ resolution: {integrity: sha512-r/4fKz4t+bSU1KdjRq+swdNvuGfJ0spV8aFTHPtcsF+1ZaN/VqmdXrTe5NkaZLSztFeMqKwZlJIVvE7VuGlFtw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.21.0':
- resolution: {integrity: sha512-WqU0VumUILrIeVYCTGZlyyZoC/tbvhiyPxfGRRO1cSjxN558bnJLlR2BvS0SJ5b75dRNK7HDvtXo2QoP9eLfiA==}
+ '@algolia/requester-node-http@5.23.3':
+ resolution: {integrity: sha512-UZiTNmUBQFPl3tUKuXaDd8BxEC0t0ny86wwW6XgwfM9IQf4PrzuMpvuOGIJMcCGlrNolZDEI0mcbz/tqRdKW7A==}
engines: {node: '>= 14.0.0'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/eslint-config@4.10.2':
- resolution: {integrity: sha512-/cqQ+uQKyeEuZcverR1+r0a6IUO1cwIFZSIaTPchxcWNXEK8CD7hB6DPFALDnDwwM1ItFB/GKSQWlGkaxxmM0w==}
+ '@antfu/eslint-config@4.11.0':
+ resolution: {integrity: sha512-KMLIrZflEFsOEF/N0Xl8iVaheLTdgT3gAwXVzdG5Ng8ieNhBsRsaThnqI7of10kh6psSBLJ6SkNK+ZF98fQIXQ==}
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.19.0
@@ -252,10 +261,11 @@ packages:
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-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'
@@ -280,6 +290,8 @@ packages:
optional: true
eslint-plugin-svelte:
optional: true
+ eslint-plugin-vuejs-accessibility:
+ optional: true
prettier-plugin-astro:
optional: true
prettier-plugin-slidev:
@@ -309,17 +321,17 @@ packages:
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.10':
- resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==}
+ '@babel/parser@7.27.0':
+ resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/runtime@7.26.10':
- resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
+ '@babel/runtime@7.27.0':
+ resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.10':
- resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
+ '@babel/types@7.27.0':
+ resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
engines: {node: '>=6.9.0'}
'@changesets/apply-release-plan@7.0.10':
@@ -377,11 +389,11 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
- '@clack/core@0.4.1':
- resolution: {integrity: sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==}
+ '@clack/core@0.4.2':
+ resolution: {integrity: sha512-NYQfcEy8MWIxrT5Fj8nIVchfRFA26yYKJcvBS7WlUIlw2OmQOY9DhGGXMovyI5J5PpxrCPGkgUi207EBrjpBvg==}
- '@clack/prompts@0.10.0':
- resolution: {integrity: sha512-H3rCl6CwW1NdQt9rE3n373t7o5cthPv7yUoxF2ytZvyvlJv89C5RYMJu83Hed8ODgys5vpBU0GKxIRG83jd8NQ==}
+ '@clack/prompts@0.10.1':
+ resolution: {integrity: sha512-Q0T02vx8ZM9XSv9/Yde0jTmmBQufZhPJfYAg2XrrrxWWaZgq1rr8nU8Hv710BQ1dhoP8rtY7YUdpGej2Qza/cw==}
'@discoveryjs/json-ext@0.5.7':
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
@@ -414,11 +426,20 @@ packages:
search-insights:
optional: true
- '@emnapi/core@1.3.1':
- resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
+ '@dprint/formatter@0.3.0':
+ resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==}
+
+ '@dprint/markdown@0.17.8':
+ resolution: {integrity: sha512-ukHFOg+RpG284aPdIg7iPrCYmMs3Dqy43S1ejybnwlJoFiW02b+6Bbr5cfZKFRYNP3dKGM86BqHEnMzBOyLvvA==}
+
+ '@dprint/toml@0.6.4':
+ resolution: {integrity: sha512-bZXIUjxr0LIuHWshZr/5mtUkOrnh0NKVZEF6ACojW5z7zkJu7s9sV2mMXm8XQDqN4cJzdHYUYzUyEGdfciaLJA==}
- '@emnapi/runtime@1.3.1':
- resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+ '@emnapi/core@1.4.0':
+ resolution: {integrity: sha512-H+N/FqT07NmLmt6OFFtDfwe8PNygprzBikrEMyQfgqSmT0vzE515Pz7R8izwB9q/zsH/MA64AKoul3sA6/CzVg==}
+
+ '@emnapi/runtime@1.4.0':
+ resolution: {integrity: sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==}
'@emnapi/wasi-threads@1.0.1':
resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
@@ -431,152 +452,152 @@ packages:
resolution: {integrity: sha512-+zZymuVLH6zVwXPtCAtC+bDymxmEwEqDftdAK+f407IF1bnX49anIxvBhCA1AqUIfD6egj1jM1vUnSuijjNyYg==}
engines: {node: '>=18'}
- '@esbuild/aix-ppc64@0.25.1':
- resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
+ '@esbuild/aix-ppc64@0.25.2':
+ resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.1':
- resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
+ '@esbuild/android-arm64@0.25.2':
+ resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.1':
- resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
+ '@esbuild/android-arm@0.25.2':
+ resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.1':
- resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
+ '@esbuild/android-x64@0.25.2':
+ resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.1':
- resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
+ '@esbuild/darwin-arm64@0.25.2':
+ resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.1':
- resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
+ '@esbuild/darwin-x64@0.25.2':
+ resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.1':
- resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
+ '@esbuild/freebsd-arm64@0.25.2':
+ resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.1':
- resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
+ '@esbuild/freebsd-x64@0.25.2':
+ resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.1':
- resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
+ '@esbuild/linux-arm64@0.25.2':
+ resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.1':
- resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
+ '@esbuild/linux-arm@0.25.2':
+ resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.1':
- resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
+ '@esbuild/linux-ia32@0.25.2':
+ resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.1':
- resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
+ '@esbuild/linux-loong64@0.25.2':
+ resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.1':
- resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
+ '@esbuild/linux-mips64el@0.25.2':
+ resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.1':
- resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
+ '@esbuild/linux-ppc64@0.25.2':
+ resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.1':
- resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
+ '@esbuild/linux-riscv64@0.25.2':
+ resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.1':
- resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
+ '@esbuild/linux-s390x@0.25.2':
+ resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.1':
- resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
+ '@esbuild/linux-x64@0.25.2':
+ resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.1':
- resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
+ '@esbuild/netbsd-arm64@0.25.2':
+ resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.1':
- resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
+ '@esbuild/netbsd-x64@0.25.2':
+ resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.1':
- resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
+ '@esbuild/openbsd-arm64@0.25.2':
+ resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.1':
- resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
+ '@esbuild/openbsd-x64@0.25.2':
+ resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.25.1':
- resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
+ '@esbuild/sunos-x64@0.25.2':
+ resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.1':
- resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
+ '@esbuild/win32-arm64@0.25.2':
+ resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.1':
- resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
+ '@esbuild/win32-ia32@0.25.2':
+ resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.1':
- resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
+ '@esbuild/win32-x64@0.25.2':
+ resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -597,8 +618,8 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.7':
- resolution: {integrity: sha512-xvv7hJE32yhegJ8xNAnb62ggiAwTYHBpUCWhRxEj/ksvgDJuSXfoDkBcRYaYNFiJ+jH0IE3K16hd+xXzhBgNbg==}
+ '@eslint/compat@1.2.8':
+ resolution: {integrity: sha512-LqCYHdWL/QqKIJuZ/ucMAv8d4luKGs4oCPgpt8mWztQAtPrHfXKQ/XAUc8ljCHAfJCn6SvkpTcGt5Tsh8saowA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
@@ -606,12 +627,12 @@ packages:
eslint:
optional: true
- '@eslint/config-array@0.19.2':
- resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
+ '@eslint/config-array@0.20.0':
+ resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.1.0':
- resolution: {integrity: sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==}
+ '@eslint/config-helpers@0.2.1':
+ resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.10.0':
@@ -622,12 +643,16 @@ packages:
resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/eslintrc@3.3.0':
- resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
+ '@eslint/core@0.13.0':
+ resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.3.1':
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.22.0':
- resolution: {integrity: sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==}
+ '@eslint/js@9.24.0':
+ resolution: {integrity: sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/markdown@6.3.0':
@@ -638,8 +663,8 @@ packages:
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.7':
- resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
+ '@eslint/plugin-kit@0.2.8':
+ resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@farmfe/cli@1.0.4':
@@ -647,62 +672,62 @@ packages:
engines: {node: '>= 16'}
hasBin: true
- '@farmfe/core-darwin-arm64@1.7.1':
- resolution: {integrity: sha512-tIoPQ/q0Aum8r0WDYqt1zjGVksZxeKqiABq1XP+2P8grvKqvZYn3/SI85jSIynovSxJSoVw3EZdtTQuYwhgxKQ==}
+ '@farmfe/core-darwin-arm64@1.7.2':
+ resolution: {integrity: sha512-E0rzh7NOBoAZIV7pEQ7S7U8BL26YCsI2lBCtzxi57JI2NkO0PPUhMNhfpzaxErhPkuIs0n0hmp3hlxyLDX1Hxg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@farmfe/core-darwin-x64@1.7.1':
- resolution: {integrity: sha512-aJGPqsn8PW/kp82OHDCIDM5DEIglA6ajCA7VTlUQ8AxGNiSH0Xs/s+2rcae52t2WEECvdTI7/XuQPOC1dzPhyA==}
+ '@farmfe/core-darwin-x64@1.7.2':
+ resolution: {integrity: sha512-sn34XfsexSZz7bDfRYsMDUBmNDQgaxfqYN9pjC4xuECSiHSrlAGZ6JDqy0+GE395UoChVBYTdKVqlKcS7KKZuw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@farmfe/core-linux-arm64-gnu@1.7.1':
- resolution: {integrity: sha512-Da2JbcBpsbMey/YtvcWnGU/d7hqHVQ8ZjRWccWgwSTW3zooRFiTgEk/bMIsSMRl0VYYoCPMovJugciNtsEcxDQ==}
+ '@farmfe/core-linux-arm64-gnu@1.7.2':
+ resolution: {integrity: sha512-tMhJ+e5R1av6M9xq4I553lk+gw6Iwr9HCaYeG964FKJFNrwNIe2Yoenv8l8a5Fa4Y+zUWZ9pxMh996Ma0YtdJA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@farmfe/core-linux-arm64-musl@1.7.1':
- resolution: {integrity: sha512-SJKttRH7tp9jRmdZaZSlYLvQzYzcSm8zh7cT5g7R4spSkojV14NfzlYLRuY19K0fXN8T9jD5/kVd5oDtJN8jkA==}
+ '@farmfe/core-linux-arm64-musl@1.7.2':
+ resolution: {integrity: sha512-H5DKYtyfE5nmnYj610KEuDiqNA8x+rJct8lSTt/DvjatW/JNDgzMD0b6ObKJEatYxYu4Cp2GQAldutk+joednA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@farmfe/core-linux-x64-gnu@1.7.1':
- resolution: {integrity: sha512-D+37H8m7pMBLxWinYoX/RmIhRkcvP0/yLD96LoPYpHOoR2+rUH1tfGxlfmH8yjHRUz1qbSNrnAwpx3qj/84TuQ==}
+ '@farmfe/core-linux-x64-gnu@1.7.2':
+ resolution: {integrity: sha512-MAMm8d/qyb4N9NS5zlSs+gxsaoA+FreGn1t4mGFhaoP86gDAo3iIRBNL2HoCfE8aTGJJ7BdaOrWCHejd0cST6Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@farmfe/core-linux-x64-musl@1.7.1':
- resolution: {integrity: sha512-T98uWNE46Ydepnl4K5GBbJ3kDyLv3FvCDAhK7/rHvyFeP3XcRFCULX6BTAED+c406L5hK75kIGa4o8ps7eX0tw==}
+ '@farmfe/core-linux-x64-musl@1.7.2':
+ resolution: {integrity: sha512-zJLMEsMToe/6CqaYyivZS+TWupD+7NH9n3++0iREqiKTcz7BIDSvHKmKr3p0ygMW7IahdFQCOwinxPbpSiyzPQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@farmfe/core-win32-arm64-msvc@1.7.1':
- resolution: {integrity: sha512-UPHEGBGbN8AbF2esIXoG1W8Mjcn/y2hfbEov2+Y2q1oPtn6y6ue1MDbqmpX6uM0ZZ/PFGOS97wa4+kOaHY6l9A==}
+ '@farmfe/core-win32-arm64-msvc@1.7.2':
+ resolution: {integrity: sha512-3QoE8SOT8Ph4gT+GCkQCRC5xHIngiuSXiz8KHcqe1oSvyAjd4POXgDtMKf6GtLELwoKNtJNTNABOCLyTlawGGA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@farmfe/core-win32-ia32-msvc@1.7.1':
- resolution: {integrity: sha512-IHmwt9qfwuesW5QEsNxGZHrLgit3B2FuqIU2iZb+0m3x6w2RVjdvami7L8WJDj2uSbZOcZwbYu6pgcv4EHweUA==}
+ '@farmfe/core-win32-ia32-msvc@1.7.2':
+ resolution: {integrity: sha512-jNITTBiwWWAauS3aGvkKC9AS8+3djsfFmnrF/oI3lLe5OqN9bt9by7baS9sUc3h3Xrwl1SVJZgPqakv0vWXNww==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@farmfe/core-win32-x64-msvc@1.7.1':
- resolution: {integrity: sha512-QT3NvJVQtSv46UKjgYnIPKOaQ5qisTRBd04Ps/cDKrQhDLKHoO7FdXoq5tMnAA0Xkgw3P4kTWBiVxBpdKap0Aw==}
+ '@farmfe/core-win32-x64-msvc@1.7.2':
+ resolution: {integrity: sha512-EBSsB3YCI3LyPJLvYMd+ZXNpj8t8ZYWR1Zgt28CAolZK6eXUvzJRU0y5QVx7qLZz0qxJvE8a3Gy7/8IAkVnnaw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@farmfe/core@1.7.1':
- resolution: {integrity: sha512-ou4Ec8cy/MBLeHj6tLqTtLu5w3pHI3dMp11mIcWD4ESXEPaXDoIyERYvnYs5JCMcw5SjCRPmFFJLbjyQ5RmZwg==}
+ '@farmfe/core@1.7.2':
+ resolution: {integrity: sha512-HN8YaQJvVBBodqzvq5eFfqbX7ueNsdBvSS8IsTiOZkFlnPr6mikvt5UIySkWHa110yAEdKCuGMCTWedNANzXDQ==}
engines: {node: '>=16.15.1'}
'@farmfe/runtime-plugin-hmr@3.5.10':
@@ -755,11 +780,11 @@ packages:
'@iconify-json/ri@1.2.5':
resolution: {integrity: sha512-kWGimOXMZrlYusjBKKXYOWcKhbOHusFsmrmRGmjS7rH0BpML5A9/fy8KHZqFOwZfC4M6amObQYbh8BqO5cMC3w==}
- '@iconify-json/simple-icons@1.2.29':
- resolution: {integrity: sha512-KYrxmxtRz6iOAulRiUsIBMUuXek+H+Evwf8UvYPIkbQ+KDoOqTegHx3q/w3GDDVC0qJYB+D3hXPMZcpm78qIuA==}
+ '@iconify-json/simple-icons@1.2.31':
+ resolution: {integrity: sha512-xBUPtvkcSAiXs9DfVtudhLddQtQYin3I3Ph/W5FNYA0oE6r2hmLB8TgOog9OjOt1Sxn3IB5+4n5+64DMf2xNmQ==}
- '@iconify-json/vscode-icons@1.2.16':
- resolution: {integrity: sha512-hstc2yVq2UJ6v6FrgjftzXRvphGZBsKxvSeXoFLP1Hgx89TPZKrGE5SV6vqsoeIlLYaQ7OZbXmAoVGroTfGmVQ==}
+ '@iconify-json/vscode-icons@1.2.19':
+ resolution: {integrity: sha512-M6Ujx2Ncmr/jfHhLJ+unqaILOJ/wWAkfc84Eh3+e8PccFmB1TS4KwOSyqbawybbqKK7JaaEk5uhFYSFpYOeuOA==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -767,10 +792,6 @@ 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'}
-
'@jridgewell/gen-mapping@0.3.8':
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
@@ -827,26 +848,29 @@ packages:
'@manypkg/get-packages@1.1.3':
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
- '@mdn/browser-compat-data@5.7.4':
- resolution: {integrity: sha512-d4rta1K2i3oEDYMXkIvv9S/+UJRdoYU59k9VkNn+2lzN5jpw7rDyiU5W5ALaFu1saDuqp/+JDig0JpUpHy8WvQ==}
+ '@mdn/browser-compat-data@5.7.6':
+ resolution: {integrity: sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg==}
- '@module-federation/error-codes@0.8.4':
- resolution: {integrity: sha512-55LYmrDdKb4jt+qr8qE8U3al62ZANp3FhfVaNPOaAmdTh0jHdD8M3yf5HKFlr5xVkVO4eV/F/J2NCfpbh+pEXQ==}
+ '@module-federation/error-codes@0.11.2':
+ resolution: {integrity: sha512-ik1Qnn0I+WyEdprTck9WGlH41vGsVdUg8cfO+ZM02qOb2cZm5Vu3SlxGAobj6g7uAj0g8yINnd7h7Dci40BxQA==}
- '@module-federation/runtime-tools@0.8.4':
- resolution: {integrity: sha512-fjVOsItJ1u5YY6E9FnS56UDwZgqEQUrWFnouRiPtK123LUuqUI9FH4redZoKWlE1PB0ir1Z3tnqy8eFYzPO38Q==}
+ '@module-federation/runtime-core@0.11.2':
+ resolution: {integrity: sha512-dia5kKybi6MFU0s5PgglJwN27k7n9Sf69Cy5xZ4BWaP0qlaXTsxHKO0PECHNt2Pt8jDdyU29sQ4DwAQfxpnXJQ==}
- '@module-federation/runtime@0.8.4':
- resolution: {integrity: sha512-yZeZ7z2Rx4gv/0E97oLTF3V6N25vglmwXGgoeju/W2YjsFvWzVtCDI7zRRb0mJhU6+jmSM8jP1DeQGbea/AiZQ==}
+ '@module-federation/runtime-tools@0.11.2':
+ resolution: {integrity: sha512-4MJTGAxVq6vxQRkTtTlH7Mm9AVqgn0X9kdu+7RsL7T/qU+jeYsbrntN2CWG3GVVA8r5JddXyTI1iJ0VXQZLV1w==}
- '@module-federation/sdk@0.8.4':
- resolution: {integrity: sha512-waABomIjg/5m1rPDBWYG4KUhS5r7OUUY7S+avpaVIY/tkPWB3ibRDKy2dNLLAMaLKq0u+B1qIdEp4NIWkqhqpg==}
+ '@module-federation/runtime@0.11.2':
+ resolution: {integrity: sha512-Ya9u/L6z2LvhgpqxuKCB7LcigIIRf1BbaxAZIH7mzbq/A7rZtTP7v+73E433jvgiAlbAfPSZkeoYGele6hfRwA==}
- '@module-federation/webpack-bundler-runtime@0.8.4':
- resolution: {integrity: sha512-HggROJhvHPUX7uqBD/XlajGygMNM1DG0+4OAkk8MBQe4a18QzrRNzZt6XQbRTSG4OaEoyRWhQHvYD3Yps405tQ==}
+ '@module-federation/sdk@0.11.2':
+ resolution: {integrity: sha512-SBFe5xOamluT900J4AGBx+2/kCH/JbfqXoUwPSAC6PRzb8Y7LB0posnOGzmqYsLZXT37vp3d6AmJDsVoajDqxw==}
- '@napi-rs/wasm-runtime@0.2.7':
- resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
+ '@module-federation/webpack-bundler-runtime@0.11.2':
+ resolution: {integrity: sha512-WdwIE6QF+MKs/PdVu0cKPETF743JB9PZ62/qf7Uo3gU4fjsUMc37RnbJZ/qB60EaHHfjwp1v6NnhZw1r4eVsnw==}
+
+ '@napi-rs/wasm-runtime@0.2.8':
+ resolution: {integrity: sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -860,409 +884,424 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@oxc-parser/binding-darwin-arm64@0.61.0':
- resolution: {integrity: sha512-/TsotEENm1skyt0RVguaqItBztu/BOwarbTnB59v9IF99hKOSOMjN8Ofe4Reszotg2AUN7p2r7UXRE//aGMbpA==}
+ '@oxc-parser/binding-darwin-arm64@0.62.0':
+ resolution: {integrity: sha512-p9haXzG2mE0PvfITKY3bTQpwDc+T4H9bG5SC4vp8PbwikmIWGrahASpuO5c2keiahspGTCzqUnl+8PXU/saT/A==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- '@oxc-parser/binding-darwin-x64@0.61.0':
- resolution: {integrity: sha512-xWAAIOFPQuB/zutHwqX4BAaWHb97/u6rN3vmAJslqY4h9G6M28UYCskmR1+RsSN5jMzQzQJBuUaq3BO2dXXRog==}
+ '@oxc-parser/binding-darwin-x64@0.62.0':
+ resolution: {integrity: sha512-nUFVTz0DcQCtoHL/wiZ3fNPXRIdghDlExRqiEG00J7RprD3L8CtZ1hXwcWOqUNR1I/xWHQCu1ZrRlI30Wb+NCw==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- '@oxc-parser/binding-linux-arm-gnueabihf@0.61.0':
- resolution: {integrity: sha512-06Sus+1xz/CIMgoUDBwq4kkXln9BmFb7+1ABBMRhhXNyQW81PBl5bJ2cGxic+oBgdvRrulECYgs8HdwMxNpYNw==}
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.62.0':
+ resolution: {integrity: sha512-fzL/QklCwZRBkPvdr0zBtAFBnksd42xiBMlm0GQi2dIynCDz2IKrc+hq0UZMtqMEjuvr991WOlh0iU6elZDn6g==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-parser/binding-linux-arm64-gnu@0.61.0':
- resolution: {integrity: sha512-QjxbO+sJaQDu78W53cqTECIrToZ53I5ZMHQA1ldBsRd3Gv43hnlalb5eY04l1OJo3oG+f9JgKgOQn0ziY+ViYg==}
+ '@oxc-parser/binding-linux-arm64-gnu@0.62.0':
+ resolution: {integrity: sha512-dgymg4cMO+5hfSUC4zHnNoNIKoasUiaaYZRIs3lhRPFB2ultth4uJTV+iMlBTNtGDSKSs10ennHvm7CBGJVgVg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-parser/binding-linux-arm64-musl@0.61.0':
- resolution: {integrity: sha512-ORd8DDAJg0yoQr3pEKXjGPG9a6OHtGTwNWWpMWuKG+270waDMKQbzjGI5c2XA9JxIJmMLZK1VIH2crpdPRQSBw==}
+ '@oxc-parser/binding-linux-arm64-musl@0.62.0':
+ resolution: {integrity: sha512-sKhAyRsP6DNeFMRevAN28HccFKEO6l3OqC8MuAV+HNzzyzUOKx2HGnYlkLxCmDZ7lyzzl7vA7YRQFBLYXgsWSA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-parser/binding-linux-x64-gnu@0.61.0':
- resolution: {integrity: sha512-IWmTD9tSeOQyQJ4JuCkgDqf0RcKBgtwtDC6Z0l4ND69AwcM76A+rSyu56CsNcLQKlVq+xn9bXqnOAKd5oZLJSg==}
+ '@oxc-parser/binding-linux-x64-gnu@0.62.0':
+ resolution: {integrity: sha512-WAPgDelo20F5An0SW8X+0hWVPF7dHKhHwZo5doOt8Dn9NX6nONQCmEDUUPtp/BqISBxRFSH+rZbaENn8GGlBqg==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-parser/binding-linux-x64-musl@0.61.0':
- resolution: {integrity: sha512-W2RKrttyjMEpG3AnRA1raawowhlchgUc0R483LViv6az5kU6jkwg7nNFKiDPHAqEXfDzwiDLzM/vJlnc+cpgHg==}
+ '@oxc-parser/binding-linux-x64-musl@0.62.0':
+ resolution: {integrity: sha512-JJ0WIPVXiuiWmPLKL+W3/OX1O5aDWMoX47eODKdNoM46bTcxIUe+wpHou731WuqhfrwACBi3Bsljn6VsIFPe9A==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-parser/binding-wasm32-wasi@0.61.0':
- resolution: {integrity: sha512-lBTzaD6o/vYWR1/AXwNWFzRYQOuwgTZMykBLLAeXzEI9/JsRTsv/KN3K2PtEWlTIR/Yu4jg9b5L9xC7FfZIH1g==}
+ '@oxc-parser/binding-wasm32-wasi@0.62.0':
+ resolution: {integrity: sha512-FuGOzv4FJWSBnG9jkCgZysU6ZMTKWHyHXEr40J1HjRnyw58bQ1sPfVmHZusNTSDCXmBlBz0ZuELLTJFHTI3DVQ==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-parser/binding-win32-arm64-msvc@0.61.0':
- resolution: {integrity: sha512-NaLP1OU4tb8igEhAKY6Vv0Sw2UGuopOe7xq5QV8mCwH03NTkaAP60iLo6o7CXuV8LV70qapaSd2ZARWpKobJfA==}
+ '@oxc-parser/binding-win32-arm64-msvc@0.62.0':
+ resolution: {integrity: sha512-3XEM9fgnrC2Eav/csJaAn125bQIgsdAeyksTGq2xnydnomHY9G+/nfIfgS76X/K0TZiyjOOakctwl4vsObDyGA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
- '@oxc-parser/binding-win32-x64-msvc@0.61.0':
- resolution: {integrity: sha512-o+LxW5Ndd3tN/CTMOASbdwSq1EBWGvtvNYJ/tYxo8dDxnOBLJjgjQYuIw0Oo8AP3LxZR3/YisFpjfSPpNdYXEg==}
+ '@oxc-parser/binding-win32-x64-msvc@0.62.0':
+ resolution: {integrity: sha512-YbLsb6Z/FS7tNheETyvf6FYhqo/AUipHca9eF5cB4XAdGc+Yt9bcrnwG9g9RGD33nxaMDI1ead2KYAcNeDYzGA==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
- '@oxc-project/types@0.58.1':
- resolution: {integrity: sha512-/412rL5TIAsZJ428FvFsZCKYsnnKsABv9Z7xZmdtUylGT+qiN240wHU++HdHwYj2j1A5SeScB4O4t8EjjcPlUw==}
+ '@oxc-project/types@0.61.2':
+ resolution: {integrity: sha512-rfuwJwvwn9MRthHNXlSo9Eka/u7gC0MhnWAoX3BhE1+rwPOl22nq0K0Y997Hof0tHCOuD7H3/Z8HTfCVhB4c5Q==}
- '@oxc-project/types@0.61.1':
- resolution: {integrity: sha512-h/plub5K4de/QdjICDFP/xAgjZmmTVzSIrHKFQRu+ncecZ61cwDhzs4Nc9E4/fOx5T/2w+ZKr4QgCQgCvZIfKw==}
+ '@oxc-project/types@0.62.0':
+ resolution: {integrity: sha512-rC3YQjrntGvg8vkHHKaiFqZFBCDU/F3BPfokssD02q5Sn4dSZGYzJVdojqYIEFECpEMEqKBxqIRmVex1+WXI5w==}
- '@oxc-resolver/binding-darwin-arm64@5.0.1':
- resolution: {integrity: sha512-lY5mi+6ztYGM9tiyMhHbzZteE7LFaexu9PjDL2N0stCNuGkSHO1eeeabi2ckxGWBbu9EW01XovbQqir12NbA6A==}
+ '@oxc-resolver/binding-darwin-arm64@5.2.0':
+ resolution: {integrity: sha512-3v2eS1swAUZ/OPrBpTB5Imn4Xhbz4zKPa/mugnYCAC4pVt/miBQLBNciBRZG8oyHiGmLtjw/qanZC36uB6MITQ==}
cpu: [arm64]
os: [darwin]
- '@oxc-resolver/binding-darwin-x64@5.0.1':
- resolution: {integrity: sha512-wHKdPB2Q0dMVQy6b5depG8IGI0Y37CIUTZYrZDYEGMT3X481DAJjp6AIVVHQeolEZzy+lWrpUQdGPy0dQnt7IA==}
+ '@oxc-resolver/binding-darwin-x64@5.2.0':
+ resolution: {integrity: sha512-6uhnlZU+CBULQAjcwQ4nerA76xDEvPFtHpTzXhEoitr4a3Ks5H92X4uuLT0C0FW3RfhIVL8Lpp9pLYHN3oAvug==}
cpu: [x64]
os: [darwin]
- '@oxc-resolver/binding-freebsd-x64@5.0.1':
- resolution: {integrity: sha512-TchNkHMASh2vZ2/FH71zqgAUNYuAlP8Bm1ocSnt7UVV43jZ9kG8HtQFc3AsYeVGzw06LZoeE3mVdSQVXUZhgzA==}
+ '@oxc-resolver/binding-freebsd-x64@5.2.0':
+ resolution: {integrity: sha512-6TCXw/rPnhBLlS/Rg7QHO9lBjwJSbUJMhd9POpVpQEK1S9viEAl8JPdxXuNCEDPJHSmpMrGt6+DTjQxQ5J1kpQ==}
cpu: [x64]
os: [freebsd]
- '@oxc-resolver/binding-linux-arm-gnueabihf@5.0.1':
- resolution: {integrity: sha512-JhqYi6uTSYflXSDNG/ZPTvBUcvcPR+vr/09XLdWJpZfEYzpPEEr7YQ2ogiOfZVUmCZOJWVOP8jJdv735j46a5w==}
+ '@oxc-resolver/binding-linux-arm-gnueabihf@5.2.0':
+ resolution: {integrity: sha512-egjFYBKixAjekmiImCYkpwSo0bnZJOieJIc6cXePuCih2R5nFjkS1F8tSlJ18GdRZ1MmYveM6THmIHJCpnDqaQ==}
cpu: [arm]
os: [linux]
- '@oxc-resolver/binding-linux-arm64-gnu@5.0.1':
- resolution: {integrity: sha512-W2OXq25tYiFVhi0Eioc9b+KWnaK2Hj7x/eW2u6r6u4afd1cQ09U+o5u98jrj1rxowSOTfFyiKqMqQOrS4PAlFg==}
+ '@oxc-resolver/binding-linux-arm64-gnu@5.2.0':
+ resolution: {integrity: sha512-Cizb3uHnEc2MYZeRnp+BxmDyAKo7szJxbTW4BgPvs+XicYZI0kc/qcZlHRoJImalBqvve+ZObasRqCS1zqub9A==}
cpu: [arm64]
os: [linux]
- '@oxc-resolver/binding-linux-arm64-musl@5.0.1':
- resolution: {integrity: sha512-dYaXmy90L5fTpH0mWmWvsf5PC9me5Lyjcj5vOQYNVedSQUavGMbQ+sKOWOTAFIpS8xzzIhYRdLI7oj4WV9S2bQ==}
+ '@oxc-resolver/binding-linux-arm64-musl@5.2.0':
+ resolution: {integrity: sha512-rDiRuIvQXa9MI8oiEbCVnU7dBVDuo74456dN3Bf30/Joz6FVBhYrhoOTxtxH+WgC38qCUWWuBjhFaLRLDLaMRw==}
cpu: [arm64]
os: [linux]
- '@oxc-resolver/binding-linux-x64-gnu@5.0.1':
- resolution: {integrity: sha512-lOgcxgtV7nM4TjolWgW9qk05iDQE2GGZTx2Zr+Jj+4GqdIhkkGpbqyGPJx2FRsY6kXhyaA9eOad4Bldfo8vAaw==}
+ '@oxc-resolver/binding-linux-riscv64-gnu@5.2.0':
+ resolution: {integrity: sha512-QRdE2DOO9e4oYzYyf/iRnLiomvs3bRedRTvFHbTAcL0JJfsicLLK4T7J5BP76sVum0QUAVJm+JqgEUmk8ETGXw==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-s390x-gnu@5.2.0':
+ resolution: {integrity: sha512-bD8HDjnEziw1+Y7uowIRI9JaJd6vldLoVXOZaSeBRjofWk8rQOOyxfNTVymIrcmPE8rZZJfkDdGyCnTJP0h9vA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-x64-gnu@5.2.0':
+ resolution: {integrity: sha512-eWEHGjkrk4Dsul7Wyt6X9UMxZ+e2zKgpRG2kbSZOQQTXf6ZnU9+lRAyAgf2X1qdLjmH0GT54wIak7fhSsuNWLA==}
cpu: [x64]
os: [linux]
- '@oxc-resolver/binding-linux-x64-musl@5.0.1':
- resolution: {integrity: sha512-3Pg8eSolVs3hy3xoqkjCgoIC1uHKPAUY0rs4QX+KtsPMOZ7iO5b3JBbJHl+ZDIeuzE8dkSRG7aIuCNVonp5G1Q==}
+ '@oxc-resolver/binding-linux-x64-musl@5.2.0':
+ resolution: {integrity: sha512-iojrjytDOdg4aWm25ak7qpTQwWj+D7O+duHBL2rQhDxIY1K4eysJwobWck0yzJ6VlONaQF6RLt+YeDpGoKV+ww==}
cpu: [x64]
os: [linux]
- '@oxc-resolver/binding-wasm32-wasi@5.0.1':
- resolution: {integrity: sha512-rBEgV5AW5obb6ATeNUSUouW0FzpoADOweTYblprko+Cv6rW1NSQGzGxD6o6jhIk4yV7/CZBwBWAkz9xpL5JSUQ==}
+ '@oxc-resolver/binding-wasm32-wasi@5.2.0':
+ resolution: {integrity: sha512-Lgv3HjKUXRa/xMCgBAkwKQcPljAn5IRicjgoPBXGUhghzK/9yF2DTf7aXdVPvRxFKjvcyWtzpzPV2pzYCuBaBA==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-resolver/binding-win32-arm64-msvc@5.0.1':
- resolution: {integrity: sha512-okHg9C+z+2tCGKPszYVJDTZKhPHta7xKvhw0WMWPLTz9wbBMmHTuY9vVpgvFGhTU3N5iQ56LPollnSPtjvObCw==}
+ '@oxc-resolver/binding-win32-arm64-msvc@5.2.0':
+ resolution: {integrity: sha512-VK5yEOdGbIrb89gUtVIw2IVP4r0rEhiwVLQOD37vZhvrt5iY0FHOTtMz9ZsWI0anZ0swt26U2wRcJYT0/AsBfw==}
cpu: [arm64]
os: [win32]
- '@oxc-resolver/binding-win32-x64-msvc@5.0.1':
- resolution: {integrity: sha512-ODlCn4Pbd0HEWMixonax1uJtNCG4lEne6Jq98iUsmwSibQYcBzutxPed1qhLKur6KtCsYYa4LtRxys7e/5lZwQ==}
+ '@oxc-resolver/binding-win32-x64-msvc@5.2.0':
+ resolution: {integrity: sha512-BhIcyjr/gTafUrdOhd1EC5H4LeUSKK9uQIG2RSyMMH0Cq1yBacTb1yvLowhP/6e4ncCGByXEkW7sWGowCfSY8A==}
cpu: [x64]
os: [win32]
- '@oxc-transform/binding-darwin-arm64@0.61.1':
- resolution: {integrity: sha512-G246bDGMpwfOZP6qm9HIzSDAajMAvIrx5WQ7hT7gNW8YLK7HBvOjQ6k3wnddFGKXV8y/BOYhTaRfIphLiYeX8w==}
+ '@oxc-transform/binding-darwin-arm64@0.62.0':
+ resolution: {integrity: sha512-aUD548g1WJKk+hUPxMDPr2yfvMSGp6M0B1KjORYxdQSI70Fsi3SCmtDmmPNVWsuuugkeCDjqceFr56uYMMrBog==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- '@oxc-transform/binding-darwin-x64@0.61.1':
- resolution: {integrity: sha512-s9xDy22WU/q7IOP1l4PtLy0gBP1OcuqcDyT1NS5tuqD1ufIfc6sf018iLcSCDCbRQkOdWFTE9aBQBzHK2rAQOg==}
+ '@oxc-transform/binding-darwin-x64@0.62.0':
+ resolution: {integrity: sha512-Ocxqqm9a+QEgIf/AOE0MRYkgVC7ZWehAonG2YNBp/qnX8rrKGQ12oYpoQA1QJ5sVTr5kF4NgttjpTzKqJ3mKuw==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- '@oxc-transform/binding-linux-arm-gnueabihf@0.61.1':
- resolution: {integrity: sha512-urhlE9/qxQwfJuuKovnugIkDkJlz6lrr/kzMUBSrsr1uEiTOxk3oZJoohztddM2Noa2mcs1nUqu+WmYjHvtODQ==}
+ '@oxc-transform/binding-linux-arm-gnueabihf@0.62.0':
+ resolution: {integrity: sha512-4z8LniTGjccnJVY7hS8pmh3gswPNmeeMVmvZpIzd1gaUwL6ZVWUuDHGGAAfjsOYzHruzw73HUvRPmfTDDie0lw==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
- '@oxc-transform/binding-linux-arm64-gnu@0.61.1':
- resolution: {integrity: sha512-fjGNQ5DB6TcFdrsJQhPkrC5PRlV5UjRW+nAZwil+keY3rxhnkrm06MAOPhs/SevPPKHIDv65HF3HQEZ5IAR36w==}
+ '@oxc-transform/binding-linux-arm64-gnu@0.62.0':
+ resolution: {integrity: sha512-zdsTHhkUOSfHhyxJed1SpP8qccKODwQdQMcB8yFvVIoVX3re0qqTRy2aYxofeMTdT9HCqmX7hUXmy1bFYqAQJA==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-transform/binding-linux-arm64-musl@0.61.1':
- resolution: {integrity: sha512-FegDJwBBCgYAQfYewSdrt4fYWefhDyF1lPFMosHyud6IvzPnSBZjohUY9qxpMgyfPdyzCZEoLSMQnwbmVWtX7g==}
+ '@oxc-transform/binding-linux-arm64-musl@0.62.0':
+ resolution: {integrity: sha512-NoM2Ymf0oKBlxu1DFjBQ7fAAz92JQ1MgbLT6apR2UCmOn7xIZAiyYloyXM43qDf6nTOAs3zmH6kNcEPZ8KaDrg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [linux]
- '@oxc-transform/binding-linux-x64-gnu@0.61.1':
- resolution: {integrity: sha512-mqGjL+ZBnZHrYERlosoyRJbHXmet/mU9cvdnJQ30jai2HSLAMlD6mOC7TMCOxayIvAykVKulQUatirAc7YDgIw==}
+ '@oxc-transform/binding-linux-x64-gnu@0.62.0':
+ resolution: {integrity: sha512-ltHIWB0eBT5iDt9hvC6LI90JV7DVbUdXzCjuNzUl/qcXXpKKLFjuRUuAs0npg3B+bsw75N2UKdwJ+E+mGf+D9A==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-transform/binding-linux-x64-musl@0.61.1':
- resolution: {integrity: sha512-D4jnyuPsAVKtja9/glzpQ82ixwY905UaynkUMouhd+aXJiNM44WxoB4t9VI5xVNKJNU4kMqMpT2f1GAeji2Rvg==}
+ '@oxc-transform/binding-linux-x64-musl@0.62.0':
+ resolution: {integrity: sha512-PODsXb/+a/380bdoJVruJSNuRm362b2fqgoRcQyDliIYVIlyNjhuRluNnXZt3Rcn+NMJuD6bR4UNDGIQawoaEg==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
- '@oxc-transform/binding-wasm32-wasi@0.61.1':
- resolution: {integrity: sha512-M6IkoHtF9NdI6EQIkhX+hkgq10G5SIBoPz2oDz4HHELeOroywR28KXIZdIqNEUWKaktvrM8izCVHNGX47tHSsQ==}
+ '@oxc-transform/binding-wasm32-wasi@0.62.0':
+ resolution: {integrity: sha512-1Ws06cA9bm7sNTUopUJWVhWx+fimKaazjTCIARHJDkJZZLCBuUOFOLzThqVmu0go0D8PXYA9IVe1caqSVjoHYg==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@oxc-transform/binding-win32-arm64-msvc@0.61.1':
- resolution: {integrity: sha512-guDp9ctV4Z6cK9J2/aquuTabfLdA8vS5IIMlNAX0zh5V3kK9XoorTcOo02tiP7c8Z053YL0seGZC/iqQHaU56Q==}
+ '@oxc-transform/binding-win32-arm64-msvc@0.62.0':
+ resolution: {integrity: sha512-D1HFN2aNm/bkgBLRgvadq12/eMIRe3NgxH2sSQk+AZcorS8vqrHXv6lhiKMEyQTT1nCzr1RzvWDflHwCxoUfqg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [win32]
- '@oxc-transform/binding-win32-x64-msvc@0.61.1':
- resolution: {integrity: sha512-cDmcRfqL1hK4TNVMup8bo90jdKpzdhoRZpoHE85+JcmTMMHExRT6OgcV5yr4DDf7g0ZfK/WmyN4kaXc/nC4MOA==}
+ '@oxc-transform/binding-win32-x64-msvc@0.62.0':
+ resolution: {integrity: sha512-3koMjqUz+LMRtAWBBsg50rsyNxKqpsN2Ft5NzcK+dsMN8dxq1vdMU7TaXdPSriY1buOPOAiqAEeGgdQRjoIBbQ==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
-
'@pkgr/core@0.1.2':
resolution: {integrity: sha512-fdDH1LSGfZdTH2sxdpVMw31BanV28K/Gry0cVFxaNP77neJSkd82mM8ErPNYs9e+0O7SdHBLTDzDgwUuy18RnQ==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@polka/url@1.0.0-next.28':
- resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+ '@pkgr/core@0.2.2':
+ resolution: {integrity: sha512-25L86MyPvnlQoX2MTIV2OiUcb6vJ6aRbFa9pbwByn95INKD5mFH2smgjDhq+fwJoqAgvgbdJLj6Tz7V9X5CFAQ==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+
+ '@polka/url@1.0.0-next.29':
+ resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
'@publint/pack@0.1.2':
resolution: {integrity: sha512-S+9ANAvUmjutrshV4jZjaiG8XQyuJIZ8a4utWmN/vW1sgQ9IfBnPndwkmQYw53QmouOIytT874u65HEmu6H5jw==}
engines: {node: '>=18'}
- '@quansync/fs@0.1.1':
- resolution: {integrity: sha512-sx8J1O/+j2lqs8MvsEz6rs/6UAUpCb4fu7C6EqtMqzbS3CmqLkTDTOMK+DrWukvyUuHzl8DhMjfNJzQDTqfGJg==}
- engines: {node: '>=20.18.0'}
+ '@quansync/fs@0.1.2':
+ resolution: {integrity: sha512-ezIadUb1aFhwJLd++WVqVpi9rnlX8vnd4ju7saPhwLHJN1mJgOv0puePTGV+FbtSnWtwoHDT8lAm4kagDZmpCg==}
+ engines: {node: '>=20.0.0'}
- '@rolldown/binding-darwin-arm64@1.0.0-beta.6':
- resolution: {integrity: sha512-Dzayzv3wH3q+mLu+ZTNIqykV502amJnMsyVEGQHZ4Nq4GQ5w0nrMFH0zs+imIb1C+NYPUXMcIj/UF/PDWXvVUA==}
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.7':
+ resolution: {integrity: sha512-spVRMdG9NotVYfrc94W8zMKEqLFbxm/dzkBjTfKzXMqhyBryo1lwZ14o8xFb3lM/ON/ZUT7laR9y+r6SIUtFrg==}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-beta.6':
- resolution: {integrity: sha512-Qd+Dyus1TbFTqDcUh4QQ1rEtEoP69IMB6bQdLtzijvYzhV1P2isnCDPsgjebqz+3Jb850UQMWSQf0ygaLdsD7g==}
+ '@rolldown/binding-darwin-x64@1.0.0-beta.7':
+ resolution: {integrity: sha512-6d6PicpBNLWJUyGO1b87QOBtQuqL1X9qVugi+kyGcChxW2bL87/CIBAJDu1g3mM62xSzxUitGa2YWRMhMJu2OA==}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-freebsd-x64@1.0.0-beta.6':
- resolution: {integrity: sha512-nPCph8jSXMUXIUgiIEZM32jb+XsOU63vVkk6SEIMQh8HBxpNw1xISj4WFpywMI97hVjiQxEZOzPiqSeOPJoJZA==}
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.7':
+ resolution: {integrity: sha512-RCKUAMUr1+F1wDSUmWUoGimCNAoQ9km5SRIEhrTlCOXe4wv+rY4o07cTaBjehBm+GtT+u0r36SW2gOmikivj9Q==}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.6':
- resolution: {integrity: sha512-V/0LsI5O6rQVE84HZllvTWlwX2AwnbU9NP50oJn7TrnWFwaVyV/x+FwCl6DykV3GhBc2t6Pp4X35L+Q5v9Kjtg==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.7':
+ resolution: {integrity: sha512-SRGp4RaUC2oFZTDtLSRePWWE5F4C5vrlsr/a3+/mBlBVUdSrB7341hqAEcezW3YYHQOT/j9CPXu2NULENSywwQ==}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.6':
- resolution: {integrity: sha512-uk4bBCq2IS586gjo6BwzBePrXij/zzU0rwIAOzg7XnIGrgnhZ8iUwX1tUHwOTLATeFfvdAF3dN3eLdObt7Q6XQ==}
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.7':
+ resolution: {integrity: sha512-q6Szr5o54lJWir2uYxwxDoOUdSCrA2Nb8sKqQRnJHP9985o0uxeq85LKvMubFRgTKq9Q71ZZPrZBs7pwr4ji1Q==}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.6':
- resolution: {integrity: sha512-+DEjh4orr5vGASIjFuEtjIfKpSF9wPbUG5QCJ+zdXJ+e/SPb5GxqzhAAGAQE9upWzVYU4Gca4WxzP51JEVU40w==}
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.7':
+ resolution: {integrity: sha512-MiEE4ReEw7jdxKE8eKTdt3z7N1sucgSb1J0BUY3Dd8YKLjh2jNYHhJu13/tCo2DBMZxT+FDJE3WJ5kCxZA7+YA==}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.6':
- resolution: {integrity: sha512-/ruUtvsP5iXFqOqrhymjz2oH+KLsDyyJaD0YSwuM0Sf3kCtQ4D2cpnMzjzTWtdPrP2NKFduDCFazYKiGyPtIfQ==}
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.7':
+ resolution: {integrity: sha512-2yDNUKQidgcZr/VSJCUy9IGvtcF/GfBEBrCsqvSkVKMNLNySICvybAwKtCNPeZSOwf875CWnnyKNeg5vwV6rMg==}
cpu: [x64]
os: [linux]
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.6':
- resolution: {integrity: sha512-1RCIuyk0kDzPLwopcsfFXjWqUVuzn54nQNk+97O9auREIshEOEf/c3+xpjKNKYpLXpV9ZetLlgv60E1yE3conw==}
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.7':
+ resolution: {integrity: sha512-72LjHkY9Sqav35qopNh4fabhSsqKWmOwMtjmrNgONTtC5LhALjNZlaXkAaFvQRJ8N7ftT8BOITzaZeqrF6BYdg==}
cpu: [x64]
os: [linux]
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.6':
- resolution: {integrity: sha512-da3ACjk70tIT6QNQCaLjDZ0uFBAO8H3UT+tfm1rclE6SAACCwiXZV5qC8yprNguE0wx8QvhyWnt1h9R50UovGg==}
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.7':
+ resolution: {integrity: sha512-sR8q2p3j5ZCkFWPbm6LUIYE7SHfmrVqXu0n4CFpzmAM95pDhFRx8SzT/oL5tkFN+mCdnPpzcvpn9OioVXQ8CxA==}
engines: {node: '>=14.21.3'}
cpu: [wasm32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.6':
- resolution: {integrity: sha512-sh0YWjjQrNGzv3BFSQnySKP1+0RboVX4TMY4oyoqmhe1pDbUVFmIbdSWPAH9ppIX1DVYoR/g/gcGIi/XgZZlEw==}
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.7':
+ resolution: {integrity: sha512-eeSNGdZt01NelYGl5LZc3cSwN4iYG5XE8zMqkILErfW6ndpc74DKeDWI0aG8jmtjz5VerLA4B9DzOkhuFj4lNg==}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.6':
- resolution: {integrity: sha512-IqoZ4+vVVdO0YcKm2NdzhCdGIQm63JSaI5dK/BS+AmwfjB+7ThTnmYw9qhoNIOrQ4f/Dyjlmp+E23N+JzcmxwQ==}
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.7':
+ resolution: {integrity: sha512-d7Uhs3LWirrE4+TRa2N25AqrZaZjYZdOrKSYbZFMF42tFkWIgGWPCQouTqjMgjVGX0feJpF7+9dwVhjZFzZbYA==}
cpu: [ia32]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.6':
- resolution: {integrity: sha512-ZxH7/+Wa88KiBa4TMCz8gj6TNewVeZr1J93TwU4AA6U2TFTgtkrx/9DbYUhoQ/m9L5+iHaPT++z2la5nVr9t+A==}
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.7':
+ resolution: {integrity: sha512-Z3P1JHx+U7Sr73v5wJtEygxboF2VR9ds4eSAgFfslhIxFI48FFm+WEMeuLLeqnx0tiq1UL6cIIg5+h3mlaG6UA==}
cpu: [x64]
os: [win32]
- '@rollup/rollup-android-arm-eabi@4.36.0':
- resolution: {integrity: sha512-jgrXjjcEwN6XpZXL0HUeOVGfjXhPyxAbbhD0BlXUB+abTOpbPiN5Wb3kOT7yb+uEtATNYF5x5gIfwutmuBA26w==}
+ '@rollup/rollup-android-arm-eabi@4.39.0':
+ resolution: {integrity: sha512-lGVys55Qb00Wvh8DMAocp5kIcaNzEFTmGhfFd88LfaogYTRKrdxgtlO5H6S49v2Nd8R2C6wLOal0qv6/kCkOwA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.36.0':
- resolution: {integrity: sha512-NyfuLvdPdNUfUNeYKUwPwKsE5SXa2J6bCt2LdB/N+AxShnkpiczi3tcLJrm5mA+eqpy0HmaIY9F6XCa32N5yzg==}
+ '@rollup/rollup-android-arm64@4.39.0':
+ resolution: {integrity: sha512-It9+M1zE31KWfqh/0cJLrrsCPiF72PoJjIChLX+rEcujVRCb4NLQ5QzFkzIZW8Kn8FTbvGQBY5TkKBau3S8cCQ==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.36.0':
- resolution: {integrity: sha512-JQ1Jk5G4bGrD4pWJQzWsD8I1n1mgPXq33+/vP4sk8j/z/C2siRuxZtaUA7yMTf71TCZTZl/4e1bfzwUmFb3+rw==}
+ '@rollup/rollup-darwin-arm64@4.39.0':
+ resolution: {integrity: sha512-lXQnhpFDOKDXiGxsU9/l8UEGGM65comrQuZ+lDcGUx+9YQ9dKpF3rSEGepyeR5AHZ0b5RgiligsBhWZfSSQh8Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.36.0':
- resolution: {integrity: sha512-6c6wMZa1lrtiRsbDziCmjE53YbTkxMYhhnWnSW8R/yqsM7a6mSJ3uAVT0t8Y/DGt7gxUWYuFM4bwWk9XCJrFKA==}
+ '@rollup/rollup-darwin-x64@4.39.0':
+ resolution: {integrity: sha512-mKXpNZLvtEbgu6WCkNij7CGycdw9cJi2k9v0noMb++Vab12GZjFgUXD69ilAbBh034Zwn95c2PNSz9xM7KYEAQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.36.0':
- resolution: {integrity: sha512-KXVsijKeJXOl8QzXTsA+sHVDsFOmMCdBRgFmBb+mfEb/7geR7+C8ypAml4fquUt14ZyVXaw2o1FWhqAfOvA4sg==}
+ '@rollup/rollup-freebsd-arm64@4.39.0':
+ resolution: {integrity: sha512-jivRRlh2Lod/KvDZx2zUR+I4iBfHcu2V/BA2vasUtdtTN2Uk3jfcZczLa81ESHZHPHy4ih3T/W5rPFZ/hX7RtQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.36.0':
- resolution: {integrity: sha512-dVeWq1ebbvByI+ndz4IJcD4a09RJgRYmLccwlQ8bPd4olz3Y213uf1iwvc7ZaxNn2ab7bjc08PrtBgMu6nb4pQ==}
+ '@rollup/rollup-freebsd-x64@4.39.0':
+ resolution: {integrity: sha512-8RXIWvYIRK9nO+bhVz8DwLBepcptw633gv/QT4015CpJ0Ht8punmoHU/DuEd3iw9Hr8UwUV+t+VNNuZIWYeY7Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.36.0':
- resolution: {integrity: sha512-bvXVU42mOVcF4le6XSjscdXjqx8okv4n5vmwgzcmtvFdifQ5U4dXFYaCB87namDRKlUL9ybVtLQ9ztnawaSzvg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.39.0':
+ resolution: {integrity: sha512-mz5POx5Zu58f2xAG5RaRRhp3IZDK7zXGk5sdEDj4o96HeaXhlUwmLFzNlc4hCQi5sGdR12VDgEUqVSHer0lI9g==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.36.0':
- resolution: {integrity: sha512-JFIQrDJYrxOnyDQGYkqnNBtjDwTgbasdbUiQvcU8JmGDfValfH1lNpng+4FWlhaVIR4KPkeddYjsVVbmJYvDcg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.39.0':
+ resolution: {integrity: sha512-+YDwhM6gUAyakl0CD+bMFpdmwIoRDzZYaTWV3SDRBGkMU/VpIBYXXEvkEcTagw/7VVkL2vA29zU4UVy1mP0/Yw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.36.0':
- resolution: {integrity: sha512-KqjYVh3oM1bj//5X7k79PSCZ6CvaVzb7Qs7VMWS+SlWB5M8p3FqufLP9VNp4CazJ0CsPDLwVD9r3vX7Ci4J56A==}
+ '@rollup/rollup-linux-arm64-gnu@4.39.0':
+ resolution: {integrity: sha512-EKf7iF7aK36eEChvlgxGnk7pdJfzfQbNvGV/+l98iiMwU23MwvmV0Ty3pJ0p5WQfm3JRHOytSIqD9LB7Bq7xdQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.36.0':
- resolution: {integrity: sha512-QiGnhScND+mAAtfHqeT+cB1S9yFnNQ/EwCg5yE3MzoaZZnIV0RV9O5alJAoJKX/sBONVKeZdMfO8QSaWEygMhw==}
+ '@rollup/rollup-linux-arm64-musl@4.39.0':
+ resolution: {integrity: sha512-vYanR6MtqC7Z2SNr8gzVnzUul09Wi1kZqJaek3KcIlI/wq5Xtq4ZPIZ0Mr/st/sv/NnaPwy/D4yXg5x0B3aUUA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.36.0':
- resolution: {integrity: sha512-1ZPyEDWF8phd4FQtTzMh8FQwqzvIjLsl6/84gzUxnMNFBtExBtpL51H67mV9xipuxl1AEAerRBgBwFNpkw8+Lg==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.39.0':
+ resolution: {integrity: sha512-NMRUT40+h0FBa5fb+cpxtZoGAggRem16ocVKIv5gDB5uLDgBIwrIsXlGqYbLwW8YyO3WVTk1FkFDjMETYlDqiw==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.36.0':
- resolution: {integrity: sha512-VMPMEIUpPFKpPI9GZMhJrtu8rxnp6mJR3ZzQPykq4xc2GmdHj3Q4cA+7avMyegXy4n1v+Qynr9fR88BmyO74tg==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.39.0':
+ resolution: {integrity: sha512-0pCNnmxgduJ3YRt+D+kJ6Ai/r+TaePu9ZLENl+ZDV/CdVczXl95CbIiwwswu4L+K7uOIGf6tMo2vm8uadRaICQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.36.0':
- resolution: {integrity: sha512-ttE6ayb/kHwNRJGYLpuAvB7SMtOeQnVXEIpMtAvx3kepFQeowVED0n1K9nAdraHUPJ5hydEMxBpIR7o4nrm8uA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.39.0':
+ resolution: {integrity: sha512-t7j5Zhr7S4bBtksT73bO6c3Qa2AV/HqiGlj9+KB3gNF5upcVkx+HLgxTm8DK4OkzsOYqbdqbLKwvGMhylJCPhQ==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-musl@4.39.0':
+ resolution: {integrity: sha512-m6cwI86IvQ7M93MQ2RF5SP8tUjD39Y7rjb1qjHgYh28uAPVU8+k/xYWvxRO3/tBN2pZkSMa5RjnPuUIbrwVxeA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.36.0':
- resolution: {integrity: sha512-4a5gf2jpS0AIe7uBjxDeUMNcFmaRTbNv7NxI5xOCs4lhzsVyGR/0qBXduPnoWf6dGC365saTiwag8hP1imTgag==}
+ '@rollup/rollup-linux-s390x-gnu@4.39.0':
+ resolution: {integrity: sha512-iRDJd2ebMunnk2rsSBYlsptCyuINvxUfGwOUldjv5M4tpa93K8tFMeYGpNk2+Nxl+OBJnBzy2/JCscGeO507kA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.36.0':
- resolution: {integrity: sha512-5KtoW8UWmwFKQ96aQL3LlRXX16IMwyzMq/jSSVIIyAANiE1doaQsx/KRyhAvpHlPjPiSU/AYX/8m+lQ9VToxFQ==}
+ '@rollup/rollup-linux-x64-gnu@4.39.0':
+ resolution: {integrity: sha512-t9jqYw27R6Lx0XKfEFe5vUeEJ5pF3SGIM6gTfONSMb7DuG6z6wfj2yjcoZxHg129veTqU7+wOhY6GX8wmf90dA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.36.0':
- resolution: {integrity: sha512-sycrYZPrv2ag4OCvaN5js+f01eoZ2U+RmT5as8vhxiFz+kxwlHrsxOwKPSA8WyS+Wc6Epid9QeI/IkQ9NkgYyQ==}
+ '@rollup/rollup-linux-x64-musl@4.39.0':
+ resolution: {integrity: sha512-ThFdkrFDP55AIsIZDKSBWEt/JcWlCzydbZHinZ0F/r1h83qbGeenCt/G/wG2O0reuENDD2tawfAj2s8VK7Bugg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.36.0':
- resolution: {integrity: sha512-qbqt4N7tokFwwSVlWDsjfoHgviS3n/vZ8LK0h1uLG9TYIRuUTJC88E1xb3LM2iqZ/WTqNQjYrtmtGmrmmawB6A==}
+ '@rollup/rollup-win32-arm64-msvc@4.39.0':
+ resolution: {integrity: sha512-jDrLm6yUtbOg2TYB3sBF3acUnAwsIksEYjLeHL+TJv9jg+TmTwdyjnDex27jqEMakNKf3RwwPahDIt7QXCSqRQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.36.0':
- resolution: {integrity: sha512-t+RY0JuRamIocMuQcfwYSOkmdX9dtkr1PbhKW42AMvaDQa+jOdpUYysroTF/nuPpAaQMWp7ye+ndlmmthieJrQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.39.0':
+ resolution: {integrity: sha512-6w9uMuza+LbLCVoNKL5FSLE7yvYkq9laSd09bwS0tMjkwXrmib/4KmoJcrKhLWHvw19mwU+33ndC69T7weNNjQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.36.0':
- resolution: {integrity: sha512-aRXd7tRZkWLqGbChgcMMDEHjOKudo1kChb1Jt1IfR8cY/KIpgNviLeJy5FUb9IpSuQj8dU2fAYNMPW/hLKOSTw==}
+ '@rollup/rollup-win32-x64-msvc@4.39.0':
+ resolution: {integrity: sha512-yAkUOkIKZlK5dl7u6dg897doBgLXmUHhIINM2c+sND3DZwnrdQkkSiDh7N75Ll4mM4dxSkYfXqU9fW3lLkMFug==}
cpu: [x64]
os: [win32]
- '@rspack/binding-darwin-arm64@1.2.8':
- resolution: {integrity: sha512-bDlrlroY3iMlzna/3i1gD6eRmhJW2zRyC3Ov6aR1micshVQ9RteigYZWkjZuQfyC5Z8dCcLUQJVojz+pqp0JXg==}
+ '@rspack/binding-darwin-arm64@1.3.4':
+ resolution: {integrity: sha512-cVfzvtVf05VumGrxFz9Tk0QHk4jWBcQBNQuaql2enco8NKnzuX+v0+VP2mbNfvgICBgrHWKRYinAX5IxTEJdCw==}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.2.8':
- resolution: {integrity: sha512-0/qOVbMuzZ+WbtDa4TbH46R4vph/W6MHcXbrXDO+vpdTMFDVJ64DnZXT7aqvGcY+7vTCIGm0GT+6ooR4KaIX8A==}
+ '@rspack/binding-darwin-x64@1.3.4':
+ resolution: {integrity: sha512-vXzf8xI+njdOSXGyI39lqkH/bSwyrx4jXW9+Pj2zbmRJVHZVyJsrx4kSpOoZX5zx/a7BbvuHRwrmmJS2HEOobw==}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.2.8':
- resolution: {integrity: sha512-En/SMl45s19iUVb1/ZDFQvFDxIjnlfk7yqV3drMWWAL5HSgksNejaTIFTO52aoohIBbmwuk5wSGcbU0G0IFiPg==}
+ '@rspack/binding-linux-arm64-gnu@1.3.4':
+ resolution: {integrity: sha512-c45kQrqzR05Jc62oAetiAXrnPWhyt3Pz1h2LF62OW8SYXxdBskAKpWntTts/T96HMLqNPH3MAfDKxyfOb/n0eQ==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.2.8':
- resolution: {integrity: sha512-N1oZsXfJ9VLLcK7p1PS65cxLYQCZ7iqHW2OP6Ew2+hlz/d1hzngxgzrtZMCXFOHXDvTzVu5ff6jGS2v7+zv2tA==}
+ '@rspack/binding-linux-arm64-musl@1.3.4':
+ resolution: {integrity: sha512-/dUvkcBVnV95tA7BpeA6IZhrbpwxFzvgU6qF/iKxyHdMjwHdjn1Um7nR00TPOn/SIHzljafHpL6CuVTLNB5xvA==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.2.8':
- resolution: {integrity: sha512-BdPaepoLKuaVwip4QK/nGqNi1xpbCWSxiycPbKRrGqKgt/QGihxxFgiqr4EpWQVIJNIMy4nCsg4arO0+H1KWGQ==}
+ '@rspack/binding-linux-x64-gnu@1.3.4':
+ resolution: {integrity: sha512-jZgGKoH7RyqJbyEcvhEE9wqK6mwoWxLF3c3LD2+e+dKVcO5iCfMuulCGdzUnYyvH97CtvN5j0/20PErRXubyjg==}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.2.8':
- resolution: {integrity: sha512-GFv0Bod268OcXIcjeLoPlK0oz8rClEIxIRFkz+ejhbvfCwRJ+Fd+EKaaKQTBfZQujPqc0h2GctIF25nN5pFTmA==}
+ '@rspack/binding-linux-x64-musl@1.3.4':
+ resolution: {integrity: sha512-Xko8mZ598vQDubig4rLTuCDjXplSDJbJEg6B3NykGaE6CMH2bI/6KJfVKEKo25ayNzoouT/1MxyOxB4mQuspbA==}
cpu: [x64]
os: [linux]
- '@rspack/binding-win32-arm64-msvc@1.2.8':
- resolution: {integrity: sha512-aEU+uJdbvJJGrzzAsjbjrPeNbG/bcG8JoXK2kSsUB+/sWHTIkHX0AQ3oX3aV/lcLKgZWrUxLAfLoCXEnIHMEyQ==}
+ '@rspack/binding-win32-arm64-msvc@1.3.4':
+ resolution: {integrity: sha512-Q+pU/MRylYB3XoNTM1LYPxWV1KUxeZY6R54twtoDFXhZn/PDflP7qH1BHQ0KN50HuG5ZK89CaFSPMF7+vs6HNA==}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.2.8':
- resolution: {integrity: sha512-GHYzNOSoiLyG9elLTmMqADJMQzjll+co4irp5AgZ+KHG9EVq0qEHxDqDIJxZnUA15U8JDvCgo6YAo3T0BFEL0Q==}
+ '@rspack/binding-win32-ia32-msvc@1.3.4':
+ resolution: {integrity: sha512-aqP/l+YAG4L9I1klW3uSq+olafw8xzAP+4cd/Nyy2SSDnhWsDgawxJyO6FIeM+hXwC73ChH9pcXHGgEC7iCcHw==}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.2.8':
- resolution: {integrity: sha512-EigKLhKLH1kfv1e/ZgXuSKlIjkbyneJtiLbNDz7EeEVFGV1XMM6bsCea1sb2WOxsPYiOX4Q5JmR1j1KGrZS/LA==}
+ '@rspack/binding-win32-x64-msvc@1.3.4':
+ resolution: {integrity: sha512-xDU1njA1gIzIL6Nt5ARW4vWeVgwf00i7tPONg+6fJyMgwuFfwq2qEG7UFSBOedYjsSTCW+UoBh7riN7lRiFIvw==}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.2.8':
- resolution: {integrity: sha512-T3FMB3N9P1AbSAryfkSRJkPtmeSYs/Gj9zUZoPz1ckPEIcWZmpUOQbJylldjbw5waxtCL1haHNbi0pcSvxiaJw==}
+ '@rspack/binding@1.3.4':
+ resolution: {integrity: sha512-wDRqqNfrVXuHAEm25mPlhroKN+v4uwhihVnZF4duz0I0L5rbsUNCy7uEda0GrBXkj3jkKLfg60mSd9MCZD0JZw==}
- '@rspack/cli@1.2.8':
- resolution: {integrity: sha512-xPNLJCnQt8B1j7i4T67MmVzYxJfx0c+gEhHozfVfpg/2PwuR9PBMnwo+53wJkUJk+ctJ+eMLQomDZymq4j26nA==}
+ '@rspack/cli@1.3.4':
+ resolution: {integrity: sha512-MqstfifN6Q3+sNqUKZ29kHtAW/gqXyfH6TWZhJmqUsE9UWVuUOB607ze69mDBWht1cE/ml1waHna25dVCSx6AA==}
hasBin: true
peerDependencies:
'@rspack/core': ^1.0.0-alpha || ^1.x
@@ -1271,8 +1310,8 @@ packages:
'@rspack/tracing':
optional: true
- '@rspack/core@1.2.8':
- resolution: {integrity: sha512-ppj3uQQtkhgrYDLrUqb33YbpNEZCpAudpfVuOHGsvUrAnu1PijbfJJymoA5ZvUhM+HNMvPI5D1ie97TXyb0UVg==}
+ '@rspack/core@1.3.4':
+ resolution: {integrity: sha512-NIIk/0XUkyU9G8eby6kKO3YFpeDn8RsUIzNuElcfi1rWuuK+NLasDqUYOFqqlNBKnZpmtZ+SXAV9jE5k/i3uwg==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@rspack/tracing': ^1.x
@@ -1283,8 +1322,8 @@ packages:
'@swc/helpers':
optional: true
- '@rspack/dev-server@1.0.10':
- resolution: {integrity: sha512-iDsEtP0jNHRm4LJxL00QFTlOuqkdxIFxnd69h0KrFadmtxAWiDLIe4vYdZXWF74w4MezsJFx6dB2nUM/Ok8utA==}
+ '@rspack/dev-server@1.1.1':
+ resolution: {integrity: sha512-9r7vOml2SrFA8cvbcJdSan9wHEo1TPXezF22+s5jvdyAAywg8w7HqDol6TPVv64NUonP1DOdyLxZ+6UW6WZiwg==}
engines: {node: '>= 18.12.0'}
peerDependencies:
'@rspack/core': '*'
@@ -1379,8 +1418,8 @@ packages:
'@types/eslint@9.6.1':
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ '@types/estree@1.0.7':
+ resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
@@ -1433,8 +1472,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@22.13.11':
- resolution: {integrity: sha512-iEUCUJoU0i3VnrCmgoWCXttklWcvoCIx4jzcP22fioIVSdTmjgoEvmAO/QPw6TcS9k5FrNgn4w7q5lGOd1CT5g==}
+ '@types/node@22.14.0':
+ resolution: {integrity: sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1442,20 +1481,20 @@ packages:
'@types/object-path@0.11.4':
resolution: {integrity: sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==}
+ '@types/picomatch@3.0.2':
+ resolution: {integrity: sha512-n0i8TD3UDB7paoMMxA3Y65vUncFJXjcUf7lQY7YyKGl6031FNjfsLs6pdLFCy2GNFxItPJG8GvvpbZc2skH7WA==}
+
'@types/qs@6.9.18':
resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/retry@0.12.0':
- resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
-
'@types/retry@0.12.2':
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+ '@types/semver@7.7.0':
+ resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
@@ -1478,54 +1517,54 @@ packages:
'@types/web-bluetooth@0.0.21':
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
- '@types/ws@8.18.0':
- resolution: {integrity: sha512-8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw==}
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
- '@typescript-eslint/eslint-plugin@8.27.0':
- resolution: {integrity: sha512-4henw4zkePi5p252c8ncBLzLce52SEUz2Ebj8faDnuUXz2UuHEONYcJ+G0oaCF+bYCWVZtrGzq3FD7YXetmnSA==}
+ '@typescript-eslint/eslint-plugin@8.29.1':
+ resolution: {integrity: sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.27.0':
- resolution: {integrity: sha512-XGwIabPallYipmcOk45DpsBSgLC64A0yvdAkrwEzwZ2viqGqRUJ8eEYoPz0CWnutgAFbNMPdsGGvzjSmcWVlEA==}
+ '@typescript-eslint/parser@8.29.1':
+ resolution: {integrity: sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.27.0':
- resolution: {integrity: sha512-8oI9GwPMQmBryaaxG1tOZdxXVeMDte6NyJA4i7/TWa4fBwgnAXYlIQP+uYOeqAaLJ2JRxlG9CAyL+C+YE9Xknw==}
+ '@typescript-eslint/scope-manager@8.29.1':
+ resolution: {integrity: sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.27.0':
- resolution: {integrity: sha512-wVArTVcz1oJOIEJxui/nRhV0TXzD/zMSOYi/ggCfNq78EIszddXcJb7r4RCp/oBrjt8n9A0BSxRMKxHftpDxDA==}
+ '@typescript-eslint/type-utils@8.29.1':
+ resolution: {integrity: sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.27.0':
- resolution: {integrity: sha512-/6cp9yL72yUHAYq9g6DsAU+vVfvQmd1a8KyA81uvfDE21O2DwQ/qxlM4AR8TSdAu+kJLBDrEHKC5/W2/nxsY0A==}
+ '@typescript-eslint/types@8.29.1':
+ resolution: {integrity: sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.27.0':
- resolution: {integrity: sha512-BnKq8cqPVoMw71O38a1tEb6iebEgGA80icSxW7g+kndx0o6ot6696HjG7NdgfuAVmVEtwXUr3L8R9ZuVjoQL6A==}
+ '@typescript-eslint/typescript-estree@8.29.1':
+ resolution: {integrity: sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.27.0':
- resolution: {integrity: sha512-njkodcwH1yvmo31YWgRHNb/x1Xhhq4/m81PhtvmRngD8iHPehxffz1SNCO+kwaePhATC+kOa/ggmvPoPza5i0Q==}
+ '@typescript-eslint/utils@8.29.1':
+ resolution: {integrity: sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.27.0':
- resolution: {integrity: sha512-WsXQwMkILJvffP6z4U3FYJPlbf/j07HIxmDjZpbNvBJkMfvwXj5ACRkkHwBDvLBbDbtX5TdU64/rcvKJ/vuInQ==}
+ '@typescript-eslint/visitor-keys@8.29.1':
+ resolution: {integrity: sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript/vfs@1.6.1':
@@ -1536,151 +1575,171 @@ packages:
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- '@unocss/astro@66.1.0-beta.6':
- resolution: {integrity: sha512-LL4DqqMB5D++c5aPZAis1YjzqvwstLVOYwcoXfuA8Ty96/HgCK8XZINpfZUwUND8FqlpFjnqs0NgUm4NkDDexg==}
+ '@unocss/astro@66.1.0-beta.10':
+ resolution: {integrity: sha512-PDg1n4TeovElo4IqUpqNQA4K5pbLmgPceh8vjs6hUGmH3mwOdTYKYTWtcc2hFy40/6XSaKy0iiWuBogCyVU/EQ==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
peerDependenciesMeta:
vite:
optional: true
- '@unocss/cli@66.1.0-beta.6':
- resolution: {integrity: sha512-HLO04NOfTWjrGtpXxpB41vO8oj/pL+R4Ma/E4pnh4Zzq2e5RDMhyQvgiYSdS6PeIGB5AQDrgmd41EuGHsp23qg==}
+ '@unocss/cli@66.1.0-beta.10':
+ resolution: {integrity: sha512-B0E5W+xKhixQRIQWcFulmoFn7/KNMv7rLtP/ab3ltZ0Szw9Q+9I0WZIpW4UZmfHOIF7yqqnXxcUIhLvg6Ot3fQ==}
engines: {node: '>=14'}
hasBin: true
- '@unocss/config@66.1.0-beta.6':
- resolution: {integrity: sha512-jLAxHSgMCEhIjCwOwfENtFM3gevU4QDQeaG4VVEYGFJ/oj27JJrl/j6HlUBdhFiR0Q7yf6QFCXlKTP/+put0/Q==}
+ '@unocss/config@66.1.0-beta.10':
+ resolution: {integrity: sha512-+qx4zlVA9f1cCifoVXYmiHTI1y1rIxHgpiUdb0pI8OOdFsK6j0adua/hSdlvroXAoj2MNdE8WVEEv3L6MlDOpg==}
engines: {node: '>=14'}
- '@unocss/core@66.1.0-beta.6':
- resolution: {integrity: sha512-TQLxpBZPl6m4HhS6/FMr0Vbn22tGWgbGPyfJyjTSYY/LTug42aIUPnTQnqFSRwGiUnBfp3+oAhG/t/lZ6U74tw==}
+ '@unocss/core@66.1.0-beta.10':
+ resolution: {integrity: sha512-zYn5kmrmmaEQ81+CkoRcNYaMgUePb85RCIr3oty3yc4tFtJHymHuv+4NKoWWZzfhdfVKeK2y7U9wpLcfcbIiew==}
- '@unocss/extractor-arbitrary-variants@66.1.0-beta.6':
- resolution: {integrity: sha512-jUI5Ncppngy8NKv8p9ubUi0FAw6Vcrx7hC7aWaqEFdfA2cDGpR5XHyWJozkT7BbfZs+SnA76b6qwuEtcXwYTAg==}
+ '@unocss/extractor-arbitrary-variants@66.1.0-beta.10':
+ resolution: {integrity: sha512-qxeScl5guWtlNNUxcOFI12WTLkivao/4vIJW2uJfxuDVlUlBtrB6dw/SL40CVlosZemvM24Boo4U/xjWeh/oCA==}
- '@unocss/inspector@66.1.0-beta.6':
- resolution: {integrity: sha512-YjK017dGMtN8Q067d9n9aCKFXGB8jD13PomKmKOWs3YfmPQE1qQjqQUXH4Zf/jhGMvaB72BHevqctLRHguHfww==}
+ '@unocss/inspector@66.1.0-beta.10':
+ resolution: {integrity: sha512-zAFrpQkzNz4uWxynVsnRdIBckVYHafYqUBzIVfuvwcK3rxHhkET5fVGQk70ww29CRX0bjy7x64wPggKsQ2wg2A==}
- '@unocss/postcss@66.1.0-beta.6':
- resolution: {integrity: sha512-WvpOKr7rPRfb8ttUYpta/WlH/rk0hwZUj59hSW5aMFs/EfaKolIurcSz6UU/yDGBly4T3F+MadqbjSU91iJ8xg==}
+ '@unocss/postcss@66.1.0-beta.10':
+ resolution: {integrity: sha512-MYbdqNozge5MY/cKO9A7b1WWef7Xw9GiwPWu+RpmBs7218dfowtfIIYzVyLEKWNoFW3iy5JjVm0oYfYCBKj9wg==}
engines: {node: '>=14'}
peerDependencies:
postcss: ^8.4.21
- '@unocss/preset-attributify@66.1.0-beta.6':
- resolution: {integrity: sha512-JTSTh7x+DXa1hWe4xCztOeYc0zNpbv0USiHfgM303ZcDr5zNKG4iGAebBqcmAu8CUB+Tq3OJOA4m/dqfkVAAuQ==}
+ '@unocss/preset-attributify@66.1.0-beta.10':
+ resolution: {integrity: sha512-Rue15+sGta598wezB9NEcKiLmBFNjaAiPYCsVUU2+3RrrF/H59Uq9RBgQ/9SDn9wCT+mxYcn/aIDaIQzDog1Tg==}
- '@unocss/preset-icons@66.1.0-beta.6':
- resolution: {integrity: sha512-zj+PaJ7gSIebtnMnLmzzn9e3tVCO9r2+nOz5v0DWpBfMfpSId4EkXtG3hMllRG8WEH8frZz5qBM3yFuhk8NqqQ==}
+ '@unocss/preset-icons@66.1.0-beta.10':
+ resolution: {integrity: sha512-Ms5CawV26GNi5iN/l9eIohKLcqh5QCA8F5cgJs5zW3kQ31YorveOOyg3QTpHAC4Dln5sZ9/4RplAWObGr2ppiQ==}
- '@unocss/preset-mini@66.1.0-beta.6':
- resolution: {integrity: sha512-MoF32nio5jzKi40VOeOU4k2uZvYUm2GKIxTRZ8C8mb7bFFphoMQD0/Pfr9oWpNC7jl7msuKt8i4xUknK5GAVDQ==}
+ '@unocss/preset-mini@66.1.0-beta.10':
+ resolution: {integrity: sha512-KqYstZZnOTHvMWAt3Q0UgZipDvvcbYyjpkbSD4Ki8nzHNjF9OJnQHqGTfxvjbiw5Yl27wcB0v4ueOksMENhRrA==}
- '@unocss/preset-tagify@66.1.0-beta.6':
- resolution: {integrity: sha512-pym/P+A8CtSp6ek/twe82hW50lsh8miJ7m/oNfU9oHNM/Lo0XQhnIaVvHwefprX+isyKW4KJWBBZ/gX3tbz+9Q==}
+ '@unocss/preset-tagify@66.1.0-beta.10':
+ resolution: {integrity: sha512-x71VI/PEUxihv8tAXnoPmq40Ysit6aAtslgTaUwy0smhfQfsM4uSC0c8BTrc1R0wZ8JSz+KIb6TbZNMvP52uvQ==}
- '@unocss/preset-typography@66.1.0-beta.6':
- resolution: {integrity: sha512-M6o4oXUMXo6RmclqsnUCXYJCW9cBJYYZcl4M2ofejNkCaqplAwWvc7X7TPvUjcURfwHf+CiXx42DXB0k+FCmlA==}
+ '@unocss/preset-typography@66.1.0-beta.10':
+ resolution: {integrity: sha512-e74Uwy+0croYtvVOEGmQrPz6TAIX1QtMzh2Ngfq283zxg6Cy2PybvdXCa5mUqn9X76pPXs0sWvSo2fknFg/Gjw==}
- '@unocss/preset-uno@66.1.0-beta.6':
- resolution: {integrity: sha512-zFvQ8sxSGcHoZBkMNngQIdQTFJgoNx5UosydUynLMzs86NFkwd/BAcS2cZBy+buLiuqV1oM2uSyxjLeAqury8g==}
+ '@unocss/preset-uno@66.1.0-beta.10':
+ resolution: {integrity: sha512-HzB5QB5KRmyZ8JVzLv4ZHMIPvSu7s9q+jb47W4gPJ0fhXUNJ7oVJIVPcYzBz+ppk98uNbUqOkJrnNE5BtUsiVg==}
- '@unocss/preset-web-fonts@66.1.0-beta.6':
- resolution: {integrity: sha512-G9EUBFuFT5sbh1rHsc5oJVHTKK9FMUvtoELaS5HRnxYtr6CR9iepXMNNRb8tmjwx5ewStn7cBKHCGHxnoij3Ew==}
+ '@unocss/preset-web-fonts@66.1.0-beta.10':
+ resolution: {integrity: sha512-yoXedApMV/TDNG2uLcl4awXs4uYs2isnXmSJabR32DIctknqXfHjzvpEoBz8e1AmlmBz4GEi0i1ounu8mL5nrw==}
- '@unocss/preset-wind3@66.1.0-beta.6':
- resolution: {integrity: sha512-AWLf5bT/tjXao5BIdgeDG/XxQoRKvh+G7DQGzJJe4vkOv8QK7QHG8LuqaadEkLTgTY1DaIXshK9d7+E/fFAcFw==}
+ '@unocss/preset-wind3@66.1.0-beta.10':
+ resolution: {integrity: sha512-R8cp1FORCMTNbIT6UTPIVZfSk62Ns+KrjI8psGzZLhIpbrD57l5CixJKESHGP+Gwp8Ff94PLI9i547ZNT0oMKg==}
- '@unocss/preset-wind4@66.1.0-beta.6':
- resolution: {integrity: sha512-8OuBpnPbwId4/6sZe4j52+2shnyY/A3/y7RvhRow2xMgvEPBpJdkGHDDE+igwXF3Bhpd7FZS93NpyMLLX42imA==}
+ '@unocss/preset-wind4@66.1.0-beta.10':
+ resolution: {integrity: sha512-MsxnYRkbRy3Sji8DUziKCHeqTNHhPyis7nLxZ63NYOS5fpvkfi4Rh69zus304a4/7rxH5BBJZrlLN7DH4IizgQ==}
- '@unocss/preset-wind@66.1.0-beta.6':
- resolution: {integrity: sha512-1H1YH5OQTGG3mFo54BZELkKWO4iE0UgH4W2+RdnWHEKYIpXImk8JtAkiO5iK0gJafoSQjx592fZ70krQKmNamQ==}
+ '@unocss/preset-wind@66.1.0-beta.10':
+ resolution: {integrity: sha512-JZItGFJTCyB9cjuM5YGtqlZQlbjqq0YSUvJU8BDLksoBw/o4hlFNSGnVfFKY9NM9s0NdA4bQWxlNLS9uLROIUw==}
- '@unocss/reset@66.1.0-beta.6':
- resolution: {integrity: sha512-HIB+JT1/1LbDChcbYmWAmSNMHMBYMcgubc5W0nIEZbfT4JGF/ZsbFeAhpbau/k/Ny5w5XlBD24CESkYewldgyw==}
+ '@unocss/reset@66.1.0-beta.10':
+ resolution: {integrity: sha512-B3Xd1jjtzsifpeoFWrtKO+7yjdx0S/lHaaDtAoPxHe8RmQBbjFSWpVV7ohRCEzuZwG0gLJHh5lV+lP70CyFJaw==}
- '@unocss/rule-utils@66.1.0-beta.6':
- resolution: {integrity: sha512-9RxYUGq96Ro+5XbevFlzKKwtROIv9c6VZbG+i34pMaw8ALFsCj34iGFvBs4ohTf03XkCCyMlr2f2KdFc9cj/Sw==}
+ '@unocss/rule-utils@66.1.0-beta.10':
+ resolution: {integrity: sha512-yGC8uQT6ErjLsWMU3Nx7mjvftYukLL+TELM+pmYOFmbhasrdnnJI1kT/04dyUHQTlm3XCs8I7LhbYaVz7MmIXA==}
engines: {node: '>=14'}
- '@unocss/transformer-attributify-jsx@66.1.0-beta.6':
- resolution: {integrity: sha512-Qp9kvq7nRjFRuUfM5zJ1Mz/JxjRNvRReL1m0t9lrgDQl3pc1+7pIxlQSEn0NJHaOQc8CBpLgTDRmwWLOtlB6SQ==}
+ '@unocss/transformer-attributify-jsx@66.1.0-beta.10':
+ resolution: {integrity: sha512-CiqpzJG3bhIMK/bNz8yX3HVv5rqIiXZZ+jqlyfHuioYomUp/Kogk8aQGId2yjJzIxCYKJIu2SlXqgIq3OqiZIQ==}
- '@unocss/transformer-compile-class@66.1.0-beta.6':
- resolution: {integrity: sha512-MckRTk6zh9GwjxIhvbckKko4VqESkaYLOLmHK0eVOioEPyV2B8eCqgrMLpYJlrpCIRbZV8ttAGNCiB8MsQgR/w==}
+ '@unocss/transformer-compile-class@66.1.0-beta.10':
+ resolution: {integrity: sha512-6mdrgypeW7DfkcFQXuoi73bARvwv3lVgqXP3qcw2NZp3qrSjNXoWTlVG8wTmZlA3yibVkUQHKm/ss7wZMArnGg==}
- '@unocss/transformer-directives@66.1.0-beta.6':
- resolution: {integrity: sha512-+/U6MV9IiPuCoE2+CKkXbpAlN7X8WembjdtM0jFTXJWJdrb11xI8bMTfGnhohKs94naQL6lEmow/wZVFgIIJug==}
+ '@unocss/transformer-directives@66.1.0-beta.10':
+ resolution: {integrity: sha512-PVXVblXCVo6mjThQrTwHcoNuZvrxjkzW4qWzZQxrCiS+pQs31kod0UL9WFIUWc/xgyRgYUiLNlBBhdxDykNJjg==}
- '@unocss/transformer-variant-group@66.1.0-beta.6':
- resolution: {integrity: sha512-Liug/F5nHYBLoUbo+47unrzKjYKxmN7HAw/jjQpzjKGn4bN6ZzCDodY3h6q5e8XsxFIkZlt3JZPZkMKjSf1E0Q==}
+ '@unocss/transformer-variant-group@66.1.0-beta.10':
+ resolution: {integrity: sha512-S6a5qVZXBv6QxKX7y9hVTUhMseyWEqvLv/p6gkKGAlmnJfeQak8OZBAECHUIhiGzYltF3I8gjsRqx7XYy3yh+w==}
- '@unocss/vite@66.1.0-beta.6':
- resolution: {integrity: sha512-/3yAxOJm8UFiNOBcuRQELrgQX55fJnb0wBNNSeW1YsE5vLCDNvP0acibDmqyKk2O+Ch9yw8duC60FKIptVzJhQ==}
+ '@unocss/vite@66.1.0-beta.10':
+ resolution: {integrity: sha512-d0qHzjOucy4AjAbQmCoFyoY4JjFaGOfhGyerSzzU4/DjOhjUmxsO6KTaDrmAgMGErGegWVoxScxOVCEMuh1c/Q==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- '@unrs/rspack-resolver-binding-darwin-arm64@1.2.2':
- resolution: {integrity: sha512-i7z0B+C0P8Q63O/5PXJAzeFtA1ttY3OR2VSJgGv18S+PFNwD98xHgAgPOT1H5HIV6jlQP8Avzbp09qxJUdpPNw==}
+ '@unrs/resolver-binding-darwin-arm64@1.4.1':
+ resolution: {integrity: sha512-8Tv+Bsd0BjGwfEedIyor4inw8atppRxM5BdUnIt+3mAm/QXUm7Dw74CHnXpfZKXkp07EXJGiA8hStqCINAWhdw==}
cpu: [arm64]
os: [darwin]
- '@unrs/rspack-resolver-binding-darwin-x64@1.2.2':
- resolution: {integrity: sha512-YEdFzPjIbDUCfmehC6eS+AdJYtFWY35YYgWUnqqTM2oe/N58GhNy5yRllxYhxwJ9GcfHoNc6Ubze1yjkNv+9Qg==}
+ '@unrs/resolver-binding-darwin-x64@1.4.1':
+ resolution: {integrity: sha512-X8c3PhWziEMKAzZz+YAYWfwawi5AEgzy/hmfizAB4C70gMHLKmInJcp1270yYAOs7z07YVFI220pp50z24Jk3A==}
cpu: [x64]
os: [darwin]
- '@unrs/rspack-resolver-binding-freebsd-x64@1.2.2':
- resolution: {integrity: sha512-TU4ntNXDgPN2giQyyzSnGWf/dVCem5lvwxg0XYvsvz35h5H19WrhTmHgbrULMuypCB3aHe1enYUC9rPLDw45mA==}
+ '@unrs/resolver-binding-freebsd-x64@1.4.1':
+ resolution: {integrity: sha512-UUr/nREy1UdtxXQnmLaaTXFGOcGxPwNIzeJdb3KXai3TKtC1UgNOB9s8KOA4TaxOUBR/qVgL5BvBwmUjD5yuVA==}
cpu: [x64]
os: [freebsd]
- '@unrs/rspack-resolver-binding-linux-arm-gnueabihf@1.2.2':
- resolution: {integrity: sha512-ik3w4/rU6RujBvNWiDnKdXi1smBhqxEDhccNi/j2rHaMjm0Fk49KkJ6XKsoUnD2kZ5xaMJf9JjailW/okfUPIw==}
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.4.1':
+ resolution: {integrity: sha512-e3pII53dEeS8inkX6A1ad2UXE0nuoWCqik4kOxaDnls0uJUq0ntdj5d9IYd+bv5TDwf9DSge/xPOvCmRYH+Tsw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.4.1':
+ resolution: {integrity: sha512-e/AKKd9gR+HNmVyDEPI/PIz2t0DrA3cyonHNhHVjrkxe8pMCiYiqhtn1+h+yIpHUtUlM6Y1FNIdivFa+r7wrEQ==}
cpu: [arm]
os: [linux]
- '@unrs/rspack-resolver-binding-linux-arm64-gnu@1.2.2':
- resolution: {integrity: sha512-fp4Azi8kHz6TX8SFmKfyScZrMLfp++uRm2srpqRjsRZIIBzH74NtSkdEUHImR4G7f7XJ+sVZjCc6KDDK04YEpQ==}
+ '@unrs/resolver-binding-linux-arm64-gnu@1.4.1':
+ resolution: {integrity: sha512-vtIu34luF1jRktlHtiwm2mjuE8oJCsFiFr8hT5+tFQdqFKjPhbJXn83LswKsOhy0GxAEevpXDI4xxEwkjuXIPA==}
cpu: [arm64]
os: [linux]
- '@unrs/rspack-resolver-binding-linux-arm64-musl@1.2.2':
- resolution: {integrity: sha512-gMiG3DCFioJxdGBzhlL86KcFgt9HGz0iDhw0YVYPsShItpN5pqIkNrI+L/Q/0gfDiGrfcE0X3VANSYIPmqEAlQ==}
+ '@unrs/resolver-binding-linux-arm64-musl@1.4.1':
+ resolution: {integrity: sha512-H3PaOuGyhFXiyJd+09uPhGl4gocmhyi1BRzvsP8Lv5AQO3p3/ZY7WjV4t2NkBksm9tMjf3YbOVHyPWi2eWsNYw==}
cpu: [arm64]
os: [linux]
- '@unrs/rspack-resolver-binding-linux-x64-gnu@1.2.2':
- resolution: {integrity: sha512-n/4n2CxaUF9tcaJxEaZm+lqvaw2gflfWQ1R9I7WQgYkKEKbRKbpG/R3hopYdUmLSRI4xaW1Cy0Bz40eS2Yi4Sw==}
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.4.1':
+ resolution: {integrity: sha512-4+GmJcaaFntCi1S01YByqp8wLMjV/FyQyHVGm0vedIhL1Vfx7uHkz/sZmKsidRwokBGuxi92GFmSzqT2O8KcNA==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-s390x-gnu@1.4.1':
+ resolution: {integrity: sha512-6RDQVCmtFYTlhy89D5ixTqo9bTQqFhvNN0Ey1wJs5r+01Dq15gPHRXv2jF2bQATtMrOfYwv+R2ZR9ew1N1N3YQ==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-x64-gnu@1.4.1':
+ resolution: {integrity: sha512-XpU9uzIkD86+19NjCXxlVPISMUrVXsXo5htxtuG+uJ59p5JauSRZsIxQxzzfKzkxEjdvANPM/lS1HFoX6A6QeA==}
cpu: [x64]
os: [linux]
- '@unrs/rspack-resolver-binding-linux-x64-musl@1.2.2':
- resolution: {integrity: sha512-cHyhAr6rlYYbon1L2Ag449YCj3p6XMfcYTP0AQX+KkQo025d1y/VFtPWvjMhuEsE2lLvtHm7GdJozj6BOMtzVg==}
+ '@unrs/resolver-binding-linux-x64-musl@1.4.1':
+ resolution: {integrity: sha512-3CDjG/spbTKCSHl66QP2ekHSD+H34i7utuDIM5gzoNBcZ1gTO0Op09Wx5cikXnhORRf9+HyDWzm37vU1PLSM1A==}
cpu: [x64]
os: [linux]
- '@unrs/rspack-resolver-binding-wasm32-wasi@1.2.2':
- resolution: {integrity: sha512-eogDKuICghDLGc32FtP+WniG38IB1RcGOGz0G3z8406dUdjJvxfHGuGs/dSlM9YEp/v0lEqhJ4mBu6X2nL9pog==}
+ '@unrs/resolver-binding-wasm32-wasi@1.4.1':
+ resolution: {integrity: sha512-50tYhvbCTnuzMn7vmP8IV2UKF7ITo1oihygEYq9wW2DUb/Y+QMqBHJUSCABRngATjZ4shOK6f2+s0gQX6ElENQ==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@unrs/rspack-resolver-binding-win32-arm64-msvc@1.2.2':
- resolution: {integrity: sha512-7sWRJumhpXSi2lccX8aQpfFXHsSVASdWndLv8AmD8nDRA/5PBi8IplQVZNx2mYRx6+Bp91Z00kuVqpXO9NfCTg==}
+ '@unrs/resolver-binding-win32-arm64-msvc@1.4.1':
+ resolution: {integrity: sha512-KyJiIne/AqV4IW0wyQO34wSMuJwy3VxVQOfIXIPyQ/Up6y/zi2P/WwXb78gHsLiGRUqCA9LOoCX+6dQZde0g1g==}
cpu: [arm64]
os: [win32]
- '@unrs/rspack-resolver-binding-win32-x64-msvc@1.2.2':
- resolution: {integrity: sha512-hewo/UMGP1a7O6FG/ThcPzSJdm/WwrYDNkdGgWl6M18H6K6MSitklomWpT9MUtT5KGj++QJb06va/14QBC4pvw==}
+ '@unrs/resolver-binding-win32-ia32-msvc@1.4.1':
+ resolution: {integrity: sha512-y2NUD7pygrBolN2NoXUrwVqBpKPhF8DiSNE5oB5/iFO49r2DpoYqdj5HPb3F42fPBH5qNqj6Zg63+xCEzAD2hw==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@unrs/resolver-binding-win32-x64-msvc@1.4.1':
+ resolution: {integrity: sha512-hVXaObGI2lGFmrtT77KSbPQ3I+zk9IU500wobjk0+oX59vg/0VqAzABNtt3YSQYgXTC2a/LYxekLfND/wlt0yQ==}
cpu: [x64]
os: [win32]
- '@valibot/to-json-schema@1.0.0-rc.0':
- resolution: {integrity: sha512-F3WDgnPzcDs9Y8qZwU9qfPnEJBQ6lCMCFjI7VsMjAza6yAixGr4cZ50gOy6zniSCk49GkFvq2a6cBKfZjTpyOw==}
+ '@valibot/to-json-schema@1.0.0':
+ resolution: {integrity: sha512-/9crJgPptVsGCL6X+JPDQyaJwkalSZ/52WuF8DiRUxJgcmpNdzYRfZ+gqMEP8W3CTVfuMWPqqvIgfwJ97f9Etw==}
peerDependencies:
- valibot: ^1.0.0 || ^1.0.0-beta.5 || ^1.0.0-rc
+ valibot: ^1.0.0
'@vitejs/plugin-vue@5.2.3':
resolution: {integrity: sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==}
@@ -1689,10 +1748,9 @@ packages:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitest/eslint-plugin@1.1.38':
- resolution: {integrity: sha512-KcOTZyVz8RiM5HyriiDVrP1CyBGuhRxle+lBsmSs6NTJEO/8dKVAq+f5vQzHj1/Kc7bYXSDO6yBe62Zx0t5iaw==}
+ '@vitest/eslint-plugin@1.1.40':
+ resolution: {integrity: sha512-M7RpSSVa98U0gtDcLfoZqLuv4Wk/G7o6TqTULwVbPO/TU7qaw41XNP0t68+JVgtgy/WkVGbxVQMBdj3XsywKcQ==}
peerDependencies:
- '@typescript-eslint/utils': ^8.24.0
eslint: '>= 8.57.0'
typescript: '>= 5.0.0'
vitest: '*'
@@ -1702,11 +1760,11 @@ packages:
vitest:
optional: true
- '@vitest/expect@3.0.9':
- resolution: {integrity: sha512-5eCqRItYgIML7NNVgJj6TVCmdzE7ZVgJhruW0ziSQV4V7PvLkDL1bBkBdcTs/VuIz0IxPb5da1IDSqc1TR9eig==}
+ '@vitest/expect@3.1.1':
+ resolution: {integrity: sha512-q/zjrW9lgynctNbwvFtQkGK9+vvHA5UzVi2V8APrp1C6fG6/MuYYkmlx4FubuqLycCeSdHD5aadWfua/Vr0EUA==}
- '@vitest/mocker@3.0.9':
- resolution: {integrity: sha512-ryERPIBOnvevAkTq+L1lD+DTFBRcjueL9lOUfXsLfwP92h4e+Heb+PjiqS3/OURWPtywfafK0kj++yDFjWUmrA==}
+ '@vitest/mocker@3.1.1':
+ resolution: {integrity: sha512-bmpJJm7Y7i9BBELlLuuM1J1Q6EQ6K5Ye4wcyOpOMXMcePYKSIYlpcrCm4l/O6ja4VJA5G2aMJiuZkZdnxlC3SA==}
peerDependencies:
msw: ^2.4.9
vite: ^5.0.0 || ^6.0.0
@@ -1716,20 +1774,20 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@3.0.9':
- resolution: {integrity: sha512-OW9F8t2J3AwFEwENg3yMyKWweF7oRJlMyHOMIhO5F3n0+cgQAJZBjNgrF8dLwFTEXl5jUqBLXd9QyyKv8zEcmA==}
+ '@vitest/pretty-format@3.1.1':
+ resolution: {integrity: sha512-dg0CIzNx+hMMYfNmSqJlLSXEmnNhMswcn3sXO7Tpldr0LiGmg3eXdLLhwkv2ZqgHb/d5xg5F7ezNFRA1fA13yA==}
- '@vitest/runner@3.0.9':
- resolution: {integrity: sha512-NX9oUXgF9HPfJSwl8tUZCMP1oGx2+Sf+ru6d05QjzQz4OwWg0psEzwY6VexP2tTHWdOkhKHUIZH+fS6nA7jfOw==}
+ '@vitest/runner@3.1.1':
+ resolution: {integrity: sha512-X/d46qzJuEDO8ueyjtKfxffiXraPRfmYasoC4i5+mlLEJ10UvPb0XH5M9C3gWuxd7BAQhpK42cJgJtq53YnWVA==}
- '@vitest/snapshot@3.0.9':
- resolution: {integrity: sha512-AiLUiuZ0FuA+/8i19mTYd+re5jqjEc2jZbgJ2up0VY0Ddyyxg/uUtBDpIFAy4uzKaQxOW8gMgBdAJJ2ydhu39A==}
+ '@vitest/snapshot@3.1.1':
+ resolution: {integrity: sha512-bByMwaVWe/+1WDf9exFxWWgAixelSdiwo2p33tpqIlM14vW7PRV5ppayVXtfycqze4Qhtwag5sVhX400MLBOOw==}
- '@vitest/spy@3.0.9':
- resolution: {integrity: sha512-/CcK2UDl0aQ2wtkp3YVWldrpLRNCfVcIOFGlVGKO4R5eajsH393Z1yiXLVQ7vWsj26JOEjeZI0x5sm5P4OGUNQ==}
+ '@vitest/spy@3.1.1':
+ resolution: {integrity: sha512-+EmrUOOXbKzLkTDwlsc/xrwOlPDXyVk3Z6P6K4oiCndxz7YLpp/0R0UsWVOKT0IXWjjBJuSMk6D27qipaupcvQ==}
- '@vitest/utils@3.0.9':
- resolution: {integrity: sha512-ilHM5fHhZ89MCp5aAaM9uhfl1c2JdxVxl3McqsdVyVNN6JffnEen8UMCdRTzOhGXNQGo5GNL9QugHrz727Wnng==}
+ '@vitest/utils@3.1.1':
+ resolution: {integrity: sha512-1XIjflyaU2k3HMArJ50bwSh3wKWPD6Q47wz/NUSmRV0zNywPc4w79ARjg/i/aNINHwA+mIALhUVqD9/aUvZNgg==}
'@volar/language-core@2.4.12':
resolution: {integrity: sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==}
@@ -1960,12 +2018,12 @@ packages:
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@5.21.0:
- resolution: {integrity: sha512-hexLq2lSO1K5SW9j21Ubc+q9Ptx7dyRTY7se19U8lhIlVMLCNXWCyQ6C22p9ez8ccX0v7QVmwkl2l1CnuGoO2Q==}
+ algoliasearch@5.23.3:
+ resolution: {integrity: sha512-0JlUaY/hl3LrKvbidI5FysEi2ggAlcTHM8AHV2UsrJUXnNo8/lWBfhzc1b7o8bK3YZNiU26JtLyT9exoj5VBgA==}
engines: {node: '>= 14.0.0'}
- alien-signals@1.0.6:
- resolution: {integrity: sha512-aITl4ODHNX9mqBqwZWr5oTYP74hemqVGV4KRLSQacjoZIdwNxbedHF656+c4zuGLtRtcowitoXdIfyrXgzniVg==}
+ alien-signals@1.0.13:
+ resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
@@ -2056,8 +2114,8 @@ packages:
birpc@0.2.19:
resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
- birpc@2.2.0:
- resolution: {integrity: sha512-1/22obknhoj56PcE+pZPp6AbWDdY55M81/ofpPW3Ltlp9Eh4zoFFLswvZmNpRTb790CY5tsNfgbYeNOqIARJfQ==}
+ birpc@2.3.0:
+ resolution: {integrity: sha512-ijbtkn/F3Pvzb6jHypHRyve2QApOCZDR25D/VnkY2G/lBNcXCTsnsCxgY4k4PkVB7zfwzYbY3O9Lcqe3xufS5g==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -2118,8 +2176,8 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@3.0.2:
- resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==}
+ c12@3.0.3:
+ resolution: {integrity: sha512-uC3MacKBb0Z15o5QWCHvHWj5Zv34pGQj9P+iXKSpTuSGFS0KKhUWf4t9AJ+gWjYOdmWCPEGpEzm8sS0iqbpo1w==}
peerDependencies:
magicast: ^0.3.5
peerDependenciesMeta:
@@ -2150,11 +2208,11 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- caniuse-lite@1.0.30001706:
- resolution: {integrity: sha512-3ZczoTApMAZwPKYWmwVbQMFpXBDds3/0VciVoUwPUbldlYyVLmRVuRs/PcUZtHpbLRpzzDvrvnFuREsGt6lUug==}
+ caniuse-lite@1.0.30001712:
+ resolution: {integrity: sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==}
- case-police@1.0.0:
- resolution: {integrity: sha512-THHWd3TZmtB5sSrd8bt5t0shPQ/MVBXWChIULc9Fome4NN4SagoxNlc/V+lpl5uA4pNcCsBv5Z3wMmCqlYilxw==}
+ case-police@2.0.0:
+ resolution: {integrity: sha512-jPVlo+mrmaLQOc4PH00noGFcJsZBWy+eKnAoiqdDJZAx23l6JqvxzElug0GgvZf8zDOODWs9PmEY9GjZb+oMHg==}
hasBin: true
ccount@2.0.1:
@@ -2297,8 +2355,8 @@ packages:
confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
- confbox@0.2.1:
- resolution: {integrity: sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==}
+ confbox@0.2.2:
+ resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
@@ -2359,6 +2417,9 @@ packages:
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
+ debounce@1.2.1:
+ resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
+
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -2417,10 +2478,6 @@ packages:
resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
engines: {node: '>=18'}
- default-gateway@6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
-
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
@@ -2450,8 +2507,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.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
@@ -2498,14 +2555,11 @@ packages:
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
-
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.123:
- resolution: {integrity: sha512-refir3NlutEZqlKaBLK0tzlVLe5P2wDKS7UQt/3SpibizgsRAPOsqQC3ffw1nlv3ze5gjRQZYHoPymgVZkplFA==}
+ electron-to-chromium@1.5.134:
+ resolution: {integrity: sha512-zSwzrLg3jNP3bwsLqWHmS5z2nIOQ5ngMnfMZOWWtXnqqQkPVyOipxK98w+1beLw1TB+EImPNcG8wVP/cLVs2Og==}
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
@@ -2516,9 +2570,6 @@ packages:
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- emoji-regex@9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -2566,10 +2617,10 @@ packages:
esbuild-plugin-copy@2.1.1:
resolution: {integrity: sha512-Bk66jpevTcV8KMFzZI1P7MZKZ+uDcrZm2G2egZ2jNIvVnivDpodZI+/KnpL3Jnap0PBdIHU7HwFGB8r+vV5CVw==}
peerDependencies:
- esbuild: ^0.25.1
+ esbuild: ^0.25.2
- esbuild@0.25.1:
- resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
+ esbuild@0.25.2:
+ resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==}
engines: {node: '>=18'}
hasBin: true
@@ -2598,8 +2649,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-compat-utils@0.6.4:
- resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
+ eslint-compat-utils@0.6.5:
+ resolution: {integrity: sha512-vAUHYzue4YAa2hNACjB8HvUQj5yehAZgiClyFVVom9cP8z5NSFq3PwB/TtJslN2zAMgRX6FCFCjYBbQh71g5RQ==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
@@ -2612,6 +2663,11 @@ packages:
eslint-flat-config-utils@2.0.1:
resolution: {integrity: sha512-brf0eAgQ6JlKj3bKfOTuuI7VcCZvi8ZCD1MMTVoEvS/d38j8cByZViLFALH/36+eqB17ukmfmKq3bWzGvizejA==}
+ 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==}
@@ -2631,6 +2687,9 @@ packages:
peerDependencies:
eslint: '*'
+ eslint-parser-plain@0.1.1:
+ resolution: {integrity: sha512-KRgd6wuxH4U8kczqPp+Oyk4irThIhHWxgFgLDtpgjUGVIS3wGrJntvZW/p6hHq1T4FOwnOtCNkvAI4Kr+mQ/Hw==}
+
eslint-plugin-antfu@3.1.1:
resolution: {integrity: sha512-7Q+NhwLfHJFvopI2HBZbSxWXngTwBLKxW1AGXLr2lEGxcEIK/AsDs8pn8fvIizl5aZjBbVbVK5ujmMpBe4Tvdg==}
peerDependencies:
@@ -2647,26 +2706,31 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-import-x@4.9.1:
- resolution: {integrity: sha512-YJ9W12tfDBBYVUUI5FVls6ZrzbVmfrHcQkjeHrG6I7QxWAlIbueRD+G4zPTg1FwlBouunTYm9dhJMVJZdj9wwQ==}
+ eslint-plugin-format@1.0.1:
+ resolution: {integrity: sha512-Tdns+CDjS+m7QrM85wwRi2yLae88XiWVdIOXjp9mDII0pmTBQlczPCmjpKnjiUIY3yPZNLqb5Ms/A/JXcBF2Dw==}
+ peerDependencies:
+ eslint: ^8.40.0 || ^9.0.0
+
+ eslint-plugin-import-x@4.10.2:
+ resolution: {integrity: sha512-jO3Y6+zBUyTX5MVbbLSzoz6fe65t+WEBaXStRLM4EBhZWbuSwAH3cLwARtM0Yp4zRtZGp9sL2zzK7G9JkHR8LA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- eslint-plugin-jsdoc@50.6.8:
- resolution: {integrity: sha512-PPZVqhoXaalMQwDGzcQrJtPSPIPOYsSMtvkjYAdsIazOW20yhYtVX4+jLL+XznD4zYTXyZbPWPRKkNev4D4lyw==}
+ eslint-plugin-jsdoc@50.6.9:
+ resolution: {integrity: sha512-7/nHu3FWD4QRG8tCVqcv+BfFtctUtEDWc29oeDXB4bwmDM2/r1ndl14AG/2DUntdqH7qmpvdemJKwb3R97/QEw==}
engines: {node: '>=18'}
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.0:
+ resolution: {integrity: sha512-FRgCn9Hzk5eKboCbVMrr9QrhM0eO4G+WKH8IFXoaeqhM/2kuWzbStJn4kkr0VWL8J5H8RYZF+Aoam1vlBaZVkw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-n@17.16.2:
- resolution: {integrity: sha512-iQM5Oj+9o0KaeLoObJC/uxNGpktZCkYiTTBo8PkRWq3HwNcRxwpvSDFjBhQ5+HLJzBTy+CLDC5+bw0Z5GyhlOQ==}
+ eslint-plugin-n@17.17.0:
+ resolution: {integrity: sha512-2VvPK7Mo73z1rDFb6pTvkH6kFibAmnTubFq5l83vePxu0WiY1s0LOtj2WHb6Sa40R3w4mnh8GFYbHBQyMlotKw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -2675,8 +2739,8 @@ packages:
resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@4.10.1:
- resolution: {integrity: sha512-GXwFfL47RfBLZRGQdrvGZw9Ali2T2GPW8p4Gyj2fyWQ9396R/HgJMf0m9kn7D6WXRwrINfTDGLS+QYIeok9qEg==}
+ eslint-plugin-perfectionist@4.11.0:
+ resolution: {integrity: sha512-5s+ehXydnLPQpLDj5mJ0CnYj2fQe6v6gKA3tS+FZVBLzwMOh8skH+l+1Gni08rG0SdEcNhJyjQp/mEkDYK8czw==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
eslint: '>=8.45.0'
@@ -2748,8 +2812,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.22.0:
- resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==}
+ eslint@9.24.0:
+ resolution: {integrity: sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -2827,8 +2891,8 @@ packages:
resolution: {integrity: sha512-Fqs7ChZm72y40wKjOFXBKg7nJZvQJmewP5/7LtePDdnah/+FH9Hp5sgMujSCMPXlxOAW2//1jrW9pnsY7o20vQ==}
engines: {node: '>=18'}
- expect-type@1.2.0:
- resolution: {integrity: sha512-80F22aiJ3GLyVnS/B3HzgR6RelZVumzj9jkL0Rhz4h0xYbNW9PjlQz5h3J/SShErbXBc295vseR4/MIbVmUbeA==}
+ expect-type@1.2.1:
+ resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==}
engines: {node: '>=12.0.0'}
express@4.21.2:
@@ -2909,6 +2973,9 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+ fast-diff@1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+
fast-glob@3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
@@ -3001,10 +3068,6 @@ packages:
debug:
optional: true
- foreground-child@3.3.1:
- resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
- engines: {node: '>=14'}
-
forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
@@ -3082,10 +3145,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
-
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
@@ -3158,8 +3217,8 @@ packages:
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
- html-entities@2.5.2:
- resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
+ html-escaper@2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
@@ -3183,11 +3242,11 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- http-parser-js@0.5.9:
- resolution: {integrity: sha512-n1XsPy3rXVxlqxVioEWdC+0+M+SQw0DpJynwtOPo1X+ZlvdzTLtDBIJJlDQTnwZIFJrZSzSGmIOUdP8tu+SgLw==}
+ http-parser-js@0.5.10:
+ resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==}
- http-proxy-middleware@2.0.7:
- resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
+ http-proxy-middleware@2.0.8:
+ resolution: {integrity: sha512-/iazaeFPmL8KLA6QB7DFAU4O5j+9y/TA0D019MbLtPuFI56VK4BXFzM6j6QS9oGpScy8IIDH4S2LHv3zg/63Bw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/express': ^4.17.13
@@ -3195,8 +3254,8 @@ packages:
'@types/express':
optional: true
- http-proxy-middleware@3.0.3:
- resolution: {integrity: sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg==}
+ http-proxy-middleware@3.0.4:
+ resolution: {integrity: sha512-LRX3BKgdEyHjLMz608kicoz5E6zGdkSpDwLYVBsJlDpQ3wcqh/Wdsopf2KrysXnNeM7jJJk4KXCV14u8SCLZzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
http-proxy@1.18.1:
@@ -3251,8 +3310,8 @@ packages:
resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
engines: {node: '>=12'}
- index-to-position@1.0.0:
- resolution: {integrity: sha512-sCO7uaLVhRJ25vz1o8s9IFM3nVS4DkuQnyjMwiQPKvQuBYBDmb8H7zx8ki7nVh4HJQOdVWebyvLE0qt+clruxA==}
+ index-to-position@1.1.0:
+ resolution: {integrity: sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==}
engines: {node: '>=18'}
inherits@2.0.3:
@@ -3406,13 +3465,6 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- isomorphic-rslog@0.0.6:
- resolution: {integrity: sha512-HM0q6XqQ93psDlqvuViNs/Ea3hAyGDkIdVAHlrEocjjAwGrs1fZ+EdQjS9eUPacnYB7Y8SoDdSY3H8p3ce205A==}
- engines: {node: '>=14.17.6'}
-
- jackspeak@3.4.3:
- resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
-
jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
@@ -3513,8 +3565,8 @@ packages:
resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==}
engines: {node: '>= 7.6.0'}
- koa@2.16.0:
- resolution: {integrity: sha512-Afhqq0Vq3W7C+/rW6IqHVBDLzqObwZ07JaUNUEF8yCQ6afiyFE3RAy+i7V0E46XOWlH7vPWn/x0vsZwNy6PWxw==}
+ koa@2.16.1:
+ resolution: {integrity: sha512-umfX9d3iuSxTQP4pnzLOz0HKnPg0FaUUIKcye2lOiz3KPu1Y3M3xlz76dISdFPQs37P9eJz1wUpcTS6KDPn9fA==}
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
kolorist@1.8.0:
@@ -3539,8 +3591,8 @@ packages:
engines: {node: '>=18.12.0'}
hasBin: true
- listr2@8.2.5:
- resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
+ listr2@8.3.1:
+ resolution: {integrity: sha512-tx4s1tp3IYxCyVdPunlZ7MHlQ3FkjadHkbTCcQsOCFK90nM/aFEVEKIwpnn4r1WK1pIRiVrfuEpHV7PmtfvSZw==}
engines: {node: '>=18.0.0'}
loader-runner@4.3.0:
@@ -3598,8 +3650,8 @@ packages:
mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
- markdown-it-github-alerts@0.3.1:
- resolution: {integrity: sha512-WUzfxjr8E4Fh9LTVOIneYT8qQHydkV8cRLXX5/HPpKhRzRQFUuYmNEt7KNBA12V9ZepIIRqQ2lj3haKms2/9Pw==}
+ markdown-it-github-alerts@1.0.0:
+ resolution: {integrity: sha512-RU3cbB/ewujrDpYNdyabvp4CscZ5J/3D71NWbJW+JSA0nplfutIXDMCwtGWlMLwzgBDAYkFMvYGkigq8nWOVdA==}
peerDependencies:
markdown-it: '>= 13.0.0'
@@ -3813,10 +3865,6 @@ packages:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minisearch@7.1.2:
resolution: {integrity: sha512-R1Pd9eF+MD5JYDDSPAp/q1ougKglm14uEkPMvQ/05RGmx6G9wvmLTrTI/Q5iPNJLYqNdsDQ7qTGIcNWR+FrHmA==}
@@ -3830,10 +3878,6 @@ packages:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
- engines: {node: '>=10'}
-
mrmime@2.0.1:
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
engines: {node: '>=10'}
@@ -3988,15 +4032,15 @@ packages:
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
- oxc-parser@0.61.0:
- resolution: {integrity: sha512-Yg2nvfC4xfgwP2hC774Kx6JuE/QFog18IED3R3OOwaKU8jZ2JJvvpOeINpsbiHYGOZtFh+y70GqEmZ3sVIThCQ==}
+ oxc-parser@0.62.0:
+ resolution: {integrity: sha512-WwSVsS8e7KH8an4rQJJZuO2QiIxNA0ryPESmmdxy1KYRSKEscyBgbIGGv2lCWy3uTksQtAjB2s2YAohESfrfOQ==}
engines: {node: '>=14.0.0'}
- oxc-resolver@5.0.1:
- resolution: {integrity: sha512-BbclyCSxgnqO5mo05RGcwp8rkVdZL7sf0ugEnFWK67DIBAMq5wR0/GQlQCdPiPkpiv9GESAVX2cbh1DMFux/TQ==}
+ oxc-resolver@5.2.0:
+ resolution: {integrity: sha512-ce0rdG5Y0s1jhcvh2Zc6sD+fTw/WA4pUKWrPmjbniZjC/m6pPob2I2Pkz8T0YzdWsbAC98E00Bc7KNB1B6Tolg==}
- oxc-transform@0.61.1:
- resolution: {integrity: sha512-x6SkkWfNOLx6fcR6sPr3553jz7fs8G6yUdyeXKo2aEt7uJhDu9ZIBCHpnszaclq+d3smMMen8oZGyXxHYPyNaQ==}
+ oxc-transform@0.62.0:
+ resolution: {integrity: sha512-4aycc3KlhwtUj1DVrFWGvfvX0OI6CmSkaPfhox4eY5UNknxZ0WSvj9p3NZIw8wPZiT6uj/acV3LcdO2o8HcSHQ==}
engines: {node: '>=14.0.0'}
p-filter@2.1.0:
@@ -4023,10 +4067,6 @@ packages:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
- p-retry@4.6.2:
- resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
- engines: {node: '>=8'}
-
p-retry@6.2.1:
resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
engines: {node: '>=16.17'}
@@ -4035,9 +4075,6 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- package-json-from-dist@1.0.1:
- resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
-
package-manager-detector@0.2.11:
resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
@@ -4056,8 +4093,8 @@ packages:
resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
engines: {node: '>= 18'}
- parse-json@8.2.0:
- resolution: {integrity: sha512-eONBZy4hm2AgxjNFd8a4nyDJnzUAH0g34xSQAwWEVGCjdZ4ZL7dKZBfq267GWP/JaS9zW62Xs2FeAdDvpHHJGQ==}
+ parse-json@8.3.0:
+ resolution: {integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==}
engines: {node: '>=18'}
parseurl@1.3.3:
@@ -4086,10 +4123,6 @@ packages:
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.12:
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
@@ -4152,18 +4185,27 @@ packages:
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.26.4:
- resolution: {integrity: sha512-KJhO7LBFTjP71d83trW+Ilnjbo+ySsaAgCfXOXUlmGzJ4ygYPWmysm77yg4emwfmoz3b22yvH5IsVFHbhUaH5w==}
+ preact@10.26.5:
+ resolution: {integrity: sha512-fmpDkgfGU6JYux9teDWLhj9mKN55tyepwYbxHgQuIxbWQzgFg5vk7Mrrtfx7xRxq798ynkY4DDDxZr235Kk+4w==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
+ prettier-linter-helpers@1.0.0:
+ resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+ engines: {node: '>=6.0.0'}
+
prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
+ prettier@3.5.3:
+ resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
+ engines: {node: '>=14'}
+ hasBin: true
+
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -4324,15 +4366,11 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@5.0.10:
- resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
- hasBin: true
-
- rolldown@1.0.0-beta.6:
- resolution: {integrity: sha512-0FOZc1kJtHoCR4Se72yFISk3X1kjMtWHQ/567fRw1PMxtQY0cZ0h32pq85tQhMVJkyp5HZ9Mlz9sCx0BUFVeIw==}
+ rolldown@1.0.0-beta.7:
+ resolution: {integrity: sha512-IUa/9lZVqgFilYggiY7jxUbmvU4Q8wVvVqsru+AeMldBccBEhTYZ6/XP6cWsznb8Fv49zfYGaeEpJ5WeVdo6Mg==}
hasBin: true
peerDependencies:
- '@oxc-project/runtime': 0.58.1
+ '@oxc-project/runtime': 0.61.2
peerDependenciesMeta:
'@oxc-project/runtime':
optional: true
@@ -4344,14 +4382,11 @@ packages:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
- rollup@4.36.0:
- resolution: {integrity: sha512-zwATAXNQxUcd40zgtQG0ZafcRK4g004WtEl7kbuhTWPvf07PsfohXl39jVUvPF7jvNAIkKPQ2XrsDlWuxBd++Q==}
+ rollup@4.39.0:
+ resolution: {integrity: sha512-thI8kNc02yNvnmJp8dr3fNWJ9tCONDhp6TV35X6HkKGGs9E6q7YWCHbe5vKiTa7TAiNcFEmXKj3X/pG2b3ci0g==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rspack-resolver@1.2.2:
- resolution: {integrity: sha512-Fwc19jMBA3g+fxDJH2B4WxwZjE0VaaOL7OX/A4Wn5Zv7bOD/vyPZhzXfaO73Xc2GAlfi96g5fGUa378WbIGfFw==}
-
run-applescript@5.0.0:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
@@ -4487,8 +4522,8 @@ packages:
resolution: {integrity: sha512-NB3V4XyCOrWTIhjh85DyEoVlM3adHWwqQXKYHmuegy/108bJPP6YxuPGm4ZKBq1+GVKRbKJuzNY//09cMJYp+A==}
hasBin: true
- sirv@1.0.19:
- resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
+ sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
sirv@3.0.1:
@@ -4576,8 +4611,8 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.8.1:
- resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
+ std-env@3.9.0:
+ resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
@@ -4587,10 +4622,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-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
@@ -4648,9 +4679,9 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- synckit@0.6.2:
- resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
- engines: {node: '>=12.20'}
+ synckit@0.10.3:
+ resolution: {integrity: sha512-R1urvuyiTaWfeCggqEvpDJwAlDVdsT9NM+IP//Tk2x7qHCkSvBk/fwFgw/TLAHzZlrAnnazMcRw0ZD8HlYFTEQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
synckit@0.9.2:
resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
@@ -4703,8 +4734,8 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyexec@1.0.0:
- resolution: {integrity: sha512-djtKaAR3lnRo0uMT/IKYwj3s4E86IE/SdwCE3XXIJcozbDFKsfgAmi8IBIpIDmTd0Y6YKyfqo3vQ33OloPJPaQ==}
+ tinyexec@1.0.1:
+ resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
tinyglobby@0.2.12:
resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
@@ -4742,10 +4773,6 @@ packages:
resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- totalist@1.1.0:
- resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
- engines: {node: '>=6'}
-
totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
@@ -4765,8 +4792,8 @@ packages:
peerDependencies:
typescript: '>=4.8.4'
- tsdown@0.6.9:
- resolution: {integrity: sha512-WAjF7L6wn1zmtrw8q5kovEKeJEtjkal81iQB/qqYqKshQrHa09qMR8UDum6FwP8LM1PUBK9grtDFtri7X0MPYA==}
+ tsdown@0.6.10:
+ resolution: {integrity: sha512-z8+r/9ToKADbsCoGY29z6h7gzJGCB/65NMFou492ZwqXSO50Z3RaV9FHnB8zqpR1tVdSdQJJap7vE3IpjwDV/Q==}
engines: {node: '>=18.0.0'}
hasBin: true
peerDependencies:
@@ -4811,16 +4838,16 @@ packages:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- type-fest@4.37.0:
- resolution: {integrity: sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==}
+ type-fest@4.39.1:
+ resolution: {integrity: sha512-uW9qzd66uyHYxwyVBYiwS4Oi0qZyUqwjU+Oevr6ZogYiXt99EOYtwvzMSLw1c3lYo2HzJsep/NB23iEVEgjG/w==}
engines: {node: '>=16'}
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- typescript@5.8.2:
- resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
engines: {node: '>=14.17'}
hasBin: true
@@ -4831,14 +4858,14 @@ packages:
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.1:
resolution: {integrity: sha512-LH5WL+un92tGAzWS87k7LkAfwpMdm7V0IXG2FxEjZz/QxiIW5J5LkcrKQThj0aRz6+h/lFmKI9EUXmK/T0bcrw==}
- undici-types@6.20.0:
- resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+ undici-types@6.21.0:
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
@@ -4871,11 +4898,11 @@ packages:
resolution: {integrity: sha512-82jHjMmVz3S+8vsVgevH8eR8CtIjKOnqa2L8+alrDARhvpjlVA8ltiMYXFKw3ahlVD4ZnHmr2Z3XajswCiMa1A==}
engines: {node: ^18.19.0 || >=20.6.0}
- unocss@66.1.0-beta.6:
- resolution: {integrity: sha512-ULv6jB5abJO1ciKreq0xW9WOKnWImK4uvWXmPR1d+JX0CvcHTtgO0HxR+UWToUcuvEFyLjQ1MKvovLMydo6+Lw==}
+ unocss@66.1.0-beta.10:
+ resolution: {integrity: sha512-20S2TqwDbjO/DSAphraRpozI4cs29IFR7vIQJwAPk8FiJnW65uN+Pdvf+LMNHJM0Xw+lNQkYX/+O71BEO0eCPg==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 66.1.0-beta.6
+ '@unocss/webpack': 66.1.0-beta.10
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
@@ -4910,8 +4937,8 @@ packages:
vue-template-es2015-compiler:
optional: true
- unplugin-isolated-decl@0.13.5:
- resolution: {integrity: sha512-v2WKhLo0przgmZF+StR/+/UWCz1rER0x72N9n7aa2JY5giyGwHpjXQ2uIP8xm6yjiBl6+P8Mgudb1ediYMh48g==}
+ unplugin-isolated-decl@0.13.6:
+ resolution: {integrity: sha512-+dNEvuNHfqohQEcXdHtUop/FhK3BXiqtAreHX7oc0M64RMg59rsizH2Sk38O7hgMrXnokbiAJTgORETQyqDp/Q==}
engines: {node: '>=18.12.0'}
peerDependencies:
'@swc/core': ^1.6.6
@@ -4943,10 +4970,13 @@ packages:
'@nuxt/kit':
optional: true
- unplugin@2.2.1:
- resolution: {integrity: sha512-Q0YDhwViJaSnHf1cxLf+/VKhmfdr/ZAS/RL2GQVO0cAbAfJAVUef2bvNu+veyWcEPNwsTlFmMiFLjf8Xeqog8g==}
+ unplugin@2.2.2:
+ resolution: {integrity: sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==}
engines: {node: '>=18.12.0'}
+ unrs-resolver@1.4.1:
+ resolution: {integrity: sha512-MhPB3wBI5BR8TGieTb08XuYlE8oFVEXdSAgat3psdlRyejl8ojQ8iqPcjh094qCZ1r+TnkxzP6BeCd/umfHckQ==}
+
untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
@@ -4971,8 +5001,8 @@ packages:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- valibot@1.0.0-rc.4:
- resolution: {integrity: sha512-VRaChgFv7Ab0P54AMLu7+GqoexdTPQ54Plj59X9qV0AFozI3j9CGH43skg+TqgMpXnrW8jxlJ2TTHAtAD3t4qA==}
+ valibot@1.0.0:
+ resolution: {integrity: sha512-1Hc0ihzWxBar6NGeZv7fPLY0QuxFMyxwYR2sF1Blu7Wq7EnremwY2W02tit2ij2VJT8HcSkHAQqmFfl77f73Yw==}
peerDependencies:
typescript: '>=5'
peerDependenciesMeta:
@@ -4992,13 +5022,13 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-node@3.0.9:
- resolution: {integrity: sha512-w3Gdx7jDcuT9cNn9jExXgOyKmf5UOTb6WMHz8LGAm54eS1Elf5OuBhCxl6zJxGhEeIkgsE1WbHuoL0mj/UXqXg==}
+ vite-node@3.1.1:
+ resolution: {integrity: sha512-V+IxPAE2FvXpTCHXyNem0M+gWm6J7eRyWPR6vYoG/Gl+IscNOjXzztUhimQgTxaAoUoj40Qqimaa0NLIOOAH4w==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite@6.2.2:
- resolution: {integrity: sha512-yW7PeMM+LkDzc7CgJuRLMW2Jz0FxMOsVJ8Lv3gpgW9WLcb9cTW+121UEr1hvmfR7w3SegR5ItvYyzVz1vxNJgQ==}
+ vite@6.2.5:
+ resolution: {integrity: sha512-j023J/hCAa4pRIUH6J9HemwYfjB5llR2Ps0CWeikOtdR8+pAURAk0DoJC5/mm9kd+UgdnIy7d6HE4EAvlYhPhA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -5037,8 +5067,8 @@ packages:
yaml:
optional: true
- vitepress-plugin-group-icons@1.3.8:
- resolution: {integrity: sha512-BIx1HgXEvbDeJX8NqVvthWHQqEW2slj1SkAWLMNoUR5IJq1dq6LmrURYCyznMJCB3/0g+YY89ifvQp3in1fX3g==}
+ vitepress-plugin-group-icons@1.4.1:
+ resolution: {integrity: sha512-4APG5wzUvl2JbZcy6+I7K9DleBJE7W5RCkPu2mDPxzKxI/9pF3GmIACDnIlhyfIpUyfW4eanbyoMuP7tzLpM3Q==}
vitepress@2.0.0-alpha.2:
resolution: {integrity: sha512-w+1WCkd8ko8lDUh61OWo4dj5Y4VHYJvwmJ9/iOXoVlzxOfO5Hoio2H3OMOgNlCzq0E0rTp9UR5GPU120AnH2dg==}
@@ -5052,16 +5082,16 @@ packages:
postcss:
optional: true
- vitest@3.0.9:
- resolution: {integrity: sha512-BbcFDqNyBlfSpATmTtXOAOj71RNKDDvjBM/uPfnxxVGrG+FSH2RQIwgeEngTaTkuU/h0ScFvf+tRcKfYXzBybQ==}
+ vitest@3.1.1:
+ resolution: {integrity: sha512-kiZc/IYmKICeBAZr9DQ5rT7/6bD9G7uqQEki4fxazi1jdVl2mWGzedtBs5s6llz59yQhVb7FFY2MbHzHCnT79Q==}
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.9
- '@vitest/ui': 3.0.9
+ '@vitest/browser': 3.1.1
+ '@vitest/ui': 3.1.1
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -5083,8 +5113,8 @@ packages:
vscode-uri@3.1.0:
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
- vue-eslint-parser@10.1.1:
- resolution: {integrity: sha512-bh2Z/Au5slro9QJ3neFYLanZtb1jH+W2bKqGHXAoYD4vZgNG3KeotL7JpPv5xzY4UXUXJl7TrIsnzECH63kd3Q==}
+ vue-eslint-parser@10.1.3:
+ resolution: {integrity: sha512-dbCBnd2e02dYWsXoqX5yKUZlOt+ExIpq7hmHKPb5ZqKcjf++Eo0hMseFTZMLKThrUk61m+Uv6A2YSBve6ZvuDQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -5127,8 +5157,8 @@ packages:
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- webpack-bundle-analyzer@4.6.1:
- resolution: {integrity: sha512-oKz9Oz9j3rUciLNfpGFjOb49/jEpXNmWdVH8Ls//zNcnLlQdTGXQQMsBbb/gR7Zl8WNLxVCq+0Hqbx3zv6twBw==}
+ webpack-bundle-analyzer@4.10.2:
+ resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==}
engines: {node: '>= 10.13.0'}
hasBin: true
@@ -5155,8 +5185,8 @@ packages:
webpack:
optional: true
- webpack-dev-server@5.0.4:
- resolution: {integrity: sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==}
+ webpack-dev-server@5.2.0:
+ resolution: {integrity: sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==}
engines: {node: '>= 18.12.0'}
hasBin: true
peerDependencies:
@@ -5179,8 +5209,8 @@ packages:
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.98.0:
- resolution: {integrity: sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==}
+ webpack@5.99.5:
+ resolution: {integrity: sha512-q+vHBa6H9qwBLUlHL4Y7L0L1/LlyBKZtS9FHNCQmtayxjI5RKC9yD8gpvLeqGv5lCQp1Re04yi0MF40pf30Pvg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -5222,10 +5252,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'}
-
wrap-ansi@9.0.0:
resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
engines: {node: '>=18'}
@@ -5266,8 +5292,8 @@ packages:
resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
+ yaml@2.7.1:
+ resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
engines: {node: '>= 14'}
hasBin: true
@@ -5301,158 +5327,159 @@ packages:
snapshots:
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
- '@algolia/client-search': 5.21.0
- algoliasearch: 5.21.0
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)
+ '@algolia/client-search': 5.23.3
+ algoliasearch: 5.23.3
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)':
+ '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)':
dependencies:
- '@algolia/client-search': 5.21.0
- algoliasearch: 5.21.0
+ '@algolia/client-search': 5.23.3
+ algoliasearch: 5.23.3
- '@algolia/client-abtesting@5.21.0':
+ '@algolia/client-abtesting@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/client-analytics@5.21.0':
+ '@algolia/client-analytics@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/client-common@5.21.0': {}
+ '@algolia/client-common@5.23.3': {}
- '@algolia/client-insights@5.21.0':
+ '@algolia/client-insights@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/client-personalization@5.21.0':
+ '@algolia/client-personalization@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/client-query-suggestions@5.21.0':
+ '@algolia/client-query-suggestions@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/client-search@5.21.0':
+ '@algolia/client-search@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/ingestion@1.21.0':
+ '@algolia/ingestion@1.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/monitoring@1.21.0':
+ '@algolia/monitoring@1.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/recommend@5.21.0':
+ '@algolia/recommend@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-common': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- '@algolia/requester-browser-xhr@5.21.0':
+ '@algolia/requester-browser-xhr@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
+ '@algolia/client-common': 5.23.3
- '@algolia/requester-fetch@5.21.0':
+ '@algolia/requester-fetch@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
+ '@algolia/client-common': 5.23.3
- '@algolia/requester-node-http@5.21.0':
+ '@algolia/requester-node-http@5.23.3':
dependencies:
- '@algolia/client-common': 5.21.0
+ '@algolia/client-common': 5.23.3
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@4.10.2(@typescript-eslint/utils@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))':
+ '@antfu/eslint-config@4.11.0(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@1.0.1(eslint@9.24.0(jiti@2.4.2)))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))':
dependencies:
'@antfu/install-pkg': 1.0.0
- '@clack/prompts': 0.10.0
- '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.22.0(jiti@2.4.2))
+ '@clack/prompts': 0.10.1
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.24.0(jiti@2.4.2))
'@eslint/markdown': 6.3.0
- '@stylistic/eslint-plugin': 4.2.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/eslint-plugin': 8.27.0(@typescript-eslint/parser@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/parser': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@vitest/eslint-plugin': 1.1.38(@typescript-eslint/utils@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
+ '@stylistic/eslint-plugin': 4.2.0(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ '@vitest/eslint-plugin': 1.1.40(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
ansis: 3.17.0
cac: 6.7.14
- eslint: 9.22.0(jiti@2.4.2)
- eslint-config-flat-gitignore: 2.1.0(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-config-flat-gitignore: 2.1.0(eslint@9.24.0(jiti@2.4.2))
eslint-flat-config-utils: 2.0.1
- eslint-merge-processors: 2.0.0(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-antfu: 3.1.1(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-command: 3.2.0(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-import-x: 4.9.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint-plugin-jsdoc: 50.6.8(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-jsonc: 2.19.1(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-n: 17.16.2(eslint@9.22.0(jiti@2.4.2))
+ eslint-merge-processors: 2.0.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-antfu: 3.1.1(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-command: 3.2.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-import-x: 4.10.2(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint-plugin-jsdoc: 50.6.9(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-jsonc: 2.20.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-n: 17.17.0(eslint@9.24.0(jiti@2.4.2))
eslint-plugin-no-only-tests: 3.3.0
- eslint-plugin-perfectionist: 4.10.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint-plugin-pnpm: 0.3.1(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-regexp: 2.7.0(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-toml: 0.12.0(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-unicorn: 57.0.0(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.27.0(@typescript-eslint/parser@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-vue: 10.0.0(eslint@9.22.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2)))
- eslint-plugin-yml: 1.17.0(eslint@9.22.0(jiti@2.4.2))
- eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-perfectionist: 4.11.0(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint-plugin-pnpm: 0.3.1(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-regexp: 2.7.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-toml: 0.12.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-unicorn: 57.0.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))
+ eslint-plugin-vue: 10.0.0(eslint@9.24.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.24.0(jiti@2.4.2)))
+ eslint-plugin-yml: 1.17.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.24.0(jiti@2.4.2))
globals: 16.0.0
jsonc-eslint-parser: 2.4.0
local-pkg: 1.1.1
parse-gitignore: 2.0.0
toml-eslint-parser: 0.10.0
- vue-eslint-parser: 10.1.1(eslint@9.22.0(jiti@2.4.2))
+ vue-eslint-parser: 10.1.3(eslint@9.24.0(jiti@2.4.2))
yaml-eslint-parser: 1.3.0
+ optionalDependencies:
+ eslint-plugin-format: 1.0.1(eslint@9.24.0(jiti@2.4.2))
transitivePeerDependencies:
- '@eslint/json'
- - '@typescript-eslint/utils'
- '@vue/compiler-sfc'
- supports-color
- typescript
@@ -5468,7 +5495,7 @@ snapshots:
ansis: 3.17.0
fzf: 0.5.2
package-manager-detector: 1.1.0
- tinyexec: 1.0.0
+ tinyexec: 1.0.1
'@antfu/utils@8.1.1': {}
@@ -5482,15 +5509,15 @@ snapshots:
'@babel/helper-validator-identifier@7.25.9': {}
- '@babel/parser@7.26.10':
+ '@babel/parser@7.27.0':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.27.0
- '@babel/runtime@7.26.10':
+ '@babel/runtime@7.27.0':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/types@7.26.10':
+ '@babel/types@7.27.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -5637,14 +5664,14 @@ snapshots:
human-id: 4.1.1
prettier: 2.8.8
- '@clack/core@0.4.1':
+ '@clack/core@0.4.2':
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@0.10.0':
+ '@clack/prompts@0.10.1':
dependencies:
- '@clack/core': 0.4.1
+ '@clack/core': 0.4.2
picocolors: 1.1.1
sisteransi: 1.0.5
@@ -5654,10 +5681,10 @@ snapshots:
'@docsearch/css@3.9.0': {}
- '@docsearch/js@3.9.0(@algolia/client-search@5.21.0)(search-insights@2.17.3)':
+ '@docsearch/js@3.9.0(@algolia/client-search@5.23.3)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.9.0(@algolia/client-search@5.21.0)(search-insights@2.17.3)
- preact: 10.26.4
+ '@docsearch/react': 3.9.0(@algolia/client-search@5.23.3)(search-insights@2.17.3)
+ preact: 10.26.5
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -5665,24 +5692,30 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.9.0(@algolia/client-search@5.21.0)(search-insights@2.17.3)':
+ '@docsearch/react@3.9.0(@algolia/client-search@5.23.3)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.21.0)(algoliasearch@5.21.0)
+ '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.23.3)(algoliasearch@5.23.3)
'@docsearch/css': 3.9.0
- algoliasearch: 5.21.0
+ algoliasearch: 5.23.3
optionalDependencies:
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@emnapi/core@1.3.1':
+ '@dprint/formatter@0.3.0': {}
+
+ '@dprint/markdown@0.17.8': {}
+
+ '@dprint/toml@0.6.4': {}
+
+ '@emnapi/core@1.4.0':
dependencies:
'@emnapi/wasi-threads': 1.0.1
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.3.1':
+ '@emnapi/runtime@1.4.0':
dependencies:
tslib: 2.8.1
optional: true
@@ -5701,105 +5734,105 @@ snapshots:
'@es-joy/jsdoccomment@0.50.0':
dependencies:
'@types/eslint': 9.6.1
- '@types/estree': 1.0.6
- '@typescript-eslint/types': 8.27.0
+ '@types/estree': 1.0.7
+ '@typescript-eslint/types': 8.29.1
comment-parser: 1.4.1
esquery: 1.6.0
jsdoc-type-pratt-parser: 4.1.0
- '@esbuild/aix-ppc64@0.25.1':
+ '@esbuild/aix-ppc64@0.25.2':
optional: true
- '@esbuild/android-arm64@0.25.1':
+ '@esbuild/android-arm64@0.25.2':
optional: true
- '@esbuild/android-arm@0.25.1':
+ '@esbuild/android-arm@0.25.2':
optional: true
- '@esbuild/android-x64@0.25.1':
+ '@esbuild/android-x64@0.25.2':
optional: true
- '@esbuild/darwin-arm64@0.25.1':
+ '@esbuild/darwin-arm64@0.25.2':
optional: true
- '@esbuild/darwin-x64@0.25.1':
+ '@esbuild/darwin-x64@0.25.2':
optional: true
- '@esbuild/freebsd-arm64@0.25.1':
+ '@esbuild/freebsd-arm64@0.25.2':
optional: true
- '@esbuild/freebsd-x64@0.25.1':
+ '@esbuild/freebsd-x64@0.25.2':
optional: true
- '@esbuild/linux-arm64@0.25.1':
+ '@esbuild/linux-arm64@0.25.2':
optional: true
- '@esbuild/linux-arm@0.25.1':
+ '@esbuild/linux-arm@0.25.2':
optional: true
- '@esbuild/linux-ia32@0.25.1':
+ '@esbuild/linux-ia32@0.25.2':
optional: true
- '@esbuild/linux-loong64@0.25.1':
+ '@esbuild/linux-loong64@0.25.2':
optional: true
- '@esbuild/linux-mips64el@0.25.1':
+ '@esbuild/linux-mips64el@0.25.2':
optional: true
- '@esbuild/linux-ppc64@0.25.1':
+ '@esbuild/linux-ppc64@0.25.2':
optional: true
- '@esbuild/linux-riscv64@0.25.1':
+ '@esbuild/linux-riscv64@0.25.2':
optional: true
- '@esbuild/linux-s390x@0.25.1':
+ '@esbuild/linux-s390x@0.25.2':
optional: true
- '@esbuild/linux-x64@0.25.1':
+ '@esbuild/linux-x64@0.25.2':
optional: true
- '@esbuild/netbsd-arm64@0.25.1':
+ '@esbuild/netbsd-arm64@0.25.2':
optional: true
- '@esbuild/netbsd-x64@0.25.1':
+ '@esbuild/netbsd-x64@0.25.2':
optional: true
- '@esbuild/openbsd-arm64@0.25.1':
+ '@esbuild/openbsd-arm64@0.25.2':
optional: true
- '@esbuild/openbsd-x64@0.25.1':
+ '@esbuild/openbsd-x64@0.25.2':
optional: true
- '@esbuild/sunos-x64@0.25.1':
+ '@esbuild/sunos-x64@0.25.2':
optional: true
- '@esbuild/win32-arm64@0.25.1':
+ '@esbuild/win32-arm64@0.25.2':
optional: true
- '@esbuild/win32-ia32@0.25.1':
+ '@esbuild/win32-ia32@0.25.2':
optional: true
- '@esbuild/win32-x64@0.25.1':
+ '@esbuild/win32-x64@0.25.2':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.22.0(jiti@2.4.2))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.24.0(jiti@2.4.2))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
ignore: 5.3.2
- '@eslint-community/eslint-utils@4.5.1(eslint@9.22.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.5.1(eslint@9.24.0(jiti@2.4.2))':
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.7(eslint@9.22.0(jiti@2.4.2))':
+ '@eslint/compat@1.2.8(eslint@9.24.0(jiti@2.4.2))':
optionalDependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
- '@eslint/config-array@0.19.2':
+ '@eslint/config-array@0.20.0':
dependencies:
'@eslint/object-schema': 2.1.6
debug: 4.4.0
@@ -5807,7 +5840,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.1.0': {}
+ '@eslint/config-helpers@0.2.1': {}
'@eslint/core@0.10.0':
dependencies:
@@ -5817,7 +5850,11 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.3.0':
+ '@eslint/core@0.13.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
+ '@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
debug: 4.4.0
@@ -5831,12 +5868,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.22.0': {}
+ '@eslint/js@9.24.0': {}
'@eslint/markdown@6.3.0':
dependencies:
'@eslint/core': 0.10.0
- '@eslint/plugin-kit': 0.2.7
+ '@eslint/plugin-kit': 0.2.8
mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.1.0
micromark-extension-gfm: 3.0.0
@@ -5845,9 +5882,9 @@ snapshots:
'@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.2.7':
+ '@eslint/plugin-kit@0.2.8':
dependencies:
- '@eslint/core': 0.12.0
+ '@eslint/core': 0.13.0
levn: 0.4.1
'@farmfe/cli@1.0.4':
@@ -5857,34 +5894,34 @@ snapshots:
inquirer: 9.2.12
walkdir: 0.4.1
- '@farmfe/core-darwin-arm64@1.7.1':
+ '@farmfe/core-darwin-arm64@1.7.2':
optional: true
- '@farmfe/core-darwin-x64@1.7.1':
+ '@farmfe/core-darwin-x64@1.7.2':
optional: true
- '@farmfe/core-linux-arm64-gnu@1.7.1':
+ '@farmfe/core-linux-arm64-gnu@1.7.2':
optional: true
- '@farmfe/core-linux-arm64-musl@1.7.1':
+ '@farmfe/core-linux-arm64-musl@1.7.2':
optional: true
- '@farmfe/core-linux-x64-gnu@1.7.1':
+ '@farmfe/core-linux-x64-gnu@1.7.2':
optional: true
- '@farmfe/core-linux-x64-musl@1.7.1':
+ '@farmfe/core-linux-x64-musl@1.7.2':
optional: true
- '@farmfe/core-win32-arm64-msvc@1.7.1':
+ '@farmfe/core-win32-arm64-msvc@1.7.2':
optional: true
- '@farmfe/core-win32-ia32-msvc@1.7.1':
+ '@farmfe/core-win32-ia32-msvc@1.7.2':
optional: true
- '@farmfe/core-win32-x64-msvc@1.7.1':
+ '@farmfe/core-win32-x64-msvc@1.7.2':
optional: true
- '@farmfe/core@1.7.1':
+ '@farmfe/core@1.7.2':
dependencies:
'@farmfe/runtime': 0.12.10
'@farmfe/runtime-plugin-hmr': 3.5.10
@@ -5901,9 +5938,9 @@ snapshots:
farm-plugin-replace-dirname: 0.2.1
fast-glob: 3.3.3
fs-extra: 11.3.0
- http-proxy-middleware: 3.0.3
+ http-proxy-middleware: 3.0.4
is-plain-object: 5.0.0
- koa: 2.16.0
+ koa: 2.16.1
koa-compress: 5.1.1
koa-connect: 2.1.0
koa-static: 5.0.0
@@ -5914,15 +5951,15 @@ snapshots:
zod: 3.24.2
zod-validation-error: 1.5.0(zod@3.24.2)
optionalDependencies:
- '@farmfe/core-darwin-arm64': 1.7.1
- '@farmfe/core-darwin-x64': 1.7.1
- '@farmfe/core-linux-arm64-gnu': 1.7.1
- '@farmfe/core-linux-arm64-musl': 1.7.1
- '@farmfe/core-linux-x64-gnu': 1.7.1
- '@farmfe/core-linux-x64-musl': 1.7.1
- '@farmfe/core-win32-arm64-msvc': 1.7.1
- '@farmfe/core-win32-ia32-msvc': 1.7.1
- '@farmfe/core-win32-x64-msvc': 1.7.1
+ '@farmfe/core-darwin-arm64': 1.7.2
+ '@farmfe/core-darwin-x64': 1.7.2
+ '@farmfe/core-linux-arm64-gnu': 1.7.2
+ '@farmfe/core-linux-arm64-musl': 1.7.2
+ '@farmfe/core-linux-x64-gnu': 1.7.2
+ '@farmfe/core-linux-x64-musl': 1.7.2
+ '@farmfe/core-win32-arm64-msvc': 1.7.2
+ '@farmfe/core-win32-ia32-msvc': 1.7.2
+ '@farmfe/core-win32-x64-msvc': 1.7.2
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -5975,11 +6012,11 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.29':
+ '@iconify-json/simple-icons@1.2.31':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/vscode-icons@1.2.16':
+ '@iconify-json/vscode-icons@1.2.19':
dependencies:
'@iconify/types': 2.0.0
@@ -5998,15 +6035,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@isaacs/cliui@8.0.2':
- dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
-
'@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
@@ -6057,47 +6085,51 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.26.10
+ '@babel/runtime': 7.27.0
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.26.10
+ '@babel/runtime': 7.27.0
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
globby: 11.1.0
read-yaml-file: 1.1.0
- '@mdn/browser-compat-data@5.7.4': {}
+ '@mdn/browser-compat-data@5.7.6': {}
- '@module-federation/error-codes@0.8.4': {}
+ '@module-federation/error-codes@0.11.2': {}
- '@module-federation/runtime-tools@0.8.4':
+ '@module-federation/runtime-core@0.11.2':
dependencies:
- '@module-federation/runtime': 0.8.4
- '@module-federation/webpack-bundler-runtime': 0.8.4
+ '@module-federation/error-codes': 0.11.2
+ '@module-federation/sdk': 0.11.2
- '@module-federation/runtime@0.8.4':
+ '@module-federation/runtime-tools@0.11.2':
dependencies:
- '@module-federation/error-codes': 0.8.4
- '@module-federation/sdk': 0.8.4
+ '@module-federation/runtime': 0.11.2
+ '@module-federation/webpack-bundler-runtime': 0.11.2
- '@module-federation/sdk@0.8.4':
+ '@module-federation/runtime@0.11.2':
dependencies:
- isomorphic-rslog: 0.0.6
+ '@module-federation/error-codes': 0.11.2
+ '@module-federation/runtime-core': 0.11.2
+ '@module-federation/sdk': 0.11.2
+
+ '@module-federation/sdk@0.11.2': {}
- '@module-federation/webpack-bundler-runtime@0.8.4':
+ '@module-federation/webpack-bundler-runtime@0.11.2':
dependencies:
- '@module-federation/runtime': 0.8.4
- '@module-federation/sdk': 0.8.4
+ '@module-federation/runtime': 0.11.2
+ '@module-federation/sdk': 0.11.2
- '@napi-rs/wasm-runtime@0.2.7':
+ '@napi-rs/wasm-runtime@0.2.8':
dependencies:
- '@emnapi/core': 1.3.1
- '@emnapi/runtime': 1.3.1
+ '@emnapi/core': 1.4.0
+ '@emnapi/runtime': 1.4.0
'@tybys/wasm-util': 0.9.0
optional: true
@@ -6113,267 +6145,275 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- '@oxc-parser/binding-darwin-arm64@0.61.0':
+ '@oxc-parser/binding-darwin-arm64@0.62.0':
optional: true
- '@oxc-parser/binding-darwin-x64@0.61.0':
+ '@oxc-parser/binding-darwin-x64@0.62.0':
optional: true
- '@oxc-parser/binding-linux-arm-gnueabihf@0.61.0':
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.62.0':
optional: true
- '@oxc-parser/binding-linux-arm64-gnu@0.61.0':
+ '@oxc-parser/binding-linux-arm64-gnu@0.62.0':
optional: true
- '@oxc-parser/binding-linux-arm64-musl@0.61.0':
+ '@oxc-parser/binding-linux-arm64-musl@0.62.0':
optional: true
- '@oxc-parser/binding-linux-x64-gnu@0.61.0':
+ '@oxc-parser/binding-linux-x64-gnu@0.62.0':
optional: true
- '@oxc-parser/binding-linux-x64-musl@0.61.0':
+ '@oxc-parser/binding-linux-x64-musl@0.62.0':
optional: true
- '@oxc-parser/binding-wasm32-wasi@0.61.0':
+ '@oxc-parser/binding-wasm32-wasi@0.62.0':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
+ '@napi-rs/wasm-runtime': 0.2.8
optional: true
- '@oxc-parser/binding-win32-arm64-msvc@0.61.0':
+ '@oxc-parser/binding-win32-arm64-msvc@0.62.0':
optional: true
- '@oxc-parser/binding-win32-x64-msvc@0.61.0':
+ '@oxc-parser/binding-win32-x64-msvc@0.62.0':
optional: true
- '@oxc-project/types@0.58.1': {}
+ '@oxc-project/types@0.61.2': {}
- '@oxc-project/types@0.61.1': {}
+ '@oxc-project/types@0.62.0': {}
- '@oxc-resolver/binding-darwin-arm64@5.0.1':
+ '@oxc-resolver/binding-darwin-arm64@5.2.0':
optional: true
- '@oxc-resolver/binding-darwin-x64@5.0.1':
+ '@oxc-resolver/binding-darwin-x64@5.2.0':
optional: true
- '@oxc-resolver/binding-freebsd-x64@5.0.1':
+ '@oxc-resolver/binding-freebsd-x64@5.2.0':
optional: true
- '@oxc-resolver/binding-linux-arm-gnueabihf@5.0.1':
+ '@oxc-resolver/binding-linux-arm-gnueabihf@5.2.0':
optional: true
- '@oxc-resolver/binding-linux-arm64-gnu@5.0.1':
+ '@oxc-resolver/binding-linux-arm64-gnu@5.2.0':
optional: true
- '@oxc-resolver/binding-linux-arm64-musl@5.0.1':
+ '@oxc-resolver/binding-linux-arm64-musl@5.2.0':
optional: true
- '@oxc-resolver/binding-linux-x64-gnu@5.0.1':
+ '@oxc-resolver/binding-linux-riscv64-gnu@5.2.0':
optional: true
- '@oxc-resolver/binding-linux-x64-musl@5.0.1':
+ '@oxc-resolver/binding-linux-s390x-gnu@5.2.0':
optional: true
- '@oxc-resolver/binding-wasm32-wasi@5.0.1':
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
+ '@oxc-resolver/binding-linux-x64-gnu@5.2.0':
optional: true
- '@oxc-resolver/binding-win32-arm64-msvc@5.0.1':
+ '@oxc-resolver/binding-linux-x64-musl@5.2.0':
optional: true
- '@oxc-resolver/binding-win32-x64-msvc@5.0.1':
+ '@oxc-resolver/binding-wasm32-wasi@5.2.0':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.8
optional: true
- '@oxc-transform/binding-darwin-arm64@0.61.1':
+ '@oxc-resolver/binding-win32-arm64-msvc@5.2.0':
optional: true
- '@oxc-transform/binding-darwin-x64@0.61.1':
+ '@oxc-resolver/binding-win32-x64-msvc@5.2.0':
optional: true
- '@oxc-transform/binding-linux-arm-gnueabihf@0.61.1':
+ '@oxc-transform/binding-darwin-arm64@0.62.0':
optional: true
- '@oxc-transform/binding-linux-arm64-gnu@0.61.1':
+ '@oxc-transform/binding-darwin-x64@0.62.0':
optional: true
- '@oxc-transform/binding-linux-arm64-musl@0.61.1':
+ '@oxc-transform/binding-linux-arm-gnueabihf@0.62.0':
optional: true
- '@oxc-transform/binding-linux-x64-gnu@0.61.1':
+ '@oxc-transform/binding-linux-arm64-gnu@0.62.0':
optional: true
- '@oxc-transform/binding-linux-x64-musl@0.61.1':
+ '@oxc-transform/binding-linux-arm64-musl@0.62.0':
optional: true
- '@oxc-transform/binding-wasm32-wasi@0.61.1':
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
+ '@oxc-transform/binding-linux-x64-gnu@0.62.0':
optional: true
- '@oxc-transform/binding-win32-arm64-msvc@0.61.1':
+ '@oxc-transform/binding-linux-x64-musl@0.62.0':
optional: true
- '@oxc-transform/binding-win32-x64-msvc@0.61.1':
+ '@oxc-transform/binding-wasm32-wasi@0.62.0':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.8
+ optional: true
+
+ '@oxc-transform/binding-win32-arm64-msvc@0.62.0':
optional: true
- '@pkgjs/parseargs@0.11.0':
+ '@oxc-transform/binding-win32-x64-msvc@0.62.0':
optional: true
'@pkgr/core@0.1.2': {}
- '@polka/url@1.0.0-next.28': {}
+ '@pkgr/core@0.2.2': {}
+
+ '@polka/url@1.0.0-next.29': {}
'@publint/pack@0.1.2':
optional: true
- '@quansync/fs@0.1.1':
+ '@quansync/fs@0.1.2':
dependencies:
quansync: 0.2.10
- '@rolldown/binding-darwin-arm64@1.0.0-beta.6':
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.7':
optional: true
- '@rolldown/binding-darwin-x64@1.0.0-beta.6':
+ '@rolldown/binding-darwin-x64@1.0.0-beta.7':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-beta.6':
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.7':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.6':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.7':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.6':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.7':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.6':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.7':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.6':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.7':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.6':
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.7':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.6':
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.7':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
+ '@napi-rs/wasm-runtime': 0.2.8
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.7':
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.6':
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.7':
optional: true
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.6':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.7':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.6':
+ '@rollup/rollup-android-arm-eabi@4.39.0':
optional: true
- '@rollup/rollup-android-arm-eabi@4.36.0':
+ '@rollup/rollup-android-arm64@4.39.0':
optional: true
- '@rollup/rollup-android-arm64@4.36.0':
+ '@rollup/rollup-darwin-arm64@4.39.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.36.0':
+ '@rollup/rollup-darwin-x64@4.39.0':
optional: true
- '@rollup/rollup-darwin-x64@4.36.0':
+ '@rollup/rollup-freebsd-arm64@4.39.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.36.0':
+ '@rollup/rollup-freebsd-x64@4.39.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.36.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.39.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.36.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.39.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.36.0':
+ '@rollup/rollup-linux-arm64-gnu@4.39.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.36.0':
+ '@rollup/rollup-linux-arm64-musl@4.39.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.36.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.39.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.36.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.39.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.36.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.39.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.36.0':
+ '@rollup/rollup-linux-riscv64-musl@4.39.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.36.0':
+ '@rollup/rollup-linux-s390x-gnu@4.39.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.36.0':
+ '@rollup/rollup-linux-x64-gnu@4.39.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.36.0':
+ '@rollup/rollup-linux-x64-musl@4.39.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.36.0':
+ '@rollup/rollup-win32-arm64-msvc@4.39.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.36.0':
+ '@rollup/rollup-win32-ia32-msvc@4.39.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.36.0':
+ '@rollup/rollup-win32-x64-msvc@4.39.0':
optional: true
- '@rspack/binding-darwin-arm64@1.2.8':
+ '@rspack/binding-darwin-arm64@1.3.4':
optional: true
- '@rspack/binding-darwin-x64@1.2.8':
+ '@rspack/binding-darwin-x64@1.3.4':
optional: true
- '@rspack/binding-linux-arm64-gnu@1.2.8':
+ '@rspack/binding-linux-arm64-gnu@1.3.4':
optional: true
- '@rspack/binding-linux-arm64-musl@1.2.8':
+ '@rspack/binding-linux-arm64-musl@1.3.4':
optional: true
- '@rspack/binding-linux-x64-gnu@1.2.8':
+ '@rspack/binding-linux-x64-gnu@1.3.4':
optional: true
- '@rspack/binding-linux-x64-musl@1.2.8':
+ '@rspack/binding-linux-x64-musl@1.3.4':
optional: true
- '@rspack/binding-win32-arm64-msvc@1.2.8':
+ '@rspack/binding-win32-arm64-msvc@1.3.4':
optional: true
- '@rspack/binding-win32-ia32-msvc@1.2.8':
+ '@rspack/binding-win32-ia32-msvc@1.3.4':
optional: true
- '@rspack/binding-win32-x64-msvc@1.2.8':
+ '@rspack/binding-win32-x64-msvc@1.3.4':
optional: true
- '@rspack/binding@1.2.8':
+ '@rspack/binding@1.3.4':
optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.2.8
- '@rspack/binding-darwin-x64': 1.2.8
- '@rspack/binding-linux-arm64-gnu': 1.2.8
- '@rspack/binding-linux-arm64-musl': 1.2.8
- '@rspack/binding-linux-x64-gnu': 1.2.8
- '@rspack/binding-linux-x64-musl': 1.2.8
- '@rspack/binding-win32-arm64-msvc': 1.2.8
- '@rspack/binding-win32-ia32-msvc': 1.2.8
- '@rspack/binding-win32-x64-msvc': 1.2.8
-
- '@rspack/cli@1.2.8(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.98.0)':
+ '@rspack/binding-darwin-arm64': 1.3.4
+ '@rspack/binding-darwin-x64': 1.3.4
+ '@rspack/binding-linux-arm64-gnu': 1.3.4
+ '@rspack/binding-linux-arm64-musl': 1.3.4
+ '@rspack/binding-linux-x64-gnu': 1.3.4
+ '@rspack/binding-linux-x64-musl': 1.3.4
+ '@rspack/binding-win32-arm64-msvc': 1.3.4
+ '@rspack/binding-win32-ia32-msvc': 1.3.4
+ '@rspack/binding-win32-x64-msvc': 1.3.4
+
+ '@rspack/cli@1.3.4(@rspack/core@1.3.4(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.99.5)':
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@rspack/core': 1.2.8(@swc/helpers@0.5.15)
- '@rspack/dev-server': 1.0.10(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.98.0)
+ '@rspack/core': 1.3.4(@swc/helpers@0.5.15)
+ '@rspack/dev-server': 1.1.1(@rspack/core@1.3.4(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.99.5)
colorette: 2.0.20
exit-hook: 4.0.0
interpret: 3.1.1
rechoir: 0.8.0
- webpack-bundle-analyzer: 4.6.1
+ webpack-bundle-analyzer: 4.10.2
yargs: 17.7.2
transitivePeerDependencies:
- '@types/express'
@@ -6384,26 +6424,25 @@ snapshots:
- webpack
- webpack-cli
- '@rspack/core@1.2.8(@swc/helpers@0.5.15)':
+ '@rspack/core@1.3.4(@swc/helpers@0.5.15)':
dependencies:
- '@module-federation/runtime-tools': 0.8.4
- '@rspack/binding': 1.2.8
+ '@module-federation/runtime-tools': 0.11.2
+ '@rspack/binding': 1.3.4
'@rspack/lite-tapable': 1.0.1
- caniuse-lite: 1.0.30001706
+ caniuse-lite: 1.0.30001712
optionalDependencies:
'@swc/helpers': 0.5.15
- '@rspack/dev-server@1.0.10(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.98.0)':
+ '@rspack/dev-server@1.1.1(@rspack/core@1.3.4(@swc/helpers@0.5.15))(@types/express@4.17.21)(webpack-cli@6.0.1)(webpack@5.99.5)':
dependencies:
- '@rspack/core': 1.2.8(@swc/helpers@0.5.15)
+ '@rspack/core': 1.3.4(@swc/helpers@0.5.15)
chokidar: 3.6.0
- connect-history-api-fallback: 2.0.0
express: 4.21.2
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.8(@types/express@4.17.21)
mime-types: 2.1.35
- p-retry: 4.6.2
- webpack-dev-middleware: 7.4.2(webpack@5.98.0)
- webpack-dev-server: 5.0.4(webpack-cli@6.0.1)(webpack@5.98.0)
+ p-retry: 6.2.1
+ webpack-dev-middleware: 7.4.2(webpack@5.99.5)
+ webpack-dev-server: 5.2.0(webpack-cli@6.0.1)(webpack@5.99.5)
ws: 8.18.1
transitivePeerDependencies:
- '@types/express'
@@ -6475,12 +6514,12 @@ snapshots:
'@shikijs/core': 2.5.0
'@shikijs/types': 2.5.0
- '@shikijs/twoslash@3.2.1(typescript@5.8.2)':
+ '@shikijs/twoslash@3.2.1(typescript@5.8.3)':
dependencies:
'@shikijs/core': 3.2.1
'@shikijs/types': 3.2.1
- twoslash: 0.3.1(typescript@5.8.2)
- typescript: 5.8.2
+ twoslash: 0.3.1(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -6494,17 +6533,17 @@ snapshots:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- '@shikijs/vitepress-twoslash@3.2.1(typescript@5.8.2)':
+ '@shikijs/vitepress-twoslash@3.2.1(typescript@5.8.3)':
dependencies:
- '@shikijs/twoslash': 3.2.1(typescript@5.8.2)
- floating-vue: 5.2.2(vue@3.5.13(typescript@5.8.2))
+ '@shikijs/twoslash': 3.2.1(typescript@5.8.3)
+ floating-vue: 5.2.2(vue@3.5.13(typescript@5.8.3))
mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.1.0
mdast-util-to-hast: 13.2.0
shiki: 3.2.1
- twoslash: 0.3.1(typescript@5.8.2)
- twoslash-vue: 0.3.1(typescript@5.8.2)
- vue: 3.5.13(typescript@5.8.2)
+ twoslash: 0.3.1(typescript@5.8.3)
+ twoslash-vue: 0.3.1(typescript@5.8.3)
+ vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- '@nuxt/kit'
- supports-color
@@ -6512,10 +6551,10 @@ snapshots:
'@shikijs/vscode-textmate@10.0.2': {}
- '@stylistic/eslint-plugin@4.2.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@stylistic/eslint-plugin@4.2.0(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.24.0(jiti@2.4.2)
eslint-visitor-keys: 4.2.0
espree: 10.3.0
estraverse: 5.3.0
@@ -6536,20 +6575,20 @@ snapshots:
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 5.0.6
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/debug@4.1.12':
dependencies:
@@ -6560,25 +6599,25 @@ snapshots:
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 9.6.1
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@types/json-schema': 7.0.15
- '@types/estree@1.0.6': {}
+ '@types/estree@1.0.7': {}
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express-serve-static-core@5.0.6':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -6593,7 +6632,7 @@ snapshots:
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/hast@3.0.4':
dependencies:
@@ -6603,13 +6642,13 @@ snapshots:
'@types/http-proxy@1.17.16':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/json-schema@7.0.15': {}
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/linkify-it@5.0.0': {}
@@ -6630,32 +6669,32 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/node@12.20.55': {}
- '@types/node@22.13.11':
+ '@types/node@22.14.0':
dependencies:
- undici-types: 6.20.0
+ undici-types: 6.21.0
'@types/normalize-package-data@2.4.4': {}
'@types/object-path@0.11.4': {}
+ '@types/picomatch@3.0.2': {}
+
'@types/qs@6.9.18': {}
'@types/range-parser@1.2.7': {}
- '@types/retry@0.12.0': {}
-
'@types/retry@0.12.2': {}
- '@types/semver@7.5.8': {}
+ '@types/semver@7.7.0': {}
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/serve-index@1.9.4':
dependencies:
@@ -6664,12 +6703,12 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/send': 0.17.4
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
'@types/ua-parser-js@0.7.39': {}
@@ -6677,112 +6716,112 @@ snapshots:
'@types/web-bluetooth@0.0.21': {}
- '@types/ws@8.18.0':
+ '@types/ws@8.18.1':
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
- '@typescript-eslint/eslint-plugin@8.27.0(@typescript-eslint/parser@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/scope-manager': 8.27.0
- '@typescript-eslint/type-utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.27.0
- eslint: 9.22.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.29.1
+ '@typescript-eslint/type-utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.29.1
+ eslint: 9.24.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.8.2)
- typescript: 5.8.2
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.27.0
- '@typescript-eslint/types': 8.27.0
- '@typescript-eslint/typescript-estree': 8.27.0(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.27.0
+ '@typescript-eslint/scope-manager': 8.29.1
+ '@typescript-eslint/types': 8.29.1
+ '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.29.1
debug: 4.4.0
- eslint: 9.22.0(jiti@2.4.2)
- typescript: 5.8.2
+ eslint: 9.24.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.27.0':
+ '@typescript-eslint/scope-manager@8.29.1':
dependencies:
- '@typescript-eslint/types': 8.27.0
- '@typescript-eslint/visitor-keys': 8.27.0
+ '@typescript-eslint/types': 8.29.1
+ '@typescript-eslint/visitor-keys': 8.29.1
- '@typescript-eslint/type-utils@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/type-utils@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.27.0(typescript@5.8.2)
- '@typescript-eslint/utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
debug: 4.4.0
- eslint: 9.22.0(jiti@2.4.2)
- ts-api-utils: 2.1.0(typescript@5.8.2)
- typescript: 5.8.2
+ eslint: 9.24.0(jiti@2.4.2)
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.27.0': {}
+ '@typescript-eslint/types@8.29.1': {}
- '@typescript-eslint/typescript-estree@8.27.0(typescript@5.8.2)':
+ '@typescript-eslint/typescript-estree@8.29.1(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.27.0
- '@typescript-eslint/visitor-keys': 8.27.0
+ '@typescript-eslint/types': 8.29.1
+ '@typescript-eslint/visitor-keys': 8.29.1
debug: 4.4.0
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.7.1
- ts-api-utils: 2.1.0(typescript@5.8.2)
- typescript: 5.8.2
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.27.0
- '@typescript-eslint/types': 8.27.0
- '@typescript-eslint/typescript-estree': 8.27.0(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
- typescript: 5.8.2
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.29.1
+ '@typescript-eslint/types': 8.29.1
+ '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3)
+ eslint: 9.24.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.27.0':
+ '@typescript-eslint/visitor-keys@8.29.1':
dependencies:
- '@typescript-eslint/types': 8.27.0
+ '@typescript-eslint/types': 8.29.1
eslint-visitor-keys: 4.2.0
- '@typescript/vfs@1.6.1(typescript@5.8.2)':
+ '@typescript/vfs@1.6.1(typescript@5.8.3)':
dependencies:
debug: 4.4.0
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
'@ungap/structured-clone@1.3.0': {}
- '@unocss/astro@66.1.0-beta.6(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))':
+ '@unocss/astro@66.1.0-beta.10(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/reset': 66.1.0-beta.6
- '@unocss/vite': 66.1.0-beta.6(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/reset': 66.1.0-beta.10
+ '@unocss/vite': 66.1.0-beta.10(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
optionalDependencies:
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
transitivePeerDependencies:
- vue
- '@unocss/cli@66.1.0-beta.6':
+ '@unocss/cli@66.1.0-beta.10':
dependencies:
'@ampproject/remapping': 2.3.0
- '@unocss/config': 66.1.0-beta.6
- '@unocss/core': 66.1.0-beta.6
- '@unocss/preset-uno': 66.1.0-beta.6
+ '@unocss/config': 66.1.0-beta.10
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/preset-uno': 66.1.0-beta.10
cac: 6.7.14
chokidar: 3.6.0
colorette: 2.0.20
@@ -6793,220 +6832,231 @@ snapshots:
tinyglobby: 0.2.12
unplugin-utils: 0.2.4
- '@unocss/config@66.1.0-beta.6':
+ '@unocss/config@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
unconfig: 7.3.1
- '@unocss/core@66.1.0-beta.6': {}
+ '@unocss/core@66.1.0-beta.10': {}
- '@unocss/extractor-arbitrary-variants@66.1.0-beta.6':
+ '@unocss/extractor-arbitrary-variants@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
- '@unocss/inspector@66.1.0-beta.6(vue@3.5.13(typescript@5.8.2))':
+ '@unocss/inspector@66.1.0-beta.10(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
colorette: 2.0.20
gzip-size: 6.0.0
sirv: 3.0.1
- vue-flow-layout: 0.1.1(vue@3.5.13(typescript@5.8.2))
+ vue-flow-layout: 0.1.1(vue@3.5.13(typescript@5.8.3))
transitivePeerDependencies:
- vue
- '@unocss/postcss@66.1.0-beta.6(postcss@8.5.3)':
+ '@unocss/postcss@66.1.0-beta.10(postcss@8.5.3)':
dependencies:
- '@unocss/config': 66.1.0-beta.6
- '@unocss/core': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/config': 66.1.0-beta.10
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
css-tree: 3.1.0
postcss: 8.5.3
tinyglobby: 0.2.12
- '@unocss/preset-attributify@66.1.0-beta.6':
+ '@unocss/preset-attributify@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
- '@unocss/preset-icons@66.1.0-beta.6':
+ '@unocss/preset-icons@66.1.0-beta.10':
dependencies:
'@iconify/utils': 2.3.0
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
ofetch: 1.4.1
transitivePeerDependencies:
- supports-color
- '@unocss/preset-mini@66.1.0-beta.6':
+ '@unocss/preset-mini@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/extractor-arbitrary-variants': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/extractor-arbitrary-variants': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
- '@unocss/preset-tagify@66.1.0-beta.6':
+ '@unocss/preset-tagify@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
- '@unocss/preset-typography@66.1.0-beta.6':
+ '@unocss/preset-typography@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/preset-mini': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/preset-mini': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
- '@unocss/preset-uno@66.1.0-beta.6':
+ '@unocss/preset-uno@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/preset-wind3': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/preset-wind3': 66.1.0-beta.10
- '@unocss/preset-web-fonts@66.1.0-beta.6':
+ '@unocss/preset-web-fonts@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
ofetch: 1.4.1
- '@unocss/preset-wind3@66.1.0-beta.6':
+ '@unocss/preset-wind3@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/preset-mini': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/preset-mini': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
- '@unocss/preset-wind4@66.1.0-beta.6':
+ '@unocss/preset-wind4@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/extractor-arbitrary-variants': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/extractor-arbitrary-variants': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
- '@unocss/preset-wind@66.1.0-beta.6':
+ '@unocss/preset-wind@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/preset-wind3': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/preset-wind3': 66.1.0-beta.10
- '@unocss/reset@66.1.0-beta.6': {}
+ '@unocss/reset@66.1.0-beta.10': {}
- '@unocss/rule-utils@66.1.0-beta.6':
+ '@unocss/rule-utils@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
magic-string: 0.30.17
- '@unocss/transformer-attributify-jsx@66.1.0-beta.6':
+ '@unocss/transformer-attributify-jsx@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
- '@unocss/transformer-compile-class@66.1.0-beta.6':
+ '@unocss/transformer-compile-class@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
- '@unocss/transformer-directives@66.1.0-beta.6':
+ '@unocss/transformer-directives@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
- '@unocss/rule-utils': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/rule-utils': 66.1.0-beta.10
css-tree: 3.1.0
- '@unocss/transformer-variant-group@66.1.0-beta.6':
+ '@unocss/transformer-variant-group@66.1.0-beta.10':
dependencies:
- '@unocss/core': 66.1.0-beta.6
+ '@unocss/core': 66.1.0-beta.10
- '@unocss/vite@66.1.0-beta.6(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))':
+ '@unocss/vite@66.1.0-beta.10(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@unocss/config': 66.1.0-beta.6
- '@unocss/core': 66.1.0-beta.6
- '@unocss/inspector': 66.1.0-beta.6(vue@3.5.13(typescript@5.8.2))
+ '@unocss/config': 66.1.0-beta.10
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/inspector': 66.1.0-beta.10(vue@3.5.13(typescript@5.8.3))
chokidar: 3.6.0
magic-string: 0.30.17
tinyglobby: 0.2.12
unplugin-utils: 0.2.4
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
transitivePeerDependencies:
- vue
- '@unrs/rspack-resolver-binding-darwin-arm64@1.2.2':
+ '@unrs/resolver-binding-darwin-arm64@1.4.1':
+ optional: true
+
+ '@unrs/resolver-binding-darwin-x64@1.4.1':
+ optional: true
+
+ '@unrs/resolver-binding-freebsd-x64@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-darwin-x64@1.2.2':
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-freebsd-x64@1.2.2':
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-linux-arm-gnueabihf@1.2.2':
+ '@unrs/resolver-binding-linux-arm64-gnu@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-linux-arm64-gnu@1.2.2':
+ '@unrs/resolver-binding-linux-arm64-musl@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-linux-arm64-musl@1.2.2':
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-linux-x64-gnu@1.2.2':
+ '@unrs/resolver-binding-linux-s390x-gnu@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-linux-x64-musl@1.2.2':
+ '@unrs/resolver-binding-linux-x64-gnu@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-wasm32-wasi@1.2.2':
+ '@unrs/resolver-binding-linux-x64-musl@1.4.1':
+ optional: true
+
+ '@unrs/resolver-binding-wasm32-wasi@1.4.1':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
+ '@napi-rs/wasm-runtime': 0.2.8
optional: true
- '@unrs/rspack-resolver-binding-win32-arm64-msvc@1.2.2':
+ '@unrs/resolver-binding-win32-arm64-msvc@1.4.1':
optional: true
- '@unrs/rspack-resolver-binding-win32-x64-msvc@1.2.2':
+ '@unrs/resolver-binding-win32-ia32-msvc@1.4.1':
optional: true
- '@valibot/to-json-schema@1.0.0-rc.0(valibot@1.0.0-rc.4(typescript@5.8.2))':
+ '@unrs/resolver-binding-win32-x64-msvc@1.4.1':
+ optional: true
+
+ '@valibot/to-json-schema@1.0.0(valibot@1.0.0(typescript@5.8.3))':
dependencies:
- valibot: 1.0.0-rc.4(typescript@5.8.2)
+ valibot: 1.0.0(typescript@5.8.3)
- '@vitejs/plugin-vue@5.2.3(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))':
+ '@vitejs/plugin-vue@5.2.3(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.8.2)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vue: 3.5.13(typescript@5.8.3)
- '@vitest/eslint-plugin@1.1.38(@typescript-eslint/utils@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)(vitest@3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))':
+ '@vitest/eslint-plugin@1.1.40(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))':
dependencies:
- '@typescript-eslint/utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
optionalDependencies:
- typescript: 5.8.2
- vitest: 3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ typescript: 5.8.3
+ vitest: 3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- '@vitest/expect@3.0.9':
+ '@vitest/expect@3.1.1':
dependencies:
- '@vitest/spy': 3.0.9
- '@vitest/utils': 3.0.9
+ '@vitest/spy': 3.1.1
+ '@vitest/utils': 3.1.1
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.9(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))':
+ '@vitest/mocker@3.1.1(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))':
dependencies:
- '@vitest/spy': 3.0.9
+ '@vitest/spy': 3.1.1
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
- '@vitest/pretty-format@3.0.9':
+ '@vitest/pretty-format@3.1.1':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.0.9':
+ '@vitest/runner@3.1.1':
dependencies:
- '@vitest/utils': 3.0.9
+ '@vitest/utils': 3.1.1
pathe: 2.0.3
- '@vitest/snapshot@3.0.9':
+ '@vitest/snapshot@3.1.1':
dependencies:
- '@vitest/pretty-format': 3.0.9
+ '@vitest/pretty-format': 3.1.1
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.0.9':
+ '@vitest/spy@3.1.1':
dependencies:
tinyspy: 3.0.2
- '@vitest/utils@3.0.9':
+ '@vitest/utils@3.1.1':
dependencies:
- '@vitest/pretty-format': 3.0.9
+ '@vitest/pretty-format': 3.1.1
loupe: 3.1.3
tinyrainbow: 2.0.0
@@ -7024,7 +7074,7 @@ snapshots:
'@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
@@ -7037,7 +7087,7 @@ snapshots:
'@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
'@vue/compiler-core': 3.5.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-ssr': 3.5.13
@@ -7075,31 +7125,31 @@ snapshots:
dependencies:
rfdc: 1.4.1
- '@vue/language-core@2.2.4(typescript@5.8.2)':
+ '@vue/language-core@2.2.4(typescript@5.8.3)':
dependencies:
'@volar/language-core': 2.4.12
'@vue/compiler-dom': 3.5.13
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.13
- alien-signals: 1.0.6
+ alien-signals: 1.0.13
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
- '@vue/language-core@2.2.8(typescript@5.8.2)':
+ '@vue/language-core@2.2.8(typescript@5.8.3)':
dependencies:
'@volar/language-core': 2.4.12
'@vue/compiler-dom': 3.5.13
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.13
- alien-signals: 1.0.6
+ alien-signals: 1.0.13
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
'@vue/reactivity@3.5.13':
dependencies:
@@ -7117,28 +7167,28 @@ snapshots:
'@vue/shared': 3.5.13
csstype: 3.1.3
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.8.2))':
+ '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.8.3))':
dependencies:
'@vue/compiler-ssr': 3.5.13
'@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.13(typescript@5.8.3)
'@vue/shared@3.5.13': {}
- '@vueuse/core@12.8.2(typescript@5.8.2)':
+ '@vueuse/core@12.8.2(typescript@5.8.3)':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 12.8.2
- '@vueuse/shared': 12.8.2(typescript@5.8.2)
- vue: 3.5.13(typescript@5.8.2)
+ '@vueuse/shared': 12.8.2(typescript@5.8.3)
+ vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- typescript
- '@vueuse/integrations@12.8.2(focus-trap@7.6.4)(typescript@5.8.2)':
+ '@vueuse/integrations@12.8.2(focus-trap@7.6.4)(typescript@5.8.3)':
dependencies:
- '@vueuse/core': 12.8.2(typescript@5.8.2)
- '@vueuse/shared': 12.8.2(typescript@5.8.2)
- vue: 3.5.13(typescript@5.8.2)
+ '@vueuse/core': 12.8.2(typescript@5.8.3)
+ '@vueuse/shared': 12.8.2(typescript@5.8.3)
+ vue: 3.5.13(typescript@5.8.3)
optionalDependencies:
focus-trap: 7.6.4
transitivePeerDependencies:
@@ -7146,9 +7196,9 @@ snapshots:
'@vueuse/metadata@12.8.2': {}
- '@vueuse/shared@12.8.2(typescript@5.8.2)':
+ '@vueuse/shared@12.8.2(typescript@5.8.3)':
dependencies:
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.13(typescript@5.8.3)
transitivePeerDependencies:
- typescript
@@ -7228,20 +7278,20 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
- '@webpack-cli/configtest@3.0.1(webpack-cli@6.0.1)(webpack@5.98.0)':
+ '@webpack-cli/configtest@3.0.1(webpack-cli@6.0.1)(webpack@5.99.5)':
dependencies:
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.98.0)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.5)
- '@webpack-cli/info@3.0.1(webpack-cli@6.0.1)(webpack@5.98.0)':
+ '@webpack-cli/info@3.0.1(webpack-cli@6.0.1)(webpack@5.99.5)':
dependencies:
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.98.0)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.5)
- '@webpack-cli/serve@3.0.1(webpack-cli@6.0.1)(webpack@5.98.0)':
+ '@webpack-cli/serve@3.0.1(webpack-cli@6.0.1)(webpack@5.99.5)':
dependencies:
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.98.0)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.5)
'@xtuc/ieee754@1.2.0': {}
@@ -7285,23 +7335,23 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.21.0:
+ algoliasearch@5.23.3:
dependencies:
- '@algolia/client-abtesting': 5.21.0
- '@algolia/client-analytics': 5.21.0
- '@algolia/client-common': 5.21.0
- '@algolia/client-insights': 5.21.0
- '@algolia/client-personalization': 5.21.0
- '@algolia/client-query-suggestions': 5.21.0
- '@algolia/client-search': 5.21.0
- '@algolia/ingestion': 1.21.0
- '@algolia/monitoring': 1.21.0
- '@algolia/recommend': 5.21.0
- '@algolia/requester-browser-xhr': 5.21.0
- '@algolia/requester-fetch': 5.21.0
- '@algolia/requester-node-http': 5.21.0
+ '@algolia/client-abtesting': 5.23.3
+ '@algolia/client-analytics': 5.23.3
+ '@algolia/client-common': 5.23.3
+ '@algolia/client-insights': 5.23.3
+ '@algolia/client-personalization': 5.23.3
+ '@algolia/client-query-suggestions': 5.23.3
+ '@algolia/client-search': 5.23.3
+ '@algolia/ingestion': 1.23.3
+ '@algolia/monitoring': 1.23.3
+ '@algolia/recommend': 5.23.3
+ '@algolia/requester-browser-xhr': 5.23.3
+ '@algolia/requester-fetch': 5.23.3
+ '@algolia/requester-node-http': 5.23.3
- alien-signals@1.0.6: {}
+ alien-signals@1.0.13: {}
ansi-colors@4.1.3: {}
@@ -7364,7 +7414,7 @@ snapshots:
birpc@0.2.19: {}
- birpc@2.2.0: {}
+ birpc@2.3.0: {}
bl@4.1.0:
dependencies:
@@ -7415,8 +7465,8 @@ snapshots:
browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001706
- electron-to-chromium: 1.5.123
+ caniuse-lite: 1.0.30001712
+ electron-to-chromium: 1.5.134
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
@@ -7433,7 +7483,7 @@ snapshots:
dependencies:
ansis: 3.17.0
args-tokenizer: 0.3.0
- c12: 3.0.2
+ c12: 3.0.3
cac: 6.7.14
escalade: 3.2.0
jsonc-parser: 3.3.1
@@ -7441,7 +7491,7 @@ snapshots:
semver: 7.7.1
tinyexec: 0.3.2
tinyglobby: 0.2.12
- yaml: 2.7.0
+ yaml: 2.7.1
transitivePeerDependencies:
- magicast
@@ -7455,10 +7505,10 @@ snapshots:
bytes@3.1.2: {}
- c12@3.0.2:
+ c12@3.0.3:
dependencies:
chokidar: 4.0.3
- confbox: 0.1.8
+ confbox: 0.2.2
defu: 6.1.4
dotenv: 16.4.7
exsolve: 1.0.4
@@ -7496,9 +7546,9 @@ snapshots:
callsites@3.1.0: {}
- caniuse-lite@1.0.30001706: {}
+ caniuse-lite@1.0.30001712: {}
- case-police@1.0.0: {}
+ case-police@2.0.0: {}
ccount@2.0.1: {}
@@ -7630,7 +7680,7 @@ snapshots:
confbox@0.1.8: {}
- confbox@0.2.1: {}
+ confbox@0.2.2: {}
connect-history-api-fallback@2.0.0: {}
@@ -7680,6 +7730,8 @@ snapshots:
de-indent@1.0.2: {}
+ debounce@1.2.1: {}
+
debug@2.6.9:
dependencies:
ms: 2.0.0
@@ -7723,10 +7775,6 @@ snapshots:
bundle-name: 4.1.0
default-browser-id: 5.0.0
- default-gateway@6.0.3:
- dependencies:
- execa: 5.1.1
-
defaults@1.0.4:
dependencies:
clone: 1.0.4
@@ -7749,7 +7797,7 @@ snapshots:
dequal@2.0.3: {}
- destr@2.0.3: {}
+ destr@2.0.5: {}
destroy@1.2.0: {}
@@ -7789,11 +7837,9 @@ snapshots:
duplexer@0.1.2: {}
- eastasianwidth@0.2.0: {}
-
ee-first@1.1.1: {}
- electron-to-chromium@1.5.123: {}
+ electron-to-chromium@1.5.134: {}
emoji-regex-xs@1.0.0: {}
@@ -7801,8 +7847,6 @@ snapshots:
emoji-regex@8.0.0: {}
- emoji-regex@9.2.2: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
@@ -7833,41 +7877,41 @@ snapshots:
dependencies:
es-errors: 1.3.0
- esbuild-plugin-copy@2.1.1(esbuild@0.25.1):
+ esbuild-plugin-copy@2.1.1(esbuild@0.25.2):
dependencies:
chalk: 4.1.2
chokidar: 3.6.0
- esbuild: 0.25.1
+ esbuild: 0.25.2
fs-extra: 10.1.0
globby: 11.1.0
- esbuild@0.25.1:
+ esbuild@0.25.2:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.1
- '@esbuild/android-arm': 0.25.1
- '@esbuild/android-arm64': 0.25.1
- '@esbuild/android-x64': 0.25.1
- '@esbuild/darwin-arm64': 0.25.1
- '@esbuild/darwin-x64': 0.25.1
- '@esbuild/freebsd-arm64': 0.25.1
- '@esbuild/freebsd-x64': 0.25.1
- '@esbuild/linux-arm': 0.25.1
- '@esbuild/linux-arm64': 0.25.1
- '@esbuild/linux-ia32': 0.25.1
- '@esbuild/linux-loong64': 0.25.1
- '@esbuild/linux-mips64el': 0.25.1
- '@esbuild/linux-ppc64': 0.25.1
- '@esbuild/linux-riscv64': 0.25.1
- '@esbuild/linux-s390x': 0.25.1
- '@esbuild/linux-x64': 0.25.1
- '@esbuild/netbsd-arm64': 0.25.1
- '@esbuild/netbsd-x64': 0.25.1
- '@esbuild/openbsd-arm64': 0.25.1
- '@esbuild/openbsd-x64': 0.25.1
- '@esbuild/sunos-x64': 0.25.1
- '@esbuild/win32-arm64': 0.25.1
- '@esbuild/win32-ia32': 0.25.1
- '@esbuild/win32-x64': 0.25.1
+ '@esbuild/aix-ppc64': 0.25.2
+ '@esbuild/android-arm': 0.25.2
+ '@esbuild/android-arm64': 0.25.2
+ '@esbuild/android-x64': 0.25.2
+ '@esbuild/darwin-arm64': 0.25.2
+ '@esbuild/darwin-x64': 0.25.2
+ '@esbuild/freebsd-arm64': 0.25.2
+ '@esbuild/freebsd-x64': 0.25.2
+ '@esbuild/linux-arm': 0.25.2
+ '@esbuild/linux-arm64': 0.25.2
+ '@esbuild/linux-ia32': 0.25.2
+ '@esbuild/linux-loong64': 0.25.2
+ '@esbuild/linux-mips64el': 0.25.2
+ '@esbuild/linux-ppc64': 0.25.2
+ '@esbuild/linux-riscv64': 0.25.2
+ '@esbuild/linux-s390x': 0.25.2
+ '@esbuild/linux-x64': 0.25.2
+ '@esbuild/netbsd-arm64': 0.25.2
+ '@esbuild/netbsd-x64': 0.25.2
+ '@esbuild/openbsd-arm64': 0.25.2
+ '@esbuild/openbsd-x64': 0.25.2
+ '@esbuild/sunos-x64': 0.25.2
+ '@esbuild/win32-arm64': 0.25.2
+ '@esbuild/win32-ia32': 0.25.2
+ '@esbuild/win32-x64': 0.25.2
escalade@3.2.0: {}
@@ -7879,25 +7923,30 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.22.0(jiti@2.4.2)):
+ eslint-compat-utils@0.5.1(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
semver: 7.7.1
- eslint-compat-utils@0.6.4(eslint@9.22.0(jiti@2.4.2)):
+ eslint-compat-utils@0.6.5(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
semver: 7.7.1
- eslint-config-flat-gitignore@2.1.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-config-flat-gitignore@2.1.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- '@eslint/compat': 1.2.7(eslint@9.22.0(jiti@2.4.2))
- eslint: 9.22.0(jiti@2.4.2)
+ '@eslint/compat': 1.2.8(eslint@9.24.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
eslint-flat-config-utils@2.0.1:
dependencies:
pathe: 2.0.3
+ eslint-formatting-reporter@0.0.0(eslint@9.24.0(jiti@2.4.2)):
+ dependencies:
+ eslint: 9.24.0(jiti@2.4.2)
+ prettier-linter-helpers: 1.0.0
+
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
@@ -7906,59 +7955,73 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-json-compat-utils@0.2.1(eslint@9.22.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
+ eslint-json-compat-utils@0.2.1(eslint@9.24.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-merge-processors@2.0.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-merge-processors@2.0.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
+
+ eslint-parser-plain@0.1.1: {}
- eslint-plugin-antfu@3.1.1(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-antfu@3.1.1(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
- eslint-plugin-command@3.2.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-command@3.2.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.50.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
- eslint-plugin-es-x@7.8.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-es-x@7.8.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.22.0(jiti@2.4.2)
- eslint-compat-utils: 0.5.1(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-compat-utils: 0.5.1(eslint@9.24.0(jiti@2.4.2))
+
+ eslint-plugin-format@1.0.1(eslint@9.24.0(jiti@2.4.2)):
+ dependencies:
+ '@dprint/formatter': 0.3.0
+ '@dprint/markdown': 0.17.8
+ '@dprint/toml': 0.6.4
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-formatting-reporter: 0.0.0(eslint@9.24.0(jiti@2.4.2))
+ eslint-parser-plain: 0.1.1
+ prettier: 3.5.3
+ synckit: 0.9.2
- eslint-plugin-import-x@4.9.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2):
+ eslint-plugin-import-x@4.10.2(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3):
dependencies:
+ '@pkgr/core': 0.2.2
'@types/doctrine': 0.0.9
- '@typescript-eslint/utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
debug: 4.4.0
doctrine: 3.0.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.10.0
is-glob: 4.0.3
minimatch: 10.0.1
- rspack-resolver: 1.2.2
semver: 7.7.1
stable-hash: 0.0.5
tslib: 2.8.1
+ unrs-resolver: 1.4.1
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsdoc@50.6.8(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-jsdoc@50.6.9(eslint@9.24.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
@@ -7968,26 +8031,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.19.1(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-jsonc@2.20.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
- eslint: 9.22.0(jiti@2.4.2)
- eslint-compat-utils: 0.6.4(eslint@9.22.0(jiti@2.4.2))
- eslint-json-compat-utils: 0.2.1(eslint@9.22.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
- espree: 9.6.1
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.5(eslint@9.24.0(jiti@2.4.2))
+ eslint-json-compat-utils: 0.2.1(eslint@9.24.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
+ espree: 10.3.0
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
natural-compare: 1.4.0
- synckit: 0.6.2
+ synckit: 0.10.3
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.16.2(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-n@17.17.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
enhanced-resolve: 5.18.1
- eslint: 9.22.0(jiti@2.4.2)
- eslint-plugin-es-x: 7.8.0(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-plugin-es-x: 7.8.0(eslint@9.24.0(jiti@2.4.2))
get-tsconfig: 4.10.0
globals: 15.15.0
ignore: 5.3.2
@@ -7996,19 +8059,19 @@ snapshots:
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@4.10.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2):
+ eslint-plugin-perfectionist@4.11.0(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/types': 8.27.0
- '@typescript-eslint/utils': 8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
+ '@typescript-eslint/types': 8.29.1
+ '@typescript-eslint/utils': 8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.24.0(jiti@2.4.2)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-pnpm@0.3.1(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-pnpm@0.3.1(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
find-up-simple: 1.0.1
jsonc-eslint-parser: 2.4.0
pathe: 2.0.3
@@ -8016,35 +8079,35 @@ snapshots:
tinyglobby: 0.2.12
yaml-eslint-parser: 1.3.0
- eslint-plugin-regexp@2.7.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-regexp@2.7.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-toml@0.12.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-toml@0.12.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0
- eslint: 9.22.0(jiti@2.4.2)
- eslint-compat-utils: 0.6.4(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.5(eslint@9.24.0(jiti@2.4.2))
lodash: 4.17.21
toml-eslint-parser: 0.10.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@57.0.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-unicorn@57.0.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
'@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
ci-info: 4.2.0
clean-regexp: 1.0.0
core-js-compat: 3.41.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
esquery: 1.6.0
globals: 15.15.0
indent-string: 5.0.0
@@ -8057,38 +8120,38 @@ snapshots:
semver: 7.7.1
strip-indent: 4.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.27.0(@typescript-eslint/parser@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.27.0(@typescript-eslint/parser@8.27.0(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.24.0(jiti@2.4.2))(typescript@5.8.3)
- eslint-plugin-vue@10.0.0(eslint@9.22.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2))):
+ eslint-plugin-vue@10.0.0(eslint@9.24.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.24.0(jiti@2.4.2))):
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
- eslint: 9.22.0(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.7.1
- vue-eslint-parser: 10.1.1(eslint@9.22.0(jiti@2.4.2))
+ vue-eslint-parser: 10.1.3(eslint@9.24.0(jiti@2.4.2))
xml-name-validator: 4.0.0
- eslint-plugin-yml@1.17.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-yml@1.17.0(eslint@9.24.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint: 9.22.0(jiti@2.4.2)
- eslint-compat-utils: 0.6.4(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.24.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.5(eslint@9.24.0(jiti@2.4.2))
natural-compare: 1.4.0
yaml-eslint-parser: 1.3.0
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2)):
+ eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.24.0(jiti@2.4.2)):
dependencies:
'@vue/compiler-sfc': 3.5.13
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
eslint-scope@5.1.1:
dependencies:
@@ -8104,20 +8167,20 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.22.0(jiti@2.4.2):
+ eslint@9.24.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.5.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.19.2
- '@eslint/config-helpers': 0.1.0
+ '@eslint/config-array': 0.20.0
+ '@eslint/config-helpers': 0.2.1
'@eslint/core': 0.12.0
- '@eslint/eslintrc': 3.3.0
- '@eslint/js': 9.22.0
- '@eslint/plugin-kit': 0.2.7
+ '@eslint/eslintrc': 3.3.1
+ '@eslint/js': 9.24.0
+ '@eslint/plugin-kit': 0.2.8
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
@@ -8176,7 +8239,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
esutils@2.0.3: {}
@@ -8226,7 +8289,7 @@ snapshots:
exit-hook@4.0.0: {}
- expect-type@1.2.0: {}
+ expect-type@1.2.1: {}
express@4.21.2:
dependencies:
@@ -8276,12 +8339,12 @@ snapshots:
farm-browserslist-generator@1.0.5:
dependencies:
- '@mdn/browser-compat-data': 5.7.4
+ '@mdn/browser-compat-data': 5.7.6
'@types/object-path': 0.11.4
- '@types/semver': 7.5.8
+ '@types/semver': 7.7.0
'@types/ua-parser-js': 0.7.39
browserslist: 4.24.4
- caniuse-lite: 1.0.30001706
+ caniuse-lite: 1.0.30001712
isbot: 3.8.0
object-path: 0.11.8
semver: 7.7.1
@@ -8332,6 +8395,8 @@ snapshots:
fast-deep-equal@3.1.3: {}
+ fast-diff@1.3.0: {}
+
fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -8406,11 +8471,11 @@ snapshots:
flatted@3.3.3: {}
- floating-vue@5.2.2(vue@3.5.13(typescript@5.8.2)):
+ floating-vue@5.2.2(vue@3.5.13(typescript@5.8.3)):
dependencies:
'@floating-ui/dom': 1.1.1
- vue: 3.5.13(typescript@5.8.2)
- vue-resize: 2.0.0-alpha.1(vue@3.5.13(typescript@5.8.2))
+ vue: 3.5.13(typescript@5.8.3)
+ vue-resize: 2.0.0-alpha.1(vue@3.5.13(typescript@5.8.3))
focus-trap@7.6.4:
dependencies:
@@ -8420,11 +8485,6 @@ snapshots:
optionalDependencies:
debug: 4.4.0
- foreground-child@3.3.1:
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
-
forwarded@0.2.0: {}
fresh@0.5.2: {}
@@ -8509,15 +8569,6 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.5:
- dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
-
globals@14.0.0: {}
globals@15.15.0: {}
@@ -8594,7 +8645,7 @@ snapshots:
readable-stream: 2.3.8
wbuf: 1.7.3
- html-entities@2.5.2: {}
+ html-escaper@2.0.2: {}
html-void-elements@3.0.0: {}
@@ -8628,9 +8679,9 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- http-parser-js@0.5.9: {}
+ http-parser-js@0.5.10: {}
- http-proxy-middleware@2.0.7(@types/express@4.17.21):
+ http-proxy-middleware@2.0.8(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.16
http-proxy: 1.18.1(debug@4.4.0)
@@ -8642,7 +8693,7 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy-middleware@3.0.3:
+ http-proxy-middleware@3.0.4:
dependencies:
'@types/http-proxy': 1.17.16
debug: 4.4.0
@@ -8693,7 +8744,7 @@ snapshots:
indent-string@5.0.0: {}
- index-to-position@1.0.0: {}
+ index-to-position@1.1.0: {}
inherits@2.0.3: {}
@@ -8817,17 +8868,9 @@ snapshots:
isobject@3.0.1: {}
- isomorphic-rslog@0.0.6: {}
-
- jackspeak@3.4.3:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -8925,7 +8968,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- koa@2.16.0:
+ koa@2.16.1:
dependencies:
accepts: 1.3.8
cache-content-type: 1.0.1
@@ -8978,15 +9021,15 @@ snapshots:
debug: 4.4.0
execa: 8.0.1
lilconfig: 3.1.3
- listr2: 8.2.5
+ listr2: 8.3.1
micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.7.0
+ yaml: 2.7.1
transitivePeerDependencies:
- supports-color
- listr2@8.2.5:
+ listr2@8.3.1:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -9046,7 +9089,7 @@ snapshots:
mark.js@8.11.1: {}
- markdown-it-github-alerts@0.3.1(markdown-it@14.1.0):
+ markdown-it-github-alerts@1.0.0(markdown-it@14.1.0):
dependencies:
markdown-it: 14.1.0
@@ -9426,8 +9469,6 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minipass@7.1.2: {}
-
minisearch@7.1.2: {}
mitt@3.0.1: {}
@@ -9437,12 +9478,10 @@ snapshots:
acorn: 8.14.1
pathe: 2.0.3
pkg-types: 1.3.1
- ufo: 1.5.4
+ ufo: 1.6.1
mri@1.2.0: {}
- mrmime@1.0.1: {}
-
mrmime@2.0.1: {}
ms@2.0.0: {}
@@ -9512,9 +9551,9 @@ snapshots:
ofetch@1.4.1:
dependencies:
- destr: 2.0.3
+ destr: 2.0.5
node-fetch-native: 1.6.6
- ufo: 1.5.4
+ ufo: 1.6.1
ohash@2.0.11: {}
@@ -9594,47 +9633,49 @@ snapshots:
outdent@0.5.0: {}
- oxc-parser@0.61.0:
+ oxc-parser@0.62.0:
dependencies:
- '@oxc-project/types': 0.61.1
+ '@oxc-project/types': 0.62.0
optionalDependencies:
- '@oxc-parser/binding-darwin-arm64': 0.61.0
- '@oxc-parser/binding-darwin-x64': 0.61.0
- '@oxc-parser/binding-linux-arm-gnueabihf': 0.61.0
- '@oxc-parser/binding-linux-arm64-gnu': 0.61.0
- '@oxc-parser/binding-linux-arm64-musl': 0.61.0
- '@oxc-parser/binding-linux-x64-gnu': 0.61.0
- '@oxc-parser/binding-linux-x64-musl': 0.61.0
- '@oxc-parser/binding-wasm32-wasi': 0.61.0
- '@oxc-parser/binding-win32-arm64-msvc': 0.61.0
- '@oxc-parser/binding-win32-x64-msvc': 0.61.0
-
- oxc-resolver@5.0.1:
+ '@oxc-parser/binding-darwin-arm64': 0.62.0
+ '@oxc-parser/binding-darwin-x64': 0.62.0
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.62.0
+ '@oxc-parser/binding-linux-arm64-gnu': 0.62.0
+ '@oxc-parser/binding-linux-arm64-musl': 0.62.0
+ '@oxc-parser/binding-linux-x64-gnu': 0.62.0
+ '@oxc-parser/binding-linux-x64-musl': 0.62.0
+ '@oxc-parser/binding-wasm32-wasi': 0.62.0
+ '@oxc-parser/binding-win32-arm64-msvc': 0.62.0
+ '@oxc-parser/binding-win32-x64-msvc': 0.62.0
+
+ oxc-resolver@5.2.0:
optionalDependencies:
- '@oxc-resolver/binding-darwin-arm64': 5.0.1
- '@oxc-resolver/binding-darwin-x64': 5.0.1
- '@oxc-resolver/binding-freebsd-x64': 5.0.1
- '@oxc-resolver/binding-linux-arm-gnueabihf': 5.0.1
- '@oxc-resolver/binding-linux-arm64-gnu': 5.0.1
- '@oxc-resolver/binding-linux-arm64-musl': 5.0.1
- '@oxc-resolver/binding-linux-x64-gnu': 5.0.1
- '@oxc-resolver/binding-linux-x64-musl': 5.0.1
- '@oxc-resolver/binding-wasm32-wasi': 5.0.1
- '@oxc-resolver/binding-win32-arm64-msvc': 5.0.1
- '@oxc-resolver/binding-win32-x64-msvc': 5.0.1
-
- oxc-transform@0.61.1:
+ '@oxc-resolver/binding-darwin-arm64': 5.2.0
+ '@oxc-resolver/binding-darwin-x64': 5.2.0
+ '@oxc-resolver/binding-freebsd-x64': 5.2.0
+ '@oxc-resolver/binding-linux-arm-gnueabihf': 5.2.0
+ '@oxc-resolver/binding-linux-arm64-gnu': 5.2.0
+ '@oxc-resolver/binding-linux-arm64-musl': 5.2.0
+ '@oxc-resolver/binding-linux-riscv64-gnu': 5.2.0
+ '@oxc-resolver/binding-linux-s390x-gnu': 5.2.0
+ '@oxc-resolver/binding-linux-x64-gnu': 5.2.0
+ '@oxc-resolver/binding-linux-x64-musl': 5.2.0
+ '@oxc-resolver/binding-wasm32-wasi': 5.2.0
+ '@oxc-resolver/binding-win32-arm64-msvc': 5.2.0
+ '@oxc-resolver/binding-win32-x64-msvc': 5.2.0
+
+ oxc-transform@0.62.0:
optionalDependencies:
- '@oxc-transform/binding-darwin-arm64': 0.61.1
- '@oxc-transform/binding-darwin-x64': 0.61.1
- '@oxc-transform/binding-linux-arm-gnueabihf': 0.61.1
- '@oxc-transform/binding-linux-arm64-gnu': 0.61.1
- '@oxc-transform/binding-linux-arm64-musl': 0.61.1
- '@oxc-transform/binding-linux-x64-gnu': 0.61.1
- '@oxc-transform/binding-linux-x64-musl': 0.61.1
- '@oxc-transform/binding-wasm32-wasi': 0.61.1
- '@oxc-transform/binding-win32-arm64-msvc': 0.61.1
- '@oxc-transform/binding-win32-x64-msvc': 0.61.1
+ '@oxc-transform/binding-darwin-arm64': 0.62.0
+ '@oxc-transform/binding-darwin-x64': 0.62.0
+ '@oxc-transform/binding-linux-arm-gnueabihf': 0.62.0
+ '@oxc-transform/binding-linux-arm64-gnu': 0.62.0
+ '@oxc-transform/binding-linux-arm64-musl': 0.62.0
+ '@oxc-transform/binding-linux-x64-gnu': 0.62.0
+ '@oxc-transform/binding-linux-x64-musl': 0.62.0
+ '@oxc-transform/binding-wasm32-wasi': 0.62.0
+ '@oxc-transform/binding-win32-arm64-msvc': 0.62.0
+ '@oxc-transform/binding-win32-x64-msvc': 0.62.0
p-filter@2.1.0:
dependencies:
@@ -9658,11 +9699,6 @@ snapshots:
p-map@2.1.0: {}
- p-retry@4.6.2:
- dependencies:
- '@types/retry': 0.12.0
- retry: 0.13.1
-
p-retry@6.2.1:
dependencies:
'@types/retry': 0.12.2
@@ -9671,8 +9707,6 @@ snapshots:
p-try@2.2.0: {}
- package-json-from-dist@1.0.1: {}
-
package-manager-detector@0.2.11:
dependencies:
quansync: 0.2.10
@@ -9690,11 +9724,11 @@ snapshots:
es-module-lexer: 1.6.0
slashes: 3.0.12
- parse-json@8.2.0:
+ parse-json@8.3.0:
dependencies:
'@babel/code-frame': 7.26.2
- index-to-position: 1.0.0
- type-fest: 4.37.0
+ index-to-position: 1.1.0
+ type-fest: 4.39.1
parseurl@1.3.3: {}
@@ -9710,11 +9744,6 @@ snapshots:
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.12: {}
path-type@4.0.0: {}
@@ -9747,7 +9776,7 @@ snapshots:
pkg-types@2.1.0:
dependencies:
- confbox: 0.2.1
+ confbox: 0.2.2
exsolve: 1.0.4
pathe: 2.0.3
@@ -9755,7 +9784,7 @@ snapshots:
pnpm-workspace-yaml@0.3.1:
dependencies:
- yaml: 2.7.0
+ yaml: 2.7.1
postcss-selector-parser@6.1.2:
dependencies:
@@ -9768,12 +9797,18 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.26.4: {}
+ preact@10.26.5: {}
prelude-ls@1.2.1: {}
+ prettier-linter-helpers@1.0.0:
+ dependencies:
+ fast-diff: 1.3.0
+
prettier@2.8.8: {}
+ prettier@3.5.3: {}
+
process-nextick-args@2.0.1: {}
property-information@7.0.0: {}
@@ -9819,20 +9854,20 @@ snapshots:
rc9@2.1.2:
dependencies:
defu: 6.1.4
- destr: 2.0.3
+ destr: 2.0.5
read-package-up@11.0.0:
dependencies:
find-up-simple: 1.0.1
read-pkg: 9.0.1
- type-fest: 4.37.0
+ type-fest: 4.39.1
read-pkg@9.0.1:
dependencies:
'@types/normalize-package-data': 2.4.4
normalize-package-data: 6.0.2
- parse-json: 8.2.0
- type-fest: 4.37.0
+ parse-json: 8.3.0
+ type-fest: 4.39.1
unicorn-magic: 0.1.0
read-yaml-file@1.1.0:
@@ -9938,78 +9973,61 @@ snapshots:
rfdc@1.4.1: {}
- rimraf@5.0.10:
+ rolldown@1.0.0-beta.7(typescript@5.8.3):
dependencies:
- glob: 10.4.5
-
- rolldown@1.0.0-beta.6(typescript@5.8.2):
- dependencies:
- '@oxc-project/types': 0.58.1
- '@valibot/to-json-schema': 1.0.0-rc.0(valibot@1.0.0-rc.4(typescript@5.8.2))
- valibot: 1.0.0-rc.4(typescript@5.8.2)
+ '@oxc-project/types': 0.61.2
+ '@valibot/to-json-schema': 1.0.0(valibot@1.0.0(typescript@5.8.3))
+ valibot: 1.0.0(typescript@5.8.3)
optionalDependencies:
- '@rolldown/binding-darwin-arm64': 1.0.0-beta.6
- '@rolldown/binding-darwin-x64': 1.0.0-beta.6
- '@rolldown/binding-freebsd-x64': 1.0.0-beta.6
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.6
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.6
- '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.6
- '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.6
- '@rolldown/binding-linux-x64-musl': 1.0.0-beta.6
- '@rolldown/binding-wasm32-wasi': 1.0.0-beta.6
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.6
- '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.6
- '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.6
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.7
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.7
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.7
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.7
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.7
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.7
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.7
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.7
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.7
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.7
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.7
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.7
transitivePeerDependencies:
- typescript
- rollup-plugin-dts@6.2.1(rollup@4.36.0)(typescript@5.8.2):
+ rollup-plugin-dts@6.2.1(rollup@4.39.0)(typescript@5.8.3):
dependencies:
magic-string: 0.30.17
- rollup: 4.36.0
- typescript: 5.8.2
+ rollup: 4.39.0
+ typescript: 5.8.3
optionalDependencies:
'@babel/code-frame': 7.26.2
- rollup@4.36.0:
+ rollup@4.39.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.36.0
- '@rollup/rollup-android-arm64': 4.36.0
- '@rollup/rollup-darwin-arm64': 4.36.0
- '@rollup/rollup-darwin-x64': 4.36.0
- '@rollup/rollup-freebsd-arm64': 4.36.0
- '@rollup/rollup-freebsd-x64': 4.36.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.36.0
- '@rollup/rollup-linux-arm-musleabihf': 4.36.0
- '@rollup/rollup-linux-arm64-gnu': 4.36.0
- '@rollup/rollup-linux-arm64-musl': 4.36.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.36.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.36.0
- '@rollup/rollup-linux-riscv64-gnu': 4.36.0
- '@rollup/rollup-linux-s390x-gnu': 4.36.0
- '@rollup/rollup-linux-x64-gnu': 4.36.0
- '@rollup/rollup-linux-x64-musl': 4.36.0
- '@rollup/rollup-win32-arm64-msvc': 4.36.0
- '@rollup/rollup-win32-ia32-msvc': 4.36.0
- '@rollup/rollup-win32-x64-msvc': 4.36.0
+ '@rollup/rollup-android-arm-eabi': 4.39.0
+ '@rollup/rollup-android-arm64': 4.39.0
+ '@rollup/rollup-darwin-arm64': 4.39.0
+ '@rollup/rollup-darwin-x64': 4.39.0
+ '@rollup/rollup-freebsd-arm64': 4.39.0
+ '@rollup/rollup-freebsd-x64': 4.39.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.39.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.39.0
+ '@rollup/rollup-linux-arm64-gnu': 4.39.0
+ '@rollup/rollup-linux-arm64-musl': 4.39.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.39.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.39.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.39.0
+ '@rollup/rollup-linux-riscv64-musl': 4.39.0
+ '@rollup/rollup-linux-s390x-gnu': 4.39.0
+ '@rollup/rollup-linux-x64-gnu': 4.39.0
+ '@rollup/rollup-linux-x64-musl': 4.39.0
+ '@rollup/rollup-win32-arm64-msvc': 4.39.0
+ '@rollup/rollup-win32-ia32-msvc': 4.39.0
+ '@rollup/rollup-win32-x64-msvc': 4.39.0
fsevents: 2.3.3
- rspack-resolver@1.2.2:
- optionalDependencies:
- '@unrs/rspack-resolver-binding-darwin-arm64': 1.2.2
- '@unrs/rspack-resolver-binding-darwin-x64': 1.2.2
- '@unrs/rspack-resolver-binding-freebsd-x64': 1.2.2
- '@unrs/rspack-resolver-binding-linux-arm-gnueabihf': 1.2.2
- '@unrs/rspack-resolver-binding-linux-arm64-gnu': 1.2.2
- '@unrs/rspack-resolver-binding-linux-arm64-musl': 1.2.2
- '@unrs/rspack-resolver-binding-linux-x64-gnu': 1.2.2
- '@unrs/rspack-resolver-binding-linux-x64-musl': 1.2.2
- '@unrs/rspack-resolver-binding-wasm32-wasi': 1.2.2
- '@unrs/rspack-resolver-binding-win32-arm64-msvc': 1.2.2
- '@unrs/rspack-resolver-binding-win32-x64-msvc': 1.2.2
-
run-applescript@5.0.0:
dependencies:
execa: 5.1.1
@@ -10193,15 +10211,15 @@ snapshots:
simple-git-hooks@2.12.1: {}
- sirv@1.0.19:
+ sirv@2.0.4:
dependencies:
- '@polka/url': 1.0.0-next.28
- mrmime: 1.0.1
- totalist: 1.1.0
+ '@polka/url': 1.0.0-next.29
+ mrmime: 2.0.1
+ totalist: 3.0.1
sirv@3.0.1:
dependencies:
- '@polka/url': 1.0.0-next.28
+ '@polka/url': 1.0.0-next.29
mrmime: 2.0.1
totalist: 3.0.1
@@ -10295,7 +10313,7 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.8.1: {}
+ std-env@3.9.0: {}
string-argv@0.3.2: {}
@@ -10305,12 +10323,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.1.0
-
string-width@7.2.0:
dependencies:
emoji-regex: 10.4.0
@@ -10364,8 +10376,9 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- synckit@0.6.2:
+ synckit@0.10.3:
dependencies:
+ '@pkgr/core': 0.2.2
tslib: 2.8.1
synckit@0.9.2:
@@ -10379,16 +10392,16 @@ snapshots:
term-size@2.2.1: {}
- terser-webpack-plugin@5.3.14(esbuild@0.25.1)(webpack@5.98.0):
+ terser-webpack-plugin@5.3.14(esbuild@0.25.2)(webpack@5.99.5):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.39.0
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
optionalDependencies:
- esbuild: 0.25.1
+ esbuild: 0.25.2
terser@5.39.0:
dependencies:
@@ -10407,7 +10420,7 @@ snapshots:
tinyexec@0.3.2: {}
- tinyexec@1.0.0: {}
+ tinyexec@1.0.1: {}
tinyglobby@0.2.12:
dependencies:
@@ -10436,8 +10449,6 @@ snapshots:
dependencies:
eslint-visitor-keys: 3.4.3
- totalist@1.1.0: {}
-
totalist@3.0.1: {}
tree-dump@1.0.2(tslib@2.8.1):
@@ -10446,11 +10457,11 @@ snapshots:
trim-lines@3.0.1: {}
- ts-api-utils@2.1.0(typescript@5.8.2):
+ ts-api-utils@2.1.0(typescript@5.8.3):
dependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
- tsdown@0.6.9(publint@0.3.5)(typescript@5.8.2)(unplugin-unused@0.4.1):
+ tsdown@0.6.10(publint@0.3.5)(typescript@5.8.3)(unplugin-unused@0.4.1):
dependencies:
ansis: 3.17.0
cac: 6.7.14
@@ -10458,14 +10469,14 @@ snapshots:
consola: 3.4.2
debug: 4.4.0
diff: 7.0.0
- oxc-resolver: 5.0.1
+ oxc-resolver: 5.2.0
pkg-types: 2.1.0
- rolldown: 1.0.0-beta.6(typescript@5.8.2)
- rollup: 4.36.0
- rollup-plugin-dts: 6.2.1(rollup@4.36.0)(typescript@5.8.2)
+ rolldown: 1.0.0-beta.7(typescript@5.8.3)
+ rollup: 4.39.0
+ rollup-plugin-dts: 6.2.1(rollup@4.39.0)(typescript@5.8.3)
tinyglobby: 0.2.12
unconfig: 7.3.1
- unplugin-isolated-decl: 0.13.5(typescript@5.8.2)
+ unplugin-isolated-decl: 0.13.6(typescript@5.8.3)
optionalDependencies:
publint: 0.3.5
unplugin-unused: 0.4.1
@@ -10481,27 +10492,27 @@ snapshots:
tsx@4.19.3:
dependencies:
- esbuild: 0.25.1
+ esbuild: 0.25.2
get-tsconfig: 4.10.0
optionalDependencies:
fsevents: 2.3.3
twoslash-protocol@0.3.1: {}
- twoslash-vue@0.3.1(typescript@5.8.2):
+ twoslash-vue@0.3.1(typescript@5.8.3):
dependencies:
- '@vue/language-core': 2.2.4(typescript@5.8.2)
- twoslash: 0.3.1(typescript@5.8.2)
+ '@vue/language-core': 2.2.4(typescript@5.8.3)
+ twoslash: 0.3.1(typescript@5.8.3)
twoslash-protocol: 0.3.1
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- twoslash@0.3.1(typescript@5.8.2):
+ twoslash@0.3.1(typescript@5.8.3):
dependencies:
- '@typescript/vfs': 1.6.1(typescript@5.8.2)
+ '@typescript/vfs': 1.6.1(typescript@5.8.3)
twoslash-protocol: 0.3.1
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -10511,29 +10522,29 @@ snapshots:
type-fest@0.21.3: {}
- type-fest@4.37.0: {}
+ type-fest@4.39.1: {}
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- typescript@5.8.2: {}
+ typescript@5.8.3: {}
ua-parser-js@1.0.40: {}
uc.micro@2.1.0: {}
- ufo@1.5.4: {}
+ ufo@1.6.1: {}
unconfig@7.3.1:
dependencies:
- '@quansync/fs': 0.1.1
+ '@quansync/fs': 0.1.2
defu: 6.1.4
jiti: 2.4.2
quansync: 0.2.10
- undici-types@6.20.0: {}
+ undici-types@6.21.0: {}
unicorn-magic@0.1.0: {}
@@ -10567,36 +10578,36 @@ snapshots:
unloader@0.4.3:
dependencies:
'@ampproject/remapping': 2.3.0
- birpc: 2.2.0
+ birpc: 2.3.0
debug: 4.4.0
quansync: 0.2.10
unconfig: 7.3.1
transitivePeerDependencies:
- supports-color
- unocss@66.1.0-beta.6(postcss@8.5.3)(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2)):
- dependencies:
- '@unocss/astro': 66.1.0-beta.6(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
- '@unocss/cli': 66.1.0-beta.6
- '@unocss/core': 66.1.0-beta.6
- '@unocss/postcss': 66.1.0-beta.6(postcss@8.5.3)
- '@unocss/preset-attributify': 66.1.0-beta.6
- '@unocss/preset-icons': 66.1.0-beta.6
- '@unocss/preset-mini': 66.1.0-beta.6
- '@unocss/preset-tagify': 66.1.0-beta.6
- '@unocss/preset-typography': 66.1.0-beta.6
- '@unocss/preset-uno': 66.1.0-beta.6
- '@unocss/preset-web-fonts': 66.1.0-beta.6
- '@unocss/preset-wind': 66.1.0-beta.6
- '@unocss/preset-wind3': 66.1.0-beta.6
- '@unocss/preset-wind4': 66.1.0-beta.6
- '@unocss/transformer-attributify-jsx': 66.1.0-beta.6
- '@unocss/transformer-compile-class': 66.1.0-beta.6
- '@unocss/transformer-directives': 66.1.0-beta.6
- '@unocss/transformer-variant-group': 66.1.0-beta.6
- '@unocss/vite': 66.1.0-beta.6(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ unocss@66.1.0-beta.10(postcss@8.5.3)(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3)):
+ dependencies:
+ '@unocss/astro': 66.1.0-beta.10(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
+ '@unocss/cli': 66.1.0-beta.10
+ '@unocss/core': 66.1.0-beta.10
+ '@unocss/postcss': 66.1.0-beta.10(postcss@8.5.3)
+ '@unocss/preset-attributify': 66.1.0-beta.10
+ '@unocss/preset-icons': 66.1.0-beta.10
+ '@unocss/preset-mini': 66.1.0-beta.10
+ '@unocss/preset-tagify': 66.1.0-beta.10
+ '@unocss/preset-typography': 66.1.0-beta.10
+ '@unocss/preset-uno': 66.1.0-beta.10
+ '@unocss/preset-web-fonts': 66.1.0-beta.10
+ '@unocss/preset-wind': 66.1.0-beta.10
+ '@unocss/preset-wind3': 66.1.0-beta.10
+ '@unocss/preset-wind4': 66.1.0-beta.10
+ '@unocss/transformer-attributify-jsx': 66.1.0-beta.10
+ '@unocss/transformer-compile-class': 66.1.0-beta.10
+ '@unocss/transformer-directives': 66.1.0-beta.10
+ '@unocss/transformer-variant-group': 66.1.0-beta.10
+ '@unocss/vite': 66.1.0-beta.10(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
optionalDependencies:
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
transitivePeerDependencies:
- postcss
- supports-color
@@ -10610,22 +10621,22 @@ snapshots:
'@iconify/utils': 2.3.0
debug: 4.4.0
local-pkg: 1.1.1
- unplugin: 2.2.1
+ unplugin: 2.2.2
optionalDependencies:
'@vue/compiler-sfc': 3.5.13
transitivePeerDependencies:
- supports-color
- unplugin-isolated-decl@0.13.5(typescript@5.8.2):
+ unplugin-isolated-decl@0.13.6(typescript@5.8.3):
dependencies:
debug: 4.4.0
magic-string: 0.30.17
- oxc-parser: 0.61.0
- oxc-transform: 0.61.1
- unplugin: 2.2.1
+ oxc-parser: 0.62.0
+ oxc-transform: 0.62.0
+ unplugin: 2.2.2
unplugin-utils: 0.2.4
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -10634,7 +10645,7 @@ snapshots:
js-tokens: 9.0.1
picocolors: 1.1.1
pkg-types: 1.3.1
- unplugin: 2.2.1
+ unplugin: 2.2.2
unplugin-utils: 0.2.4
optional: true
@@ -10643,7 +10654,7 @@ snapshots:
pathe: 2.0.3
picomatch: 4.0.2
- unplugin-vue-components@28.4.1(@babel/parser@7.26.10)(vue@3.5.13(typescript@5.8.2)):
+ unplugin-vue-components@28.4.1(@babel/parser@7.27.0)(vue@3.5.13(typescript@5.8.3)):
dependencies:
chokidar: 3.6.0
debug: 4.4.0
@@ -10651,19 +10662,37 @@ snapshots:
magic-string: 0.30.17
mlly: 1.7.4
tinyglobby: 0.2.12
- unplugin: 2.2.1
+ unplugin: 2.2.2
unplugin-utils: 0.2.4
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.13(typescript@5.8.3)
optionalDependencies:
- '@babel/parser': 7.26.10
+ '@babel/parser': 7.27.0
transitivePeerDependencies:
- supports-color
- unplugin@2.2.1:
+ unplugin@2.2.2:
dependencies:
acorn: 8.14.1
webpack-virtual-modules: 0.6.2
+ unrs-resolver@1.4.1:
+ optionalDependencies:
+ '@unrs/resolver-binding-darwin-arm64': 1.4.1
+ '@unrs/resolver-binding-darwin-x64': 1.4.1
+ '@unrs/resolver-binding-freebsd-x64': 1.4.1
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.4.1
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.4.1
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.4.1
+ '@unrs/resolver-binding-linux-arm64-musl': 1.4.1
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.4.1
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.4.1
+ '@unrs/resolver-binding-linux-x64-gnu': 1.4.1
+ '@unrs/resolver-binding-linux-x64-musl': 1.4.1
+ '@unrs/resolver-binding-wasm32-wasi': 1.4.1
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.4.1
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.4.1
+ '@unrs/resolver-binding-win32-x64-msvc': 1.4.1
+
untildify@4.0.0: {}
update-browserslist-db@1.1.3(browserslist@4.24.4):
@@ -10682,9 +10711,9 @@ snapshots:
uuid@8.3.2: {}
- valibot@1.0.0-rc.4(typescript@5.8.2):
+ valibot@1.0.0(typescript@5.8.3):
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
validate-npm-package-license@3.0.4:
dependencies:
@@ -10703,13 +10732,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@3.0.9(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0):
+ vite-node@3.1.1(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
dependencies:
cac: 6.7.14
debug: 4.4.0
es-module-lexer: 1.6.0
pathe: 2.0.3
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -10724,47 +10753,47 @@ snapshots:
- tsx
- yaml
- vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0):
+ vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
dependencies:
- esbuild: 0.25.1
+ esbuild: 0.25.2
postcss: 8.5.3
- rollup: 4.36.0
+ rollup: 4.39.0
optionalDependencies:
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
fsevents: 2.3.3
jiti: 2.4.2
terser: 5.39.0
tsx: 4.19.3
- yaml: 2.7.0
+ yaml: 2.7.1
- vitepress-plugin-group-icons@1.3.8:
+ vitepress-plugin-group-icons@1.4.1:
dependencies:
'@iconify-json/logos': 1.2.4
- '@iconify-json/vscode-icons': 1.2.16
+ '@iconify-json/vscode-icons': 1.2.19
'@iconify/utils': 2.3.0
transitivePeerDependencies:
- supports-color
- vitepress@2.0.0-alpha.2(@algolia/client-search@5.21.0)(@types/node@22.13.11)(jiti@2.4.2)(postcss@8.5.3)(search-insights@2.17.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.2)(yaml@2.7.0):
+ vitepress@2.0.0-alpha.2(@algolia/client-search@5.23.3)(@types/node@22.14.0)(jiti@2.4.2)(postcss@8.5.3)(search-insights@2.17.3)(terser@5.39.0)(tsx@4.19.3)(typescript@5.8.3)(yaml@2.7.1):
dependencies:
'@docsearch/css': 3.9.0
- '@docsearch/js': 3.9.0(@algolia/client-search@5.21.0)(search-insights@2.17.3)
- '@iconify-json/simple-icons': 1.2.29
+ '@docsearch/js': 3.9.0(@algolia/client-search@5.23.3)(search-insights@2.17.3)
+ '@iconify-json/simple-icons': 1.2.31
'@shikijs/core': 2.5.0
'@shikijs/transformers': 2.5.0
'@shikijs/types': 2.5.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.3(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ '@vitejs/plugin-vue': 5.2.3(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))(vue@3.5.13(typescript@5.8.3))
'@vue/devtools-api': 7.7.2
'@vue/shared': 3.5.13
- '@vueuse/core': 12.8.2(typescript@5.8.2)
- '@vueuse/integrations': 12.8.2(focus-trap@7.6.4)(typescript@5.8.2)
+ '@vueuse/core': 12.8.2(typescript@5.8.3)
+ '@vueuse/integrations': 12.8.2(focus-trap@7.6.4)(typescript@5.8.3)
focus-trap: 7.6.4
mark.js: 8.11.1
minisearch: 7.1.2
shiki: 2.5.0
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.8.2)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vue: 3.5.13(typescript@5.8.3)
optionalDependencies:
postcss: 8.5.3
transitivePeerDependencies:
@@ -10797,31 +10826,31 @@ snapshots:
- universal-cookie
- yaml
- vitest@3.0.9(@types/debug@4.1.12)(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0):
+ vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1):
dependencies:
- '@vitest/expect': 3.0.9
- '@vitest/mocker': 3.0.9(vite@6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))
- '@vitest/pretty-format': 3.0.9
- '@vitest/runner': 3.0.9
- '@vitest/snapshot': 3.0.9
- '@vitest/spy': 3.0.9
- '@vitest/utils': 3.0.9
+ '@vitest/expect': 3.1.1
+ '@vitest/mocker': 3.1.1(vite@6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1))
+ '@vitest/pretty-format': 3.1.1
+ '@vitest/runner': 3.1.1
+ '@vitest/snapshot': 3.1.1
+ '@vitest/spy': 3.1.1
+ '@vitest/utils': 3.1.1
chai: 5.2.0
debug: 4.4.0
- expect-type: 1.2.0
+ expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
- std-env: 3.8.1
+ std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.2.2(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
- vite-node: 3.0.9(@types/node@22.13.11)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.2.5(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
+ vite-node: 3.1.1(@types/node@22.14.0)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.13.11
+ '@types/node': 22.14.0
transitivePeerDependencies:
- jiti
- less
@@ -10838,10 +10867,10 @@ snapshots:
vscode-uri@3.1.0: {}
- vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2)):
+ vue-eslint-parser@10.1.3(eslint@9.24.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.24.0(jiti@2.4.2)
eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
@@ -10851,29 +10880,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.8.2)):
+ vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.8.3)):
dependencies:
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.13(typescript@5.8.3)
- vue-resize@2.0.0-alpha.1(vue@3.5.13(typescript@5.8.2)):
+ vue-resize@2.0.0-alpha.1(vue@3.5.13(typescript@5.8.3)):
dependencies:
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.13(typescript@5.8.3)
- vue-tsc@2.2.8(typescript@5.8.2):
+ vue-tsc@2.2.8(typescript@5.8.3):
dependencies:
'@volar/typescript': 2.4.12
- '@vue/language-core': 2.2.8(typescript@5.8.2)
- typescript: 5.8.2
+ '@vue/language-core': 2.2.8(typescript@5.8.3)
+ typescript: 5.8.3
- vue@3.5.13(typescript@5.8.2):
+ vue@3.5.13(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.8.2))
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.8.3))
'@vue/shared': 3.5.13
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
walkdir@0.4.1: {}
@@ -10890,27 +10919,30 @@ snapshots:
dependencies:
defaults: 1.0.4
- webpack-bundle-analyzer@4.6.1:
+ webpack-bundle-analyzer@4.10.2:
dependencies:
+ '@discoveryjs/json-ext': 0.5.7
acorn: 8.14.1
acorn-walk: 8.3.4
- chalk: 4.1.2
commander: 7.2.0
+ debounce: 1.2.1
+ escape-string-regexp: 4.0.0
gzip-size: 6.0.0
- lodash: 4.17.21
+ html-escaper: 2.0.2
opener: 1.5.2
- sirv: 1.0.19
+ picocolors: 1.1.1
+ sirv: 2.0.4
ws: 7.5.10
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- webpack-cli@6.0.1(webpack@5.98.0):
+ webpack-cli@6.0.1(webpack@5.99.5):
dependencies:
'@discoveryjs/json-ext': 0.6.3
- '@webpack-cli/configtest': 3.0.1(webpack-cli@6.0.1)(webpack@5.98.0)
- '@webpack-cli/info': 3.0.1(webpack-cli@6.0.1)(webpack@5.98.0)
- '@webpack-cli/serve': 3.0.1(webpack-cli@6.0.1)(webpack@5.98.0)
+ '@webpack-cli/configtest': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.5)
+ '@webpack-cli/info': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.5)
+ '@webpack-cli/serve': 3.0.1(webpack-cli@6.0.1)(webpack@5.99.5)
colorette: 2.0.20
commander: 12.1.0
cross-spawn: 7.0.6
@@ -10919,10 +10951,10 @@ snapshots:
import-local: 3.2.0
interpret: 3.1.1
rechoir: 0.8.0
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
webpack-merge: 6.0.1
- webpack-dev-middleware@7.4.2(webpack@5.98.0):
+ webpack-dev-middleware@7.4.2(webpack@5.99.5):
dependencies:
colorette: 2.0.20
memfs: 4.17.0
@@ -10931,9 +10963,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.3.0
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
- webpack-dev-server@5.0.4(webpack-cli@6.0.1)(webpack@5.98.0):
+ webpack-dev-server@5.2.0(webpack-cli@6.0.1)(webpack@5.99.5):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -10941,33 +10973,30 @@ snapshots:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.18.0
+ '@types/ws': 8.18.1
ansi-html-community: 0.0.8
bonjour-service: 1.3.0
chokidar: 3.6.0
colorette: 2.0.20
compression: 1.8.0
connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
express: 4.21.2
graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.8(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.10.0
open: 10.1.0
p-retry: 6.2.1
- rimraf: 5.0.10
schema-utils: 4.3.0
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.98.0)
+ webpack-dev-middleware: 7.4.2(webpack@5.99.5)
ws: 8.18.1
optionalDependencies:
- webpack: 5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1)
- webpack-cli: 6.0.1(webpack@5.98.0)
+ webpack: 5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1)
+ webpack-cli: 6.0.1(webpack@5.99.5)
transitivePeerDependencies:
- bufferutil
- debug
@@ -10984,10 +11013,10 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.98.0(esbuild@0.25.1)(webpack-cli@6.0.1):
+ webpack@5.99.5(esbuild@0.25.2)(webpack-cli@6.0.1):
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
@@ -11006,11 +11035,11 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(esbuild@0.25.1)(webpack@5.98.0)
+ terser-webpack-plugin: 5.3.14(esbuild@0.25.2)(webpack@5.99.5)
watchpack: 2.4.2
webpack-sources: 3.2.3
optionalDependencies:
- webpack-cli: 6.0.1(webpack@5.98.0)
+ webpack-cli: 6.0.1(webpack@5.99.5)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -11018,7 +11047,7 @@ snapshots:
websocket-driver@0.7.4:
dependencies:
- http-parser-js: 0.5.9
+ http-parser-js: 0.5.10
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
@@ -11049,12 +11078,6 @@ 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.1.0
-
wrap-ansi@9.0.0:
dependencies:
ansi-styles: 6.2.1
@@ -11072,9 +11095,9 @@ snapshots:
yaml-eslint-parser@1.3.0:
dependencies:
eslint-visitor-keys: 3.4.3
- yaml: 2.7.0
+ yaml: 2.7.1
- yaml@2.7.0: {}
+ yaml@2.7.1: {}
yargs-parser@21.1.1: {}
diff --git a/src/define.ts b/src/define.ts
index 8eff312d..15f13300 100644
--- a/src/define.ts
+++ b/src/define.ts
@@ -21,7 +21,6 @@ export function createUnplugin(
get vite() {
return getVitePlugin(factory)
},
- /** @experimental do not use it in production */
get rolldown() {
return getRolldownPlugin(factory)
},
@@ -61,7 +60,6 @@ export function createVitePlugin(
return getVitePlugin(factory)
}
-/** @experimental do not use it in production */
export function createRolldownPlugin(
factory: UnpluginFactory,
): UnpluginInstance['rolldown'] {
diff --git a/src/esbuild/index.ts b/src/esbuild/index.ts
index e5d61094..c2109403 100644
--- a/src/esbuild/index.ts
+++ b/src/esbuild/index.ts
@@ -10,6 +10,7 @@ import type {
} from '../types'
import fs from 'node:fs'
import path from 'node:path'
+import { normalizeObjectHook } from '../utils/filter'
import { toArray } from '../utils/general'
import {
combineSourcemaps,
@@ -167,20 +168,24 @@ function buildSetup() {
if (plugin.resolveId) {
onResolve({ filter: onResolveFilter }, async (args) => {
- if (initialOptions.external?.includes(args.path)) {
+ const id = args.path
+ if (initialOptions.external?.includes(id)) {
// We don't want to call the `resolveId` hook for external modules,
// since rollup doesn't do that and we want to
// have consistent behaviour across bundlers
- return undefined
+ return
}
- const { errors, warnings, mixedContext }
- = createPluginContext(context)
+ const { handler, filter } = normalizeObjectHook('resolveId', plugin.resolveId!)
+ if (!filter(id))
+ return
+
+ const { errors, warnings, mixedContext } = createPluginContext(context)
const isEntry = args.kind === 'entry-point'
- const result = await plugin.resolveId!.call(
+ const result = await handler.call(
mixedContext,
- args.path,
+ id,
// We explicitly have this if statement here for consistency with
// the integration of other bundlers.
// Here, `args.importer` is just an empty string on entry files
@@ -212,26 +217,26 @@ function buildSetup() {
if (plugin.load) {
onLoad({ filter: onLoadFilter }, async (args) => {
+ const { handler, filter } = normalizeObjectHook('load', plugin.load!)
const id = args.path + (args.suffix || '') // compat for #427
- const { errors, warnings, mixedContext }
- = createPluginContext(context)
+ if (plugin.loadInclude && !plugin.loadInclude(id))
+ return
+ if (!filter(id))
+ return
- // because we use `namespace` to simulate virtual modules,
- // it is required to forward `resolveDir` for esbuild to find dependencies.
- const resolveDir = path.dirname(args.path)
+ const { errors, warnings, mixedContext } = createPluginContext(context)
- let code: string | undefined, map: SourceMap | null | undefined
+ let code: string | undefined
+ let map: SourceMap | null | undefined
- if (plugin.load && (!plugin.loadInclude || plugin.loadInclude(id))) {
- const result = await plugin.load.call(mixedContext, id)
- if (typeof result === 'string') {
- code = result
- }
- else if (typeof result === 'object' && result !== null) {
- code = result.code
- map = result.map as any
- }
+ const result = await handler.call(mixedContext, id)
+ if (typeof result === 'string') {
+ code = result
+ }
+ else if (typeof result === 'object' && result !== null) {
+ code = result.code
+ map = result.map as any
}
if (code === undefined)
@@ -240,6 +245,10 @@ function buildSetup() {
if (map)
code = processCodeWithSourceMap(map, code)
+ // because we use `namespace` to simulate virtual modules,
+ // it is required to forward `resolveDir` for esbuild to find dependencies.
+ const resolveDir = path.dirname(args.path)
+
return {
contents: code,
errors,
@@ -253,17 +262,20 @@ function buildSetup() {
if (plugin.transform) {
onTransform({ filter: onLoadFilter }, async (args) => {
- const id = args.path + (args.suffix || '')
+ const { handler, filter } = normalizeObjectHook('transform', plugin.transform!)
+ const id = args.path + (args.suffix || '')
if (plugin.transformInclude && !plugin.transformInclude(id))
return
+ let code = await args.getContents()
+ if (!filter(id, code))
+ return
const { mixedContext, errors, warnings } = createPluginContext(context)
const resolveDir = path.dirname(args.path)
- let code = await args.getContents()
let map: SourceMap | null | undefined
- const result = await plugin.transform!.call(mixedContext, code, id)
+ const result = await handler.call(mixedContext, code, id)
if (typeof result === 'string') {
code = result
}
diff --git a/src/farm/index.ts b/src/farm/index.ts
index 9b887e63..a94dc26c 100644
--- a/src/farm/index.ts
+++ b/src/farm/index.ts
@@ -18,6 +18,7 @@ import type { JsPluginExtended, WatchChangeEvents } from './utils'
import path from 'node:path'
+import { normalizeObjectHook } from '../utils/filter'
import { toArray } from '../utils/general'
import { createFarmContext, unpluginContext } from './context'
import {
@@ -92,15 +93,21 @@ export function toFarmPlugin(plugin: UnpluginOptions, options?: Record {
const resolvedPath = decodeStr(params.resolvedPath)
-
const id = appendQuery(resolvedPath, params.query)
-
const loader = formatTransformModuleType(id)
- const shouldLoadInclude
- = plugin.loadInclude?.(id)
-
- if (!shouldLoadInclude)
+ if (plugin.loadInclude && !plugin.loadInclude?.(id))
+ return null
+ const { handler, filter } = normalizeObjectHook('load', _load)
+ if (!filter(id))
return null
const farmContext = createFarmContext(context!, id)
-
- const content: TransformResult = await _load.call(
+ const content: TransformResult = await handler.call(
Object.assign(unpluginContext(context!), farmContext),
id,
)
@@ -178,19 +182,18 @@ export function toFarmPlugin(plugin: UnpluginOptions, options?: Record, Nested extends boolean = boolean>(
@@ -15,28 +16,89 @@ export function getRollupPlugin, Nested exte
}
export function toRollupPlugin(plugin: UnpluginOptions, key: 'rollup' | 'rolldown' | 'vite' | 'unloader'): RollupPlugin {
- if (plugin.transform && plugin.transformInclude) {
- const _transform = plugin.transform
- plugin.transform = function (code, id, ...args) {
- if (plugin.transformInclude && !plugin.transformInclude(id))
- return null
+ const nativeFilter = key === 'rolldown'
- return _transform.call(this, code, id, ...args)
- }
+ if (
+ plugin.resolveId
+ && (!nativeFilter && typeof plugin.resolveId === 'object' && plugin.resolveId.filter)
+ ) {
+ const resolveIdHook = plugin.resolveId
+ const { handler, filter } = normalizeObjectHook('load', resolveIdHook)
+
+ replaceHookHandler('resolveId', resolveIdHook, function (...args) {
+ const [id] = args
+ const supportFilter = supportNativeFilter(this)
+ if (!supportFilter && !filter(id))
+ return
+
+ return handler.apply(this, args)
+ })
}
- if (plugin.load && plugin.loadInclude) {
- const _load = plugin.load
- plugin.load = function (id, ...args) {
+ if (plugin.load && (
+ plugin.loadInclude
+ || (!nativeFilter && typeof plugin.load === 'object' && plugin.load.filter))
+ ) {
+ const loadHook = plugin.load
+ const { handler, filter } = normalizeObjectHook('load', loadHook)
+
+ replaceHookHandler('load', loadHook, function (...args) {
+ const [id] = args
if (plugin.loadInclude && !plugin.loadInclude(id))
- return null
+ return
- return _load.call(this, id, ...args)
- }
+ const supportFilter = supportNativeFilter(this)
+ if (!supportFilter && !filter(id))
+ return
+
+ return handler.apply(this, args)
+ })
+ }
+
+ if (plugin.transform && (
+ plugin.transformInclude
+ || (!nativeFilter && typeof plugin.transform === 'object' && plugin.transform.filter))
+ ) {
+ const transformHook = plugin.transform
+ const { handler, filter } = normalizeObjectHook('transform', transformHook)
+
+ replaceHookHandler('transform', transformHook, function (...args) {
+ const [code, id] = args
+ if (plugin.transformInclude && !plugin.transformInclude(id))
+ return
+
+ const supportFilter = supportNativeFilter(this)
+ if (!supportFilter && !filter(id, code))
+ return
+
+ return handler.apply(this, args)
+ })
}
if (plugin[key])
Object.assign(plugin, plugin[key])
return plugin as RollupPlugin
+
+ function replaceHookHandler(
+ name: K,
+ hook: Hook,
+ handler: HookFnMap[K],
+ ) {
+ if (typeof hook === 'function') {
+ plugin[name] = handler as any
+ }
+ else {
+ hook.handler = handler
+ }
+ }
+}
+
+function supportNativeFilter(context: any) {
+ const rollupVersion: string | undefined = context?.meta?.rollupVersion
+ if (!rollupVersion)
+ return false
+
+ const [major, minor] = rollupVersion.split('.')
+ return (Number(major) > 4 || (Number(major) === 4 && Number(minor) >= 38))
}
diff --git a/src/rspack/index.ts b/src/rspack/index.ts
index 51778969..662fac83 100644
--- a/src/rspack/index.ts
+++ b/src/rspack/index.ts
@@ -8,6 +8,7 @@ import type {
} from '../types'
import fs from 'node:fs'
import { resolve } from 'node:path'
+import { normalizeObjectHook } from '../utils/filter'
import { toArray } from '../utils/general'
import { normalizeAbsolutePath, transformUse } from '../utils/webpack-like'
import { createBuildContext, normalizeMessage } from './context'
@@ -82,7 +83,12 @@ export function getRspackPlugin>(
console.warn(`unplugin/rspack: warning from resolveId hook: ${msg}`)
},
}
- const resolveIdResult = await plugin.resolveId!.call!({ ...context, ...pluginContext }, id, importer, { isEntry })
+
+ const { handler, filter } = normalizeObjectHook('resolveId', plugin.resolveId!)
+ if (!filter(id))
+ return
+
+ const resolveIdResult = await handler.call!({ ...context, ...pluginContext }, id, importer, { isEntry })
if (error != null)
throw error
@@ -122,6 +128,10 @@ export function getRspackPlugin>(
if (plugin.loadInclude && !plugin.loadInclude(id))
return false
+ const { filter } = normalizeObjectHook('load', plugin.load!)
+ if (!filter(id))
+ return false
+
// Don't run load hook for external modules
return !externalModules.has(id)
},
diff --git a/src/rspack/loaders/load.ts b/src/rspack/loaders/load.ts
index 827720f0..242ec1c2 100644
--- a/src/rspack/loaders/load.ts
+++ b/src/rspack/loaders/load.ts
@@ -1,5 +1,6 @@
import type { LoaderContext } from '@rspack/core'
import type { ResolvedUnpluginOptions } from '../../types'
+import { normalizeObjectHook } from '../../utils/filter'
import { normalizeAbsolutePath } from '../../utils/webpack-like'
import { createBuildContext, createContext } from '../context'
import { decodeVirtualModuleId, isVirtualModuleId } from '../utils'
@@ -16,7 +17,8 @@ export default async function load(this: LoaderContext, source: string, map: any
id = decodeVirtualModuleId(id, plugin)
const context = createContext(this)
- const res = await plugin.load.call(
+ const { handler } = normalizeObjectHook('load', plugin.load)
+ const res = await handler.call(
Object.assign(
{},
this._compilation && createBuildContext(this._compiler, this._compilation, this),
diff --git a/src/rspack/loaders/transform.ts b/src/rspack/loaders/transform.ts
index 2b53e875..b0ac2a66 100644
--- a/src/rspack/loaders/transform.ts
+++ b/src/rspack/loaders/transform.ts
@@ -1,5 +1,6 @@
import type { LoaderContext } from '@rspack/core'
import type { ResolvedUnpluginOptions } from '../../types'
+import { normalizeObjectHook } from '../../utils/filter'
import { createBuildContext, createContext } from '../context'
export default async function transform(
@@ -14,9 +15,12 @@ export default async function transform(
const id = this.resource
const context = createContext(this)
+ const { handler, filter } = normalizeObjectHook('transform', plugin.transform)
+ if (!filter(this.resource, source))
+ return callback(null, source, map)
try {
- const res = await plugin.transform.call(
+ const res = await handler.call(
Object.assign(
{},
this._compilation && createBuildContext(this._compiler, this._compilation, this),
diff --git a/src/types.ts b/src/types.ts
index 8e7bf026..b178dcaa 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -61,29 +61,68 @@ export interface UnpluginBuildContext {
getNativeBuildContext?: () => NativeBuildContext
}
+export type StringOrRegExp = string | RegExp
+export type FilterPattern = Arrayable
+export type StringFilter =
+ | FilterPattern
+ | { include?: FilterPattern, exclude?: FilterPattern }
+export interface HookFilter {
+ id?: StringFilter
+ code?: StringFilter
+}
+
+export interface ObjectHook {
+ filter?: Pick
+ handler: T
+}
+export type Hook<
+ T extends HookFnMap[keyof HookFnMap],
+ F extends keyof HookFilter,
+> = T | ObjectHook
+
+export interface HookFnMap {
+ // Build Hooks
+ buildStart: (this: UnpluginBuildContext) => Thenable
+ buildEnd: (this: UnpluginBuildContext) => Thenable
+
+ transform: (this: UnpluginBuildContext & UnpluginContext, code: string, id: string) => Thenable
+ load: (this: UnpluginBuildContext & UnpluginContext, id: string) => Thenable
+ resolveId: (
+ this: UnpluginBuildContext & UnpluginContext,
+ id: string,
+ importer: string | undefined,
+ options: { isEntry: boolean }
+ ) => Thenable
+
+ // Output Generation Hooks
+ writeBundle: (this: void) => Thenable
+}
+
export interface UnpluginOptions {
name: string
enforce?: 'post' | 'pre' | undefined
- // Build Hooks
- buildStart?: (this: UnpluginBuildContext) => Promise | void
- buildEnd?: (this: UnpluginBuildContext) => Promise | void
- transform?: (this: UnpluginBuildContext & UnpluginContext, code: string, id: string) => Thenable
- load?: (this: UnpluginBuildContext & UnpluginContext, id: string) => Thenable
- resolveId?: (this: UnpluginBuildContext & UnpluginContext, id: string, importer: string | undefined, options: { isEntry: boolean }) => Thenable
- watchChange?: (this: UnpluginBuildContext, id: string, change: { event: 'create' | 'update' | 'delete' }) => void
+ buildStart?: HookFnMap['buildStart']
+ buildEnd?: HookFnMap['buildEnd']
+ transform?: Hook
+ load?: Hook
+ resolveId?: Hook
+ writeBundle?: HookFnMap['writeBundle']
- // Output Generation Hooks
- writeBundle?: (this: void) => Promise | void
+ watchChange?: (this: UnpluginBuildContext, id: string, change: { event: 'create' | 'update' | 'delete' }) => void
/**
* Custom predicate function to filter modules to be loaded.
* When omitted, all modules will be included (might have potential perf impact on Webpack).
+ *
+ * @deprecated Use `load.filter` instead.
*/
loadInclude?: (id: string) => boolean | null | undefined
/**
* Custom predicate function to filter modules to be transformed.
* When omitted, all modules will be included (might have potential perf impact on Webpack).
+ *
+ * @deprecated Use `transform.filter` instead.
*/
transformInclude?: (id: string) => boolean | null | undefined
diff --git a/src/utils/filter.ts b/src/utils/filter.ts
new file mode 100644
index 00000000..19ef104f
--- /dev/null
+++ b/src/utils/filter.ts
@@ -0,0 +1,190 @@
+import type { Hook, HookFilter, StringFilter, StringOrRegExp } from '../types'
+import { resolve } from 'node:path'
+import picomatch from 'picomatch'
+import { toArray } from './general'
+
+const BACKSLASH_REGEX = /\\/g
+function normalize(path: string): string {
+ return path.replace(BACKSLASH_REGEX, '/')
+}
+
+const ABSOLUTE_PATH_REGEX = /^(?:\/|(?:[A-Z]:)?[/\\|])/i
+function isAbsolute(path: string): boolean {
+ return ABSOLUTE_PATH_REGEX.test(path)
+}
+
+const FALLBACK_TRUE = 1
+const FALLBACK_FALSE = 0
+type FallbackValues = typeof FALLBACK_TRUE | typeof FALLBACK_FALSE
+type PluginFilterWithFallback = (input: string) => boolean | FallbackValues
+
+export type PluginFilter = (input: string) => boolean
+export type TransformHookFilter = (id: string, code: string) => boolean
+
+interface NormalizedStringFilter {
+ include?: StringOrRegExp[]
+ exclude?: StringOrRegExp[]
+}
+
+function getMatcherString(glob: string, cwd: string) {
+ if (glob.startsWith('**') || isAbsolute(glob)) {
+ return normalize(glob)
+ }
+
+ const resolved = resolve(cwd, glob)
+ return normalize(resolved)
+}
+
+function patternToIdFilter(pattern: StringOrRegExp): PluginFilter {
+ if (pattern instanceof RegExp) {
+ return (id: string) => {
+ const normalizedId = normalize(id)
+ const result = pattern.test(normalizedId)
+ pattern.lastIndex = 0
+ return result
+ }
+ }
+ const cwd = process.cwd()
+ const glob = getMatcherString(pattern, cwd)
+ const matcher = picomatch(glob, { dot: true })
+ return (id: string) => {
+ const normalizedId = normalize(id)
+ return matcher(normalizedId)
+ }
+}
+
+function patternToCodeFilter(pattern: StringOrRegExp): PluginFilter {
+ if (pattern instanceof RegExp) {
+ return (code: string) => {
+ const result = pattern.test(code)
+ pattern.lastIndex = 0
+ return result
+ }
+ }
+ return (code: string) => code.includes(pattern)
+}
+
+function createFilter(
+ exclude: PluginFilter[] | undefined,
+ include: PluginFilter[] | undefined,
+): PluginFilterWithFallback | undefined {
+ if (!exclude && !include) {
+ return
+ }
+
+ return (input) => {
+ if (exclude?.some(filter => filter(input))) {
+ return false
+ }
+ if (include?.some(filter => filter(input))) {
+ return true
+ }
+ return !!include && include.length > 0 ? FALLBACK_FALSE : FALLBACK_TRUE
+ }
+}
+
+function normalizeFilter(filter: StringFilter): NormalizedStringFilter {
+ if (typeof filter === 'string' || filter instanceof RegExp) {
+ return {
+ include: [filter],
+ }
+ }
+ if (Array.isArray(filter)) {
+ return {
+ include: toArray(filter),
+ }
+ }
+ return {
+ exclude: filter.exclude ? toArray(filter.exclude) : undefined,
+ include: filter.include ? toArray(filter.include) : undefined,
+ }
+}
+
+function createIdFilter(filter: StringFilter | undefined): PluginFilterWithFallback | undefined {
+ if (!filter)
+ return
+ const { exclude, include } = normalizeFilter(filter)
+ const excludeFilter = exclude?.map(patternToIdFilter)
+ const includeFilter = include?.map(patternToIdFilter)
+ return createFilter(excludeFilter, includeFilter)
+}
+
+function createCodeFilter(filter: StringFilter | undefined): PluginFilterWithFallback | undefined {
+ if (!filter)
+ return
+ const { exclude, include } = normalizeFilter(filter)
+ const excludeFilter = exclude?.map(patternToCodeFilter)
+ const includeFilter = include?.map(patternToCodeFilter)
+ return createFilter(excludeFilter, includeFilter)
+}
+
+function createFilterForId(filter: StringFilter | undefined): PluginFilter | undefined {
+ const filterFunction = createIdFilter(filter)
+ return filterFunction ? id => !!filterFunction(id) : undefined
+}
+
+function createFilterForTransform(
+ idFilter: StringFilter | undefined,
+ codeFilter: StringFilter | undefined,
+): TransformHookFilter | undefined {
+ if (!idFilter && !codeFilter)
+ return
+ const idFilterFunction = createIdFilter(idFilter)
+ const codeFilterFunction = createCodeFilter(codeFilter)
+ return (id, code) => {
+ let fallback = true
+ if (idFilterFunction) {
+ const idResult = idFilterFunction(id)
+ if (typeof idResult === 'boolean') {
+ return idResult
+ }
+ fallback &&= !!idResult
+ }
+ if (codeFilterFunction) {
+ const codeResult = codeFilterFunction(code)
+ if (typeof codeResult === 'boolean') {
+ return codeResult
+ }
+ fallback &&= !!codeResult
+ }
+ return fallback
+ }
+}
+
+export function normalizeObjectHook any, F extends keyof HookFilter>(
+ name: 'resolveId' | 'load',
+ hook: Hook,
+): { handler: T, filter: PluginFilter }
+export function normalizeObjectHook any, F extends keyof HookFilter>(
+ name: 'transform',
+ hook: Hook,
+): { handler: T, filter: TransformHookFilter }
+export function normalizeObjectHook any, F extends keyof HookFilter>(
+ name: 'resolveId' | 'load' | 'transform',
+ hook: Hook,
+): {
+ handler: T
+ filter: PluginFilter | TransformHookFilter
+ } {
+ let handler: T
+ let filter: PluginFilter | TransformHookFilter | undefined
+
+ if (typeof hook === 'function') {
+ handler = hook
+ }
+ else {
+ handler = hook.handler
+ const hookFilter = hook.filter as HookFilter | undefined
+ if (name === 'resolveId' || name === 'load') {
+ filter = createFilterForId(hookFilter?.id)
+ }
+ else {
+ filter = createFilterForTransform(hookFilter?.id, hookFilter?.code)
+ }
+ }
+
+ return {
+ handler,
+ filter: filter || (() => true),
+ }
+}
diff --git a/src/utils/webpack-like.ts b/src/utils/webpack-like.ts
index 7074d554..3e09f4b8 100644
--- a/src/utils/webpack-like.ts
+++ b/src/utils/webpack-like.ts
@@ -1,6 +1,7 @@
import type { RuleSetUseItem } from '@rspack/core'
import type { ResolvedUnpluginOptions } from '../types'
import { isAbsolute, normalize } from 'node:path'
+import { normalizeObjectHook } from './filter'
export function transformUse(
data: { resource?: string, resourceQuery?: string },
@@ -11,16 +12,25 @@ export function transformUse(
return []
const id = normalizeAbsolutePath(data.resource + (data.resourceQuery || ''))
- if (!plugin.transformInclude || plugin.transformInclude(id)) {
- return [
- {
- loader: transformLoader,
- options: { plugin },
- ident: plugin.name,
- },
- ]
- }
- return []
+ if (plugin.transformInclude && !plugin.transformInclude(id))
+ return []
+
+ const { filter } = normalizeObjectHook(
+ // WARN: treat `transform` as `load` here, since cannot get `code` outside of `transform`
+ // `code` should be checked in the loader
+ 'load',
+ plugin.transform!,
+ )
+ if (!filter(id))
+ return []
+
+ return [
+ {
+ loader: transformLoader,
+ options: { plugin },
+ ident: plugin.name,
+ },
+ ]
}
/**
diff --git a/src/webpack/index.ts b/src/webpack/index.ts
index a48b7e0b..0454276c 100644
--- a/src/webpack/index.ts
+++ b/src/webpack/index.ts
@@ -4,6 +4,7 @@ import fs from 'node:fs'
import { resolve } from 'node:path'
import process from 'node:process'
import VirtualModulesPlugin from 'webpack-virtual-modules'
+import { normalizeObjectHook } from '../utils/filter'
import { toArray } from '../utils/general'
import { normalizeAbsolutePath, transformUse } from '../utils/webpack-like'
import { contextOptionsFromCompilation, createBuildContext, normalizeMessage } from './context'
@@ -104,7 +105,12 @@ export function getWebpackPlugin>(
console.warn(`unplugin/webpack: warning from resolveId hook: ${msg}`)
},
}
- const resolveIdResult = await plugin.resolveId!.call!({ ...context, ...pluginContext }, id, importer, { isEntry })
+
+ const { handler, filter } = normalizeObjectHook('resolveId', plugin.resolveId!)
+ if (!filter(id))
+ return callback()
+
+ const resolveIdResult = await handler.call!({ ...context, ...pluginContext }, id, importer, { isEntry })
if (error != null)
return callback(error)
@@ -227,6 +233,10 @@ export function shouldLoad(id: string, plugin: ResolvedUnpluginOptions, external
if (plugin.loadInclude && !plugin.loadInclude(id))
return false
+ const { filter } = normalizeObjectHook('load', plugin.load!)
+ if (!filter(id))
+ return false
+
// Don't run load hook for external modules
return !externalModules.has(id)
}
diff --git a/src/webpack/loaders/load.ts b/src/webpack/loaders/load.ts
index 780c3c7f..e2fd10fa 100644
--- a/src/webpack/loaders/load.ts
+++ b/src/webpack/loaders/load.ts
@@ -1,5 +1,6 @@
import type { LoaderContext } from 'webpack'
import type { ResolvedUnpluginOptions } from '../../types'
+import { normalizeObjectHook } from '../../utils/filter'
import { normalizeAbsolutePath } from '../../utils/webpack-like'
import { createBuildContext, createContext } from '../context'
@@ -15,7 +16,8 @@ export default async function load(this: LoaderContext, source: string, map
id = decodeURIComponent(id.slice(plugin.__virtualModulePrefix.length))
const context = createContext(this)
- const res = await plugin.load.call(
+ const { handler } = normalizeObjectHook('load', plugin.load)
+ const res = await handler.call(
Object.assign({}, createBuildContext({
addWatchFile: (file) => {
this.addDependency(file)
diff --git a/src/webpack/loaders/transform.ts b/src/webpack/loaders/transform.ts
index 9325f83a..2c2e1f33 100644
--- a/src/webpack/loaders/transform.ts
+++ b/src/webpack/loaders/transform.ts
@@ -1,5 +1,6 @@
import type { LoaderContext } from 'webpack'
import type { ResolvedUnpluginOptions } from '../../types'
+import { normalizeObjectHook } from '../../utils/filter'
import { createBuildContext, createContext } from '../context'
export default async function transform(this: LoaderContext, source: string, map: any): Promise {
@@ -10,9 +11,12 @@ export default async function transform(this: LoaderContext, source: string
return callback(null, source, map)
const context = createContext(this)
+ const { handler, filter } = normalizeObjectHook('transform', plugin.transform)
+ if (!filter(this.resource, source))
+ return callback(null, source, map)
try {
- const res = await plugin.transform.call(
+ const res = await handler.call(
Object.assign({}, createBuildContext({
addWatchFile: (file) => {
this.addDependency(file)
diff --git a/test/unit-tests/esbuild/utils.test.ts b/test/unit-tests/esbuild/utils.test.ts
new file mode 100644
index 00000000..5aa43303
--- /dev/null
+++ b/test/unit-tests/esbuild/utils.test.ts
@@ -0,0 +1,216 @@
+import { Buffer } from 'node:buffer'
+import { describe, expect, it, vi } from 'vitest'
+import {
+ combineSourcemaps,
+ createPluginContext,
+ fixSourceMap,
+ guessLoader,
+ processCodeWithSourceMap,
+ unwrapLoader,
+} from '../../../src/esbuild/utils'
+
+describe('utils', () => {
+ describe('guessLoader', () => {
+ it('should return expected', () => {
+ const actual = guessLoader('js', 'test.js')
+ expect(actual).toEqual('js')
+ })
+ })
+
+ describe('unwrapLoader', () => {
+ it('when loader is Loader, should return expected', () => {
+ const actual = unwrapLoader('base64', 'code', 'id')
+ expect(actual).toEqual('base64')
+ })
+ it('when loader is function, should return expected', () => {
+ const loader = vi.fn().mockReturnValue('base64')
+ const actual = unwrapLoader(loader, 'code', 'id')
+
+ expect(loader).toHaveBeenCalledOnce()
+ expect(loader).toHaveBeenCalledWith('code', 'id')
+ expect(actual).toEqual('base64')
+ })
+ })
+
+ describe('fixSourceMap', () => {
+ it('when encodedSourceMap does not has toString() and toUrl(), should return expected', () => {
+ const actual = fixSourceMap({
+ mappings: '',
+ names: [],
+ sources: [],
+ version: 3,
+ })
+ expect(actual.toString).toBeInstanceOf(Function)
+ expect(actual.toUrl).toBeInstanceOf(Function)
+
+ const actualString = actual.toString()
+ expect(actualString).toEqual(JSON.stringify(actual))
+
+ const actualUrl = actual.toUrl()
+ expect(actualUrl).toEqual(
+ `data:application/json;charset=utf-8;base64,${Buffer.from(actualString).toString('base64')}`,
+ )
+ })
+ })
+
+ describe('combineSourcemaps', () => {
+ it('when combineSourcemaps is empty, should return expected', () => {
+ const actual = combineSourcemaps('filename', [])
+ expect(actual).toEqual({
+ names: [],
+ sources: [],
+ mappings: '',
+ version: 3,
+ })
+ })
+
+ it('when combineSourcemaps has sources, should return expected', () => {
+ const actual = combineSourcemaps('filename', [
+ {
+ names: [],
+ sources: ['source1'],
+ mappings: 'AAAA',
+ version: 3,
+ },
+ {
+ names: [],
+ sources: ['source2'],
+ mappings: 'AAAA',
+ version: 3,
+ },
+ ])
+ expect(actual).toEqual({
+ names: [],
+ ignoreList: [],
+ sourceRoot: undefined,
+ sources: ['source2'],
+ mappings: 'AAAA',
+ version: 3,
+ })
+ })
+
+ it('when combineSourcemaps not use array interface, should return expected', () => {
+ const actual = combineSourcemaps('filename', [
+ {
+ names: [],
+ sources: ['source1', 'source2'],
+ mappings: 'AAAA',
+ version: 3,
+ },
+ {
+ names: [],
+ sources: [],
+ mappings: '',
+ version: 3,
+ },
+ ])
+ expect(actual).toEqual({
+ ignoreList: [],
+ sourceRoot: undefined,
+ names: [],
+ sources: [],
+ mappings: '',
+ version: 3,
+ })
+ })
+ })
+
+ describe('createBuildContext', async () => {
+ it('should return expected', async () => {
+ const { createBuildContext } = await import('../../../src/esbuild/utils')
+ const actual = createBuildContext({ initialOptions: { outdir: '/path/to' } } as any)
+ expect(actual.parse).toBeInstanceOf(Function)
+ expect(actual.emitFile).toBeInstanceOf(Function)
+ expect(actual.addWatchFile).toBeInstanceOf(Function)
+ expect(actual.getNativeBuildContext).toBeInstanceOf(Function)
+
+ expect(actual.getNativeBuildContext!()).toEqual({
+ framework: 'esbuild',
+ build: { initialOptions: { outdir: '/path/to' } },
+ })
+ expect(() => actual.addWatchFile('id')).toThrow(
+ 'unplugin/esbuild: addWatchFile outside supported hooks (resolveId, load, transform)',
+ )
+ })
+ })
+
+ describe('createPluginContext', () => {
+ it('should return expected', () => {
+ const watchFiles: any = []
+ const actual = createPluginContext({ getWatchFiles: () => watchFiles } as any)
+ expect(actual.errors).toBeInstanceOf(Array)
+ expect(actual.warnings).toBeInstanceOf(Array)
+ expect(actual.mixedContext).toBeInstanceOf(Object)
+ expect(actual.mixedContext.addWatchFile).toBeInstanceOf(Function)
+ expect(actual.mixedContext.error).toBeInstanceOf(Function)
+ expect(actual.mixedContext.warn).toBeInstanceOf(Function)
+
+ actual.mixedContext.addWatchFile('id')
+ expect(watchFiles).toContain('id')
+
+ actual.mixedContext.error('error')
+ expect(actual.errors).toHaveLength(1)
+ expect(actual.errors[0].text).toEqual('error')
+ actual.mixedContext.warn('warn')
+ expect(actual.warnings).toHaveLength(1)
+ expect(actual.warnings[0].text).toEqual('warn')
+
+ actual.mixedContext.error({
+ id: '1',
+ message: 'message',
+ stack: 'stack',
+ code: 'code',
+ plugin: 'plugin',
+ loc: {
+ column: 2,
+ file: 'file',
+ line: 2,
+ },
+ meta: 'meta',
+ })
+ expect(actual.errors).toHaveLength(2)
+ expect(actual.errors[1]).toEqual({
+ id: '1',
+ pluginName: 'plugin',
+ text: 'message',
+ location: {
+ file: 'file',
+ line: 2,
+ column: 2,
+ },
+ detail: 'meta',
+ notes: [],
+ })
+
+ actual.mixedContext.warn({
+ id: '2',
+ message: 'message',
+ stack: 'stack',
+ code: 'code',
+ plugin: 'plugin',
+ meta: 'meta',
+ })
+ expect(actual.warnings).toHaveLength(2)
+ expect(actual.warnings[1]).toEqual({
+ id: '2',
+ pluginName: 'plugin',
+ text: 'message',
+ location: null,
+ detail: 'meta',
+ notes: [],
+ })
+ })
+ })
+
+ describe('processCodeWithSourceMap', () => {
+ it('when map is null, should return expected', () => {
+ const actual = processCodeWithSourceMap(null, 'code')
+ expect(actual).toEqual('code')
+ })
+
+ it('when map is not null, should return expected', () => {
+ const actual = processCodeWithSourceMap({ file: 'file', names: ['name'], sources: ['source'], sourcesContent: ['content'], version: 0 } as any, 'code')
+ expect(actual).toEqual('code\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJmaWxlIjoiZmlsZSIsIm5hbWVzIjpbIm5hbWUiXSwic291cmNlcyI6WyJzb3VyY2UiXSwic291cmNlc0NvbnRlbnQiOlsiY29udGVudCJdLCJ2ZXJzaW9uIjowfQ==')
+ })
+ })
+})
diff --git a/test/unit-tests/filter/filter.test.ts b/test/unit-tests/filter/filter.test.ts
new file mode 100644
index 00000000..0281079f
--- /dev/null
+++ b/test/unit-tests/filter/filter.test.ts
@@ -0,0 +1,172 @@
+import type { UnpluginOptions, VitePlugin } from 'unplugin'
+import type { Mock } from 'vitest'
+import * as path from 'node:path'
+import { createUnplugin } from 'unplugin'
+import { afterEach, describe, expect, it, vi } from 'vitest'
+import { build, toArray } from '../utils'
+
+function createUnpluginWithHooks(
+ resolveId: UnpluginOptions['resolveId'],
+ load: UnpluginOptions['load'],
+ transform: UnpluginOptions['transform'],
+) {
+ return createUnplugin(() => ({
+ name: 'test-plugin',
+ resolveId,
+ load,
+ transform,
+ }))
+}
+
+function createIdHook() {
+ const handler = vi.fn()
+ return {
+ hook: {
+ filter: {
+ id: { include: [/\.js$/], exclude: ['**/entry.js', /not-expect/] },
+ },
+ handler,
+ },
+ handler,
+ }
+}
+
+function createTransformHook() {
+ const handler = vi.fn()
+ return {
+ hook: {
+ filter: {
+ id: { include: [/\.js$/], exclude: ['**/entry.js', /not-expect/] },
+ code: { include: '42' },
+ },
+ handler,
+ },
+ handler,
+ }
+}
+
+function check(resolveIdHandler: Mock, loadHandler: Mock, transformHandler: Mock): void {
+ expect(resolveIdHandler).toBeCalledTimes(1)
+ expect(loadHandler).toBeCalledTimes(1)
+ expect(transformHandler).toBeCalledTimes(1)
+
+ const testName = expect.getState().currentTestName
+ const hasExtraOptions = testName?.includes('vite') || testName?.includes('rolldown')
+
+ expect(transformHandler).lastCalledWith(
+ expect.stringMatching('export default 42'),
+ expect.stringMatching(/\bmod\.js$/),
+ ...hasExtraOptions ? [expect.anything()] : [],
+ )
+}
+
+describe('filter', () => {
+ afterEach(() => {
+ vi.restoreAllMocks()
+ })
+
+ it('vite', async () => {
+ const { hook: resolveId, handler: resolveIdHandler } = createIdHook()
+ const { hook: load, handler: loadHandler } = createIdHook()
+ const { hook: transform, handler: transformHandler } = createTransformHook()
+ const plugin = createUnpluginWithHooks(resolveId, load, transform).vite
+ // we need to define `enforce` here for the plugin to be run
+ const plugins = toArray(plugin()).map((plugin): VitePlugin => ({ ...plugin, enforce: 'pre' }))
+
+ await build.vite({
+ clearScreen: false,
+ plugins: [plugins],
+ build: {
+ lib: {
+ entry: path.resolve(__dirname, 'test-src/entry.js'),
+ name: 'TestLib',
+ },
+ write: false, // don't output anything
+ },
+ })
+
+ check(resolveIdHandler, loadHandler, transformHandler)
+ })
+
+ it('rollup', async () => {
+ const { hook: resolveId, handler: resolveIdHandler } = createIdHook()
+ const { hook: load, handler: loadHandler } = createIdHook()
+ const { hook: transform, handler: transformHandler } = createTransformHook()
+ const plugin = createUnpluginWithHooks(resolveId, load, transform).rollup
+
+ await build.rollup({
+ input: path.resolve(__dirname, 'test-src/entry.js'),
+ plugins: [plugin()],
+ })
+
+ check(resolveIdHandler, loadHandler, transformHandler)
+ })
+
+ it('rolldown', async () => {
+ const { hook: resolveId, handler: resolveIdHandler } = createIdHook()
+ const { hook: load, handler: loadHandler } = createIdHook()
+ const { hook: transform, handler: transformHandler } = createTransformHook()
+ const plugin = createUnpluginWithHooks(resolveId, load, transform).rolldown
+
+ await build.rolldown({
+ input: path.resolve(__dirname, 'test-src/entry.js'),
+ plugins: [plugin()],
+ })
+
+ check(resolveIdHandler, loadHandler, transformHandler)
+ })
+
+ it('webpack', async () => {
+ const { hook: resolveId, handler: resolveIdHandler } = createIdHook()
+ const { hook: load, handler: loadHandler } = createIdHook()
+ const { hook: transform, handler: transformHandler } = createTransformHook()
+ const plugin = createUnpluginWithHooks(resolveId, load, transform).webpack
+
+ await new Promise((resolve) => {
+ build.webpack(
+ {
+ entry: path.resolve(__dirname, 'test-src/entry.js'),
+ plugins: [plugin()],
+ },
+ resolve,
+ )
+ })
+
+ check(resolveIdHandler, loadHandler, transformHandler)
+ })
+
+ it('rspack', async () => {
+ const { hook: resolveId, handler: resolveIdHandler } = createIdHook()
+ const { hook: load, handler: loadHandler } = createIdHook()
+ const { hook: transform, handler: transformHandler } = createTransformHook()
+ const plugin = createUnpluginWithHooks(resolveId, load, transform).rspack
+
+ await new Promise((resolve) => {
+ build.rspack(
+ {
+ entry: path.resolve(__dirname, 'test-src/entry.js'),
+ plugins: [plugin()],
+ },
+ resolve,
+ )
+ })
+
+ check(resolveIdHandler, loadHandler, transformHandler)
+ })
+
+ it('esbuild', async () => {
+ const { hook: resolveId, handler: resolveIdHandler } = createIdHook()
+ const { hook: load, handler: loadHandler } = createIdHook()
+ const { hook: transform, handler: transformHandler } = createTransformHook()
+ const plugin = createUnpluginWithHooks(resolveId, load, transform).esbuild
+
+ await build.esbuild({
+ entryPoints: [path.resolve(__dirname, 'test-src/entry.js')],
+ plugins: [plugin()],
+ bundle: true, // actually traverse imports
+ write: false, // don't pollute console
+ })
+
+ check(resolveIdHandler, loadHandler, transformHandler)
+ })
+})
diff --git a/test/unit-tests/filter/test-src/entry.js b/test/unit-tests/filter/test-src/entry.js
new file mode 100644
index 00000000..8b3f8761
--- /dev/null
+++ b/test/unit-tests/filter/test-src/entry.js
@@ -0,0 +1,5 @@
+import mod from './mod.js'
+import val from './not-expect.js'
+
+export const hello = mod
+export default val
diff --git a/test/unit-tests/filter/test-src/mod.js b/test/unit-tests/filter/test-src/mod.js
new file mode 100644
index 00000000..02f8a326
--- /dev/null
+++ b/test/unit-tests/filter/test-src/mod.js
@@ -0,0 +1 @@
+export default 42
diff --git a/test/unit-tests/filter/test-src/not-expect.js b/test/unit-tests/filter/test-src/not-expect.js
new file mode 100644
index 00000000..7e942cf4
--- /dev/null
+++ b/test/unit-tests/filter/test-src/not-expect.js
@@ -0,0 +1 @@
+export default 'foo'
diff --git a/test/unit-tests/rolldown/index.test.ts b/test/unit-tests/rolldown/index.test.ts
new file mode 100644
index 00000000..0c7aecb5
--- /dev/null
+++ b/test/unit-tests/rolldown/index.test.ts
@@ -0,0 +1,33 @@
+import type { RolldownPlugin } from '../../../src/types'
+import { describe, expect, it, vi } from 'vitest'
+import { getRolldownPlugin } from '../../../src/rolldown/index'
+
+describe('getRolldownPlugin', () => {
+ it('should return a function', () => {
+ const factory = vi.fn()
+ const plugin = getRolldownPlugin(factory)
+ expect(typeof plugin).toBe('function')
+ })
+
+ it('should call the factory function with the correct arguments', () => {
+ const factory = vi.fn()
+ const plugin = getRolldownPlugin(factory)
+ plugin({ foo: 'bar' })
+ expect(factory).toHaveBeenCalledWith({ foo: 'bar' }, { framework: 'rolldown' })
+ })
+
+ it('should return an array of plugins if multiple plugins are returned', () => {
+ const factory = vi.fn(() => [() => {}, () => {}])
+ const plugin = getRolldownPlugin(factory)
+ const result = plugin({}) as RolldownPlugin[]
+ expect(Array.isArray(result)).toBe(true)
+ expect(result.length).toBe(2)
+ })
+
+ it('should return a single plugin if only one is returned', () => {
+ const factory = vi.fn(() => () => {})
+ const plugin = getRolldownPlugin(factory)
+ const result = plugin({})
+ expect(typeof result).toBe('function')
+ })
+})
diff --git a/test/unit-tests/unloader/index.test.ts b/test/unit-tests/unloader/index.test.ts
new file mode 100644
index 00000000..3c8a6e75
--- /dev/null
+++ b/test/unit-tests/unloader/index.test.ts
@@ -0,0 +1,33 @@
+import type { UnloaderPlugin } from '../../../src/types'
+import { describe, expect, it, vi } from 'vitest'
+import { getUnloaderPlugin } from '../../../src/unloader/index'
+
+describe('getUnloaderPlugin', () => {
+ it('should return a function', () => {
+ const factory = vi.fn()
+ const plugin = getUnloaderPlugin(factory)
+ expect(typeof plugin).toBe('function')
+ })
+
+ it('should call the factory function with the correct arguments', () => {
+ const factory = vi.fn()
+ const plugin = getUnloaderPlugin(factory)
+ plugin({ foo: 'bar' })
+ expect(factory).toHaveBeenCalledWith({ foo: 'bar' }, { framework: 'unloader' })
+ })
+
+ it('should return an array of plugins if multiple plugins are returned', () => {
+ const factory = vi.fn(() => [() => {}, () => {}])
+ const plugin = getUnloaderPlugin(factory)
+ const result = plugin({}) as UnloaderPlugin[]
+ expect(Array.isArray(result)).toBe(true)
+ expect(result.length).toBe(2)
+ })
+
+ it('should return a single plugin if only one is returned', () => {
+ const factory = vi.fn(() => () => {})
+ const plugin = getUnloaderPlugin(factory)
+ const result = plugin({})
+ expect(typeof result).toBe('function')
+ })
+})
diff --git a/test/unit-tests/utils.ts b/test/unit-tests/utils.ts
index 8d91c860..dfa6e26b 100644
--- a/test/unit-tests/utils.ts
+++ b/test/unit-tests/utils.ts
@@ -1,5 +1,6 @@
import * as rspack from '@rspack/core'
import * as esbuild from 'esbuild'
+import * as rolldown from 'rolldown'
import * as rollup from 'rollup'
import * as vite from 'vite'
import * as webpack from 'webpack'
@@ -8,6 +9,7 @@ export * from '../../src/utils/general'
export const viteBuild: typeof vite.build = vite.build
export const rollupBuild: typeof rollup.rollup = rollup.rollup
+export const rolldownBuild: typeof rolldown.build = rolldown.build
export const esbuildBuild: typeof esbuild.build = esbuild.build
export const webpackBuild: typeof webpack.webpack = webpack.webpack || (webpack as any).default || webpack
export const rspackBuild: typeof rspack.rspack = rspack.rspack
@@ -18,12 +20,14 @@ export const build: {
webpack: typeof webpack.webpack
rspack: typeof rspackBuild
rollup: typeof rollupBuild
+ rolldown: typeof rolldownBuild
vite: typeof viteBuild
esbuild: typeof esbuildBuild
} = {
webpack: webpackBuild,
rspack: rspackBuild,
rollup: rollupBuild,
+ rolldown: rolldownBuild,
vite(config) {
return viteBuild(vite.mergeConfig(config || {}, {
build: {
diff --git a/test/unit-tests/utils/context.test.ts b/test/unit-tests/utils/context.test.ts
new file mode 100644
index 00000000..469b7ae8
--- /dev/null
+++ b/test/unit-tests/utils/context.test.ts
@@ -0,0 +1,22 @@
+import { describe, expect, it } from 'vitest'
+import { parse } from '../../../src/utils/context'
+
+describe('parse', () => {
+ it('should parse valid JavaScript code', () => {
+ const code = 'const x = 42;'
+ const result = parse(code)
+ expect(result).toBeDefined()
+ })
+
+ it('should throw an error for invalid JavaScript code', () => {
+ const code = 'const x = ;'
+ expect(() => parse(code)).toThrow()
+ })
+
+ it('should accept custom options', () => {
+ const code = 'const x = 42;'
+ const opts = { ecmaVersion: 2020 }
+ const result = parse(code, opts)
+ expect(result).toBeDefined()
+ })
+})
diff --git a/vitest.config.ts b/vitest.config.ts
index eca76fee..7526cc88 100644
--- a/vitest.config.ts
+++ b/vitest.config.ts
@@ -1,5 +1,5 @@
import { resolve } from 'node:path'
-import { defineConfig } from 'vite'
+import { defineConfig } from 'vitest/config'
export default defineConfig({
define: {
@@ -10,4 +10,10 @@ export default defineConfig({
unplugin: resolve('src/index.ts'),
},
},
+ test: {
+ coverage: {
+ reporter: ['text', 'json', 'html'],
+ include: ['src/**/*.{ts,tsx}'],
+ },
+ },
})