diff --git a/README.md b/README.md
index 1ac236f..b056cc9 100644
--- a/README.md
+++ b/README.md
@@ -198,6 +198,10 @@ declared in `contributes.hooks` with a role:
| `afterComplete` | File finalized on disk | Side effects: notify, post-process, hand off |
| `onError` | A task failed | Inspect `error.code`/`error.message`, log or notify |
+Post-hooks receive `ctx.delivery`: its `id` remains stable across retries of
+the same delivery, while `ctx.invocationId` identifies the current attempt.
+Plugins can use the stable id for idempotent external side effects.
+
Roles order execution across plugins within a hook:
`resolve` → `enrich` → `post-process` → `audit`. Two are category-gated:
`resolve` requires the `site-resolver` category, `post-process` requires
diff --git a/README.zh-CN.md b/README.zh-CN.md
index 527961a..7d9bd04 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -191,6 +191,9 @@ Hook 就是下载的生命周期。代码里实现的每个 hook 都要同时在
| `afterComplete` | 文件已落盘 | 副作用:通知、后处理、交接 |
| `onError` | 任务失败 | 读取 `error.code`/`error.message`,记日志或通知 |
+Post-hook 会收到 `ctx.delivery`:同一次投递发生重试时,`id` 保持稳定;
+`ctx.invocationId` 则标识当前这一次尝试。插件可以用稳定 id 保证外部副作用幂等。
+
Role 决定同一 hook 上多个插件的执行顺序:
`resolve` → `enrich` → `post-process` → `audit`。其中两个与 category
挂钩:`resolve` 要求 `site-resolver` category,`post-process` 要求
diff --git a/biome.json b/biome.json
index f96f7ce..78c2461 100644
--- a/biome.json
+++ b/biome.json
@@ -1,5 +1,5 @@
{
- "$schema": "https://biomejs.dev/schemas/2.5.4/schema.json",
+ "$schema": "https://biomejs.dev/schemas/2.5.11/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
diff --git a/package.json b/package.json
index 3ad512d..2a5f50d 100644
--- a/package.json
+++ b/package.json
@@ -5,7 +5,7 @@
"engines": {
"node": ">=20"
},
- "packageManager": "pnpm@11.13.0",
+ "packageManager": "pnpm@11.22.0",
"scripts": {
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
@@ -14,6 +14,6 @@
"check:facade": "node scripts/check-facade.mjs"
},
"devDependencies": {
- "@biomejs/biome": "^2.5.4"
+ "@biomejs/biome": "^2.5.11"
}
}
diff --git a/packages/create-motrix-plugin/package.json b/packages/create-motrix-plugin/package.json
index 0c948d5..28141ea 100644
--- a/packages/create-motrix-plugin/package.json
+++ b/packages/create-motrix-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "create-motrix-plugin",
- "version": "2.0.0",
+ "version": "2.0.1",
"description": "Scaffold a new Motrix plugin project — `pnpm create motrix-plugin`",
"type": "module",
"bin": "bin/create.mjs",
diff --git a/packages/plugin-api/README.md b/packages/plugin-api/README.md
index 8445909..6bb0c46 100644
--- a/packages/plugin-api/README.md
+++ b/packages/plugin-api/README.md
@@ -37,6 +37,24 @@ hooks.beforeCreate(async (ctx) => {
})
```
+## Stable post-hook delivery identity
+
+Since 2.1, `afterComplete` and `onError` receive a durable delivery envelope:
+
+```ts
+hooks.afterComplete(async (ctx) => {
+ log.info('download finalized', {
+ deliveryId: ctx.delivery.id,
+ occurrenceId: ctx.delivery.occurrenceId,
+ filePath: ctx.filePath,
+ })
+})
+```
+
+`ctx.delivery.id` remains stable when Motrix retries the same delivery, while
+`ctx.invocationId` identifies the individual attempt. Retry counters, lease
+state, and scheduler diagnostics are intentionally not exposed to plugins.
+
Make sure `src/virtual-module.d.ts` is visible to the TypeScript compiler.
Installing this package is enough — its `files` entry ships the `.d.ts`
alongside `dist`, and TypeScript picks up ambient module declarations from
diff --git a/packages/plugin-api/package.json b/packages/plugin-api/package.json
index bb33ff3..5f01287 100644
--- a/packages/plugin-api/package.json
+++ b/packages/plugin-api/package.json
@@ -1,6 +1,6 @@
{
"name": "@motrix/plugin-api",
- "version": "2.0.0",
+ "version": "2.1.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -18,13 +18,13 @@
},
"license": "MIT",
"scripts": {
- "build": "tsup",
+ "build": "tsup && tsc -p tsconfig.build.json && node scripts/finalize-types.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
- "tsup": "^8",
- "typescript": "^5.6",
- "vitest": "^3"
+ "tsup": "^8.5.1",
+ "typescript": "^7.0.2",
+ "vitest": "^4.1.11"
}
}
diff --git a/packages/plugin-api/scripts/finalize-types.mjs b/packages/plugin-api/scripts/finalize-types.mjs
new file mode 100644
index 0000000..705add8
--- /dev/null
+++ b/packages/plugin-api/scripts/finalize-types.mjs
@@ -0,0 +1,9 @@
+import { readFile, writeFile } from 'node:fs/promises'
+
+const declarationPath = new URL('../dist/index.d.ts', import.meta.url)
+const reference = '/// \n'
+const declaration = await readFile(declarationPath, 'utf8')
+
+if (!declaration.startsWith(reference)) {
+ await writeFile(declarationPath, `${reference}${declaration}`, 'utf8')
+}
diff --git a/packages/plugin-api/src/virtual-module.contract.ts b/packages/plugin-api/src/virtual-module.contract.ts
new file mode 100644
index 0000000..e50c1b3
--- /dev/null
+++ b/packages/plugin-api/src/virtual-module.contract.ts
@@ -0,0 +1,32 @@
+import type {
+ AfterCompleteContext,
+ DeliveryEnvelopeV1,
+ OnErrorContext,
+} from 'motrix:plugin-api'
+
+type Equal =
+ (() => Value extends Left ? 1 : 2) extends <
+ Value,
+ >() => Value extends Right ? 1 : 2
+ ? true
+ : false
+
+type Assert = Condition
+
+type AfterCompleteHandler = Parameters<
+ typeof import('motrix:plugin-api').hooks.afterComplete
+>[0]
+type OnErrorHandler = Parameters<
+ typeof import('motrix:plugin-api').hooks.onError
+>[0]
+
+type _AfterCompleteContext = Assert<
+ Equal[0], AfterCompleteContext>
+>
+type _OnErrorContext = Assert<
+ Equal[0], OnErrorContext>
+>
+type _StableDeliveryId = Assert>
+type _NoRetryAttemptLeak = Assert<
+ Equal<'attempt' extends keyof DeliveryEnvelopeV1 ? true : false, false>
+>
diff --git a/packages/plugin-api/src/virtual-module.d.ts b/packages/plugin-api/src/virtual-module.d.ts
index f879f18..0e20e8d 100644
--- a/packages/plugin-api/src/virtual-module.d.ts
+++ b/packages/plugin-api/src/virtual-module.d.ts
@@ -8,6 +8,9 @@ declare module 'motrix:plugin-api' {
| { [k: string]: JsonValue }
export interface HookCtxBase {
+ readonly schemaVersion: 1
+ readonly invocationId: string
+ readonly taskId: string
readonly sourceUrl: string
readonly createdBy: 'user' | 'protocol' | 'api'
readonly requestedAt: number
@@ -35,21 +38,80 @@ declare module 'motrix:plugin-api' {
}
export interface BeforeFinalizeContext extends HookCtxBase {
- readonly task: { id: string; filePath: string; saveDir: string }
+ readonly task: PluginTaskSnapshotV1
+ readonly inputFilePath: string
readonly filePath: string
+ readonly targetFilePath: string
update(patch: Partial<{ filePath: string }>): void
}
- export interface AfterCompleteContext {
- readonly task: { id: string; filePath: string; saveDir: string }
+ export interface ErrorDescriptorV1 {
+ readonly code: string
+ readonly message: string
+ readonly detailKey: string | null
+ readonly detailParams: Readonly> | null
+ }
+
+ export interface PluginTaskSnapshotV1 {
+ readonly schemaVersion: 1
+ readonly id: string
+ readonly name: string
+ readonly type: 'http' | 'ftp' | 'bt' | 'magnet' | 'metalink'
+ readonly kind: 'direct' | 'bt' | 'hls' | 'mux'
+ readonly status:
+ | 'queued'
+ | 'fetching_metadata'
+ | 'metadata_ready'
+ | 'downloading'
+ | 'finalizing'
+ | 'seeding'
+ | 'paused'
+ | 'completed'
+ | 'error'
+ | 'removed'
readonly filePath: string
- readonly metadata: ReadonlyPluginMetadata
+ readonly saveDir: string
+ readonly filename: string
+ readonly progress: number
+ readonly totalBytes: number
+ readonly downloadedBytes: number
+ readonly uploadedBytes: number
+ readonly sizeWhenDone: number
+ readonly fileCount: number
+ readonly createdAt: number
+ readonly updatedAt: number
+ readonly finishedAt: number | null
+ readonly category: string | null
+ readonly infoHash: string | null
+ readonly error: ErrorDescriptorV1 | null
+ }
+
+ export interface DeliveryEnvelopeV1 {
+ readonly schemaVersion: 1
+ /** Stable across retries of the same plugin delivery. */
+ readonly id: string
+ /** Identifies the task occurrence that created this delivery. */
+ readonly occurrenceId: string
+ /** Unix timestamp in milliseconds for the source occurrence. */
+ readonly occurredAt: number
}
- export interface OnErrorContext {
- readonly task: { id: string; filePath: string; saveDir: string }
- readonly error: { code: string; message: string }
+ export interface PostHookContextBase {
+ readonly schemaVersion: 1
+ /** Fresh for every delivery attempt. */
+ readonly invocationId: string
+ readonly taskId: string
+ readonly task: PluginTaskSnapshotV1
+ readonly filePath: string
+ readonly delivery: DeliveryEnvelopeV1
readonly metadata: ReadonlyPluginMetadata
+ readonly signal: AbortSignal
+ }
+
+ export interface AfterCompleteContext extends PostHookContextBase {}
+
+ export interface OnErrorContext extends PostHookContextBase {
+ readonly error: ErrorDescriptorV1
}
export interface PluginMetadata {
diff --git a/packages/plugin-api/tsconfig.build.json b/packages/plugin-api/tsconfig.build.json
new file mode 100644
index 0000000..7a74c78
--- /dev/null
+++ b/packages/plugin-api/tsconfig.build.json
@@ -0,0 +1,9 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "emitDeclarationOnly": true,
+ "rootDir": "src",
+ "outDir": "dist"
+ },
+ "exclude": ["src/virtual-module.contract.ts"]
+}
diff --git a/packages/plugin-api/tsup.config.ts b/packages/plugin-api/tsup.config.ts
index f3a77e4..83e0aa6 100644
--- a/packages/plugin-api/tsup.config.ts
+++ b/packages/plugin-api/tsup.config.ts
@@ -3,6 +3,5 @@ import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
- dts: { banner: '/// ' },
clean: true,
})
diff --git a/packages/plugin-cli/package.json b/packages/plugin-cli/package.json
index b6dfce4..1f61b60 100644
--- a/packages/plugin-cli/package.json
+++ b/packages/plugin-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@motrix/plugin-cli",
- "version": "2.1.0",
+ "version": "2.1.1",
"type": "module",
"bin": {
"motrix-plugin": "dist/bin/motrix-plugin.js",
@@ -24,17 +24,17 @@
"test": "vitest run"
},
"dependencies": {
- "chokidar": "^4",
- "commander": "^12",
- "esbuild": "^0.24",
- "yazl": "^2"
+ "chokidar": "^5.0.0",
+ "commander": "^15.0.0",
+ "esbuild": "^0.28.2",
+ "yazl": "^3.3.1"
},
"devDependencies": {
"@motrix/plugin-manifest-schema": "workspace:*",
"@types/node": "^24",
- "tsup": "^8",
- "typescript": "^5.6",
- "vitest": "^3",
- "zod": "^4"
+ "tsup": "^8.5.1",
+ "typescript": "^7.0.2",
+ "vitest": "^4.1.11",
+ "zod": "^4.5.4"
}
}
diff --git a/packages/plugin-cli/src/bin/motrix-plugin.ts b/packages/plugin-cli/src/bin/motrix-plugin.ts
index 00283b7..dc11d00 100644
--- a/packages/plugin-cli/src/bin/motrix-plugin.ts
+++ b/packages/plugin-cli/src/bin/motrix-plugin.ts
@@ -10,7 +10,7 @@ import { validateHostPermissions } from '../commands/validate-host-permissions'
const program = new Command()
.name('motrix-plugin')
.description('Motrix plugin developer tools')
- .version('2.1.0')
+ .version('2.1.1')
program
.command('init ')
diff --git a/packages/plugin-cli/src/commands/pack.ts b/packages/plugin-cli/src/commands/pack.ts
index 7eafe2d..e47633f 100644
--- a/packages/plugin-cli/src/commands/pack.ts
+++ b/packages/plugin-cli/src/commands/pack.ts
@@ -45,6 +45,7 @@ const ENTRY_MODE = 0o100644
interface YazlAddFileOptions {
mtime?: Date
mode?: number
+ forceDosTimestamp?: boolean
}
interface YazlZipFile {
@@ -152,7 +153,14 @@ export async function pack(opts: PackOptions): Promise {
yazl as { ZipFile: new () => YazlZipFile }
).ZipFile()
for (const { abs, rel } of entries) {
- z.addFile(abs, rel, { mtime: DOS_EPOCH, mode: ENTRY_MODE })
+ z.addFile(abs, rel, {
+ mtime: DOS_EPOCH,
+ mode: ENTRY_MODE,
+ // yazl >=3.3 adds an absolute Unix timestamp field by default. Its
+ // bytes vary with the timezone used to construct DOS_EPOCH, while the
+ // required DOS fields below are deliberately local-time normalized.
+ forceDosTimestamp: true,
+ })
}
z.end()
await new Promise((res, rej) => {
diff --git a/packages/plugin-cli/src/templates/basic-resolver/package.json.tpl b/packages/plugin-cli/src/templates/basic-resolver/package.json.tpl
index 514627d..2e34fb5 100644
--- a/packages/plugin-cli/src/templates/basic-resolver/package.json.tpl
+++ b/packages/plugin-cli/src/templates/basic-resolver/package.json.tpl
@@ -9,9 +9,9 @@
"dev": "motrix-plugin dev"
},
"devDependencies": {
- "@motrix/plugin-api": "^2.0.0",
- "@motrix/plugin-cli": "^2.0.0",
- "esbuild": "^0.24",
- "typescript": "^5.6"
+ "@motrix/plugin-api": "^2.1.0",
+ "@motrix/plugin-cli": "^2.1.1",
+ "esbuild": "^0.28.2",
+ "typescript": "^7.0.2"
}
}
diff --git a/packages/plugin-cli/src/templates/post-action/package.json.tpl b/packages/plugin-cli/src/templates/post-action/package.json.tpl
index 514627d..2e34fb5 100644
--- a/packages/plugin-cli/src/templates/post-action/package.json.tpl
+++ b/packages/plugin-cli/src/templates/post-action/package.json.tpl
@@ -9,9 +9,9 @@
"dev": "motrix-plugin dev"
},
"devDependencies": {
- "@motrix/plugin-api": "^2.0.0",
- "@motrix/plugin-cli": "^2.0.0",
- "esbuild": "^0.24",
- "typescript": "^5.6"
+ "@motrix/plugin-api": "^2.1.0",
+ "@motrix/plugin-cli": "^2.1.1",
+ "esbuild": "^0.28.2",
+ "typescript": "^7.0.2"
}
}
diff --git a/packages/plugin-cli/tests/init.test.ts b/packages/plugin-cli/tests/init.test.ts
index 893eb5e..f03e28b 100644
--- a/packages/plugin-cli/tests/init.test.ts
+++ b/packages/plugin-cli/tests/init.test.ts
@@ -84,6 +84,28 @@ describe('motrix-plugin init', () => {
expect(tplFiles).toHaveLength(0)
})
+ it.each(['basic-resolver', 'post-action'] as const)(
+ '%s: pins the current SDK and build-tool generations',
+ async (template) => {
+ const result = await init({
+ projectName: `dependency-${template}`,
+ template,
+ destDir,
+ publisher: 'alice',
+ })
+ const generatedPackage = JSON.parse(
+ readFileSync(path.join(result.created, 'package.json'), 'utf8')
+ )
+
+ expect(generatedPackage.devDependencies).toEqual({
+ '@motrix/plugin-api': '^2.1.0',
+ '@motrix/plugin-cli': '^2.1.1',
+ esbuild: '^0.28.2',
+ typescript: '^7.0.2',
+ })
+ }
+ )
+
it('template substitution: motrix-plugin.json has correct id and no unresolved vars', async () => {
const result = await init({
projectName: 'demo',
diff --git a/packages/plugin-cli/tsconfig.json b/packages/plugin-cli/tsconfig.json
index 65e48f6..0ac1883 100644
--- a/packages/plugin-cli/tsconfig.json
+++ b/packages/plugin-cli/tsconfig.json
@@ -4,6 +4,7 @@
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM"],
+ "types": ["node"],
"strict": true,
"declaration": true,
"esModuleInterop": true,
diff --git a/packages/plugin-manifest-schema/package.json b/packages/plugin-manifest-schema/package.json
index c748e5b..a2a1f59 100644
--- a/packages/plugin-manifest-schema/package.json
+++ b/packages/plugin-manifest-schema/package.json
@@ -1,6 +1,6 @@
{
"name": "@motrix/plugin-manifest-schema",
- "version": "2.1.0",
+ "version": "2.1.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -17,16 +17,16 @@
},
"license": "MIT",
"scripts": {
- "build": "tsup",
+ "build": "tsup && tsc --emitDeclarationOnly --rootDir src --outDir dist",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
- "zod": "^4"
+ "zod": "^4.5.4"
},
"devDependencies": {
- "tsup": "^8",
- "typescript": "^5.6",
- "vitest": "^3"
+ "tsup": "^8.5.1",
+ "typescript": "^7.0.2",
+ "vitest": "^4.1.11"
}
}
diff --git a/packages/plugin-manifest-schema/tsup.config.ts b/packages/plugin-manifest-schema/tsup.config.ts
index d383163..696e201 100644
--- a/packages/plugin-manifest-schema/tsup.config.ts
+++ b/packages/plugin-manifest-schema/tsup.config.ts
@@ -3,7 +3,6 @@ import { defineConfig } from 'tsup'
export default defineConfig({
entry: { index: 'src/index.ts' },
format: ['esm'],
- dts: true,
splitting: false,
clean: true,
target: 'node20',
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 72a7008..fb6f46f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,8 +9,8 @@ importers:
.:
devDependencies:
'@biomejs/biome':
- specifier: ^2.5.4
- version: 2.5.4
+ specifier: ^2.5.11
+ version: 2.5.11
packages/create-motrix-plugin:
dependencies:
@@ -21,29 +21,29 @@ importers:
packages/plugin-api:
devDependencies:
tsup:
- specifier: ^8
- version: 8.5.1(postcss@8.5.20)(typescript@5.9.3)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.20)(typescript@7.0.2)
typescript:
- specifier: ^5.6
- version: 5.9.3
+ specifier: ^7.0.2
+ version: 7.0.2
vitest:
- specifier: ^3
- version: 3.2.7(@types/node@24.13.3)
+ specifier: ^4.1.11
+ version: 4.1.11(@types/node@24.13.3)(vite@7.3.6(@types/node@24.13.3))
packages/plugin-cli:
dependencies:
chokidar:
- specifier: ^4
- version: 4.0.3
+ specifier: ^5.0.0
+ version: 5.0.0
commander:
- specifier: ^12
- version: 12.1.0
+ specifier: ^15.0.0
+ version: 15.0.0
esbuild:
- specifier: ^0.24
- version: 0.24.2
+ specifier: ^0.28.2
+ version: 0.28.2
yazl:
- specifier: ^2
- version: 2.5.1
+ specifier: ^3.3.1
+ version: 3.3.1
devDependencies:
'@motrix/plugin-manifest-schema':
specifier: workspace:*
@@ -52,99 +52,93 @@ importers:
specifier: ^24
version: 24.13.3
tsup:
- specifier: ^8
- version: 8.5.1(postcss@8.5.20)(typescript@5.9.3)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.20)(typescript@7.0.2)
typescript:
- specifier: ^5.6
- version: 5.9.3
+ specifier: ^7.0.2
+ version: 7.0.2
vitest:
- specifier: ^3
- version: 3.2.7(@types/node@24.13.3)
+ specifier: ^4.1.11
+ version: 4.1.11(@types/node@24.13.3)(vite@7.3.6(@types/node@24.13.3))
zod:
- specifier: ^4
- version: 4.4.3
+ specifier: ^4.5.4
+ version: 4.5.4
packages/plugin-manifest-schema:
dependencies:
zod:
- specifier: ^4
- version: 4.4.3
+ specifier: ^4.5.4
+ version: 4.5.4
devDependencies:
tsup:
- specifier: ^8
- version: 8.5.1(postcss@8.5.20)(typescript@5.9.3)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.20)(typescript@7.0.2)
typescript:
- specifier: ^5.6
- version: 5.9.3
+ specifier: ^7.0.2
+ version: 7.0.2
vitest:
- specifier: ^3
- version: 3.2.7(@types/node@24.13.3)
+ specifier: ^4.1.11
+ version: 4.1.11(@types/node@24.13.3)(vite@7.3.6(@types/node@24.13.3))
packages:
- '@biomejs/biome@2.5.4':
- resolution: {integrity: sha512-xy5FNE5kQJKyK5MR1gJy6ztXYx4WBAbYGlK04lMEgmyPRWKybY9NFwiG9yo0XdzOU8Xvhj41u034J1ywfoWfMw==}
+ '@biomejs/biome@2.5.11':
+ resolution: {integrity: sha512-Tj0dnkLPdW0ASjHfj2D/ZkkvPU2wrFmnE1jWTD2xzV1ycapV1DutbYXk4NDnR3rYTi1ZCbNFD4G2gRMEY65WaA==}
engines: {node: '>=14.21.3'}
hasBin: true
- '@biomejs/cli-darwin-arm64@2.5.4':
- resolution: {integrity: sha512-4o3NFRobXHynkgcFVrlZsoDAFtF2ldlEGN8sORSws5ZQqyY4PXnPUIylu4ksfyHuwkfvDREuWh3JK+niRwGq3w==}
+ '@biomejs/cli-darwin-arm64@2.5.11':
+ resolution: {integrity: sha512-6SGZxoKbXvUjMn1t6A98HqWISPnGNbYs0R/Rt2JarmXBSev+lva4QxUMWEBX9lX1Wo1XTJ78uk5xVDtG58SRZg==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
- '@biomejs/cli-darwin-x64@2.5.4':
- resolution: {integrity: sha512-D32P5HkU2Y6PySuC/WsVDTOgsDwVFmujzhhhOQjajtATpVWFDXuVd3oRbsWNSEA+aaFzyzZm22szsyydBYlSyQ==}
+ '@biomejs/cli-darwin-x64@2.5.11':
+ resolution: {integrity: sha512-nYkXY7tLBEgnGbYapDKAyKzgt44ZEyG+AKalvTXtCWKYgepI9dw327q+cVgedxm+Udi1ZzHKUyZrIusHi/KQbw==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
- '@biomejs/cli-linux-arm64-musl@2.5.4':
- resolution: {integrity: sha512-Rpm5/AT1m+DlJmUoYvS4/vXc+0tXJPJ2NQz25TGPyHVF5JrWy75PE0GH6kVxsKtQDuCH4OgzquZq0R4kj/wCVg==}
+ '@biomejs/cli-linux-arm64-musl@2.5.11':
+ resolution: {integrity: sha512-qhyZUMyCbWYFV2bAwRNVvfMVZ+hv7WYl6mossGrxC+uiQQXhvsuWWU8zz6jYX0mChZd9MgQZbm4vozTmG/5iGw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@biomejs/cli-linux-arm64@2.5.4':
- resolution: {integrity: sha512-pSEfW7B8kTsXUjUxC1xVVK+y85Ht3C5XxZ9gclmC7/3Ku9Vqz8jmI7k0p/BNIjQ6t4sFERI2sFeH73ybiZl6YQ==}
+ '@biomejs/cli-linux-arm64@2.5.11':
+ resolution: {integrity: sha512-3PVLSTD9RR73rvVPt5G3T1gc+ycggWEGfTD7RvzzbtcDPD27NxgxBbAFfpm7DXJKW6VLHWE1lLMGvFt2Qxjcow==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@biomejs/cli-linux-x64-musl@2.5.4':
- resolution: {integrity: sha512-aby/PohmmgbShcHqFsZVzG8H6D98+P+A6xRWRrQcLW1pCjabcov5UUlke4UqNQBYTkDQav+jB4zyyDDeKB2GaA==}
+ '@biomejs/cli-linux-x64-musl@2.5.11':
+ resolution: {integrity: sha512-oRRlrchG5EfrEL/EmtT1qUjSNHk3/5LGeZhQqADBBAJF1b1ET6964xEKe7aGlGARzDfza8H/seEsFJl7S6Ql9w==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@biomejs/cli-linux-x64@2.5.4':
- resolution: {integrity: sha512-FNxojWJkL7EajAuzBgoLe0T2G0y112M4lBrDIFl/DomFTx8yqenYOIdsRLNXvOvBBofE8hJi85LjzLmBDpY7/Q==}
+ '@biomejs/cli-linux-x64@2.5.11':
+ resolution: {integrity: sha512-JOytptlsgM33B2MMFUg8iBrb4IKpbD5JnJrSeYiaFEeAj4vuXx0iQSQZ4qK7sqyMtfjZxxPdNdMZZVL4y/mFyA==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@biomejs/cli-win32-arm64@2.5.4':
- resolution: {integrity: sha512-emoXexPZIPAZkz2RKmA95WJUqK3I5MJNYtwEbL5ESciRzhmFMMyekDhNG8hpeOaK+ZGRDxAU4wvGuA5IHQ0h0w==}
+ '@biomejs/cli-win32-arm64@2.5.11':
+ resolution: {integrity: sha512-e49E6K9hzH/ohJNx8Y26mY8HaV4I4ZViIeoqhKsmoXLKHhQnMeBAVqCgsGf2Wa3lXlS7RkporDXMHHWkzvZzFw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
- '@biomejs/cli-win32-x64@2.5.4':
- resolution: {integrity: sha512-U1jaluLw1qQc2Tx7/CeSoL9N5XcqIH+GWjpUAy1ouB5nVjSCMNO+NNHdY3RAs8zxNurLWAdj6pehQdCA2zyU+Q==}
+ '@biomejs/cli-win32-x64@2.5.11':
+ resolution: {integrity: sha512-QSQr/KjOgXA7OzXJUWS+oguKyAZ3Q0l/lnlDGbu397eKo83atuWUjBPJrsqbKNF6CARGw8XXJLGzpHC8Ryhd4Q==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
- '@esbuild/aix-ppc64@0.24.2':
- resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.27.7':
resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
engines: {node: '>=18'}
@@ -157,11 +151,11 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.24.2':
- resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
+ '@esbuild/aix-ppc64@0.28.2':
+ resolution: {integrity: sha512-XExcO+dvLKvVtNTibSTBej1NCAbaGhWn9Ww1ZPx80qsahhPFe/8jgWP0IchNe0F3HwkU7n8ejhH8bjonqht8mQ==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
+ cpu: [ppc64]
+ os: [aix]
'@esbuild/android-arm64@0.27.7':
resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
@@ -175,10 +169,10 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.24.2':
- resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
+ '@esbuild/android-arm64@0.28.2':
+ resolution: {integrity: sha512-5YfKeeI8qWfBZIX+u2xZC3Zlb3Os/gLS2sbEKM+I4ZOcsWmHS2WLysCcQZDAFRslDUU5Oiq44gf6PYN1vGwG5A==}
engines: {node: '>=18'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.27.7':
@@ -193,10 +187,10 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.24.2':
- resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
+ '@esbuild/android-arm@0.28.2':
+ resolution: {integrity: sha512-kXXoiPVVGQcnIYGOeaovwOURpniDBpSq4A03qkQ+BMQqtGG6HYap3xne9C1O1yo4TR3qxlCX5IqqmX6fFo2Lqg==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm]
os: [android]
'@esbuild/android-x64@0.27.7':
@@ -211,11 +205,11 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.24.2':
- resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
+ '@esbuild/android-x64@0.28.2':
+ resolution: {integrity: sha512-O387ite7SzUyCcy3JQX4P4bLtEA7bLLkx+esve5JHnyYfNTxcVpXZo9jhdB0lTKN44gztELTdU7nS8Nr16Fs1Q==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
+ cpu: [x64]
+ os: [android]
'@esbuild/darwin-arm64@0.27.7':
resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
@@ -229,10 +223,10 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.24.2':
- resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
+ '@esbuild/darwin-arm64@0.28.2':
+ resolution: {integrity: sha512-n4KqkOQrraxHJcgjM1RvwbigfQKIKJVpM7xp+KsxiyUSrRdIXnt73VhrPAx0fV44hgfmIVKjxMN9J1t5jySVkw==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.27.7':
@@ -247,11 +241,11 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.24.2':
- resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
+ '@esbuild/darwin-x64@0.28.2':
+ resolution: {integrity: sha512-uq6suIWYP37qzGddBKPw5QEQPi6HiLGsO7UmkpfyaYNQ3D+rN6w6WfwH+nuqcGXWvawGwxOEroO4YGnFh95azw==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
+ cpu: [x64]
+ os: [darwin]
'@esbuild/freebsd-arm64@0.27.7':
resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
@@ -265,10 +259,10 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.24.2':
- resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
+ '@esbuild/freebsd-arm64@0.28.2':
+ resolution: {integrity: sha512-n+I0BTSRIoy+d6RPKnEVwql5UwBJolytvY4mAOIEJorKlqgPII8ix6slVVrfZ5Tnj7glIZvloylbB/EJPMWEXw==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.27.7':
@@ -283,11 +277,11 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.24.2':
- resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
+ '@esbuild/freebsd-x64@0.28.2':
+ resolution: {integrity: sha512-78XJTJkvPs0kz2w61301PJjXl4g7q3JqiYMZ/M/yVI73EHBrCRTgkhu9oqG7vPqq+a/yadEW8aD+agKlk5xrmg==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
+ cpu: [x64]
+ os: [freebsd]
'@esbuild/linux-arm64@0.27.7':
resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
@@ -301,10 +295,10 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.24.2':
- resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
+ '@esbuild/linux-arm64@0.28.2':
+ resolution: {integrity: sha512-pW4AC0P3it8c7do9MVM4p51FzHzdM/TZrerurgRcHJ2WTa1VQ1CIq18xncfpBJw4ojkiZZrKW2yIBWBP92j6Ug==}
engines: {node: '>=18'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.27.7':
@@ -319,10 +313,10 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.24.2':
- resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
+ '@esbuild/linux-arm@0.28.2':
+ resolution: {integrity: sha512-XlDnu2q5yoqems+xay6wSAcg9DDD7K9RLKZEBOMZm3ckNpJBvOX20tSfby8KfrrhINDyv9V2YVZKY/SpoGJI8w==}
engines: {node: '>=18'}
- cpu: [ia32]
+ cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.27.7':
@@ -337,10 +331,10 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.24.2':
- resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
+ '@esbuild/linux-ia32@0.28.2':
+ resolution: {integrity: sha512-CYbnj78HsIeA+DhgUKgFCfvNsTHFhMMrinUrMZpDXJXKN8T3XViTZ/+wtHeVxEWY8ewSzTFN+nRmSwO2tZaLUQ==}
engines: {node: '>=18'}
- cpu: [loong64]
+ cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.27.7':
@@ -355,10 +349,10 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.24.2':
- resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
+ '@esbuild/linux-loong64@0.28.2':
+ resolution: {integrity: sha512-buwkd8nsph4R+ajRvw0qM5Hja/TXQow3ptzWO2EbG/cqcIkHloRrdlBtQlshyYGTNFvfkfJ5tpPLVkY4DtsPfQ==}
engines: {node: '>=18'}
- cpu: [mips64el]
+ cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.27.7':
@@ -373,10 +367,10 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.24.2':
- resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
+ '@esbuild/linux-mips64el@0.28.2':
+ resolution: {integrity: sha512-ZVykbDyk7519VwiNb9Lcj9m8XM6v5V9uKPvrEMkkEedVewf+0itkhahp4HDpgERXhwLRpWFypsGbG/J8s0QjJA==}
engines: {node: '>=18'}
- cpu: [ppc64]
+ cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.27.7':
@@ -391,10 +385,10 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.24.2':
- resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
+ '@esbuild/linux-ppc64@0.28.2':
+ resolution: {integrity: sha512-CAXl+Dtd9UUuJd8pKKdwh6MLm3MUMiqMPmhZ3tTSXPqfyQ3vDl6R5hZdZ/kYojK4ofXtdfSv1tFq8XzWx3heNQ==}
engines: {node: '>=18'}
- cpu: [riscv64]
+ cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.27.7':
@@ -409,10 +403,10 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.24.2':
- resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
+ '@esbuild/linux-riscv64@0.28.2':
+ resolution: {integrity: sha512-GeXCej4IQtU1B+QlDV8W/RRvbzI3O/Stss+/bCXv4lZls5WGRtu2a+3JkA3i4qIUlMXpcHebWpF8AkJhATowuA==}
engines: {node: '>=18'}
- cpu: [s390x]
+ cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.27.7':
@@ -427,10 +421,10 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.24.2':
- resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
+ '@esbuild/linux-s390x@0.28.2':
+ resolution: {integrity: sha512-3H1weTYZPxt/WOhByszQZybS9w5lKzUn1FDMsgEChbHWQwHYQQRfBxgCcZvPhjHfKyJjIievvMmEUawJrdY9Dg==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.27.7':
@@ -445,11 +439,11 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.24.2':
- resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
+ '@esbuild/linux-x64@0.28.2':
+ resolution: {integrity: sha512-4xTZr1FUmSoQW4XIWmit3tzQrUTZM+N3P0XV8xROKYF50XfI7xeO90+1bZvNwxIufQ9hDQVRJH5YhgPVF8A/HQ==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
+ cpu: [x64]
+ os: [linux]
'@esbuild/netbsd-arm64@0.27.7':
resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
@@ -463,10 +457,10 @@ packages:
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.24.2':
- resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
+ '@esbuild/netbsd-arm64@0.28.2':
+ resolution: {integrity: sha512-sSATRjPeDBg3pdgHoQfoYBob11Kk1FGa9lui5RIHZCoCkJa9QKlvl3/vKz2usCmYYjs7ymJR/2Nnsqe+Hjt5nw==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.27.7':
@@ -481,11 +475,11 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.24.2':
- resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
+ '@esbuild/netbsd-x64@0.28.2':
+ resolution: {integrity: sha512-lqnzCV+mM0gIADaKihiCg6ifgfU2L3h5E33rNQBN1Y4MaVGnzryzmvvf7UHxprpQdE8hpqLolJ9Rl+SkIRDpyw==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
+ cpu: [x64]
+ os: [netbsd]
'@esbuild/openbsd-arm64@0.27.7':
resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
@@ -499,10 +493,10 @@ packages:
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.24.2':
- resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
+ '@esbuild/openbsd-arm64@0.28.2':
+ resolution: {integrity: sha512-AL2qJILH7lNjrDmCQDvdxMfAUIv8KMNZOvrwAQ8i8//ntL9FflhOyMJ8OZSMBb8/AWXe3/5v5S20y3zCoZWKoQ==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.27.7':
@@ -517,6 +511,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.28.2':
+ resolution: {integrity: sha512-QtiuPytchRyC4rwUKhexJdQKvDuZ6hWloi3igqPQNUJCS1/v9EiO3UTOXR6A3FoMo4fnAKbWJdqaIwhOzh8qEw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openharmony-arm64@0.27.7':
resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
engines: {node: '>=18'}
@@ -529,11 +529,11 @@ packages:
cpu: [arm64]
os: [openharmony]
- '@esbuild/sunos-x64@0.24.2':
- resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
+ '@esbuild/openharmony-arm64@0.28.2':
+ resolution: {integrity: sha512-WkhYDmpTjLvGlScA1rwjRUmhl4k8oXR3cIbtqWmELgU/dFeHHlEllxDvdWcNJV9rbzCexB5vz8gtNewWLgCT7Q==}
engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
+ cpu: [arm64]
+ os: [openharmony]
'@esbuild/sunos-x64@0.27.7':
resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
@@ -547,11 +547,11 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.24.2':
- resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
+ '@esbuild/sunos-x64@0.28.2':
+ resolution: {integrity: sha512-GPMSkTOtMnv2U2F8gxe4Io6qmVs+YKyp832Etqqxr0hFngmXQ3rzwytelm3GIn7T4VviRUlf3sOgBOiTdvaf7g==}
engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
+ cpu: [x64]
+ os: [sunos]
'@esbuild/win32-arm64@0.27.7':
resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
@@ -565,10 +565,10 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.24.2':
- resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
+ '@esbuild/win32-arm64@0.28.2':
+ resolution: {integrity: sha512-PIhhEkE9uPBleRBrQEJpUn7MBnibZzbGzYWPmY3x+YoVg/95zbjB4CxPPOQ8l5tYYM4mMaCthF8/1DIfBQQyWQ==}
engines: {node: '>=18'}
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.27.7':
@@ -583,10 +583,10 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.24.2':
- resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
+ '@esbuild/win32-ia32@0.28.2':
+ resolution: {integrity: sha512-YmJbfTlvU7Sdn9BB+4PRES4oB6pxgS37MAONj+hBr/cpXS1aBPKXxNnDbu+QCWPj0o9dgyxeq79g6c5P8KeuYA==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.27.7':
@@ -601,6 +601,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.28.2':
+ resolution: {integrity: sha512-5ebpxr3nWMzrL/rnUI755Jkuee0bHL/Gq0WTF9lvcpv73wAp5eu8MfBUgWK9bhWvZjj7yX8etf/8tI8Ney695g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
@@ -752,6 +758,9 @@ packages:
cpu: [x64]
os: [win32]
+ '@standard-schema/spec@1.1.0':
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
+
'@types/chai@5.2.3':
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
@@ -764,34 +773,154 @@ packages:
'@types/node@24.13.3':
resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==}
- '@vitest/expect@3.2.7':
- resolution: {integrity: sha512-E8eBXaKibuvH2pSZErOjdVb5vF4PbKYcrnluBTYxEk1l/VhhwZg1kZQsdtjq+CsF5CFydf2Rdkz7jDHKSisi3w==}
+ '@typescript/typescript-aix-ppc64@7.0.2':
+ resolution: {integrity: sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@typescript/typescript-darwin-arm64@7.0.2':
+ resolution: {integrity: sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@typescript/typescript-darwin-x64@7.0.2':
+ resolution: {integrity: sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@typescript/typescript-freebsd-arm64@7.0.2':
+ resolution: {integrity: sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@typescript/typescript-freebsd-x64@7.0.2':
+ resolution: {integrity: sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@typescript/typescript-linux-arm64@7.0.2':
+ resolution: {integrity: sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@typescript/typescript-linux-arm@7.0.2':
+ resolution: {integrity: sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@typescript/typescript-linux-loong64@7.0.2':
+ resolution: {integrity: sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@typescript/typescript-linux-mips64el@7.0.2':
+ resolution: {integrity: sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@typescript/typescript-linux-ppc64@7.0.2':
+ resolution: {integrity: sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@typescript/typescript-linux-riscv64@7.0.2':
+ resolution: {integrity: sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@typescript/typescript-linux-s390x@7.0.2':
+ resolution: {integrity: sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==}
+ engines: {node: '>=16.20.0'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@typescript/typescript-linux-x64@7.0.2':
+ resolution: {integrity: sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@typescript/typescript-netbsd-arm64@7.0.2':
+ resolution: {integrity: sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@typescript/typescript-netbsd-x64@7.0.2':
+ resolution: {integrity: sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@typescript/typescript-openbsd-arm64@7.0.2':
+ resolution: {integrity: sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@typescript/typescript-openbsd-x64@7.0.2':
+ resolution: {integrity: sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [openbsd]
- '@vitest/mocker@3.2.7':
- resolution: {integrity: sha512-Trr0hYO9CM3Wj6ksWHRhK9IZpIY6wTMO5u/MqXurMxT57sWBaOPEtP3Oq60ihZuh5JsiagKfz95OcxdEP6dBrA==}
+ '@typescript/typescript-sunos-x64@7.0.2':
+ resolution: {integrity: sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@typescript/typescript-win32-arm64@7.0.2':
+ resolution: {integrity: sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==}
+ engines: {node: '>=16.20.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@typescript/typescript-win32-x64@7.0.2':
+ resolution: {integrity: sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==}
+ engines: {node: '>=16.20.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@vitest/expect@4.1.11':
+ resolution: {integrity: sha512-VX2x5vNJXET47KAFzwERI+KRMtTTCSWTfSMKsW7JsUsXV4psq++e3DvZpuTDOpHcxytiDs6p2nhVb2tVDiiUYw==}
+
+ '@vitest/mocker@4.1.11':
+ resolution: {integrity: sha512-2XJVD55d1o5AZous5CCGKS74g/riOj9odEt2bQpCVZeblHyHdnMeFl4jl0XjU21stf4mbjUkew2eXQZt65g5CQ==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.2.7':
- resolution: {integrity: sha512-KUHlwqVu0sRlhCdyPdQ/wBoTfRahjUky1MubOmYw9fWfIZy1gNoHpuaaQBPAaMaVYdQYHJLurzj8ECCj5OwTqA==}
+ '@vitest/pretty-format@4.1.11':
+ resolution: {integrity: sha512-yiZzPbGTS9Sr/JpFl8zHrcIkAofNbFV6k21vIgQN/cY/oxZeXhJv5sc/MBJ5jFKWmWs+oJHw0UXLZjmf931+Vw==}
- '@vitest/runner@3.2.7':
- resolution: {integrity: sha512-sB9y4ovltoQP+WaUPwmSxO9WIg9Ig694Di5PalVPsYHklAdE027mehpWF2SQSVq+k6sFgaivbTjTJwZLSHbedA==}
+ '@vitest/runner@4.1.11':
+ resolution: {integrity: sha512-LztvUgdwMNJMIkj3hQnnxiC2Xy1zNxq928W/xhjCLaNCzqTZOudjwbQf6v9IntZGPw132i2Lq2rgTRZHD3JHNw==}
- '@vitest/snapshot@3.2.7':
- resolution: {integrity: sha512-7C+MwShwtBSI5Buwoyg3s/iY1eHL9PKAf+O1wVh/TdnjXUtkoL/9YQtre90i4MtNXM6edP1wJ2zOBpfCyhIS7g==}
+ '@vitest/snapshot@4.1.11':
+ resolution: {integrity: sha512-pN7ikn1ON7h8ee4gIAp4AzyK+zBtJPzVbqOgu5LCEh4VaJVbPQcgYQYJIMGQPXVeJJq1fnfazis7a5pFNPahog==}
- '@vitest/spy@3.2.7':
- resolution: {integrity: sha512-Q2eQGI6d2L/hBtZ0qNuKcAGid68XK6cv1xsoaIma6PaJhHPoqcEJhYpXZ/5myCMqkNgtP6UKuBhbc0nHKnrkuQ==}
+ '@vitest/spy@4.1.11':
+ resolution: {integrity: sha512-apNa/prQy2qCeywhnixOHPRCgGNhvg7T4Dapfl1GahLp/R+uhBm5cPyFoNVyqsNd2h1nJxL6BqqdIjiABL60YA==}
- '@vitest/utils@3.2.7':
- resolution: {integrity: sha512-x6BDOd7dyo3PFLY3I9/HJ25X/6OurhGXk2/B9gOZNPF7XDVjeBK4k01lQE5uvDpbuheErh91qYuE1E2OEjK3Rw==}
+ '@vitest/utils@4.1.11':
+ resolution: {integrity: sha512-zTCVGpyFsGWBhllOyKlTw/vnr6D9qxsfSDyfbyZmTyjHw5N/VuvzHpHoQjm2ZJzn4RJgx5w4r7V0er69CmLgPQ==}
acorn@8.17.0:
resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
@@ -805,8 +934,9 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ buffer-crc32@1.0.0:
+ resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
+ engines: {node: '>=8.0.0'}
bundle-require@5.1.0:
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
@@ -818,21 +948,21 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- chai@5.3.3:
- resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
+ chai@6.2.2:
+ resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
engines: {node: '>=18'}
- check-error@2.1.3:
- resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
- engines: {node: '>= 16'}
-
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
- commander@12.1.0:
- resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
- engines: {node: '>=18'}
+ chokidar@5.0.0:
+ resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
+ engines: {node: '>= 20.19.0'}
+
+ commander@15.0.0:
+ resolution: {integrity: sha512-z67u4ZhzCL/Tydu1lJARtEZYWbWaN7oYLHbsuzocr6y4N6WZAagG3RQ4FW61V1/0+jImpj293XfrcYnd1qxtPg==}
+ engines: {node: '>=22.12.0'}
commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
@@ -845,6 +975,9 @@ packages:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
+ convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
debug@4.4.3:
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
engines: {node: '>=6.0'}
@@ -854,17 +987,8 @@ packages:
supports-color:
optional: true
- deep-eql@5.0.2:
- resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
- engines: {node: '>=6'}
-
- es-module-lexer@1.7.0:
- resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
-
- esbuild@0.24.2:
- resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
- engines: {node: '>=18'}
- hasBin: true
+ es-module-lexer@2.3.2:
+ resolution: {integrity: sha512-poHGpORABojJJucnV9KbOavETW8lBVnphkW77ER5/BQ5Fz7oXSoCNek7IH3vR5nRjdsEz926ibFYX8KtLQmdyw==}
esbuild@0.27.7:
resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
@@ -876,6 +1000,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.28.2:
+ resolution: {integrity: sha512-HKVLS8dvII+xoKW9kmqxbRKrnWEXfJJr/FZhhJmiqIB0e053QNYFqOBouTMO/k5sID4MvCiUCvv8b9M4h32wIA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
estree-walker@3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
@@ -904,9 +1033,6 @@ packages:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
- js-tokens@9.0.1:
- resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
-
lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
@@ -918,9 +1044,6 @@ packages:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- loupe@3.2.1:
- resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
-
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
@@ -942,13 +1065,13 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
+ obug@2.1.4:
+ resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==}
+ engines: {node: '>=12.20.0'}
+
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- pathval@2.0.1:
- resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
- engines: {node: '>= 14.16'}
-
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -989,6 +1112,10 @@ packages:
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
engines: {node: '>= 14.18.0'}
+ readdirp@5.1.1:
+ resolution: {integrity: sha512-Kko+Y5XQ6fM+Ce3dq3m9YGxnacYZYl9cA1wZjaF3Vbry2L3i1qVg8+CAgNPsXRArPMUMCaOR7oa9Nqntc43JKA==}
+ engines: {node: '>= 20.19.0'}
+
resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
@@ -1012,11 +1139,8 @@ packages:
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
- std-env@3.10.0:
- resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
-
- strip-literal@3.1.0:
- resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
+ std-env@4.2.0:
+ resolution: {integrity: sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==}
sucrase@3.35.1:
resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
@@ -1036,20 +1160,16 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+ tinyexec@1.3.0:
+ resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==}
+ engines: {node: '>=18'}
+
tinyglobby@0.2.17:
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
engines: {node: '>=12.0.0'}
- tinypool@1.1.1:
- resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
- engines: {node: ^18.0.0 || >=20.0.0}
-
- tinyrainbow@2.0.0:
- resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
- engines: {node: '>=14.0.0'}
-
- tinyspy@4.0.4:
- resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
+ tinyrainbow@3.1.1:
+ resolution: {integrity: sha512-yau8yJdTt989Mm0Bd/236QnzEiPf2xLLTqUZRUJOo/3CB078LSwzei343DgtJVmfJKJE3TMINY1u42SQsP6mXw==}
engines: {node: '>=14.0.0'}
tree-kill@1.2.2:
@@ -1078,9 +1198,9 @@ packages:
typescript:
optional: true
- typescript@5.9.3:
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
- engines: {node: '>=14.17'}
+ typescript@7.0.2:
+ resolution: {integrity: sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==}
+ engines: {node: '>=16.20.0'}
hasBin: true
ufo@1.6.4:
@@ -1089,11 +1209,6 @@ packages:
undici-types@7.18.2:
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
- vite-node@3.2.4:
- resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
-
vite@7.3.6:
resolution: {integrity: sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -1134,26 +1249,39 @@ packages:
yaml:
optional: true
- vitest@3.2.7:
- resolution: {integrity: sha512-KrxIJ62Fd89gfysR4WotlgZABiz2dqFPgqGzX7s+CwsqLFomRH7777ZcrOD6+WVAh7khPQP41A+BKbpcJFrdEg==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ vitest@4.1.11:
+ resolution: {integrity: sha512-fhACrNXUidIbGSBr5FlbuBkO7VWC1ZyLl0DO4CU2DrQoAPxX84Ysxs+HeGQpii5lZWV1Q4gBZTTu49mF+A6Edw==}
+ engines: {node: ^20.0.0 || ^22.0.0 || >=24.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.2.7
- '@vitest/ui': 3.2.7
+ '@opentelemetry/api': ^1.9.0
+ '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
+ '@vitest/browser-playwright': 4.1.11
+ '@vitest/browser-preview': 4.1.11
+ '@vitest/browser-webdriverio': 4.1.11
+ '@vitest/coverage-istanbul': 4.1.11
+ '@vitest/coverage-v8': 4.1.11
+ '@vitest/ui': 4.1.11
happy-dom: '*'
jsdom: '*'
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
- '@types/debug':
+ '@opentelemetry/api':
optional: true
'@types/node':
optional: true
- '@vitest/browser':
+ '@vitest/browser-playwright':
+ optional: true
+ '@vitest/browser-preview':
+ optional: true
+ '@vitest/browser-webdriverio':
+ optional: true
+ '@vitest/coverage-istanbul':
+ optional: true
+ '@vitest/coverage-v8':
optional: true
'@vitest/ui':
optional: true
@@ -1167,50 +1295,47 @@ packages:
engines: {node: '>=8'}
hasBin: true
- yazl@2.5.1:
- resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==}
+ yazl@3.3.1:
+ resolution: {integrity: sha512-BbETDVWG+VcMUle37k5Fqp//7SDOK2/1+T7X8TD96M3D9G8jK5VLUdQVdVjGi8im7FGkazX7kk5hkU8X4L5Bng==}
- zod@4.4.3:
- resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
+ zod@4.5.4:
+ resolution: {integrity: sha512-sC95tT5iHHH9gtpj6A81kh+NEaRAUFN+qlUPDUbRfOMvNf5QCBqsb3WgvnpVtK5Y+4UfA6KqufotuTvMGiTlsA==}
snapshots:
- '@biomejs/biome@2.5.4':
+ '@biomejs/biome@2.5.11':
optionalDependencies:
- '@biomejs/cli-darwin-arm64': 2.5.4
- '@biomejs/cli-darwin-x64': 2.5.4
- '@biomejs/cli-linux-arm64': 2.5.4
- '@biomejs/cli-linux-arm64-musl': 2.5.4
- '@biomejs/cli-linux-x64': 2.5.4
- '@biomejs/cli-linux-x64-musl': 2.5.4
- '@biomejs/cli-win32-arm64': 2.5.4
- '@biomejs/cli-win32-x64': 2.5.4
-
- '@biomejs/cli-darwin-arm64@2.5.4':
- optional: true
+ '@biomejs/cli-darwin-arm64': 2.5.11
+ '@biomejs/cli-darwin-x64': 2.5.11
+ '@biomejs/cli-linux-arm64': 2.5.11
+ '@biomejs/cli-linux-arm64-musl': 2.5.11
+ '@biomejs/cli-linux-x64': 2.5.11
+ '@biomejs/cli-linux-x64-musl': 2.5.11
+ '@biomejs/cli-win32-arm64': 2.5.11
+ '@biomejs/cli-win32-x64': 2.5.11
- '@biomejs/cli-darwin-x64@2.5.4':
+ '@biomejs/cli-darwin-arm64@2.5.11':
optional: true
- '@biomejs/cli-linux-arm64-musl@2.5.4':
+ '@biomejs/cli-darwin-x64@2.5.11':
optional: true
- '@biomejs/cli-linux-arm64@2.5.4':
+ '@biomejs/cli-linux-arm64-musl@2.5.11':
optional: true
- '@biomejs/cli-linux-x64-musl@2.5.4':
+ '@biomejs/cli-linux-arm64@2.5.11':
optional: true
- '@biomejs/cli-linux-x64@2.5.4':
+ '@biomejs/cli-linux-x64-musl@2.5.11':
optional: true
- '@biomejs/cli-win32-arm64@2.5.4':
+ '@biomejs/cli-linux-x64@2.5.11':
optional: true
- '@biomejs/cli-win32-x64@2.5.4':
+ '@biomejs/cli-win32-arm64@2.5.11':
optional: true
- '@esbuild/aix-ppc64@0.24.2':
+ '@biomejs/cli-win32-x64@2.5.11':
optional: true
'@esbuild/aix-ppc64@0.27.7':
@@ -1219,7 +1344,7 @@ snapshots:
'@esbuild/aix-ppc64@0.28.1':
optional: true
- '@esbuild/android-arm64@0.24.2':
+ '@esbuild/aix-ppc64@0.28.2':
optional: true
'@esbuild/android-arm64@0.27.7':
@@ -1228,7 +1353,7 @@ snapshots:
'@esbuild/android-arm64@0.28.1':
optional: true
- '@esbuild/android-arm@0.24.2':
+ '@esbuild/android-arm64@0.28.2':
optional: true
'@esbuild/android-arm@0.27.7':
@@ -1237,7 +1362,7 @@ snapshots:
'@esbuild/android-arm@0.28.1':
optional: true
- '@esbuild/android-x64@0.24.2':
+ '@esbuild/android-arm@0.28.2':
optional: true
'@esbuild/android-x64@0.27.7':
@@ -1246,7 +1371,7 @@ snapshots:
'@esbuild/android-x64@0.28.1':
optional: true
- '@esbuild/darwin-arm64@0.24.2':
+ '@esbuild/android-x64@0.28.2':
optional: true
'@esbuild/darwin-arm64@0.27.7':
@@ -1255,7 +1380,7 @@ snapshots:
'@esbuild/darwin-arm64@0.28.1':
optional: true
- '@esbuild/darwin-x64@0.24.2':
+ '@esbuild/darwin-arm64@0.28.2':
optional: true
'@esbuild/darwin-x64@0.27.7':
@@ -1264,7 +1389,7 @@ snapshots:
'@esbuild/darwin-x64@0.28.1':
optional: true
- '@esbuild/freebsd-arm64@0.24.2':
+ '@esbuild/darwin-x64@0.28.2':
optional: true
'@esbuild/freebsd-arm64@0.27.7':
@@ -1273,7 +1398,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.28.1':
optional: true
- '@esbuild/freebsd-x64@0.24.2':
+ '@esbuild/freebsd-arm64@0.28.2':
optional: true
'@esbuild/freebsd-x64@0.27.7':
@@ -1282,7 +1407,7 @@ snapshots:
'@esbuild/freebsd-x64@0.28.1':
optional: true
- '@esbuild/linux-arm64@0.24.2':
+ '@esbuild/freebsd-x64@0.28.2':
optional: true
'@esbuild/linux-arm64@0.27.7':
@@ -1291,7 +1416,7 @@ snapshots:
'@esbuild/linux-arm64@0.28.1':
optional: true
- '@esbuild/linux-arm@0.24.2':
+ '@esbuild/linux-arm64@0.28.2':
optional: true
'@esbuild/linux-arm@0.27.7':
@@ -1300,7 +1425,7 @@ snapshots:
'@esbuild/linux-arm@0.28.1':
optional: true
- '@esbuild/linux-ia32@0.24.2':
+ '@esbuild/linux-arm@0.28.2':
optional: true
'@esbuild/linux-ia32@0.27.7':
@@ -1309,7 +1434,7 @@ snapshots:
'@esbuild/linux-ia32@0.28.1':
optional: true
- '@esbuild/linux-loong64@0.24.2':
+ '@esbuild/linux-ia32@0.28.2':
optional: true
'@esbuild/linux-loong64@0.27.7':
@@ -1318,7 +1443,7 @@ snapshots:
'@esbuild/linux-loong64@0.28.1':
optional: true
- '@esbuild/linux-mips64el@0.24.2':
+ '@esbuild/linux-loong64@0.28.2':
optional: true
'@esbuild/linux-mips64el@0.27.7':
@@ -1327,7 +1452,7 @@ snapshots:
'@esbuild/linux-mips64el@0.28.1':
optional: true
- '@esbuild/linux-ppc64@0.24.2':
+ '@esbuild/linux-mips64el@0.28.2':
optional: true
'@esbuild/linux-ppc64@0.27.7':
@@ -1336,7 +1461,7 @@ snapshots:
'@esbuild/linux-ppc64@0.28.1':
optional: true
- '@esbuild/linux-riscv64@0.24.2':
+ '@esbuild/linux-ppc64@0.28.2':
optional: true
'@esbuild/linux-riscv64@0.27.7':
@@ -1345,7 +1470,7 @@ snapshots:
'@esbuild/linux-riscv64@0.28.1':
optional: true
- '@esbuild/linux-s390x@0.24.2':
+ '@esbuild/linux-riscv64@0.28.2':
optional: true
'@esbuild/linux-s390x@0.27.7':
@@ -1354,7 +1479,7 @@ snapshots:
'@esbuild/linux-s390x@0.28.1':
optional: true
- '@esbuild/linux-x64@0.24.2':
+ '@esbuild/linux-s390x@0.28.2':
optional: true
'@esbuild/linux-x64@0.27.7':
@@ -1363,7 +1488,7 @@ snapshots:
'@esbuild/linux-x64@0.28.1':
optional: true
- '@esbuild/netbsd-arm64@0.24.2':
+ '@esbuild/linux-x64@0.28.2':
optional: true
'@esbuild/netbsd-arm64@0.27.7':
@@ -1372,7 +1497,7 @@ snapshots:
'@esbuild/netbsd-arm64@0.28.1':
optional: true
- '@esbuild/netbsd-x64@0.24.2':
+ '@esbuild/netbsd-arm64@0.28.2':
optional: true
'@esbuild/netbsd-x64@0.27.7':
@@ -1381,7 +1506,7 @@ snapshots:
'@esbuild/netbsd-x64@0.28.1':
optional: true
- '@esbuild/openbsd-arm64@0.24.2':
+ '@esbuild/netbsd-x64@0.28.2':
optional: true
'@esbuild/openbsd-arm64@0.27.7':
@@ -1390,7 +1515,7 @@ snapshots:
'@esbuild/openbsd-arm64@0.28.1':
optional: true
- '@esbuild/openbsd-x64@0.24.2':
+ '@esbuild/openbsd-arm64@0.28.2':
optional: true
'@esbuild/openbsd-x64@0.27.7':
@@ -1399,13 +1524,16 @@ snapshots:
'@esbuild/openbsd-x64@0.28.1':
optional: true
+ '@esbuild/openbsd-x64@0.28.2':
+ optional: true
+
'@esbuild/openharmony-arm64@0.27.7':
optional: true
'@esbuild/openharmony-arm64@0.28.1':
optional: true
- '@esbuild/sunos-x64@0.24.2':
+ '@esbuild/openharmony-arm64@0.28.2':
optional: true
'@esbuild/sunos-x64@0.27.7':
@@ -1414,7 +1542,7 @@ snapshots:
'@esbuild/sunos-x64@0.28.1':
optional: true
- '@esbuild/win32-arm64@0.24.2':
+ '@esbuild/sunos-x64@0.28.2':
optional: true
'@esbuild/win32-arm64@0.27.7':
@@ -1423,7 +1551,7 @@ snapshots:
'@esbuild/win32-arm64@0.28.1':
optional: true
- '@esbuild/win32-ia32@0.24.2':
+ '@esbuild/win32-arm64@0.28.2':
optional: true
'@esbuild/win32-ia32@0.27.7':
@@ -1432,7 +1560,7 @@ snapshots:
'@esbuild/win32-ia32@0.28.1':
optional: true
- '@esbuild/win32-x64@0.24.2':
+ '@esbuild/win32-ia32@0.28.2':
optional: true
'@esbuild/win32-x64@0.27.7':
@@ -1441,6 +1569,9 @@ snapshots:
'@esbuild/win32-x64@0.28.1':
optional: true
+ '@esbuild/win32-x64@0.28.2':
+ optional: true
+
'@jridgewell/gen-mapping@0.3.13':
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -1530,6 +1661,8 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.62.2':
optional: true
+ '@standard-schema/spec@1.1.0': {}
+
'@types/chai@5.2.3':
dependencies:
'@types/deep-eql': 4.0.2
@@ -1543,47 +1676,106 @@ snapshots:
dependencies:
undici-types: 7.18.2
- '@vitest/expect@3.2.7':
+ '@typescript/typescript-aix-ppc64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-darwin-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-darwin-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-freebsd-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-freebsd-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-arm@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-loong64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-mips64el@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-ppc64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-riscv64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-s390x@7.0.2':
+ optional: true
+
+ '@typescript/typescript-linux-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-netbsd-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-netbsd-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-openbsd-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-openbsd-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-sunos-x64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-win32-arm64@7.0.2':
+ optional: true
+
+ '@typescript/typescript-win32-x64@7.0.2':
+ optional: true
+
+ '@vitest/expect@4.1.11':
dependencies:
+ '@standard-schema/spec': 1.1.0
'@types/chai': 5.2.3
- '@vitest/spy': 3.2.7
- '@vitest/utils': 3.2.7
- chai: 5.3.3
- tinyrainbow: 2.0.0
+ '@vitest/spy': 4.1.11
+ '@vitest/utils': 4.1.11
+ chai: 6.2.2
+ tinyrainbow: 3.1.1
- '@vitest/mocker@3.2.7(vite@7.3.6(@types/node@24.13.3))':
+ '@vitest/mocker@4.1.11(vite@7.3.6(@types/node@24.13.3))':
dependencies:
- '@vitest/spy': 3.2.7
+ '@vitest/spy': 4.1.11
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
vite: 7.3.6(@types/node@24.13.3)
- '@vitest/pretty-format@3.2.7':
+ '@vitest/pretty-format@4.1.11':
dependencies:
- tinyrainbow: 2.0.0
+ tinyrainbow: 3.1.1
- '@vitest/runner@3.2.7':
+ '@vitest/runner@4.1.11':
dependencies:
- '@vitest/utils': 3.2.7
+ '@vitest/utils': 4.1.11
pathe: 2.0.3
- strip-literal: 3.1.0
- '@vitest/snapshot@3.2.7':
+ '@vitest/snapshot@4.1.11':
dependencies:
- '@vitest/pretty-format': 3.2.7
+ '@vitest/pretty-format': 4.1.11
+ '@vitest/utils': 4.1.11
magic-string: 0.30.21
pathe: 2.0.3
- '@vitest/spy@3.2.7':
- dependencies:
- tinyspy: 4.0.4
+ '@vitest/spy@4.1.11': {}
- '@vitest/utils@3.2.7':
+ '@vitest/utils@4.1.11':
dependencies:
- '@vitest/pretty-format': 3.2.7
- loupe: 3.2.1
- tinyrainbow: 2.0.0
+ '@vitest/pretty-format': 4.1.11
+ convert-source-map: 2.0.0
+ tinyrainbow: 3.1.1
acorn@8.17.0: {}
@@ -1591,7 +1783,7 @@ snapshots:
assertion-error@2.0.1: {}
- buffer-crc32@0.2.13: {}
+ buffer-crc32@1.0.0: {}
bundle-require@5.1.0(esbuild@0.27.7):
dependencies:
@@ -1600,21 +1792,17 @@ snapshots:
cac@6.7.14: {}
- chai@5.3.3:
- dependencies:
- assertion-error: 2.0.1
- check-error: 2.1.3
- deep-eql: 5.0.2
- loupe: 3.2.1
- pathval: 2.0.1
-
- check-error@2.1.3: {}
+ chai@6.2.2: {}
chokidar@4.0.3:
dependencies:
readdirp: 4.1.2
- commander@12.1.0: {}
+ chokidar@5.0.0:
+ dependencies:
+ readdirp: 5.1.1
+
+ commander@15.0.0: {}
commander@4.1.1: {}
@@ -1622,41 +1810,13 @@ snapshots:
consola@3.4.2: {}
+ convert-source-map@2.0.0: {}
+
debug@4.4.3:
dependencies:
ms: 2.1.3
- deep-eql@5.0.2: {}
-
- es-module-lexer@1.7.0: {}
-
- esbuild@0.24.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.24.2
- '@esbuild/android-arm': 0.24.2
- '@esbuild/android-arm64': 0.24.2
- '@esbuild/android-x64': 0.24.2
- '@esbuild/darwin-arm64': 0.24.2
- '@esbuild/darwin-x64': 0.24.2
- '@esbuild/freebsd-arm64': 0.24.2
- '@esbuild/freebsd-x64': 0.24.2
- '@esbuild/linux-arm': 0.24.2
- '@esbuild/linux-arm64': 0.24.2
- '@esbuild/linux-ia32': 0.24.2
- '@esbuild/linux-loong64': 0.24.2
- '@esbuild/linux-mips64el': 0.24.2
- '@esbuild/linux-ppc64': 0.24.2
- '@esbuild/linux-riscv64': 0.24.2
- '@esbuild/linux-s390x': 0.24.2
- '@esbuild/linux-x64': 0.24.2
- '@esbuild/netbsd-arm64': 0.24.2
- '@esbuild/netbsd-x64': 0.24.2
- '@esbuild/openbsd-arm64': 0.24.2
- '@esbuild/openbsd-x64': 0.24.2
- '@esbuild/sunos-x64': 0.24.2
- '@esbuild/win32-arm64': 0.24.2
- '@esbuild/win32-ia32': 0.24.2
- '@esbuild/win32-x64': 0.24.2
+ es-module-lexer@2.3.2: {}
esbuild@0.27.7:
optionalDependencies:
@@ -1716,6 +1876,35 @@ snapshots:
'@esbuild/win32-ia32': 0.28.1
'@esbuild/win32-x64': 0.28.1
+ esbuild@0.28.2:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.28.2
+ '@esbuild/android-arm': 0.28.2
+ '@esbuild/android-arm64': 0.28.2
+ '@esbuild/android-x64': 0.28.2
+ '@esbuild/darwin-arm64': 0.28.2
+ '@esbuild/darwin-x64': 0.28.2
+ '@esbuild/freebsd-arm64': 0.28.2
+ '@esbuild/freebsd-x64': 0.28.2
+ '@esbuild/linux-arm': 0.28.2
+ '@esbuild/linux-arm64': 0.28.2
+ '@esbuild/linux-ia32': 0.28.2
+ '@esbuild/linux-loong64': 0.28.2
+ '@esbuild/linux-mips64el': 0.28.2
+ '@esbuild/linux-ppc64': 0.28.2
+ '@esbuild/linux-riscv64': 0.28.2
+ '@esbuild/linux-s390x': 0.28.2
+ '@esbuild/linux-x64': 0.28.2
+ '@esbuild/netbsd-arm64': 0.28.2
+ '@esbuild/netbsd-x64': 0.28.2
+ '@esbuild/openbsd-arm64': 0.28.2
+ '@esbuild/openbsd-x64': 0.28.2
+ '@esbuild/openharmony-arm64': 0.28.2
+ '@esbuild/sunos-x64': 0.28.2
+ '@esbuild/win32-arm64': 0.28.2
+ '@esbuild/win32-ia32': 0.28.2
+ '@esbuild/win32-x64': 0.28.2
+
estree-walker@3.0.3:
dependencies:
'@types/estree': 1.0.9
@@ -1737,16 +1926,12 @@ snapshots:
joycon@3.1.1: {}
- js-tokens@9.0.1: {}
-
lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
load-tsconfig@0.2.5: {}
- loupe@3.2.1: {}
-
magic-string@0.30.21:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -1770,9 +1955,9 @@ snapshots:
object-assign@4.1.1: {}
- pathe@2.0.3: {}
+ obug@2.1.4: {}
- pathval@2.0.1: {}
+ pathe@2.0.3: {}
picocolors@1.1.1: {}
@@ -1800,6 +1985,8 @@ snapshots:
readdirp@4.1.2: {}
+ readdirp@5.1.1: {}
+
resolve-from@5.0.0: {}
rollup@4.62.2:
@@ -1841,11 +2028,7 @@ snapshots:
stackback@0.0.2: {}
- std-env@3.10.0: {}
-
- strip-literal@3.1.0:
- dependencies:
- js-tokens: 9.0.1
+ std-env@4.2.0: {}
sucrase@3.35.1:
dependencies:
@@ -1869,22 +2052,20 @@ snapshots:
tinyexec@0.3.2: {}
+ tinyexec@1.3.0: {}
+
tinyglobby@0.2.17:
dependencies:
fdir: 6.5.0(picomatch@4.0.5)
picomatch: 4.0.5
- tinypool@1.1.1: {}
-
- tinyrainbow@2.0.0: {}
-
- tinyspy@4.0.4: {}
+ tinyrainbow@3.1.1: {}
tree-kill@1.2.2: {}
ts-interface-checker@0.1.13: {}
- tsup@8.5.1(postcss@8.5.20)(typescript@5.9.3):
+ tsup@8.5.1(postcss@8.5.20)(typescript@7.0.2):
dependencies:
bundle-require: 5.1.0(esbuild@0.27.7)
cac: 6.7.14
@@ -1905,40 +2086,40 @@ snapshots:
tree-kill: 1.2.2
optionalDependencies:
postcss: 8.5.20
- typescript: 5.9.3
+ typescript: 7.0.2
transitivePeerDependencies:
- jiti
- supports-color
- tsx
- yaml
- typescript@5.9.3: {}
+ typescript@7.0.2:
+ optionalDependencies:
+ '@typescript/typescript-aix-ppc64': 7.0.2
+ '@typescript/typescript-darwin-arm64': 7.0.2
+ '@typescript/typescript-darwin-x64': 7.0.2
+ '@typescript/typescript-freebsd-arm64': 7.0.2
+ '@typescript/typescript-freebsd-x64': 7.0.2
+ '@typescript/typescript-linux-arm': 7.0.2
+ '@typescript/typescript-linux-arm64': 7.0.2
+ '@typescript/typescript-linux-loong64': 7.0.2
+ '@typescript/typescript-linux-mips64el': 7.0.2
+ '@typescript/typescript-linux-ppc64': 7.0.2
+ '@typescript/typescript-linux-riscv64': 7.0.2
+ '@typescript/typescript-linux-s390x': 7.0.2
+ '@typescript/typescript-linux-x64': 7.0.2
+ '@typescript/typescript-netbsd-arm64': 7.0.2
+ '@typescript/typescript-netbsd-x64': 7.0.2
+ '@typescript/typescript-openbsd-arm64': 7.0.2
+ '@typescript/typescript-openbsd-x64': 7.0.2
+ '@typescript/typescript-sunos-x64': 7.0.2
+ '@typescript/typescript-win32-arm64': 7.0.2
+ '@typescript/typescript-win32-x64': 7.0.2
ufo@1.6.4: {}
undici-types@7.18.2: {}
- vite-node@3.2.4(@types/node@24.13.3):
- dependencies:
- cac: 6.7.14
- debug: 4.4.3
- es-module-lexer: 1.7.0
- pathe: 2.0.3
- vite: 7.3.6(@types/node@24.13.3)
- transitivePeerDependencies:
- - '@types/node'
- - jiti
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
-
vite@7.3.6(@types/node@24.13.3):
dependencies:
esbuild: 0.28.1
@@ -1951,54 +2132,40 @@ snapshots:
'@types/node': 24.13.3
fsevents: 2.3.3
- vitest@3.2.7(@types/node@24.13.3):
+ vitest@4.1.11(@types/node@24.13.3)(vite@7.3.6(@types/node@24.13.3)):
dependencies:
- '@types/chai': 5.2.3
- '@vitest/expect': 3.2.7
- '@vitest/mocker': 3.2.7(vite@7.3.6(@types/node@24.13.3))
- '@vitest/pretty-format': 3.2.7
- '@vitest/runner': 3.2.7
- '@vitest/snapshot': 3.2.7
- '@vitest/spy': 3.2.7
- '@vitest/utils': 3.2.7
- chai: 5.3.3
- debug: 4.4.3
+ '@vitest/expect': 4.1.11
+ '@vitest/mocker': 4.1.11(vite@7.3.6(@types/node@24.13.3))
+ '@vitest/pretty-format': 4.1.11
+ '@vitest/runner': 4.1.11
+ '@vitest/snapshot': 4.1.11
+ '@vitest/spy': 4.1.11
+ '@vitest/utils': 4.1.11
+ es-module-lexer: 2.3.2
expect-type: 1.4.0
magic-string: 0.30.21
+ obug: 2.1.4
pathe: 2.0.3
picomatch: 4.0.5
- std-env: 3.10.0
+ std-env: 4.2.0
tinybench: 2.9.0
- tinyexec: 0.3.2
+ tinyexec: 1.3.0
tinyglobby: 0.2.17
- tinypool: 1.1.1
- tinyrainbow: 2.0.0
+ tinyrainbow: 3.1.1
vite: 7.3.6(@types/node@24.13.3)
- vite-node: 3.2.4(@types/node@24.13.3)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 24.13.3
transitivePeerDependencies:
- - jiti
- - less
- - lightningcss
- msw
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
- yazl@2.5.1:
+ yazl@3.3.1:
dependencies:
- buffer-crc32: 0.2.13
+ buffer-crc32: 1.0.0
- zod@4.4.3: {}
+ zod@4.5.4: {}