[READ-ONLY] Mirror of https://github.com/danielroe/fnv1a-64. Tiny, fast, dependency-free 64-bit FNV-1a string hash for Node and the browser.
64-bit fnv fnv-1a fnv1a hash non-cryptographic
0

Configure Feed

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

chore: migrate to type-aware oxlint

Daniel Roe (Jul 15, 2026, 12:05 PM +0100) 83ceff12 b85cb521

+520 -2610
-1
.gitignore
··· 3 3 coverage 4 4 .vscode 5 5 .DS_Store 6 - .eslintcache 7 6 *.log* 8 7 *.env*
+20
.oxlintrc.json
··· 1 + { 2 + "$schema": "./node_modules/oxlint/configuration_schema.json", 3 + "plugins": [ 4 + "typescript", 5 + "unicorn", 6 + "oxc" 7 + ], 8 + "categories": { 9 + "correctness": "error", 10 + "suspicious": "error", 11 + "perf": "error" 12 + }, 13 + "rules": {}, 14 + "options": { 15 + "typeAware": true 16 + }, 17 + "env": { 18 + "builtin": true 19 + } 20 + }
+2 -2
bench.mjs
··· 10 10 const long = 'a'.repeat(1024) 11 11 12 12 for (const [label, input] of [['short key', short], ['1KB string', long]]) { 13 - group(label, () => { 13 + void group(label, () => { 14 14 bench('fnv1a-64 (lanes)', () => fnv1a64(input)) 15 15 bench('fnv1a-64 (hex)', () => fnv1a64Hex(input)) 16 16 bench('fnv1a-64 (base36)', () => fnv1a64Base36(input)) ··· 22 22 }) 23 23 } 24 24 25 - run() 25 + await run()
-1
collisions.mjs
··· 1 - /* eslint-disable no-console */ 2 1 import process from 'node:process' 3 2 import sindresorhusFnv1a from '@sindresorhus/fnv1a' 4 3 import fnvLite from 'fnv-lite'
-3
eslint.config.js
··· 1 - import antfu from '@antfu/eslint-config' 2 - 3 - export default antfu()
+6 -5
package.json
··· 39 39 "scripts": { 40 40 "build": "tsdown", 41 41 "dev": "vitest dev", 42 - "lint": "eslint . --fix", 42 + "lint": "oxlint --type-aware", 43 43 "prepare": "simple-git-hooks", 44 44 "prepack": "pnpm build", 45 45 "test": "pnpm test:unit && pnpm test:types", ··· 51 51 "test:types": "tsc --noEmit" 52 52 }, 53 53 "devDependencies": { 54 - "@antfu/eslint-config": "9.1.0", 55 54 "@sindresorhus/fnv1a": "^3.1.0", 55 + "@types/node": "26.1.1", 56 56 "@vitest/coverage-v8": "4.1.10", 57 - "eslint": "10.7.0", 58 57 "fnv-lite": "^1.2.0", 59 58 "fnv-plus": "^1.3.1", 60 59 "installed-check": "10.0.1", ··· 62 61 "mitata": "^1.0.34", 63 62 "murmurhash": "^2.0.1", 64 63 "nano-staged": "1.0.2", 64 + "oxlint": "1.74.0", 65 + "oxlint-tsgolint": "0.24.0", 65 66 "simple-git-hooks": "2.13.1", 66 67 "tsdown": "0.22.7", 67 - "typescript": "6.0.3", 68 + "typescript": "7.0.2", 68 69 "vitest": "4.1.10", 69 70 "xxhashjs": "^0.2.2" 70 71 }, ··· 73 74 }, 74 75 "nano-staged": { 75 76 "*.{js,ts,mjs,cjs,json,.*rc}": [ 76 - "npx eslint --fix" 77 + "npx oxlint --type-aware --fix" 77 78 ] 78 79 } 79 80 }
-1
playground/index.js
··· 1 1 import assert from 'node:assert' 2 2 import { fnv1a64, fnv1a64Base36, fnv1a64Hex } from 'fnv1a-64' 3 3 4 - // eslint-disable-next-line no-console 5 4 console.log(fnv1a64Hex('hello world'), fnv1a64Base36('hello world')) 6 5 7 6 assert.strictEqual(fnv1a64Hex('hello world'), '779a65e7023cd2e7')
+492 -2597
pnpm-lock.yaml
··· 11 11 12 12 .: 13 13 devDependencies: 14 - '@antfu/eslint-config': 15 - specifier: 9.1.0 16 - version: 9.1.0(@typescript-eslint/rule-tester@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@6.0.3))(@typescript-eslint/utils@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(@vue/compiler-sfc@3.5.35)(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10) 17 14 '@sindresorhus/fnv1a': 18 15 specifier: ^3.1.0 19 16 version: 3.1.0 17 + '@types/node': 18 + specifier: 26.1.1 19 + version: 26.1.1 20 20 '@vitest/coverage-v8': 21 21 specifier: 4.1.10 22 22 version: 4.1.10(vitest@4.1.10) 23 - eslint: 24 - specifier: 10.7.0 25 - version: 10.7.0(jiti@2.7.0) 26 23 fnv-lite: 27 24 specifier: ^1.2.0 28 25 version: 1.2.0 ··· 44 41 nano-staged: 45 42 specifier: 1.0.2 46 43 version: 1.0.2 44 + oxlint: 45 + specifier: 1.74.0 46 + version: 1.74.0(oxlint-tsgolint@0.24.0) 47 + oxlint-tsgolint: 48 + specifier: 0.24.0 49 + version: 0.24.0 47 50 simple-git-hooks: 48 51 specifier: 2.13.1 49 52 version: 2.13.1 50 53 tsdown: 51 54 specifier: 0.22.7 52 - version: 0.22.7(oxc-resolver@11.21.3)(typescript@6.0.3) 55 + version: 0.22.7(oxc-resolver@11.21.3)(typescript@7.0.2) 53 56 typescript: 54 - specifier: 6.0.3 55 - version: 6.0.3 57 + specifier: 7.0.2 58 + version: 7.0.2 56 59 vitest: 57 60 specifier: 4.1.10 58 - version: 4.1.10(@vitest/coverage-v8@4.1.10)(vite@8.0.16(jiti@2.7.0)(yaml@2.9.0)) 61 + version: 4.1.10(@types/node@26.1.1)(@vitest/coverage-v8@4.1.10)(vite@8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0)) 59 62 xxhashjs: 60 63 specifier: ^0.2.2 61 64 version: 0.2.2 ··· 68 71 69 72 packages: 70 73 71 - '@antfu/eslint-config@9.1.0': 72 - resolution: {integrity: sha512-Vtjt+W/6/bV9hgQG8AiWG66OpAeLKmpo5bZaAmUdRvZsMyirVvIJeHnbM4XUJf4urIuLvK0gGSvXD74PI3ZnGQ==} 73 - hasBin: true 74 - peerDependencies: 75 - '@angular-eslint/eslint-plugin': ^21.1.0 76 - '@angular-eslint/eslint-plugin-template': ^21.1.0 77 - '@angular-eslint/template-parser': ^21.1.0 78 - '@eslint-react/eslint-plugin': ^5.6.0 79 - '@next/eslint-plugin-next': '>=15.0.0' 80 - '@prettier/plugin-xml': ^3.4.1 81 - '@unocss/eslint-plugin': '>=0.50.0' 82 - astro-eslint-parser: ^1.0.2 83 - eslint: ^9.10.0 || ^10.0.0 84 - eslint-plugin-astro: ^1.2.0 85 - eslint-plugin-format: '>=0.1.0' 86 - eslint-plugin-jsx-a11y: '>=6.10.2' 87 - eslint-plugin-react-refresh: ^0.5.0 88 - eslint-plugin-solid: ^0.14.3 89 - eslint-plugin-svelte: '>=2.35.1' 90 - eslint-plugin-vuejs-accessibility: ^2.4.1 91 - prettier-plugin-astro: ^0.14.0 92 - prettier-plugin-slidev: ^1.0.5 93 - svelte-eslint-parser: '>=0.37.0' 94 - peerDependenciesMeta: 95 - '@angular-eslint/eslint-plugin': 96 - optional: true 97 - '@angular-eslint/eslint-plugin-template': 98 - optional: true 99 - '@angular-eslint/template-parser': 100 - optional: true 101 - '@eslint-react/eslint-plugin': 102 - optional: true 103 - '@next/eslint-plugin-next': 104 - optional: true 105 - '@prettier/plugin-xml': 106 - optional: true 107 - '@unocss/eslint-plugin': 108 - optional: true 109 - astro-eslint-parser: 110 - optional: true 111 - eslint-plugin-astro: 112 - optional: true 113 - eslint-plugin-format: 114 - optional: true 115 - eslint-plugin-jsx-a11y: 116 - optional: true 117 - eslint-plugin-react-refresh: 118 - optional: true 119 - eslint-plugin-solid: 120 - optional: true 121 - eslint-plugin-svelte: 122 - optional: true 123 - eslint-plugin-vuejs-accessibility: 124 - optional: true 125 - prettier-plugin-astro: 126 - optional: true 127 - prettier-plugin-slidev: 128 - optional: true 129 - svelte-eslint-parser: 130 - optional: true 131 - 132 - '@antfu/install-pkg@1.1.0': 133 - resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} 134 - 135 74 '@babel/code-frame@7.29.7': 136 75 resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} 137 76 engines: {node: '>=6.9.0'} ··· 157 96 resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} 158 97 engines: {node: '>=18'} 159 98 160 - '@clack/core@1.4.2': 161 - resolution: {integrity: sha512-0Ty/1Gfm+Kb07sXcuESjyKfwEhSy4Ns1AgeEisHb/bDY5fWme0tTeTkU14T1Gmcs17YIjB/teiDe4uaCghbYqQ==} 162 - engines: {node: '>= 20.12.0'} 163 - 164 - '@clack/prompts@1.6.0': 165 - resolution: {integrity: sha512-EYlRokl8szrP9Z25qT5aepMdBjzBvHF9ZEhzIiUBc9guz/T31EqRgvD0QSgZcpE93xiwrr+OkB4nz0BZyF6fSA==} 166 - engines: {node: '>= 20.12.0'} 167 - 168 - '@e18e/eslint-plugin@0.5.1': 169 - resolution: {integrity: sha512-mqUozeyNI9xvJbjrOO7y765dT7Kud3bwCm/DHwctxdEngPdJWQaS9BNGgpM1wCCzZfOtlKQh4ZRhm3VRomT9KA==} 170 - peerDependencies: 171 - eslint: ^9.0.0 || ^10.0.0 172 - oxlint: ^1.68.0 173 - peerDependenciesMeta: 174 - eslint: 175 - optional: true 176 - oxlint: 177 - optional: true 178 - 179 99 '@emnapi/core@1.10.0': 180 100 resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} 181 101 ··· 200 120 '@emnapi/wasi-threads@1.2.2': 201 121 resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} 202 122 203 - '@es-joy/jsdoccomment@0.84.0': 204 - resolution: {integrity: sha512-0xew1CxOam0gV5OMjh2KjFQZsKL2bByX1+q4j3E73MpYIdyUxcZb/xQct9ccUb+ve5KGUYbCUxyPnYB7RbuP+w==} 205 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 206 - 207 - '@es-joy/jsdoccomment@0.87.0': 208 - resolution: {integrity: sha512-mFXZloZMzuJZXSHUmAFu/pXTk0ZJTJBluuAkrvbzidpTN8W6F2bpRFuedSH+85kbdlRLJqc+gfN+kD3JOLJK5g==} 209 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 210 - 211 - '@es-joy/resolve.exports@1.2.0': 212 - resolution: {integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g==} 213 - engines: {node: '>=10'} 214 - 215 - '@eslint-community/eslint-plugin-eslint-comments@4.7.2': 216 - resolution: {integrity: sha512-LF03qURSwEWm2dz5wtdDCzNk+7Opl0X7q6I3undsaIuNsEiNvRV3BCtqu14Q/6Pzg1tBj44LcxpW2EpSLZStZw==} 217 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 218 - peerDependencies: 219 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 220 - 221 - '@eslint-community/eslint-utils@4.9.1': 222 - resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} 223 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 224 - peerDependencies: 225 - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 226 - 227 - '@eslint-community/regexpp@4.12.2': 228 - resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} 229 - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 230 - 231 - '@eslint/compat@2.1.0': 232 - resolution: {integrity: sha512-LgaSCymEpw7tF53xvDw9SNsraPb1IBHxpdABIOM0hW8UAlP8znrjYtuxfR58FSJ3L9BhwD+FaPRFQpZq84Nh6g==} 233 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 234 - peerDependencies: 235 - eslint: ^8.40 || 9 || 10 236 - peerDependenciesMeta: 237 - eslint: 238 - optional: true 239 - 240 - '@eslint/config-array@0.23.5': 241 - resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==} 242 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 243 - 244 - '@eslint/config-helpers@0.5.5': 245 - resolution: {integrity: sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==} 246 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 247 - 248 - '@eslint/config-helpers@0.6.0': 249 - resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==} 250 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 251 - 252 - '@eslint/core@1.2.1': 253 - resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==} 254 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 255 - 256 - '@eslint/markdown@8.0.2': 257 - resolution: {integrity: sha512-W+/0qHp0WbvFEljUvvECNpSWrUHpBWIWwp7F3QqEwQKmaRCmfEWvk6VfUia9pTQ0th6HyBGBsPfg/kG3/aQxLA==} 258 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 259 - 260 - '@eslint/object-schema@3.0.5': 261 - resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==} 262 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 263 - 264 - '@eslint/plugin-kit@0.7.2': 265 - resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==} 266 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 267 - 268 - '@humanfs/core@0.19.2': 269 - resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} 270 - engines: {node: '>=18.18.0'} 271 - 272 - '@humanfs/node@0.16.8': 273 - resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==} 274 - engines: {node: '>=18.18.0'} 275 - 276 - '@humanfs/types@0.15.0': 277 - resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==} 278 - engines: {node: '>=18.18.0'} 279 - 280 - '@humanwhocodes/module-importer@1.0.1': 281 - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 282 - engines: {node: '>=12.22'} 283 - 284 - '@humanwhocodes/retry@0.4.3': 285 - resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} 286 - engines: {node: '>=18.18'} 287 - 288 123 '@isaacs/cliui@8.0.2': 289 124 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 290 125 engines: {node: '>=12'} ··· 319 154 resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==} 320 155 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 321 156 322 - '@ota-meshi/ast-token-store@0.3.0': 323 - resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==} 324 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 325 - 326 157 '@oxc-parser/binding-android-arm-eabi@0.137.0': 327 158 resolution: {integrity: sha512-KDs+0VPdEmasOkpuJHW9V5WCF+cvYdMQv2Jd+aJXt+cxIx12NToRQRbXaRwUEDsZw+/jMk81Ve8ZFbjUkJTOwA==} 328 159 engines: {node: ^20.19.0 || >=22.12.0} ··· 562 393 cpu: [x64] 563 394 os: [win32] 564 395 396 + '@oxlint-tsgolint/darwin-arm64@0.24.0': 397 + resolution: {integrity: sha512-C2uMmwK5Bc4ri4ysZ6sA8Rcu+A5zBQTp6ml2u0CLLbRZp4kMFPV3yWk8B5DK9Aw7y9bbjogIm75tUwGLFzlsYQ==} 398 + cpu: [arm64] 399 + os: [darwin] 400 + 401 + '@oxlint-tsgolint/darwin-x64@0.24.0': 402 + resolution: {integrity: sha512-Wgvt/1lRbDxmoNqWQKKcL+UIiqLmdJ+EWLpQa1qzoNVAfNB0PJpa82/8dH1twT/3rSs4zrP5TXPWl4juB71WuQ==} 403 + cpu: [x64] 404 + os: [darwin] 405 + 406 + '@oxlint-tsgolint/linux-arm64@0.24.0': 407 + resolution: {integrity: sha512-PB1rxII7KV83+ASY4sSkXtqvpij6ME66+QCRL49uksi/ofs2Rf/UVboYr095n0Rkbl2wgvlsHGl6DHC361jQUQ==} 408 + cpu: [arm64] 409 + os: [linux] 410 + 411 + '@oxlint-tsgolint/linux-x64@0.24.0': 412 + resolution: {integrity: sha512-xcz3CxKmjTQLREtE/UShh+ruWmm9nAb7UM9zKcD65BStiuYgOakAKkPHl4YS5DztpVcDrE0+HqbOolTlRKYWmw==} 413 + cpu: [x64] 414 + os: [linux] 415 + 416 + '@oxlint-tsgolint/win32-arm64@0.24.0': 417 + resolution: {integrity: sha512-A2i6ZGBec3i20S7RaxkgHc6r3HYtD5Mn7j/mb22NkTz14u0JuudvTu6JggAnbGMcv8+dBKQI//EasxSPJLD8pw==} 418 + cpu: [arm64] 419 + os: [win32] 420 + 421 + '@oxlint-tsgolint/win32-x64@0.24.0': 422 + resolution: {integrity: sha512-0ZbGd9qRB6zs82moekaKdEvncRANq49EAwfNX62JpTS46feXUhKAuoyVDvZMj6Rywejylrmmu79Wo6faYCo4Ew==} 423 + cpu: [x64] 424 + os: [win32] 425 + 426 + '@oxlint/binding-android-arm-eabi@1.74.0': 427 + resolution: {integrity: sha512-+gHd12muVI9ZLBaWLPkHt3Fj7jihFjgQ1MGtBaRL8vWrWrI0P7dLUty/cHrHS0oqPYIRgQUJsPu2CExQuMcwNw==} 428 + engines: {node: ^20.19.0 || >=22.12.0} 429 + cpu: [arm] 430 + os: [android] 431 + 432 + '@oxlint/binding-android-arm64@1.74.0': 433 + resolution: {integrity: sha512-xjKdoMB+H+RCOByv/7l7nfIGW9mlOisqYdcyC75UqYuQecLpReAeEYUf2CNeDEI3KtmUgxpRw/+c63y4AeF/Bw==} 434 + engines: {node: ^20.19.0 || >=22.12.0} 435 + cpu: [arm64] 436 + os: [android] 437 + 438 + '@oxlint/binding-darwin-arm64@1.74.0': 439 + resolution: {integrity: sha512-iUK7wvc6sejMKsC+Pt67mntoF5weFcyEunhZfLJceU6gL419mexz5wBkSx/EnkFBExMLNtOi9fnDSc5xfK0IzQ==} 440 + engines: {node: ^20.19.0 || >=22.12.0} 441 + cpu: [arm64] 442 + os: [darwin] 443 + 444 + '@oxlint/binding-darwin-x64@1.74.0': 445 + resolution: {integrity: sha512-ggKc/tn5SJ1u2yG2izC6VKODfYKV8MQ2AicJlNzOjuyrC29udvOef6/JzK2r32xqCnBDLFouR1VCkjzEI0/N9Q==} 446 + engines: {node: ^20.19.0 || >=22.12.0} 447 + cpu: [x64] 448 + os: [darwin] 449 + 450 + '@oxlint/binding-freebsd-x64@1.74.0': 451 + resolution: {integrity: sha512-u++dH/43jy9hTLbneaWlS0gla/Bp1JdwJ2zgevCl8nDFUh6qRCGMxcL0f0lb7By3A9p/LfFr+7cG4HU1hG856g==} 452 + engines: {node: ^20.19.0 || >=22.12.0} 453 + cpu: [x64] 454 + os: [freebsd] 455 + 456 + '@oxlint/binding-linux-arm-gnueabihf@1.74.0': 457 + resolution: {integrity: sha512-Sj1zmtFDVTPeIbIz4ZfcXAbFHqCmKCXdCUlAJzvTF7I20NTH1RDpoF2PhkqNODutJzVhJYmm3oz0GwgY+tvE2g==} 458 + engines: {node: ^20.19.0 || >=22.12.0} 459 + cpu: [arm] 460 + os: [linux] 461 + 462 + '@oxlint/binding-linux-arm-musleabihf@1.74.0': 463 + resolution: {integrity: sha512-//PKyQb/tQXcHArx2f7z+oVI/eMS2Jpv+edNuAtOrgIhWdGcpHxogveAxzmF2rpH1AIHp4Hq04RF/rgJdiICnQ==} 464 + engines: {node: ^20.19.0 || >=22.12.0} 465 + cpu: [arm] 466 + os: [linux] 467 + 468 + '@oxlint/binding-linux-arm64-gnu@1.74.0': 469 + resolution: {integrity: sha512-/k1Me+aX2tjuH10K62mLS0y8cLkJBHX6Ce0xPK+eWeel4bSdEGZ8dv4+hYMzg0GrSmjwy4yAYsDPeEeKBft/2w==} 470 + engines: {node: ^20.19.0 || >=22.12.0} 471 + cpu: [arm64] 472 + os: [linux] 473 + libc: [glibc] 474 + 475 + '@oxlint/binding-linux-arm64-musl@1.74.0': 476 + resolution: {integrity: sha512-3tFSjBxc5D8/zvjEuLvOqcA8ZXKD0+6NuaVO/edeamNc49MoAsbfaC9s1UiwODwgF6slGaF8yJA2TPkukd77tg==} 477 + engines: {node: ^20.19.0 || >=22.12.0} 478 + cpu: [arm64] 479 + os: [linux] 480 + libc: [musl] 481 + 482 + '@oxlint/binding-linux-ppc64-gnu@1.74.0': 483 + resolution: {integrity: sha512-9QggtPkSPXOCTu8Szis7auOK/sC7KdQaN+/TujP7YVVhzCAOhgdRfgv8uEz0r2tk5xdgus5rLYUrCDoZNtiRUw==} 484 + engines: {node: ^20.19.0 || >=22.12.0} 485 + cpu: [ppc64] 486 + os: [linux] 487 + libc: [glibc] 488 + 489 + '@oxlint/binding-linux-riscv64-gnu@1.74.0': 490 + resolution: {integrity: sha512-VM5VPUJ4DJIWiK+AZn8FScUqMr6OFrCAYybMYjEEi7W13ParI64MByiXTkKMqZpBmvQ9zxl9Ebq2VUOiZRJYUg==} 491 + engines: {node: ^20.19.0 || >=22.12.0} 492 + cpu: [riscv64] 493 + os: [linux] 494 + libc: [glibc] 495 + 496 + '@oxlint/binding-linux-riscv64-musl@1.74.0': 497 + resolution: {integrity: sha512-SaDY1gh9rOA592J54g+gu5hkOFFQBZsMmIYHs+NRHG+Uq0OxtuuCXMWQ3vu1830Eugv5uMXyjG+bv2Z9y4IXjw==} 498 + engines: {node: ^20.19.0 || >=22.12.0} 499 + cpu: [riscv64] 500 + os: [linux] 501 + libc: [musl] 502 + 503 + '@oxlint/binding-linux-s390x-gnu@1.74.0': 504 + resolution: {integrity: sha512-ZATQeHZCyr6MbDveg0obD5sxLHFOghtOdC5jwVwYlvFWqtFOxctgFEG6Ef/64hYvZrWyhyCckB10AelqLopeDA==} 505 + engines: {node: ^20.19.0 || >=22.12.0} 506 + cpu: [s390x] 507 + os: [linux] 508 + libc: [glibc] 509 + 510 + '@oxlint/binding-linux-x64-gnu@1.74.0': 511 + resolution: {integrity: sha512-+aIvJyrdeD7LwCQ2WYLMUWNmnbeDRSPb40aBYtPjD9+PTqUwgJnk+HK5yLfSMeqXrMrDhE9uTmtt2y50tvjhHw==} 512 + engines: {node: ^20.19.0 || >=22.12.0} 513 + cpu: [x64] 514 + os: [linux] 515 + libc: [glibc] 516 + 517 + '@oxlint/binding-linux-x64-musl@1.74.0': 518 + resolution: {integrity: sha512-XyktaR8lhK2qWiCK0Tk8oYD+/cgn+oHA6ddRnxSSXUKkkojkV78CmShZUxQF+yrBFs0SuW+JBOPG6hecyc/iZg==} 519 + engines: {node: ^20.19.0 || >=22.12.0} 520 + cpu: [x64] 521 + os: [linux] 522 + libc: [musl] 523 + 524 + '@oxlint/binding-openharmony-arm64@1.74.0': 525 + resolution: {integrity: sha512-mzbjrPl4neaVUiJ1fUiEUxTGaSZBoiKtaoB6jmIpz9S+VOA2vDYmJpihQ82w6178V5jxziclTg8Cgj5yF6tTDg==} 526 + engines: {node: ^20.19.0 || >=22.12.0} 527 + cpu: [arm64] 528 + os: [openharmony] 529 + 530 + '@oxlint/binding-win32-arm64-msvc@1.74.0': 531 + resolution: {integrity: sha512-vUAe9okpS2Oa5+lX67lqHMuNUvfkleRKwrUDJ/WJBsgmddvZ1mrsh2HVmuFDRzqFELhaJhFaCNOuR6a7L3rtIA==} 532 + engines: {node: ^20.19.0 || >=22.12.0} 533 + cpu: [arm64] 534 + os: [win32] 535 + 536 + '@oxlint/binding-win32-ia32-msvc@1.74.0': 537 + resolution: {integrity: sha512-yyXXJyYYSXL4I8K8jAWjJs+J3fa9gH2JmEbo4f5adm+1tNC9itseicBNuwK7BDHvqQ5J534s+yDULu89vYL2ZQ==} 538 + engines: {node: ^20.19.0 || >=22.12.0} 539 + cpu: [ia32] 540 + os: [win32] 541 + 542 + '@oxlint/binding-win32-x64-msvc@1.74.0': 543 + resolution: {integrity: sha512-VTC9IYTIMrVUk/i6Ms1ohzzDKZFkWn0KU2OBbPBzgmVZ2V30165T/zK4LztTr0Xgp9fZ1qQZ1rsZAu/rEmySlA==} 544 + engines: {node: ^20.19.0 || >=22.12.0} 545 + cpu: [x64] 546 + os: [win32] 547 + 565 548 '@pkgjs/parseargs@0.11.0': 566 549 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 567 550 engines: {node: '>=14'} 568 - 569 - '@pkgr/core@0.3.6': 570 - resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==} 571 - engines: {node: ^14.18.0 || >=16.0.0} 572 551 573 552 '@pnpm/constants@10.0.0': 574 553 resolution: {integrity: sha512-dxIXcW1F1dxIGfye2JXE7Q8WVwYB0axVzdBOkvE1WKIVR4xjB8e6k/Dkjo7DpbyfW5Vu2k21p6dyM32YLSAWoQ==} ··· 778 757 '@rolldown/pluginutils@1.0.1': 779 758 resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} 780 759 781 - '@sindresorhus/base62@1.0.0': 782 - resolution: {integrity: sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA==} 783 - engines: {node: '>=18'} 784 - 785 760 '@sindresorhus/fnv1a@3.1.0': 786 761 resolution: {integrity: sha512-KV321z5m/0nuAg83W1dPLy85HpHDk7Sdi4fJbwvacWsEhAh+rZUW4ZfGcXmUIvjZg4ss2bcwNlRhJ7GBEUG08w==} 787 762 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} ··· 789 764 '@standard-schema/spec@1.1.0': 790 765 resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 791 766 792 - '@stylistic/eslint-plugin@5.10.0': 793 - resolution: {integrity: sha512-nPK52ZHvot8Ju/0A4ucSX1dcPV2/1clx0kLcH5wDmrE4naKso7TUC/voUyU1O9OTKTrR6MYip6LP0ogEMQ9jPQ==} 794 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 795 - peerDependencies: 796 - eslint: ^9.0.0 || ^10.0.0 797 - 798 767 '@tybys/wasm-util@0.10.2': 799 768 resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} 800 769 ··· 804 773 '@types/chai@5.2.3': 805 774 resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} 806 775 807 - '@types/debug@4.1.13': 808 - resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==} 809 - 810 776 '@types/deep-eql@4.0.2': 811 777 resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} 812 778 813 - '@types/esrecurse@4.3.1': 814 - resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==} 815 - 816 779 '@types/estree@1.0.9': 817 780 resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} 818 781 819 - '@types/hast@3.0.4': 820 - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 821 - 822 - '@types/json-schema@7.0.15': 823 - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 824 - 825 - '@types/katex@0.16.8': 826 - resolution: {integrity: sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==} 827 - 828 - '@types/mdast@4.0.4': 829 - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 830 - 831 - '@types/ms@2.1.0': 832 - resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 782 + '@types/node@26.1.1': 783 + resolution: {integrity: sha512-nxAkRSVkN1Y0JC1W8ky/fTfkGsMmcrRsbx+3XoZE+rMOX71kLYTV7fLXpqud1GpbpP5TuffXFqfX7fH2GgZREw==} 833 784 834 785 '@types/normalize-package-data@2.4.4': 835 786 resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} 836 787 837 - '@types/unist@3.0.3': 838 - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 788 + '@typescript/typescript-aix-ppc64@7.0.2': 789 + resolution: {integrity: sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==} 790 + engines: {node: '>=16.20.0'} 791 + cpu: [ppc64] 792 + os: [aix] 839 793 840 - '@typescript-eslint/eslint-plugin@8.62.0': 841 - resolution: {integrity: sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==} 842 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 843 - peerDependencies: 844 - '@typescript-eslint/parser': ^8.62.0 845 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 846 - typescript: '>=4.8.4 <6.1.0' 794 + '@typescript/typescript-darwin-arm64@7.0.2': 795 + resolution: {integrity: sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==} 796 + engines: {node: '>=16.20.0'} 797 + cpu: [arm64] 798 + os: [darwin] 847 799 848 - '@typescript-eslint/parser@8.60.1': 849 - resolution: {integrity: sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==} 850 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 851 - peerDependencies: 852 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 853 - typescript: '>=4.8.4 <6.1.0' 800 + '@typescript/typescript-darwin-x64@7.0.2': 801 + resolution: {integrity: sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==} 802 + engines: {node: '>=16.20.0'} 803 + cpu: [x64] 804 + os: [darwin] 854 805 855 - '@typescript-eslint/parser@8.62.0': 856 - resolution: {integrity: sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==} 857 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 858 - peerDependencies: 859 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 860 - typescript: '>=4.8.4 <6.1.0' 806 + '@typescript/typescript-freebsd-arm64@7.0.2': 807 + resolution: {integrity: sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==} 808 + engines: {node: '>=16.20.0'} 809 + cpu: [arm64] 810 + os: [freebsd] 861 811 862 - '@typescript-eslint/project-service@8.60.1': 863 - resolution: {integrity: sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==} 864 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 865 - peerDependencies: 866 - typescript: '>=4.8.4 <6.1.0' 812 + '@typescript/typescript-freebsd-x64@7.0.2': 813 + resolution: {integrity: sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==} 814 + engines: {node: '>=16.20.0'} 815 + cpu: [x64] 816 + os: [freebsd] 867 817 868 - '@typescript-eslint/project-service@8.62.0': 869 - resolution: {integrity: sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==} 870 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 871 - peerDependencies: 872 - typescript: '>=4.8.4 <6.1.0' 818 + '@typescript/typescript-linux-arm64@7.0.2': 819 + resolution: {integrity: sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==} 820 + engines: {node: '>=16.20.0'} 821 + cpu: [arm64] 822 + os: [linux] 873 823 874 - '@typescript-eslint/rule-tester@8.60.1': 875 - resolution: {integrity: sha512-ly/WFKd5EwhTpuFbgQ81Z+67o4DRnlgKy+yHTuHWTy/u8yb0nEVPjDKqVUkJ1545vX2aAW1TELNSPPs+AOC+KA==} 876 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 877 - peerDependencies: 878 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 879 - typescript: '>=4.8.4 <6.1.0' 824 + '@typescript/typescript-linux-arm@7.0.2': 825 + resolution: {integrity: sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==} 826 + engines: {node: '>=16.20.0'} 827 + cpu: [arm] 828 + os: [linux] 880 829 881 - '@typescript-eslint/scope-manager@8.60.1': 882 - resolution: {integrity: sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==} 883 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 830 + '@typescript/typescript-linux-loong64@7.0.2': 831 + resolution: {integrity: sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==} 832 + engines: {node: '>=16.20.0'} 833 + cpu: [loong64] 834 + os: [linux] 884 835 885 - '@typescript-eslint/scope-manager@8.62.0': 886 - resolution: {integrity: sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==} 887 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 836 + '@typescript/typescript-linux-mips64el@7.0.2': 837 + resolution: {integrity: sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==} 838 + engines: {node: '>=16.20.0'} 839 + cpu: [mips64el] 840 + os: [linux] 888 841 889 - '@typescript-eslint/tsconfig-utils@8.60.1': 890 - resolution: {integrity: sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==} 891 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 892 - peerDependencies: 893 - typescript: '>=4.8.4 <6.1.0' 842 + '@typescript/typescript-linux-ppc64@7.0.2': 843 + resolution: {integrity: sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==} 844 + engines: {node: '>=16.20.0'} 845 + cpu: [ppc64] 846 + os: [linux] 894 847 895 - '@typescript-eslint/tsconfig-utils@8.62.0': 896 - resolution: {integrity: sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==} 897 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 898 - peerDependencies: 899 - typescript: '>=4.8.4 <6.1.0' 848 + '@typescript/typescript-linux-riscv64@7.0.2': 849 + resolution: {integrity: sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==} 850 + engines: {node: '>=16.20.0'} 851 + cpu: [riscv64] 852 + os: [linux] 900 853 901 - '@typescript-eslint/type-utils@8.62.0': 902 - resolution: {integrity: sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==} 903 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 904 - peerDependencies: 905 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 906 - typescript: '>=4.8.4 <6.1.0' 854 + '@typescript/typescript-linux-s390x@7.0.2': 855 + resolution: {integrity: sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==} 856 + engines: {node: '>=16.20.0'} 857 + cpu: [s390x] 858 + os: [linux] 907 859 908 - '@typescript-eslint/types@8.60.1': 909 - resolution: {integrity: sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==} 910 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 860 + '@typescript/typescript-linux-x64@7.0.2': 861 + resolution: {integrity: sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==} 862 + engines: {node: '>=16.20.0'} 863 + cpu: [x64] 864 + os: [linux] 911 865 912 - '@typescript-eslint/types@8.62.0': 913 - resolution: {integrity: sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==} 914 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 866 + '@typescript/typescript-netbsd-arm64@7.0.2': 867 + resolution: {integrity: sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==} 868 + engines: {node: '>=16.20.0'} 869 + cpu: [arm64] 870 + os: [netbsd] 915 871 916 - '@typescript-eslint/typescript-estree@8.60.1': 917 - resolution: {integrity: sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==} 918 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 919 - peerDependencies: 920 - typescript: '>=4.8.4 <6.1.0' 872 + '@typescript/typescript-netbsd-x64@7.0.2': 873 + resolution: {integrity: sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==} 874 + engines: {node: '>=16.20.0'} 875 + cpu: [x64] 876 + os: [netbsd] 921 877 922 - '@typescript-eslint/typescript-estree@8.62.0': 923 - resolution: {integrity: sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==} 924 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 925 - peerDependencies: 926 - typescript: '>=4.8.4 <6.1.0' 878 + '@typescript/typescript-openbsd-arm64@7.0.2': 879 + resolution: {integrity: sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==} 880 + engines: {node: '>=16.20.0'} 881 + cpu: [arm64] 882 + os: [openbsd] 927 883 928 - '@typescript-eslint/utils@8.60.1': 929 - resolution: {integrity: sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==} 930 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 931 - peerDependencies: 932 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 933 - typescript: '>=4.8.4 <6.1.0' 884 + '@typescript/typescript-openbsd-x64@7.0.2': 885 + resolution: {integrity: sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==} 886 + engines: {node: '>=16.20.0'} 887 + cpu: [x64] 888 + os: [openbsd] 934 889 935 - '@typescript-eslint/utils@8.62.0': 936 - resolution: {integrity: sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==} 937 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 938 - peerDependencies: 939 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 940 - typescript: '>=4.8.4 <6.1.0' 890 + '@typescript/typescript-sunos-x64@7.0.2': 891 + resolution: {integrity: sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==} 892 + engines: {node: '>=16.20.0'} 893 + cpu: [x64] 894 + os: [sunos] 941 895 942 - '@typescript-eslint/visitor-keys@8.60.1': 943 - resolution: {integrity: sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==} 944 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 896 + '@typescript/typescript-win32-arm64@7.0.2': 897 + resolution: {integrity: sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==} 898 + engines: {node: '>=16.20.0'} 899 + cpu: [arm64] 900 + os: [win32] 945 901 946 - '@typescript-eslint/visitor-keys@8.62.0': 947 - resolution: {integrity: sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==} 948 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 902 + '@typescript/typescript-win32-x64@7.0.2': 903 + resolution: {integrity: sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==} 904 + engines: {node: '>=16.20.0'} 905 + cpu: [x64] 906 + os: [win32] 949 907 950 908 '@vitest/coverage-v8@4.1.10': 951 909 resolution: {integrity: sha512-IM49HmthevbgAO4anp1hwtoT9wYe59w0LR00gr+eagHE+ZJ5lK4sLPeO0ubgoJcwLk6dehU3R24N+FbEEKDc8g==} ··· 956 914 '@vitest/browser': 957 915 optional: true 958 916 959 - '@vitest/eslint-plugin@1.6.20': 960 - resolution: {integrity: sha512-xRwWHFG0Utp6hXtbGiWk4VdKXCGdExD8kbWrrmFEiG5dk8anOJ+vbWbeOa8EbkocKQRTsx7JAWETccZiBgFp/Q==} 961 - engines: {node: '>=18'} 962 - peerDependencies: 963 - '@typescript-eslint/eslint-plugin': '*' 964 - eslint: '>=8.57.0' 965 - typescript: '>=5.0.0' 966 - vitest: '*' 967 - peerDependenciesMeta: 968 - '@typescript-eslint/eslint-plugin': 969 - optional: true 970 - typescript: 971 - optional: true 972 - vitest: 973 - optional: true 974 - 975 917 '@vitest/expect@4.1.10': 976 918 resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==} 977 919 ··· 1012 954 '@voxpelli/typed-utils@1.10.2': 1013 955 resolution: {integrity: sha512-icXQSR6SeGL6kr9koJw9zkDZqWyFXgpJG8kTaDydjZhy9/V0MQB9tYyibvRgJHlk98SDJJhPLCouTdqOdn+riw==} 1014 956 engines: {node: '>=18.0.0'} 1015 - 1016 - '@vue/compiler-core@3.5.35': 1017 - resolution: {integrity: sha512-BUmHaR1J+O+CKZ9uJucdVTEr1LHsdyvv7vG3eNRhK3CczEHeMd/LtsHAuD7PbrxvI2envCY2v7HI1vC1aBRzKw==} 1018 - 1019 - '@vue/compiler-dom@3.5.35': 1020 - resolution: {integrity: sha512-k+bprkXxuqhVajgTx5mUHuir7TwQzUKOWR40ng1ncAqQRPnrLngGGgqVEEhOnTMlc8btHYVKmrP8s5Qyg0hvYA==} 1021 - 1022 - '@vue/compiler-sfc@3.5.35': 1023 - resolution: {integrity: sha512-G5VPMcXTSywXBgtFOZOnHKBxKSrwXUcvY1iaF5/hRcy7t0J6CH/d8ha9F4nzi00Fax1eLV0QHM7v4mQu68jydw==} 1024 - 1025 - '@vue/compiler-ssr@3.5.35': 1026 - resolution: {integrity: sha512-rGhAeXgdM7/ffTJGXT69rCCdTmjDewnFuUZfBQQHTdcEBeWdT5HCGY60y2ytLJr9/Dsu7IntUi5z/w0h6Rjnzw==} 1027 - 1028 - '@vue/shared@3.5.35': 1029 - resolution: {integrity: sha512-zSbjL7gRXwks2ZQLRGCajBtBXEOXW9Ddhn/HvSdrGkE2dqGnumzW8XtusRrxrE9LvqtiqDXQ+A60Hp6mvdYxfA==} 1030 957 1031 958 '@yuku-codegen/binding-darwin-arm64@0.6.1': 1032 959 resolution: {integrity: sha512-LDJtpOKtcv9f3V0eDUwFmmy47t2VC+DAuN+gq80R1IA+fa0d408i6sHsVtt6n+g5rf8f86ySoPSAe94lHt6Ixw==} ··· 1153 1080 '@yuku-toolchain/types@0.5.43': 1154 1081 resolution: {integrity: sha512-kSpvPntnXw5+lYjO71ffBEnQ5ycQ74KGIYknh0TS4xeyCuBkOqxyJumxZkMhLBBUCLjDAbx2+Icnr3Zh4ftjpQ==} 1155 1082 1156 - acorn-jsx@5.3.2: 1157 - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1158 - peerDependencies: 1159 - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1160 - 1161 - acorn@8.16.0: 1162 - resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} 1163 - engines: {node: '>=0.4.0'} 1164 - hasBin: true 1165 - 1166 - ajv@6.15.0: 1167 - resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==} 1168 - 1169 1083 ansi-regex@5.0.1: 1170 1084 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1171 1085 engines: {node: '>=8'} ··· 1184 1098 1185 1099 ansis@4.3.1: 1186 1100 resolution: {integrity: sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==} 1187 - engines: {node: '>=14'} 1188 - 1189 - are-docs-informative@0.0.2: 1190 - resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} 1191 1101 engines: {node: '>=14'} 1192 1102 1193 1103 argparse@2.0.1: ··· 1203 1113 balanced-match@1.0.2: 1204 1114 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1205 1115 1206 - balanced-match@4.0.4: 1207 - resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} 1208 - engines: {node: 18 || 20 || >=22} 1209 - 1210 - baseline-browser-mapping@2.10.34: 1211 - resolution: {integrity: sha512-IMDedajPifLnHNY0X9n8hKxRTQ6/eTHwr5bDo04WnuqxyKw6LYtQywCuuqPZwhl3aBXMvQpJov42GLCwRRdQzw==} 1212 - engines: {node: '>=6.0.0'} 1213 - hasBin: true 1214 - 1215 - boolbase@1.0.0: 1216 - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 1217 - 1218 1116 brace-expansion@2.1.1: 1219 1117 resolution: {integrity: sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA==} 1220 1118 1221 - brace-expansion@5.0.6: 1222 - resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} 1223 - engines: {node: 18 || 20 || >=22} 1224 - 1225 - browserslist@4.28.2: 1226 - resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==} 1227 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1228 - hasBin: true 1229 - 1230 1119 buffered-async-iterable@1.0.1: 1231 1120 resolution: {integrity: sha512-QqoUm0XP17Bu6zzyvpK92K7jNYMoFYgKM0ZKr0OkoDlElpTTeucGmdJL8I7W+reFIfvgUWOm1PgJC+OxM2lMEQ==} 1232 1121 engines: {node: '>=18.6.0'} 1233 1122 1234 - builtin-modules@5.2.0: 1235 - resolution: {integrity: sha512-02yxLeyxF4dNl6SlY6/5HfRSrSdZ/sCPoxy2kZNP5dZZX8LSAD9aE2gtJIUgWrsQTiMPl3mxESyrobSwvRGisQ==} 1236 - engines: {node: '>=18.20'} 1237 - 1238 1123 cac@7.0.0: 1239 1124 resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==} 1240 1125 engines: {node: '>=20.19.0'} 1241 1126 1242 - caniuse-lite@1.0.30001797: 1243 - resolution: {integrity: sha512-l8xKG+gwAIExZGl9FrF7KUwuOmk6wbEPC9Xoy/RtnWv1XG0Q4LFlagaLpUv3Kiza3W/wm27zy0yWJEieYKAP6w==} 1244 - 1245 - ccount@2.0.1: 1246 - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 1247 - 1248 1127 chai@6.2.2: 1249 1128 resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} 1250 1129 engines: {node: '>=18'} ··· 1252 1131 chalk@5.6.2: 1253 1132 resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 1254 1133 engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 1255 - 1256 - change-case@5.4.4: 1257 - resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 1258 - 1259 - character-entities@2.0.2: 1260 - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 1261 - 1262 - ci-info@4.4.0: 1263 - resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} 1264 - engines: {node: '>=8'} 1265 1134 1266 1135 color-convert@2.0.1: 1267 1136 resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} ··· 1270 1139 color-name@1.1.4: 1271 1140 resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1272 1141 1273 - commander@8.3.0: 1274 - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 1275 - engines: {node: '>= 12'} 1276 - 1277 - comment-parser@1.4.5: 1278 - resolution: {integrity: sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==} 1279 - engines: {node: '>= 12.0.0'} 1280 - 1281 - comment-parser@1.4.7: 1282 - resolution: {integrity: sha512-0h+uSNtQGW3D98eQt3jJ8L06Fves8hncB4V/PKdw/Qb8Hnk19VaKuTr55UNRYiSoVa7WwrFls+rh3ux9agmkeQ==} 1283 - engines: {node: '>= 12.0.0'} 1284 - 1285 - confbox@0.1.8: 1286 - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 1287 - 1288 - confbox@0.2.4: 1289 - resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==} 1290 - 1291 1142 convert-source-map@2.0.0: 1292 1143 resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 1293 1144 1294 - core-js-compat@3.49.0: 1295 - resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==} 1296 - 1297 1145 cross-spawn@7.0.6: 1298 1146 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 1299 1147 engines: {node: '>= 8'} 1300 1148 1301 - cssesc@3.0.0: 1302 - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1303 - engines: {node: '>=4'} 1304 - hasBin: true 1305 - 1306 1149 cuint@0.2.2: 1307 1150 resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} 1308 1151 1309 - debug@4.4.3: 1310 - resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 1311 - engines: {node: '>=6.0'} 1312 - peerDependencies: 1313 - supports-color: '*' 1314 - peerDependenciesMeta: 1315 - supports-color: 1316 - optional: true 1317 - 1318 - decode-named-character-reference@1.3.0: 1319 - resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==} 1320 - 1321 - deep-is@0.1.4: 1322 - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1323 - 1324 1152 defu@6.1.7: 1325 1153 resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} 1326 1154 1327 - dequal@2.0.3: 1328 - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1329 - engines: {node: '>=6'} 1330 - 1331 - detect-indent@7.0.2: 1332 - resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==} 1333 - engines: {node: '>=12.20'} 1334 - 1335 1155 detect-libc@2.1.2: 1336 1156 resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 1337 1157 engines: {node: '>=8'} 1338 1158 1339 - devlop@1.1.0: 1340 - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 1341 - 1342 - diff-sequences@29.6.3: 1343 - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} 1344 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 1345 - 1346 1159 dts-resolver@3.0.0: 1347 1160 resolution: {integrity: sha512-1T1f+z+4tl9XD+m+0HBgWoL/nm0bOIffyWaUuUSBlFg/86IWvfx+wjNaO/ybU0AJzG9/Mi5hBUgGV6zCmWEN7Q==} 1348 1161 engines: {node: ^22.18.0 || >=24.0.0} ··· 1355 1168 eastasianwidth@0.2.0: 1356 1169 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1357 1170 1358 - electron-to-chromium@1.5.368: 1359 - resolution: {integrity: sha512-7RckJJK4uESJF9PxvfMWd3TGqIiieUTG4HxnKaKuIpGbcr+r2ZEB3g2gAhCP3Fqm42vJSzLfgab9eva/C4/XVw==} 1360 - 1361 1171 emoji-regex@8.0.0: 1362 1172 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1363 1173 ··· 1368 1178 resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==} 1369 1179 engines: {node: '>=14'} 1370 1180 1371 - enhanced-resolve@5.23.0: 1372 - resolution: {integrity: sha512-yJN/BOOLxcOW2aQgeif9mSnaUB8KtvmMMp56oA1kx1CRfBKbhZm2pJ+NBY+3eOboHxix8lfjWpHE0Ei5U8RbSA==} 1373 - engines: {node: '>=10.13.0'} 1374 - 1375 - entities@7.0.1: 1376 - resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} 1377 - engines: {node: '>=0.12'} 1378 - 1379 1181 es-module-lexer@2.1.0: 1380 1182 resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==} 1381 1183 1382 - escalade@3.2.0: 1383 - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1384 - engines: {node: '>=6'} 1385 - 1386 - escape-string-regexp@4.0.0: 1387 - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1388 - engines: {node: '>=10'} 1389 - 1390 - escape-string-regexp@5.0.0: 1391 - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1392 - engines: {node: '>=12'} 1393 - 1394 - eslint-compat-utils@0.5.1: 1395 - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 1396 - engines: {node: '>=12'} 1397 - peerDependencies: 1398 - eslint: '>=6.0.0' 1399 - 1400 - eslint-config-flat-gitignore@2.3.0: 1401 - resolution: {integrity: sha512-bg4ZLGgoARg1naWfsINUUb/52Ksw/K22K+T16D38Y8v+/sGwwIYrGvH/JBjOin+RQtxxC9tzNNiy4shnGtGyyQ==} 1402 - peerDependencies: 1403 - eslint: ^9.5.0 || ^10.0.0 1404 - 1405 - eslint-flat-config-utils@3.2.0: 1406 - resolution: {integrity: sha512-PHgo1X5uqIorJONLVD9BIaOSdoYFD3z/AeJljdqDPlWVRpeCYkDbK9k0AXoYVqqNJr6FEYIEr5Rm2TSktLQcHw==} 1407 - 1408 - eslint-json-compat-utils@0.2.3: 1409 - resolution: {integrity: sha512-RbBmDFyu7FqnjE8F0ZxPNzx5UaptdeS9Uu50r7A+D7s/+FCX+ybiyViYEgFUaFIFqSWJgZRTpL5d8Kanxxl2lQ==} 1410 - engines: {node: '>=12'} 1411 - peerDependencies: 1412 - '@eslint/json': '*' 1413 - eslint: '*' 1414 - jsonc-eslint-parser: ^2.4.0 || ^3.0.0 1415 - peerDependenciesMeta: 1416 - '@eslint/json': 1417 - optional: true 1418 - 1419 - eslint-merge-processors@2.0.0: 1420 - resolution: {integrity: sha512-sUuhSf3IrJdGooquEUB5TNpGNpBoQccbnaLHsb1XkBLUPPqCNivCpY05ZcpCOiV9uHwO2yxXEWVczVclzMxYlA==} 1421 - peerDependencies: 1422 - eslint: '*' 1423 - 1424 - eslint-plugin-antfu@3.2.3: 1425 - resolution: {integrity: sha512-U2fnz/H0gFPxpuC7QpaHa0Jv2AgCZ5hunp36SOP/yWo8yFzgvMh8X4pZ4uN4IKoqtBhk7G3HuVa93Urf51+sZg==} 1426 - peerDependencies: 1427 - eslint: '*' 1428 - 1429 - eslint-plugin-command@3.5.2: 1430 - resolution: {integrity: sha512-PA59QAkQDwvcCMEt5lYLJLI3zDGVKJeC4id/pcRY2XdRYhSGW7iyYT1VC1N3bmpuvu6Qb/9QptiS3GJMjeGTJg==} 1431 - peerDependencies: 1432 - '@typescript-eslint/rule-tester': '*' 1433 - '@typescript-eslint/typescript-estree': '*' 1434 - '@typescript-eslint/utils': '*' 1435 - eslint: '*' 1436 - 1437 - eslint-plugin-es-x@7.8.0: 1438 - resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} 1439 - engines: {node: ^14.18.0 || >=16.0.0} 1440 - peerDependencies: 1441 - eslint: '>=8' 1442 - 1443 - eslint-plugin-import-lite@0.6.0: 1444 - resolution: {integrity: sha512-80vevx2A7i3H7n1/6pqDO8cc5wRz6OwLDvIyVl9UflBV1N1f46e9Ihzi65IOLYoSxM6YykK2fTw1xm0Ixx6aTQ==} 1445 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1446 - peerDependencies: 1447 - eslint: ^9.0.0 || ^10.0.0 1448 - 1449 - eslint-plugin-jsdoc@63.0.10: 1450 - resolution: {integrity: sha512-A9UIWsCquaKnit7rasXxYf12hhGIdDRjv65/RUE3AxbT6rdKBvr3MjH37g3gP+g4ipQMXuMn9slFKjO+vqNfkg==} 1451 - engines: {node: ^22.13.0 || >=24} 1452 - peerDependencies: 1453 - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 1454 - 1455 - eslint-plugin-jsonc@3.2.0: 1456 - resolution: {integrity: sha512-eQSxJypkpNycQAFE/ph/j+bDD2MiCcojxNb+7nugYzuQZvELYg4YO1Cv1y/8MbjPIEw5u3Lx0VPOTlqJJIhPPw==} 1457 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1458 - peerDependencies: 1459 - eslint: '>=9.38.0' 1460 - 1461 - eslint-plugin-n@18.2.1: 1462 - resolution: {integrity: sha512-aO3C9//yq8JIvYOi/T+jPvcZ9hZzpwzbR8esrYpFtgE9vpbyM8kn42AQOtIqYspVmpaSWr8X+nrlQuAJYxXAaw==} 1463 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1464 - peerDependencies: 1465 - eslint: '>=8.57.1' 1466 - ts-declaration-location: ^1.0.6 1467 - typescript: '>=5.0.0' 1468 - peerDependenciesMeta: 1469 - ts-declaration-location: 1470 - optional: true 1471 - typescript: 1472 - optional: true 1473 - 1474 - eslint-plugin-no-only-tests@3.4.0: 1475 - resolution: {integrity: sha512-4S3/9Nb7A2tiMcpzEQE9bQSlpeOz6WJkgryBuou/SA8W2x2c8Zf4j0NvTKBjv6qNhF9T79tmkecm/0CHqV0UGg==} 1476 - engines: {node: '>=5.0.0'} 1477 - 1478 - eslint-plugin-perfectionist@5.9.1: 1479 - resolution: {integrity: sha512-30mHLNfEhzwaq5cquyWgnzrNXvT8AzwIwyeH5aj4U5ajhHSF2uiO6i09xpMDLv7koaZVTjLsvYF4m3gK/15tyA==} 1480 - engines: {node: ^20.0.0 || >=22.0.0} 1481 - peerDependencies: 1482 - eslint: ^8.45.0 || ^9.0.0 || ^10.0.0 1483 - 1484 - eslint-plugin-pnpm@1.6.1: 1485 - resolution: {integrity: sha512-pgcaJclu3YxZ/WMsiKMF58bHQasbGVARSMqCJvFaETYxSc7KcR2H74UVWV6exuGv9nNv9c0KKqn4PVHQlzMSEg==} 1486 - peerDependencies: 1487 - eslint: ^9.0.0 || ^10.0.0 1488 - 1489 - eslint-plugin-regexp@3.1.0: 1490 - resolution: {integrity: sha512-qGXIC3DIKZHcK1H9A9+Byz9gmndY6TTSRkSMTZpNXdyCw2ObSehRgccJv35n9AdUakEjQp5VFNLas6BMXizCZg==} 1491 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1492 - peerDependencies: 1493 - eslint: '>=9.38.0' 1494 - 1495 - eslint-plugin-toml@1.4.0: 1496 - resolution: {integrity: sha512-3ErTnfUjXq/23f72XeyRcE0Y4Sd/ME1lsZeezczqpn2R4tE7+Sgco/NUKDXm0xAMz15tzcRz/9RfJRm6AqRO+A==} 1497 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1498 - peerDependencies: 1499 - eslint: '>=9.38.0' 1500 - 1501 - eslint-plugin-unicorn@68.0.0: 1502 - resolution: {integrity: sha512-mHYWvX948Q4H3bGc39bsNMxD/leOuNI+Iws9NVsoSz5VA7EGP86wnz7mZ/SPSvRhefT8L4hd8DHfDuGC+lIoCQ==} 1503 - engines: {node: '>=22'} 1504 - peerDependencies: 1505 - eslint: '>=10.4' 1506 - 1507 - eslint-plugin-unused-imports@4.4.1: 1508 - resolution: {integrity: sha512-oZGYUz1X3sRMGUB+0cZyK2VcvRX5lm/vB56PgNNcU+7ficUCKm66oZWKUubXWnOuPjQ8PvmXtCViXBMONPe7tQ==} 1509 - peerDependencies: 1510 - '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 1511 - eslint: ^10.0.0 || ^9.0.0 || ^8.0.0 1512 - peerDependenciesMeta: 1513 - '@typescript-eslint/eslint-plugin': 1514 - optional: true 1515 - 1516 - eslint-plugin-vue@10.9.2: 1517 - resolution: {integrity: sha512-4g7ZP3pYcuqd7Zp0pzUKcos0W+RkjBz4EGdhJ92FcYk6v03Ti/GK5NwjgsjxHK+98eXDbHeK7VtX1az7/8doZA==} 1518 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1519 - peerDependencies: 1520 - '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 1521 - '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 1522 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 1523 - vue-eslint-parser: ^10.3.0 1524 - peerDependenciesMeta: 1525 - '@stylistic/eslint-plugin': 1526 - optional: true 1527 - '@typescript-eslint/parser': 1528 - optional: true 1529 - 1530 - eslint-plugin-yml@3.5.0: 1531 - resolution: {integrity: sha512-u2UkSIp/+th1wYCt0QWeCI6agf24dxX6PbFfCCN18gGQHmXh3Cn9D/U5OiP5RNYTEwjXCLusj1OJRK+zwdvFqQ==} 1532 - engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0} 1533 - peerDependencies: 1534 - eslint: '>=9.38.0' 1535 - 1536 - eslint-processor-vue-blocks@2.0.0: 1537 - resolution: {integrity: sha512-u4W0CJwGoWY3bjXAuFpc/b6eK3NQEI8MoeW7ritKj3G3z/WtHrKjkqf+wk8mPEy5rlMGS+k6AZYOw2XBoN/02Q==} 1538 - peerDependencies: 1539 - '@vue/compiler-sfc': ^3.3.0 1540 - eslint: '>=9.0.0' 1541 - 1542 - eslint-scope@9.1.2: 1543 - resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==} 1544 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1545 - 1546 - eslint-visitor-keys@3.4.3: 1547 - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1548 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1549 - 1550 - eslint-visitor-keys@4.2.1: 1551 - resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} 1552 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1553 - 1554 - eslint-visitor-keys@5.0.1: 1555 - resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} 1556 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1557 - 1558 - eslint@10.7.0: 1559 - resolution: {integrity: sha512-GVTD7s1vdIl6UYvAfriOPeY1Df8LIZjfofLvHwde+erDHGGuHyuM6xoxRxmHiebhYuD2p1vN4wWh0XzPARSGDQ==} 1560 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1561 - hasBin: true 1562 - peerDependencies: 1563 - jiti: '*' 1564 - peerDependenciesMeta: 1565 - jiti: 1566 - optional: true 1567 - 1568 - espree@10.4.0: 1569 - resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} 1570 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1571 - 1572 - espree@11.2.0: 1573 - resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==} 1574 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1575 - 1576 - esquery@1.7.0: 1577 - resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} 1578 - engines: {node: '>=0.10'} 1579 - 1580 - esrecurse@4.3.0: 1581 - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1582 - engines: {node: '>=4.0'} 1583 - 1584 - estraverse@5.3.0: 1585 - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1586 - engines: {node: '>=4.0'} 1587 - 1588 - estree-walker@2.0.2: 1589 - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1590 - 1591 1184 estree-walker@3.0.3: 1592 1185 resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1593 1186 1594 - esutils@2.0.3: 1595 - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1596 - engines: {node: '>=0.10.0'} 1597 - 1598 1187 expect-type@1.3.0: 1599 1188 resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} 1600 1189 engines: {node: '>=12.0.0'} 1601 1190 1602 - exsolve@1.0.8: 1603 - resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} 1604 - 1605 - fast-deep-equal@3.1.3: 1606 - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1607 - 1608 - fast-json-stable-stringify@2.1.0: 1609 - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1610 - 1611 - fast-levenshtein@2.0.6: 1612 - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1613 - 1614 - fast-string-truncated-width@3.0.3: 1615 - resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==} 1616 - 1617 - fast-string-width@3.0.2: 1618 - resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==} 1619 - 1620 - fast-wrap-ansi@0.2.2: 1621 - resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==} 1622 - 1623 - fault@2.0.1: 1624 - resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} 1625 - 1626 1191 fd-package-json@2.0.0: 1627 1192 resolution: {integrity: sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==} 1628 1193 ··· 1635 1200 picomatch: 1636 1201 optional: true 1637 1202 1638 - file-entry-cache@8.0.0: 1639 - resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1640 - engines: {node: '>=16.0.0'} 1641 - 1642 - find-up-simple@1.0.1: 1643 - resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} 1644 - engines: {node: '>=18'} 1645 - 1646 - find-up@5.0.0: 1647 - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1648 - engines: {node: '>=10'} 1649 - 1650 - flat-cache@4.0.1: 1651 - resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1652 - engines: {node: '>=16'} 1653 - 1654 - flatted@3.4.2: 1655 - resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==} 1656 - 1657 1203 fnv-lite@1.2.0: 1658 1204 resolution: {integrity: sha512-bWOFDuEm1ffmavTjpE8ep+3i1f3X+zy5DcO8Um2rPyWNZn+vV6Pdo1tAnYhTISHxgtF6M8tG1QwWXh+llMUOjQ==} 1659 1205 ··· 1664 1210 resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 1665 1211 engines: {node: '>=14'} 1666 1212 1667 - format@0.2.2: 1668 - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} 1669 - engines: {node: '>=0.4.x'} 1670 - 1671 1213 formatly@0.3.0: 1672 1214 resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==} 1673 1215 engines: {node: '>=18.3.0'} ··· 1685 1227 resolution: {integrity: sha512-/6gFNr0N04nob252sTQxyFLi3eKFRqIg1I87YcqAMT1i6SQrSF6KujUEQrtrjMV0H/eejTCltLdDSTEMzHbnsQ==} 1686 1228 engines: {node: '>=20.20.0'} 1687 1229 1688 - github-slugger@2.0.0: 1689 - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 1690 - 1691 - glob-parent@6.0.2: 1692 - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1693 - engines: {node: '>=10.13.0'} 1694 - 1695 1230 glob@10.5.0: 1696 1231 resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} 1697 1232 deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me 1698 1233 hasBin: true 1699 1234 1700 - globals@15.15.0: 1701 - resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} 1702 - engines: {node: '>=18'} 1703 - 1704 - globals@17.7.0: 1705 - resolution: {integrity: sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==} 1706 - engines: {node: '>=18'} 1707 - 1708 - globrex@0.1.2: 1709 - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 1710 - 1711 - graceful-fs@4.2.11: 1712 - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1713 - 1714 1235 has-flag@4.0.0: 1715 1236 resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1716 1237 engines: {node: '>=8'} ··· 1722 1243 resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} 1723 1244 engines: {node: ^16.14.0 || >=18.0.0} 1724 1245 1725 - html-entities@2.6.0: 1726 - resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} 1727 - 1728 1246 html-escaper@2.0.2: 1729 1247 resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 1730 1248 1731 - ignore@5.3.2: 1732 - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1733 - engines: {node: '>= 4'} 1734 - 1735 - ignore@7.0.5: 1736 - resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 1737 - engines: {node: '>= 4'} 1738 - 1739 1249 import-without-cache@0.4.0: 1740 1250 resolution: {integrity: sha512-NkJQA7oZ4YHQhd2+H3BoRFKF3d/XNsiKpHZCQEMH9pDX27hQQLsTyOocyRgaIVtf8gHX3Nt3LPkR4e5EdtPAGQ==} 1741 1251 engines: {node: ^22.18.0 || >=24.0.0} 1742 1252 1743 - imurmurhash@0.1.4: 1744 - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1745 - engines: {node: '>=0.8.19'} 1746 - 1747 - indent-string@5.0.0: 1748 - resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} 1749 - engines: {node: '>=12'} 1750 - 1751 1253 index-to-position@1.2.0: 1752 1254 resolution: {integrity: sha512-Yg7+ztRkqslMAS2iFaU+Oa4KTSidr63OsFGlOrJoW981kIYO3CGCS3wA95P1mUi/IVSJkn0D479KTJpVpvFNuw==} 1753 1255 engines: {node: '>=18'} ··· 1760 1262 resolution: {integrity: sha512-jJDj07Sm2K5fwpnFjnwZjyjeUrWnTx1bHYZu1Lcj2C/l1mYpsujUUhiNpgsxQdKuFbcdvngqHV5MUaYFppZtDA==} 1761 1263 engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1762 1264 hasBin: true 1763 - 1764 - is-builtin-module@5.0.0: 1765 - resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==} 1766 - engines: {node: '>=18.20'} 1767 1265 1768 1266 is-extglob@2.1.1: 1769 1267 resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} ··· 1809 1307 resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==} 1810 1308 hasBin: true 1811 1309 1812 - jsdoc-type-pratt-parser@7.1.1: 1813 - resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==} 1814 - engines: {node: '>=20.0.0'} 1815 - 1816 - jsdoc-type-pratt-parser@7.2.0: 1817 - resolution: {integrity: sha512-dh140MMgjyg3JhJZY/+iEzW+NO5xR2gpbDFKHqotCmexElVntw7GjWjt511+C/Ef02RU5TKYrJo/Xlzk+OLaTw==} 1818 - engines: {node: '>=20.0.0'} 1819 - 1820 - jsesc@3.1.0: 1821 - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1822 - engines: {node: '>=6'} 1823 - hasBin: true 1824 - 1825 - json-buffer@3.0.1: 1826 - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1827 - 1828 1310 json-parse-even-better-errors@3.0.2: 1829 1311 resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} 1830 1312 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1831 1313 1832 - json-schema-traverse@0.4.1: 1833 - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1834 - 1835 - json-stable-stringify-without-jsonify@1.0.1: 1836 - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1837 - 1838 - jsonc-eslint-parser@3.1.0: 1839 - resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==} 1840 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 1841 - 1842 - katex@0.16.47: 1843 - resolution: {integrity: sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==} 1844 - hasBin: true 1845 - 1846 - keyv@4.5.4: 1847 - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1848 - 1849 1314 knip@6.26.0: 1850 1315 resolution: {integrity: sha512-e9eELEEpBpGTd4H4HB7818/DYj9dMzMyUqAddfYwUN/EbSkgIjOuWEF96W/xHsmV0SDrsdXjIM+oZ2xpPzPsBA==} 1851 1316 engines: {node: ^20.19.0 || >=22.12.0} 1852 1317 hasBin: true 1853 - 1854 - levn@0.4.1: 1855 - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1856 - engines: {node: '>= 0.8.0'} 1857 1318 1858 1319 lightningcss-android-arm64@1.32.0: 1859 1320 resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} ··· 1933 1394 resolution: {integrity: sha512-MLK5hj3vViLbs/RDgi/tY7rhi9ifiwnKppUF21mH2DqqMznvZhZ8TnjI0W6ZS0iCsl1qGAiHrUIMhjK7xrJstg==} 1934 1395 engines: {node: '>=18.6.0'} 1935 1396 1936 - local-pkg@1.2.1: 1937 - resolution: {integrity: sha512-++gUqRDEvcnN6Zhqrr+y/CkVEHhlrR96vZn3nZZPYzMcBUyBtTKzB9NadClFIsIVSsu+3i9tfk/erqy9kAmt7Q==} 1938 - engines: {node: '>=14'} 1939 - 1940 - locate-path@6.0.0: 1941 - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1942 - engines: {node: '>=10'} 1943 - 1944 - lodash.merge@4.6.2: 1945 - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1946 - 1947 - longest-streak@3.1.0: 1948 - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1949 - 1950 1397 lru-cache@10.4.3: 1951 1398 resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1952 1399 ··· 1960 1407 resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} 1961 1408 engines: {node: '>=10'} 1962 1409 1963 - markdown-table@3.0.4: 1964 - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 1965 - 1966 - mdast-util-find-and-replace@3.0.2: 1967 - resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 1968 - 1969 - mdast-util-from-markdown@2.0.3: 1970 - resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==} 1971 - 1972 - mdast-util-frontmatter@2.0.1: 1973 - resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} 1974 - 1975 - mdast-util-gfm-autolink-literal@2.0.1: 1976 - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1977 - 1978 - mdast-util-gfm-footnote@2.1.0: 1979 - resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 1980 - 1981 - mdast-util-gfm-strikethrough@2.0.0: 1982 - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1983 - 1984 - mdast-util-gfm-table@2.0.0: 1985 - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1986 - 1987 - mdast-util-gfm-task-list-item@2.0.0: 1988 - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1989 - 1990 - mdast-util-gfm@3.1.0: 1991 - resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 1992 - 1993 - mdast-util-math@3.0.0: 1994 - resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==} 1995 - 1996 - mdast-util-phrasing@4.1.0: 1997 - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1998 - 1999 - mdast-util-to-markdown@2.1.2: 2000 - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 2001 - 2002 - mdast-util-to-string@4.0.0: 2003 - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 2004 - 2005 - micromark-core-commonmark@2.0.3: 2006 - resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 2007 - 2008 - micromark-extension-frontmatter@2.0.0: 2009 - resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} 2010 - 2011 - micromark-extension-gfm-autolink-literal@2.1.0: 2012 - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 2013 - 2014 - micromark-extension-gfm-footnote@2.1.0: 2015 - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 2016 - 2017 - micromark-extension-gfm-strikethrough@2.1.0: 2018 - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 2019 - 2020 - micromark-extension-gfm-table@2.1.1: 2021 - resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 2022 - 2023 - micromark-extension-gfm-tagfilter@2.0.0: 2024 - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 2025 - 2026 - micromark-extension-gfm-task-list-item@2.1.0: 2027 - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 2028 - 2029 - micromark-extension-gfm@3.0.0: 2030 - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 2031 - 2032 - micromark-extension-math@3.1.0: 2033 - resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==} 2034 - 2035 - micromark-factory-destination@2.0.1: 2036 - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 2037 - 2038 - micromark-factory-label@2.0.1: 2039 - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 2040 - 2041 - micromark-factory-space@2.0.1: 2042 - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 2043 - 2044 - micromark-factory-title@2.0.1: 2045 - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 2046 - 2047 - micromark-factory-whitespace@2.0.1: 2048 - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 2049 - 2050 - micromark-util-character@2.1.1: 2051 - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 2052 - 2053 - micromark-util-chunked@2.0.1: 2054 - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 2055 - 2056 - micromark-util-classify-character@2.0.1: 2057 - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 2058 - 2059 - micromark-util-combine-extensions@2.0.1: 2060 - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 2061 - 2062 - micromark-util-decode-numeric-character-reference@2.0.2: 2063 - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 2064 - 2065 - micromark-util-decode-string@2.0.1: 2066 - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 2067 - 2068 - micromark-util-encode@2.0.1: 2069 - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 2070 - 2071 - micromark-util-html-tag-name@2.0.1: 2072 - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 2073 - 2074 - micromark-util-normalize-identifier@2.0.1: 2075 - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 2076 - 2077 - micromark-util-resolve-all@2.0.1: 2078 - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 2079 - 2080 - micromark-util-sanitize-uri@2.0.1: 2081 - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 2082 - 2083 - micromark-util-subtokenize@2.1.0: 2084 - resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 2085 - 2086 - micromark-util-symbol@2.0.1: 2087 - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 2088 - 2089 - micromark-util-types@2.0.2: 2090 - resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 2091 - 2092 - micromark@4.0.2: 2093 - resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 2094 - 2095 - minimatch@10.2.5: 2096 - resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} 2097 - engines: {node: 18 || 20 || >=22} 2098 - 2099 1410 minimatch@9.0.9: 2100 1411 resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==} 2101 1412 engines: {node: '>=16 || 14 >=14.17'} ··· 2106 1417 2107 1418 mitata@1.0.34: 2108 1419 resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==} 2109 - 2110 - mlly@1.8.2: 2111 - resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==} 2112 - 2113 - module-replacements@3.0.0-beta.8: 2114 - resolution: {integrity: sha512-sc8TepP9elxoOBXEpxmhPzKKjTjbswHVcmsKGbgvm3k6jZlLu/WMV/Lfmga6IGMgHU/V3WtY2s6VEgM4nTElUQ==} 2115 - 2116 - ms@2.1.3: 2117 - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2118 1420 2119 1421 murmurhash@2.0.1: 2120 1422 resolution: {integrity: sha512-5vQEh3y+DG/lMPM0mCGPDnyV8chYg/g7rl6v3Gd8WMF9S429ox3Xk8qrk174kWhG767KQMqqxLD1WnGd77hiew==} ··· 2129 1431 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2130 1432 hasBin: true 2131 1433 2132 - natural-compare@1.4.0: 2133 - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2134 - 2135 - natural-orderby@5.0.0: 2136 - resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} 2137 - engines: {node: '>=18'} 2138 - 2139 - node-releases@2.0.47: 2140 - resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==} 2141 - engines: {node: '>=18'} 2142 - 2143 1434 normalize-package-data@6.0.2: 2144 1435 resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} 2145 1436 engines: {node: ^16.14.0 || >=18.0.0} ··· 2148 1439 resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} 2149 1440 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2150 1441 2151 - nth-check@2.1.1: 2152 - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 2153 - 2154 - object-deep-merge@2.0.1: 2155 - resolution: {integrity: sha512-aKttDKcU3pyZqKcCkDhsMn70WmZFG2JGDQLP9EcLyTSIFQRCPWLAmBZRLJnrVUrhPG1jETEEbfdgbNtJf1LyMg==} 2156 - 2157 1442 obug@2.1.3: 2158 1443 resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==} 2159 1444 engines: {node: '>=12.20.0'} 2160 1445 2161 - optionator@0.9.4: 2162 - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 2163 - engines: {node: '>= 0.8.0'} 2164 - 2165 1446 oxc-parser@0.137.0: 2166 1447 resolution: {integrity: sha512-yFImD+WLElJpLKy8llG1qe4DCmMsL18peRp8XP1JKfig/gISbJkglnpDtX2aTmAn10kZF7164HbN2H8QPsXxGg==} 2167 1448 engines: {node: ^20.19.0 || >=22.12.0} ··· 2169 1450 oxc-resolver@11.21.3: 2170 1451 resolution: {integrity: sha512-2Mx3fKQz7+xgrBONjsxOgCGtMHOn38/HxMzW1I5efwXB5a4lRN0Vp40gYUJFBWJslcrvwoofTrqoTnLbwTd3pA==} 2171 1452 2172 - p-limit@3.1.0: 2173 - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2174 - engines: {node: '>=10'} 1453 + oxlint-tsgolint@0.24.0: 1454 + resolution: {integrity: sha512-giCk5sEvG02d5tzPmFMX3hem8ndzEEu1xvGYS5OwNfO2WGl6ZVxt5LjE0yiMDoz94INI7XkXwgFAQiydPvVHDw==} 1455 + hasBin: true 2175 1456 2176 - p-locate@5.0.0: 2177 - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2178 - engines: {node: '>=10'} 1457 + oxlint@1.74.0: 1458 + resolution: {integrity: sha512-odGl2s2x5IOJoj3A0v1k0PGBXVFBZeZ2+AK/+K2MJur7Ghi3bkyX5NuLUWHKqa4js1wjep3hJeuTQJOlr+4+dA==} 1459 + engines: {node: ^20.19.0 || >=22.12.0} 1460 + hasBin: true 1461 + peerDependencies: 1462 + oxlint-tsgolint: '>=0.24.0' 1463 + vite-plus: '*' 1464 + peerDependenciesMeta: 1465 + oxlint-tsgolint: 1466 + optional: true 1467 + vite-plus: 1468 + optional: true 2179 1469 2180 1470 package-json-from-dist@1.0.1: 2181 1471 resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 2182 1472 2183 - package-manager-detector@1.6.0: 2184 - resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 2185 - 2186 - parse-gitignore@2.0.0: 2187 - resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} 2188 - engines: {node: '>=14'} 2189 - 2190 - parse-imports-exports@0.2.4: 2191 - resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==} 2192 - 2193 1473 parse-json@8.3.0: 2194 1474 resolution: {integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==} 2195 1475 engines: {node: '>=18'} 2196 - 2197 - parse-statements@1.0.11: 2198 - resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==} 2199 - 2200 - path-exists@4.0.0: 2201 - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2202 - engines: {node: '>=8'} 2203 1476 2204 1477 path-key@3.1.1: 2205 1478 resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} ··· 2226 1499 picomatch@4.0.5: 2227 1500 resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==} 2228 1501 engines: {node: '>=12'} 2229 - 2230 - pkg-types@1.3.1: 2231 - resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 2232 - 2233 - pkg-types@2.3.1: 2234 - resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==} 2235 - 2236 - pluralize@8.0.0: 2237 - resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 2238 - engines: {node: '>=4'} 2239 - 2240 - pnpm-workspace-yaml@1.6.1: 2241 - resolution: {integrity: sha512-yTeZntGWi8m9WNuhoVsP0DpFc4sC1U0+rr/qR6Zi9n2g3sxXY+JfccjXjjruNz96tM8I09yaJUA86doRnNLkbg==} 2242 1502 2243 1503 pony-cause@2.1.11: 2244 1504 resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==} 2245 1505 engines: {node: '>=12.0.0'} 2246 1506 2247 - postcss-selector-parser@7.1.1: 2248 - resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} 2249 - engines: {node: '>=4'} 2250 - 2251 1507 postcss@8.5.15: 2252 1508 resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==} 2253 1509 engines: {node: ^10 || ^12 || >=14} 2254 1510 2255 - prelude-ls@1.2.1: 2256 - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2257 - engines: {node: '>= 0.8.0'} 2258 - 2259 - punycode@2.3.1: 2260 - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2261 - engines: {node: '>=6'} 2262 - 2263 - quansync@0.2.11: 2264 - resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 2265 - 2266 1511 quansync@1.0.0: 2267 1512 resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==} 2268 1513 ··· 2282 1527 resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} 2283 1528 engines: {node: '>=10.13'} 2284 1529 2285 - refa@0.12.1: 2286 - resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} 2287 - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2288 - 2289 - regexp-ast-analysis@0.7.1: 2290 - resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} 2291 - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2292 - 2293 - regjsparser@0.13.1: 2294 - resolution: {integrity: sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==} 2295 - hasBin: true 2296 - 2297 - reserved-identifiers@1.2.0: 2298 - resolution: {integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw==} 2299 - engines: {node: '>=18'} 2300 - 2301 1530 resolve-pkg-maps@1.0.0: 2302 1531 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2303 1532 ··· 2333 1562 engines: {node: ^20.19.0 || >=22.12.0} 2334 1563 hasBin: true 2335 1564 2336 - scslre@0.3.0: 2337 - resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} 2338 - engines: {node: ^14.0.0 || >=16.0.0} 2339 - 2340 1565 semver@7.8.5: 2341 1566 resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==} 2342 1567 engines: {node: '>=10'} ··· 2361 1586 resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==} 2362 1587 hasBin: true 2363 1588 2364 - sisteransi@1.0.5: 2365 - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 2366 - 2367 1589 smol-toml@1.6.1: 2368 1590 resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} 2369 1591 engines: {node: '>= 18'} ··· 2380 1602 2381 1603 spdx-expression-parse@3.0.1: 2382 1604 resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 2383 - 2384 - spdx-expression-parse@4.0.0: 2385 - resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} 2386 1605 2387 1606 spdx-license-ids@3.0.23: 2388 1607 resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==} ··· 2413 1632 resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} 2414 1633 engines: {node: '>=8'} 2415 1634 2416 - strip-indent@4.1.1: 2417 - resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==} 2418 - engines: {node: '>=12'} 2419 - 2420 1635 strip-json-comments@5.0.3: 2421 1636 resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==} 2422 1637 engines: {node: '>=14.16'} ··· 2425 1640 resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2426 1641 engines: {node: '>=8'} 2427 1642 2428 - synckit@0.11.13: 2429 - resolution: {integrity: sha512-eNRKgb3z66Yp3D2CixVujOUvXLFUTij/zVnV8KRyvFdQwpz7I5DS8UfRkTeLzb64u+dkzDSdelE24izu+zSSUg==} 2430 - engines: {node: ^14.18.0 || >=16.0.0} 2431 - 2432 - tapable@2.3.3: 2433 - resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} 2434 - engines: {node: '>=6'} 2435 - 2436 1643 tinybench@2.9.0: 2437 1644 resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 2438 1645 ··· 2447 1654 tinyrainbow@3.1.0: 2448 1655 resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} 2449 1656 engines: {node: '>=14.0.0'} 2450 - 2451 - to-valid-identifier@1.0.0: 2452 - resolution: {integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw==} 2453 - engines: {node: '>=20'} 2454 - 2455 - toml-eslint-parser@1.0.3: 2456 - resolution: {integrity: sha512-A5F0cM6+mDleacLIEUkmfpkBbnHJFV1d2rprHU2MXNk7mlxHq2zGojA+SRvQD1RoMo9gqjZPWEaKG4v1BQ48lw==} 2457 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 2458 1657 2459 1658 tree-kill@1.2.2: 2460 1659 resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 2461 1660 hasBin: true 2462 1661 2463 - ts-api-utils@2.5.0: 2464 - resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} 2465 - engines: {node: '>=18.12'} 2466 - peerDependencies: 2467 - typescript: '>=4.8.4' 2468 - 2469 1662 tsdown@0.22.7: 2470 1663 resolution: {integrity: sha512-4egbOzc9dxVv/QS+gDV75FIxDIjQQeOnXBlUuikyjmn0ozuc6FW11djJjEEo3vqkuJRygpnKHurnj+Iwftk4VA==} 2471 1664 engines: {node: ^22.18.0 || >=24.11.0} ··· 2503 1696 tslib@2.8.1: 2504 1697 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 2505 1698 2506 - type-check@0.4.0: 2507 - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2508 - engines: {node: '>= 0.8.0'} 2509 - 2510 1699 type-fest@4.41.0: 2511 1700 resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 2512 1701 engines: {node: '>=16'} 2513 1702 2514 - typescript@6.0.3: 2515 - resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} 2516 - engines: {node: '>=14.17'} 1703 + typescript@7.0.2: 1704 + resolution: {integrity: sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==} 1705 + engines: {node: '>=16.20.0'} 2517 1706 hasBin: true 2518 1707 2519 - ufo@1.6.4: 2520 - resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==} 2521 - 2522 1708 unbash@4.0.1: 2523 1709 resolution: {integrity: sha512-1ajSo3813sDoVIHx4inJdUS4l5L2ic5cFiddemPiyjb/PZEoBAhFwHtbaEdRDFxbAKy7FCG7s5ww3/uCFawuIA==} 2524 1710 engines: {node: '>=14'} ··· 2526 1712 unconfig-core@7.5.0: 2527 1713 resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==} 2528 1714 1715 + undici-types@8.3.0: 1716 + resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==} 1717 + 2529 1718 unicorn-magic@0.1.0: 2530 1719 resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} 2531 1720 engines: {node: '>=18'} 2532 1721 2533 - unist-util-is@6.0.1: 2534 - resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 2535 - 2536 - unist-util-remove-position@5.0.0: 2537 - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 2538 - 2539 - unist-util-stringify-position@4.0.0: 2540 - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 2541 - 2542 - unist-util-visit-parents@6.0.2: 2543 - resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} 2544 - 2545 - unist-util-visit@5.1.0: 2546 - resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} 2547 - 2548 - update-browserslist-db@1.2.3: 2549 - resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} 2550 - hasBin: true 2551 - peerDependencies: 2552 - browserslist: '>= 4.21.0' 2553 - 2554 - uri-js@4.4.1: 2555 - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2556 - 2557 - util-deprecate@1.0.2: 2558 - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2559 - 2560 1722 validate-npm-package-license@3.0.4: 2561 1723 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 2562 1724 ··· 2648 1810 jsdom: 2649 1811 optional: true 2650 1812 2651 - vue-eslint-parser@10.4.1: 2652 - resolution: {integrity: sha512-Gk6gRDj0n/fkRa3C3l0bBheoBckUq/Rs0F/TvMWIS6nzzx67amAViMe9CkNgsP2tXyQONvGiHQESHwFtZ3aYDA==} 2653 - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2654 - peerDependencies: 2655 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 2656 - 2657 1813 walk-up-path@4.0.0: 2658 1814 resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} 2659 1815 engines: {node: 20 || >=22} ··· 2668 1824 engines: {node: '>=8'} 2669 1825 hasBin: true 2670 1826 2671 - word-wrap@1.2.5: 2672 - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2673 - engines: {node: '>=0.10.0'} 2674 - 2675 1827 wrap-ansi@7.0.0: 2676 1828 resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2677 1829 engines: {node: '>=10'} ··· 2680 1832 resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2681 1833 engines: {node: '>=12'} 2682 1834 2683 - xml-name-validator@4.0.0: 2684 - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} 2685 - engines: {node: '>=12'} 2686 - 2687 1835 xxhashjs@0.2.2: 2688 1836 resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==} 2689 1837 2690 - yaml-eslint-parser@2.0.0: 2691 - resolution: {integrity: sha512-h0uDm97wvT2bokfwwTmY6kJ1hp6YDFL0nRHwNKz8s/VD1FH/vvZjAKoMUE+un0eaYBSG7/c6h+lJTP+31tjgTw==} 2692 - engines: {node: ^20.19.0 || ^22.13.0 || >=24} 2693 - 2694 1838 yaml@2.9.0: 2695 1839 resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} 2696 1840 engines: {node: '>= 14.6'} 2697 1841 hasBin: true 2698 - 2699 - yocto-queue@0.1.0: 2700 - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2701 - engines: {node: '>=10'} 2702 1842 2703 1843 yuku-ast@0.1.7: 2704 1844 resolution: {integrity: sha512-2RiMEWv500TixY5rJy6OZd4fSy9WYZKWh6gGbIJ7y7vAGcuCugWOWwOLGaQcRZrXcPUfqtLtvpaJ3SdXtWlhKA==} ··· 2712 1852 zod@4.4.3: 2713 1853 resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} 2714 1854 2715 - zwitch@2.0.4: 2716 - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 2717 - 2718 1855 snapshots: 2719 1856 2720 - '@antfu/eslint-config@9.1.0(@typescript-eslint/rule-tester@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@6.0.3))(@typescript-eslint/utils@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(@vue/compiler-sfc@3.5.35)(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10)': 2721 - dependencies: 2722 - '@antfu/install-pkg': 1.1.0 2723 - '@clack/prompts': 1.6.0 2724 - '@e18e/eslint-plugin': 0.5.1(eslint@10.7.0(jiti@2.7.0)) 2725 - '@eslint-community/eslint-plugin-eslint-comments': 4.7.2(eslint@10.7.0(jiti@2.7.0)) 2726 - '@eslint/markdown': 8.0.2 2727 - '@stylistic/eslint-plugin': 5.10.0(eslint@10.7.0(jiti@2.7.0)) 2728 - '@typescript-eslint/eslint-plugin': 8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 2729 - '@typescript-eslint/parser': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 2730 - '@vitest/eslint-plugin': 1.6.20(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10) 2731 - ansis: 4.3.1 2732 - cac: 7.0.0 2733 - eslint: 10.7.0(jiti@2.7.0) 2734 - eslint-config-flat-gitignore: 2.3.0(eslint@10.7.0(jiti@2.7.0)) 2735 - eslint-flat-config-utils: 3.2.0 2736 - eslint-merge-processors: 2.0.0(eslint@10.7.0(jiti@2.7.0)) 2737 - eslint-plugin-antfu: 3.2.3(eslint@10.7.0(jiti@2.7.0)) 2738 - eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@6.0.3))(@typescript-eslint/utils@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)) 2739 - eslint-plugin-import-lite: 0.6.0(eslint@10.7.0(jiti@2.7.0)) 2740 - eslint-plugin-jsdoc: 63.0.10(eslint@10.7.0(jiti@2.7.0)) 2741 - eslint-plugin-jsonc: 3.2.0(eslint@10.7.0(jiti@2.7.0)) 2742 - eslint-plugin-n: 18.2.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 2743 - eslint-plugin-no-only-tests: 3.4.0 2744 - eslint-plugin-perfectionist: 5.9.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 2745 - eslint-plugin-pnpm: 1.6.1(eslint@10.7.0(jiti@2.7.0)) 2746 - eslint-plugin-regexp: 3.1.0(eslint@10.7.0(jiti@2.7.0)) 2747 - eslint-plugin-toml: 1.4.0(eslint@10.7.0(jiti@2.7.0)) 2748 - eslint-plugin-unicorn: 68.0.0(eslint@10.7.0(jiti@2.7.0)) 2749 - eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)) 2750 - eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.7.0(jiti@2.7.0))) 2751 - eslint-plugin-yml: 3.5.0(eslint@10.7.0(jiti@2.7.0)) 2752 - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.35)(eslint@10.7.0(jiti@2.7.0)) 2753 - globals: 17.7.0 2754 - local-pkg: 1.2.1 2755 - parse-gitignore: 2.0.0 2756 - toml-eslint-parser: 1.0.3 2757 - vue-eslint-parser: 10.4.1(eslint@10.7.0(jiti@2.7.0)) 2758 - yaml-eslint-parser: 2.0.0 2759 - transitivePeerDependencies: 2760 - - '@eslint/json' 2761 - - '@typescript-eslint/rule-tester' 2762 - - '@typescript-eslint/typescript-estree' 2763 - - '@typescript-eslint/utils' 2764 - - '@vue/compiler-sfc' 2765 - - oxlint 2766 - - supports-color 2767 - - ts-declaration-location 2768 - - typescript 2769 - - vitest 2770 - 2771 - '@antfu/install-pkg@1.1.0': 2772 - dependencies: 2773 - package-manager-detector: 1.6.0 2774 - tinyexec: 1.2.4 2775 - 2776 1857 '@babel/code-frame@7.29.7': 2777 1858 dependencies: 2778 1859 '@babel/helper-validator-identifier': 7.29.7 ··· 2794 1875 2795 1876 '@bcoe/v8-coverage@1.0.2': {} 2796 1877 2797 - '@clack/core@1.4.2': 2798 - dependencies: 2799 - fast-wrap-ansi: 0.2.2 2800 - sisteransi: 1.0.5 2801 - 2802 - '@clack/prompts@1.6.0': 2803 - dependencies: 2804 - '@clack/core': 1.4.2 2805 - fast-string-width: 3.0.2 2806 - fast-wrap-ansi: 0.2.2 2807 - sisteransi: 1.0.5 2808 - 2809 - '@e18e/eslint-plugin@0.5.1(eslint@10.7.0(jiti@2.7.0))': 2810 - dependencies: 2811 - empathic: 2.0.1 2812 - module-replacements: 3.0.0-beta.8 2813 - semver: 7.8.5 2814 - optionalDependencies: 2815 - eslint: 10.7.0(jiti@2.7.0) 2816 - 2817 1878 '@emnapi/core@1.10.0': 2818 1879 dependencies: 2819 1880 '@emnapi/wasi-threads': 1.2.1 ··· 2857 1918 tslib: 2.8.1 2858 1919 optional: true 2859 1920 2860 - '@es-joy/jsdoccomment@0.84.0': 2861 - dependencies: 2862 - '@types/estree': 1.0.9 2863 - '@typescript-eslint/types': 8.62.0 2864 - comment-parser: 1.4.5 2865 - esquery: 1.7.0 2866 - jsdoc-type-pratt-parser: 7.1.1 2867 - 2868 - '@es-joy/jsdoccomment@0.87.0': 2869 - dependencies: 2870 - '@types/estree': 1.0.9 2871 - '@typescript-eslint/types': 8.62.0 2872 - comment-parser: 1.4.7 2873 - esquery: 1.7.0 2874 - jsdoc-type-pratt-parser: 7.2.0 2875 - 2876 - '@es-joy/resolve.exports@1.2.0': {} 2877 - 2878 - '@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.7.0(jiti@2.7.0))': 2879 - dependencies: 2880 - escape-string-regexp: 4.0.0 2881 - eslint: 10.7.0(jiti@2.7.0) 2882 - ignore: 7.0.5 2883 - 2884 - '@eslint-community/eslint-utils@4.9.1(eslint@10.7.0(jiti@2.7.0))': 2885 - dependencies: 2886 - eslint: 10.7.0(jiti@2.7.0) 2887 - eslint-visitor-keys: 3.4.3 2888 - 2889 - '@eslint-community/regexpp@4.12.2': {} 2890 - 2891 - '@eslint/compat@2.1.0(eslint@10.7.0(jiti@2.7.0))': 2892 - dependencies: 2893 - '@eslint/core': 1.2.1 2894 - optionalDependencies: 2895 - eslint: 10.7.0(jiti@2.7.0) 2896 - 2897 - '@eslint/config-array@0.23.5': 2898 - dependencies: 2899 - '@eslint/object-schema': 3.0.5 2900 - debug: 4.4.3 2901 - minimatch: 10.2.5 2902 - transitivePeerDependencies: 2903 - - supports-color 2904 - 2905 - '@eslint/config-helpers@0.5.5': 2906 - dependencies: 2907 - '@eslint/core': 1.2.1 2908 - 2909 - '@eslint/config-helpers@0.6.0': 2910 - dependencies: 2911 - '@eslint/core': 1.2.1 2912 - 2913 - '@eslint/core@1.2.1': 2914 - dependencies: 2915 - '@types/json-schema': 7.0.15 2916 - 2917 - '@eslint/markdown@8.0.2': 2918 - dependencies: 2919 - '@eslint/core': 1.2.1 2920 - '@eslint/plugin-kit': 0.7.2 2921 - github-slugger: 2.0.0 2922 - mdast-util-from-markdown: 2.0.3 2923 - mdast-util-frontmatter: 2.0.1 2924 - mdast-util-gfm: 3.1.0 2925 - mdast-util-math: 3.0.0 2926 - micromark-extension-frontmatter: 2.0.0 2927 - micromark-extension-gfm: 3.0.0 2928 - micromark-extension-math: 3.1.0 2929 - micromark-util-normalize-identifier: 2.0.1 2930 - transitivePeerDependencies: 2931 - - supports-color 2932 - 2933 - '@eslint/object-schema@3.0.5': {} 2934 - 2935 - '@eslint/plugin-kit@0.7.2': 2936 - dependencies: 2937 - '@eslint/core': 1.2.1 2938 - levn: 0.4.1 2939 - 2940 - '@humanfs/core@0.19.2': 2941 - dependencies: 2942 - '@humanfs/types': 0.15.0 2943 - 2944 - '@humanfs/node@0.16.8': 2945 - dependencies: 2946 - '@humanfs/core': 0.19.2 2947 - '@humanfs/types': 0.15.0 2948 - '@humanwhocodes/retry': 0.4.3 2949 - 2950 - '@humanfs/types@0.15.0': {} 2951 - 2952 - '@humanwhocodes/module-importer@1.0.1': {} 2953 - 2954 - '@humanwhocodes/retry@0.4.3': {} 2955 - 2956 1921 '@isaacs/cliui@8.0.2': 2957 1922 dependencies: 2958 1923 string-width: 5.1.2 ··· 2971 1936 '@jridgewell/resolve-uri': 3.1.2 2972 1937 '@jridgewell/sourcemap-codec': 1.5.5 2973 1938 2974 - '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': 1939 + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': 1940 + dependencies: 1941 + '@emnapi/core': 1.11.1 1942 + '@emnapi/runtime': 1.11.1 1943 + '@tybys/wasm-util': 0.10.2 1944 + optional: true 1945 + 1946 + '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': 2975 1947 dependencies: 2976 1948 '@emnapi/core': 1.10.0 2977 1949 '@emnapi/runtime': 1.10.0 2978 - '@tybys/wasm-util': 0.10.2 1950 + '@tybys/wasm-util': 0.10.3 2979 1951 optional: true 2980 1952 2981 - '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)': 1953 + '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)': 2982 1954 dependencies: 2983 1955 '@emnapi/core': 1.11.0 2984 1956 '@emnapi/runtime': 1.11.0 2985 - '@tybys/wasm-util': 0.10.2 2986 - optional: true 2987 - 2988 - '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': 2989 - dependencies: 2990 - '@emnapi/core': 1.11.1 2991 - '@emnapi/runtime': 1.11.1 2992 - '@tybys/wasm-util': 0.10.2 1957 + '@tybys/wasm-util': 0.10.3 2993 1958 optional: true 2994 1959 2995 1960 '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': ··· 3007 1972 read-package-json-fast: 3.0.2 3008 1973 3009 1974 '@npmcli/name-from-folder@2.0.0': {} 3010 - 3011 - '@ota-meshi/ast-token-store@0.3.0': {} 3012 1975 3013 1976 '@oxc-parser/binding-android-arm-eabi@0.137.0': 3014 1977 optional: true ··· 3132 2095 dependencies: 3133 2096 '@emnapi/core': 1.11.0 3134 2097 '@emnapi/runtime': 1.11.0 3135 - '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0) 2098 + '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0) 3136 2099 optional: true 3137 2100 3138 2101 '@oxc-resolver/binding-win32-arm64-msvc@11.21.3': ··· 3141 2104 '@oxc-resolver/binding-win32-x64-msvc@11.21.3': 3142 2105 optional: true 3143 2106 3144 - '@pkgjs/parseargs@0.11.0': 2107 + '@oxlint-tsgolint/darwin-arm64@0.24.0': 2108 + optional: true 2109 + 2110 + '@oxlint-tsgolint/darwin-x64@0.24.0': 2111 + optional: true 2112 + 2113 + '@oxlint-tsgolint/linux-arm64@0.24.0': 3145 2114 optional: true 3146 2115 3147 - '@pkgr/core@0.3.6': {} 2116 + '@oxlint-tsgolint/linux-x64@0.24.0': 2117 + optional: true 2118 + 2119 + '@oxlint-tsgolint/win32-arm64@0.24.0': 2120 + optional: true 2121 + 2122 + '@oxlint-tsgolint/win32-x64@0.24.0': 2123 + optional: true 2124 + 2125 + '@oxlint/binding-android-arm-eabi@1.74.0': 2126 + optional: true 2127 + 2128 + '@oxlint/binding-android-arm64@1.74.0': 2129 + optional: true 2130 + 2131 + '@oxlint/binding-darwin-arm64@1.74.0': 2132 + optional: true 2133 + 2134 + '@oxlint/binding-darwin-x64@1.74.0': 2135 + optional: true 2136 + 2137 + '@oxlint/binding-freebsd-x64@1.74.0': 2138 + optional: true 2139 + 2140 + '@oxlint/binding-linux-arm-gnueabihf@1.74.0': 2141 + optional: true 2142 + 2143 + '@oxlint/binding-linux-arm-musleabihf@1.74.0': 2144 + optional: true 2145 + 2146 + '@oxlint/binding-linux-arm64-gnu@1.74.0': 2147 + optional: true 2148 + 2149 + '@oxlint/binding-linux-arm64-musl@1.74.0': 2150 + optional: true 2151 + 2152 + '@oxlint/binding-linux-ppc64-gnu@1.74.0': 2153 + optional: true 2154 + 2155 + '@oxlint/binding-linux-riscv64-gnu@1.74.0': 2156 + optional: true 2157 + 2158 + '@oxlint/binding-linux-riscv64-musl@1.74.0': 2159 + optional: true 2160 + 2161 + '@oxlint/binding-linux-s390x-gnu@1.74.0': 2162 + optional: true 2163 + 2164 + '@oxlint/binding-linux-x64-gnu@1.74.0': 2165 + optional: true 2166 + 2167 + '@oxlint/binding-linux-x64-musl@1.74.0': 2168 + optional: true 2169 + 2170 + '@oxlint/binding-openharmony-arm64@1.74.0': 2171 + optional: true 2172 + 2173 + '@oxlint/binding-win32-arm64-msvc@1.74.0': 2174 + optional: true 2175 + 2176 + '@oxlint/binding-win32-ia32-msvc@1.74.0': 2177 + optional: true 2178 + 2179 + '@oxlint/binding-win32-x64-msvc@1.74.0': 2180 + optional: true 2181 + 2182 + '@pkgjs/parseargs@0.11.0': 2183 + optional: true 3148 2184 3149 2185 '@pnpm/constants@10.0.0': {} 3150 2186 ··· 3238 2274 dependencies: 3239 2275 '@emnapi/core': 1.10.0 3240 2276 '@emnapi/runtime': 1.10.0 3241 - '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 2277 + '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 3242 2278 optional: true 3243 2279 3244 2280 '@rolldown/binding-wasm32-wasi@1.1.5': ··· 3262 2298 3263 2299 '@rolldown/pluginutils@1.0.1': {} 3264 2300 3265 - '@sindresorhus/base62@1.0.0': {} 3266 - 3267 2301 '@sindresorhus/fnv1a@3.1.0': {} 3268 2302 3269 2303 '@standard-schema/spec@1.1.0': {} 3270 2304 3271 - '@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0))': 3272 - dependencies: 3273 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3274 - '@typescript-eslint/types': 8.62.0 3275 - eslint: 10.7.0(jiti@2.7.0) 3276 - eslint-visitor-keys: 4.2.1 3277 - espree: 10.4.0 3278 - estraverse: 5.3.0 3279 - picomatch: 4.0.4 3280 - 3281 2305 '@tybys/wasm-util@0.10.2': 3282 2306 dependencies: 3283 2307 tslib: 2.8.1 ··· 3293 2317 '@types/deep-eql': 4.0.2 3294 2318 assertion-error: 2.0.1 3295 2319 3296 - '@types/debug@4.1.13': 3297 - dependencies: 3298 - '@types/ms': 2.1.0 3299 - 3300 2320 '@types/deep-eql@4.0.2': {} 3301 2321 3302 - '@types/esrecurse@4.3.1': {} 3303 - 3304 2322 '@types/estree@1.0.9': {} 3305 2323 3306 - '@types/hast@3.0.4': 3307 - dependencies: 3308 - '@types/unist': 3.0.3 3309 - 3310 - '@types/json-schema@7.0.15': {} 3311 - 3312 - '@types/katex@0.16.8': {} 3313 - 3314 - '@types/mdast@4.0.4': 2324 + '@types/node@26.1.1': 3315 2325 dependencies: 3316 - '@types/unist': 3.0.3 3317 - 3318 - '@types/ms@2.1.0': {} 2326 + undici-types: 8.3.0 3319 2327 3320 2328 '@types/normalize-package-data@2.4.4': {} 3321 2329 3322 - '@types/unist@3.0.3': {} 2330 + '@typescript/typescript-aix-ppc64@7.0.2': 2331 + optional: true 3323 2332 3324 - '@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3325 - dependencies: 3326 - '@eslint-community/regexpp': 4.12.2 3327 - '@typescript-eslint/parser': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3328 - '@typescript-eslint/scope-manager': 8.62.0 3329 - '@typescript-eslint/type-utils': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3330 - '@typescript-eslint/utils': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3331 - '@typescript-eslint/visitor-keys': 8.62.0 3332 - eslint: 10.7.0(jiti@2.7.0) 3333 - ignore: 7.0.5 3334 - natural-compare: 1.4.0 3335 - ts-api-utils: 2.5.0(typescript@6.0.3) 3336 - typescript: 6.0.3 3337 - transitivePeerDependencies: 3338 - - supports-color 2333 + '@typescript/typescript-darwin-arm64@7.0.2': 2334 + optional: true 3339 2335 3340 - '@typescript-eslint/parser@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3341 - dependencies: 3342 - '@typescript-eslint/scope-manager': 8.60.1 3343 - '@typescript-eslint/types': 8.60.1 3344 - '@typescript-eslint/typescript-estree': 8.60.1(typescript@6.0.3) 3345 - '@typescript-eslint/visitor-keys': 8.60.1 3346 - debug: 4.4.3 3347 - eslint: 10.7.0(jiti@2.7.0) 3348 - typescript: 6.0.3 3349 - transitivePeerDependencies: 3350 - - supports-color 2336 + '@typescript/typescript-darwin-x64@7.0.2': 2337 + optional: true 3351 2338 3352 - '@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3353 - dependencies: 3354 - '@typescript-eslint/scope-manager': 8.62.0 3355 - '@typescript-eslint/types': 8.62.0 3356 - '@typescript-eslint/typescript-estree': 8.62.0(typescript@6.0.3) 3357 - '@typescript-eslint/visitor-keys': 8.62.0 3358 - debug: 4.4.3 3359 - eslint: 10.7.0(jiti@2.7.0) 3360 - typescript: 6.0.3 3361 - transitivePeerDependencies: 3362 - - supports-color 2339 + '@typescript/typescript-freebsd-arm64@7.0.2': 2340 + optional: true 3363 2341 3364 - '@typescript-eslint/project-service@8.60.1(typescript@6.0.3)': 3365 - dependencies: 3366 - '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@6.0.3) 3367 - '@typescript-eslint/types': 8.62.0 3368 - debug: 4.4.3 3369 - typescript: 6.0.3 3370 - transitivePeerDependencies: 3371 - - supports-color 2342 + '@typescript/typescript-freebsd-x64@7.0.2': 2343 + optional: true 3372 2344 3373 - '@typescript-eslint/project-service@8.62.0(typescript@6.0.3)': 3374 - dependencies: 3375 - '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@6.0.3) 3376 - '@typescript-eslint/types': 8.62.0 3377 - debug: 4.4.3 3378 - typescript: 6.0.3 3379 - transitivePeerDependencies: 3380 - - supports-color 2345 + '@typescript/typescript-linux-arm64@7.0.2': 2346 + optional: true 3381 2347 3382 - '@typescript-eslint/rule-tester@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3383 - dependencies: 3384 - '@typescript-eslint/parser': 8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3385 - '@typescript-eslint/typescript-estree': 8.60.1(typescript@6.0.3) 3386 - '@typescript-eslint/utils': 8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3387 - ajv: 6.15.0 3388 - eslint: 10.7.0(jiti@2.7.0) 3389 - json-stable-stringify-without-jsonify: 1.0.1 3390 - lodash.merge: 4.6.2 3391 - semver: 7.8.5 3392 - typescript: 6.0.3 3393 - transitivePeerDependencies: 3394 - - supports-color 2348 + '@typescript/typescript-linux-arm@7.0.2': 2349 + optional: true 3395 2350 3396 - '@typescript-eslint/scope-manager@8.60.1': 3397 - dependencies: 3398 - '@typescript-eslint/types': 8.60.1 3399 - '@typescript-eslint/visitor-keys': 8.60.1 2351 + '@typescript/typescript-linux-loong64@7.0.2': 2352 + optional: true 3400 2353 3401 - '@typescript-eslint/scope-manager@8.62.0': 3402 - dependencies: 3403 - '@typescript-eslint/types': 8.62.0 3404 - '@typescript-eslint/visitor-keys': 8.62.0 2354 + '@typescript/typescript-linux-mips64el@7.0.2': 2355 + optional: true 3405 2356 3406 - '@typescript-eslint/tsconfig-utils@8.60.1(typescript@6.0.3)': 3407 - dependencies: 3408 - typescript: 6.0.3 2357 + '@typescript/typescript-linux-ppc64@7.0.2': 2358 + optional: true 3409 2359 3410 - '@typescript-eslint/tsconfig-utils@8.62.0(typescript@6.0.3)': 3411 - dependencies: 3412 - typescript: 6.0.3 2360 + '@typescript/typescript-linux-riscv64@7.0.2': 2361 + optional: true 3413 2362 3414 - '@typescript-eslint/type-utils@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3415 - dependencies: 3416 - '@typescript-eslint/types': 8.62.0 3417 - '@typescript-eslint/typescript-estree': 8.62.0(typescript@6.0.3) 3418 - '@typescript-eslint/utils': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3419 - debug: 4.4.3 3420 - eslint: 10.7.0(jiti@2.7.0) 3421 - ts-api-utils: 2.5.0(typescript@6.0.3) 3422 - typescript: 6.0.3 3423 - transitivePeerDependencies: 3424 - - supports-color 2363 + '@typescript/typescript-linux-s390x@7.0.2': 2364 + optional: true 3425 2365 3426 - '@typescript-eslint/types@8.60.1': {} 2366 + '@typescript/typescript-linux-x64@7.0.2': 2367 + optional: true 3427 2368 3428 - '@typescript-eslint/types@8.62.0': {} 2369 + '@typescript/typescript-netbsd-arm64@7.0.2': 2370 + optional: true 3429 2371 3430 - '@typescript-eslint/typescript-estree@8.60.1(typescript@6.0.3)': 3431 - dependencies: 3432 - '@typescript-eslint/project-service': 8.60.1(typescript@6.0.3) 3433 - '@typescript-eslint/tsconfig-utils': 8.60.1(typescript@6.0.3) 3434 - '@typescript-eslint/types': 8.60.1 3435 - '@typescript-eslint/visitor-keys': 8.60.1 3436 - debug: 4.4.3 3437 - minimatch: 10.2.5 3438 - semver: 7.8.5 3439 - tinyglobby: 0.2.17 3440 - ts-api-utils: 2.5.0(typescript@6.0.3) 3441 - typescript: 6.0.3 3442 - transitivePeerDependencies: 3443 - - supports-color 2372 + '@typescript/typescript-netbsd-x64@7.0.2': 2373 + optional: true 3444 2374 3445 - '@typescript-eslint/typescript-estree@8.62.0(typescript@6.0.3)': 3446 - dependencies: 3447 - '@typescript-eslint/project-service': 8.62.0(typescript@6.0.3) 3448 - '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@6.0.3) 3449 - '@typescript-eslint/types': 8.62.0 3450 - '@typescript-eslint/visitor-keys': 8.62.0 3451 - debug: 4.4.3 3452 - minimatch: 10.2.5 3453 - semver: 7.8.5 3454 - tinyglobby: 0.2.17 3455 - ts-api-utils: 2.5.0(typescript@6.0.3) 3456 - typescript: 6.0.3 3457 - transitivePeerDependencies: 3458 - - supports-color 2375 + '@typescript/typescript-openbsd-arm64@7.0.2': 2376 + optional: true 3459 2377 3460 - '@typescript-eslint/utils@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3461 - dependencies: 3462 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3463 - '@typescript-eslint/scope-manager': 8.60.1 3464 - '@typescript-eslint/types': 8.60.1 3465 - '@typescript-eslint/typescript-estree': 8.60.1(typescript@6.0.3) 3466 - eslint: 10.7.0(jiti@2.7.0) 3467 - typescript: 6.0.3 3468 - transitivePeerDependencies: 3469 - - supports-color 2378 + '@typescript/typescript-openbsd-x64@7.0.2': 2379 + optional: true 3470 2380 3471 - '@typescript-eslint/utils@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': 3472 - dependencies: 3473 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3474 - '@typescript-eslint/scope-manager': 8.62.0 3475 - '@typescript-eslint/types': 8.62.0 3476 - '@typescript-eslint/typescript-estree': 8.62.0(typescript@6.0.3) 3477 - eslint: 10.7.0(jiti@2.7.0) 3478 - typescript: 6.0.3 3479 - transitivePeerDependencies: 3480 - - supports-color 2381 + '@typescript/typescript-sunos-x64@7.0.2': 2382 + optional: true 3481 2383 3482 - '@typescript-eslint/visitor-keys@8.60.1': 3483 - dependencies: 3484 - '@typescript-eslint/types': 8.60.1 3485 - eslint-visitor-keys: 5.0.1 2384 + '@typescript/typescript-win32-arm64@7.0.2': 2385 + optional: true 3486 2386 3487 - '@typescript-eslint/visitor-keys@8.62.0': 3488 - dependencies: 3489 - '@typescript-eslint/types': 8.62.0 3490 - eslint-visitor-keys: 5.0.1 2387 + '@typescript/typescript-win32-x64@7.0.2': 2388 + optional: true 3491 2389 3492 2390 '@vitest/coverage-v8@4.1.10(vitest@4.1.10)': 3493 2391 dependencies: ··· 3501 2399 obug: 2.1.3 3502 2400 std-env: 4.1.0 3503 2401 tinyrainbow: 3.1.0 3504 - vitest: 4.1.10(@vitest/coverage-v8@4.1.10)(vite@8.0.16(jiti@2.7.0)(yaml@2.9.0)) 3505 - 3506 - '@vitest/eslint-plugin@1.6.20(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)(vitest@4.1.10)': 3507 - dependencies: 3508 - '@typescript-eslint/scope-manager': 8.62.0 3509 - '@typescript-eslint/utils': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3510 - eslint: 10.7.0(jiti@2.7.0) 3511 - optionalDependencies: 3512 - '@typescript-eslint/eslint-plugin': 8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3513 - typescript: 6.0.3 3514 - vitest: 4.1.10(@vitest/coverage-v8@4.1.10)(vite@8.0.16(jiti@2.7.0)(yaml@2.9.0)) 3515 - transitivePeerDependencies: 3516 - - supports-color 2402 + vitest: 4.1.10(@types/node@26.1.1)(@vitest/coverage-v8@4.1.10)(vite@8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0)) 3517 2403 3518 2404 '@vitest/expect@4.1.10': 3519 2405 dependencies: ··· 3524 2410 chai: 6.2.2 3525 2411 tinyrainbow: 3.1.0 3526 2412 3527 - '@vitest/mocker@4.1.10(vite@8.0.16(jiti@2.7.0)(yaml@2.9.0))': 2413 + '@vitest/mocker@4.1.10(vite@8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0))': 3528 2414 dependencies: 3529 2415 '@vitest/spy': 4.1.10 3530 2416 estree-walker: 3.0.3 3531 2417 magic-string: 0.30.21 3532 2418 optionalDependencies: 3533 - vite: 8.0.16(jiti@2.7.0)(yaml@2.9.0) 2419 + vite: 8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0) 3534 2420 3535 2421 '@vitest/pretty-format@4.1.10': 3536 2422 dependencies: ··· 3566 2452 dependencies: 3567 2453 '@voxpelli/type-helpers': 3.5.0 3568 2454 3569 - '@vue/compiler-core@3.5.35': 3570 - dependencies: 3571 - '@babel/parser': 7.29.7 3572 - '@vue/shared': 3.5.35 3573 - entities: 7.0.1 3574 - estree-walker: 2.0.2 3575 - source-map-js: 1.2.1 3576 - 3577 - '@vue/compiler-dom@3.5.35': 3578 - dependencies: 3579 - '@vue/compiler-core': 3.5.35 3580 - '@vue/shared': 3.5.35 3581 - 3582 - '@vue/compiler-sfc@3.5.35': 3583 - dependencies: 3584 - '@babel/parser': 7.29.7 3585 - '@vue/compiler-core': 3.5.35 3586 - '@vue/compiler-dom': 3.5.35 3587 - '@vue/compiler-ssr': 3.5.35 3588 - '@vue/shared': 3.5.35 3589 - estree-walker: 2.0.2 3590 - magic-string: 0.30.21 3591 - postcss: 8.5.15 3592 - source-map-js: 1.2.1 3593 - 3594 - '@vue/compiler-ssr@3.5.35': 3595 - dependencies: 3596 - '@vue/compiler-dom': 3.5.35 3597 - '@vue/shared': 3.5.35 3598 - 3599 - '@vue/shared@3.5.35': {} 3600 - 3601 2455 '@yuku-codegen/binding-darwin-arm64@0.6.1': 3602 2456 optional: true 3603 2457 ··· 3666 2520 3667 2521 '@yuku-toolchain/types@0.5.43': {} 3668 2522 3669 - acorn-jsx@5.3.2(acorn@8.16.0): 3670 - dependencies: 3671 - acorn: 8.16.0 3672 - 3673 - acorn@8.16.0: {} 3674 - 3675 - ajv@6.15.0: 3676 - dependencies: 3677 - fast-deep-equal: 3.1.3 3678 - fast-json-stable-stringify: 2.1.0 3679 - json-schema-traverse: 0.4.1 3680 - uri-js: 4.4.1 3681 - 3682 2523 ansi-regex@5.0.1: {} 3683 2524 3684 2525 ansi-regex@6.2.2: {} ··· 3691 2532 3692 2533 ansis@4.3.1: {} 3693 2534 3694 - are-docs-informative@0.0.2: {} 3695 - 3696 2535 argparse@2.0.1: {} 3697 2536 3698 2537 assertion-error@2.0.1: {} ··· 3705 2544 3706 2545 balanced-match@1.0.2: {} 3707 2546 3708 - balanced-match@4.0.4: {} 3709 - 3710 - baseline-browser-mapping@2.10.34: {} 3711 - 3712 - boolbase@1.0.0: {} 3713 - 3714 2547 brace-expansion@2.1.1: 3715 2548 dependencies: 3716 2549 balanced-match: 1.0.2 3717 2550 3718 - brace-expansion@5.0.6: 3719 - dependencies: 3720 - balanced-match: 4.0.4 3721 - 3722 - browserslist@4.28.2: 3723 - dependencies: 3724 - baseline-browser-mapping: 2.10.34 3725 - caniuse-lite: 1.0.30001797 3726 - electron-to-chromium: 1.5.368 3727 - node-releases: 2.0.47 3728 - update-browserslist-db: 1.2.3(browserslist@4.28.2) 3729 - 3730 2551 buffered-async-iterable@1.0.1: {} 3731 2552 3732 - builtin-modules@5.2.0: {} 3733 - 3734 2553 cac@7.0.0: {} 3735 2554 3736 - caniuse-lite@1.0.30001797: {} 3737 - 3738 - ccount@2.0.1: {} 3739 - 3740 2555 chai@6.2.2: {} 3741 2556 3742 2557 chalk@5.6.2: {} 3743 2558 3744 - change-case@5.4.4: {} 3745 - 3746 - character-entities@2.0.2: {} 3747 - 3748 - ci-info@4.4.0: {} 3749 - 3750 2559 color-convert@2.0.1: 3751 2560 dependencies: 3752 2561 color-name: 1.1.4 3753 2562 3754 2563 color-name@1.1.4: {} 3755 2564 3756 - commander@8.3.0: {} 3757 - 3758 - comment-parser@1.4.5: {} 3759 - 3760 - comment-parser@1.4.7: {} 3761 - 3762 - confbox@0.1.8: {} 3763 - 3764 - confbox@0.2.4: {} 3765 - 3766 2565 convert-source-map@2.0.0: {} 3767 2566 3768 - core-js-compat@3.49.0: 3769 - dependencies: 3770 - browserslist: 4.28.2 3771 - 3772 2567 cross-spawn@7.0.6: 3773 2568 dependencies: 3774 2569 path-key: 3.1.1 3775 2570 shebang-command: 2.0.0 3776 2571 which: 2.0.2 3777 - 3778 - cssesc@3.0.0: {} 3779 2572 3780 2573 cuint@0.2.2: {} 3781 2574 3782 - debug@4.4.3: 3783 - dependencies: 3784 - ms: 2.1.3 3785 - 3786 - decode-named-character-reference@1.3.0: 3787 - dependencies: 3788 - character-entities: 2.0.2 3789 - 3790 - deep-is@0.1.4: {} 3791 - 3792 2575 defu@6.1.7: {} 3793 2576 3794 - dequal@2.0.3: {} 3795 - 3796 - detect-indent@7.0.2: {} 3797 - 3798 2577 detect-libc@2.1.2: {} 3799 2578 3800 - devlop@1.1.0: 3801 - dependencies: 3802 - dequal: 2.0.3 3803 - 3804 - diff-sequences@29.6.3: {} 3805 - 3806 2579 dts-resolver@3.0.0(oxc-resolver@11.21.3): 3807 2580 optionalDependencies: 3808 2581 oxc-resolver: 11.21.3 3809 2582 3810 2583 eastasianwidth@0.2.0: {} 3811 2584 3812 - electron-to-chromium@1.5.368: {} 3813 - 3814 2585 emoji-regex@8.0.0: {} 3815 2586 3816 2587 emoji-regex@9.2.2: {} 3817 2588 3818 2589 empathic@2.0.1: {} 3819 2590 3820 - enhanced-resolve@5.23.0: 3821 - dependencies: 3822 - graceful-fs: 4.2.11 3823 - tapable: 2.3.3 3824 - 3825 - entities@7.0.1: {} 3826 - 3827 2591 es-module-lexer@2.1.0: {} 3828 2592 3829 - escalade@3.2.0: {} 3830 - 3831 - escape-string-regexp@4.0.0: {} 3832 - 3833 - escape-string-regexp@5.0.0: {} 3834 - 3835 - eslint-compat-utils@0.5.1(eslint@10.7.0(jiti@2.7.0)): 3836 - dependencies: 3837 - eslint: 10.7.0(jiti@2.7.0) 3838 - semver: 7.8.5 3839 - 3840 - eslint-config-flat-gitignore@2.3.0(eslint@10.7.0(jiti@2.7.0)): 3841 - dependencies: 3842 - '@eslint/compat': 2.1.0(eslint@10.7.0(jiti@2.7.0)) 3843 - eslint: 10.7.0(jiti@2.7.0) 3844 - 3845 - eslint-flat-config-utils@3.2.0: 3846 - dependencies: 3847 - '@eslint/config-helpers': 0.5.5 3848 - pathe: 2.0.3 3849 - 3850 - eslint-json-compat-utils@0.2.3(eslint@10.7.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0): 3851 - dependencies: 3852 - eslint: 10.7.0(jiti@2.7.0) 3853 - esquery: 1.7.0 3854 - jsonc-eslint-parser: 3.1.0 3855 - 3856 - eslint-merge-processors@2.0.0(eslint@10.7.0(jiti@2.7.0)): 3857 - dependencies: 3858 - eslint: 10.7.0(jiti@2.7.0) 3859 - 3860 - eslint-plugin-antfu@3.2.3(eslint@10.7.0(jiti@2.7.0)): 3861 - dependencies: 3862 - eslint: 10.7.0(jiti@2.7.0) 3863 - 3864 - eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@6.0.3))(@typescript-eslint/utils@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)): 3865 - dependencies: 3866 - '@es-joy/jsdoccomment': 0.84.0 3867 - '@typescript-eslint/rule-tester': 8.60.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3868 - '@typescript-eslint/typescript-estree': 8.62.0(typescript@6.0.3) 3869 - '@typescript-eslint/utils': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3870 - eslint: 10.7.0(jiti@2.7.0) 3871 - 3872 - eslint-plugin-es-x@7.8.0(eslint@10.7.0(jiti@2.7.0)): 3873 - dependencies: 3874 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3875 - '@eslint-community/regexpp': 4.12.2 3876 - eslint: 10.7.0(jiti@2.7.0) 3877 - eslint-compat-utils: 0.5.1(eslint@10.7.0(jiti@2.7.0)) 3878 - 3879 - eslint-plugin-import-lite@0.6.0(eslint@10.7.0(jiti@2.7.0)): 3880 - dependencies: 3881 - eslint: 10.7.0(jiti@2.7.0) 3882 - 3883 - eslint-plugin-jsdoc@63.0.10(eslint@10.7.0(jiti@2.7.0)): 3884 - dependencies: 3885 - '@es-joy/jsdoccomment': 0.87.0 3886 - '@es-joy/resolve.exports': 1.2.0 3887 - are-docs-informative: 0.0.2 3888 - comment-parser: 1.4.7 3889 - debug: 4.4.3 3890 - escape-string-regexp: 4.0.0 3891 - eslint: 10.7.0(jiti@2.7.0) 3892 - espree: 11.2.0 3893 - esquery: 1.7.0 3894 - html-entities: 2.6.0 3895 - object-deep-merge: 2.0.1 3896 - parse-imports-exports: 0.2.4 3897 - semver: 7.8.5 3898 - spdx-expression-parse: 4.0.0 3899 - to-valid-identifier: 1.0.0 3900 - transitivePeerDependencies: 3901 - - supports-color 3902 - 3903 - eslint-plugin-jsonc@3.2.0(eslint@10.7.0(jiti@2.7.0)): 3904 - dependencies: 3905 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3906 - '@eslint/core': 1.2.1 3907 - '@eslint/plugin-kit': 0.7.2 3908 - '@ota-meshi/ast-token-store': 0.3.0 3909 - diff-sequences: 29.6.3 3910 - eslint: 10.7.0(jiti@2.7.0) 3911 - eslint-json-compat-utils: 0.2.3(eslint@10.7.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0) 3912 - jsonc-eslint-parser: 3.1.0 3913 - natural-compare: 1.4.0 3914 - synckit: 0.11.13 3915 - transitivePeerDependencies: 3916 - - '@eslint/json' 3917 - 3918 - eslint-plugin-n@18.2.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3): 3919 - dependencies: 3920 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3921 - enhanced-resolve: 5.23.0 3922 - eslint: 10.7.0(jiti@2.7.0) 3923 - eslint-plugin-es-x: 7.8.0(eslint@10.7.0(jiti@2.7.0)) 3924 - get-tsconfig: 4.14.0 3925 - globals: 15.15.0 3926 - globrex: 0.1.2 3927 - ignore: 5.3.2 3928 - semver: 7.8.5 3929 - optionalDependencies: 3930 - typescript: 6.0.3 3931 - 3932 - eslint-plugin-no-only-tests@3.4.0: {} 3933 - 3934 - eslint-plugin-perfectionist@5.9.1(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3): 3935 - dependencies: 3936 - '@typescript-eslint/utils': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 3937 - eslint: 10.7.0(jiti@2.7.0) 3938 - natural-orderby: 5.0.0 3939 - transitivePeerDependencies: 3940 - - supports-color 3941 - - typescript 3942 - 3943 - eslint-plugin-pnpm@1.6.1(eslint@10.7.0(jiti@2.7.0)): 3944 - dependencies: 3945 - empathic: 2.0.1 3946 - eslint: 10.7.0(jiti@2.7.0) 3947 - jsonc-eslint-parser: 3.1.0 3948 - pathe: 2.0.3 3949 - pnpm-workspace-yaml: 1.6.1 3950 - tinyglobby: 0.2.17 3951 - yaml: 2.9.0 3952 - yaml-eslint-parser: 2.0.0 3953 - 3954 - eslint-plugin-regexp@3.1.0(eslint@10.7.0(jiti@2.7.0)): 3955 - dependencies: 3956 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3957 - '@eslint-community/regexpp': 4.12.2 3958 - comment-parser: 1.4.7 3959 - eslint: 10.7.0(jiti@2.7.0) 3960 - jsdoc-type-pratt-parser: 7.2.0 3961 - refa: 0.12.1 3962 - regexp-ast-analysis: 0.7.1 3963 - scslre: 0.3.0 3964 - 3965 - eslint-plugin-toml@1.4.0(eslint@10.7.0(jiti@2.7.0)): 3966 - dependencies: 3967 - '@eslint/core': 1.2.1 3968 - '@eslint/plugin-kit': 0.7.2 3969 - '@ota-meshi/ast-token-store': 0.3.0 3970 - debug: 4.4.3 3971 - eslint: 10.7.0(jiti@2.7.0) 3972 - toml-eslint-parser: 1.0.3 3973 - transitivePeerDependencies: 3974 - - supports-color 3975 - 3976 - eslint-plugin-unicorn@68.0.0(eslint@10.7.0(jiti@2.7.0)): 3977 - dependencies: 3978 - '@babel/helper-validator-identifier': 7.29.7 3979 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 3980 - browserslist: 4.28.2 3981 - change-case: 5.4.4 3982 - ci-info: 4.4.0 3983 - core-js-compat: 3.49.0 3984 - detect-indent: 7.0.2 3985 - eslint: 10.7.0(jiti@2.7.0) 3986 - find-up-simple: 1.0.1 3987 - globals: 17.7.0 3988 - indent-string: 5.0.0 3989 - is-builtin-module: 5.0.0 3990 - jsesc: 3.1.0 3991 - pluralize: 8.0.0 3992 - regjsparser: 0.13.1 3993 - semver: 7.8.5 3994 - strip-indent: 4.1.1 3995 - 3996 - eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)): 3997 - dependencies: 3998 - eslint: 10.7.0(jiti@2.7.0) 3999 - optionalDependencies: 4000 - '@typescript-eslint/eslint-plugin': 8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 4001 - 4002 - eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.7.0(jiti@2.7.0))): 4003 - dependencies: 4004 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 4005 - eslint: 10.7.0(jiti@2.7.0) 4006 - natural-compare: 1.4.0 4007 - nth-check: 2.1.1 4008 - postcss-selector-parser: 7.1.1 4009 - semver: 7.8.5 4010 - vue-eslint-parser: 10.4.1(eslint@10.7.0(jiti@2.7.0)) 4011 - xml-name-validator: 4.0.0 4012 - optionalDependencies: 4013 - '@stylistic/eslint-plugin': 5.10.0(eslint@10.7.0(jiti@2.7.0)) 4014 - '@typescript-eslint/parser': 8.62.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) 4015 - 4016 - eslint-plugin-yml@3.5.0(eslint@10.7.0(jiti@2.7.0)): 4017 - dependencies: 4018 - '@eslint/core': 1.2.1 4019 - '@eslint/plugin-kit': 0.7.2 4020 - '@ota-meshi/ast-token-store': 0.3.0 4021 - diff-sequences: 29.6.3 4022 - escape-string-regexp: 5.0.0 4023 - eslint: 10.7.0(jiti@2.7.0) 4024 - natural-compare: 1.4.0 4025 - yaml-eslint-parser: 2.0.0 4026 - 4027 - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.35)(eslint@10.7.0(jiti@2.7.0)): 4028 - dependencies: 4029 - '@vue/compiler-sfc': 3.5.35 4030 - eslint: 10.7.0(jiti@2.7.0) 4031 - 4032 - eslint-scope@9.1.2: 4033 - dependencies: 4034 - '@types/esrecurse': 4.3.1 4035 - '@types/estree': 1.0.9 4036 - esrecurse: 4.3.0 4037 - estraverse: 5.3.0 4038 - 4039 - eslint-visitor-keys@3.4.3: {} 4040 - 4041 - eslint-visitor-keys@4.2.1: {} 4042 - 4043 - eslint-visitor-keys@5.0.1: {} 4044 - 4045 - eslint@10.7.0(jiti@2.7.0): 4046 - dependencies: 4047 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) 4048 - '@eslint-community/regexpp': 4.12.2 4049 - '@eslint/config-array': 0.23.5 4050 - '@eslint/config-helpers': 0.6.0 4051 - '@eslint/core': 1.2.1 4052 - '@eslint/plugin-kit': 0.7.2 4053 - '@humanfs/node': 0.16.8 4054 - '@humanwhocodes/module-importer': 1.0.1 4055 - '@humanwhocodes/retry': 0.4.3 4056 - '@types/estree': 1.0.9 4057 - ajv: 6.15.0 4058 - cross-spawn: 7.0.6 4059 - debug: 4.4.3 4060 - escape-string-regexp: 4.0.0 4061 - eslint-scope: 9.1.2 4062 - eslint-visitor-keys: 5.0.1 4063 - espree: 11.2.0 4064 - esquery: 1.7.0 4065 - esutils: 2.0.3 4066 - fast-deep-equal: 3.1.3 4067 - file-entry-cache: 8.0.0 4068 - find-up: 5.0.0 4069 - glob-parent: 6.0.2 4070 - ignore: 5.3.2 4071 - imurmurhash: 0.1.4 4072 - is-glob: 4.0.3 4073 - json-stable-stringify-without-jsonify: 1.0.1 4074 - minimatch: 10.2.5 4075 - natural-compare: 1.4.0 4076 - optionator: 0.9.4 4077 - optionalDependencies: 4078 - jiti: 2.7.0 4079 - transitivePeerDependencies: 4080 - - supports-color 4081 - 4082 - espree@10.4.0: 4083 - dependencies: 4084 - acorn: 8.16.0 4085 - acorn-jsx: 5.3.2(acorn@8.16.0) 4086 - eslint-visitor-keys: 4.2.1 4087 - 4088 - espree@11.2.0: 4089 - dependencies: 4090 - acorn: 8.16.0 4091 - acorn-jsx: 5.3.2(acorn@8.16.0) 4092 - eslint-visitor-keys: 5.0.1 4093 - 4094 - esquery@1.7.0: 4095 - dependencies: 4096 - estraverse: 5.3.0 4097 - 4098 - esrecurse@4.3.0: 4099 - dependencies: 4100 - estraverse: 5.3.0 4101 - 4102 - estraverse@5.3.0: {} 4103 - 4104 - estree-walker@2.0.2: {} 4105 - 4106 2593 estree-walker@3.0.3: 4107 2594 dependencies: 4108 2595 '@types/estree': 1.0.9 4109 - 4110 - esutils@2.0.3: {} 4111 2596 4112 2597 expect-type@1.3.0: {} 4113 2598 4114 - exsolve@1.0.8: {} 4115 - 4116 - fast-deep-equal@3.1.3: {} 4117 - 4118 - fast-json-stable-stringify@2.1.0: {} 4119 - 4120 - fast-levenshtein@2.0.6: {} 4121 - 4122 - fast-string-truncated-width@3.0.3: {} 4123 - 4124 - fast-string-width@3.0.2: 4125 - dependencies: 4126 - fast-string-truncated-width: 3.0.3 4127 - 4128 - fast-wrap-ansi@0.2.2: 4129 - dependencies: 4130 - fast-string-width: 3.0.2 4131 - 4132 - fault@2.0.1: 4133 - dependencies: 4134 - format: 0.2.2 4135 - 4136 2599 fd-package-json@2.0.0: 4137 2600 dependencies: 4138 2601 walk-up-path: 4.0.0 ··· 4141 2604 optionalDependencies: 4142 2605 picomatch: 4.0.4 4143 2606 4144 - file-entry-cache@8.0.0: 4145 - dependencies: 4146 - flat-cache: 4.0.1 4147 - 4148 - find-up-simple@1.0.1: {} 4149 - 4150 - find-up@5.0.0: 4151 - dependencies: 4152 - locate-path: 6.0.0 4153 - path-exists: 4.0.0 4154 - 4155 - flat-cache@4.0.1: 4156 - dependencies: 4157 - flatted: 3.4.2 4158 - keyv: 4.5.4 4159 - 4160 - flatted@3.4.2: {} 2607 + fdir@6.5.0(picomatch@4.0.5): 2608 + optionalDependencies: 2609 + picomatch: 4.0.5 4161 2610 4162 2611 fnv-lite@1.2.0: {} 4163 2612 ··· 4167 2616 dependencies: 4168 2617 cross-spawn: 7.0.6 4169 2618 signal-exit: 4.1.0 4170 - 4171 - format@0.2.2: {} 4172 2619 4173 2620 formatly@0.3.0: 4174 2621 dependencies: ··· 4185 2632 dependencies: 4186 2633 resolve-pkg-maps: 1.0.0 4187 2634 4188 - github-slugger@2.0.0: {} 4189 - 4190 - glob-parent@6.0.2: 4191 - dependencies: 4192 - is-glob: 4.0.3 4193 - 4194 2635 glob@10.5.0: 4195 2636 dependencies: 4196 2637 foreground-child: 3.3.1 ··· 4200 2641 package-json-from-dist: 1.0.1 4201 2642 path-scurry: 1.11.1 4202 2643 4203 - globals@15.15.0: {} 4204 - 4205 - globals@17.7.0: {} 4206 - 4207 - globrex@0.1.2: {} 4208 - 4209 - graceful-fs@4.2.11: {} 4210 - 4211 2644 has-flag@4.0.0: {} 4212 2645 4213 2646 hookable@6.1.1: {} ··· 4216 2649 dependencies: 4217 2650 lru-cache: 10.4.3 4218 2651 4219 - html-entities@2.6.0: {} 4220 - 4221 2652 html-escaper@2.0.2: {} 4222 2653 4223 - ignore@5.3.2: {} 4224 - 4225 - ignore@7.0.5: {} 4226 - 4227 2654 import-without-cache@0.4.0: {} 4228 - 4229 - imurmurhash@0.1.4: {} 4230 - 4231 - indent-string@5.0.0: {} 4232 2655 4233 2656 index-to-position@1.2.0: {} 4234 2657 ··· 4250 2673 resolve-workspace-root: 2.0.1 4251 2674 version-guard: 1.1.3 4252 2675 4253 - is-builtin-module@5.0.0: 4254 - dependencies: 4255 - builtin-modules: 5.2.0 4256 - 4257 2676 is-extglob@2.1.1: {} 4258 2677 4259 2678 is-fullwidth-code-point@3.0.0: {} ··· 4293 2712 dependencies: 4294 2713 argparse: 2.0.1 4295 2714 4296 - jsdoc-type-pratt-parser@7.1.1: {} 4297 - 4298 - jsdoc-type-pratt-parser@7.2.0: {} 4299 - 4300 - jsesc@3.1.0: {} 4301 - 4302 - json-buffer@3.0.1: {} 4303 - 4304 2715 json-parse-even-better-errors@3.0.2: {} 4305 2716 4306 - json-schema-traverse@0.4.1: {} 4307 - 4308 - json-stable-stringify-without-jsonify@1.0.1: {} 4309 - 4310 - jsonc-eslint-parser@3.1.0: 4311 - dependencies: 4312 - acorn: 8.16.0 4313 - eslint-visitor-keys: 5.0.1 4314 - semver: 7.8.5 4315 - 4316 - katex@0.16.47: 4317 - dependencies: 4318 - commander: 8.3.0 4319 - 4320 - keyv@4.5.4: 4321 - dependencies: 4322 - json-buffer: 3.0.1 4323 - 4324 2717 knip@6.26.0: 4325 2718 dependencies: 4326 2719 fdir: 6.5.0(picomatch@4.0.4) ··· 4336 2729 unbash: 4.0.1 4337 2730 yaml: 2.9.0 4338 2731 zod: 4.4.3 4339 - 4340 - levn@0.4.1: 4341 - dependencies: 4342 - prelude-ls: 1.2.1 4343 - type-check: 0.4.0 4344 2732 4345 2733 lightningcss-android-arm64@1.32.0: 4346 2734 optional: true ··· 4398 2786 read-pkg: 9.0.1 4399 2787 read-workspaces: 1.2.2 4400 2788 4401 - local-pkg@1.2.1: 4402 - dependencies: 4403 - mlly: 1.8.2 4404 - pkg-types: 2.3.1 4405 - quansync: 0.2.11 4406 - 4407 - locate-path@6.0.0: 4408 - dependencies: 4409 - p-locate: 5.0.0 4410 - 4411 - lodash.merge@4.6.2: {} 4412 - 4413 - longest-streak@3.1.0: {} 4414 - 4415 2789 lru-cache@10.4.3: {} 4416 2790 4417 2791 magic-string@0.30.21: ··· 4428 2802 dependencies: 4429 2803 semver: 7.8.5 4430 2804 4431 - markdown-table@3.0.4: {} 4432 - 4433 - mdast-util-find-and-replace@3.0.2: 4434 - dependencies: 4435 - '@types/mdast': 4.0.4 4436 - escape-string-regexp: 5.0.0 4437 - unist-util-is: 6.0.1 4438 - unist-util-visit-parents: 6.0.2 4439 - 4440 - mdast-util-from-markdown@2.0.3: 4441 - dependencies: 4442 - '@types/mdast': 4.0.4 4443 - '@types/unist': 3.0.3 4444 - decode-named-character-reference: 1.3.0 4445 - devlop: 1.1.0 4446 - mdast-util-to-string: 4.0.0 4447 - micromark: 4.0.2 4448 - micromark-util-decode-numeric-character-reference: 2.0.2 4449 - micromark-util-decode-string: 2.0.1 4450 - micromark-util-normalize-identifier: 2.0.1 4451 - micromark-util-symbol: 2.0.1 4452 - micromark-util-types: 2.0.2 4453 - unist-util-stringify-position: 4.0.0 4454 - transitivePeerDependencies: 4455 - - supports-color 4456 - 4457 - mdast-util-frontmatter@2.0.1: 4458 - dependencies: 4459 - '@types/mdast': 4.0.4 4460 - devlop: 1.1.0 4461 - escape-string-regexp: 5.0.0 4462 - mdast-util-from-markdown: 2.0.3 4463 - mdast-util-to-markdown: 2.1.2 4464 - micromark-extension-frontmatter: 2.0.0 4465 - transitivePeerDependencies: 4466 - - supports-color 4467 - 4468 - mdast-util-gfm-autolink-literal@2.0.1: 4469 - dependencies: 4470 - '@types/mdast': 4.0.4 4471 - ccount: 2.0.1 4472 - devlop: 1.1.0 4473 - mdast-util-find-and-replace: 3.0.2 4474 - micromark-util-character: 2.1.1 4475 - 4476 - mdast-util-gfm-footnote@2.1.0: 4477 - dependencies: 4478 - '@types/mdast': 4.0.4 4479 - devlop: 1.1.0 4480 - mdast-util-from-markdown: 2.0.3 4481 - mdast-util-to-markdown: 2.1.2 4482 - micromark-util-normalize-identifier: 2.0.1 4483 - transitivePeerDependencies: 4484 - - supports-color 4485 - 4486 - mdast-util-gfm-strikethrough@2.0.0: 4487 - dependencies: 4488 - '@types/mdast': 4.0.4 4489 - mdast-util-from-markdown: 2.0.3 4490 - mdast-util-to-markdown: 2.1.2 4491 - transitivePeerDependencies: 4492 - - supports-color 4493 - 4494 - mdast-util-gfm-table@2.0.0: 4495 - dependencies: 4496 - '@types/mdast': 4.0.4 4497 - devlop: 1.1.0 4498 - markdown-table: 3.0.4 4499 - mdast-util-from-markdown: 2.0.3 4500 - mdast-util-to-markdown: 2.1.2 4501 - transitivePeerDependencies: 4502 - - supports-color 4503 - 4504 - mdast-util-gfm-task-list-item@2.0.0: 4505 - dependencies: 4506 - '@types/mdast': 4.0.4 4507 - devlop: 1.1.0 4508 - mdast-util-from-markdown: 2.0.3 4509 - mdast-util-to-markdown: 2.1.2 4510 - transitivePeerDependencies: 4511 - - supports-color 4512 - 4513 - mdast-util-gfm@3.1.0: 4514 - dependencies: 4515 - mdast-util-from-markdown: 2.0.3 4516 - mdast-util-gfm-autolink-literal: 2.0.1 4517 - mdast-util-gfm-footnote: 2.1.0 4518 - mdast-util-gfm-strikethrough: 2.0.0 4519 - mdast-util-gfm-table: 2.0.0 4520 - mdast-util-gfm-task-list-item: 2.0.0 4521 - mdast-util-to-markdown: 2.1.2 4522 - transitivePeerDependencies: 4523 - - supports-color 4524 - 4525 - mdast-util-math@3.0.0: 4526 - dependencies: 4527 - '@types/hast': 3.0.4 4528 - '@types/mdast': 4.0.4 4529 - devlop: 1.1.0 4530 - longest-streak: 3.1.0 4531 - mdast-util-from-markdown: 2.0.3 4532 - mdast-util-to-markdown: 2.1.2 4533 - unist-util-remove-position: 5.0.0 4534 - transitivePeerDependencies: 4535 - - supports-color 4536 - 4537 - mdast-util-phrasing@4.1.0: 4538 - dependencies: 4539 - '@types/mdast': 4.0.4 4540 - unist-util-is: 6.0.1 4541 - 4542 - mdast-util-to-markdown@2.1.2: 4543 - dependencies: 4544 - '@types/mdast': 4.0.4 4545 - '@types/unist': 3.0.3 4546 - longest-streak: 3.1.0 4547 - mdast-util-phrasing: 4.1.0 4548 - mdast-util-to-string: 4.0.0 4549 - micromark-util-classify-character: 2.0.1 4550 - micromark-util-decode-string: 2.0.1 4551 - unist-util-visit: 5.1.0 4552 - zwitch: 2.0.4 4553 - 4554 - mdast-util-to-string@4.0.0: 4555 - dependencies: 4556 - '@types/mdast': 4.0.4 4557 - 4558 - micromark-core-commonmark@2.0.3: 4559 - dependencies: 4560 - decode-named-character-reference: 1.3.0 4561 - devlop: 1.1.0 4562 - micromark-factory-destination: 2.0.1 4563 - micromark-factory-label: 2.0.1 4564 - micromark-factory-space: 2.0.1 4565 - micromark-factory-title: 2.0.1 4566 - micromark-factory-whitespace: 2.0.1 4567 - micromark-util-character: 2.1.1 4568 - micromark-util-chunked: 2.0.1 4569 - micromark-util-classify-character: 2.0.1 4570 - micromark-util-html-tag-name: 2.0.1 4571 - micromark-util-normalize-identifier: 2.0.1 4572 - micromark-util-resolve-all: 2.0.1 4573 - micromark-util-subtokenize: 2.1.0 4574 - micromark-util-symbol: 2.0.1 4575 - micromark-util-types: 2.0.2 4576 - 4577 - micromark-extension-frontmatter@2.0.0: 4578 - dependencies: 4579 - fault: 2.0.1 4580 - micromark-util-character: 2.1.1 4581 - micromark-util-symbol: 2.0.1 4582 - micromark-util-types: 2.0.2 4583 - 4584 - micromark-extension-gfm-autolink-literal@2.1.0: 4585 - dependencies: 4586 - micromark-util-character: 2.1.1 4587 - micromark-util-sanitize-uri: 2.0.1 4588 - micromark-util-symbol: 2.0.1 4589 - micromark-util-types: 2.0.2 4590 - 4591 - micromark-extension-gfm-footnote@2.1.0: 4592 - dependencies: 4593 - devlop: 1.1.0 4594 - micromark-core-commonmark: 2.0.3 4595 - micromark-factory-space: 2.0.1 4596 - micromark-util-character: 2.1.1 4597 - micromark-util-normalize-identifier: 2.0.1 4598 - micromark-util-sanitize-uri: 2.0.1 4599 - micromark-util-symbol: 2.0.1 4600 - micromark-util-types: 2.0.2 4601 - 4602 - micromark-extension-gfm-strikethrough@2.1.0: 4603 - dependencies: 4604 - devlop: 1.1.0 4605 - micromark-util-chunked: 2.0.1 4606 - micromark-util-classify-character: 2.0.1 4607 - micromark-util-resolve-all: 2.0.1 4608 - micromark-util-symbol: 2.0.1 4609 - micromark-util-types: 2.0.2 4610 - 4611 - micromark-extension-gfm-table@2.1.1: 4612 - dependencies: 4613 - devlop: 1.1.0 4614 - micromark-factory-space: 2.0.1 4615 - micromark-util-character: 2.1.1 4616 - micromark-util-symbol: 2.0.1 4617 - micromark-util-types: 2.0.2 4618 - 4619 - micromark-extension-gfm-tagfilter@2.0.0: 4620 - dependencies: 4621 - micromark-util-types: 2.0.2 4622 - 4623 - micromark-extension-gfm-task-list-item@2.1.0: 4624 - dependencies: 4625 - devlop: 1.1.0 4626 - micromark-factory-space: 2.0.1 4627 - micromark-util-character: 2.1.1 4628 - micromark-util-symbol: 2.0.1 4629 - micromark-util-types: 2.0.2 4630 - 4631 - micromark-extension-gfm@3.0.0: 4632 - dependencies: 4633 - micromark-extension-gfm-autolink-literal: 2.1.0 4634 - micromark-extension-gfm-footnote: 2.1.0 4635 - micromark-extension-gfm-strikethrough: 2.1.0 4636 - micromark-extension-gfm-table: 2.1.1 4637 - micromark-extension-gfm-tagfilter: 2.0.0 4638 - micromark-extension-gfm-task-list-item: 2.1.0 4639 - micromark-util-combine-extensions: 2.0.1 4640 - micromark-util-types: 2.0.2 4641 - 4642 - micromark-extension-math@3.1.0: 4643 - dependencies: 4644 - '@types/katex': 0.16.8 4645 - devlop: 1.1.0 4646 - katex: 0.16.47 4647 - micromark-factory-space: 2.0.1 4648 - micromark-util-character: 2.1.1 4649 - micromark-util-symbol: 2.0.1 4650 - micromark-util-types: 2.0.2 4651 - 4652 - micromark-factory-destination@2.0.1: 4653 - dependencies: 4654 - micromark-util-character: 2.1.1 4655 - micromark-util-symbol: 2.0.1 4656 - micromark-util-types: 2.0.2 4657 - 4658 - micromark-factory-label@2.0.1: 4659 - dependencies: 4660 - devlop: 1.1.0 4661 - micromark-util-character: 2.1.1 4662 - micromark-util-symbol: 2.0.1 4663 - micromark-util-types: 2.0.2 4664 - 4665 - micromark-factory-space@2.0.1: 4666 - dependencies: 4667 - micromark-util-character: 2.1.1 4668 - micromark-util-types: 2.0.2 4669 - 4670 - micromark-factory-title@2.0.1: 4671 - dependencies: 4672 - micromark-factory-space: 2.0.1 4673 - micromark-util-character: 2.1.1 4674 - micromark-util-symbol: 2.0.1 4675 - micromark-util-types: 2.0.2 4676 - 4677 - micromark-factory-whitespace@2.0.1: 4678 - dependencies: 4679 - micromark-factory-space: 2.0.1 4680 - micromark-util-character: 2.1.1 4681 - micromark-util-symbol: 2.0.1 4682 - micromark-util-types: 2.0.2 4683 - 4684 - micromark-util-character@2.1.1: 4685 - dependencies: 4686 - micromark-util-symbol: 2.0.1 4687 - micromark-util-types: 2.0.2 4688 - 4689 - micromark-util-chunked@2.0.1: 4690 - dependencies: 4691 - micromark-util-symbol: 2.0.1 4692 - 4693 - micromark-util-classify-character@2.0.1: 4694 - dependencies: 4695 - micromark-util-character: 2.1.1 4696 - micromark-util-symbol: 2.0.1 4697 - micromark-util-types: 2.0.2 4698 - 4699 - micromark-util-combine-extensions@2.0.1: 4700 - dependencies: 4701 - micromark-util-chunked: 2.0.1 4702 - micromark-util-types: 2.0.2 4703 - 4704 - micromark-util-decode-numeric-character-reference@2.0.2: 4705 - dependencies: 4706 - micromark-util-symbol: 2.0.1 4707 - 4708 - micromark-util-decode-string@2.0.1: 4709 - dependencies: 4710 - decode-named-character-reference: 1.3.0 4711 - micromark-util-character: 2.1.1 4712 - micromark-util-decode-numeric-character-reference: 2.0.2 4713 - micromark-util-symbol: 2.0.1 4714 - 4715 - micromark-util-encode@2.0.1: {} 4716 - 4717 - micromark-util-html-tag-name@2.0.1: {} 4718 - 4719 - micromark-util-normalize-identifier@2.0.1: 4720 - dependencies: 4721 - micromark-util-symbol: 2.0.1 4722 - 4723 - micromark-util-resolve-all@2.0.1: 4724 - dependencies: 4725 - micromark-util-types: 2.0.2 4726 - 4727 - micromark-util-sanitize-uri@2.0.1: 4728 - dependencies: 4729 - micromark-util-character: 2.1.1 4730 - micromark-util-encode: 2.0.1 4731 - micromark-util-symbol: 2.0.1 4732 - 4733 - micromark-util-subtokenize@2.1.0: 4734 - dependencies: 4735 - devlop: 1.1.0 4736 - micromark-util-chunked: 2.0.1 4737 - micromark-util-symbol: 2.0.1 4738 - micromark-util-types: 2.0.2 4739 - 4740 - micromark-util-symbol@2.0.1: {} 4741 - 4742 - micromark-util-types@2.0.2: {} 4743 - 4744 - micromark@4.0.2: 4745 - dependencies: 4746 - '@types/debug': 4.1.13 4747 - debug: 4.4.3 4748 - decode-named-character-reference: 1.3.0 4749 - devlop: 1.1.0 4750 - micromark-core-commonmark: 2.0.3 4751 - micromark-factory-space: 2.0.1 4752 - micromark-util-character: 2.1.1 4753 - micromark-util-chunked: 2.0.1 4754 - micromark-util-combine-extensions: 2.0.1 4755 - micromark-util-decode-numeric-character-reference: 2.0.2 4756 - micromark-util-encode: 2.0.1 4757 - micromark-util-normalize-identifier: 2.0.1 4758 - micromark-util-resolve-all: 2.0.1 4759 - micromark-util-sanitize-uri: 2.0.1 4760 - micromark-util-subtokenize: 2.1.0 4761 - micromark-util-symbol: 2.0.1 4762 - micromark-util-types: 2.0.2 4763 - transitivePeerDependencies: 4764 - - supports-color 4765 - 4766 - minimatch@10.2.5: 4767 - dependencies: 4768 - brace-expansion: 5.0.6 4769 - 4770 2805 minimatch@9.0.9: 4771 2806 dependencies: 4772 2807 brace-expansion: 2.1.1 ··· 4774 2809 minipass@7.1.3: {} 4775 2810 4776 2811 mitata@1.0.34: {} 4777 - 4778 - mlly@1.8.2: 4779 - dependencies: 4780 - acorn: 8.16.0 4781 - pathe: 2.0.3 4782 - pkg-types: 1.3.1 4783 - ufo: 1.6.4 4784 - 4785 - module-replacements@3.0.0-beta.8: {} 4786 - 4787 - ms@2.1.3: {} 4788 2812 4789 2813 murmurhash@2.0.1: {} 4790 2814 ··· 4792 2816 4793 2817 nanoid@3.3.12: {} 4794 2818 4795 - natural-compare@1.4.0: {} 4796 - 4797 - natural-orderby@5.0.0: {} 4798 - 4799 - node-releases@2.0.47: {} 4800 - 4801 2819 normalize-package-data@6.0.2: 4802 2820 dependencies: 4803 2821 hosted-git-info: 7.0.2 ··· 4806 2824 4807 2825 npm-normalize-package-bin@3.0.1: {} 4808 2826 4809 - nth-check@2.1.1: 4810 - dependencies: 4811 - boolbase: 1.0.0 4812 - 4813 - object-deep-merge@2.0.1: {} 4814 - 4815 2827 obug@2.1.3: {} 4816 - 4817 - optionator@0.9.4: 4818 - dependencies: 4819 - deep-is: 0.1.4 4820 - fast-levenshtein: 2.0.6 4821 - levn: 0.4.1 4822 - prelude-ls: 1.2.1 4823 - type-check: 0.4.0 4824 - word-wrap: 1.2.5 4825 2828 4826 2829 oxc-parser@0.137.0: 4827 2830 dependencies: ··· 4870 2873 '@oxc-resolver/binding-win32-arm64-msvc': 11.21.3 4871 2874 '@oxc-resolver/binding-win32-x64-msvc': 11.21.3 4872 2875 4873 - p-limit@3.1.0: 4874 - dependencies: 4875 - yocto-queue: 0.1.0 2876 + oxlint-tsgolint@0.24.0: 2877 + optionalDependencies: 2878 + '@oxlint-tsgolint/darwin-arm64': 0.24.0 2879 + '@oxlint-tsgolint/darwin-x64': 0.24.0 2880 + '@oxlint-tsgolint/linux-arm64': 0.24.0 2881 + '@oxlint-tsgolint/linux-x64': 0.24.0 2882 + '@oxlint-tsgolint/win32-arm64': 0.24.0 2883 + '@oxlint-tsgolint/win32-x64': 0.24.0 4876 2884 4877 - p-locate@5.0.0: 4878 - dependencies: 4879 - p-limit: 3.1.0 2885 + oxlint@1.74.0(oxlint-tsgolint@0.24.0): 2886 + optionalDependencies: 2887 + '@oxlint/binding-android-arm-eabi': 1.74.0 2888 + '@oxlint/binding-android-arm64': 1.74.0 2889 + '@oxlint/binding-darwin-arm64': 1.74.0 2890 + '@oxlint/binding-darwin-x64': 1.74.0 2891 + '@oxlint/binding-freebsd-x64': 1.74.0 2892 + '@oxlint/binding-linux-arm-gnueabihf': 1.74.0 2893 + '@oxlint/binding-linux-arm-musleabihf': 1.74.0 2894 + '@oxlint/binding-linux-arm64-gnu': 1.74.0 2895 + '@oxlint/binding-linux-arm64-musl': 1.74.0 2896 + '@oxlint/binding-linux-ppc64-gnu': 1.74.0 2897 + '@oxlint/binding-linux-riscv64-gnu': 1.74.0 2898 + '@oxlint/binding-linux-riscv64-musl': 1.74.0 2899 + '@oxlint/binding-linux-s390x-gnu': 1.74.0 2900 + '@oxlint/binding-linux-x64-gnu': 1.74.0 2901 + '@oxlint/binding-linux-x64-musl': 1.74.0 2902 + '@oxlint/binding-openharmony-arm64': 1.74.0 2903 + '@oxlint/binding-win32-arm64-msvc': 1.74.0 2904 + '@oxlint/binding-win32-ia32-msvc': 1.74.0 2905 + '@oxlint/binding-win32-x64-msvc': 1.74.0 2906 + oxlint-tsgolint: 0.24.0 4880 2907 4881 2908 package-json-from-dist@1.0.1: {} 4882 2909 4883 - package-manager-detector@1.6.0: {} 4884 - 4885 - parse-gitignore@2.0.0: {} 4886 - 4887 - parse-imports-exports@0.2.4: 4888 - dependencies: 4889 - parse-statements: 1.0.11 4890 - 4891 2910 parse-json@8.3.0: 4892 2911 dependencies: 4893 2912 '@babel/code-frame': 7.29.7 4894 2913 index-to-position: 1.2.0 4895 2914 type-fest: 4.41.0 4896 - 4897 - parse-statements@1.0.11: {} 4898 - 4899 - path-exists@4.0.0: {} 4900 2915 4901 2916 path-key@3.1.1: {} 4902 2917 ··· 4915 2930 4916 2931 picomatch@4.0.5: {} 4917 2932 4918 - pkg-types@1.3.1: 4919 - dependencies: 4920 - confbox: 0.1.8 4921 - mlly: 1.8.2 4922 - pathe: 2.0.3 4923 - 4924 - pkg-types@2.3.1: 4925 - dependencies: 4926 - confbox: 0.2.4 4927 - exsolve: 1.0.8 4928 - pathe: 2.0.3 4929 - 4930 - pluralize@8.0.0: {} 4931 - 4932 - pnpm-workspace-yaml@1.6.1: 4933 - dependencies: 4934 - yaml: 2.9.0 4935 - 4936 2933 pony-cause@2.1.11: {} 4937 2934 4938 - postcss-selector-parser@7.1.1: 4939 - dependencies: 4940 - cssesc: 3.0.0 4941 - util-deprecate: 1.0.2 4942 - 4943 2935 postcss@8.5.15: 4944 2936 dependencies: 4945 2937 nanoid: 3.3.12 4946 2938 picocolors: 1.1.1 4947 2939 source-map-js: 1.2.1 4948 2940 4949 - prelude-ls@1.2.1: {} 4950 - 4951 - punycode@2.3.1: {} 4952 - 4953 - quansync@0.2.11: {} 4954 - 4955 2941 quansync@1.0.0: {} 4956 2942 4957 2943 read-package-json-fast@3.0.2: ··· 4978 2964 js-yaml: 4.2.0 4979 2965 strip-bom: 4.0.0 4980 2966 4981 - refa@0.12.1: 4982 - dependencies: 4983 - '@eslint-community/regexpp': 4.12.2 4984 - 4985 - regexp-ast-analysis@0.7.1: 4986 - dependencies: 4987 - '@eslint-community/regexpp': 4.12.2 4988 - refa: 0.12.1 4989 - 4990 - regjsparser@0.13.1: 4991 - dependencies: 4992 - jsesc: 3.1.0 4993 - 4994 - reserved-identifiers@1.2.0: {} 4995 - 4996 2967 resolve-pkg-maps@1.0.0: {} 4997 2968 4998 2969 resolve-workspace-root@2.0.1: {} 4999 2970 5000 - rolldown-plugin-dts@0.27.9(oxc-resolver@11.21.3)(rolldown@1.1.5)(typescript@6.0.3): 2971 + rolldown-plugin-dts@0.27.9(oxc-resolver@11.21.3)(rolldown@1.1.5)(typescript@7.0.2): 5001 2972 dependencies: 5002 2973 dts-resolver: 3.0.0(oxc-resolver@11.21.3) 5003 2974 get-tsconfig: 5.0.0-beta.5 ··· 5007 2978 yuku-codegen: 0.6.1 5008 2979 yuku-parser: 0.6.1 5009 2980 optionalDependencies: 5010 - typescript: 6.0.3 2981 + typescript: 7.0.2 5011 2982 transitivePeerDependencies: 5012 2983 - oxc-resolver 5013 2984 ··· 5053 3024 '@rolldown/binding-win32-arm64-msvc': 1.1.5 5054 3025 '@rolldown/binding-win32-x64-msvc': 1.1.5 5055 3026 5056 - scslre@0.3.0: 5057 - dependencies: 5058 - '@eslint-community/regexpp': 4.12.2 5059 - refa: 0.12.1 5060 - regexp-ast-analysis: 0.7.1 5061 - 5062 3027 semver@7.8.5: {} 5063 3028 5064 3029 shebang-command@2.0.0: ··· 5073 3038 5074 3039 simple-git-hooks@2.13.1: {} 5075 3040 5076 - sisteransi@1.0.5: {} 5077 - 5078 3041 smol-toml@1.6.1: {} 5079 3042 5080 3043 source-map-js@1.2.1: {} ··· 5091 3054 spdx-exceptions: 2.5.0 5092 3055 spdx-license-ids: 3.0.23 5093 3056 5094 - spdx-expression-parse@4.0.0: 5095 - dependencies: 5096 - spdx-exceptions: 2.5.0 5097 - spdx-license-ids: 3.0.23 5098 - 5099 3057 spdx-license-ids@3.0.23: {} 5100 3058 5101 3059 stackback@0.0.2: {} ··· 5124 3082 5125 3083 strip-bom@4.0.0: {} 5126 3084 5127 - strip-indent@4.1.1: {} 5128 - 5129 3085 strip-json-comments@5.0.3: {} 5130 3086 5131 3087 supports-color@7.2.0: 5132 3088 dependencies: 5133 3089 has-flag: 4.0.0 5134 3090 5135 - synckit@0.11.13: 5136 - dependencies: 5137 - '@pkgr/core': 0.3.6 5138 - 5139 - tapable@2.3.3: {} 5140 - 5141 3091 tinybench@2.9.0: {} 5142 3092 5143 3093 tinyexec@1.2.4: {} 5144 3094 5145 3095 tinyglobby@0.2.17: 5146 3096 dependencies: 5147 - fdir: 6.5.0(picomatch@4.0.4) 5148 - picomatch: 4.0.4 3097 + fdir: 6.5.0(picomatch@4.0.5) 3098 + picomatch: 4.0.5 5149 3099 5150 3100 tinyrainbow@3.1.0: {} 5151 3101 5152 - to-valid-identifier@1.0.0: 5153 - dependencies: 5154 - '@sindresorhus/base62': 1.0.0 5155 - reserved-identifiers: 1.2.0 5156 - 5157 - toml-eslint-parser@1.0.3: 5158 - dependencies: 5159 - eslint-visitor-keys: 5.0.1 5160 - 5161 3102 tree-kill@1.2.2: {} 5162 3103 5163 - ts-api-utils@2.5.0(typescript@6.0.3): 5164 - dependencies: 5165 - typescript: 6.0.3 5166 - 5167 - tsdown@0.22.7(oxc-resolver@11.21.3)(typescript@6.0.3): 3104 + tsdown@0.22.7(oxc-resolver@11.21.3)(typescript@7.0.2): 5168 3105 dependencies: 5169 3106 ansis: 4.3.1 5170 3107 cac: 7.0.0 ··· 5175 3112 obug: 2.1.3 5176 3113 picomatch: 4.0.5 5177 3114 rolldown: 1.1.5 5178 - rolldown-plugin-dts: 0.27.9(oxc-resolver@11.21.3)(rolldown@1.1.5)(typescript@6.0.3) 3115 + rolldown-plugin-dts: 0.27.9(oxc-resolver@11.21.3)(rolldown@1.1.5)(typescript@7.0.2) 5179 3116 semver: 7.8.5 5180 3117 tinyexec: 1.2.4 5181 3118 tinyglobby: 0.2.17 5182 3119 tree-kill: 1.2.2 5183 3120 unconfig-core: 7.5.0 5184 3121 optionalDependencies: 5185 - typescript: 6.0.3 3122 + typescript: 7.0.2 5186 3123 transitivePeerDependencies: 5187 3124 - '@ts-macro/tsc' 5188 3125 - '@typescript/native-preview' ··· 5192 3129 tslib@2.8.1: 5193 3130 optional: true 5194 3131 5195 - type-check@0.4.0: 5196 - dependencies: 5197 - prelude-ls: 1.2.1 5198 - 5199 3132 type-fest@4.41.0: {} 5200 3133 5201 - typescript@6.0.3: {} 5202 - 5203 - ufo@1.6.4: {} 3134 + typescript@7.0.2: 3135 + optionalDependencies: 3136 + '@typescript/typescript-aix-ppc64': 7.0.2 3137 + '@typescript/typescript-darwin-arm64': 7.0.2 3138 + '@typescript/typescript-darwin-x64': 7.0.2 3139 + '@typescript/typescript-freebsd-arm64': 7.0.2 3140 + '@typescript/typescript-freebsd-x64': 7.0.2 3141 + '@typescript/typescript-linux-arm': 7.0.2 3142 + '@typescript/typescript-linux-arm64': 7.0.2 3143 + '@typescript/typescript-linux-loong64': 7.0.2 3144 + '@typescript/typescript-linux-mips64el': 7.0.2 3145 + '@typescript/typescript-linux-ppc64': 7.0.2 3146 + '@typescript/typescript-linux-riscv64': 7.0.2 3147 + '@typescript/typescript-linux-s390x': 7.0.2 3148 + '@typescript/typescript-linux-x64': 7.0.2 3149 + '@typescript/typescript-netbsd-arm64': 7.0.2 3150 + '@typescript/typescript-netbsd-x64': 7.0.2 3151 + '@typescript/typescript-openbsd-arm64': 7.0.2 3152 + '@typescript/typescript-openbsd-x64': 7.0.2 3153 + '@typescript/typescript-sunos-x64': 7.0.2 3154 + '@typescript/typescript-win32-arm64': 7.0.2 3155 + '@typescript/typescript-win32-x64': 7.0.2 5204 3156 5205 3157 unbash@4.0.1: {} 5206 3158 ··· 5209 3161 '@quansync/fs': 1.0.0 5210 3162 quansync: 1.0.0 5211 3163 5212 - unicorn-magic@0.1.0: {} 5213 - 5214 - unist-util-is@6.0.1: 5215 - dependencies: 5216 - '@types/unist': 3.0.3 5217 - 5218 - unist-util-remove-position@5.0.0: 5219 - dependencies: 5220 - '@types/unist': 3.0.3 5221 - unist-util-visit: 5.1.0 5222 - 5223 - unist-util-stringify-position@4.0.0: 5224 - dependencies: 5225 - '@types/unist': 3.0.3 5226 - 5227 - unist-util-visit-parents@6.0.2: 5228 - dependencies: 5229 - '@types/unist': 3.0.3 5230 - unist-util-is: 6.0.1 5231 - 5232 - unist-util-visit@5.1.0: 5233 - dependencies: 5234 - '@types/unist': 3.0.3 5235 - unist-util-is: 6.0.1 5236 - unist-util-visit-parents: 6.0.2 5237 - 5238 - update-browserslist-db@1.2.3(browserslist@4.28.2): 5239 - dependencies: 5240 - browserslist: 4.28.2 5241 - escalade: 3.2.0 5242 - picocolors: 1.1.1 5243 - 5244 - uri-js@4.4.1: 5245 - dependencies: 5246 - punycode: 2.3.1 3164 + undici-types@8.3.0: {} 5247 3165 5248 - util-deprecate@1.0.2: {} 3166 + unicorn-magic@0.1.0: {} 5249 3167 5250 3168 validate-npm-package-license@3.0.4: 5251 3169 dependencies: ··· 5254 3172 5255 3173 version-guard@1.1.3: {} 5256 3174 5257 - vite@8.0.16(jiti@2.7.0)(yaml@2.9.0): 3175 + vite@8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0): 5258 3176 dependencies: 5259 3177 lightningcss: 1.32.0 5260 - picomatch: 4.0.4 3178 + picomatch: 4.0.5 5261 3179 postcss: 8.5.15 5262 3180 rolldown: 1.0.3 5263 3181 tinyglobby: 0.2.17 5264 3182 optionalDependencies: 3183 + '@types/node': 26.1.1 5265 3184 fsevents: 2.3.3 5266 3185 jiti: 2.7.0 5267 3186 yaml: 2.9.0 5268 3187 5269 - vitest@4.1.10(@vitest/coverage-v8@4.1.10)(vite@8.0.16(jiti@2.7.0)(yaml@2.9.0)): 3188 + vitest@4.1.10(@types/node@26.1.1)(@vitest/coverage-v8@4.1.10)(vite@8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0)): 5270 3189 dependencies: 5271 3190 '@vitest/expect': 4.1.10 5272 - '@vitest/mocker': 4.1.10(vite@8.0.16(jiti@2.7.0)(yaml@2.9.0)) 3191 + '@vitest/mocker': 4.1.10(vite@8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0)) 5273 3192 '@vitest/pretty-format': 4.1.10 5274 3193 '@vitest/runner': 4.1.10 5275 3194 '@vitest/snapshot': 4.1.10 ··· 5286 3205 tinyexec: 1.2.4 5287 3206 tinyglobby: 0.2.17 5288 3207 tinyrainbow: 3.1.0 5289 - vite: 8.0.16(jiti@2.7.0)(yaml@2.9.0) 3208 + vite: 8.0.16(@types/node@26.1.1)(jiti@2.7.0)(yaml@2.9.0) 5290 3209 why-is-node-running: 2.3.0 5291 3210 optionalDependencies: 3211 + '@types/node': 26.1.1 5292 3212 '@vitest/coverage-v8': 4.1.10(vitest@4.1.10) 5293 3213 transitivePeerDependencies: 5294 3214 - msw 5295 3215 5296 - vue-eslint-parser@10.4.1(eslint@10.7.0(jiti@2.7.0)): 5297 - dependencies: 5298 - debug: 4.4.3 5299 - eslint: 10.7.0(jiti@2.7.0) 5300 - eslint-scope: 9.1.2 5301 - eslint-visitor-keys: 5.0.1 5302 - espree: 11.2.0 5303 - esquery: 1.7.0 5304 - semver: 7.8.5 5305 - transitivePeerDependencies: 5306 - - supports-color 5307 - 5308 3216 walk-up-path@4.0.0: {} 5309 3217 5310 3218 which@2.0.2: ··· 5316 3224 siginfo: 2.0.0 5317 3225 stackback: 0.0.2 5318 3226 5319 - word-wrap@1.2.5: {} 5320 - 5321 3227 wrap-ansi@7.0.0: 5322 3228 dependencies: 5323 3229 ansi-styles: 4.3.0 ··· 5330 3236 string-width: 5.1.2 5331 3237 strip-ansi: 7.2.0 5332 3238 5333 - xml-name-validator@4.0.0: {} 5334 - 5335 3239 xxhashjs@0.2.2: 5336 3240 dependencies: 5337 3241 cuint: 0.2.2 5338 3242 5339 - yaml-eslint-parser@2.0.0: 5340 - dependencies: 5341 - eslint-visitor-keys: 5.0.1 5342 - yaml: 2.9.0 5343 - 5344 3243 yaml@2.9.0: {} 5345 - 5346 - yocto-queue@0.1.0: {} 5347 3244 5348 3245 yuku-ast@0.1.7: 5349 3246 dependencies: ··· 5382 3279 '@yuku-parser/binding-win32-x64': 0.6.1 5383 3280 5384 3281 zod@4.4.3: {} 5385 - 5386 - zwitch@2.0.4: {}