[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

ref(tools): migrate to @bomb.sh/tools

Nate Moore (Mar 25, 2026, 11:48 PM EDT) 527125ca bdf89a5f

+1388 -1364
+16
AGENTS.md
··· 1 + <!-- intent-skills:start --> 2 + # Skill mappings - when working in these areas, load the linked skill file into context. 3 + skills: 4 + - task: "Building packages for publish or generating declarations" 5 + load: "node_modules/@bomb.sh/tools/skills/build/SKILL.md" 6 + - task: "Writing or running tests" 7 + load: "node_modules/@bomb.sh/tools/skills/test/SKILL.md" 8 + - task: "Development workflow, command ordering, monorepo filtering" 9 + load: "node_modules/@bomb.sh/tools/skills/lifecycle/SKILL.md" 10 + - task: "Linting, code quality, or understanding lint violations" 11 + load: "node_modules/@bomb.sh/tools/skills/lint/SKILL.md" 12 + - task: "Formatting source files before committing" 13 + load: "node_modules/@bomb.sh/tools/skills/format/SKILL.md" 14 + - task: "Migrating off biome, unbuild, or other tools to bsh toolchain" 15 + load: "node_modules/@bomb.sh/tools/skills/migrate/SKILL.md" 16 + <!-- intent-skills:end -->
-47
biome.json
··· 1 - { 2 - "$schema": "https://biomejs.dev/schemas/2.1.2/schema.json", 3 - "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false }, 4 - "files": { "ignoreUnknown": false, "includes": ["**", "!**/dist/**"] }, 5 - "formatter": { 6 - "enabled": true, 7 - "useEditorconfig": true, 8 - "formatWithErrors": false, 9 - "indentStyle": "tab", 10 - "indentWidth": 2, 11 - "lineEnding": "lf", 12 - "lineWidth": 100, 13 - "attributePosition": "auto", 14 - "bracketSpacing": true, 15 - "includes": [ 16 - "**", 17 - "!**/.github/workflows/**/*.yml", 18 - "!**/.changeset/**/*.md", 19 - "!**/pnpm-lock.yaml", 20 - "!**/package.json" 21 - ] 22 - }, 23 - "assist": { "actions": { "source": { "organizeImports": "on" } } }, 24 - "linter": { 25 - "enabled": true, 26 - "rules": { "recommended": true, "suspicious": { "noExplicitAny": "off" } } 27 - }, 28 - "javascript": { 29 - "formatter": { 30 - "jsxQuoteStyle": "double", 31 - "quoteProperties": "asNeeded", 32 - "trailingCommas": "es5", 33 - "semicolons": "always", 34 - "arrowParentheses": "always", 35 - "bracketSameLine": false, 36 - "quoteStyle": "single", 37 - "attributePosition": "auto", 38 - "bracketSpacing": true 39 - } 40 - }, 41 - "overrides": [ 42 - { 43 - "includes": ["**/*.json", "**/*.toml", "**/*.yml"], 44 - "formatter": { "indentStyle": "space" } 45 - } 46 - ] 47 - }
-15
build.preset.ts
··· 1 - import { definePreset } from 'unbuild'; 2 - 3 - // @see https://github.com/unjs/unbuild 4 - export default definePreset({ 5 - clean: true, 6 - declaration: 'node16', 7 - sourcemap: true, 8 - rollup: { 9 - emitCJS: false, 10 - inlineDependencies: true, 11 - esbuild: { 12 - minify: true, 13 - }, 14 - }, 15 - });
+4 -9
package.json
··· 3 3 "private": true, 4 4 "type": "module", 5 5 "scripts": { 6 - "stub": "pnpm -r run build --stub", 7 6 "build": "pnpm --filter \"@clack/*\" run build", 8 7 "start": "pnpm run dev", 9 8 "dev": "pnpm --filter @example/changesets run start", 10 - "format": "biome check --write", 11 - "lint": "biome lint --write --unsafe", 12 - "types": "tsc --noEmit", 13 - "deps": "pnpm exec knip --production", 9 + "format": "bsh format", 10 + "lint": "pnpm -r run lint", 14 11 "test": "pnpm --color -r run test", 15 12 "pretest": "pnpm run build" 16 13 }, 17 14 "devDependencies": { 18 - "@biomejs/biome": "^2.1.2", 15 + "@bomb.sh/tools": "^0.3.0", 19 16 "@changesets/cli": "^2.29.5", 20 17 "@types/node": "^24.1.0", 21 18 "jsr": "^0.13.4", 22 - "knip": "^5.62.0", 23 - "typescript": "^5.8.3", 24 - "unbuild": "^3.6.0" 19 + "typescript": "^5.8.3" 25 20 }, 26 21 "packageManager": "pnpm@9.14.2", 27 22 "volta": {
-7
packages/core/build.config.ts
··· 1 - import { defineBuildConfig } from 'unbuild'; 2 - 3 - // @see https://github.com/unjs/unbuild 4 - export default defineBuildConfig({ 5 - preset: '../../build.preset', 6 - entries: ['src/index'], 7 - });
+3 -2
packages/core/package.json
··· 48 48 "license": "MIT", 49 49 "packageManager": "pnpm@9.14.2", 50 50 "scripts": { 51 - "build": "unbuild", 51 + "build": "bsh build", 52 52 "prepack": "pnpm build", 53 - "test": "vitest run" 53 + "test": "bsh test", 54 + "lint": "bsh lint" 54 55 }, 55 56 "dependencies": { 56 57 "fast-wrap-ansi": "^0.1.3",
-6
packages/prompts/build.config.ts
··· 1 - import { defineBuildConfig } from 'unbuild'; 2 - 3 - export default defineBuildConfig({ 4 - preset: '../../build.preset', 5 - entries: ['src/index'], 6 - });
+3 -2
packages/prompts/package.json
··· 48 48 ], 49 49 "packageManager": "pnpm@9.14.2", 50 50 "scripts": { 51 - "build": "unbuild", 51 + "build": "bsh build", 52 52 "prepack": "pnpm build", 53 - "test": "vitest run" 53 + "test": "bsh test", 54 + "lint": "bsh lint" 54 55 }, 55 56 "dependencies": { 56 57 "@clack/core": "workspace:*",
-10
packages/prompts/vitest.config.ts
··· 1 - import { defineConfig } from 'vitest/config'; 2 - 3 - export default defineConfig({ 4 - test: { 5 - env: { 6 - FORCE_COLOR: '1', 7 - }, 8 - snapshotSerializers: ['vitest-ansi-serializer'], 9 - }, 10 - });
+1362 -1266
pnpm-lock.yaml
··· 8 8 9 9 .: 10 10 devDependencies: 11 - '@biomejs/biome': 12 - specifier: ^2.1.2 13 - version: 2.1.2 11 + '@bomb.sh/tools': 12 + specifier: ^0.3.0 13 + version: 0.3.0(@types/node@24.1.0)(jiti@2.6.1)(oxc-resolver@11.19.1)(typescript@5.8.3)(yaml@2.8.3) 14 14 '@changesets/cli': 15 15 specifier: ^2.29.5 16 16 version: 2.29.5 ··· 20 20 jsr: 21 21 specifier: ^0.13.4 22 22 version: 0.13.4 23 - knip: 24 - specifier: ^5.62.0 25 - version: 5.62.0(@types/node@24.1.0)(typescript@5.8.3) 26 23 typescript: 27 24 specifier: ^5.8.3 28 25 version: 5.8.3 29 - unbuild: 30 - specifier: ^3.6.0 31 - version: 3.6.0(typescript@5.8.3) 32 26 33 27 examples/basic: 34 28 dependencies: ··· 69 63 devDependencies: 70 64 vitest: 71 65 specifier: ^3.2.4 72 - version: 3.2.4(@types/node@24.1.0)(jiti@2.5.0) 66 + version: 3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 73 67 74 68 packages/prompts: 75 69 dependencies: ··· 94 88 version: 4.17.2 95 89 vitest: 96 90 specifier: ^3.2.4 97 - version: 3.2.4(@types/node@24.1.0)(jiti@2.5.0) 91 + version: 3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 98 92 vitest-ansi-serializer: 99 93 specifier: ^0.1.2 100 - version: 0.1.2(vitest@3.2.4(@types/node@24.1.0)(jiti@2.5.0)) 94 + version: 0.1.2(vitest@3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3)) 101 95 102 96 packages: 103 97 104 - '@babel/code-frame@7.26.2': 105 - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 106 - engines: {node: '>=6.9.0'} 98 + '@babel/generator@8.0.0-rc.2': 99 + resolution: {integrity: sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==} 100 + engines: {node: ^20.19.0 || >=22.12.0} 101 + 102 + '@babel/helper-string-parser@8.0.0-rc.3': 103 + resolution: {integrity: sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==} 104 + engines: {node: ^20.19.0 || >=22.12.0} 105 + 106 + '@babel/helper-validator-identifier@8.0.0-rc.2': 107 + resolution: {integrity: sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==} 108 + engines: {node: ^20.19.0 || >=22.12.0} 107 109 108 - '@babel/helper-validator-identifier@7.25.9': 109 - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 110 - engines: {node: '>=6.9.0'} 110 + '@babel/parser@8.0.0-rc.2': 111 + resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==} 112 + engines: {node: ^20.19.0 || >=22.12.0} 113 + hasBin: true 111 114 112 115 '@babel/runtime@7.28.2': 113 116 resolution: {integrity: sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==} 114 117 engines: {node: '>=6.9.0'} 115 118 116 - '@biomejs/biome@2.1.2': 117 - resolution: {integrity: sha512-yq8ZZuKuBVDgAS76LWCfFKHSYIAgqkxVB3mGVVpOe2vSkUTs7xG46zXZeNPRNVjiJuw0SZ3+J2rXiYx0RUpfGg==} 118 - engines: {node: '>=14.21.3'} 119 - hasBin: true 119 + '@babel/types@8.0.0-rc.2': 120 + resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==} 121 + engines: {node: ^20.19.0 || >=22.12.0} 120 122 121 - '@biomejs/cli-darwin-arm64@2.1.2': 122 - resolution: {integrity: sha512-leFAks64PEIjc7MY/cLjE8u5OcfBKkcDB0szxsWUB4aDfemBep1WVKt0qrEyqZBOW8LPHzrFMyDl3FhuuA0E7g==} 123 - engines: {node: '>=14.21.3'} 124 - cpu: [arm64] 125 - os: [darwin] 123 + '@bomb.sh/args@0.3.1': 124 + resolution: {integrity: sha512-CwxKrfgcorUPP6KfYD59aRdBYWBTsfsxT+GmoLVnKo5Tmyoqbpo0UNcjngRMyU+6tiPbd18RuIYxhgAn44wU/Q==} 126 125 127 - '@biomejs/cli-darwin-x64@2.1.2': 128 - resolution: {integrity: sha512-Nmmv7wRX5Nj7lGmz0FjnWdflJg4zii8Ivruas6PBKzw5SJX/q+Zh2RfnO+bBnuKLXpj8kiI2x2X12otpH6a32A==} 129 - engines: {node: '>=14.21.3'} 130 - cpu: [x64] 131 - os: [darwin] 132 - 133 - '@biomejs/cli-linux-arm64-musl@2.1.2': 134 - resolution: {integrity: sha512-qgHvafhjH7Oca114FdOScmIKf1DlXT1LqbOrrbR30kQDLFPEOpBG0uzx6MhmsrmhGiCFCr2obDamu+czk+X0HQ==} 135 - engines: {node: '>=14.21.3'} 136 - cpu: [arm64] 137 - os: [linux] 138 - 139 - '@biomejs/cli-linux-arm64@2.1.2': 140 - resolution: {integrity: sha512-NWNy2Diocav61HZiv2enTQykbPP/KrA/baS7JsLSojC7Xxh2nl9IczuvE5UID7+ksRy2e7yH7klm/WkA72G1dw==} 141 - engines: {node: '>=14.21.3'} 142 - cpu: [arm64] 143 - os: [linux] 144 - 145 - '@biomejs/cli-linux-x64-musl@2.1.2': 146 - resolution: {integrity: sha512-xlB3mU14ZUa3wzLtXfmk2IMOGL+S0aHFhSix/nssWS/2XlD27q+S6f0dlQ8WOCbYoXcuz8BCM7rCn2lxdTrlQA==} 147 - engines: {node: '>=14.21.3'} 148 - cpu: [x64] 149 - os: [linux] 150 - 151 - '@biomejs/cli-linux-x64@2.1.2': 152 - resolution: {integrity: sha512-Km/UYeVowygTjpX6sGBzlizjakLoMQkxWbruVZSNE6osuSI63i4uCeIL+6q2AJlD3dxoiBJX70dn1enjQnQqwA==} 153 - engines: {node: '>=14.21.3'} 154 - cpu: [x64] 155 - os: [linux] 156 - 157 - '@biomejs/cli-win32-arm64@2.1.2': 158 - resolution: {integrity: sha512-G8KWZli5ASOXA3yUQgx+M4pZRv3ND16h77UsdunUL17uYpcL/UC7RkWTdkfvMQvogVsAuz5JUcBDjgZHXxlKoA==} 159 - engines: {node: '>=14.21.3'} 160 - cpu: [arm64] 161 - os: [win32] 162 - 163 - '@biomejs/cli-win32-x64@2.1.2': 164 - resolution: {integrity: sha512-9zajnk59PMpjBkty3bK2IrjUsUHvqe9HWwyAWQBjGLE7MIBjbX2vwv1XPEhmO2RRuGoTkVx3WCanHrjAytICLA==} 165 - engines: {node: '>=14.21.3'} 166 - cpu: [x64] 167 - os: [win32] 126 + '@bomb.sh/tools@0.3.0': 127 + resolution: {integrity: sha512-aAbJCo7h+AceQGSGJ82bTRurYQflnbux+juuO1sSUp2c3jqs5azXbD9M61zbqGzJC4BQwAEuOAb5zqDnV+ijqQ==} 128 + hasBin: true 168 129 169 130 '@changesets/apply-release-plan@7.0.12': 170 131 resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==} ··· 221 182 '@changesets/write@0.4.0': 222 183 resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==} 223 184 224 - '@emnapi/core@1.4.5': 225 - resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} 185 + '@emnapi/core@1.9.1': 186 + resolution: {integrity: sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==} 226 187 227 - '@emnapi/runtime@1.4.5': 228 - resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} 188 + '@emnapi/runtime@1.9.1': 189 + resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==} 229 190 230 - '@emnapi/wasi-threads@1.0.4': 231 - resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} 191 + '@emnapi/wasi-threads@1.2.0': 192 + resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==} 232 193 233 194 '@esbuild/aix-ppc64@0.25.8': 234 195 resolution: {integrity: sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==} ··· 386 347 cpu: [x64] 387 348 os: [win32] 388 349 350 + '@humanfs/core@0.19.1': 351 + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 352 + engines: {node: '>=18.18.0'} 353 + 354 + '@humanfs/node@0.16.7': 355 + resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==} 356 + engines: {node: '>=18.18.0'} 357 + 358 + '@humanfs/types@0.15.0': 359 + resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==} 360 + engines: {node: '>=18.18.0'} 361 + 362 + '@humanwhocodes/retry@0.4.3': 363 + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} 364 + engines: {node: '>=18.18'} 365 + 366 + '@jridgewell/gen-mapping@0.3.13': 367 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 368 + 369 + '@jridgewell/resolve-uri@3.1.2': 370 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 371 + engines: {node: '>=6.0.0'} 372 + 389 373 '@jridgewell/sourcemap-codec@1.5.0': 390 374 resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 391 375 376 + '@jridgewell/sourcemap-codec@1.5.5': 377 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 378 + 379 + '@jridgewell/trace-mapping@0.3.31': 380 + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 381 + 392 382 '@jsonjoy.com/base64@1.1.2': 393 383 resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==} 394 384 engines: {node: '>=10.0'} ··· 413 403 '@manypkg/get-packages@1.1.3': 414 404 resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} 415 405 416 - '@napi-rs/wasm-runtime@1.0.1': 417 - resolution: {integrity: sha512-KVlQ/jgywZpixGCKMNwxStmmbYEMyokZpCf2YuIChhfJA2uqfAKNEM8INz7zzTo55iEXfBhIIs3VqYyqzDLj8g==} 406 + '@napi-rs/wasm-runtime@1.1.1': 407 + resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==} 418 408 419 409 '@nodelib/fs.scandir@2.1.5': 420 410 resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} ··· 428 418 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 429 419 engines: {node: '>= 8'} 430 420 431 - '@oxc-resolver/binding-android-arm-eabi@11.6.0': 432 - resolution: {integrity: sha512-UJTf5uZs919qavt9Btvbzkr3eaUu4d+FXBri8AB2BtOezriaTTUvArab2K9fdACQ4yFggTD5ews1l19V/6SW2Q==} 421 + '@oxc-project/types@0.122.0': 422 + resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==} 423 + 424 + '@oxc-resolver/binding-android-arm-eabi@11.19.1': 425 + resolution: {integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==} 433 426 cpu: [arm] 434 427 os: [android] 435 428 436 - '@oxc-resolver/binding-android-arm64@11.6.0': 437 - resolution: {integrity: sha512-v17j1WLEAIlyc+6JOWPXcky7dkU3fN8nHTP8KSK05zkkBO0t28R3Q0udmNBiJtVSnw4EFB/fy/3Mu2ItpG6bVQ==} 429 + '@oxc-resolver/binding-android-arm64@11.19.1': 430 + resolution: {integrity: sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==} 438 431 cpu: [arm64] 439 432 os: [android] 440 433 441 - '@oxc-resolver/binding-darwin-arm64@11.6.0': 442 - resolution: {integrity: sha512-ZrU+qd5AKe8s7PZDLCHY23UpbGn1RAkcNd4JYjOTnX22XEjSqLvyC6pCMngTyfgGVJ4zXFubBkRzt/k3xOjNlQ==} 434 + '@oxc-resolver/binding-darwin-arm64@11.19.1': 435 + resolution: {integrity: sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==} 443 436 cpu: [arm64] 444 437 os: [darwin] 445 438 446 - '@oxc-resolver/binding-darwin-x64@11.6.0': 447 - resolution: {integrity: sha512-qBIlX0X0RSxQHcXQnFpBGKxrDVtj7OdpWFGmrcR3NcndVjZ/wJRPST5uTTM83NfsHyuUeOi/vRZjmDrthvhnSQ==} 439 + '@oxc-resolver/binding-darwin-x64@11.19.1': 440 + resolution: {integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==} 448 441 cpu: [x64] 449 442 os: [darwin] 450 443 451 - '@oxc-resolver/binding-freebsd-x64@11.6.0': 452 - resolution: {integrity: sha512-tTyMlHHNhbkq/oEP/fM8hPZ6lqntHIz6EfOt577/lslrwxC5a/ii0lOOHjPuQtkurpyUBWYPs7Z17EgrZulc4Q==} 444 + '@oxc-resolver/binding-freebsd-x64@11.19.1': 445 + resolution: {integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==} 453 446 cpu: [x64] 454 447 os: [freebsd] 455 448 456 - '@oxc-resolver/binding-linux-arm-gnueabihf@11.6.0': 457 - resolution: {integrity: sha512-tYinHy5k9/rujo21mG2jZckJJD7fsceNDl5HOl/eh5NPjSt2vXQv181PVKeITw3+3i+gI1d666w5EtgpiCegRA==} 449 + '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1': 450 + resolution: {integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==} 458 451 cpu: [arm] 459 452 os: [linux] 460 453 461 - '@oxc-resolver/binding-linux-arm-musleabihf@11.6.0': 462 - resolution: {integrity: sha512-aOlGlSiT9fBgSyiIWvSxbyzaBx3XrgCy6UJRrqBkIvMO9D7W90JmV0RsiLua4w43zJSSrfuQQWqmFCwgIib3Iw==} 454 + '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1': 455 + resolution: {integrity: sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==} 463 456 cpu: [arm] 464 457 os: [linux] 465 458 466 - '@oxc-resolver/binding-linux-arm64-gnu@11.6.0': 467 - resolution: {integrity: sha512-EZ/OuxZA9qQoAANBDb9V4krfYXU3MC+LZ9qY+cE0yMYMIxm7NT5AdR0OaRQqfa3tWIbina1VF7FaMR6rpKvmlA==} 459 + '@oxc-resolver/binding-linux-arm64-gnu@11.19.1': 460 + resolution: {integrity: sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==} 468 461 cpu: [arm64] 469 462 os: [linux] 470 463 471 - '@oxc-resolver/binding-linux-arm64-musl@11.6.0': 472 - resolution: {integrity: sha512-NpF7sID4NnPetpqDk2eOu6TPUt381Qlpos8nGDcSkAluqSsSGFOPfETEB5VbJeqNVQbepEQX9mOxZygFpW0+nA==} 464 + '@oxc-resolver/binding-linux-arm64-musl@11.19.1': 465 + resolution: {integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==} 473 466 cpu: [arm64] 474 467 os: [linux] 475 468 476 - '@oxc-resolver/binding-linux-ppc64-gnu@11.6.0': 477 - resolution: {integrity: sha512-Sqn9Ha4rxCCpjpfkFi9f9y9phsaBnseaKw+JqHgBQoNMToe+/20A1jwIu9OX+484UuLpduM+wLydgngjnoi7Dg==} 469 + '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1': 470 + resolution: {integrity: sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==} 478 471 cpu: [ppc64] 479 472 os: [linux] 480 473 481 - '@oxc-resolver/binding-linux-riscv64-gnu@11.6.0': 482 - resolution: {integrity: sha512-eFoNcPhImp1FLAQf5U3Nlph4WNWEsdWohSThSTtKPrX+jhPZiVsj3iBC9gjaRwq2Ez4QhP1x7/PSL6mtKnS6rw==} 474 + '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1': 475 + resolution: {integrity: sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==} 483 476 cpu: [riscv64] 484 477 os: [linux] 485 478 486 - '@oxc-resolver/binding-linux-riscv64-musl@11.6.0': 487 - resolution: {integrity: sha512-WQw3CT10aJg7SIc/X1QPrh6lTx2wOLg5IaCu/+Mqlxf1nZBEW3+tV/+y3PzXG0MCRhq7FDTiHaW8MBVAwBineQ==} 479 + '@oxc-resolver/binding-linux-riscv64-musl@11.19.1': 480 + resolution: {integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==} 488 481 cpu: [riscv64] 489 482 os: [linux] 490 483 491 - '@oxc-resolver/binding-linux-s390x-gnu@11.6.0': 492 - resolution: {integrity: sha512-p5qcPr/EtGJ2PpeeArL3ifZU/YljWLypeu38+e19z2dyPv8Aoby8tjM+D1VTI8+suMwTkseyove/uu6zIUiqRw==} 484 + '@oxc-resolver/binding-linux-s390x-gnu@11.19.1': 485 + resolution: {integrity: sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==} 493 486 cpu: [s390x] 494 487 os: [linux] 495 488 496 - '@oxc-resolver/binding-linux-x64-gnu@11.6.0': 497 - resolution: {integrity: sha512-/9M/ieoY5v54k3UjtF9Vw43WQ4bBfed+qRL1uIpFbZcO2qi5aXwVMYnjSd/BoaRtDs5JFV9iOjzHwpw0zdOYZA==} 489 + '@oxc-resolver/binding-linux-x64-gnu@11.19.1': 490 + resolution: {integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==} 498 491 cpu: [x64] 499 492 os: [linux] 500 493 501 - '@oxc-resolver/binding-linux-x64-musl@11.6.0': 502 - resolution: {integrity: sha512-HMtWWHTU7zbwceTFZPAPMMhhWR1nNO2OR60r6i55VprCMvttTWPQl7uLP0AUtAPoU9B/2GqP48rzOuaaKhHnYw==} 494 + '@oxc-resolver/binding-linux-x64-musl@11.19.1': 495 + resolution: {integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==} 503 496 cpu: [x64] 504 497 os: [linux] 505 498 506 - '@oxc-resolver/binding-wasm32-wasi@11.6.0': 507 - resolution: {integrity: sha512-rDAwr2oqmnG/6LSZJwvO3Bmt/RC3/Q6myyaUmg3P7GhZDyFPrWJONB7NFhPwU2Q4JIpA73ST4LBdhzmGxMTmrw==} 499 + '@oxc-resolver/binding-openharmony-arm64@11.19.1': 500 + resolution: {integrity: sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==} 501 + cpu: [arm64] 502 + os: [openharmony] 503 + 504 + '@oxc-resolver/binding-wasm32-wasi@11.19.1': 505 + resolution: {integrity: sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==} 508 506 engines: {node: '>=14.0.0'} 509 507 cpu: [wasm32] 510 508 511 - '@oxc-resolver/binding-win32-arm64-msvc@11.6.0': 512 - resolution: {integrity: sha512-COzy8weljZo2lObWl6ZzW6ypDx1v1rtLdnt7JPjTUARikK1gMzlz9kouQhCtCegNFILx2L2oWw7714fnchqujw==} 509 + '@oxc-resolver/binding-win32-arm64-msvc@11.19.1': 510 + resolution: {integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==} 511 + cpu: [arm64] 512 + os: [win32] 513 + 514 + '@oxc-resolver/binding-win32-ia32-msvc@11.19.1': 515 + resolution: {integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==} 516 + cpu: [ia32] 517 + os: [win32] 518 + 519 + '@oxc-resolver/binding-win32-x64-msvc@11.19.1': 520 + resolution: {integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==} 521 + cpu: [x64] 522 + os: [win32] 523 + 524 + '@oxfmt/binding-android-arm-eabi@0.36.0': 525 + resolution: {integrity: sha512-Z4yVHJWx/swHHjtr0dXrBZb6LxS+qNz1qdza222mWwPTUK4L790+5i3LTgjx3KYGBzcYpjaiZBw4vOx94dH7MQ==} 526 + engines: {node: ^20.19.0 || >=22.12.0} 527 + cpu: [arm] 528 + os: [android] 529 + 530 + '@oxfmt/binding-android-arm64@0.36.0': 531 + resolution: {integrity: sha512-3ElCJRFNPQl7jexf2CAa9XmAm8eC5JPrIDSjc9jSchkVSFTEqyL0NtZinBB2h1a4i4JgP1oGl/5G5n8YR4FN8Q==} 532 + engines: {node: ^20.19.0 || >=22.12.0} 533 + cpu: [arm64] 534 + os: [android] 535 + 536 + '@oxfmt/binding-darwin-arm64@0.36.0': 537 + resolution: {integrity: sha512-nak4znWCqIExKhYSY/mz/lWsqWIpdsS7o0+SRzXR1Q0m7GrMcG1UrF1pS7TLGZhhkf7nTfEF7q6oZzJiodRDuw==} 538 + engines: {node: ^20.19.0 || >=22.12.0} 539 + cpu: [arm64] 540 + os: [darwin] 541 + 542 + '@oxfmt/binding-darwin-x64@0.36.0': 543 + resolution: {integrity: sha512-V4GP96thDnpKx6ADnMDnhIXNdtV+Ql9D4HUU+a37VTeVbs5qQSF/s6hhUP1b3xUqU7iRcwh72jUU2Y12rtGHAw==} 544 + engines: {node: ^20.19.0 || >=22.12.0} 545 + cpu: [x64] 546 + os: [darwin] 547 + 548 + '@oxfmt/binding-freebsd-x64@0.36.0': 549 + resolution: {integrity: sha512-/xapWCADfI5wrhxpEUjhI9fnw7MV5BUZizVa8e24n3VSK6A3Y1TB/ClOP1tfxNspykFKXp4NBWl6NtDJP3osqQ==} 550 + engines: {node: ^20.19.0 || >=22.12.0} 551 + cpu: [x64] 552 + os: [freebsd] 553 + 554 + '@oxfmt/binding-linux-arm-gnueabihf@0.36.0': 555 + resolution: {integrity: sha512-1lOmv61XMFIH5uNm27620kRRzWt/RK6tdn250BRDoG9W7OXGOQ5UyI1HVT+SFkoOoKztBiinWgi68+NA1MjBVQ==} 556 + engines: {node: ^20.19.0 || >=22.12.0} 557 + cpu: [arm] 558 + os: [linux] 559 + 560 + '@oxfmt/binding-linux-arm-musleabihf@0.36.0': 561 + resolution: {integrity: sha512-vMH23AskdR1ujUS9sPck2Df9rBVoZUnCVY86jisILzIQ/QQ/yKUTi7tgnIvydPx7TyB/48wsQ5QMr5Knq5p/aw==} 562 + engines: {node: ^20.19.0 || >=22.12.0} 563 + cpu: [arm] 564 + os: [linux] 565 + 566 + '@oxfmt/binding-linux-arm64-gnu@0.36.0': 567 + resolution: {integrity: sha512-Hy1V+zOBHpBiENRx77qrUTt5aPDHeCASRc8K5KwwAHkX2AKP0nV89eL17hsZrE9GmnXFjsNmd80lyf7aRTXsbw==} 568 + engines: {node: ^20.19.0 || >=22.12.0} 569 + cpu: [arm64] 570 + os: [linux] 571 + 572 + '@oxfmt/binding-linux-arm64-musl@0.36.0': 573 + resolution: {integrity: sha512-SPGLJkOIHSIC6ABUQ5V8NqJpvYhMJueJv26NYqfCnwi/Mn6A61amkpJJ9Suy0Nmvs+OWESJpcebrBUbXPGZyQQ==} 574 + engines: {node: ^20.19.0 || >=22.12.0} 575 + cpu: [arm64] 576 + os: [linux] 577 + 578 + '@oxfmt/binding-linux-ppc64-gnu@0.36.0': 579 + resolution: {integrity: sha512-3EuoyB8x9x8ysYJjbEO/M9fkSk72zQKnXCvpZMDHXlnY36/1qMp55Nm0PrCwjGO/1pen5hdOVkz9WmP3nAp2IQ==} 580 + engines: {node: ^20.19.0 || >=22.12.0} 581 + cpu: [ppc64] 582 + os: [linux] 583 + 584 + '@oxfmt/binding-linux-riscv64-gnu@0.36.0': 585 + resolution: {integrity: sha512-MpY3itLwpGh8dnywtrZtaZ604T1m715SydCKy0+qTxetv+IHzuA+aO/AGzrlzUNYZZmtWtmDBrChZGibvZxbRQ==} 586 + engines: {node: ^20.19.0 || >=22.12.0} 587 + cpu: [riscv64] 588 + os: [linux] 589 + 590 + '@oxfmt/binding-linux-riscv64-musl@0.36.0': 591 + resolution: {integrity: sha512-mmDhe4Vtx+XwQPRPn/V25+APnkApYgZ23q+6GVsNYY98pf3aU0aI3Me96pbRs/AfJ1jIiGC+/6q71FEu8dHcHw==} 592 + engines: {node: ^20.19.0 || >=22.12.0} 593 + cpu: [riscv64] 594 + os: [linux] 595 + 596 + '@oxfmt/binding-linux-s390x-gnu@0.36.0': 597 + resolution: {integrity: sha512-AYXhU+DmNWLSnvVwkHM92fuYhogtVHab7UQrPNaDf1sxadugg9gWVmcgJDlIwxJdpk5CVW/TFvwUKwI432zhhA==} 598 + engines: {node: ^20.19.0 || >=22.12.0} 599 + cpu: [s390x] 600 + os: [linux] 601 + 602 + '@oxfmt/binding-linux-x64-gnu@0.36.0': 603 + resolution: {integrity: sha512-H16QhhQ3usoakMleiAAQ2mg0NsBDAdyE9agUgfC8IHHh3jZEbr0rIKwjEqwbOHK5M0EmfhJmr+aGO/MgZPsneA==} 604 + engines: {node: ^20.19.0 || >=22.12.0} 605 + cpu: [x64] 606 + os: [linux] 607 + 608 + '@oxfmt/binding-linux-x64-musl@0.36.0': 609 + resolution: {integrity: sha512-EFFGkixA39BcmHiCe2ECdrq02D6FCve5ka6ObbvrheXl4V+R0U/E+/uLyVx1X65LW8TA8QQHdnbdDallRekohw==} 610 + engines: {node: ^20.19.0 || >=22.12.0} 611 + cpu: [x64] 612 + os: [linux] 613 + 614 + '@oxfmt/binding-openharmony-arm64@0.36.0': 615 + resolution: {integrity: sha512-zr/t369wZWFOj1qf06Z5gGNjFymfUNDrxKMmr7FKiDRVI1sNsdKRCuRL4XVjtcptKQ+ao3FfxLN1vrynivmCYg==} 616 + engines: {node: ^20.19.0 || >=22.12.0} 617 + cpu: [arm64] 618 + os: [openharmony] 619 + 620 + '@oxfmt/binding-win32-arm64-msvc@0.36.0': 621 + resolution: {integrity: sha512-FxO7UksTv8h4olzACgrqAXNF6BP329+H322323iDrMB5V/+a1kcAw07fsOsUmqNrb9iJBsCQgH/zqcqp5903ag==} 622 + engines: {node: ^20.19.0 || >=22.12.0} 623 + cpu: [arm64] 624 + os: [win32] 625 + 626 + '@oxfmt/binding-win32-ia32-msvc@0.36.0': 627 + resolution: {integrity: sha512-OjoMQ89H01M0oLMfr/CPNH1zi48ZIwxAKObUl57oh7ssUBNDp/2Vjf7E1TQ8M4oj4VFQ/byxl2SmcPNaI2YNDg==} 628 + engines: {node: ^20.19.0 || >=22.12.0} 629 + cpu: [ia32] 630 + os: [win32] 631 + 632 + '@oxfmt/binding-win32-x64-msvc@0.36.0': 633 + resolution: {integrity: sha512-MoyeQ9S36ZTz/4bDhOKJgOBIDROd4dQ5AkT9iezhEaUBxAPdNX9Oq0jD8OSnCj3G4wam/XNxVWKMA52kmzmPtQ==} 634 + engines: {node: ^20.19.0 || >=22.12.0} 635 + cpu: [x64] 636 + os: [win32] 637 + 638 + '@oxlint/binding-android-arm-eabi@1.57.0': 639 + resolution: {integrity: sha512-C7EiyfAJG4B70496eV543nKiq5cH0o/xIh/ufbjQz3SIvHhlDDsyn+mRFh+aW8KskTyUpyH2LGWL8p2oN6bl1A==} 640 + engines: {node: ^20.19.0 || >=22.12.0} 641 + cpu: [arm] 642 + os: [android] 643 + 644 + '@oxlint/binding-android-arm64@1.57.0': 645 + resolution: {integrity: sha512-9i80AresjZ/FZf5xK8tKFbhQnijD4s1eOZw6/FHUwD59HEZbVLRc2C88ADYJfLZrF5XofWDiRX/Ja9KefCLy7w==} 646 + engines: {node: ^20.19.0 || >=22.12.0} 647 + cpu: [arm64] 648 + os: [android] 649 + 650 + '@oxlint/binding-darwin-arm64@1.57.0': 651 + resolution: {integrity: sha512-0eUfhRz5L2yKa9I8k3qpyl37XK3oBS5BvrgdVIx599WZK63P8sMbg+0s4IuxmIiZuBK68Ek+Z+gcKgeYf0otsg==} 652 + engines: {node: ^20.19.0 || >=22.12.0} 653 + cpu: [arm64] 654 + os: [darwin] 655 + 656 + '@oxlint/binding-darwin-x64@1.57.0': 657 + resolution: {integrity: sha512-UvrSuzBaYOue+QMAcuDITe0k/Vhj6KZGjfnI6x+NkxBTke/VoM7ZisaxgNY0LWuBkTnd1OmeQfEQdQ48fRjkQg==} 658 + engines: {node: ^20.19.0 || >=22.12.0} 659 + cpu: [x64] 660 + os: [darwin] 661 + 662 + '@oxlint/binding-freebsd-x64@1.57.0': 663 + resolution: {integrity: sha512-wtQq0dCoiw4bUwlsNVDJJ3pxJA218fOezpgtLKrbQqUtQJcM9yP8z+I9fu14aHg0uyAxIY+99toL6uBa2r7nxA==} 664 + engines: {node: ^20.19.0 || >=22.12.0} 665 + cpu: [x64] 666 + os: [freebsd] 667 + 668 + '@oxlint/binding-linux-arm-gnueabihf@1.57.0': 669 + resolution: {integrity: sha512-qxFWl2BBBFcT4djKa+OtMdnLgoHEJXpqjyGwz8OhW35ImoCwR5qtAGqApNYce5260FQqoAHW8S8eZTjiX67Tsg==} 670 + engines: {node: ^20.19.0 || >=22.12.0} 671 + cpu: [arm] 672 + os: [linux] 673 + 674 + '@oxlint/binding-linux-arm-musleabihf@1.57.0': 675 + resolution: {integrity: sha512-SQoIsBU7J0bDW15/f0/RvxHfY3Y0+eB/caKBQtNFbuerTiA6JCYx9P1MrrFTwY2dTm/lMgTSgskvCEYk2AtG/Q==} 676 + engines: {node: ^20.19.0 || >=22.12.0} 677 + cpu: [arm] 678 + os: [linux] 679 + 680 + '@oxlint/binding-linux-arm64-gnu@1.57.0': 681 + resolution: {integrity: sha512-jqxYd1W6WMeozsCmqe9Rzbu3SRrGTyGDAipRlRggetyYbUksJqJKvUNTQtZR/KFoJPb+grnSm5SHhdWrywv3RQ==} 682 + engines: {node: ^20.19.0 || >=22.12.0} 683 + cpu: [arm64] 684 + os: [linux] 685 + 686 + '@oxlint/binding-linux-arm64-musl@1.57.0': 687 + resolution: {integrity: sha512-i66WyEPVEvq9bxRUCJ/MP5EBfnTDN3nhwEdFZFTO5MmLLvzngfWEG3NSdXQzTT3vk5B9i6C2XSIYBh+aG6uqyg==} 688 + engines: {node: ^20.19.0 || >=22.12.0} 689 + cpu: [arm64] 690 + os: [linux] 691 + 692 + '@oxlint/binding-linux-ppc64-gnu@1.57.0': 693 + resolution: {integrity: sha512-oMZDCwz4NobclZU3pH+V1/upVlJZiZvne4jQP+zhJwt+lmio4XXr4qG47CehvrW1Lx2YZiIHuxM2D4YpkG3KVA==} 694 + engines: {node: ^20.19.0 || >=22.12.0} 695 + cpu: [ppc64] 696 + os: [linux] 697 + 698 + '@oxlint/binding-linux-riscv64-gnu@1.57.0': 699 + resolution: {integrity: sha512-uoBnjJ3MMEBbfnWC1jSFr7/nSCkcQYa72NYoNtLl1imshDnWSolYCjzb8LVCwYCCfLJXD+0gBLD7fyC14c0+0g==} 700 + engines: {node: ^20.19.0 || >=22.12.0} 701 + cpu: [riscv64] 702 + os: [linux] 703 + 704 + '@oxlint/binding-linux-riscv64-musl@1.57.0': 705 + resolution: {integrity: sha512-BdrwD7haPZ8a9KrZhKJRSj6jwCor+Z8tHFZ3PT89Y3Jq5v3LfMfEePeAmD0LOTWpiTmzSzdmyw9ijneapiVHKQ==} 706 + engines: {node: ^20.19.0 || >=22.12.0} 707 + cpu: [riscv64] 708 + os: [linux] 709 + 710 + '@oxlint/binding-linux-s390x-gnu@1.57.0': 711 + resolution: {integrity: sha512-BNs+7ZNsRstVg2tpNxAXfMX/Iv5oZh204dVyb8Z37+/gCh+yZqNTlg6YwCLIMPSk5wLWIGOaQjT0GUOahKYImw==} 712 + engines: {node: ^20.19.0 || >=22.12.0} 713 + cpu: [s390x] 714 + os: [linux] 715 + 716 + '@oxlint/binding-linux-x64-gnu@1.57.0': 717 + resolution: {integrity: sha512-AghS18w+XcENcAX0+BQGLiqjpqpaxKJa4cWWP0OWNLacs27vHBxu7TYkv9LUSGe5w8lOJHeMxcYfZNOAPqw2bg==} 718 + engines: {node: ^20.19.0 || >=22.12.0} 719 + cpu: [x64] 720 + os: [linux] 721 + 722 + '@oxlint/binding-linux-x64-musl@1.57.0': 723 + resolution: {integrity: sha512-E/FV3GB8phu/Rpkhz5T96hAiJlGzn91qX5yj5gU754P5cmVGXY1Jw/VSjDSlZBCY3VHjsVLdzgdkJaomEmcNOg==} 724 + engines: {node: ^20.19.0 || >=22.12.0} 725 + cpu: [x64] 726 + os: [linux] 727 + 728 + '@oxlint/binding-openharmony-arm64@1.57.0': 729 + resolution: {integrity: sha512-xvZ2yZt0nUVfU14iuGv3V25jpr9pov5N0Wr28RXnHFxHCRxNDMtYPHV61gGLhN9IlXM96gI4pyYpLSJC5ClLCQ==} 730 + engines: {node: ^20.19.0 || >=22.12.0} 731 + cpu: [arm64] 732 + os: [openharmony] 733 + 734 + '@oxlint/binding-win32-arm64-msvc@1.57.0': 735 + resolution: {integrity: sha512-Z4D8Pd0AyHBKeazhdIXeUUy5sIS3Mo0veOlzlDECg6PhRRKgEsBJCCV1n+keUZtQ04OP+i7+itS3kOykUyNhDg==} 736 + engines: {node: ^20.19.0 || >=22.12.0} 513 737 cpu: [arm64] 514 738 os: [win32] 515 739 516 - '@oxc-resolver/binding-win32-ia32-msvc@11.6.0': 517 - resolution: {integrity: sha512-p2tMRdi91CovjLBApDPD/uEy1/5r7U6iVkfagLYDytgvj6nJ1EAxLUdXbhoe6//50IvDC/5I51nGCdxmOUiXlQ==} 740 + '@oxlint/binding-win32-ia32-msvc@1.57.0': 741 + resolution: {integrity: sha512-StOZ9nFMVKvevicbQfql6Pouu9pgbeQnu60Fvhz2S6yfMaii+wnueLnqQ5I1JPgNF0Syew4voBlAaHD13wH6tw==} 742 + engines: {node: ^20.19.0 || >=22.12.0} 518 743 cpu: [ia32] 519 744 os: [win32] 520 745 521 - '@oxc-resolver/binding-win32-x64-msvc@11.6.0': 522 - resolution: {integrity: sha512-p6b9q5TACd/y39kDK2HENXqd4lThoVrTkxdvizqd5/VwyHcoSd0cDcIEhHpxvfjc83VsODCBgB/zcjp//TlaqA==} 746 + '@oxlint/binding-win32-x64-msvc@1.57.0': 747 + resolution: {integrity: sha512-6PuxhYgth8TuW0+ABPOIkGdBYw+qYGxgIdXPHSVpiCDm+hqTTWCmC739St1Xni0DJBt8HnSHTG67i1y6gr8qrA==} 748 + engines: {node: ^20.19.0 || >=22.12.0} 523 749 cpu: [x64] 524 750 os: [win32] 525 751 526 - '@rollup/plugin-alias@5.1.1': 527 - resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} 528 - engines: {node: '>=14.0.0'} 529 - peerDependencies: 530 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 531 - peerDependenciesMeta: 532 - rollup: 533 - optional: true 752 + '@publint/pack@0.1.4': 753 + resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==} 754 + engines: {node: '>=18'} 534 755 535 - '@rollup/plugin-commonjs@28.0.6': 536 - resolution: {integrity: sha512-XSQB1K7FUU5QP+3lOQmVCE3I0FcbbNvmNT4VJSj93iUjayaARrTQeoRdiYQoftAJBLrR9t2agwAd3ekaTgHNlw==} 537 - engines: {node: '>=16.0.0 || 14 >= 14.17'} 538 - peerDependencies: 539 - rollup: ^2.68.0||^3.0.0||^4.0.0 540 - peerDependenciesMeta: 541 - rollup: 542 - optional: true 756 + '@quansync/fs@1.0.0': 757 + resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==} 543 758 544 - '@rollup/plugin-json@6.1.0': 545 - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} 546 - engines: {node: '>=14.0.0'} 547 - peerDependencies: 548 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 549 - peerDependenciesMeta: 550 - rollup: 551 - optional: true 759 + '@rolldown/binding-android-arm64@1.0.0-rc.11': 760 + resolution: {integrity: sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==} 761 + engines: {node: ^20.19.0 || >=22.12.0} 762 + cpu: [arm64] 763 + os: [android] 552 764 553 - '@rollup/plugin-node-resolve@16.0.1': 554 - resolution: {integrity: sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==} 555 - engines: {node: '>=14.0.0'} 556 - peerDependencies: 557 - rollup: ^2.78.0||^3.0.0||^4.0.0 558 - peerDependenciesMeta: 559 - rollup: 560 - optional: true 765 + '@rolldown/binding-darwin-arm64@1.0.0-rc.11': 766 + resolution: {integrity: sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==} 767 + engines: {node: ^20.19.0 || >=22.12.0} 768 + cpu: [arm64] 769 + os: [darwin] 770 + 771 + '@rolldown/binding-darwin-x64@1.0.0-rc.11': 772 + resolution: {integrity: sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==} 773 + engines: {node: ^20.19.0 || >=22.12.0} 774 + cpu: [x64] 775 + os: [darwin] 776 + 777 + '@rolldown/binding-freebsd-x64@1.0.0-rc.11': 778 + resolution: {integrity: sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==} 779 + engines: {node: ^20.19.0 || >=22.12.0} 780 + cpu: [x64] 781 + os: [freebsd] 782 + 783 + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11': 784 + resolution: {integrity: sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==} 785 + engines: {node: ^20.19.0 || >=22.12.0} 786 + cpu: [arm] 787 + os: [linux] 561 788 562 - '@rollup/plugin-replace@6.0.2': 563 - resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==} 564 - engines: {node: '>=14.0.0'} 565 - peerDependencies: 566 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 567 - peerDependenciesMeta: 568 - rollup: 569 - optional: true 789 + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11': 790 + resolution: {integrity: sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==} 791 + engines: {node: ^20.19.0 || >=22.12.0} 792 + cpu: [arm64] 793 + os: [linux] 570 794 571 - '@rollup/pluginutils@5.2.0': 572 - resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==} 795 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.11': 796 + resolution: {integrity: sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==} 797 + engines: {node: ^20.19.0 || >=22.12.0} 798 + cpu: [arm64] 799 + os: [linux] 800 + 801 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11': 802 + resolution: {integrity: sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==} 803 + engines: {node: ^20.19.0 || >=22.12.0} 804 + cpu: [ppc64] 805 + os: [linux] 806 + 807 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11': 808 + resolution: {integrity: sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==} 809 + engines: {node: ^20.19.0 || >=22.12.0} 810 + cpu: [s390x] 811 + os: [linux] 812 + 813 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.11': 814 + resolution: {integrity: sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==} 815 + engines: {node: ^20.19.0 || >=22.12.0} 816 + cpu: [x64] 817 + os: [linux] 818 + 819 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.11': 820 + resolution: {integrity: sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==} 821 + engines: {node: ^20.19.0 || >=22.12.0} 822 + cpu: [x64] 823 + os: [linux] 824 + 825 + '@rolldown/binding-openharmony-arm64@1.0.0-rc.11': 826 + resolution: {integrity: sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==} 827 + engines: {node: ^20.19.0 || >=22.12.0} 828 + cpu: [arm64] 829 + os: [openharmony] 830 + 831 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.11': 832 + resolution: {integrity: sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==} 573 833 engines: {node: '>=14.0.0'} 574 - peerDependencies: 575 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 576 - peerDependenciesMeta: 577 - rollup: 578 - optional: true 834 + cpu: [wasm32] 835 + 836 + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11': 837 + resolution: {integrity: sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==} 838 + engines: {node: ^20.19.0 || >=22.12.0} 839 + cpu: [arm64] 840 + os: [win32] 841 + 842 + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.11': 843 + resolution: {integrity: sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==} 844 + engines: {node: ^20.19.0 || >=22.12.0} 845 + cpu: [x64] 846 + os: [win32] 847 + 848 + '@rolldown/pluginutils@1.0.0-rc.11': 849 + resolution: {integrity: sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==} 579 850 580 851 '@rollup/rollup-android-arm-eabi@4.45.1': 581 852 resolution: {integrity: sha512-NEySIFvMY0ZQO+utJkgoMiCAjMrGvnbDLHvcmlA33UXJpYBCvlBEbMMtV837uCkS+plG2umfhn0T5mMAxGrlRA==} ··· 677 948 cpu: [x64] 678 949 os: [win32] 679 950 680 - '@trysound/sax@0.2.0': 681 - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} 682 - engines: {node: '>=10.13.0'} 951 + '@standard-schema/spec@1.1.0': 952 + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 683 953 684 - '@tybys/wasm-util@0.10.0': 685 - resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} 954 + '@tybys/wasm-util@0.10.1': 955 + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} 686 956 687 957 '@types/chai@5.2.2': 688 958 resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} ··· 692 962 693 963 '@types/estree@1.0.8': 694 964 resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 965 + 966 + '@types/jsesc@2.5.1': 967 + resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} 695 968 696 969 '@types/node@12.20.55': 697 970 resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} ··· 699 972 '@types/node@24.1.0': 700 973 resolution: {integrity: sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w==} 701 974 702 - '@types/resolve@1.20.2': 703 - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} 975 + '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260307.1': 976 + resolution: {integrity: sha512-VpnrMP4iDLSTT9Hg/KrHwuIHLZr5dxYPMFErfv3ZDA0tv48u2H1lBhHVVMMopCuskuX3C35EOJbxLkxCJd6zDw==} 977 + cpu: [arm64] 978 + os: [darwin] 979 + 980 + '@typescript/native-preview-darwin-x64@7.0.0-dev.20260307.1': 981 + resolution: {integrity: sha512-+4akGPxwfrPy2AYmQO1bp6CXxUVlBPrL0lSv+wY/E8vNGqwF0UtJCwAcR54ae1+k9EmoirT7Xn6LE3Io6mXntg==} 982 + cpu: [x64] 983 + os: [darwin] 984 + 985 + '@typescript/native-preview-linux-arm64@7.0.0-dev.20260307.1': 986 + resolution: {integrity: sha512-u4kXuHN2p+HeWsnTixoEOwALsCoS+n3/ukWdnV/mwyg6BKuuU69qCv3/miY6YPFtE7mUwzPdflEXsvkZJbJ/RA==} 987 + cpu: [arm64] 988 + os: [linux] 989 + 990 + '@typescript/native-preview-linux-arm@7.0.0-dev.20260307.1': 991 + resolution: {integrity: sha512-E0Pve6BjTVvPiHq9cPVQu6fbW/Qo/CEs1VN2NMILd0xzFVpVd9FIvzV+Ft6pZilu1SBcihThW3sQ92l03Cw2+Q==} 992 + cpu: [arm] 993 + os: [linux] 994 + 995 + '@typescript/native-preview-linux-x64@7.0.0-dev.20260307.1': 996 + resolution: {integrity: sha512-MzuRjTYQIS7XrJcH0As18SbaQU+rFhf9LCpXs2QeHjhXQ33wjuFDNhQeurg2eKm6A0xE0GoW9K+sKsm8bhzzPg==} 997 + cpu: [x64] 998 + os: [linux] 999 + 1000 + '@typescript/native-preview-win32-arm64@7.0.0-dev.20260307.1': 1001 + resolution: {integrity: sha512-UNZl8Q6lx1njEPU8+FNjYvqii5PtDjk6cyxmVPwwJI2Snz5T5qY6oadkUds6CJsLkt7s4UB3P5XgLu1+vwoYGw==} 1002 + cpu: [arm64] 1003 + os: [win32] 1004 + 1005 + '@typescript/native-preview-win32-x64@7.0.0-dev.20260307.1': 1006 + resolution: {integrity: sha512-aPJb4v0Df9GzWFWbO4YbLg0OjmjxZgXngkF1M746r4CgOdydWgosNPWypzzAwiliGKvCLwfAWYiV+T5Jf1vQ3g==} 1007 + cpu: [x64] 1008 + os: [win32] 1009 + 1010 + '@typescript/native-preview@7.0.0-dev.20260307.1': 1011 + resolution: {integrity: sha512-NcKdPiGjxxxdh7fLgRKTrn5hLntbt89NOodNaSrMChTfJwvLaDkgrRlnO7v5x+m7nQc87Qf1y7UoT1ZEZUBB4Q==} 1012 + hasBin: true 704 1013 705 1014 '@vitest/expect@3.2.4': 706 1015 resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} 707 1016 1017 + '@vitest/expect@4.1.1': 1018 + resolution: {integrity: sha512-xAV0fqBTk44Rn6SjJReEQkHP3RrqbJo6JQ4zZ7/uVOiJZRarBtblzrOfFIZeYUrukp2YD6snZG6IBqhOoHTm+A==} 1019 + 708 1020 '@vitest/mocker@3.2.4': 709 1021 resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} 710 1022 peerDependencies: ··· 716 1028 vite: 717 1029 optional: true 718 1030 1031 + '@vitest/mocker@4.1.1': 1032 + resolution: {integrity: sha512-h3BOylsfsCLPeceuCPAAJ+BvNwSENgJa4hXoXu4im0bs9Lyp4URc4JYK4pWLZ4pG/UQn7AT92K6IByi6rE6g3A==} 1033 + peerDependencies: 1034 + msw: ^2.4.9 1035 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 1036 + peerDependenciesMeta: 1037 + msw: 1038 + optional: true 1039 + vite: 1040 + optional: true 1041 + 719 1042 '@vitest/pretty-format@3.2.4': 720 1043 resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} 721 1044 1045 + '@vitest/pretty-format@4.1.1': 1046 + resolution: {integrity: sha512-GM+TEQN5WhOygr1lp7skeVjdLPqqWMHsfzXrcHAqZJi/lIVh63H0kaRCY8MDhNWikx19zBUK8ceaLB7X5AH9NQ==} 1047 + 722 1048 '@vitest/runner@3.2.4': 723 1049 resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} 724 1050 1051 + '@vitest/runner@4.1.1': 1052 + resolution: {integrity: sha512-f7+FPy75vN91QGWsITueq0gedwUZy1fLtHOCMeQpjs8jTekAHeKP80zfDEnhrleviLHzVSDXIWuCIOFn3D3f8A==} 1053 + 725 1054 '@vitest/snapshot@3.2.4': 726 1055 resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} 1056 + 1057 + '@vitest/snapshot@4.1.1': 1058 + resolution: {integrity: sha512-kMVSgcegWV2FibXEx9p9WIKgje58lcTbXgnJixfcg15iK8nzCXhmalL0ZLtTWLW9PH1+1NEDShiFFedB3tEgWg==} 727 1059 728 1060 '@vitest/spy@3.2.4': 729 1061 resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} 730 1062 1063 + '@vitest/spy@4.1.1': 1064 + resolution: {integrity: sha512-6Ti/KT5OVaiupdIZEuZN7l3CZcR0cxnxt70Z0//3CtwgObwA6jZhmVBA3yrXSVN3gmwjgd7oDNLlsXz526gpRA==} 1065 + 731 1066 '@vitest/utils@3.2.4': 732 1067 resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} 733 1068 734 - acorn@8.14.0: 735 - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 736 - engines: {node: '>=0.4.0'} 737 - hasBin: true 1069 + '@vitest/utils@4.1.1': 1070 + resolution: {integrity: sha512-cNxAlaB3sHoCdL6pj6yyUXv9Gry1NHNg0kFTXdvSIZXLHsqKH7chiWOkwJ5s5+d/oMwcoG9T0bKU38JZWKusrQ==} 738 1071 739 1072 ansi-colors@4.1.3: 740 1073 resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} ··· 744 1077 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 745 1078 engines: {node: '>=8'} 746 1079 1080 + ansis@4.2.0: 1081 + resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} 1082 + engines: {node: '>=14'} 1083 + 747 1084 argparse@1.0.10: 748 1085 resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 749 - 750 - argparse@2.0.1: 751 - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 752 1086 753 1087 array-union@2.1.0: 754 1088 resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} ··· 758 1092 resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 759 1093 engines: {node: '>=12'} 760 1094 761 - autoprefixer@10.4.21: 762 - resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==} 763 - engines: {node: ^10 || ^12 || >=14} 764 - hasBin: true 765 - peerDependencies: 766 - postcss: ^8.1.0 1095 + ast-kit@3.0.0-beta.1: 1096 + resolution: {integrity: sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==} 1097 + engines: {node: '>=20.19.0'} 767 1098 768 1099 better-path-resolve@1.0.0: 769 1100 resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} 770 1101 engines: {node: '>=4'} 771 1102 772 - boolbase@1.0.0: 773 - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 1103 + birpc@4.0.0: 1104 + resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} 774 1105 775 1106 braces@3.0.3: 776 1107 resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 777 1108 engines: {node: '>=8'} 778 1109 779 - browserslist@4.25.1: 780 - resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==} 781 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 782 - hasBin: true 783 - 784 1110 cac@6.7.14: 785 1111 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 786 1112 engines: {node: '>=8'} 787 1113 788 - caniuse-api@3.0.0: 789 - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} 790 - 791 - caniuse-lite@1.0.30001727: 792 - resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==} 1114 + cac@7.0.0: 1115 + resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==} 1116 + engines: {node: '>=20.19.0'} 793 1117 794 1118 chai@5.2.0: 795 1119 resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} 796 1120 engines: {node: '>=12'} 797 1121 1122 + chai@6.2.2: 1123 + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} 1124 + engines: {node: '>=18'} 1125 + 798 1126 chardet@0.7.0: 799 1127 resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 800 1128 ··· 806 1134 resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} 807 1135 engines: {node: '>=8'} 808 1136 809 - citty@0.1.6: 810 - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} 811 - 812 - colord@2.9.3: 813 - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} 814 - 815 - commander@7.2.0: 816 - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} 817 - engines: {node: '>= 10'} 818 - 819 - commondir@1.0.1: 820 - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} 821 - 822 - confbox@0.1.8: 823 - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 824 - 825 - confbox@0.2.2: 826 - resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 827 - 828 - consola@3.4.2: 829 - resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} 830 - engines: {node: ^14.18.0 || >=16.10.0} 1137 + convert-source-map@2.0.0: 1138 + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 831 1139 832 1140 cross-env@7.0.3: 833 1141 resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} ··· 838 1146 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 839 1147 engines: {node: '>= 8'} 840 1148 841 - css-declaration-sorter@7.2.0: 842 - resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} 843 - engines: {node: ^14 || ^16 || >=18} 844 - peerDependencies: 845 - postcss: ^8.0.9 846 - 847 - css-select@5.1.0: 848 - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} 849 - 850 - css-tree@2.2.1: 851 - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} 852 - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} 853 - 854 - css-tree@2.3.1: 855 - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} 856 - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 857 - 858 - css-what@6.1.0: 859 - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 860 - engines: {node: '>= 6'} 861 - 862 - cssesc@3.0.0: 863 - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 864 - engines: {node: '>=4'} 865 - hasBin: true 866 - 867 - cssnano-preset-default@7.0.6: 868 - resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==} 869 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 870 - peerDependencies: 871 - postcss: ^8.4.31 872 - 873 - cssnano-utils@5.0.0: 874 - resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==} 875 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 876 - peerDependencies: 877 - postcss: ^8.4.31 878 - 879 - cssnano@7.0.6: 880 - resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==} 881 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 882 - peerDependencies: 883 - postcss: ^8.4.31 884 - 885 - csso@5.0.5: 886 - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} 887 - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} 888 - 889 1149 debug@4.4.1: 890 1150 resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 891 1151 engines: {node: '>=6.0'} ··· 899 1159 resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 900 1160 engines: {node: '>=6'} 901 1161 902 - deepmerge@4.3.1: 903 - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 904 - engines: {node: '>=0.10.0'} 905 - 906 1162 defu@6.1.4: 907 1163 resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 908 1164 ··· 914 1170 resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 915 1171 engines: {node: '>=8'} 916 1172 917 - dom-serializer@2.0.0: 918 - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 1173 + dts-resolver@2.1.3: 1174 + resolution: {integrity: sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==} 1175 + engines: {node: '>=20.19.0'} 1176 + peerDependencies: 1177 + oxc-resolver: '>=11.0.0' 1178 + peerDependenciesMeta: 1179 + oxc-resolver: 1180 + optional: true 919 1181 920 - domelementtype@2.3.0: 921 - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 922 - 923 - domhandler@5.0.3: 924 - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 925 - engines: {node: '>= 4'} 926 - 927 - domutils@3.1.0: 928 - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} 929 - 930 - electron-to-chromium@1.5.190: 931 - resolution: {integrity: sha512-k4McmnB2091YIsdCgkS0fMVMPOJgxl93ltFzaryXqwip1AaxeDqKCGLxkXODDA5Ab/D+tV5EL5+aTx76RvLRxw==} 1182 + empathic@2.0.0: 1183 + resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} 1184 + engines: {node: '>=14'} 932 1185 933 1186 enquirer@2.4.1: 934 1187 resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} 935 1188 engines: {node: '>=8.6'} 936 1189 937 - entities@4.5.0: 938 - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 939 - engines: {node: '>=0.12'} 940 - 941 1190 es-module-lexer@1.7.0: 942 1191 resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 1192 + 1193 + es-module-lexer@2.0.0: 1194 + resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==} 943 1195 944 1196 esbuild@0.25.8: 945 1197 resolution: {integrity: sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==} 946 1198 engines: {node: '>=18'} 947 1199 hasBin: true 948 1200 949 - escalade@3.2.0: 950 - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 951 - engines: {node: '>=6'} 952 - 953 1201 esprima@4.0.1: 954 1202 resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 955 1203 engines: {node: '>=4'} 956 1204 hasBin: true 957 1205 958 - estree-walker@2.0.2: 959 - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 960 - 961 1206 estree-walker@3.0.3: 962 1207 resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 963 1208 ··· 965 1210 resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} 966 1211 engines: {node: '>=12.0.0'} 967 1212 968 - exsolve@1.0.7: 969 - resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} 1213 + expect-type@1.3.0: 1214 + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} 1215 + engines: {node: '>=12.0.0'} 970 1216 971 1217 extendable-error@0.1.7: 972 1218 resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} ··· 996 1242 997 1243 fdir@6.4.6: 998 1244 resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} 1245 + peerDependencies: 1246 + picomatch: ^3 || ^4 1247 + peerDependenciesMeta: 1248 + picomatch: 1249 + optional: true 1250 + 1251 + fdir@6.5.0: 1252 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 1253 + engines: {node: '>=12.0.0'} 999 1254 peerDependencies: 1000 1255 picomatch: ^3 || ^4 1001 1256 peerDependenciesMeta: ··· 1010 1265 resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1011 1266 engines: {node: '>=8'} 1012 1267 1013 - fix-dts-default-cjs-exports@1.0.1: 1014 - resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==} 1015 - 1016 - formatly@0.2.4: 1017 - resolution: {integrity: sha512-lIN7GpcvX/l/i24r/L9bnJ0I8Qn01qijWpQpDDvTLL29nKqSaJJu4h20+7VJ6m2CAhQ2/En/GbxDiHCzq/0MyA==} 1268 + formatly@0.3.0: 1269 + resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==} 1018 1270 engines: {node: '>=18.3.0'} 1019 1271 hasBin: true 1020 - 1021 - fraction.js@4.3.7: 1022 - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1023 1272 1024 1273 fs-extra@7.0.1: 1025 1274 resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} ··· 1034 1283 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1035 1284 os: [darwin] 1036 1285 1037 - function-bind@1.1.2: 1038 - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1286 + get-tsconfig@4.13.7: 1287 + resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==} 1039 1288 1040 1289 glob-parent@5.1.2: 1041 1290 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} ··· 1048 1297 graceful-fs@4.2.11: 1049 1298 resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1050 1299 1051 - hasown@2.0.2: 1052 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1053 - engines: {node: '>= 0.4'} 1054 - 1055 - hookable@5.5.3: 1056 - resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 1300 + hookable@6.1.0: 1301 + resolution: {integrity: sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==} 1057 1302 1058 1303 human-id@4.1.1: 1059 1304 resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==} ··· 1071 1316 resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1072 1317 engines: {node: '>= 4'} 1073 1318 1074 - is-core-module@2.15.1: 1075 - resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 1076 - engines: {node: '>= 0.4'} 1319 + import-without-cache@0.2.5: 1320 + resolution: {integrity: sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==} 1321 + engines: {node: '>=20.19.0'} 1077 1322 1078 1323 is-extglob@2.1.1: 1079 1324 resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} ··· 1082 1327 is-glob@4.0.3: 1083 1328 resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1084 1329 engines: {node: '>=0.10.0'} 1085 - 1086 - is-module@1.0.0: 1087 - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 1088 1330 1089 1331 is-number@7.0.0: 1090 1332 resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1091 1333 engines: {node: '>=0.12.0'} 1092 1334 1093 - is-reference@1.2.1: 1094 - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} 1095 - 1096 1335 is-subdir@1.2.0: 1097 1336 resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} 1098 1337 engines: {node: '>=4'} ··· 1112 1351 resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} 1113 1352 hasBin: true 1114 1353 1115 - jiti@2.5.0: 1116 - resolution: {integrity: sha512-NWDAhdnATItTnRhip9VTd8oXDjVcbhetRN6YzckApnXGxpGUooKMAaf0KVvlZG0+KlJMGkeLElVn4M1ReuxKUQ==} 1354 + jiti@2.6.1: 1355 + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} 1117 1356 hasBin: true 1118 - 1119 - js-tokens@4.0.0: 1120 - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1121 1357 1122 1358 js-tokens@9.0.1: 1123 1359 resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} ··· 1126 1362 resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 1127 1363 hasBin: true 1128 1364 1129 - js-yaml@4.1.0: 1130 - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1365 + jsesc@3.1.0: 1366 + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1367 + engines: {node: '>=6'} 1131 1368 hasBin: true 1132 1369 1133 1370 jsonfile@4.0.0: ··· 1137 1374 resolution: {integrity: sha512-GJ9Ju8kf2SxH90C1AqANrMKBFlDjrZu1YoFm4SoMCOBOxix3Bvirdg5JB31gbF8FwPBo3196dAaqV0WUjeuq8Q==} 1138 1375 hasBin: true 1139 1376 1140 - knip@5.62.0: 1141 - resolution: {integrity: sha512-hfTUVzmrMNMT1khlZfAYmBABeehwWUUrizLQoLamoRhSFkygsGIXWx31kaWKBgEaIVL77T3Uz7IxGvSw+CvQ6A==} 1377 + knip@5.88.1: 1378 + resolution: {integrity: sha512-tpy5o7zu1MjawVkLPuahymVJekYY3kYjvzcoInhIchgePxTlo+api90tBv2KfhAIe5uXh+mez1tAfmbv8/TiZg==} 1142 1379 engines: {node: '>=18.18.0'} 1143 1380 hasBin: true 1144 1381 peerDependencies: 1145 1382 '@types/node': '>=18' 1146 - typescript: '>=5.0.4' 1147 - 1148 - knitwork@1.2.0: 1149 - resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==} 1383 + typescript: '>=5.0.4 <7' 1150 1384 1151 1385 kolorist@1.8.0: 1152 1386 resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} 1153 1387 1154 - lilconfig@3.1.2: 1155 - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} 1156 - engines: {node: '>=14'} 1157 - 1158 1388 locate-path@5.0.0: 1159 1389 resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1160 1390 engines: {node: '>=8'} 1161 1391 1162 - lodash.memoize@4.1.2: 1163 - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} 1164 - 1165 1392 lodash.startcase@4.4.0: 1166 1393 resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} 1167 - 1168 - lodash.uniq@4.5.0: 1169 - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} 1170 1394 1171 1395 loupe@3.2.0: 1172 1396 resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==} ··· 1174 1398 magic-string@0.30.17: 1175 1399 resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1176 1400 1177 - mdn-data@2.0.28: 1178 - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} 1179 - 1180 - mdn-data@2.0.30: 1181 - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} 1401 + magic-string@0.30.21: 1402 + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} 1182 1403 1183 1404 memfs@4.17.2: 1184 1405 resolution: {integrity: sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg==} ··· 1195 1416 minimist@1.2.8: 1196 1417 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1197 1418 1198 - mkdist@2.3.0: 1199 - resolution: {integrity: sha512-thkRk+pHdudjdZT3FJpPZ2+pncI6mGlH/B+KBVddlZj4MrFGW41sRIv1wZawZUHU8v7cttGaj+5nx8P+dG664A==} 1200 - hasBin: true 1201 - peerDependencies: 1202 - sass: ^1.85.0 1203 - typescript: '>=5.7.3' 1204 - vue: ^3.5.13 1205 - vue-sfc-transformer: ^0.1.1 1206 - vue-tsc: ^1.8.27 || ^2.0.21 1207 - peerDependenciesMeta: 1208 - sass: 1209 - optional: true 1210 - typescript: 1211 - optional: true 1212 - vue: 1213 - optional: true 1214 - vue-sfc-transformer: 1215 - optional: true 1216 - vue-tsc: 1217 - optional: true 1218 - 1219 - mlly@1.7.4: 1220 - resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} 1221 - 1222 1419 mri@1.2.0: 1223 1420 resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 1224 1421 engines: {node: '>=4'} ··· 1231 1428 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1232 1429 hasBin: true 1233 1430 1234 - napi-postinstall@0.3.2: 1235 - resolution: {integrity: sha512-tWVJxJHmBWLy69PvO96TZMZDrzmw5KeiZBz3RHmiM2XZ9grBJ2WgMAFVVg25nqp3ZjTFUs2Ftw1JhscL3Teliw==} 1236 - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 1237 - hasBin: true 1238 - 1239 - node-releases@2.0.19: 1240 - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 1241 - 1242 1431 node-stream-zip@1.15.0: 1243 1432 resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} 1244 1433 engines: {node: '>=0.12.0'} 1245 1434 1246 - normalize-range@0.1.2: 1247 - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1248 - engines: {node: '>=0.10.0'} 1249 - 1250 - nth-check@2.1.1: 1251 - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1435 + obug@2.1.1: 1436 + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} 1252 1437 1253 1438 os-tmpdir@1.0.2: 1254 1439 resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} ··· 1257 1442 outdent@0.5.0: 1258 1443 resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} 1259 1444 1260 - oxc-resolver@11.6.0: 1261 - resolution: {integrity: sha512-Yj3Wy+zLljtFL8ByKOljaPhiXjJWVe875p5MHaT5VAHoEmzeg1BuswM8s/E7ErpJ3s0fsXJfUYJE4v1bl7N65g==} 1445 + oxc-resolver@11.19.1: 1446 + resolution: {integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==} 1447 + 1448 + oxfmt@0.36.0: 1449 + resolution: {integrity: sha512-/ejJ+KoSW6J9bcNT9a9UtJSJNWhJ3yOLSBLbkoFHJs/8CZjmaZVZAJe4YgO1KMJlKpNQasrn/G9JQUEZI3p0EQ==} 1450 + engines: {node: ^20.19.0 || >=22.12.0} 1451 + hasBin: true 1452 + 1453 + oxlint@1.57.0: 1454 + resolution: {integrity: sha512-DGFsuBX5MFZX9yiDdtKjTrYPq45CZ8Fft6qCltJITYZxfwYjVdGf/6wycGYTACloauwIPxUnYhBVeZbHvleGhw==} 1455 + engines: {node: ^20.19.0 || >=22.12.0} 1456 + hasBin: true 1457 + peerDependencies: 1458 + oxlint-tsgolint: '>=0.15.0' 1459 + peerDependenciesMeta: 1460 + oxlint-tsgolint: 1461 + optional: true 1262 1462 1263 1463 p-filter@2.1.0: 1264 1464 resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} ··· 1283 1483 package-manager-detector@0.2.11: 1284 1484 resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==} 1285 1485 1486 + package-manager-detector@1.6.0: 1487 + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 1488 + 1286 1489 path-exists@4.0.0: 1287 1490 resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1288 1491 engines: {node: '>=8'} ··· 1290 1493 path-key@3.1.1: 1291 1494 resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1292 1495 engines: {node: '>=8'} 1293 - 1294 - path-parse@1.0.7: 1295 - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1296 1496 1297 1497 path-type@4.0.0: 1298 1498 resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} ··· 1316 1516 resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 1317 1517 engines: {node: '>=12'} 1318 1518 1519 + picomatch@4.0.4: 1520 + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} 1521 + engines: {node: '>=12'} 1522 + 1319 1523 pify@4.0.1: 1320 1524 resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 1321 1525 engines: {node: '>=6'} 1322 1526 1323 - pkg-types@1.3.1: 1324 - resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 1325 - 1326 - pkg-types@2.2.0: 1327 - resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==} 1328 - 1329 - postcss-calc@10.0.2: 1330 - resolution: {integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==} 1331 - engines: {node: ^18.12 || ^20.9 || >=22.0} 1332 - peerDependencies: 1333 - postcss: ^8.4.38 1334 - 1335 - postcss-colormin@7.0.2: 1336 - resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==} 1337 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1338 - peerDependencies: 1339 - postcss: ^8.4.31 1340 - 1341 - postcss-convert-values@7.0.4: 1342 - resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==} 1343 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1344 - peerDependencies: 1345 - postcss: ^8.4.31 1346 - 1347 - postcss-discard-comments@7.0.3: 1348 - resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==} 1349 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1350 - peerDependencies: 1351 - postcss: ^8.4.31 1352 - 1353 - postcss-discard-duplicates@7.0.1: 1354 - resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==} 1355 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1356 - peerDependencies: 1357 - postcss: ^8.4.31 1358 - 1359 - postcss-discard-empty@7.0.0: 1360 - resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==} 1361 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1362 - peerDependencies: 1363 - postcss: ^8.4.31 1364 - 1365 - postcss-discard-overridden@7.0.0: 1366 - resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==} 1367 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1368 - peerDependencies: 1369 - postcss: ^8.4.31 1370 - 1371 - postcss-merge-longhand@7.0.4: 1372 - resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==} 1373 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1374 - peerDependencies: 1375 - postcss: ^8.4.31 1376 - 1377 - postcss-merge-rules@7.0.4: 1378 - resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==} 1379 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1380 - peerDependencies: 1381 - postcss: ^8.4.31 1382 - 1383 - postcss-minify-font-values@7.0.0: 1384 - resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==} 1385 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1386 - peerDependencies: 1387 - postcss: ^8.4.31 1388 - 1389 - postcss-minify-gradients@7.0.0: 1390 - resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==} 1391 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1392 - peerDependencies: 1393 - postcss: ^8.4.31 1394 - 1395 - postcss-minify-params@7.0.2: 1396 - resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==} 1397 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1398 - peerDependencies: 1399 - postcss: ^8.4.31 1400 - 1401 - postcss-minify-selectors@7.0.4: 1402 - resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==} 1403 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1404 - peerDependencies: 1405 - postcss: ^8.4.31 1406 - 1407 - postcss-nested@7.0.2: 1408 - resolution: {integrity: sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==} 1409 - engines: {node: '>=18.0'} 1410 - peerDependencies: 1411 - postcss: ^8.2.14 1412 - 1413 - postcss-normalize-charset@7.0.0: 1414 - resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==} 1415 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1416 - peerDependencies: 1417 - postcss: ^8.4.31 1418 - 1419 - postcss-normalize-display-values@7.0.0: 1420 - resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==} 1421 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1422 - peerDependencies: 1423 - postcss: ^8.4.31 1424 - 1425 - postcss-normalize-positions@7.0.0: 1426 - resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==} 1427 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1428 - peerDependencies: 1429 - postcss: ^8.4.31 1430 - 1431 - postcss-normalize-repeat-style@7.0.0: 1432 - resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==} 1433 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1434 - peerDependencies: 1435 - postcss: ^8.4.31 1436 - 1437 - postcss-normalize-string@7.0.0: 1438 - resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==} 1439 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1440 - peerDependencies: 1441 - postcss: ^8.4.31 1442 - 1443 - postcss-normalize-timing-functions@7.0.0: 1444 - resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==} 1445 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1446 - peerDependencies: 1447 - postcss: ^8.4.31 1448 - 1449 - postcss-normalize-unicode@7.0.2: 1450 - resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==} 1451 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1452 - peerDependencies: 1453 - postcss: ^8.4.31 1454 - 1455 - postcss-normalize-url@7.0.0: 1456 - resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==} 1457 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1458 - peerDependencies: 1459 - postcss: ^8.4.31 1460 - 1461 - postcss-normalize-whitespace@7.0.0: 1462 - resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==} 1463 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1464 - peerDependencies: 1465 - postcss: ^8.4.31 1466 - 1467 - postcss-ordered-values@7.0.1: 1468 - resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==} 1469 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1470 - peerDependencies: 1471 - postcss: ^8.4.31 1472 - 1473 - postcss-reduce-initial@7.0.2: 1474 - resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==} 1475 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1476 - peerDependencies: 1477 - postcss: ^8.4.31 1478 - 1479 - postcss-reduce-transforms@7.0.0: 1480 - resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==} 1481 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1482 - peerDependencies: 1483 - postcss: ^8.4.31 1484 - 1485 - postcss-selector-parser@6.1.2: 1486 - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1487 - engines: {node: '>=4'} 1488 - 1489 - postcss-selector-parser@7.1.0: 1490 - resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} 1491 - engines: {node: '>=4'} 1492 - 1493 - postcss-svgo@7.0.1: 1494 - resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==} 1495 - engines: {node: ^18.12.0 || ^20.9.0 || >= 18} 1496 - peerDependencies: 1497 - postcss: ^8.4.31 1498 - 1499 - postcss-unique-selectors@7.0.3: 1500 - resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==} 1501 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1502 - peerDependencies: 1503 - postcss: ^8.4.31 1504 - 1505 - postcss-value-parser@4.2.0: 1506 - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1507 - 1508 1527 postcss@8.5.6: 1509 1528 resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 1510 1529 engines: {node: ^10 || ^12 || >=14} ··· 1514 1533 engines: {node: '>=10.13.0'} 1515 1534 hasBin: true 1516 1535 1517 - pretty-bytes@7.0.0: 1518 - resolution: {integrity: sha512-U5otLYPR3L0SVjHGrkEUx5mf7MxV2ceXeE7VwWPk+hyzC5drNohsOGNPDZqxCqyX1lkbEN4kl1LiI8QFd7r0ZA==} 1519 - engines: {node: '>=20'} 1536 + publint@0.3.18: 1537 + resolution: {integrity: sha512-JRJFeBTrfx4qLwEuGFPk+haJOJN97KnPuK01yj+4k/Wj5BgoOK5uNsivporiqBjk2JDaslg7qJOhGRnpltGeog==} 1538 + engines: {node: '>=18'} 1539 + hasBin: true 1520 1540 1521 1541 quansync@0.2.10: 1522 1542 resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} 1543 + 1544 + quansync@1.0.0: 1545 + resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==} 1523 1546 1524 1547 queue-microtask@1.2.3: 1525 1548 resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} ··· 1532 1555 resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 1533 1556 engines: {node: '>=8'} 1534 1557 1535 - resolve@1.22.8: 1536 - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1537 - hasBin: true 1558 + resolve-pkg-maps@1.0.0: 1559 + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1538 1560 1539 1561 reusify@1.0.4: 1540 1562 resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1541 1563 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1542 1564 1543 - rollup-plugin-dts@6.2.1: 1544 - resolution: {integrity: sha512-sR3CxYUl7i2CHa0O7bA45mCrgADyAQ0tVtGSqi3yvH28M+eg1+g5d7kQ9hLvEz5dorK3XVsH5L2jwHLQf72DzA==} 1545 - engines: {node: '>=16'} 1565 + rolldown-plugin-dts@0.22.5: 1566 + resolution: {integrity: sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==} 1567 + engines: {node: '>=20.19.0'} 1546 1568 peerDependencies: 1547 - rollup: ^3.29.4 || ^4 1548 - typescript: ^4.5 || ^5.0 1569 + '@ts-macro/tsc': ^0.3.6 1570 + '@typescript/native-preview': '>=7.0.0-dev.20250601.1' 1571 + rolldown: ^1.0.0-rc.3 1572 + typescript: ^5.0.0 || ^6.0.0-beta 1573 + vue-tsc: ~3.2.0 1574 + peerDependenciesMeta: 1575 + '@ts-macro/tsc': 1576 + optional: true 1577 + '@typescript/native-preview': 1578 + optional: true 1579 + typescript: 1580 + optional: true 1581 + vue-tsc: 1582 + optional: true 1583 + 1584 + rolldown@1.0.0-rc.11: 1585 + resolution: {integrity: sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==} 1586 + engines: {node: ^20.19.0 || >=22.12.0} 1587 + hasBin: true 1549 1588 1550 1589 rollup@4.45.1: 1551 1590 resolution: {integrity: sha512-4iya7Jb76fVpQyLoiVpzUrsjQ12r3dM7fIVz+4NwoYvZOShknRmiv+iu9CClZml5ZLGb0XMcYLutK6w9tgxHDw==} ··· 1555 1594 run-parallel@1.2.0: 1556 1595 resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1557 1596 1597 + sade@1.8.1: 1598 + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 1599 + engines: {node: '>=6'} 1600 + 1558 1601 safer-buffer@2.1.2: 1559 1602 resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1560 - 1561 - scule@1.3.0: 1562 - resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} 1563 1603 1564 1604 semiver@1.1.0: 1565 1605 resolution: {integrity: sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg==} ··· 1570 1610 engines: {node: '>=10'} 1571 1611 hasBin: true 1572 1612 1613 + semver@7.7.4: 1614 + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} 1615 + engines: {node: '>=10'} 1616 + hasBin: true 1617 + 1573 1618 shebang-command@2.0.0: 1574 1619 resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1575 1620 engines: {node: '>=8'} ··· 1592 1637 resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1593 1638 engines: {node: '>=8'} 1594 1639 1595 - smol-toml@1.4.1: 1596 - resolution: {integrity: sha512-CxdwHXyYTONGHThDbq5XdwbFsuY4wlClRGejfE2NtwUtiHYsP1QtNsHb/hnj31jKYSchztJsaA8pSQoVzkfCFg==} 1640 + smol-toml@1.6.1: 1641 + resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} 1597 1642 engines: {node: '>= 18'} 1598 1643 1599 1644 source-map-js@1.2.1: ··· 1612 1657 std-env@3.9.0: 1613 1658 resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 1614 1659 1660 + std-env@4.0.0: 1661 + resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==} 1662 + 1615 1663 strip-ansi@6.0.1: 1616 1664 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1617 1665 engines: {node: '>=8'} ··· 1620 1668 resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1621 1669 engines: {node: '>=4'} 1622 1670 1623 - strip-json-comments@5.0.2: 1624 - resolution: {integrity: sha512-4X2FR3UwhNUE9G49aIsJW5hRRR3GXGTBTZRMfv568O60ojM8HcWjV/VxAxCDW3SUND33O6ZY66ZuRcdkj73q2g==} 1671 + strip-json-comments@5.0.3: 1672 + resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==} 1625 1673 engines: {node: '>=14.16'} 1626 1674 1627 1675 strip-literal@3.0.0: 1628 1676 resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} 1629 1677 1630 - stylehacks@7.0.4: 1631 - resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==} 1632 - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} 1633 - peerDependencies: 1634 - postcss: ^8.4.31 1635 - 1636 - supports-preserve-symlinks-flag@1.0.0: 1637 - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1638 - engines: {node: '>= 0.4'} 1639 - 1640 - svgo@3.3.2: 1641 - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} 1642 - engines: {node: '>=14.0.0'} 1643 - hasBin: true 1644 - 1645 1678 term-size@2.2.1: 1646 1679 resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} 1647 1680 engines: {node: '>=8'} ··· 1657 1690 1658 1691 tinyexec@0.3.2: 1659 1692 resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1693 + 1694 + tinyexec@1.0.4: 1695 + resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==} 1696 + engines: {node: '>=18'} 1660 1697 1661 1698 tinyglobby@0.2.14: 1662 1699 resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} 1663 1700 engines: {node: '>=12.0.0'} 1664 1701 1702 + tinyglobby@0.2.15: 1703 + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 1704 + engines: {node: '>=12.0.0'} 1705 + 1665 1706 tinypool@1.1.1: 1666 1707 resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} 1667 1708 engines: {node: ^18.0.0 || >=20.0.0} 1668 1709 1710 + tinypool@2.1.0: 1711 + resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==} 1712 + engines: {node: ^20.0.0 || >=22.0.0} 1713 + 1669 1714 tinyrainbow@2.0.0: 1670 1715 resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} 1671 1716 engines: {node: '>=14.0.0'} 1672 1717 1718 + tinyrainbow@3.1.0: 1719 + resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} 1720 + engines: {node: '>=14.0.0'} 1721 + 1673 1722 tinyspy@4.0.3: 1674 1723 resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==} 1675 1724 engines: {node: '>=14.0.0'} ··· 1688 1737 peerDependencies: 1689 1738 tslib: '2' 1690 1739 1740 + tree-kill@1.2.2: 1741 + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 1742 + hasBin: true 1743 + 1744 + tsdown@0.21.5: 1745 + resolution: {integrity: sha512-TlgNhfPioAD6ECCUnZsxcUsXXuPPR4Rrxz3az741kL/M3oGIET4a9GajSNRNRx+jIva73TYUKQybrEPkDYN+fQ==} 1746 + engines: {node: '>=20.19.0'} 1747 + hasBin: true 1748 + peerDependencies: 1749 + '@arethetypeswrong/core': ^0.18.1 1750 + '@tsdown/css': 0.21.5 1751 + '@tsdown/exe': 0.21.5 1752 + '@vitejs/devtools': '*' 1753 + publint: ^0.3.0 1754 + typescript: ^5.0.0 || ^6.0.0 1755 + unplugin-unused: ^0.5.0 1756 + peerDependenciesMeta: 1757 + '@arethetypeswrong/core': 1758 + optional: true 1759 + '@tsdown/css': 1760 + optional: true 1761 + '@tsdown/exe': 1762 + optional: true 1763 + '@vitejs/devtools': 1764 + optional: true 1765 + publint: 1766 + optional: true 1767 + typescript: 1768 + optional: true 1769 + unplugin-unused: 1770 + optional: true 1771 + 1691 1772 tslib@2.8.1: 1692 1773 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1693 1774 ··· 1696 1777 engines: {node: '>=14.17'} 1697 1778 hasBin: true 1698 1779 1699 - ufo@1.5.4: 1700 - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 1780 + unbash@2.2.0: 1781 + resolution: {integrity: sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==} 1782 + engines: {node: '>=14'} 1701 1783 1702 - unbuild@3.6.0: 1703 - resolution: {integrity: sha512-vWwKMo2bZS9jbMWO7n51nQvKCRUM3WmONA6+k4z0Ttfkkhh6q1DV/JhKkd58d61eeN9UoTGechlAxXvm11sghw==} 1704 - hasBin: true 1705 - peerDependencies: 1706 - typescript: ^5.8.3 1707 - peerDependenciesMeta: 1708 - typescript: 1709 - optional: true 1784 + unconfig-core@7.5.0: 1785 + resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==} 1710 1786 1711 1787 undici-types@7.8.0: 1712 1788 resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==} ··· 1715 1791 resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 1716 1792 engines: {node: '>= 4.0.0'} 1717 1793 1718 - untyped@2.0.0: 1719 - resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==} 1720 - hasBin: true 1721 - 1722 - update-browserslist-db@1.1.3: 1723 - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 1794 + unrun@0.2.33: 1795 + resolution: {integrity: sha512-urXTjZHOHS6lMnatQerLcBpcTsaKZYGuu9aSZ+HlNfCApkiINRbj7YecC9h9hdZroMT4WQ4KVyzHfBqHKuFX9Q==} 1796 + engines: {node: '>=20.19.0'} 1724 1797 hasBin: true 1725 1798 peerDependencies: 1726 - browserslist: '>= 4.21.0' 1727 - 1728 - util-deprecate@1.0.2: 1729 - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1799 + synckit: ^0.11.11 1800 + peerDependenciesMeta: 1801 + synckit: 1802 + optional: true 1730 1803 1731 1804 vite-node@3.2.4: 1732 1805 resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} ··· 1806 1879 jsdom: 1807 1880 optional: true 1808 1881 1882 + vitest@4.1.1: 1883 + resolution: {integrity: sha512-yF+o4POL41rpAzj5KVILUxm1GCjKnELvaqmU9TLLUbMfDzuN0UpUR9uaDs+mCtjPe+uYPksXDRLQGGPvj1cTmA==} 1884 + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} 1885 + hasBin: true 1886 + peerDependencies: 1887 + '@edge-runtime/vm': '*' 1888 + '@opentelemetry/api': ^1.9.0 1889 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 1890 + '@vitest/browser-playwright': 4.1.1 1891 + '@vitest/browser-preview': 4.1.1 1892 + '@vitest/browser-webdriverio': 4.1.1 1893 + '@vitest/ui': 4.1.1 1894 + happy-dom: '*' 1895 + jsdom: '*' 1896 + peerDependenciesMeta: 1897 + '@edge-runtime/vm': 1898 + optional: true 1899 + '@opentelemetry/api': 1900 + optional: true 1901 + '@types/node': 1902 + optional: true 1903 + '@vitest/browser-playwright': 1904 + optional: true 1905 + '@vitest/browser-preview': 1906 + optional: true 1907 + '@vitest/browser-webdriverio': 1908 + optional: true 1909 + '@vitest/ui': 1910 + optional: true 1911 + happy-dom: 1912 + optional: true 1913 + jsdom: 1914 + optional: true 1915 + 1809 1916 walk-up-path@4.0.0: 1810 1917 resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} 1811 1918 engines: {node: 20 || >=22} ··· 1820 1927 engines: {node: '>=8'} 1821 1928 hasBin: true 1822 1929 1823 - zod-validation-error@3.4.0: 1824 - resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==} 1825 - engines: {node: '>=18.0.0'} 1826 - peerDependencies: 1827 - zod: ^3.18.0 1930 + yaml@2.8.3: 1931 + resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==} 1932 + engines: {node: '>= 14.6'} 1933 + hasBin: true 1828 1934 1829 - zod@3.22.4: 1830 - resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} 1935 + zod@4.3.6: 1936 + resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} 1831 1937 1832 1938 snapshots: 1833 1939 1834 - '@babel/code-frame@7.26.2': 1940 + '@babel/generator@8.0.0-rc.2': 1835 1941 dependencies: 1836 - '@babel/helper-validator-identifier': 7.25.9 1837 - js-tokens: 4.0.0 1838 - picocolors: 1.1.1 1839 - optional: true 1942 + '@babel/parser': 8.0.0-rc.2 1943 + '@babel/types': 8.0.0-rc.2 1944 + '@jridgewell/gen-mapping': 0.3.13 1945 + '@jridgewell/trace-mapping': 0.3.31 1946 + '@types/jsesc': 2.5.1 1947 + jsesc: 3.1.0 1840 1948 1841 - '@babel/helper-validator-identifier@7.25.9': 1842 - optional: true 1949 + '@babel/helper-string-parser@8.0.0-rc.3': {} 1843 1950 1844 - '@babel/runtime@7.28.2': {} 1951 + '@babel/helper-validator-identifier@8.0.0-rc.2': {} 1845 1952 1846 - '@biomejs/biome@2.1.2': 1847 - optionalDependencies: 1848 - '@biomejs/cli-darwin-arm64': 2.1.2 1849 - '@biomejs/cli-darwin-x64': 2.1.2 1850 - '@biomejs/cli-linux-arm64': 2.1.2 1851 - '@biomejs/cli-linux-arm64-musl': 2.1.2 1852 - '@biomejs/cli-linux-x64': 2.1.2 1853 - '@biomejs/cli-linux-x64-musl': 2.1.2 1854 - '@biomejs/cli-win32-arm64': 2.1.2 1855 - '@biomejs/cli-win32-x64': 2.1.2 1953 + '@babel/parser@8.0.0-rc.2': 1954 + dependencies: 1955 + '@babel/types': 8.0.0-rc.2 1856 1956 1857 - '@biomejs/cli-darwin-arm64@2.1.2': 1858 - optional: true 1859 - 1860 - '@biomejs/cli-darwin-x64@2.1.2': 1861 - optional: true 1862 - 1863 - '@biomejs/cli-linux-arm64-musl@2.1.2': 1864 - optional: true 1865 - 1866 - '@biomejs/cli-linux-arm64@2.1.2': 1867 - optional: true 1957 + '@babel/runtime@7.28.2': {} 1868 1958 1869 - '@biomejs/cli-linux-x64-musl@2.1.2': 1870 - optional: true 1871 - 1872 - '@biomejs/cli-linux-x64@2.1.2': 1873 - optional: true 1959 + '@babel/types@8.0.0-rc.2': 1960 + dependencies: 1961 + '@babel/helper-string-parser': 8.0.0-rc.3 1962 + '@babel/helper-validator-identifier': 8.0.0-rc.2 1874 1963 1875 - '@biomejs/cli-win32-arm64@2.1.2': 1876 - optional: true 1964 + '@bomb.sh/args@0.3.1': {} 1877 1965 1878 - '@biomejs/cli-win32-x64@2.1.2': 1879 - optional: true 1966 + '@bomb.sh/tools@0.3.0(@types/node@24.1.0)(jiti@2.6.1)(oxc-resolver@11.19.1)(typescript@5.8.3)(yaml@2.8.3)': 1967 + dependencies: 1968 + '@bomb.sh/args': 0.3.1 1969 + '@humanfs/node': 0.16.7 1970 + '@humanfs/types': 0.15.0 1971 + '@typescript/native-preview': 7.0.0-dev.20260307.1 1972 + knip: 5.88.1(@types/node@24.1.0)(typescript@5.8.3) 1973 + oxfmt: 0.36.0 1974 + oxlint: 1.57.0 1975 + publint: 0.3.18 1976 + tinyexec: 1.0.4 1977 + tsdown: 0.21.5(@typescript/native-preview@7.0.0-dev.20260307.1)(oxc-resolver@11.19.1)(publint@0.3.18)(typescript@5.8.3) 1978 + vitest: 4.1.1(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 1979 + transitivePeerDependencies: 1980 + - '@arethetypeswrong/core' 1981 + - '@edge-runtime/vm' 1982 + - '@opentelemetry/api' 1983 + - '@ts-macro/tsc' 1984 + - '@tsdown/css' 1985 + - '@tsdown/exe' 1986 + - '@types/node' 1987 + - '@vitejs/devtools' 1988 + - '@vitest/browser-playwright' 1989 + - '@vitest/browser-preview' 1990 + - '@vitest/browser-webdriverio' 1991 + - '@vitest/ui' 1992 + - happy-dom 1993 + - jiti 1994 + - jsdom 1995 + - less 1996 + - lightningcss 1997 + - msw 1998 + - oxc-resolver 1999 + - oxlint-tsgolint 2000 + - sass 2001 + - sass-embedded 2002 + - stylus 2003 + - sugarss 2004 + - synckit 2005 + - terser 2006 + - tsx 2007 + - typescript 2008 + - unplugin-unused 2009 + - vue-tsc 2010 + - yaml 1880 2011 1881 2012 '@changesets/apply-release-plan@7.0.12': 1882 2013 dependencies: ··· 2020 2151 human-id: 4.1.1 2021 2152 prettier: 2.8.8 2022 2153 2023 - '@emnapi/core@1.4.5': 2154 + '@emnapi/core@1.9.1': 2024 2155 dependencies: 2025 - '@emnapi/wasi-threads': 1.0.4 2156 + '@emnapi/wasi-threads': 1.2.0 2026 2157 tslib: 2.8.1 2027 2158 optional: true 2028 2159 2029 - '@emnapi/runtime@1.4.5': 2160 + '@emnapi/runtime@1.9.1': 2030 2161 dependencies: 2031 2162 tslib: 2.8.1 2032 2163 optional: true 2033 2164 2034 - '@emnapi/wasi-threads@1.0.4': 2165 + '@emnapi/wasi-threads@1.2.0': 2035 2166 dependencies: 2036 2167 tslib: 2.8.1 2037 2168 optional: true ··· 2114 2245 '@esbuild/win32-x64@0.25.8': 2115 2246 optional: true 2116 2247 2248 + '@humanfs/core@0.19.1': {} 2249 + 2250 + '@humanfs/node@0.16.7': 2251 + dependencies: 2252 + '@humanfs/core': 0.19.1 2253 + '@humanwhocodes/retry': 0.4.3 2254 + 2255 + '@humanfs/types@0.15.0': {} 2256 + 2257 + '@humanwhocodes/retry@0.4.3': {} 2258 + 2259 + '@jridgewell/gen-mapping@0.3.13': 2260 + dependencies: 2261 + '@jridgewell/sourcemap-codec': 1.5.0 2262 + '@jridgewell/trace-mapping': 0.3.31 2263 + 2264 + '@jridgewell/resolve-uri@3.1.2': {} 2265 + 2117 2266 '@jridgewell/sourcemap-codec@1.5.0': {} 2267 + 2268 + '@jridgewell/sourcemap-codec@1.5.5': {} 2269 + 2270 + '@jridgewell/trace-mapping@0.3.31': 2271 + dependencies: 2272 + '@jridgewell/resolve-uri': 3.1.2 2273 + '@jridgewell/sourcemap-codec': 1.5.0 2118 2274 2119 2275 '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)': 2120 2276 dependencies: ··· 2148 2304 globby: 11.1.0 2149 2305 read-yaml-file: 1.1.0 2150 2306 2151 - '@napi-rs/wasm-runtime@1.0.1': 2307 + '@napi-rs/wasm-runtime@1.1.1': 2152 2308 dependencies: 2153 - '@emnapi/core': 1.4.5 2154 - '@emnapi/runtime': 1.4.5 2155 - '@tybys/wasm-util': 0.10.0 2309 + '@emnapi/core': 1.9.1 2310 + '@emnapi/runtime': 1.9.1 2311 + '@tybys/wasm-util': 0.10.1 2156 2312 optional: true 2157 2313 2158 2314 '@nodelib/fs.scandir@2.1.5': ··· 2167 2323 '@nodelib/fs.scandir': 2.1.5 2168 2324 fastq: 1.17.1 2169 2325 2170 - '@oxc-resolver/binding-android-arm-eabi@11.6.0': 2326 + '@oxc-project/types@0.122.0': {} 2327 + 2328 + '@oxc-resolver/binding-android-arm-eabi@11.19.1': 2171 2329 optional: true 2172 2330 2173 - '@oxc-resolver/binding-android-arm64@11.6.0': 2331 + '@oxc-resolver/binding-android-arm64@11.19.1': 2332 + optional: true 2333 + 2334 + '@oxc-resolver/binding-darwin-arm64@11.19.1': 2174 2335 optional: true 2175 2336 2176 - '@oxc-resolver/binding-darwin-arm64@11.6.0': 2337 + '@oxc-resolver/binding-darwin-x64@11.19.1': 2177 2338 optional: true 2178 2339 2179 - '@oxc-resolver/binding-darwin-x64@11.6.0': 2340 + '@oxc-resolver/binding-freebsd-x64@11.19.1': 2180 2341 optional: true 2181 2342 2182 - '@oxc-resolver/binding-freebsd-x64@11.6.0': 2343 + '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1': 2183 2344 optional: true 2184 2345 2185 - '@oxc-resolver/binding-linux-arm-gnueabihf@11.6.0': 2346 + '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1': 2186 2347 optional: true 2187 2348 2188 - '@oxc-resolver/binding-linux-arm-musleabihf@11.6.0': 2349 + '@oxc-resolver/binding-linux-arm64-gnu@11.19.1': 2189 2350 optional: true 2190 2351 2191 - '@oxc-resolver/binding-linux-arm64-gnu@11.6.0': 2352 + '@oxc-resolver/binding-linux-arm64-musl@11.19.1': 2192 2353 optional: true 2193 2354 2194 - '@oxc-resolver/binding-linux-arm64-musl@11.6.0': 2355 + '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1': 2195 2356 optional: true 2196 2357 2197 - '@oxc-resolver/binding-linux-ppc64-gnu@11.6.0': 2358 + '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1': 2198 2359 optional: true 2199 2360 2200 - '@oxc-resolver/binding-linux-riscv64-gnu@11.6.0': 2361 + '@oxc-resolver/binding-linux-riscv64-musl@11.19.1': 2201 2362 optional: true 2202 2363 2203 - '@oxc-resolver/binding-linux-riscv64-musl@11.6.0': 2364 + '@oxc-resolver/binding-linux-s390x-gnu@11.19.1': 2204 2365 optional: true 2205 2366 2206 - '@oxc-resolver/binding-linux-s390x-gnu@11.6.0': 2367 + '@oxc-resolver/binding-linux-x64-gnu@11.19.1': 2207 2368 optional: true 2208 2369 2209 - '@oxc-resolver/binding-linux-x64-gnu@11.6.0': 2370 + '@oxc-resolver/binding-linux-x64-musl@11.19.1': 2210 2371 optional: true 2211 2372 2212 - '@oxc-resolver/binding-linux-x64-musl@11.6.0': 2373 + '@oxc-resolver/binding-openharmony-arm64@11.19.1': 2213 2374 optional: true 2214 2375 2215 - '@oxc-resolver/binding-wasm32-wasi@11.6.0': 2376 + '@oxc-resolver/binding-wasm32-wasi@11.19.1': 2216 2377 dependencies: 2217 - '@napi-rs/wasm-runtime': 1.0.1 2378 + '@napi-rs/wasm-runtime': 1.1.1 2379 + optional: true 2380 + 2381 + '@oxc-resolver/binding-win32-arm64-msvc@11.19.1': 2382 + optional: true 2383 + 2384 + '@oxc-resolver/binding-win32-ia32-msvc@11.19.1': 2385 + optional: true 2386 + 2387 + '@oxc-resolver/binding-win32-x64-msvc@11.19.1': 2388 + optional: true 2389 + 2390 + '@oxfmt/binding-android-arm-eabi@0.36.0': 2391 + optional: true 2392 + 2393 + '@oxfmt/binding-android-arm64@0.36.0': 2394 + optional: true 2395 + 2396 + '@oxfmt/binding-darwin-arm64@0.36.0': 2397 + optional: true 2398 + 2399 + '@oxfmt/binding-darwin-x64@0.36.0': 2400 + optional: true 2401 + 2402 + '@oxfmt/binding-freebsd-x64@0.36.0': 2403 + optional: true 2404 + 2405 + '@oxfmt/binding-linux-arm-gnueabihf@0.36.0': 2406 + optional: true 2407 + 2408 + '@oxfmt/binding-linux-arm-musleabihf@0.36.0': 2409 + optional: true 2410 + 2411 + '@oxfmt/binding-linux-arm64-gnu@0.36.0': 2412 + optional: true 2413 + 2414 + '@oxfmt/binding-linux-arm64-musl@0.36.0': 2415 + optional: true 2416 + 2417 + '@oxfmt/binding-linux-ppc64-gnu@0.36.0': 2418 + optional: true 2419 + 2420 + '@oxfmt/binding-linux-riscv64-gnu@0.36.0': 2421 + optional: true 2422 + 2423 + '@oxfmt/binding-linux-riscv64-musl@0.36.0': 2424 + optional: true 2425 + 2426 + '@oxfmt/binding-linux-s390x-gnu@0.36.0': 2427 + optional: true 2428 + 2429 + '@oxfmt/binding-linux-x64-gnu@0.36.0': 2430 + optional: true 2431 + 2432 + '@oxfmt/binding-linux-x64-musl@0.36.0': 2433 + optional: true 2434 + 2435 + '@oxfmt/binding-openharmony-arm64@0.36.0': 2436 + optional: true 2437 + 2438 + '@oxfmt/binding-win32-arm64-msvc@0.36.0': 2439 + optional: true 2440 + 2441 + '@oxfmt/binding-win32-ia32-msvc@0.36.0': 2442 + optional: true 2443 + 2444 + '@oxfmt/binding-win32-x64-msvc@0.36.0': 2445 + optional: true 2446 + 2447 + '@oxlint/binding-android-arm-eabi@1.57.0': 2448 + optional: true 2449 + 2450 + '@oxlint/binding-android-arm64@1.57.0': 2451 + optional: true 2452 + 2453 + '@oxlint/binding-darwin-arm64@1.57.0': 2454 + optional: true 2455 + 2456 + '@oxlint/binding-darwin-x64@1.57.0': 2457 + optional: true 2458 + 2459 + '@oxlint/binding-freebsd-x64@1.57.0': 2460 + optional: true 2461 + 2462 + '@oxlint/binding-linux-arm-gnueabihf@1.57.0': 2463 + optional: true 2464 + 2465 + '@oxlint/binding-linux-arm-musleabihf@1.57.0': 2218 2466 optional: true 2219 2467 2220 - '@oxc-resolver/binding-win32-arm64-msvc@11.6.0': 2468 + '@oxlint/binding-linux-arm64-gnu@1.57.0': 2221 2469 optional: true 2222 2470 2223 - '@oxc-resolver/binding-win32-ia32-msvc@11.6.0': 2471 + '@oxlint/binding-linux-arm64-musl@1.57.0': 2224 2472 optional: true 2225 2473 2226 - '@oxc-resolver/binding-win32-x64-msvc@11.6.0': 2474 + '@oxlint/binding-linux-ppc64-gnu@1.57.0': 2227 2475 optional: true 2228 2476 2229 - '@rollup/plugin-alias@5.1.1(rollup@4.45.1)': 2230 - optionalDependencies: 2231 - rollup: 4.45.1 2477 + '@oxlint/binding-linux-riscv64-gnu@1.57.0': 2478 + optional: true 2232 2479 2233 - '@rollup/plugin-commonjs@28.0.6(rollup@4.45.1)': 2234 - dependencies: 2235 - '@rollup/pluginutils': 5.2.0(rollup@4.45.1) 2236 - commondir: 1.0.1 2237 - estree-walker: 2.0.2 2238 - fdir: 6.4.6(picomatch@4.0.3) 2239 - is-reference: 1.2.1 2240 - magic-string: 0.30.17 2241 - picomatch: 4.0.3 2242 - optionalDependencies: 2243 - rollup: 4.45.1 2480 + '@oxlint/binding-linux-riscv64-musl@1.57.0': 2481 + optional: true 2244 2482 2245 - '@rollup/plugin-json@6.1.0(rollup@4.45.1)': 2246 - dependencies: 2247 - '@rollup/pluginutils': 5.2.0(rollup@4.45.1) 2248 - optionalDependencies: 2249 - rollup: 4.45.1 2483 + '@oxlint/binding-linux-s390x-gnu@1.57.0': 2484 + optional: true 2250 2485 2251 - '@rollup/plugin-node-resolve@16.0.1(rollup@4.45.1)': 2252 - dependencies: 2253 - '@rollup/pluginutils': 5.2.0(rollup@4.45.1) 2254 - '@types/resolve': 1.20.2 2255 - deepmerge: 4.3.1 2256 - is-module: 1.0.0 2257 - resolve: 1.22.8 2258 - optionalDependencies: 2259 - rollup: 4.45.1 2486 + '@oxlint/binding-linux-x64-gnu@1.57.0': 2487 + optional: true 2488 + 2489 + '@oxlint/binding-linux-x64-musl@1.57.0': 2490 + optional: true 2491 + 2492 + '@oxlint/binding-openharmony-arm64@1.57.0': 2493 + optional: true 2494 + 2495 + '@oxlint/binding-win32-arm64-msvc@1.57.0': 2496 + optional: true 2260 2497 2261 - '@rollup/plugin-replace@6.0.2(rollup@4.45.1)': 2498 + '@oxlint/binding-win32-ia32-msvc@1.57.0': 2499 + optional: true 2500 + 2501 + '@oxlint/binding-win32-x64-msvc@1.57.0': 2502 + optional: true 2503 + 2504 + '@publint/pack@0.1.4': {} 2505 + 2506 + '@quansync/fs@1.0.0': 2262 2507 dependencies: 2263 - '@rollup/pluginutils': 5.2.0(rollup@4.45.1) 2264 - magic-string: 0.30.17 2265 - optionalDependencies: 2266 - rollup: 4.45.1 2508 + quansync: 1.0.0 2267 2509 2268 - '@rollup/pluginutils@5.2.0(rollup@4.45.1)': 2510 + '@rolldown/binding-android-arm64@1.0.0-rc.11': 2511 + optional: true 2512 + 2513 + '@rolldown/binding-darwin-arm64@1.0.0-rc.11': 2514 + optional: true 2515 + 2516 + '@rolldown/binding-darwin-x64@1.0.0-rc.11': 2517 + optional: true 2518 + 2519 + '@rolldown/binding-freebsd-x64@1.0.0-rc.11': 2520 + optional: true 2521 + 2522 + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11': 2523 + optional: true 2524 + 2525 + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11': 2526 + optional: true 2527 + 2528 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.11': 2529 + optional: true 2530 + 2531 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11': 2532 + optional: true 2533 + 2534 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11': 2535 + optional: true 2536 + 2537 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.11': 2538 + optional: true 2539 + 2540 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.11': 2541 + optional: true 2542 + 2543 + '@rolldown/binding-openharmony-arm64@1.0.0-rc.11': 2544 + optional: true 2545 + 2546 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.11': 2269 2547 dependencies: 2270 - '@types/estree': 1.0.8 2271 - estree-walker: 2.0.2 2272 - picomatch: 4.0.3 2273 - optionalDependencies: 2274 - rollup: 4.45.1 2548 + '@napi-rs/wasm-runtime': 1.1.1 2549 + optional: true 2550 + 2551 + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11': 2552 + optional: true 2553 + 2554 + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.11': 2555 + optional: true 2556 + 2557 + '@rolldown/pluginutils@1.0.0-rc.11': {} 2275 2558 2276 2559 '@rollup/rollup-android-arm-eabi@4.45.1': 2277 2560 optional: true ··· 2333 2616 '@rollup/rollup-win32-x64-msvc@4.45.1': 2334 2617 optional: true 2335 2618 2336 - '@trysound/sax@0.2.0': {} 2619 + '@standard-schema/spec@1.1.0': {} 2337 2620 2338 - '@tybys/wasm-util@0.10.0': 2621 + '@tybys/wasm-util@0.10.1': 2339 2622 dependencies: 2340 2623 tslib: 2.8.1 2341 2624 optional: true ··· 2348 2631 2349 2632 '@types/estree@1.0.8': {} 2350 2633 2634 + '@types/jsesc@2.5.1': {} 2635 + 2351 2636 '@types/node@12.20.55': {} 2352 2637 2353 2638 '@types/node@24.1.0': 2354 2639 dependencies: 2355 2640 undici-types: 7.8.0 2356 2641 2357 - '@types/resolve@1.20.2': {} 2642 + '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260307.1': 2643 + optional: true 2644 + 2645 + '@typescript/native-preview-darwin-x64@7.0.0-dev.20260307.1': 2646 + optional: true 2647 + 2648 + '@typescript/native-preview-linux-arm64@7.0.0-dev.20260307.1': 2649 + optional: true 2650 + 2651 + '@typescript/native-preview-linux-arm@7.0.0-dev.20260307.1': 2652 + optional: true 2653 + 2654 + '@typescript/native-preview-linux-x64@7.0.0-dev.20260307.1': 2655 + optional: true 2656 + 2657 + '@typescript/native-preview-win32-arm64@7.0.0-dev.20260307.1': 2658 + optional: true 2659 + 2660 + '@typescript/native-preview-win32-x64@7.0.0-dev.20260307.1': 2661 + optional: true 2662 + 2663 + '@typescript/native-preview@7.0.0-dev.20260307.1': 2664 + optionalDependencies: 2665 + '@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260307.1 2666 + '@typescript/native-preview-darwin-x64': 7.0.0-dev.20260307.1 2667 + '@typescript/native-preview-linux-arm': 7.0.0-dev.20260307.1 2668 + '@typescript/native-preview-linux-arm64': 7.0.0-dev.20260307.1 2669 + '@typescript/native-preview-linux-x64': 7.0.0-dev.20260307.1 2670 + '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260307.1 2671 + '@typescript/native-preview-win32-x64': 7.0.0-dev.20260307.1 2358 2672 2359 2673 '@vitest/expect@3.2.4': 2360 2674 dependencies: ··· 2364 2678 chai: 5.2.0 2365 2679 tinyrainbow: 2.0.0 2366 2680 2367 - '@vitest/mocker@3.2.4(vite@7.0.6(@types/node@24.1.0)(jiti@2.5.0))': 2681 + '@vitest/expect@4.1.1': 2682 + dependencies: 2683 + '@standard-schema/spec': 1.1.0 2684 + '@types/chai': 5.2.2 2685 + '@vitest/spy': 4.1.1 2686 + '@vitest/utils': 4.1.1 2687 + chai: 6.2.2 2688 + tinyrainbow: 3.1.0 2689 + 2690 + '@vitest/mocker@3.2.4(vite@7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3))': 2368 2691 dependencies: 2369 2692 '@vitest/spy': 3.2.4 2370 2693 estree-walker: 3.0.3 2371 2694 magic-string: 0.30.17 2372 2695 optionalDependencies: 2373 - vite: 7.0.6(@types/node@24.1.0)(jiti@2.5.0) 2696 + vite: 7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 2697 + 2698 + '@vitest/mocker@4.1.1(vite@7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3))': 2699 + dependencies: 2700 + '@vitest/spy': 4.1.1 2701 + estree-walker: 3.0.3 2702 + magic-string: 0.30.21 2703 + optionalDependencies: 2704 + vite: 7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 2374 2705 2375 2706 '@vitest/pretty-format@3.2.4': 2376 2707 dependencies: 2377 2708 tinyrainbow: 2.0.0 2378 2709 2710 + '@vitest/pretty-format@4.1.1': 2711 + dependencies: 2712 + tinyrainbow: 3.1.0 2713 + 2379 2714 '@vitest/runner@3.2.4': 2380 2715 dependencies: 2381 2716 '@vitest/utils': 3.2.4 2382 2717 pathe: 2.0.3 2383 2718 strip-literal: 3.0.0 2384 2719 2720 + '@vitest/runner@4.1.1': 2721 + dependencies: 2722 + '@vitest/utils': 4.1.1 2723 + pathe: 2.0.3 2724 + 2385 2725 '@vitest/snapshot@3.2.4': 2386 2726 dependencies: 2387 2727 '@vitest/pretty-format': 3.2.4 2388 2728 magic-string: 0.30.17 2389 2729 pathe: 2.0.3 2390 2730 2731 + '@vitest/snapshot@4.1.1': 2732 + dependencies: 2733 + '@vitest/pretty-format': 4.1.1 2734 + '@vitest/utils': 4.1.1 2735 + magic-string: 0.30.21 2736 + pathe: 2.0.3 2737 + 2391 2738 '@vitest/spy@3.2.4': 2392 2739 dependencies: 2393 2740 tinyspy: 4.0.3 2394 2741 2742 + '@vitest/spy@4.1.1': {} 2743 + 2395 2744 '@vitest/utils@3.2.4': 2396 2745 dependencies: 2397 2746 '@vitest/pretty-format': 3.2.4 2398 2747 loupe: 3.2.0 2399 2748 tinyrainbow: 2.0.0 2400 2749 2401 - acorn@8.14.0: {} 2750 + '@vitest/utils@4.1.1': 2751 + dependencies: 2752 + '@vitest/pretty-format': 4.1.1 2753 + convert-source-map: 2.0.0 2754 + tinyrainbow: 3.1.0 2402 2755 2403 2756 ansi-colors@4.1.3: {} 2404 2757 2405 2758 ansi-regex@5.0.1: {} 2406 2759 2760 + ansis@4.2.0: {} 2761 + 2407 2762 argparse@1.0.10: 2408 2763 dependencies: 2409 2764 sprintf-js: 1.0.3 2410 2765 2411 - argparse@2.0.1: {} 2412 - 2413 2766 array-union@2.1.0: {} 2414 2767 2415 2768 assertion-error@2.0.1: {} 2416 2769 2417 - autoprefixer@10.4.21(postcss@8.5.6): 2770 + ast-kit@3.0.0-beta.1: 2418 2771 dependencies: 2419 - browserslist: 4.25.1 2420 - caniuse-lite: 1.0.30001727 2421 - fraction.js: 4.3.7 2422 - normalize-range: 0.1.2 2423 - picocolors: 1.1.1 2424 - postcss: 8.5.6 2425 - postcss-value-parser: 4.2.0 2772 + '@babel/parser': 8.0.0-rc.2 2773 + estree-walker: 3.0.3 2774 + pathe: 2.0.3 2426 2775 2427 2776 better-path-resolve@1.0.0: 2428 2777 dependencies: 2429 2778 is-windows: 1.0.2 2430 2779 2431 - boolbase@1.0.0: {} 2780 + birpc@4.0.0: {} 2432 2781 2433 2782 braces@3.0.3: 2434 2783 dependencies: 2435 2784 fill-range: 7.1.1 2436 2785 2437 - browserslist@4.25.1: 2438 - dependencies: 2439 - caniuse-lite: 1.0.30001727 2440 - electron-to-chromium: 1.5.190 2441 - node-releases: 2.0.19 2442 - update-browserslist-db: 1.1.3(browserslist@4.25.1) 2443 - 2444 2786 cac@6.7.14: {} 2445 2787 2446 - caniuse-api@3.0.0: 2447 - dependencies: 2448 - browserslist: 4.25.1 2449 - caniuse-lite: 1.0.30001727 2450 - lodash.memoize: 4.1.2 2451 - lodash.uniq: 4.5.0 2452 - 2453 - caniuse-lite@1.0.30001727: {} 2788 + cac@7.0.0: {} 2454 2789 2455 2790 chai@5.2.0: 2456 2791 dependencies: ··· 2460 2795 loupe: 3.2.0 2461 2796 pathval: 2.0.0 2462 2797 2798 + chai@6.2.2: {} 2799 + 2463 2800 chardet@0.7.0: {} 2464 2801 2465 2802 check-error@2.1.1: {} 2466 2803 2467 2804 ci-info@3.9.0: {} 2468 2805 2469 - citty@0.1.6: 2470 - dependencies: 2471 - consola: 3.4.2 2472 - 2473 - colord@2.9.3: {} 2474 - 2475 - commander@7.2.0: {} 2476 - 2477 - commondir@1.0.1: {} 2478 - 2479 - confbox@0.1.8: {} 2480 - 2481 - confbox@0.2.2: {} 2482 - 2483 - consola@3.4.2: {} 2806 + convert-source-map@2.0.0: {} 2484 2807 2485 2808 cross-env@7.0.3: 2486 2809 dependencies: ··· 2491 2814 path-key: 3.1.1 2492 2815 shebang-command: 2.0.0 2493 2816 which: 2.0.2 2494 - 2495 - css-declaration-sorter@7.2.0(postcss@8.5.6): 2496 - dependencies: 2497 - postcss: 8.5.6 2498 - 2499 - css-select@5.1.0: 2500 - dependencies: 2501 - boolbase: 1.0.0 2502 - css-what: 6.1.0 2503 - domhandler: 5.0.3 2504 - domutils: 3.1.0 2505 - nth-check: 2.1.1 2506 - 2507 - css-tree@2.2.1: 2508 - dependencies: 2509 - mdn-data: 2.0.28 2510 - source-map-js: 1.2.1 2511 - 2512 - css-tree@2.3.1: 2513 - dependencies: 2514 - mdn-data: 2.0.30 2515 - source-map-js: 1.2.1 2516 - 2517 - css-what@6.1.0: {} 2518 - 2519 - cssesc@3.0.0: {} 2520 - 2521 - cssnano-preset-default@7.0.6(postcss@8.5.6): 2522 - dependencies: 2523 - browserslist: 4.25.1 2524 - css-declaration-sorter: 7.2.0(postcss@8.5.6) 2525 - cssnano-utils: 5.0.0(postcss@8.5.6) 2526 - postcss: 8.5.6 2527 - postcss-calc: 10.0.2(postcss@8.5.6) 2528 - postcss-colormin: 7.0.2(postcss@8.5.6) 2529 - postcss-convert-values: 7.0.4(postcss@8.5.6) 2530 - postcss-discard-comments: 7.0.3(postcss@8.5.6) 2531 - postcss-discard-duplicates: 7.0.1(postcss@8.5.6) 2532 - postcss-discard-empty: 7.0.0(postcss@8.5.6) 2533 - postcss-discard-overridden: 7.0.0(postcss@8.5.6) 2534 - postcss-merge-longhand: 7.0.4(postcss@8.5.6) 2535 - postcss-merge-rules: 7.0.4(postcss@8.5.6) 2536 - postcss-minify-font-values: 7.0.0(postcss@8.5.6) 2537 - postcss-minify-gradients: 7.0.0(postcss@8.5.6) 2538 - postcss-minify-params: 7.0.2(postcss@8.5.6) 2539 - postcss-minify-selectors: 7.0.4(postcss@8.5.6) 2540 - postcss-normalize-charset: 7.0.0(postcss@8.5.6) 2541 - postcss-normalize-display-values: 7.0.0(postcss@8.5.6) 2542 - postcss-normalize-positions: 7.0.0(postcss@8.5.6) 2543 - postcss-normalize-repeat-style: 7.0.0(postcss@8.5.6) 2544 - postcss-normalize-string: 7.0.0(postcss@8.5.6) 2545 - postcss-normalize-timing-functions: 7.0.0(postcss@8.5.6) 2546 - postcss-normalize-unicode: 7.0.2(postcss@8.5.6) 2547 - postcss-normalize-url: 7.0.0(postcss@8.5.6) 2548 - postcss-normalize-whitespace: 7.0.0(postcss@8.5.6) 2549 - postcss-ordered-values: 7.0.1(postcss@8.5.6) 2550 - postcss-reduce-initial: 7.0.2(postcss@8.5.6) 2551 - postcss-reduce-transforms: 7.0.0(postcss@8.5.6) 2552 - postcss-svgo: 7.0.1(postcss@8.5.6) 2553 - postcss-unique-selectors: 7.0.3(postcss@8.5.6) 2554 - 2555 - cssnano-utils@5.0.0(postcss@8.5.6): 2556 - dependencies: 2557 - postcss: 8.5.6 2558 - 2559 - cssnano@7.0.6(postcss@8.5.6): 2560 - dependencies: 2561 - cssnano-preset-default: 7.0.6(postcss@8.5.6) 2562 - lilconfig: 3.1.2 2563 - postcss: 8.5.6 2564 - 2565 - csso@5.0.5: 2566 - dependencies: 2567 - css-tree: 2.2.1 2568 2817 2569 2818 debug@4.4.1: 2570 2819 dependencies: ··· 2572 2821 2573 2822 deep-eql@5.0.2: {} 2574 2823 2575 - deepmerge@4.3.1: {} 2576 - 2577 2824 defu@6.1.4: {} 2578 2825 2579 2826 detect-indent@6.1.0: {} ··· 2582 2829 dependencies: 2583 2830 path-type: 4.0.0 2584 2831 2585 - dom-serializer@2.0.0: 2586 - dependencies: 2587 - domelementtype: 2.3.0 2588 - domhandler: 5.0.3 2589 - entities: 4.5.0 2590 - 2591 - domelementtype@2.3.0: {} 2592 - 2593 - domhandler@5.0.3: 2594 - dependencies: 2595 - domelementtype: 2.3.0 2596 - 2597 - domutils@3.1.0: 2598 - dependencies: 2599 - dom-serializer: 2.0.0 2600 - domelementtype: 2.3.0 2601 - domhandler: 5.0.3 2832 + dts-resolver@2.1.3(oxc-resolver@11.19.1): 2833 + optionalDependencies: 2834 + oxc-resolver: 11.19.1 2602 2835 2603 - electron-to-chromium@1.5.190: {} 2836 + empathic@2.0.0: {} 2604 2837 2605 2838 enquirer@2.4.1: 2606 2839 dependencies: 2607 2840 ansi-colors: 4.1.3 2608 2841 strip-ansi: 6.0.1 2609 2842 2610 - entities@4.5.0: {} 2611 - 2612 2843 es-module-lexer@1.7.0: {} 2844 + 2845 + es-module-lexer@2.0.0: {} 2613 2846 2614 2847 esbuild@0.25.8: 2615 2848 optionalDependencies: ··· 2640 2873 '@esbuild/win32-ia32': 0.25.8 2641 2874 '@esbuild/win32-x64': 0.25.8 2642 2875 2643 - escalade@3.2.0: {} 2644 - 2645 2876 esprima@4.0.1: {} 2646 - 2647 - estree-walker@2.0.2: {} 2648 2877 2649 2878 estree-walker@3.0.3: 2650 2879 dependencies: ··· 2652 2881 2653 2882 expect-type@1.2.1: {} 2654 2883 2655 - exsolve@1.0.7: {} 2884 + expect-type@1.3.0: {} 2656 2885 2657 2886 extendable-error@0.1.7: {} 2658 2887 ··· 2692 2921 optionalDependencies: 2693 2922 picomatch: 4.0.3 2694 2923 2924 + fdir@6.5.0(picomatch@4.0.3): 2925 + optionalDependencies: 2926 + picomatch: 4.0.3 2927 + 2695 2928 fill-range@7.1.1: 2696 2929 dependencies: 2697 2930 to-regex-range: 5.0.1 ··· 2701 2934 locate-path: 5.0.0 2702 2935 path-exists: 4.0.0 2703 2936 2704 - fix-dts-default-cjs-exports@1.0.1: 2705 - dependencies: 2706 - magic-string: 0.30.17 2707 - mlly: 1.7.4 2708 - rollup: 4.45.1 2709 - 2710 - formatly@0.2.4: 2937 + formatly@0.3.0: 2711 2938 dependencies: 2712 2939 fd-package-json: 2.0.0 2713 - 2714 - fraction.js@4.3.7: {} 2715 2940 2716 2941 fs-extra@7.0.1: 2717 2942 dependencies: ··· 2728 2953 fsevents@2.3.3: 2729 2954 optional: true 2730 2955 2731 - function-bind@1.1.2: {} 2956 + get-tsconfig@4.13.7: 2957 + dependencies: 2958 + resolve-pkg-maps: 1.0.0 2732 2959 2733 2960 glob-parent@5.1.2: 2734 2961 dependencies: ··· 2745 2972 2746 2973 graceful-fs@4.2.11: {} 2747 2974 2748 - hasown@2.0.2: 2749 - dependencies: 2750 - function-bind: 1.1.2 2751 - 2752 - hookable@5.5.3: {} 2975 + hookable@6.1.0: {} 2753 2976 2754 2977 human-id@4.1.1: {} 2755 2978 ··· 2761 2984 2762 2985 ignore@5.3.2: {} 2763 2986 2764 - is-core-module@2.15.1: 2765 - dependencies: 2766 - hasown: 2.0.2 2987 + import-without-cache@0.2.5: {} 2767 2988 2768 2989 is-extglob@2.1.1: {} 2769 2990 ··· 2771 2992 dependencies: 2772 2993 is-extglob: 2.1.1 2773 2994 2774 - is-module@1.0.0: {} 2775 - 2776 2995 is-number@7.0.0: {} 2777 - 2778 - is-reference@1.2.1: 2779 - dependencies: 2780 - '@types/estree': 1.0.8 2781 2996 2782 2997 is-subdir@1.2.0: 2783 2998 dependencies: ··· 2791 3006 2792 3007 jiti@1.21.7: {} 2793 3008 2794 - jiti@2.5.0: {} 2795 - 2796 - js-tokens@4.0.0: 2797 - optional: true 3009 + jiti@2.6.1: {} 2798 3010 2799 3011 js-tokens@9.0.1: {} 2800 3012 ··· 2803 3015 argparse: 1.0.10 2804 3016 esprima: 4.0.1 2805 3017 2806 - js-yaml@4.1.0: 2807 - dependencies: 2808 - argparse: 2.0.1 3018 + jsesc@3.1.0: {} 2809 3019 2810 3020 jsonfile@4.0.0: 2811 3021 optionalDependencies: ··· 2817 3027 node-stream-zip: 1.15.0 2818 3028 semiver: 1.1.0 2819 3029 2820 - knip@5.62.0(@types/node@24.1.0)(typescript@5.8.3): 3030 + knip@5.88.1(@types/node@24.1.0)(typescript@5.8.3): 2821 3031 dependencies: 2822 3032 '@nodelib/fs.walk': 1.2.8 2823 3033 '@types/node': 24.1.0 2824 3034 fast-glob: 3.3.3 2825 - formatly: 0.2.4 2826 - jiti: 2.5.0 2827 - js-yaml: 4.1.0 3035 + formatly: 0.3.0 3036 + jiti: 2.6.1 2828 3037 minimist: 1.2.8 2829 - oxc-resolver: 11.6.0 3038 + oxc-resolver: 11.19.1 2830 3039 picocolors: 1.1.1 2831 3040 picomatch: 4.0.3 2832 - smol-toml: 1.4.1 2833 - strip-json-comments: 5.0.2 3041 + smol-toml: 1.6.1 3042 + strip-json-comments: 5.0.3 2834 3043 typescript: 5.8.3 2835 - zod: 3.22.4 2836 - zod-validation-error: 3.4.0(zod@3.22.4) 2837 - 2838 - knitwork@1.2.0: {} 3044 + unbash: 2.2.0 3045 + yaml: 2.8.3 3046 + zod: 4.3.6 2839 3047 2840 3048 kolorist@1.8.0: {} 2841 - 2842 - lilconfig@3.1.2: {} 2843 3049 2844 3050 locate-path@5.0.0: 2845 3051 dependencies: 2846 3052 p-locate: 4.1.0 2847 3053 2848 - lodash.memoize@4.1.2: {} 2849 - 2850 3054 lodash.startcase@4.4.0: {} 2851 - 2852 - lodash.uniq@4.5.0: {} 2853 3055 2854 3056 loupe@3.2.0: {} 2855 3057 ··· 2857 3059 dependencies: 2858 3060 '@jridgewell/sourcemap-codec': 1.5.0 2859 3061 2860 - mdn-data@2.0.28: {} 2861 - 2862 - mdn-data@2.0.30: {} 3062 + magic-string@0.30.21: 3063 + dependencies: 3064 + '@jridgewell/sourcemap-codec': 1.5.5 2863 3065 2864 3066 memfs@4.17.2: 2865 3067 dependencies: ··· 2877 3079 2878 3080 minimist@1.2.8: {} 2879 3081 2880 - mkdist@2.3.0(typescript@5.8.3): 2881 - dependencies: 2882 - autoprefixer: 10.4.21(postcss@8.5.6) 2883 - citty: 0.1.6 2884 - cssnano: 7.0.6(postcss@8.5.6) 2885 - defu: 6.1.4 2886 - esbuild: 0.25.8 2887 - jiti: 1.21.7 2888 - mlly: 1.7.4 2889 - pathe: 2.0.3 2890 - pkg-types: 2.2.0 2891 - postcss: 8.5.6 2892 - postcss-nested: 7.0.2(postcss@8.5.6) 2893 - semver: 7.7.2 2894 - tinyglobby: 0.2.14 2895 - optionalDependencies: 2896 - typescript: 5.8.3 2897 - 2898 - mlly@1.7.4: 2899 - dependencies: 2900 - acorn: 8.14.0 2901 - pathe: 2.0.3 2902 - pkg-types: 1.3.1 2903 - ufo: 1.5.4 2904 - 2905 3082 mri@1.2.0: {} 2906 3083 2907 3084 ms@2.1.3: {} 2908 3085 2909 3086 nanoid@3.3.11: {} 2910 3087 2911 - napi-postinstall@0.3.2: {} 2912 - 2913 - node-releases@2.0.19: {} 2914 - 2915 3088 node-stream-zip@1.15.0: {} 2916 3089 2917 - normalize-range@0.1.2: {} 2918 - 2919 - nth-check@2.1.1: 2920 - dependencies: 2921 - boolbase: 1.0.0 3090 + obug@2.1.1: {} 2922 3091 2923 3092 os-tmpdir@1.0.2: {} 2924 3093 2925 3094 outdent@0.5.0: {} 2926 3095 2927 - oxc-resolver@11.6.0: 3096 + oxc-resolver@11.19.1: 3097 + optionalDependencies: 3098 + '@oxc-resolver/binding-android-arm-eabi': 11.19.1 3099 + '@oxc-resolver/binding-android-arm64': 11.19.1 3100 + '@oxc-resolver/binding-darwin-arm64': 11.19.1 3101 + '@oxc-resolver/binding-darwin-x64': 11.19.1 3102 + '@oxc-resolver/binding-freebsd-x64': 11.19.1 3103 + '@oxc-resolver/binding-linux-arm-gnueabihf': 11.19.1 3104 + '@oxc-resolver/binding-linux-arm-musleabihf': 11.19.1 3105 + '@oxc-resolver/binding-linux-arm64-gnu': 11.19.1 3106 + '@oxc-resolver/binding-linux-arm64-musl': 11.19.1 3107 + '@oxc-resolver/binding-linux-ppc64-gnu': 11.19.1 3108 + '@oxc-resolver/binding-linux-riscv64-gnu': 11.19.1 3109 + '@oxc-resolver/binding-linux-riscv64-musl': 11.19.1 3110 + '@oxc-resolver/binding-linux-s390x-gnu': 11.19.1 3111 + '@oxc-resolver/binding-linux-x64-gnu': 11.19.1 3112 + '@oxc-resolver/binding-linux-x64-musl': 11.19.1 3113 + '@oxc-resolver/binding-openharmony-arm64': 11.19.1 3114 + '@oxc-resolver/binding-wasm32-wasi': 11.19.1 3115 + '@oxc-resolver/binding-win32-arm64-msvc': 11.19.1 3116 + '@oxc-resolver/binding-win32-ia32-msvc': 11.19.1 3117 + '@oxc-resolver/binding-win32-x64-msvc': 11.19.1 3118 + 3119 + oxfmt@0.36.0: 2928 3120 dependencies: 2929 - napi-postinstall: 0.3.2 3121 + tinypool: 2.1.0 2930 3122 optionalDependencies: 2931 - '@oxc-resolver/binding-android-arm-eabi': 11.6.0 2932 - '@oxc-resolver/binding-android-arm64': 11.6.0 2933 - '@oxc-resolver/binding-darwin-arm64': 11.6.0 2934 - '@oxc-resolver/binding-darwin-x64': 11.6.0 2935 - '@oxc-resolver/binding-freebsd-x64': 11.6.0 2936 - '@oxc-resolver/binding-linux-arm-gnueabihf': 11.6.0 2937 - '@oxc-resolver/binding-linux-arm-musleabihf': 11.6.0 2938 - '@oxc-resolver/binding-linux-arm64-gnu': 11.6.0 2939 - '@oxc-resolver/binding-linux-arm64-musl': 11.6.0 2940 - '@oxc-resolver/binding-linux-ppc64-gnu': 11.6.0 2941 - '@oxc-resolver/binding-linux-riscv64-gnu': 11.6.0 2942 - '@oxc-resolver/binding-linux-riscv64-musl': 11.6.0 2943 - '@oxc-resolver/binding-linux-s390x-gnu': 11.6.0 2944 - '@oxc-resolver/binding-linux-x64-gnu': 11.6.0 2945 - '@oxc-resolver/binding-linux-x64-musl': 11.6.0 2946 - '@oxc-resolver/binding-wasm32-wasi': 11.6.0 2947 - '@oxc-resolver/binding-win32-arm64-msvc': 11.6.0 2948 - '@oxc-resolver/binding-win32-ia32-msvc': 11.6.0 2949 - '@oxc-resolver/binding-win32-x64-msvc': 11.6.0 3123 + '@oxfmt/binding-android-arm-eabi': 0.36.0 3124 + '@oxfmt/binding-android-arm64': 0.36.0 3125 + '@oxfmt/binding-darwin-arm64': 0.36.0 3126 + '@oxfmt/binding-darwin-x64': 0.36.0 3127 + '@oxfmt/binding-freebsd-x64': 0.36.0 3128 + '@oxfmt/binding-linux-arm-gnueabihf': 0.36.0 3129 + '@oxfmt/binding-linux-arm-musleabihf': 0.36.0 3130 + '@oxfmt/binding-linux-arm64-gnu': 0.36.0 3131 + '@oxfmt/binding-linux-arm64-musl': 0.36.0 3132 + '@oxfmt/binding-linux-ppc64-gnu': 0.36.0 3133 + '@oxfmt/binding-linux-riscv64-gnu': 0.36.0 3134 + '@oxfmt/binding-linux-riscv64-musl': 0.36.0 3135 + '@oxfmt/binding-linux-s390x-gnu': 0.36.0 3136 + '@oxfmt/binding-linux-x64-gnu': 0.36.0 3137 + '@oxfmt/binding-linux-x64-musl': 0.36.0 3138 + '@oxfmt/binding-openharmony-arm64': 0.36.0 3139 + '@oxfmt/binding-win32-arm64-msvc': 0.36.0 3140 + '@oxfmt/binding-win32-ia32-msvc': 0.36.0 3141 + '@oxfmt/binding-win32-x64-msvc': 0.36.0 3142 + 3143 + oxlint@1.57.0: 3144 + optionalDependencies: 3145 + '@oxlint/binding-android-arm-eabi': 1.57.0 3146 + '@oxlint/binding-android-arm64': 1.57.0 3147 + '@oxlint/binding-darwin-arm64': 1.57.0 3148 + '@oxlint/binding-darwin-x64': 1.57.0 3149 + '@oxlint/binding-freebsd-x64': 1.57.0 3150 + '@oxlint/binding-linux-arm-gnueabihf': 1.57.0 3151 + '@oxlint/binding-linux-arm-musleabihf': 1.57.0 3152 + '@oxlint/binding-linux-arm64-gnu': 1.57.0 3153 + '@oxlint/binding-linux-arm64-musl': 1.57.0 3154 + '@oxlint/binding-linux-ppc64-gnu': 1.57.0 3155 + '@oxlint/binding-linux-riscv64-gnu': 1.57.0 3156 + '@oxlint/binding-linux-riscv64-musl': 1.57.0 3157 + '@oxlint/binding-linux-s390x-gnu': 1.57.0 3158 + '@oxlint/binding-linux-x64-gnu': 1.57.0 3159 + '@oxlint/binding-linux-x64-musl': 1.57.0 3160 + '@oxlint/binding-openharmony-arm64': 1.57.0 3161 + '@oxlint/binding-win32-arm64-msvc': 1.57.0 3162 + '@oxlint/binding-win32-ia32-msvc': 1.57.0 3163 + '@oxlint/binding-win32-x64-msvc': 1.57.0 2950 3164 2951 3165 p-filter@2.1.0: 2952 3166 dependencies: ··· 2968 3182 dependencies: 2969 3183 quansync: 0.2.10 2970 3184 3185 + package-manager-detector@1.6.0: {} 3186 + 2971 3187 path-exists@4.0.0: {} 2972 3188 2973 3189 path-key@3.1.1: {} 2974 - 2975 - path-parse@1.0.7: {} 2976 3190 2977 3191 path-type@4.0.0: {} 2978 3192 ··· 2986 3200 2987 3201 picomatch@4.0.3: {} 2988 3202 2989 - pify@4.0.1: {} 2990 - 2991 - pkg-types@1.3.1: 2992 - dependencies: 2993 - confbox: 0.1.8 2994 - mlly: 1.7.4 2995 - pathe: 2.0.3 2996 - 2997 - pkg-types@2.2.0: 2998 - dependencies: 2999 - confbox: 0.2.2 3000 - exsolve: 1.0.7 3001 - pathe: 2.0.3 3002 - 3003 - postcss-calc@10.0.2(postcss@8.5.6): 3004 - dependencies: 3005 - postcss: 8.5.6 3006 - postcss-selector-parser: 6.1.2 3007 - postcss-value-parser: 4.2.0 3008 - 3009 - postcss-colormin@7.0.2(postcss@8.5.6): 3010 - dependencies: 3011 - browserslist: 4.25.1 3012 - caniuse-api: 3.0.0 3013 - colord: 2.9.3 3014 - postcss: 8.5.6 3015 - postcss-value-parser: 4.2.0 3016 - 3017 - postcss-convert-values@7.0.4(postcss@8.5.6): 3018 - dependencies: 3019 - browserslist: 4.25.1 3020 - postcss: 8.5.6 3021 - postcss-value-parser: 4.2.0 3022 - 3023 - postcss-discard-comments@7.0.3(postcss@8.5.6): 3024 - dependencies: 3025 - postcss: 8.5.6 3026 - postcss-selector-parser: 6.1.2 3027 - 3028 - postcss-discard-duplicates@7.0.1(postcss@8.5.6): 3029 - dependencies: 3030 - postcss: 8.5.6 3031 - 3032 - postcss-discard-empty@7.0.0(postcss@8.5.6): 3033 - dependencies: 3034 - postcss: 8.5.6 3035 - 3036 - postcss-discard-overridden@7.0.0(postcss@8.5.6): 3037 - dependencies: 3038 - postcss: 8.5.6 3039 - 3040 - postcss-merge-longhand@7.0.4(postcss@8.5.6): 3041 - dependencies: 3042 - postcss: 8.5.6 3043 - postcss-value-parser: 4.2.0 3044 - stylehacks: 7.0.4(postcss@8.5.6) 3203 + picomatch@4.0.4: {} 3045 3204 3046 - postcss-merge-rules@7.0.4(postcss@8.5.6): 3047 - dependencies: 3048 - browserslist: 4.25.1 3049 - caniuse-api: 3.0.0 3050 - cssnano-utils: 5.0.0(postcss@8.5.6) 3051 - postcss: 8.5.6 3052 - postcss-selector-parser: 6.1.2 3053 - 3054 - postcss-minify-font-values@7.0.0(postcss@8.5.6): 3055 - dependencies: 3056 - postcss: 8.5.6 3057 - postcss-value-parser: 4.2.0 3058 - 3059 - postcss-minify-gradients@7.0.0(postcss@8.5.6): 3060 - dependencies: 3061 - colord: 2.9.3 3062 - cssnano-utils: 5.0.0(postcss@8.5.6) 3063 - postcss: 8.5.6 3064 - postcss-value-parser: 4.2.0 3065 - 3066 - postcss-minify-params@7.0.2(postcss@8.5.6): 3067 - dependencies: 3068 - browserslist: 4.25.1 3069 - cssnano-utils: 5.0.0(postcss@8.5.6) 3070 - postcss: 8.5.6 3071 - postcss-value-parser: 4.2.0 3072 - 3073 - postcss-minify-selectors@7.0.4(postcss@8.5.6): 3074 - dependencies: 3075 - cssesc: 3.0.0 3076 - postcss: 8.5.6 3077 - postcss-selector-parser: 6.1.2 3078 - 3079 - postcss-nested@7.0.2(postcss@8.5.6): 3080 - dependencies: 3081 - postcss: 8.5.6 3082 - postcss-selector-parser: 7.1.0 3083 - 3084 - postcss-normalize-charset@7.0.0(postcss@8.5.6): 3085 - dependencies: 3086 - postcss: 8.5.6 3087 - 3088 - postcss-normalize-display-values@7.0.0(postcss@8.5.6): 3089 - dependencies: 3090 - postcss: 8.5.6 3091 - postcss-value-parser: 4.2.0 3092 - 3093 - postcss-normalize-positions@7.0.0(postcss@8.5.6): 3094 - dependencies: 3095 - postcss: 8.5.6 3096 - postcss-value-parser: 4.2.0 3097 - 3098 - postcss-normalize-repeat-style@7.0.0(postcss@8.5.6): 3099 - dependencies: 3100 - postcss: 8.5.6 3101 - postcss-value-parser: 4.2.0 3102 - 3103 - postcss-normalize-string@7.0.0(postcss@8.5.6): 3104 - dependencies: 3105 - postcss: 8.5.6 3106 - postcss-value-parser: 4.2.0 3107 - 3108 - postcss-normalize-timing-functions@7.0.0(postcss@8.5.6): 3109 - dependencies: 3110 - postcss: 8.5.6 3111 - postcss-value-parser: 4.2.0 3112 - 3113 - postcss-normalize-unicode@7.0.2(postcss@8.5.6): 3114 - dependencies: 3115 - browserslist: 4.25.1 3116 - postcss: 8.5.6 3117 - postcss-value-parser: 4.2.0 3118 - 3119 - postcss-normalize-url@7.0.0(postcss@8.5.6): 3120 - dependencies: 3121 - postcss: 8.5.6 3122 - postcss-value-parser: 4.2.0 3123 - 3124 - postcss-normalize-whitespace@7.0.0(postcss@8.5.6): 3125 - dependencies: 3126 - postcss: 8.5.6 3127 - postcss-value-parser: 4.2.0 3128 - 3129 - postcss-ordered-values@7.0.1(postcss@8.5.6): 3130 - dependencies: 3131 - cssnano-utils: 5.0.0(postcss@8.5.6) 3132 - postcss: 8.5.6 3133 - postcss-value-parser: 4.2.0 3134 - 3135 - postcss-reduce-initial@7.0.2(postcss@8.5.6): 3136 - dependencies: 3137 - browserslist: 4.25.1 3138 - caniuse-api: 3.0.0 3139 - postcss: 8.5.6 3140 - 3141 - postcss-reduce-transforms@7.0.0(postcss@8.5.6): 3142 - dependencies: 3143 - postcss: 8.5.6 3144 - postcss-value-parser: 4.2.0 3145 - 3146 - postcss-selector-parser@6.1.2: 3147 - dependencies: 3148 - cssesc: 3.0.0 3149 - util-deprecate: 1.0.2 3150 - 3151 - postcss-selector-parser@7.1.0: 3152 - dependencies: 3153 - cssesc: 3.0.0 3154 - util-deprecate: 1.0.2 3155 - 3156 - postcss-svgo@7.0.1(postcss@8.5.6): 3157 - dependencies: 3158 - postcss: 8.5.6 3159 - postcss-value-parser: 4.2.0 3160 - svgo: 3.3.2 3161 - 3162 - postcss-unique-selectors@7.0.3(postcss@8.5.6): 3163 - dependencies: 3164 - postcss: 8.5.6 3165 - postcss-selector-parser: 6.1.2 3166 - 3167 - postcss-value-parser@4.2.0: {} 3205 + pify@4.0.1: {} 3168 3206 3169 3207 postcss@8.5.6: 3170 3208 dependencies: ··· 3174 3212 3175 3213 prettier@2.8.8: {} 3176 3214 3177 - pretty-bytes@7.0.0: {} 3215 + publint@0.3.18: 3216 + dependencies: 3217 + '@publint/pack': 0.1.4 3218 + package-manager-detector: 1.6.0 3219 + picocolors: 1.1.1 3220 + sade: 1.8.1 3178 3221 3179 3222 quansync@0.2.10: {} 3180 3223 3224 + quansync@1.0.0: {} 3225 + 3181 3226 queue-microtask@1.2.3: {} 3182 3227 3183 3228 read-yaml-file@1.1.0: ··· 3189 3234 3190 3235 resolve-from@5.0.0: {} 3191 3236 3192 - resolve@1.22.8: 3193 - dependencies: 3194 - is-core-module: 2.15.1 3195 - path-parse: 1.0.7 3196 - supports-preserve-symlinks-flag: 1.0.0 3237 + resolve-pkg-maps@1.0.0: {} 3197 3238 3198 3239 reusify@1.0.4: {} 3199 3240 3200 - rollup-plugin-dts@6.2.1(rollup@4.45.1)(typescript@5.8.3): 3241 + rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260307.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.11)(typescript@5.8.3): 3201 3242 dependencies: 3202 - magic-string: 0.30.17 3203 - rollup: 4.45.1 3243 + '@babel/generator': 8.0.0-rc.2 3244 + '@babel/helper-validator-identifier': 8.0.0-rc.2 3245 + '@babel/parser': 8.0.0-rc.2 3246 + '@babel/types': 8.0.0-rc.2 3247 + ast-kit: 3.0.0-beta.1 3248 + birpc: 4.0.0 3249 + dts-resolver: 2.1.3(oxc-resolver@11.19.1) 3250 + get-tsconfig: 4.13.7 3251 + obug: 2.1.1 3252 + rolldown: 1.0.0-rc.11 3253 + optionalDependencies: 3254 + '@typescript/native-preview': 7.0.0-dev.20260307.1 3204 3255 typescript: 5.8.3 3256 + transitivePeerDependencies: 3257 + - oxc-resolver 3258 + 3259 + rolldown@1.0.0-rc.11: 3260 + dependencies: 3261 + '@oxc-project/types': 0.122.0 3262 + '@rolldown/pluginutils': 1.0.0-rc.11 3205 3263 optionalDependencies: 3206 - '@babel/code-frame': 7.26.2 3264 + '@rolldown/binding-android-arm64': 1.0.0-rc.11 3265 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.11 3266 + '@rolldown/binding-darwin-x64': 1.0.0-rc.11 3267 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.11 3268 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.11 3269 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.11 3270 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.11 3271 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.11 3272 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.11 3273 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.11 3274 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.11 3275 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.11 3276 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.11 3277 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.11 3278 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.11 3207 3279 3208 3280 rollup@4.45.1: 3209 3281 dependencies: ··· 3234 3306 run-parallel@1.2.0: 3235 3307 dependencies: 3236 3308 queue-microtask: 1.2.3 3309 + 3310 + sade@1.8.1: 3311 + dependencies: 3312 + mri: 1.2.0 3237 3313 3238 3314 safer-buffer@2.1.2: {} 3239 3315 3240 - scule@1.3.0: {} 3241 - 3242 3316 semiver@1.1.0: {} 3243 3317 3244 3318 semver@7.7.2: {} 3319 + 3320 + semver@7.7.4: {} 3245 3321 3246 3322 shebang-command@2.0.0: 3247 3323 dependencies: ··· 3257 3333 3258 3334 slash@3.0.0: {} 3259 3335 3260 - smol-toml@1.4.1: {} 3336 + smol-toml@1.6.1: {} 3261 3337 3262 3338 source-map-js@1.2.1: {} 3263 3339 ··· 3272 3348 3273 3349 std-env@3.9.0: {} 3274 3350 3351 + std-env@4.0.0: {} 3352 + 3275 3353 strip-ansi@6.0.1: 3276 3354 dependencies: 3277 3355 ansi-regex: 5.0.1 3278 3356 3279 3357 strip-bom@3.0.0: {} 3280 3358 3281 - strip-json-comments@5.0.2: {} 3359 + strip-json-comments@5.0.3: {} 3282 3360 3283 3361 strip-literal@3.0.0: 3284 3362 dependencies: 3285 3363 js-tokens: 9.0.1 3286 3364 3287 - stylehacks@7.0.4(postcss@8.5.6): 3288 - dependencies: 3289 - browserslist: 4.25.1 3290 - postcss: 8.5.6 3291 - postcss-selector-parser: 6.1.2 3292 - 3293 - supports-preserve-symlinks-flag@1.0.0: {} 3294 - 3295 - svgo@3.3.2: 3296 - dependencies: 3297 - '@trysound/sax': 0.2.0 3298 - commander: 7.2.0 3299 - css-select: 5.1.0 3300 - css-tree: 2.3.1 3301 - css-what: 6.1.0 3302 - csso: 5.0.5 3303 - picocolors: 1.1.1 3304 - 3305 3365 term-size@2.2.1: {} 3306 3366 3307 3367 thingies@1.21.0(tslib@2.8.1): ··· 3312 3372 3313 3373 tinyexec@0.3.2: {} 3314 3374 3375 + tinyexec@1.0.4: {} 3376 + 3315 3377 tinyglobby@0.2.14: 3316 3378 dependencies: 3317 3379 fdir: 6.4.6(picomatch@4.0.3) 3318 3380 picomatch: 4.0.3 3319 3381 3382 + tinyglobby@0.2.15: 3383 + dependencies: 3384 + fdir: 6.5.0(picomatch@4.0.3) 3385 + picomatch: 4.0.3 3386 + 3320 3387 tinypool@1.1.1: {} 3321 3388 3389 + tinypool@2.1.0: {} 3390 + 3322 3391 tinyrainbow@2.0.0: {} 3392 + 3393 + tinyrainbow@3.1.0: {} 3323 3394 3324 3395 tinyspy@4.0.3: {} 3325 3396 ··· 3335 3406 dependencies: 3336 3407 tslib: 2.8.1 3337 3408 3338 - tslib@2.8.1: {} 3409 + tree-kill@1.2.2: {} 3339 3410 3340 - typescript@5.8.3: {} 3341 - 3342 - ufo@1.5.4: {} 3343 - 3344 - unbuild@3.6.0(typescript@5.8.3): 3411 + tsdown@0.21.5(@typescript/native-preview@7.0.0-dev.20260307.1)(oxc-resolver@11.19.1)(publint@0.3.18)(typescript@5.8.3): 3345 3412 dependencies: 3346 - '@rollup/plugin-alias': 5.1.1(rollup@4.45.1) 3347 - '@rollup/plugin-commonjs': 28.0.6(rollup@4.45.1) 3348 - '@rollup/plugin-json': 6.1.0(rollup@4.45.1) 3349 - '@rollup/plugin-node-resolve': 16.0.1(rollup@4.45.1) 3350 - '@rollup/plugin-replace': 6.0.2(rollup@4.45.1) 3351 - '@rollup/pluginutils': 5.2.0(rollup@4.45.1) 3352 - citty: 0.1.6 3353 - consola: 3.4.2 3413 + ansis: 4.2.0 3414 + cac: 7.0.0 3354 3415 defu: 6.1.4 3355 - esbuild: 0.25.8 3356 - fix-dts-default-cjs-exports: 1.0.1 3357 - hookable: 5.5.3 3358 - jiti: 2.5.0 3359 - magic-string: 0.30.17 3360 - mkdist: 2.3.0(typescript@5.8.3) 3361 - mlly: 1.7.4 3362 - pathe: 2.0.3 3363 - pkg-types: 2.2.0 3364 - pretty-bytes: 7.0.0 3365 - rollup: 4.45.1 3366 - rollup-plugin-dts: 6.2.1(rollup@4.45.1)(typescript@5.8.3) 3367 - scule: 1.3.0 3368 - tinyglobby: 0.2.14 3369 - untyped: 2.0.0 3416 + empathic: 2.0.0 3417 + hookable: 6.1.0 3418 + import-without-cache: 0.2.5 3419 + obug: 2.1.1 3420 + picomatch: 4.0.4 3421 + rolldown: 1.0.0-rc.11 3422 + rolldown-plugin-dts: 0.22.5(@typescript/native-preview@7.0.0-dev.20260307.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.11)(typescript@5.8.3) 3423 + semver: 7.7.4 3424 + tinyexec: 1.0.4 3425 + tinyglobby: 0.2.15 3426 + tree-kill: 1.2.2 3427 + unconfig-core: 7.5.0 3428 + unrun: 0.2.33 3370 3429 optionalDependencies: 3430 + publint: 0.3.18 3371 3431 typescript: 5.8.3 3372 3432 transitivePeerDependencies: 3373 - - sass 3374 - - vue 3375 - - vue-sfc-transformer 3433 + - '@ts-macro/tsc' 3434 + - '@typescript/native-preview' 3435 + - oxc-resolver 3436 + - synckit 3376 3437 - vue-tsc 3377 3438 3378 - undici-types@7.8.0: {} 3439 + tslib@2.8.1: {} 3379 3440 3380 - universalify@0.1.2: {} 3441 + typescript@5.8.3: {} 3381 3442 3382 - untyped@2.0.0: 3383 - dependencies: 3384 - citty: 0.1.6 3385 - defu: 6.1.4 3386 - jiti: 2.5.0 3387 - knitwork: 1.2.0 3388 - scule: 1.3.0 3443 + unbash@2.2.0: {} 3389 3444 3390 - update-browserslist-db@1.1.3(browserslist@4.25.1): 3445 + unconfig-core@7.5.0: 3391 3446 dependencies: 3392 - browserslist: 4.25.1 3393 - escalade: 3.2.0 3394 - picocolors: 1.1.1 3447 + '@quansync/fs': 1.0.0 3448 + quansync: 1.0.0 3449 + 3450 + undici-types@7.8.0: {} 3451 + 3452 + universalify@0.1.2: {} 3395 3453 3396 - util-deprecate@1.0.2: {} 3454 + unrun@0.2.33: 3455 + dependencies: 3456 + rolldown: 1.0.0-rc.11 3397 3457 3398 - vite-node@3.2.4(@types/node@24.1.0)(jiti@2.5.0): 3458 + vite-node@3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3): 3399 3459 dependencies: 3400 3460 cac: 6.7.14 3401 3461 debug: 4.4.1 3402 3462 es-module-lexer: 1.7.0 3403 3463 pathe: 2.0.3 3404 - vite: 7.0.6(@types/node@24.1.0)(jiti@2.5.0) 3464 + vite: 7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 3405 3465 transitivePeerDependencies: 3406 3466 - '@types/node' 3407 3467 - jiti ··· 3416 3476 - tsx 3417 3477 - yaml 3418 3478 3419 - vite@7.0.6(@types/node@24.1.0)(jiti@2.5.0): 3479 + vite@7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3): 3420 3480 dependencies: 3421 3481 esbuild: 0.25.8 3422 3482 fdir: 6.4.6(picomatch@4.0.3) ··· 3427 3487 optionalDependencies: 3428 3488 '@types/node': 24.1.0 3429 3489 fsevents: 2.3.3 3430 - jiti: 2.5.0 3490 + jiti: 2.6.1 3491 + yaml: 2.8.3 3431 3492 3432 - vitest-ansi-serializer@0.1.2(vitest@3.2.4(@types/node@24.1.0)(jiti@2.5.0)): 3493 + vitest-ansi-serializer@0.1.2(vitest@3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3)): 3433 3494 dependencies: 3434 - vitest: 3.2.4(@types/node@24.1.0)(jiti@2.5.0) 3495 + vitest: 3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 3435 3496 3436 - vitest@3.2.4(@types/node@24.1.0)(jiti@2.5.0): 3497 + vitest@3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3): 3437 3498 dependencies: 3438 3499 '@types/chai': 5.2.2 3439 3500 '@vitest/expect': 3.2.4 3440 - '@vitest/mocker': 3.2.4(vite@7.0.6(@types/node@24.1.0)(jiti@2.5.0)) 3501 + '@vitest/mocker': 3.2.4(vite@7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3)) 3441 3502 '@vitest/pretty-format': 3.2.4 3442 3503 '@vitest/runner': 3.2.4 3443 3504 '@vitest/snapshot': 3.2.4 ··· 3455 3516 tinyglobby: 0.2.14 3456 3517 tinypool: 1.1.1 3457 3518 tinyrainbow: 2.0.0 3458 - vite: 7.0.6(@types/node@24.1.0)(jiti@2.5.0) 3459 - vite-node: 3.2.4(@types/node@24.1.0)(jiti@2.5.0) 3519 + vite: 7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 3520 + vite-node: 3.2.4(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 3460 3521 why-is-node-running: 2.3.0 3461 3522 optionalDependencies: 3462 3523 '@types/node': 24.1.0 ··· 3474 3535 - tsx 3475 3536 - yaml 3476 3537 3538 + vitest@4.1.1(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3): 3539 + dependencies: 3540 + '@vitest/expect': 4.1.1 3541 + '@vitest/mocker': 4.1.1(vite@7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3)) 3542 + '@vitest/pretty-format': 4.1.1 3543 + '@vitest/runner': 4.1.1 3544 + '@vitest/snapshot': 4.1.1 3545 + '@vitest/spy': 4.1.1 3546 + '@vitest/utils': 4.1.1 3547 + es-module-lexer: 2.0.0 3548 + expect-type: 1.3.0 3549 + magic-string: 0.30.21 3550 + obug: 2.1.1 3551 + pathe: 2.0.3 3552 + picomatch: 4.0.3 3553 + std-env: 4.0.0 3554 + tinybench: 2.9.0 3555 + tinyexec: 1.0.4 3556 + tinyglobby: 0.2.15 3557 + tinyrainbow: 3.1.0 3558 + vite: 7.0.6(@types/node@24.1.0)(jiti@2.6.1)(yaml@2.8.3) 3559 + why-is-node-running: 2.3.0 3560 + optionalDependencies: 3561 + '@types/node': 24.1.0 3562 + transitivePeerDependencies: 3563 + - jiti 3564 + - less 3565 + - lightningcss 3566 + - msw 3567 + - sass 3568 + - sass-embedded 3569 + - stylus 3570 + - sugarss 3571 + - terser 3572 + - tsx 3573 + - yaml 3574 + 3477 3575 walk-up-path@4.0.0: {} 3478 3576 3479 3577 which@2.0.2: ··· 3485 3583 siginfo: 2.0.0 3486 3584 stackback: 0.0.2 3487 3585 3488 - zod-validation-error@3.4.0(zod@3.22.4): 3489 - dependencies: 3490 - zod: 3.22.4 3586 + yaml@2.8.3: {} 3491 3587 3492 - zod@3.22.4: {} 3588 + zod@4.3.6: {}