[READ-ONLY] Mirror of https://github.com/bombshell-dev/playground.
0

Configure Feed

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

initial commit

Nate Moore (Jun 23, 2026, 6:33 PM EDT) bb921b70

+2675
.github/workflows/.gitkeep

This is a binary file and will not be displayed.

+13
.github/workflows/format.yml
··· 1 + name: Format 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + branches: 7 + - main 8 + 9 + jobs: 10 + format: 11 + if: github.repository_owner == 'bombshell-dev' 12 + uses: bombshell-dev/automation/.github/workflows/format.yml@main 13 + secrets: inherit
+70
.gitignore
··· 1 + # build artifacts 2 + dist 3 + 4 + # macOS specific files 5 + .DS_Store 6 + 7 + # Logs 8 + logs 9 + *.log 10 + npm-debug.log* 11 + yarn-debug.log* 12 + yarn-error.log* 13 + lerna-debug.log* 14 + .pnpm-debug.log* 15 + 16 + # Diagnostic reports (https://nodejs.org/api/report.html) 17 + report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 18 + 19 + # Runtime data 20 + pids 21 + *.pid 22 + *.seed 23 + *.pid.lock 24 + 25 + # node-waf configuration 26 + .lock-wscript 27 + 28 + # Compiled binary addons (https://nodejs.org/api/addons.html) 29 + build/Release 30 + 31 + # Dependency directories 32 + node_modules/ 33 + jspm_packages/ 34 + 35 + # TypeScript cache 36 + *.tsbuildinfo 37 + 38 + # Optional npm cache directory 39 + .npm 40 + 41 + # Microbundle cache 42 + .rpt2_cache/ 43 + .rts2_cache_cjs/ 44 + .rts2_cache_es/ 45 + .rts2_cache_umd/ 46 + 47 + # Optional REPL history 48 + .node_repl_history 49 + 50 + # Output of 'npm pack' 51 + *.tgz 52 + 53 + # Yarn files 54 + .yarn 55 + .pnp.* 56 + .yarn-integrity 57 + 58 + # dotenv environment variable files 59 + .env 60 + .env.development.local 61 + .env.test.local 62 + .env.production.local 63 + .env.local 64 + 65 + # common cache locations 66 + .cache 67 + .temp 68 + 69 + # Stores VSCode versions used for testing VSCode extensions 70 + .vscode-test
+21
LICENSE
··· 1 + MIT License Copyright (c) 2026-Present [Bombshell contributors](https://bomb.sh/team) 2 + 3 + Permission is hereby granted, free of 4 + charge, to any person obtaining a copy of this software and associated 5 + documentation files (the "Software"), to deal in the Software without 6 + restriction, including without limitation the rights to use, copy, modify, merge, 7 + publish, distribute, sublicense, and/or sell copies of the Software, and to 8 + permit persons to whom the Software is furnished to do so, subject to the 9 + following conditions: 10 + 11 + The above copyright notice and this permission notice 12 + (including the next paragraph) shall be included in all copies or substantial 13 + portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 16 + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 18 + EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 + THE SOFTWARE.
+22
README.md
··· 1 + # `@bomb.sh/playground` 2 + 3 + ## Install 4 + 5 + You can install `@bomb.sh/playground` manually by running this command: 6 + 7 + ```sh 8 + npm install @bomb.sh/playground 9 + ``` 10 + 11 + Looking for help? Start with our [Getting Started][docs] guide. 12 + 13 + ## Documentation 14 + 15 + Visit our [official documentation][docs]. 16 + 17 + ## Support 18 + 19 + Having trouble? Get help in the official [Bombshell Discord][discord]. 20 + 21 + [docs]: https://bomb.sh/docs/playground 22 + [discord]: https://bomb.sh/chat
+51
package.json
··· 1 + { 2 + "name": "@bomb.sh/playground", 3 + "version": "0.0.0", 4 + "type": "module", 5 + "license": "MIT", 6 + "author": { 7 + "name": "Bombshell", 8 + "email": "oss@bomb.sh", 9 + "url": "https://bomb.sh" 10 + }, 11 + "homepage": "https://bomb.sh/docs/playground", 12 + "keywords": [ 13 + "cli", 14 + "bombshell" 15 + ], 16 + "exports": { 17 + ".": { 18 + "import": "./dist/index.js" 19 + }, 20 + "./package.json": "./package.json" 21 + }, 22 + "scripts": { 23 + "dev": "bsh dev", 24 + "build": "bsh build", 25 + "format": "bsh format", 26 + "lint": "bsh lint", 27 + "test": "bsh test" 28 + }, 29 + "devDependencies": { 30 + "@bomb.sh/tools": "latest" 31 + }, 32 + "publishConfig": { 33 + "access": "public" 34 + }, 35 + "repository": { 36 + "type": "git", 37 + "url": "git+https://github.com/bombshell-dev/playground.git" 38 + }, 39 + "devEngines": { 40 + "runtime": { 41 + "name": "node", 42 + "version": "22.14.0", 43 + "onFail": "error" 44 + }, 45 + "packageManager": { 46 + "name": "pnpm", 47 + "version": "10.7.0", 48 + "onFail": "error" 49 + } 50 + } 51 + }
+49
packages/demo/package.json
··· 1 + { 2 + "name": "demo", 3 + "version": "0.0.0", 4 + "private": true, 5 + "type": "module", 6 + "license": "MIT", 7 + "author": { 8 + "name": "Bombshell", 9 + "email": "oss@bomb.sh", 10 + "url": "https://bomb.sh" 11 + }, 12 + "exports": { 13 + ".": { 14 + "import": "./dist/index.js" 15 + }, 16 + "./package.json": "./package.json" 17 + }, 18 + "scripts": { 19 + "dev": "bsh dev", 20 + "build": "bsh build", 21 + "format": "bsh format", 22 + "lint": "bsh lint", 23 + "test": "bsh test" 24 + }, 25 + "dependencies": { 26 + "@bomb.sh/tty": "latest", 27 + "@types/node": "^26.0.0" 28 + }, 29 + "devDependencies": { 30 + "@bomb.sh/tools": "latest" 31 + }, 32 + "repository": { 33 + "type": "git", 34 + "url": "git+https://github.com/bombshell-dev/playground.git", 35 + "directory": "packages/demo" 36 + }, 37 + "devEngines": { 38 + "runtime": { 39 + "name": "node", 40 + "version": "22.14.0", 41 + "onFail": "error" 42 + }, 43 + "packageManager": { 44 + "name": "pnpm", 45 + "version": "10.7.0", 46 + "onFail": "error" 47 + } 48 + } 49 + }
+14
packages/demo/src/index.ts
··· 1 + import { open, close, createTerm, grow, text } from "@bomb.sh/tty"; 2 + import { stdout } from 'node:process'; 3 + 4 + async function run () { 5 + const term = await createTerm({ width: stdout.columns, height: stdout.rows }); 6 + const result = term.render([ 7 + open('root', { layout: { width: grow(), height: grow(), alignX: 'center', alignY: 'center' }}), 8 + text('Hello world!'), 9 + close() 10 + ]) 11 + stdout.write(result.output); 12 + } 13 + 14 + run();
+10
packages/demo/tsconfig.json
··· 1 + { 2 + "extends": [ 3 + "@bomb.sh/tools/tsconfig.json" 4 + ], 5 + "compilerOptions": { 6 + "types": [ 7 + "node" 8 + ] 9 + } 10 + }
+2420
pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: 10 + devDependencies: 11 + '@bomb.sh/tools': 12 + specifier: latest 13 + version: 0.5.3(@types/node@26.0.0)(oxc-resolver@11.21.3)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0)) 14 + 15 + packages/demo: 16 + dependencies: 17 + '@bomb.sh/tty': 18 + specifier: latest 19 + version: 0.7.0 20 + '@types/node': 21 + specifier: ^26.0.0 22 + version: 26.0.0 23 + devDependencies: 24 + '@bomb.sh/tools': 25 + specifier: latest 26 + version: 0.5.3(@types/node@26.0.0)(oxc-resolver@11.21.3)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0)) 27 + 28 + packages: 29 + 30 + '@babel/generator@8.0.0-rc.3': 31 + resolution: {integrity: sha512-em37/13/nR320G4jab/nIIHZgc2Wz2y/D39lxnTyxB4/D/omPQncl/lSdlnJY1OhQcRGugTSIF2l/69o31C9dA==} 32 + engines: {node: ^20.19.0 || >=22.12.0} 33 + 34 + '@babel/helper-string-parser@8.0.0': 35 + resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==} 36 + engines: {node: ^22.18.0 || >=24.11.0} 37 + 38 + '@babel/helper-validator-identifier@8.0.0-rc.3': 39 + resolution: {integrity: sha512-8AWCJ2VJJyDFlGBep5GpaaQ9AAaE/FjAcrqI7jyssYhtL7WGV0DOKpJsQqM037xDbpRLHXsY8TwU7zDma7coOw==} 40 + engines: {node: ^20.19.0 || >=22.12.0} 41 + 42 + '@babel/helper-validator-identifier@8.0.2': 43 + resolution: {integrity: sha512-9Fr9QeyCAyi1BR1jKZ6uYQ24EIhQUx5ReHfQU7drOE+TPOb+w11/dsqLkMOT2U29OdCT71XajrOT8xDc1C7orA==} 44 + engines: {node: ^22.18.0 || >=24.11.0} 45 + 46 + '@babel/parser@8.0.0': 47 + resolution: {integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ==} 48 + engines: {node: ^22.18.0 || >=24.11.0} 49 + hasBin: true 50 + 51 + '@babel/parser@8.0.0-rc.3': 52 + resolution: {integrity: sha512-B20dvP3MfNc/XS5KKCHy/oyWl5IA6Cn9YjXRdDlCjNmUFrjvLXMNUfQq/QUy9fnG2gYkKKcrto2YaF9B32ToOQ==} 53 + engines: {node: ^20.19.0 || >=22.12.0} 54 + hasBin: true 55 + 56 + '@babel/types@8.0.0': 57 + resolution: {integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw==} 58 + engines: {node: ^22.18.0 || >=24.11.0} 59 + 60 + '@babel/types@8.0.0-rc.3': 61 + resolution: {integrity: sha512-mOm5ZrYmphGfqVWoH5YYMTITb3cDXsFgmvFlvkvWDMsR9X8RFnt7a0Wb6yNIdoFsiMO9WjYLq+U/FMtqIYAF8Q==} 62 + engines: {node: ^20.19.0 || >=22.12.0} 63 + 64 + '@bomb.sh/args@0.3.1': 65 + resolution: {integrity: sha512-CwxKrfgcorUPP6KfYD59aRdBYWBTsfsxT+GmoLVnKo5Tmyoqbpo0UNcjngRMyU+6tiPbd18RuIYxhgAn44wU/Q==} 66 + 67 + '@bomb.sh/tools@0.5.3': 68 + resolution: {integrity: sha512-665My/wDcVUKFWGy4O4MP6LfuCxd8dITRfahc2UIpufq5wtqJ+1MWuNDkMFpC6jY7/GWOWG11urB1v2KkV2Jtg==} 69 + hasBin: true 70 + 71 + '@bomb.sh/tty@0.7.0': 72 + resolution: {integrity: sha512-htTavc3o84vR6uSoyF+Y9u81GG8NoTJkwOovahcNOY4nVeiM86vodCHdPvAXoj2ucmx04frpwMrOJ4ipLSSJfw==} 73 + engines: {node: '>= 22'} 74 + 75 + '@emnapi/core@1.10.0': 76 + resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} 77 + 78 + '@emnapi/core@1.11.0': 79 + resolution: {integrity: sha512-l9Oo58x0HOP5znGzVhYW9U3e5wVuA4LAZU2AGezTmkhO1CgQRFDhDg4nneHsu/t3WniXg9QrG2nIXL/ZS8ln8Q==} 80 + 81 + '@emnapi/core@1.11.1': 82 + resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} 83 + 84 + '@emnapi/runtime@1.10.0': 85 + resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==} 86 + 87 + '@emnapi/runtime@1.11.0': 88 + resolution: {integrity: sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==} 89 + 90 + '@emnapi/runtime@1.11.1': 91 + resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} 92 + 93 + '@emnapi/wasi-threads@1.2.1': 94 + resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} 95 + 96 + '@emnapi/wasi-threads@1.2.2': 97 + resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} 98 + 99 + '@humanfs/core@0.19.2': 100 + resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} 101 + engines: {node: '>=18.18.0'} 102 + 103 + '@humanfs/node@0.16.8': 104 + resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==} 105 + engines: {node: '>=18.18.0'} 106 + 107 + '@humanfs/types@0.15.0': 108 + resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==} 109 + engines: {node: '>=18.18.0'} 110 + 111 + '@humanwhocodes/retry@0.4.3': 112 + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} 113 + engines: {node: '>=18.18'} 114 + 115 + '@jridgewell/gen-mapping@0.3.13': 116 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 117 + 118 + '@jridgewell/resolve-uri@3.1.2': 119 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 120 + engines: {node: '>=6.0.0'} 121 + 122 + '@jridgewell/sourcemap-codec@1.5.5': 123 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 124 + 125 + '@jridgewell/trace-mapping@0.3.31': 126 + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 127 + 128 + '@napi-rs/wasm-runtime@1.1.5': 129 + resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==} 130 + peerDependencies: 131 + '@emnapi/core': ^1.7.1 132 + '@emnapi/runtime': ^1.7.1 133 + 134 + '@oxc-parser/binding-android-arm-eabi@0.137.0': 135 + resolution: {integrity: sha512-KDs+0VPdEmasOkpuJHW9V5WCF+cvYdMQv2Jd+aJXt+cxIx12NToRQRbXaRwUEDsZw+/jMk81Ve8ZFbjUkJTOwA==} 136 + engines: {node: ^20.19.0 || >=22.12.0} 137 + cpu: [arm] 138 + os: [android] 139 + 140 + '@oxc-parser/binding-android-arm64@0.137.0': 141 + resolution: {integrity: sha512-WhALNzfy3x/RfC6bsqX+csavuUY0yHHE7XfgPE5M542uhoBZUUoGTPG+nkMbGoG4+gcfss5s7urMyn5QBHu0sw==} 142 + engines: {node: ^20.19.0 || >=22.12.0} 143 + cpu: [arm64] 144 + os: [android] 145 + 146 + '@oxc-parser/binding-darwin-arm64@0.137.0': 147 + resolution: {integrity: sha512-bFPr5hgmNMOMoyPTGtdsK4Ug21RovIPojRMgDDhSp1LtCnc/DkLwGONKjgRjszg677RlGnkYSviQ8hHaUPOVYA==} 148 + engines: {node: ^20.19.0 || >=22.12.0} 149 + cpu: [arm64] 150 + os: [darwin] 151 + 152 + '@oxc-parser/binding-darwin-x64@0.137.0': 153 + resolution: {integrity: sha512-CL5dMm1asqXIDZHg14FLxj3Mc36w8PI7xCWh1uA4is6z8g2XrIILoTcQYOxDbwzuk34RDPX5IAGUxZr6LA9KAg==} 154 + engines: {node: ^20.19.0 || >=22.12.0} 155 + cpu: [x64] 156 + os: [darwin] 157 + 158 + '@oxc-parser/binding-freebsd-x64@0.137.0': 159 + resolution: {integrity: sha512-79h8rYGnSlKPGWo7mHr2ixO6ea7aW8B0CT965SZ8SLbNnCOH5aOYBTeVXUY6eMvEaiLyWr8Skuiugr5pDYgLGw==} 160 + engines: {node: ^20.19.0 || >=22.12.0} 161 + cpu: [x64] 162 + os: [freebsd] 163 + 164 + '@oxc-parser/binding-linux-arm-gnueabihf@0.137.0': 165 + resolution: {integrity: sha512-ASgmlSimhGyr0lksgVIo6hibz1obnDq4qJbiMX/AzltfgPnanRrzG1Q+23g8ljOHOjv6dsznkUuCYL3gg0sY1Q==} 166 + engines: {node: ^20.19.0 || >=22.12.0} 167 + cpu: [arm] 168 + os: [linux] 169 + 170 + '@oxc-parser/binding-linux-arm-musleabihf@0.137.0': 171 + resolution: {integrity: sha512-AU2J9aa22Sx32wRGnDjybOU9TQXXQUud5sdUi+ZB0XxwM8aToWLweV+yA0wlQm0yIUVqljquqoHCYEq9II8gJQ==} 172 + engines: {node: ^20.19.0 || >=22.12.0} 173 + cpu: [arm] 174 + os: [linux] 175 + 176 + '@oxc-parser/binding-linux-arm64-gnu@0.137.0': 177 + resolution: {integrity: sha512-GdEtiG89yMr7XkUGxifgodXEEm2f+xW2f9CpDjlgAnBOwhTmrpQMvhOGobLVKUyzf/qHBXW16smk5zbF3nZU6w==} 178 + engines: {node: ^20.19.0 || >=22.12.0} 179 + cpu: [arm64] 180 + os: [linux] 181 + 182 + '@oxc-parser/binding-linux-arm64-musl@0.137.0': 183 + resolution: {integrity: sha512-EGJ+Bs8iXx8KBH8DQ5BLoEm5lnHaYjlh4/8j8vFhrr/6z4tqONy5BZDzLpKmmNWlN6Hlc5r8YOuBVHqZ9vRFEQ==} 184 + engines: {node: ^20.19.0 || >=22.12.0} 185 + cpu: [arm64] 186 + os: [linux] 187 + 188 + '@oxc-parser/binding-linux-ppc64-gnu@0.137.0': 189 + resolution: {integrity: sha512-vzFUQENy/fnbSe5DZWovq6tIBc1uhuMztanSW6rz1e9WdQE4gHwYuD7ZII6JnrJifd1R3RSoqiZbgRFlVL2tYQ==} 190 + engines: {node: ^20.19.0 || >=22.12.0} 191 + cpu: [ppc64] 192 + os: [linux] 193 + 194 + '@oxc-parser/binding-linux-riscv64-gnu@0.137.0': 195 + resolution: {integrity: sha512-SfVI14HBQs9gtLcUD5hTt5hsNbdrqSUNg9S8muN+LhVQ5nf1WwH3hAoK6B9NKgdYgWAQSXFXGiiBedQ4r/BKuw==} 196 + engines: {node: ^20.19.0 || >=22.12.0} 197 + cpu: [riscv64] 198 + os: [linux] 199 + 200 + '@oxc-parser/binding-linux-riscv64-musl@0.137.0': 201 + resolution: {integrity: sha512-e7Ppy4FCIFNQxT/ikSeIWFoQ0l+N9vgtRBtLcyZXeolTzApyVoPqEXsYPrcdM/9i0Bwk8knvYd37vaEMxHyi6g==} 202 + engines: {node: ^20.19.0 || >=22.12.0} 203 + cpu: [riscv64] 204 + os: [linux] 205 + 206 + '@oxc-parser/binding-linux-s390x-gnu@0.137.0': 207 + resolution: {integrity: sha512-Bho5qFwdhqsIFR7gipYEUlqvi3SRrY8sugxXig380MIaakBB1PyU9+7dBiBVScfImTNWhijUxdBwqrprGdq5WA==} 208 + engines: {node: ^20.19.0 || >=22.12.0} 209 + cpu: [s390x] 210 + os: [linux] 211 + 212 + '@oxc-parser/binding-linux-x64-gnu@0.137.0': 213 + resolution: {integrity: sha512-36mGWtg7PyFzjJwGDkH6/F4o2nIDEoKXLPr/X/lwqklkomQwJJt1I5GJVmGhovUEmgPK5WAeAZMqlFCehwiy9Q==} 214 + engines: {node: ^20.19.0 || >=22.12.0} 215 + cpu: [x64] 216 + os: [linux] 217 + 218 + '@oxc-parser/binding-linux-x64-musl@0.137.0': 219 + resolution: {integrity: sha512-/Jqx6+N7A44n2BdvUr7pXhVr2vFjs6WGH3unZRczwrfiH0H1zY0QwKQMG/dtRiTlKGDKGukznPT8lx84/oEsZg==} 220 + engines: {node: ^20.19.0 || >=22.12.0} 221 + cpu: [x64] 222 + os: [linux] 223 + 224 + '@oxc-parser/binding-openharmony-arm64@0.137.0': 225 + resolution: {integrity: sha512-9Uj0qHNNl+OgT1UTGwF7ixIXU6T1u2SbMidmgPy/h1h/fl2gRS6YpAxxY1gwHofcWjoTwkoMFd8xs5Vuj6GOFA==} 226 + engines: {node: ^20.19.0 || >=22.12.0} 227 + cpu: [arm64] 228 + os: [openharmony] 229 + 230 + '@oxc-parser/binding-wasm32-wasi@0.137.0': 231 + resolution: {integrity: sha512-gW2vfkytNGgMVADiuzdvOfw0mWG9za20F/1fCJsif5aBMAvWJTSbpIXbIe0XkOe0VENk+PadpQ7cZgUy2sUJcA==} 232 + engines: {node: ^20.19.0 || >=22.12.0} 233 + cpu: [wasm32] 234 + 235 + '@oxc-parser/binding-win32-arm64-msvc@0.137.0': 236 + resolution: {integrity: sha512-x+pFANF0yL5uK/6T7lu6SlR5qid6sp//eZXKLq5iNsIE+EQg6EaS8/wsW7E91nXXjpnPhSoMOHXShSVhGRdn8w==} 237 + engines: {node: ^20.19.0 || >=22.12.0} 238 + cpu: [arm64] 239 + os: [win32] 240 + 241 + '@oxc-parser/binding-win32-ia32-msvc@0.137.0': 242 + resolution: {integrity: sha512-sQUqym80PFi6McRsIqfJrSu2JrSClEZIXXD+/FjAFoULEKzOPsldIdFBG96xdX8aVMzCNQ9792FPx3MfkEIrFA==} 243 + engines: {node: ^20.19.0 || >=22.12.0} 244 + cpu: [ia32] 245 + os: [win32] 246 + 247 + '@oxc-parser/binding-win32-x64-msvc@0.137.0': 248 + resolution: {integrity: sha512-2AsevxlvNN4WKxpEn3RtqD5zbqMaXF+T7JXblsP4gVuY+vC9dXS4ED/PwfRCliFqoeisYS3Iro4DHzxr0TEvVA==} 249 + engines: {node: ^20.19.0 || >=22.12.0} 250 + cpu: [x64] 251 + os: [win32] 252 + 253 + '@oxc-project/types@0.127.0': 254 + resolution: {integrity: sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==} 255 + 256 + '@oxc-project/types@0.137.0': 257 + resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==} 258 + 259 + '@oxc-resolver/binding-android-arm-eabi@11.21.3': 260 + resolution: {integrity: sha512-eNU11A2WNizh04v3uyaJCootrHIaS0B9aHYXvAvVnPNk4xYSjMUjHnhQ6dewPN2MRYDskV85d1N0Aw0WNWhcyg==} 261 + cpu: [arm] 262 + os: [android] 263 + 264 + '@oxc-resolver/binding-android-arm64@11.21.3': 265 + resolution: {integrity: sha512-8Q+ZjTLvn2dIcWsrmhdrEihm7q+ag/k+mkry7Z+t0QbbHaVxXQfvH9AewyVMh/WrpEKhQ3DDgx9fYbqeCpeOEw==} 266 + cpu: [arm64] 267 + os: [android] 268 + 269 + '@oxc-resolver/binding-darwin-arm64@11.21.3': 270 + resolution: {integrity: sha512-wkh0qKZGHXVUDxFw3oA1TXnU2BDYY/r775oJflGeIr8uDPPoN2pk8gijQIzYRT6hoql/lg3+Tx/SaTn9e2/aGg==} 271 + cpu: [arm64] 272 + os: [darwin] 273 + 274 + '@oxc-resolver/binding-darwin-x64@11.21.3': 275 + resolution: {integrity: sha512-HbNc23FAQYbuyDV2vBWMez4u4mrsm5RAkniGZAWqr6lYZ3N4beeqIb776jzwRl8qL2zRhHVXpUj97X0QgogVzg==} 276 + cpu: [x64] 277 + os: [darwin] 278 + 279 + '@oxc-resolver/binding-freebsd-x64@11.21.3': 280 + resolution: {integrity: sha512-K6xNsTUPEUdfrn0+kbMq5nOUB5w1C5pavPQngt4TM2FpN91lP0PBe2srSpamb4d69O7h86oAi/qWX/kZNRSjkw==} 281 + cpu: [x64] 282 + os: [freebsd] 283 + 284 + '@oxc-resolver/binding-linux-arm-gnueabihf@11.21.3': 285 + resolution: {integrity: sha512-VcFmOpcpWX1zoEy8M58tR2M9YxM+Z9RuQhqAx5q0CTmrruaP7Gveejg75hzd/5sg5nk9G3aLALEa3hE2FsmmTQ==} 286 + cpu: [arm] 287 + os: [linux] 288 + 289 + '@oxc-resolver/binding-linux-arm-musleabihf@11.21.3': 290 + resolution: {integrity: sha512-quVoxFLBy43hWaQbbDtQNRwAX5vX76mv7n64icAtQcJ3eNgVeblqmkupF/hAneNthdqSlnd1sTjb3aQSaDPaCQ==} 291 + cpu: [arm] 292 + os: [linux] 293 + 294 + '@oxc-resolver/binding-linux-arm64-gnu@11.21.3': 295 + resolution: {integrity: sha512-X0AqNZgcD07Q4V3RDK18/vYOj/HQT/FnmEFGYS2jTWqY7JO13ryE3TEs3eAIgUJhBnNkpEaiXqz3VK8M7qQhWQ==} 296 + cpu: [arm64] 297 + os: [linux] 298 + 299 + '@oxc-resolver/binding-linux-arm64-musl@11.21.3': 300 + resolution: {integrity: sha512-YkaQnaKYdbuaXvRt5Qd0GpbihzVnyfR6z1SpYfIUC6RTu4NF7lDKPjVkYb+jRI2gedVO2rVpN35Y6akG6ud4Lw==} 301 + cpu: [arm64] 302 + os: [linux] 303 + 304 + '@oxc-resolver/binding-linux-ppc64-gnu@11.21.3': 305 + resolution: {integrity: sha512-gB9HwhrPiFqUzDeEq+y/CgAijz1YdI6BnXz5GaH2Pa9cWdutchlkGFAiAuGb/PjVQpiK6NFKzFuztxrweoit7A==} 306 + cpu: [ppc64] 307 + os: [linux] 308 + 309 + '@oxc-resolver/binding-linux-riscv64-gnu@11.21.3': 310 + resolution: {integrity: sha512-zjDWBlYk8QGv0H8dsPUWqkfjYIIjG2TvspGkzXL0eImbgxtZorA/klKeHyolevoT3Kvbi+1iMr9Lhrh7jf54Og==} 311 + cpu: [riscv64] 312 + os: [linux] 313 + 314 + '@oxc-resolver/binding-linux-riscv64-musl@11.21.3': 315 + resolution: {integrity: sha512-4UfsQvacV388y1zpXL7C1x1FNYaV52JtuNRiuzrfQA2z1z6ElVrsidkGsrvQ5EgeSq1Pj7kaKqrgGkvFuxJ/tw==} 316 + cpu: [riscv64] 317 + os: [linux] 318 + 319 + '@oxc-resolver/binding-linux-s390x-gnu@11.21.3': 320 + resolution: {integrity: sha512-b5uH+HKH0MP5mNBYaK75SKsJbw52URqrx2LavYdq6wb0l3ExAG5niYRP9DWUNHdKilpaBVM2bXk9HNWrH3ew7Q==} 321 + cpu: [s390x] 322 + os: [linux] 323 + 324 + '@oxc-resolver/binding-linux-x64-gnu@11.21.3': 325 + resolution: {integrity: sha512-PjYlmilBpNRh2ntXNYAK3Am5w/nPfEpnU/96iNx7CI8EzAn12J4JRiec63wHJTH31nLoCNxBg/829pN+3CfG3Q==} 326 + cpu: [x64] 327 + os: [linux] 328 + 329 + '@oxc-resolver/binding-linux-x64-musl@11.21.3': 330 + resolution: {integrity: sha512-QTBAb7JuHlZ7JUEyM8UiQi2f7m/L4swBhP2TNpYIDc9Wp/wRw1G/8sl6i13aIzQAXH7LKIm294LeOHd0lQR8zA==} 331 + cpu: [x64] 332 + os: [linux] 333 + 334 + '@oxc-resolver/binding-openharmony-arm64@11.21.3': 335 + resolution: {integrity: sha512-4j1DFwjwv36ec9kds0jU/ucQ5Ha4ERO/H95BxR5JFf0kqUUAJ1kwII7XhTc1vZrkdJkvLGC9Q2MbpObpum8RBg==} 336 + cpu: [arm64] 337 + os: [openharmony] 338 + 339 + '@oxc-resolver/binding-wasm32-wasi@11.21.3': 340 + resolution: {integrity: sha512-i8oluoel5kru/j1WNrjmQSiA3GQ7wvIYVR1IwIoZtKogAhya2iub+ZKIeSIkcJOrnzQ18Tzl/F+kL3fYOxZLvA==} 341 + engines: {node: '>=14.0.0'} 342 + cpu: [wasm32] 343 + 344 + '@oxc-resolver/binding-win32-arm64-msvc@11.21.3': 345 + resolution: {integrity: sha512-M/8dw8dD6aOs+NlPJax401CZB9I7Aut84isQLgALGGwke4Afvw+/7yYhZb94yXf6t2sPLhQLmSmtSV+2FhsOWg==} 346 + cpu: [arm64] 347 + os: [win32] 348 + 349 + '@oxc-resolver/binding-win32-x64-msvc@11.21.3': 350 + resolution: {integrity: sha512-H7BCt/VnS9hnmMp42eGhZ99izSCRvlnWwy/N71K1/J8QoExwY4262Z8QiEkMDtduRJrztayDxETTckmUuAVL9Q==} 351 + cpu: [x64] 352 + os: [win32] 353 + 354 + '@oxfmt/binding-android-arm-eabi@0.47.0': 355 + resolution: {integrity: sha512-KrMQRdMi/upr81qT4ijK6X6BNp6jqpMY7FwILQnwIy9QLc3qpnhUx5rsCLGzn4ewsCQ0CNAspN2ogmP1GXLyLw==} 356 + engines: {node: ^20.19.0 || >=22.12.0} 357 + cpu: [arm] 358 + os: [android] 359 + 360 + '@oxfmt/binding-android-arm64@0.47.0': 361 + resolution: {integrity: sha512-r4ixS/PeUpAFKgrpDoZ5pSkthjZzVzKd95525Aazj+aOv9H4ulK5zYHGb7wFY5n5kZxHK8TbOJUZgoEb1ohddQ==} 362 + engines: {node: ^20.19.0 || >=22.12.0} 363 + cpu: [arm64] 364 + os: [android] 365 + 366 + '@oxfmt/binding-darwin-arm64@0.47.0': 367 + resolution: {integrity: sha512-CLWxiKpMl+195cm09CuaWEhJK0CirRkoMa07aR9+9AFPat2LfIKtwx1JqxZM0MTvcMe6+adlJNdVL6jdInvq3g==} 368 + engines: {node: ^20.19.0 || >=22.12.0} 369 + cpu: [arm64] 370 + os: [darwin] 371 + 372 + '@oxfmt/binding-darwin-x64@0.47.0': 373 + resolution: {integrity: sha512-Xq5fjTYDC50faUeLSm0rZdBqoTgleXEdD7NpJdARtQIczkCJn3xNjMUSQQkUmh4CtxkKTNL68lytcOK3e/osgg==} 374 + engines: {node: ^20.19.0 || >=22.12.0} 375 + cpu: [x64] 376 + os: [darwin] 377 + 378 + '@oxfmt/binding-freebsd-x64@0.47.0': 379 + resolution: {integrity: sha512-QOU9ZIJ52p5askcEC0QJvvr8trHAWoonul8bgISo6gYUL3s50zkqafBYcNAr9LJZQbsZtPfIWHk9+5+nUp1qJQ==} 380 + engines: {node: ^20.19.0 || >=22.12.0} 381 + cpu: [x64] 382 + os: [freebsd] 383 + 384 + '@oxfmt/binding-linux-arm-gnueabihf@0.47.0': 385 + resolution: {integrity: sha512-oJxDM1aBhPvz9gmElBv8UpxyiqhwfjcbrSxT5F0xtuUzY6dQI27/AQPIt3eu3Z5Yvn0kQl5R7MA3Z+MbnRvCBw==} 386 + engines: {node: ^20.19.0 || >=22.12.0} 387 + cpu: [arm] 388 + os: [linux] 389 + 390 + '@oxfmt/binding-linux-arm-musleabihf@0.47.0': 391 + resolution: {integrity: sha512-g8Lh50VS4ibGz2q6v7r9UZY4D0dM16SdrFYOMzhqIoCwGcai8VMIRUAcqn1/jlCsOOzUXJ741+kCeJt0cofakQ==} 392 + engines: {node: ^20.19.0 || >=22.12.0} 393 + cpu: [arm] 394 + os: [linux] 395 + 396 + '@oxfmt/binding-linux-arm64-gnu@0.47.0': 397 + resolution: {integrity: sha512-YrNT1vQ0asaXoRbrvYENPqmBfOQ9Xr8enPNOULeYfg44VjCcrUowFy5QZr+WawE0zyP8cH9e9Gxxg0fDEFzhcg==} 398 + engines: {node: ^20.19.0 || >=22.12.0} 399 + cpu: [arm64] 400 + os: [linux] 401 + 402 + '@oxfmt/binding-linux-arm64-musl@0.47.0': 403 + resolution: {integrity: sha512-IxtQC/sbBi4ubbY+MdwdanRWrG9InQJVZqyMsBa5IUaQcnSg86gQme574HxXMC1p4bo4YhV99zQ+wNnGCvEgzw==} 404 + engines: {node: ^20.19.0 || >=22.12.0} 405 + cpu: [arm64] 406 + os: [linux] 407 + 408 + '@oxfmt/binding-linux-ppc64-gnu@0.47.0': 409 + resolution: {integrity: sha512-EWXEhOMbWO0q6eJSbu0QLkU8cKi0ljlYLngeDs2Ocu/pm1rrLwyQiYzlFbdnMRURI4w9ndr1sI9rSbhlJ5o23Q==} 410 + engines: {node: ^20.19.0 || >=22.12.0} 411 + cpu: [ppc64] 412 + os: [linux] 413 + 414 + '@oxfmt/binding-linux-riscv64-gnu@0.47.0': 415 + resolution: {integrity: sha512-tZrjS11TUiDuEpRaqdk8K9F9xETRyKXfuZKmdeW+Gj7coBnm7+8sBEfyt033EAFEQSlkniAXvBLh+Qja2ioGBQ==} 416 + engines: {node: ^20.19.0 || >=22.12.0} 417 + cpu: [riscv64] 418 + os: [linux] 419 + 420 + '@oxfmt/binding-linux-riscv64-musl@0.47.0': 421 + resolution: {integrity: sha512-KBFy+2CFKUCZzYwX2ZOPQKck1vjQbz+hextuc19G4r0WRJwadfAeuQMQRQvB+Ivc8brlbOVg7et8K7E467440g==} 422 + engines: {node: ^20.19.0 || >=22.12.0} 423 + cpu: [riscv64] 424 + os: [linux] 425 + 426 + '@oxfmt/binding-linux-s390x-gnu@0.47.0': 427 + resolution: {integrity: sha512-REUPFKVGSiK99B+9eaPhluEVglzaoj/SMykNC5SUiV2RSsBfV5lWN7Y0iCIc251Wz3GaeAGZsJ/zj3gjarxdFg==} 428 + engines: {node: ^20.19.0 || >=22.12.0} 429 + cpu: [s390x] 430 + os: [linux] 431 + 432 + '@oxfmt/binding-linux-x64-gnu@0.47.0': 433 + resolution: {integrity: sha512-KVftVSVEDeIfRW3TIeLe3aNI/iY4m1fu5mDwHcisKMZSCMKLkrhFsjowC7o9RoqNPxbbglm2+/6KAKBIts2t0Q==} 434 + engines: {node: ^20.19.0 || >=22.12.0} 435 + cpu: [x64] 436 + os: [linux] 437 + 438 + '@oxfmt/binding-linux-x64-musl@0.47.0': 439 + resolution: {integrity: sha512-DTsmGEaA2860Aq5VUyDO8/MT9NFxwVL93RnRYmpMwK6DsSkThmvEpqoUDDljziEpAedMRG19SCogrNbINSbLUQ==} 440 + engines: {node: ^20.19.0 || >=22.12.0} 441 + cpu: [x64] 442 + os: [linux] 443 + 444 + '@oxfmt/binding-openharmony-arm64@0.47.0': 445 + resolution: {integrity: sha512-8r5BDro7fLOBoq1JXHLVSs55OlrxQhEso4HVo0TcY7OXJUPYfjPoOaYL5us+yIwqyP9rQwN+rxuiNFSmaxSuOQ==} 446 + engines: {node: ^20.19.0 || >=22.12.0} 447 + cpu: [arm64] 448 + os: [openharmony] 449 + 450 + '@oxfmt/binding-win32-arm64-msvc@0.47.0': 451 + resolution: {integrity: sha512-qtz/gzm8IjSPUlseZ0ofW8zyHLoZsuP5HTfcGGkWkUblB89JT8GNYH3ICqjbDsqsGqXum0/ZndXTFplSdXFIcg==} 452 + engines: {node: ^20.19.0 || >=22.12.0} 453 + cpu: [arm64] 454 + os: [win32] 455 + 456 + '@oxfmt/binding-win32-ia32-msvc@0.47.0': 457 + resolution: {integrity: sha512-5vIcdcIDE7nCx+MXN6sm8kbC4zajDB31E86rez4i45iHNH/2NjdKlJ720xcHTr3eeiMcttCGPHPhE1TjtBDGZw==} 458 + engines: {node: ^20.19.0 || >=22.12.0} 459 + cpu: [ia32] 460 + os: [win32] 461 + 462 + '@oxfmt/binding-win32-x64-msvc@0.47.0': 463 + resolution: {integrity: sha512-Sr59Y5ms54ONBjxFeWhVlGyQcHXxcl9DxC23f6yXlRkcos7LXBLoO+KDfxexjHIOZh7cWqrWduzvUjJ+pHp8cQ==} 464 + engines: {node: ^20.19.0 || >=22.12.0} 465 + cpu: [x64] 466 + os: [win32] 467 + 468 + '@oxlint/binding-android-arm-eabi@1.71.0': 469 + resolution: {integrity: sha512-ImGmd1njEg4FEJH03jhRnveEegtO3czCtfptvaHivKAZQIYATbVFBrrzbaYMYv0oJioTnxZAZVSyV+oL7W8S2g==} 470 + engines: {node: ^20.19.0 || >=22.12.0} 471 + cpu: [arm] 472 + os: [android] 473 + 474 + '@oxlint/binding-android-arm64@1.71.0': 475 + resolution: {integrity: sha512-4A5BEexBrwY1YFF8Kiq/lp/wQPRG79G3BWIE1FuWaM5MvmpYSd+7ZySVcKkHdwo0UDzdQGddp6pD9mpctMqLnw==} 476 + engines: {node: ^20.19.0 || >=22.12.0} 477 + cpu: [arm64] 478 + os: [android] 479 + 480 + '@oxlint/binding-darwin-arm64@1.71.0': 481 + resolution: {integrity: sha512-9wJA9GJulLwS2usU3CEisI/ESDO1n1z9eyTCvApMDrAkbJ1ve0mORgTMjcWWsKxkzkeZ2N/Gpra5IQE7x8tYgQ==} 482 + engines: {node: ^20.19.0 || >=22.12.0} 483 + cpu: [arm64] 484 + os: [darwin] 485 + 486 + '@oxlint/binding-darwin-x64@1.71.0': 487 + resolution: {integrity: sha512-PlLCjS06V0PeJMAJwzjrExw1sYNW9Gch3JtNlcwwZDXGlTYDuwHNN89zYH8LTXFfgkVtsYvs2nv0FqrzyuFDzg==} 488 + engines: {node: ^20.19.0 || >=22.12.0} 489 + cpu: [x64] 490 + os: [darwin] 491 + 492 + '@oxlint/binding-freebsd-x64@1.71.0': 493 + resolution: {integrity: sha512-Lhil7bWre0ncxbUoDoxfS0JzpTz17BRQKW7iwoAUY8GJ66+WwJEfYPCFJ1P0WgVZR5/O/b3Q2pENlHOjeXLOGQ==} 494 + engines: {node: ^20.19.0 || >=22.12.0} 495 + cpu: [x64] 496 + os: [freebsd] 497 + 498 + '@oxlint/binding-linux-arm-gnueabihf@1.71.0': 499 + resolution: {integrity: sha512-Oo9/L58PYD3RC0x05d2upAPLllHytTjHQGsnC06P6Ynn7jKkp5mdImQxXdJ3+FnBaKspNpGogzgVsi6g872LiA==} 500 + engines: {node: ^20.19.0 || >=22.12.0} 501 + cpu: [arm] 502 + os: [linux] 503 + 504 + '@oxlint/binding-linux-arm-musleabihf@1.71.0': 505 + resolution: {integrity: sha512-mSHfyfgJrEbyIR29ejaeS50BdPk+GoNPlC1dckpDiUZbJAIel68sjSMdOt4WY0/gva+ECC7FNITQkxMJU+vSBw==} 506 + engines: {node: ^20.19.0 || >=22.12.0} 507 + cpu: [arm] 508 + os: [linux] 509 + 510 + '@oxlint/binding-linux-arm64-gnu@1.71.0': 511 + resolution: {integrity: sha512-n9yY4M2tiy3aij4AqtlnspzpfdpeT5JQfK2/w2d8oyp5W0FRwOb1dIeX99nORNcxGr08iD9bH8N5XFz3I2iy8w==} 512 + engines: {node: ^20.19.0 || >=22.12.0} 513 + cpu: [arm64] 514 + os: [linux] 515 + 516 + '@oxlint/binding-linux-arm64-musl@1.71.0': 517 + resolution: {integrity: sha512-fJZrs5sDZtTaPIOiemRQQmo82Ezy+vOGXemPc4Ok7iVVsYsFa7SlW6Z5XN819VfsqBHRm3NJ3rTdnR8+bJYJdQ==} 518 + engines: {node: ^20.19.0 || >=22.12.0} 519 + cpu: [arm64] 520 + os: [linux] 521 + 522 + '@oxlint/binding-linux-ppc64-gnu@1.71.0': 523 + resolution: {integrity: sha512-cwl7VKGERIy9p+G+AvZdfy/06q0aHXaTt/mMRReC751iuNYJgqKjB7NydXSS30nBT9vtr2tunciOtrR4fD6FUA==} 524 + engines: {node: ^20.19.0 || >=22.12.0} 525 + cpu: [ppc64] 526 + os: [linux] 527 + 528 + '@oxlint/binding-linux-riscv64-gnu@1.71.0': 529 + resolution: {integrity: sha512-eZ8ieVXvzGi8jr7+ybQGPK2STw3mldfxZlgA2738iflfB/rzA69sE6m5rDRpQaxC7dpm745Enlh1Tod0QAk9Gg==} 530 + engines: {node: ^20.19.0 || >=22.12.0} 531 + cpu: [riscv64] 532 + os: [linux] 533 + 534 + '@oxlint/binding-linux-riscv64-musl@1.71.0': 535 + resolution: {integrity: sha512-puMDbQYe6+NXwfMusojoA7CXGn2b3utukmd23PQqc1E3XhVCwyZ+FueSMzDYeNgDV2dUfIVXAAKZBcFDeCL6sA==} 536 + engines: {node: ^20.19.0 || >=22.12.0} 537 + cpu: [riscv64] 538 + os: [linux] 539 + 540 + '@oxlint/binding-linux-s390x-gnu@1.71.0': 541 + resolution: {integrity: sha512-4NJLxBs1ujISCt3L/1FcywLs73PWtJuw+piD6feK2V6h6OS6P7xu9/sWt1DTRLibe6QCzmfZzmM/2HPORoV/Lg==} 542 + engines: {node: ^20.19.0 || >=22.12.0} 543 + cpu: [s390x] 544 + os: [linux] 545 + 546 + '@oxlint/binding-linux-x64-gnu@1.71.0': 547 + resolution: {integrity: sha512-cFDaiR8L3430qp88tfZnvFlt3KotFhR/DlbIL0nHOMMYiG/9Wy4l+6f7t8G8pTa9bd8Lt8+M0y/qjRQ/xcB74g==} 548 + engines: {node: ^20.19.0 || >=22.12.0} 549 + cpu: [x64] 550 + os: [linux] 551 + 552 + '@oxlint/binding-linux-x64-musl@1.71.0': 553 + resolution: {integrity: sha512-orfixdt76KlpNly9z0PkWBBNfwjKz+JFVLP/7wnVchlKNU9Dpt9InU/ZggeSej6fC7qwHmHNOGlhLnQXcYoGuA==} 554 + engines: {node: ^20.19.0 || >=22.12.0} 555 + cpu: [x64] 556 + os: [linux] 557 + 558 + '@oxlint/binding-openharmony-arm64@1.71.0': 559 + resolution: {integrity: sha512-9emQu2lAp6yhPB3XuI+++vR+l/o6JR1X+EpxwcumPdQXBWXEPAsquPGL7l158EqU8SebQMXTUa/S5zN98juyHw==} 560 + engines: {node: ^20.19.0 || >=22.12.0} 561 + cpu: [arm64] 562 + os: [openharmony] 563 + 564 + '@oxlint/binding-win32-arm64-msvc@1.71.0': 565 + resolution: {integrity: sha512-bd5kI8spYwTm3BILDtGhi73zoup5dw8MlPQNT8YB3BD5UIsjNe3K9/4ctrzQMX4SZMoK5HgzVLkLJzacEXB7fA==} 566 + engines: {node: ^20.19.0 || >=22.12.0} 567 + cpu: [arm64] 568 + os: [win32] 569 + 570 + '@oxlint/binding-win32-ia32-msvc@1.71.0': 571 + resolution: {integrity: sha512-W4HvOHGzVLHcrmFu+bMrJlho+/yrlX5ZNdJZqGe8MEldkQG+RHYhxxad9P4jvWAYFmIqUA5i9DQ8QsJqSU9GIw==} 572 + engines: {node: ^20.19.0 || >=22.12.0} 573 + cpu: [ia32] 574 + os: [win32] 575 + 576 + '@oxlint/binding-win32-x64-msvc@1.71.0': 577 + resolution: {integrity: sha512-D2kyEIPHk/G/wiZLnwTVC/sVst+T/lKldVOjAFpgTIBUAOlry72e5OiapDbDBF4LfJLkN5ypJb/8Eu6yJzkveQ==} 578 + engines: {node: ^20.19.0 || >=22.12.0} 579 + cpu: [x64] 580 + os: [win32] 581 + 582 + '@publint/pack@0.1.5': 583 + resolution: {integrity: sha512-edgyN2pP07uXiP4tJs0s8KVmU8M8i60YPbbI0/WDeok1mIJHRXz+CgD8I0nelwDkoCh3EWL/G5kGfbuHjsdbvw==} 584 + engines: {node: '>=18'} 585 + 586 + '@quansync/fs@1.0.0': 587 + resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==} 588 + 589 + '@rolldown/binding-android-arm64@1.0.0-rc.17': 590 + resolution: {integrity: sha512-s70pVGhw4zqGeFnXWvAzJDlvxhlRollagdCCKRgOsgUOH3N1l0LIxf83AtGzmb5SiVM4Hjl5HyarMRfdfj3DaQ==} 591 + engines: {node: ^20.19.0 || >=22.12.0} 592 + cpu: [arm64] 593 + os: [android] 594 + 595 + '@rolldown/binding-android-arm64@1.1.2': 596 + resolution: {integrity: sha512-2cZ+7xRS+DBcuJBJKnfzsbleumJhBqSlJVpuzHC0nTqfd3QQ7Vx2/x5YR/D7cBamKSeWplwo82Fn9lqYUDEMfA==} 597 + engines: {node: ^20.19.0 || >=22.12.0} 598 + cpu: [arm64] 599 + os: [android] 600 + 601 + '@rolldown/binding-darwin-arm64@1.0.0-rc.17': 602 + resolution: {integrity: sha512-4ksWc9n0mhlZpZ9PMZgTGjeOPRu8MB1Z3Tz0Mo02eWfWCHMW1zN82Qz/pL/rC+yQa+8ZnutMF0JjJe7PjwasYw==} 603 + engines: {node: ^20.19.0 || >=22.12.0} 604 + cpu: [arm64] 605 + os: [darwin] 606 + 607 + '@rolldown/binding-darwin-arm64@1.1.2': 608 + resolution: {integrity: sha512-RkPMJnygxsgOYdkfqgpwY0/Fzm8d0VQe6HGU2/B00Xa9eqdLbrII+DOKAodbJAn3ZL1AJxGHkZRPYazgGY6Ljw==} 609 + engines: {node: ^20.19.0 || >=22.12.0} 610 + cpu: [arm64] 611 + os: [darwin] 612 + 613 + '@rolldown/binding-darwin-x64@1.0.0-rc.17': 614 + resolution: {integrity: sha512-SUSDOI6WwUVNcWxd02QEBjLdY1VPHvlEkw6T/8nYG322iYWCTxRb1vzk4E+mWWYehTp7ERibq54LSJGjmouOsw==} 615 + engines: {node: ^20.19.0 || >=22.12.0} 616 + cpu: [x64] 617 + os: [darwin] 618 + 619 + '@rolldown/binding-darwin-x64@1.1.2': 620 + resolution: {integrity: sha512-Uiczh6vFhwyfd7WNe7Q7mCA4KxAiLdz7jPE/WGizfRpIieoyFuNVMmM8HqZ9HwudTkY6/AeMQwlNJ9NJijguWw==} 621 + engines: {node: ^20.19.0 || >=22.12.0} 622 + cpu: [x64] 623 + os: [darwin] 624 + 625 + '@rolldown/binding-freebsd-x64@1.0.0-rc.17': 626 + resolution: {integrity: sha512-hwnz3nw9dbJ05EDO/PvcjaaewqqDy7Y1rn1UO81l8iIK1GjenME75dl16ajbvSSMfv66WXSRCYKIqfgq2KCfxw==} 627 + engines: {node: ^20.19.0 || >=22.12.0} 628 + cpu: [x64] 629 + os: [freebsd] 630 + 631 + '@rolldown/binding-freebsd-x64@1.1.2': 632 + resolution: {integrity: sha512-+TpdtTRgHiJFjCVFbw311SuLk3KfytPOQQn+VlAEv+gBxYPtL7E6JS9e/tk+8CwxhIZvemJKo4rTKgfWNsKkkA==} 633 + engines: {node: ^20.19.0 || >=22.12.0} 634 + cpu: [x64] 635 + os: [freebsd] 636 + 637 + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.17': 638 + resolution: {integrity: sha512-IS+W7epTcwANmFSQFrS1SivEXHtl1JtuQA9wlxrZTcNi6mx+FDOYrakGevvvTwgj2JvWiK8B29/qD9BELZPyXQ==} 639 + engines: {node: ^20.19.0 || >=22.12.0} 640 + cpu: [arm] 641 + os: [linux] 642 + 643 + '@rolldown/binding-linux-arm-gnueabihf@1.1.2': 644 + resolution: {integrity: sha512-4lv1/tkmi7ueIVHnyreaOeUpiZP26BH9rRy6hoYfR9310A2B9nUEVRDvBx69vx64Nr3eTPPRkyciqJJs+j9Jmw==} 645 + engines: {node: ^20.19.0 || >=22.12.0} 646 + cpu: [arm] 647 + os: [linux] 648 + 649 + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.17': 650 + resolution: {integrity: sha512-e6usGaHKW5BMNZOymS1UcEYGowQMWcgZ71Z17Sl/h2+ZziNJ1a9n3Zvcz6LdRyIW5572wBCTH/Z+bKuZouGk9Q==} 651 + engines: {node: ^20.19.0 || >=22.12.0} 652 + cpu: [arm64] 653 + os: [linux] 654 + 655 + '@rolldown/binding-linux-arm64-gnu@1.1.2': 656 + resolution: {integrity: sha512-gBSUVO0eaWgw1JMjK3gB8BMlX2Mk148s2lTiVT3e9vjVxbl7UDfMWWY8CfIaaqiXuM9fVTMxIpUz6CAo/B6Vlw==} 657 + engines: {node: ^20.19.0 || >=22.12.0} 658 + cpu: [arm64] 659 + os: [linux] 660 + 661 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.17': 662 + resolution: {integrity: sha512-b/CgbwAJpmrRLp02RPfhbudf5tZnN9nsPWK82znefso832etkem8H7FSZwxrOI9djcdTP7U6YfNhbRnh7djErg==} 663 + engines: {node: ^20.19.0 || >=22.12.0} 664 + cpu: [arm64] 665 + os: [linux] 666 + 667 + '@rolldown/binding-linux-arm64-musl@1.1.2': 668 + resolution: {integrity: sha512-LjQP/iZLBu8o8PjIfk4x3At0/mT6h282pvz8Z5LAyhGbu/kDezyO7ea62rF5uoqmgnIYqbN/MqJ3Si3Aymi7xQ==} 669 + engines: {node: ^20.19.0 || >=22.12.0} 670 + cpu: [arm64] 671 + os: [linux] 672 + 673 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.17': 674 + resolution: {integrity: sha512-4EII1iNGRUN5WwGbF/kOh/EIkoDN9HsupgLQoXfY+D1oyJm7/F4t5PYU5n8SWZgG0FEwakyM8pGgwcBYruGTlA==} 675 + engines: {node: ^20.19.0 || >=22.12.0} 676 + cpu: [ppc64] 677 + os: [linux] 678 + 679 + '@rolldown/binding-linux-ppc64-gnu@1.1.2': 680 + resolution: {integrity: sha512-X/7bVLWelEsbyWDUSXt7zVsTniLLPIY2n1rH58qr78l9i7MNbbxBWD8gI2vRfBWf4NUXJCUuQnfZDsp32LqsfQ==} 681 + engines: {node: ^20.19.0 || >=22.12.0} 682 + cpu: [ppc64] 683 + os: [linux] 684 + 685 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.17': 686 + resolution: {integrity: sha512-AH8oq3XqQo4IibpVXvPeLDI5pzkpYn0WiZAfT05kFzoJ6tQNzwRdDYQ45M8I/gslbodRZwW8uxLhbSBbkv96rA==} 687 + engines: {node: ^20.19.0 || >=22.12.0} 688 + cpu: [s390x] 689 + os: [linux] 690 + 691 + '@rolldown/binding-linux-s390x-gnu@1.1.2': 692 + resolution: {integrity: sha512-gb6dYKW/1KDorGXyy48glEBJs/sxVSC5pcVrox/pFGV4mvwSFeg2sK5L2tRkVsVlh7kueqOgg4GEcuipJcGuKg==} 693 + engines: {node: ^20.19.0 || >=22.12.0} 694 + cpu: [s390x] 695 + os: [linux] 696 + 697 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.17': 698 + resolution: {integrity: sha512-cLnjV3xfo7KslbU41Z7z8BH/E1y5mzUYzAqih1d1MDaIGZRCMqTijqLv76/P7fyHuvUcfGsIpqCdddbxLLK9rA==} 699 + engines: {node: ^20.19.0 || >=22.12.0} 700 + cpu: [x64] 701 + os: [linux] 702 + 703 + '@rolldown/binding-linux-x64-gnu@1.1.2': 704 + resolution: {integrity: sha512-JY4w85pU3iAiJVMh5nuk4/Mh9GjMsupe8MrIN53rwxAZW64GKrWeJBuN6SxQg9QTU5uB1cxyhDzW8jqRn1EABw==} 705 + engines: {node: ^20.19.0 || >=22.12.0} 706 + cpu: [x64] 707 + os: [linux] 708 + 709 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.17': 710 + resolution: {integrity: sha512-0phclDw1spsL7dUB37sIARuis2tAgomCJXAHZlpt8PXZ4Ba0dRP1e+66lsRqrfhISeN9bEGNjQs+T/Fbd7oYGw==} 711 + engines: {node: ^20.19.0 || >=22.12.0} 712 + cpu: [x64] 713 + os: [linux] 714 + 715 + '@rolldown/binding-linux-x64-musl@1.1.2': 716 + resolution: {integrity: sha512-xvpA7o5KCYLB0Rwscmuylb1/zHHSUx4g4xilm4prC5jP76pEUlzBmMbgpbh7bVDbId4NcfT96gN5i6mE6UDaiw==} 717 + engines: {node: ^20.19.0 || >=22.12.0} 718 + cpu: [x64] 719 + os: [linux] 720 + 721 + '@rolldown/binding-openharmony-arm64@1.0.0-rc.17': 722 + resolution: {integrity: sha512-0ag/hEgXOwgw4t8QyQvUCxvEg+V0KBcA6YuOx9g0r02MprutRF5dyljgm3EmR02O292UX7UeS6HzWHAl6KgyhA==} 723 + engines: {node: ^20.19.0 || >=22.12.0} 724 + cpu: [arm64] 725 + os: [openharmony] 726 + 727 + '@rolldown/binding-openharmony-arm64@1.1.2': 728 + resolution: {integrity: sha512-p/ts6KBLjuk49Bp21XH77poQGt02iNz7ChgHep7tudPOaLinR/De/RHdxF8w8Yj4r/bF/bqXwH6PZrB2sA+Nvw==} 729 + engines: {node: ^20.19.0 || >=22.12.0} 730 + cpu: [arm64] 731 + os: [openharmony] 732 + 733 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.17': 734 + resolution: {integrity: sha512-LEXei6vo0E5wTGwpkJ4KoT3OZJRnglwldt5ziLzOlc6qqb55z4tWNq2A+PFqCJuvWWdP53CVhG1Z9NtToDPJrA==} 735 + engines: {node: ^20.19.0 || >=22.12.0} 736 + cpu: [wasm32] 737 + 738 + '@rolldown/binding-wasm32-wasi@1.1.2': 739 + resolution: {integrity: sha512-VMu/wmrZ9hJzYlRhbw7jK5PODlugyKZ5mOdX78+lS8OvuFkWNQdz1pFLrI2p3P0pjXOmUZ7B48o5VnMH9QOGtg==} 740 + engines: {node: ^20.19.0 || >=22.12.0} 741 + cpu: [wasm32] 742 + 743 + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.17': 744 + resolution: {integrity: sha512-gUmyzBl3SPMa6hrqFUth9sVfcLBlYsbMzBx5PlexMroZStgzGqlZ26pYG89rBb45Mnia+oil6YAIFeEWGWhoZA==} 745 + engines: {node: ^20.19.0 || >=22.12.0} 746 + cpu: [arm64] 747 + os: [win32] 748 + 749 + '@rolldown/binding-win32-arm64-msvc@1.1.2': 750 + resolution: {integrity: sha512-xtUJqs8qEkuSviS0n1tsohaPuz3a1SPhZywOji4Oo+sgrJs8daEDMZ0QtqL0OS7dx8PoVpg2J/ZZycPY5I2+Zg==} 751 + engines: {node: ^20.19.0 || >=22.12.0} 752 + cpu: [arm64] 753 + os: [win32] 754 + 755 + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.17': 756 + resolution: {integrity: sha512-3hkiolcUAvPB9FLb3UZdfjVVNWherN1f/skkGWJP/fgSQhYUZpSIRr0/I8ZK9TkF3F7kxvJAk0+IcKvPHk9qQg==} 757 + engines: {node: ^20.19.0 || >=22.12.0} 758 + cpu: [x64] 759 + os: [win32] 760 + 761 + '@rolldown/binding-win32-x64-msvc@1.1.2': 762 + resolution: {integrity: sha512-85YiLQqjUKgSO/Zjnf9e0XIn5Ymrh1fLDWBeAkZqpuBR/3R8TpfoHXuyblqyQrftSSgWO9qpcHN8mkyKsLraoA==} 763 + engines: {node: ^20.19.0 || >=22.12.0} 764 + cpu: [x64] 765 + os: [win32] 766 + 767 + '@rolldown/pluginutils@1.0.0-rc.17': 768 + resolution: {integrity: sha512-n8iosDOt6Ig1UhJ2AYqoIhHWh/isz0xpicHTzpKBeotdVsTEcxsSA/i3EVM7gQAj0rU27OLAxCjzlj15IWY7bg==} 769 + 770 + '@rolldown/pluginutils@1.0.1': 771 + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} 772 + 773 + '@standard-schema/spec@1.1.0': 774 + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 775 + 776 + '@tybys/wasm-util@0.10.3': 777 + resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==} 778 + 779 + '@types/chai@5.2.3': 780 + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} 781 + 782 + '@types/deep-eql@4.0.2': 783 + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} 784 + 785 + '@types/estree@1.0.9': 786 + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} 787 + 788 + '@types/jsesc@2.5.1': 789 + resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} 790 + 791 + '@types/node@26.0.0': 792 + resolution: {integrity: sha512-vf2YFi1iY9lHGwNJMs01biZFbKJkrZR1T6/MlzjhJLPdntOHLhTrDSnSVcdtvjihi4VQNlrFRIxLsDBlQpAipA==} 793 + 794 + '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260427.1': 795 + resolution: {integrity: sha512-8zxaaEgIpHSadCoCAvUsp0C6WDH0dUXix7Mm7IBjh+EhSxI2clhXwPZTqgtDqbowXHeE82BG5mBbQx+CXDwGOQ==} 796 + engines: {node: '>=16.20.0'} 797 + cpu: [arm64] 798 + os: [darwin] 799 + 800 + '@typescript/native-preview-darwin-x64@7.0.0-dev.20260427.1': 801 + resolution: {integrity: sha512-6MjekGfajPtny/bBoBYJ+8dTOlgw6nhSSgJ3Us4R/4L8R90ll803Krz+iz907r1SnYeK5eWubDMV/p1ryLNXkQ==} 802 + engines: {node: '>=16.20.0'} 803 + cpu: [x64] 804 + os: [darwin] 805 + 806 + '@typescript/native-preview-linux-arm64@7.0.0-dev.20260427.1': 807 + resolution: {integrity: sha512-a1yG/vrLaN3dORvaMuNqXz5jcTaTEPBfhmq77vzqRn8As7EdqxtizPosfxB9K1s7PEB8NeGQKqHEQroPUCsPFg==} 808 + engines: {node: '>=16.20.0'} 809 + cpu: [arm64] 810 + os: [linux] 811 + 812 + '@typescript/native-preview-linux-arm@7.0.0-dev.20260427.1': 813 + resolution: {integrity: sha512-3bhv/NxU9FHIN3MSmoplIAkIHF62mlF9l5XooAFawwj8yscvPZih/m5fkYIiP5qGri3828XwGyT1Cksaft6FWQ==} 814 + engines: {node: '>=16.20.0'} 815 + cpu: [arm] 816 + os: [linux] 817 + 818 + '@typescript/native-preview-linux-x64@7.0.0-dev.20260427.1': 819 + resolution: {integrity: sha512-lqaA9oF9ZSw1jn87+Ncxo0Sf0d65eVXMjAD0z44ne7QKFRgWd+QpvK4AXAG4lxnFR+XdndWlVm6O1/tdvcG7xQ==} 820 + engines: {node: '>=16.20.0'} 821 + cpu: [x64] 822 + os: [linux] 823 + 824 + '@typescript/native-preview-win32-arm64@7.0.0-dev.20260427.1': 825 + resolution: {integrity: sha512-ZGXRDC0WPVK/Ky2fZRhy2EcNmdHg22biVYWcWgOUK5tCbJd/KJs3VXk758gn0UbFHEQAR5d7dsvDucCCjZkWpA==} 826 + engines: {node: '>=16.20.0'} 827 + cpu: [arm64] 828 + os: [win32] 829 + 830 + '@typescript/native-preview-win32-x64@7.0.0-dev.20260427.1': 831 + resolution: {integrity: sha512-Ut4Hncq1IuSeNIfcPs1s719j8H3ZA+ogsJ53W3s/Wy1UF5BIhu5Hkspdc7TzGgJgYqGJKo/+pr4vsRnbBPdWgQ==} 832 + engines: {node: '>=16.20.0'} 833 + cpu: [x64] 834 + os: [win32] 835 + 836 + '@typescript/native-preview@7.0.0-dev.20260427.1': 837 + resolution: {integrity: sha512-g6L7hed1Y2OGwAzZ+vXoGSvtJUdWUtTqtsn/16+UjYbu3+6pol0cggdWj26SFxI41R+jLfnT2+JGtoXRBdH+RQ==} 838 + engines: {node: '>=16.20.0'} 839 + hasBin: true 840 + 841 + '@vitest/expect@4.1.9': 842 + resolution: {integrity: sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==} 843 + 844 + '@vitest/mocker@4.1.9': 845 + resolution: {integrity: sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==} 846 + peerDependencies: 847 + msw: ^2.4.9 848 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 849 + peerDependenciesMeta: 850 + msw: 851 + optional: true 852 + vite: 853 + optional: true 854 + 855 + '@vitest/pretty-format@4.1.9': 856 + resolution: {integrity: sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==} 857 + 858 + '@vitest/runner@4.1.9': 859 + resolution: {integrity: sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==} 860 + 861 + '@vitest/snapshot@4.1.9': 862 + resolution: {integrity: sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==} 863 + 864 + '@vitest/spy@4.1.9': 865 + resolution: {integrity: sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==} 866 + 867 + '@vitest/utils@4.1.9': 868 + resolution: {integrity: sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==} 869 + 870 + ansis@4.3.1: 871 + resolution: {integrity: sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==} 872 + engines: {node: '>=14'} 873 + 874 + assertion-error@2.0.1: 875 + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 876 + engines: {node: '>=12'} 877 + 878 + ast-kit@3.0.0: 879 + resolution: {integrity: sha512-8OG92q3R35qjC/4i6BLBMg8IB+fClWu/1PEwg2Z9Rn+BuNaiEgJzpzn+pxWOdHJWDCAwu2JP0wCDTozAM4QirQ==} 880 + engines: {node: ^22.18.0 || >=24.11.0} 881 + 882 + birpc@4.0.0: 883 + resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} 884 + 885 + cac@7.0.0: 886 + resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==} 887 + engines: {node: '>=20.19.0'} 888 + 889 + chai@6.2.2: 890 + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} 891 + engines: {node: '>=18'} 892 + 893 + convert-source-map@2.0.0: 894 + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 895 + 896 + defu@6.1.7: 897 + resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} 898 + 899 + detect-libc@2.1.2: 900 + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 901 + engines: {node: '>=8'} 902 + 903 + dts-resolver@2.1.3: 904 + resolution: {integrity: sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==} 905 + engines: {node: '>=20.19.0'} 906 + peerDependencies: 907 + oxc-resolver: '>=11.0.0' 908 + peerDependenciesMeta: 909 + oxc-resolver: 910 + optional: true 911 + 912 + empathic@2.0.1: 913 + resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==} 914 + engines: {node: '>=14'} 915 + 916 + es-module-lexer@2.1.0: 917 + resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==} 918 + 919 + estree-walker@3.0.3: 920 + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 921 + 922 + expect-type@1.3.0: 923 + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} 924 + engines: {node: '>=12.0.0'} 925 + 926 + fd-package-json@2.0.0: 927 + resolution: {integrity: sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==} 928 + 929 + fdir@6.5.0: 930 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 931 + engines: {node: '>=12.0.0'} 932 + peerDependencies: 933 + picomatch: ^3 || ^4 934 + peerDependenciesMeta: 935 + picomatch: 936 + optional: true 937 + 938 + formatly@0.3.0: 939 + resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==} 940 + engines: {node: '>=18.3.0'} 941 + hasBin: true 942 + 943 + fsevents@2.3.3: 944 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 945 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 946 + os: [darwin] 947 + 948 + get-tsconfig@4.14.0: 949 + resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} 950 + 951 + hookable@6.1.1: 952 + resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==} 953 + 954 + import-without-cache@0.3.3: 955 + resolution: {integrity: sha512-bDxwDdF04gm550DfZHgffvlX+9kUlcz32UD0AeBTmVPFiWkrexF2XVmiuFFbDhiFuP8fQkrkvI2KdSNPYWAXkQ==} 956 + engines: {node: '>=20.19.0'} 957 + 958 + jiti@2.7.0: 959 + resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} 960 + hasBin: true 961 + 962 + jsesc@3.1.0: 963 + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 964 + engines: {node: '>=6'} 965 + hasBin: true 966 + 967 + knip@6.18.0: 968 + resolution: {integrity: sha512-RlT6fK3epETsEUCVdlz96CiJN3DQJwuxOuQhEeAVWjNRuAUJHWwe+XolTL8vIiwLPZ38tTdPWJUgZyTdskOEog==} 969 + engines: {node: ^20.19.0 || >=22.12.0} 970 + hasBin: true 971 + 972 + lightningcss-android-arm64@1.32.0: 973 + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} 974 + engines: {node: '>= 12.0.0'} 975 + cpu: [arm64] 976 + os: [android] 977 + 978 + lightningcss-darwin-arm64@1.32.0: 979 + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} 980 + engines: {node: '>= 12.0.0'} 981 + cpu: [arm64] 982 + os: [darwin] 983 + 984 + lightningcss-darwin-x64@1.32.0: 985 + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} 986 + engines: {node: '>= 12.0.0'} 987 + cpu: [x64] 988 + os: [darwin] 989 + 990 + lightningcss-freebsd-x64@1.32.0: 991 + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} 992 + engines: {node: '>= 12.0.0'} 993 + cpu: [x64] 994 + os: [freebsd] 995 + 996 + lightningcss-linux-arm-gnueabihf@1.32.0: 997 + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} 998 + engines: {node: '>= 12.0.0'} 999 + cpu: [arm] 1000 + os: [linux] 1001 + 1002 + lightningcss-linux-arm64-gnu@1.32.0: 1003 + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} 1004 + engines: {node: '>= 12.0.0'} 1005 + cpu: [arm64] 1006 + os: [linux] 1007 + 1008 + lightningcss-linux-arm64-musl@1.32.0: 1009 + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} 1010 + engines: {node: '>= 12.0.0'} 1011 + cpu: [arm64] 1012 + os: [linux] 1013 + 1014 + lightningcss-linux-x64-gnu@1.32.0: 1015 + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} 1016 + engines: {node: '>= 12.0.0'} 1017 + cpu: [x64] 1018 + os: [linux] 1019 + 1020 + lightningcss-linux-x64-musl@1.32.0: 1021 + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} 1022 + engines: {node: '>= 12.0.0'} 1023 + cpu: [x64] 1024 + os: [linux] 1025 + 1026 + lightningcss-win32-arm64-msvc@1.32.0: 1027 + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} 1028 + engines: {node: '>= 12.0.0'} 1029 + cpu: [arm64] 1030 + os: [win32] 1031 + 1032 + lightningcss-win32-x64-msvc@1.32.0: 1033 + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} 1034 + engines: {node: '>= 12.0.0'} 1035 + cpu: [x64] 1036 + os: [win32] 1037 + 1038 + lightningcss@1.32.0: 1039 + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} 1040 + engines: {node: '>= 12.0.0'} 1041 + 1042 + magic-string@0.30.21: 1043 + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} 1044 + 1045 + mri@1.2.0: 1046 + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 1047 + engines: {node: '>=4'} 1048 + 1049 + nanoid@3.3.15: 1050 + resolution: {integrity: sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==} 1051 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1052 + hasBin: true 1053 + 1054 + obug@2.1.3: 1055 + resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==} 1056 + engines: {node: '>=12.20.0'} 1057 + 1058 + oxc-parser@0.137.0: 1059 + resolution: {integrity: sha512-yFImD+WLElJpLKy8llG1qe4DCmMsL18peRp8XP1JKfig/gISbJkglnpDtX2aTmAn10kZF7164HbN2H8QPsXxGg==} 1060 + engines: {node: ^20.19.0 || >=22.12.0} 1061 + 1062 + oxc-resolver@11.21.3: 1063 + resolution: {integrity: sha512-2Mx3fKQz7+xgrBONjsxOgCGtMHOn38/HxMzW1I5efwXB5a4lRN0Vp40gYUJFBWJslcrvwoofTrqoTnLbwTd3pA==} 1064 + 1065 + oxfmt@0.47.0: 1066 + resolution: {integrity: sha512-OFbkbzxKCpooQEnRmpTDnuwTX8KHXzZTQ4Df/hz85fpS67Pl+lxPEFvUtin56HIIS0B1k4X8oIzTXRZPufA2CA==} 1067 + engines: {node: ^20.19.0 || >=22.12.0} 1068 + hasBin: true 1069 + 1070 + oxlint@1.71.0: 1071 + resolution: {integrity: sha512-U1m1X+C0vDj7DC1e13IoZULzEcPczE7UOMTs8VlZGHUEIUaSTZKo5qkPsQEfzpgnQ29Pea/w3Xntk62UCecxZw==} 1072 + engines: {node: ^20.19.0 || >=22.12.0} 1073 + hasBin: true 1074 + peerDependencies: 1075 + oxlint-tsgolint: '>=0.22.1' 1076 + vite-plus: '*' 1077 + peerDependenciesMeta: 1078 + oxlint-tsgolint: 1079 + optional: true 1080 + vite-plus: 1081 + optional: true 1082 + 1083 + package-manager-detector@1.6.0: 1084 + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 1085 + 1086 + pathe@2.0.3: 1087 + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 1088 + 1089 + picocolors@1.1.1: 1090 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1091 + 1092 + picomatch@4.0.4: 1093 + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} 1094 + engines: {node: '>=12'} 1095 + 1096 + postcss@8.5.15: 1097 + resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==} 1098 + engines: {node: ^10 || ^12 || >=14} 1099 + 1100 + publint@0.3.21: 1101 + resolution: {integrity: sha512-OqejcnMV6E9zel2oCrUOJEiiFkGiAAni0A6ibfQNh1k9Gu5z4F+Yso8lllam7AzmV6Do0vp7u3UpZNRBwuXaHQ==} 1102 + engines: {node: '>=18'} 1103 + hasBin: true 1104 + 1105 + quansync@1.0.0: 1106 + resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==} 1107 + 1108 + resolve-pkg-maps@1.0.0: 1109 + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1110 + 1111 + rolldown-plugin-dts@0.23.2: 1112 + resolution: {integrity: sha512-PbSqLawLgZBGcOGT3yqWBGn4cX+wh2nt5FuBGdcMHyOhoukmjbhYAl8NT9sE4U38Cm9tqLOIQeOrvzeayM0DLQ==} 1113 + engines: {node: '>=20.19.0'} 1114 + peerDependencies: 1115 + '@ts-macro/tsc': ^0.3.6 1116 + '@typescript/native-preview': '>=7.0.0-dev.20260325.1' 1117 + rolldown: ^1.0.0-rc.12 1118 + typescript: ^5.0.0 || ^6.0.0 1119 + vue-tsc: ~3.2.0 1120 + peerDependenciesMeta: 1121 + '@ts-macro/tsc': 1122 + optional: true 1123 + '@typescript/native-preview': 1124 + optional: true 1125 + typescript: 1126 + optional: true 1127 + vue-tsc: 1128 + optional: true 1129 + 1130 + rolldown@1.0.0-rc.17: 1131 + resolution: {integrity: sha512-ZrT53oAKrtA4+YtBWPQbtPOxIbVDbxT0orcYERKd63VJTF13zPcgXTvD4843L8pcsI7M6MErt8QtON6lrB9tyA==} 1132 + engines: {node: ^20.19.0 || >=22.12.0} 1133 + hasBin: true 1134 + 1135 + rolldown@1.1.2: 1136 + resolution: {integrity: sha512-x0CrQQqCXWGeI8dTvFfN/Dnv3yMKT9hv5jFjlOreKAx9wqLq9wz7VvLLHyaAXC90/CpggTu9SisSbsJJTPSjNQ==} 1137 + engines: {node: ^20.19.0 || >=22.12.0} 1138 + hasBin: true 1139 + 1140 + sade@1.8.1: 1141 + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 1142 + engines: {node: '>=6'} 1143 + 1144 + semver@7.8.5: 1145 + resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==} 1146 + engines: {node: '>=10'} 1147 + hasBin: true 1148 + 1149 + siginfo@2.0.0: 1150 + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 1151 + 1152 + smol-toml@1.7.0: 1153 + resolution: {integrity: sha512-aqVvWoyO21L23mb+drl4RmMXbf6N7FdHjAhTRA9ZBL7apWBgfWC16KjrASI+1p9GAroljyMHj6fK67i0UiTNvQ==} 1154 + engines: {node: '>= 18'} 1155 + 1156 + source-map-js@1.2.1: 1157 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1158 + engines: {node: '>=0.10.0'} 1159 + 1160 + stackback@0.0.2: 1161 + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 1162 + 1163 + std-env@4.1.0: 1164 + resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==} 1165 + 1166 + strip-json-comments@5.0.3: 1167 + resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==} 1168 + engines: {node: '>=14.16'} 1169 + 1170 + tinybench@2.9.0: 1171 + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 1172 + 1173 + tinyexec@1.2.4: 1174 + resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==} 1175 + engines: {node: '>=18'} 1176 + 1177 + tinyglobby@0.2.17: 1178 + resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} 1179 + engines: {node: '>=12.0.0'} 1180 + 1181 + tinypool@2.1.0: 1182 + resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==} 1183 + engines: {node: ^20.0.0 || >=22.0.0} 1184 + 1185 + tinyrainbow@3.1.0: 1186 + resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} 1187 + engines: {node: '>=14.0.0'} 1188 + 1189 + tree-kill@1.2.2: 1190 + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 1191 + hasBin: true 1192 + 1193 + tsdown@0.21.10: 1194 + resolution: {integrity: sha512-3wk73yBhZe/wX7REqSdivNQ84TDs1mJ+IlnzrrEREP70xlJ/AEIzqaI04l/TzMKVIdkTdC3CPaADn2Lk/0SkdA==} 1195 + engines: {node: '>=20.19.0'} 1196 + hasBin: true 1197 + peerDependencies: 1198 + '@arethetypeswrong/core': ^0.18.1 1199 + '@tsdown/css': 0.21.10 1200 + '@tsdown/exe': 0.21.10 1201 + '@vitejs/devtools': '*' 1202 + publint: ^0.3.0 1203 + typescript: ^5.0.0 || ^6.0.0 1204 + unplugin-unused: ^0.5.0 1205 + peerDependenciesMeta: 1206 + '@arethetypeswrong/core': 1207 + optional: true 1208 + '@tsdown/css': 1209 + optional: true 1210 + '@tsdown/exe': 1211 + optional: true 1212 + '@vitejs/devtools': 1213 + optional: true 1214 + publint: 1215 + optional: true 1216 + typescript: 1217 + optional: true 1218 + unplugin-unused: 1219 + optional: true 1220 + 1221 + tslib@2.8.1: 1222 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1223 + 1224 + ultramatter@0.0.4: 1225 + resolution: {integrity: sha512-1f/hO3mR+/Hgue4eInOF/Qm/wzDqwhYha4DxM0hre9YIUyso3fE2XtrAU6B4njLqTC8CM49EZaYgsVSa+dXHGw==} 1226 + 1227 + unbash@4.0.1: 1228 + resolution: {integrity: sha512-1ajSo3813sDoVIHx4inJdUS4l5L2ic5cFiddemPiyjb/PZEoBAhFwHtbaEdRDFxbAKy7FCG7s5ww3/uCFawuIA==} 1229 + engines: {node: '>=14'} 1230 + 1231 + unconfig-core@7.5.0: 1232 + resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==} 1233 + 1234 + undici-types@8.3.0: 1235 + resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==} 1236 + 1237 + unrun@0.2.39: 1238 + resolution: {integrity: sha512-h9FxYVpztY/wwq+bauLOh6Y3CWu2IVeRLq5lxzneBiIU9Tn86OGp9xiQrGhnYspAmg5dzdY0Cc8+Y70kuTARCg==} 1239 + engines: {node: '>=20.19.0'} 1240 + hasBin: true 1241 + peerDependencies: 1242 + synckit: ^0.11.11 1243 + peerDependenciesMeta: 1244 + synckit: 1245 + optional: true 1246 + 1247 + vite@8.1.0: 1248 + resolution: {integrity: sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==} 1249 + engines: {node: ^20.19.0 || >=22.12.0} 1250 + hasBin: true 1251 + peerDependencies: 1252 + '@types/node': ^20.19.0 || >=22.12.0 1253 + '@vitejs/devtools': ^0.3.0 1254 + esbuild: ^0.27.0 || ^0.28.0 1255 + jiti: '>=1.21.0' 1256 + less: ^4.0.0 1257 + sass: ^1.70.0 1258 + sass-embedded: ^1.70.0 1259 + stylus: '>=0.54.8' 1260 + sugarss: ^5.0.0 1261 + terser: ^5.16.0 1262 + tsx: ^4.8.1 1263 + yaml: ^2.4.2 1264 + peerDependenciesMeta: 1265 + '@types/node': 1266 + optional: true 1267 + '@vitejs/devtools': 1268 + optional: true 1269 + esbuild: 1270 + optional: true 1271 + jiti: 1272 + optional: true 1273 + less: 1274 + optional: true 1275 + sass: 1276 + optional: true 1277 + sass-embedded: 1278 + optional: true 1279 + stylus: 1280 + optional: true 1281 + sugarss: 1282 + optional: true 1283 + terser: 1284 + optional: true 1285 + tsx: 1286 + optional: true 1287 + yaml: 1288 + optional: true 1289 + 1290 + vitest-ansi-serializer@0.2.1: 1291 + resolution: {integrity: sha512-IC60vT8raDlHwk2tZAy9wfetJMJkVOGC50jyjcC1HTYBAYfJEXVeKe72Jd5Jzcw1Xt73Nri2cdE98p+K2mnDrA==} 1292 + peerDependencies: 1293 + vitest: ^3.0.0 || ^4.0.0 1294 + 1295 + vitest@4.1.9: 1296 + resolution: {integrity: sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==} 1297 + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} 1298 + hasBin: true 1299 + peerDependencies: 1300 + '@edge-runtime/vm': '*' 1301 + '@opentelemetry/api': ^1.9.0 1302 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 1303 + '@vitest/browser-playwright': 4.1.9 1304 + '@vitest/browser-preview': 4.1.9 1305 + '@vitest/browser-webdriverio': 4.1.9 1306 + '@vitest/coverage-istanbul': 4.1.9 1307 + '@vitest/coverage-v8': 4.1.9 1308 + '@vitest/ui': 4.1.9 1309 + happy-dom: '*' 1310 + jsdom: '*' 1311 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 1312 + peerDependenciesMeta: 1313 + '@edge-runtime/vm': 1314 + optional: true 1315 + '@opentelemetry/api': 1316 + optional: true 1317 + '@types/node': 1318 + optional: true 1319 + '@vitest/browser-playwright': 1320 + optional: true 1321 + '@vitest/browser-preview': 1322 + optional: true 1323 + '@vitest/browser-webdriverio': 1324 + optional: true 1325 + '@vitest/coverage-istanbul': 1326 + optional: true 1327 + '@vitest/coverage-v8': 1328 + optional: true 1329 + '@vitest/ui': 1330 + optional: true 1331 + happy-dom: 1332 + optional: true 1333 + jsdom: 1334 + optional: true 1335 + 1336 + walk-up-path@4.0.0: 1337 + resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} 1338 + engines: {node: 20 || >=22} 1339 + 1340 + why-is-node-running@2.3.0: 1341 + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 1342 + engines: {node: '>=8'} 1343 + hasBin: true 1344 + 1345 + yaml@2.9.0: 1346 + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} 1347 + engines: {node: '>= 14.6'} 1348 + hasBin: true 1349 + 1350 + zod@4.4.3: 1351 + resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} 1352 + 1353 + snapshots: 1354 + 1355 + '@babel/generator@8.0.0-rc.3': 1356 + dependencies: 1357 + '@babel/parser': 8.0.0-rc.3 1358 + '@babel/types': 8.0.0-rc.3 1359 + '@jridgewell/gen-mapping': 0.3.13 1360 + '@jridgewell/trace-mapping': 0.3.31 1361 + '@types/jsesc': 2.5.1 1362 + jsesc: 3.1.0 1363 + 1364 + '@babel/helper-string-parser@8.0.0': {} 1365 + 1366 + '@babel/helper-validator-identifier@8.0.0-rc.3': {} 1367 + 1368 + '@babel/helper-validator-identifier@8.0.2': {} 1369 + 1370 + '@babel/parser@8.0.0': 1371 + dependencies: 1372 + '@babel/types': 8.0.0 1373 + 1374 + '@babel/parser@8.0.0-rc.3': 1375 + dependencies: 1376 + '@babel/types': 8.0.0-rc.3 1377 + 1378 + '@babel/types@8.0.0': 1379 + dependencies: 1380 + '@babel/helper-string-parser': 8.0.0 1381 + '@babel/helper-validator-identifier': 8.0.2 1382 + 1383 + '@babel/types@8.0.0-rc.3': 1384 + dependencies: 1385 + '@babel/helper-string-parser': 8.0.0 1386 + '@babel/helper-validator-identifier': 8.0.0-rc.3 1387 + 1388 + '@bomb.sh/args@0.3.1': {} 1389 + 1390 + '@bomb.sh/tools@0.5.3(@types/node@26.0.0)(oxc-resolver@11.21.3)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0))': 1391 + dependencies: 1392 + '@bomb.sh/args': 0.3.1 1393 + '@humanfs/node': 0.16.8 1394 + '@humanfs/types': 0.15.0 1395 + '@typescript/native-preview': 7.0.0-dev.20260427.1 1396 + knip: 6.18.0 1397 + oxfmt: 0.47.0 1398 + oxlint: 1.71.0 1399 + publint: 0.3.21 1400 + tinyexec: 1.2.4 1401 + tsdown: 0.21.10(@typescript/native-preview@7.0.0-dev.20260427.1)(oxc-resolver@11.21.3)(publint@0.3.21) 1402 + ultramatter: 0.0.4 1403 + vitest: 4.1.9(@types/node@26.0.0)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0)) 1404 + vitest-ansi-serializer: 0.2.1(vitest@4.1.9(@types/node@26.0.0)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0))) 1405 + transitivePeerDependencies: 1406 + - '@arethetypeswrong/core' 1407 + - '@edge-runtime/vm' 1408 + - '@opentelemetry/api' 1409 + - '@ts-macro/tsc' 1410 + - '@tsdown/css' 1411 + - '@tsdown/exe' 1412 + - '@types/node' 1413 + - '@vitejs/devtools' 1414 + - '@vitest/browser-playwright' 1415 + - '@vitest/browser-preview' 1416 + - '@vitest/browser-webdriverio' 1417 + - '@vitest/coverage-istanbul' 1418 + - '@vitest/coverage-v8' 1419 + - '@vitest/ui' 1420 + - happy-dom 1421 + - jsdom 1422 + - msw 1423 + - oxc-resolver 1424 + - oxlint-tsgolint 1425 + - synckit 1426 + - typescript 1427 + - unplugin-unused 1428 + - vite 1429 + - vite-plus 1430 + - vue-tsc 1431 + 1432 + '@bomb.sh/tty@0.7.0': {} 1433 + 1434 + '@emnapi/core@1.10.0': 1435 + dependencies: 1436 + '@emnapi/wasi-threads': 1.2.1 1437 + tslib: 2.8.1 1438 + optional: true 1439 + 1440 + '@emnapi/core@1.11.0': 1441 + dependencies: 1442 + '@emnapi/wasi-threads': 1.2.2 1443 + tslib: 2.8.1 1444 + optional: true 1445 + 1446 + '@emnapi/core@1.11.1': 1447 + dependencies: 1448 + '@emnapi/wasi-threads': 1.2.2 1449 + tslib: 2.8.1 1450 + optional: true 1451 + 1452 + '@emnapi/runtime@1.10.0': 1453 + dependencies: 1454 + tslib: 2.8.1 1455 + optional: true 1456 + 1457 + '@emnapi/runtime@1.11.0': 1458 + dependencies: 1459 + tslib: 2.8.1 1460 + optional: true 1461 + 1462 + '@emnapi/runtime@1.11.1': 1463 + dependencies: 1464 + tslib: 2.8.1 1465 + optional: true 1466 + 1467 + '@emnapi/wasi-threads@1.2.1': 1468 + dependencies: 1469 + tslib: 2.8.1 1470 + optional: true 1471 + 1472 + '@emnapi/wasi-threads@1.2.2': 1473 + dependencies: 1474 + tslib: 2.8.1 1475 + optional: true 1476 + 1477 + '@humanfs/core@0.19.2': 1478 + dependencies: 1479 + '@humanfs/types': 0.15.0 1480 + 1481 + '@humanfs/node@0.16.8': 1482 + dependencies: 1483 + '@humanfs/core': 0.19.2 1484 + '@humanfs/types': 0.15.0 1485 + '@humanwhocodes/retry': 0.4.3 1486 + 1487 + '@humanfs/types@0.15.0': {} 1488 + 1489 + '@humanwhocodes/retry@0.4.3': {} 1490 + 1491 + '@jridgewell/gen-mapping@0.3.13': 1492 + dependencies: 1493 + '@jridgewell/sourcemap-codec': 1.5.5 1494 + '@jridgewell/trace-mapping': 0.3.31 1495 + 1496 + '@jridgewell/resolve-uri@3.1.2': {} 1497 + 1498 + '@jridgewell/sourcemap-codec@1.5.5': {} 1499 + 1500 + '@jridgewell/trace-mapping@0.3.31': 1501 + dependencies: 1502 + '@jridgewell/resolve-uri': 3.1.2 1503 + '@jridgewell/sourcemap-codec': 1.5.5 1504 + 1505 + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': 1506 + dependencies: 1507 + '@emnapi/core': 1.10.0 1508 + '@emnapi/runtime': 1.10.0 1509 + '@tybys/wasm-util': 0.10.3 1510 + optional: true 1511 + 1512 + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)': 1513 + dependencies: 1514 + '@emnapi/core': 1.11.0 1515 + '@emnapi/runtime': 1.11.0 1516 + '@tybys/wasm-util': 0.10.3 1517 + optional: true 1518 + 1519 + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': 1520 + dependencies: 1521 + '@emnapi/core': 1.11.1 1522 + '@emnapi/runtime': 1.11.1 1523 + '@tybys/wasm-util': 0.10.3 1524 + optional: true 1525 + 1526 + '@oxc-parser/binding-android-arm-eabi@0.137.0': 1527 + optional: true 1528 + 1529 + '@oxc-parser/binding-android-arm64@0.137.0': 1530 + optional: true 1531 + 1532 + '@oxc-parser/binding-darwin-arm64@0.137.0': 1533 + optional: true 1534 + 1535 + '@oxc-parser/binding-darwin-x64@0.137.0': 1536 + optional: true 1537 + 1538 + '@oxc-parser/binding-freebsd-x64@0.137.0': 1539 + optional: true 1540 + 1541 + '@oxc-parser/binding-linux-arm-gnueabihf@0.137.0': 1542 + optional: true 1543 + 1544 + '@oxc-parser/binding-linux-arm-musleabihf@0.137.0': 1545 + optional: true 1546 + 1547 + '@oxc-parser/binding-linux-arm64-gnu@0.137.0': 1548 + optional: true 1549 + 1550 + '@oxc-parser/binding-linux-arm64-musl@0.137.0': 1551 + optional: true 1552 + 1553 + '@oxc-parser/binding-linux-ppc64-gnu@0.137.0': 1554 + optional: true 1555 + 1556 + '@oxc-parser/binding-linux-riscv64-gnu@0.137.0': 1557 + optional: true 1558 + 1559 + '@oxc-parser/binding-linux-riscv64-musl@0.137.0': 1560 + optional: true 1561 + 1562 + '@oxc-parser/binding-linux-s390x-gnu@0.137.0': 1563 + optional: true 1564 + 1565 + '@oxc-parser/binding-linux-x64-gnu@0.137.0': 1566 + optional: true 1567 + 1568 + '@oxc-parser/binding-linux-x64-musl@0.137.0': 1569 + optional: true 1570 + 1571 + '@oxc-parser/binding-openharmony-arm64@0.137.0': 1572 + optional: true 1573 + 1574 + '@oxc-parser/binding-wasm32-wasi@0.137.0': 1575 + dependencies: 1576 + '@emnapi/core': 1.11.1 1577 + '@emnapi/runtime': 1.11.1 1578 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) 1579 + optional: true 1580 + 1581 + '@oxc-parser/binding-win32-arm64-msvc@0.137.0': 1582 + optional: true 1583 + 1584 + '@oxc-parser/binding-win32-ia32-msvc@0.137.0': 1585 + optional: true 1586 + 1587 + '@oxc-parser/binding-win32-x64-msvc@0.137.0': 1588 + optional: true 1589 + 1590 + '@oxc-project/types@0.127.0': {} 1591 + 1592 + '@oxc-project/types@0.137.0': {} 1593 + 1594 + '@oxc-resolver/binding-android-arm-eabi@11.21.3': 1595 + optional: true 1596 + 1597 + '@oxc-resolver/binding-android-arm64@11.21.3': 1598 + optional: true 1599 + 1600 + '@oxc-resolver/binding-darwin-arm64@11.21.3': 1601 + optional: true 1602 + 1603 + '@oxc-resolver/binding-darwin-x64@11.21.3': 1604 + optional: true 1605 + 1606 + '@oxc-resolver/binding-freebsd-x64@11.21.3': 1607 + optional: true 1608 + 1609 + '@oxc-resolver/binding-linux-arm-gnueabihf@11.21.3': 1610 + optional: true 1611 + 1612 + '@oxc-resolver/binding-linux-arm-musleabihf@11.21.3': 1613 + optional: true 1614 + 1615 + '@oxc-resolver/binding-linux-arm64-gnu@11.21.3': 1616 + optional: true 1617 + 1618 + '@oxc-resolver/binding-linux-arm64-musl@11.21.3': 1619 + optional: true 1620 + 1621 + '@oxc-resolver/binding-linux-ppc64-gnu@11.21.3': 1622 + optional: true 1623 + 1624 + '@oxc-resolver/binding-linux-riscv64-gnu@11.21.3': 1625 + optional: true 1626 + 1627 + '@oxc-resolver/binding-linux-riscv64-musl@11.21.3': 1628 + optional: true 1629 + 1630 + '@oxc-resolver/binding-linux-s390x-gnu@11.21.3': 1631 + optional: true 1632 + 1633 + '@oxc-resolver/binding-linux-x64-gnu@11.21.3': 1634 + optional: true 1635 + 1636 + '@oxc-resolver/binding-linux-x64-musl@11.21.3': 1637 + optional: true 1638 + 1639 + '@oxc-resolver/binding-openharmony-arm64@11.21.3': 1640 + optional: true 1641 + 1642 + '@oxc-resolver/binding-wasm32-wasi@11.21.3': 1643 + dependencies: 1644 + '@emnapi/core': 1.11.0 1645 + '@emnapi/runtime': 1.11.0 1646 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0) 1647 + optional: true 1648 + 1649 + '@oxc-resolver/binding-win32-arm64-msvc@11.21.3': 1650 + optional: true 1651 + 1652 + '@oxc-resolver/binding-win32-x64-msvc@11.21.3': 1653 + optional: true 1654 + 1655 + '@oxfmt/binding-android-arm-eabi@0.47.0': 1656 + optional: true 1657 + 1658 + '@oxfmt/binding-android-arm64@0.47.0': 1659 + optional: true 1660 + 1661 + '@oxfmt/binding-darwin-arm64@0.47.0': 1662 + optional: true 1663 + 1664 + '@oxfmt/binding-darwin-x64@0.47.0': 1665 + optional: true 1666 + 1667 + '@oxfmt/binding-freebsd-x64@0.47.0': 1668 + optional: true 1669 + 1670 + '@oxfmt/binding-linux-arm-gnueabihf@0.47.0': 1671 + optional: true 1672 + 1673 + '@oxfmt/binding-linux-arm-musleabihf@0.47.0': 1674 + optional: true 1675 + 1676 + '@oxfmt/binding-linux-arm64-gnu@0.47.0': 1677 + optional: true 1678 + 1679 + '@oxfmt/binding-linux-arm64-musl@0.47.0': 1680 + optional: true 1681 + 1682 + '@oxfmt/binding-linux-ppc64-gnu@0.47.0': 1683 + optional: true 1684 + 1685 + '@oxfmt/binding-linux-riscv64-gnu@0.47.0': 1686 + optional: true 1687 + 1688 + '@oxfmt/binding-linux-riscv64-musl@0.47.0': 1689 + optional: true 1690 + 1691 + '@oxfmt/binding-linux-s390x-gnu@0.47.0': 1692 + optional: true 1693 + 1694 + '@oxfmt/binding-linux-x64-gnu@0.47.0': 1695 + optional: true 1696 + 1697 + '@oxfmt/binding-linux-x64-musl@0.47.0': 1698 + optional: true 1699 + 1700 + '@oxfmt/binding-openharmony-arm64@0.47.0': 1701 + optional: true 1702 + 1703 + '@oxfmt/binding-win32-arm64-msvc@0.47.0': 1704 + optional: true 1705 + 1706 + '@oxfmt/binding-win32-ia32-msvc@0.47.0': 1707 + optional: true 1708 + 1709 + '@oxfmt/binding-win32-x64-msvc@0.47.0': 1710 + optional: true 1711 + 1712 + '@oxlint/binding-android-arm-eabi@1.71.0': 1713 + optional: true 1714 + 1715 + '@oxlint/binding-android-arm64@1.71.0': 1716 + optional: true 1717 + 1718 + '@oxlint/binding-darwin-arm64@1.71.0': 1719 + optional: true 1720 + 1721 + '@oxlint/binding-darwin-x64@1.71.0': 1722 + optional: true 1723 + 1724 + '@oxlint/binding-freebsd-x64@1.71.0': 1725 + optional: true 1726 + 1727 + '@oxlint/binding-linux-arm-gnueabihf@1.71.0': 1728 + optional: true 1729 + 1730 + '@oxlint/binding-linux-arm-musleabihf@1.71.0': 1731 + optional: true 1732 + 1733 + '@oxlint/binding-linux-arm64-gnu@1.71.0': 1734 + optional: true 1735 + 1736 + '@oxlint/binding-linux-arm64-musl@1.71.0': 1737 + optional: true 1738 + 1739 + '@oxlint/binding-linux-ppc64-gnu@1.71.0': 1740 + optional: true 1741 + 1742 + '@oxlint/binding-linux-riscv64-gnu@1.71.0': 1743 + optional: true 1744 + 1745 + '@oxlint/binding-linux-riscv64-musl@1.71.0': 1746 + optional: true 1747 + 1748 + '@oxlint/binding-linux-s390x-gnu@1.71.0': 1749 + optional: true 1750 + 1751 + '@oxlint/binding-linux-x64-gnu@1.71.0': 1752 + optional: true 1753 + 1754 + '@oxlint/binding-linux-x64-musl@1.71.0': 1755 + optional: true 1756 + 1757 + '@oxlint/binding-openharmony-arm64@1.71.0': 1758 + optional: true 1759 + 1760 + '@oxlint/binding-win32-arm64-msvc@1.71.0': 1761 + optional: true 1762 + 1763 + '@oxlint/binding-win32-ia32-msvc@1.71.0': 1764 + optional: true 1765 + 1766 + '@oxlint/binding-win32-x64-msvc@1.71.0': 1767 + optional: true 1768 + 1769 + '@publint/pack@0.1.5': 1770 + dependencies: 1771 + tinyexec: 1.2.4 1772 + 1773 + '@quansync/fs@1.0.0': 1774 + dependencies: 1775 + quansync: 1.0.0 1776 + 1777 + '@rolldown/binding-android-arm64@1.0.0-rc.17': 1778 + optional: true 1779 + 1780 + '@rolldown/binding-android-arm64@1.1.2': 1781 + optional: true 1782 + 1783 + '@rolldown/binding-darwin-arm64@1.0.0-rc.17': 1784 + optional: true 1785 + 1786 + '@rolldown/binding-darwin-arm64@1.1.2': 1787 + optional: true 1788 + 1789 + '@rolldown/binding-darwin-x64@1.0.0-rc.17': 1790 + optional: true 1791 + 1792 + '@rolldown/binding-darwin-x64@1.1.2': 1793 + optional: true 1794 + 1795 + '@rolldown/binding-freebsd-x64@1.0.0-rc.17': 1796 + optional: true 1797 + 1798 + '@rolldown/binding-freebsd-x64@1.1.2': 1799 + optional: true 1800 + 1801 + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.17': 1802 + optional: true 1803 + 1804 + '@rolldown/binding-linux-arm-gnueabihf@1.1.2': 1805 + optional: true 1806 + 1807 + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.17': 1808 + optional: true 1809 + 1810 + '@rolldown/binding-linux-arm64-gnu@1.1.2': 1811 + optional: true 1812 + 1813 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.17': 1814 + optional: true 1815 + 1816 + '@rolldown/binding-linux-arm64-musl@1.1.2': 1817 + optional: true 1818 + 1819 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.17': 1820 + optional: true 1821 + 1822 + '@rolldown/binding-linux-ppc64-gnu@1.1.2': 1823 + optional: true 1824 + 1825 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.17': 1826 + optional: true 1827 + 1828 + '@rolldown/binding-linux-s390x-gnu@1.1.2': 1829 + optional: true 1830 + 1831 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.17': 1832 + optional: true 1833 + 1834 + '@rolldown/binding-linux-x64-gnu@1.1.2': 1835 + optional: true 1836 + 1837 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.17': 1838 + optional: true 1839 + 1840 + '@rolldown/binding-linux-x64-musl@1.1.2': 1841 + optional: true 1842 + 1843 + '@rolldown/binding-openharmony-arm64@1.0.0-rc.17': 1844 + optional: true 1845 + 1846 + '@rolldown/binding-openharmony-arm64@1.1.2': 1847 + optional: true 1848 + 1849 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.17': 1850 + dependencies: 1851 + '@emnapi/core': 1.10.0 1852 + '@emnapi/runtime': 1.10.0 1853 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) 1854 + optional: true 1855 + 1856 + '@rolldown/binding-wasm32-wasi@1.1.2': 1857 + dependencies: 1858 + '@emnapi/core': 1.11.1 1859 + '@emnapi/runtime': 1.11.1 1860 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) 1861 + optional: true 1862 + 1863 + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.17': 1864 + optional: true 1865 + 1866 + '@rolldown/binding-win32-arm64-msvc@1.1.2': 1867 + optional: true 1868 + 1869 + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.17': 1870 + optional: true 1871 + 1872 + '@rolldown/binding-win32-x64-msvc@1.1.2': 1873 + optional: true 1874 + 1875 + '@rolldown/pluginutils@1.0.0-rc.17': {} 1876 + 1877 + '@rolldown/pluginutils@1.0.1': {} 1878 + 1879 + '@standard-schema/spec@1.1.0': {} 1880 + 1881 + '@tybys/wasm-util@0.10.3': 1882 + dependencies: 1883 + tslib: 2.8.1 1884 + optional: true 1885 + 1886 + '@types/chai@5.2.3': 1887 + dependencies: 1888 + '@types/deep-eql': 4.0.2 1889 + assertion-error: 2.0.1 1890 + 1891 + '@types/deep-eql@4.0.2': {} 1892 + 1893 + '@types/estree@1.0.9': {} 1894 + 1895 + '@types/jsesc@2.5.1': {} 1896 + 1897 + '@types/node@26.0.0': 1898 + dependencies: 1899 + undici-types: 8.3.0 1900 + 1901 + '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260427.1': 1902 + optional: true 1903 + 1904 + '@typescript/native-preview-darwin-x64@7.0.0-dev.20260427.1': 1905 + optional: true 1906 + 1907 + '@typescript/native-preview-linux-arm64@7.0.0-dev.20260427.1': 1908 + optional: true 1909 + 1910 + '@typescript/native-preview-linux-arm@7.0.0-dev.20260427.1': 1911 + optional: true 1912 + 1913 + '@typescript/native-preview-linux-x64@7.0.0-dev.20260427.1': 1914 + optional: true 1915 + 1916 + '@typescript/native-preview-win32-arm64@7.0.0-dev.20260427.1': 1917 + optional: true 1918 + 1919 + '@typescript/native-preview-win32-x64@7.0.0-dev.20260427.1': 1920 + optional: true 1921 + 1922 + '@typescript/native-preview@7.0.0-dev.20260427.1': 1923 + optionalDependencies: 1924 + '@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260427.1 1925 + '@typescript/native-preview-darwin-x64': 7.0.0-dev.20260427.1 1926 + '@typescript/native-preview-linux-arm': 7.0.0-dev.20260427.1 1927 + '@typescript/native-preview-linux-arm64': 7.0.0-dev.20260427.1 1928 + '@typescript/native-preview-linux-x64': 7.0.0-dev.20260427.1 1929 + '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260427.1 1930 + '@typescript/native-preview-win32-x64': 7.0.0-dev.20260427.1 1931 + 1932 + '@vitest/expect@4.1.9': 1933 + dependencies: 1934 + '@standard-schema/spec': 1.1.0 1935 + '@types/chai': 5.2.3 1936 + '@vitest/spy': 4.1.9 1937 + '@vitest/utils': 4.1.9 1938 + chai: 6.2.2 1939 + tinyrainbow: 3.1.0 1940 + 1941 + '@vitest/mocker@4.1.9(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0))': 1942 + dependencies: 1943 + '@vitest/spy': 4.1.9 1944 + estree-walker: 3.0.3 1945 + magic-string: 0.30.21 1946 + optionalDependencies: 1947 + vite: 8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0) 1948 + 1949 + '@vitest/pretty-format@4.1.9': 1950 + dependencies: 1951 + tinyrainbow: 3.1.0 1952 + 1953 + '@vitest/runner@4.1.9': 1954 + dependencies: 1955 + '@vitest/utils': 4.1.9 1956 + pathe: 2.0.3 1957 + 1958 + '@vitest/snapshot@4.1.9': 1959 + dependencies: 1960 + '@vitest/pretty-format': 4.1.9 1961 + '@vitest/utils': 4.1.9 1962 + magic-string: 0.30.21 1963 + pathe: 2.0.3 1964 + 1965 + '@vitest/spy@4.1.9': {} 1966 + 1967 + '@vitest/utils@4.1.9': 1968 + dependencies: 1969 + '@vitest/pretty-format': 4.1.9 1970 + convert-source-map: 2.0.0 1971 + tinyrainbow: 3.1.0 1972 + 1973 + ansis@4.3.1: {} 1974 + 1975 + assertion-error@2.0.1: {} 1976 + 1977 + ast-kit@3.0.0: 1978 + dependencies: 1979 + '@babel/parser': 8.0.0 1980 + estree-walker: 3.0.3 1981 + pathe: 2.0.3 1982 + 1983 + birpc@4.0.0: {} 1984 + 1985 + cac@7.0.0: {} 1986 + 1987 + chai@6.2.2: {} 1988 + 1989 + convert-source-map@2.0.0: {} 1990 + 1991 + defu@6.1.7: {} 1992 + 1993 + detect-libc@2.1.2: {} 1994 + 1995 + dts-resolver@2.1.3(oxc-resolver@11.21.3): 1996 + optionalDependencies: 1997 + oxc-resolver: 11.21.3 1998 + 1999 + empathic@2.0.1: {} 2000 + 2001 + es-module-lexer@2.1.0: {} 2002 + 2003 + estree-walker@3.0.3: 2004 + dependencies: 2005 + '@types/estree': 1.0.9 2006 + 2007 + expect-type@1.3.0: {} 2008 + 2009 + fd-package-json@2.0.0: 2010 + dependencies: 2011 + walk-up-path: 4.0.0 2012 + 2013 + fdir@6.5.0(picomatch@4.0.4): 2014 + optionalDependencies: 2015 + picomatch: 4.0.4 2016 + 2017 + formatly@0.3.0: 2018 + dependencies: 2019 + fd-package-json: 2.0.0 2020 + 2021 + fsevents@2.3.3: 2022 + optional: true 2023 + 2024 + get-tsconfig@4.14.0: 2025 + dependencies: 2026 + resolve-pkg-maps: 1.0.0 2027 + 2028 + hookable@6.1.1: {} 2029 + 2030 + import-without-cache@0.3.3: {} 2031 + 2032 + jiti@2.7.0: {} 2033 + 2034 + jsesc@3.1.0: {} 2035 + 2036 + knip@6.18.0: 2037 + dependencies: 2038 + fdir: 6.5.0(picomatch@4.0.4) 2039 + formatly: 0.3.0 2040 + get-tsconfig: 4.14.0 2041 + jiti: 2.7.0 2042 + oxc-parser: 0.137.0 2043 + oxc-resolver: 11.21.3 2044 + picomatch: 4.0.4 2045 + smol-toml: 1.7.0 2046 + strip-json-comments: 5.0.3 2047 + tinyglobby: 0.2.17 2048 + unbash: 4.0.1 2049 + yaml: 2.9.0 2050 + zod: 4.4.3 2051 + 2052 + lightningcss-android-arm64@1.32.0: 2053 + optional: true 2054 + 2055 + lightningcss-darwin-arm64@1.32.0: 2056 + optional: true 2057 + 2058 + lightningcss-darwin-x64@1.32.0: 2059 + optional: true 2060 + 2061 + lightningcss-freebsd-x64@1.32.0: 2062 + optional: true 2063 + 2064 + lightningcss-linux-arm-gnueabihf@1.32.0: 2065 + optional: true 2066 + 2067 + lightningcss-linux-arm64-gnu@1.32.0: 2068 + optional: true 2069 + 2070 + lightningcss-linux-arm64-musl@1.32.0: 2071 + optional: true 2072 + 2073 + lightningcss-linux-x64-gnu@1.32.0: 2074 + optional: true 2075 + 2076 + lightningcss-linux-x64-musl@1.32.0: 2077 + optional: true 2078 + 2079 + lightningcss-win32-arm64-msvc@1.32.0: 2080 + optional: true 2081 + 2082 + lightningcss-win32-x64-msvc@1.32.0: 2083 + optional: true 2084 + 2085 + lightningcss@1.32.0: 2086 + dependencies: 2087 + detect-libc: 2.1.2 2088 + optionalDependencies: 2089 + lightningcss-android-arm64: 1.32.0 2090 + lightningcss-darwin-arm64: 1.32.0 2091 + lightningcss-darwin-x64: 1.32.0 2092 + lightningcss-freebsd-x64: 1.32.0 2093 + lightningcss-linux-arm-gnueabihf: 1.32.0 2094 + lightningcss-linux-arm64-gnu: 1.32.0 2095 + lightningcss-linux-arm64-musl: 1.32.0 2096 + lightningcss-linux-x64-gnu: 1.32.0 2097 + lightningcss-linux-x64-musl: 1.32.0 2098 + lightningcss-win32-arm64-msvc: 1.32.0 2099 + lightningcss-win32-x64-msvc: 1.32.0 2100 + 2101 + magic-string@0.30.21: 2102 + dependencies: 2103 + '@jridgewell/sourcemap-codec': 1.5.5 2104 + 2105 + mri@1.2.0: {} 2106 + 2107 + nanoid@3.3.15: {} 2108 + 2109 + obug@2.1.3: {} 2110 + 2111 + oxc-parser@0.137.0: 2112 + dependencies: 2113 + '@oxc-project/types': 0.137.0 2114 + optionalDependencies: 2115 + '@oxc-parser/binding-android-arm-eabi': 0.137.0 2116 + '@oxc-parser/binding-android-arm64': 0.137.0 2117 + '@oxc-parser/binding-darwin-arm64': 0.137.0 2118 + '@oxc-parser/binding-darwin-x64': 0.137.0 2119 + '@oxc-parser/binding-freebsd-x64': 0.137.0 2120 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.137.0 2121 + '@oxc-parser/binding-linux-arm-musleabihf': 0.137.0 2122 + '@oxc-parser/binding-linux-arm64-gnu': 0.137.0 2123 + '@oxc-parser/binding-linux-arm64-musl': 0.137.0 2124 + '@oxc-parser/binding-linux-ppc64-gnu': 0.137.0 2125 + '@oxc-parser/binding-linux-riscv64-gnu': 0.137.0 2126 + '@oxc-parser/binding-linux-riscv64-musl': 0.137.0 2127 + '@oxc-parser/binding-linux-s390x-gnu': 0.137.0 2128 + '@oxc-parser/binding-linux-x64-gnu': 0.137.0 2129 + '@oxc-parser/binding-linux-x64-musl': 0.137.0 2130 + '@oxc-parser/binding-openharmony-arm64': 0.137.0 2131 + '@oxc-parser/binding-wasm32-wasi': 0.137.0 2132 + '@oxc-parser/binding-win32-arm64-msvc': 0.137.0 2133 + '@oxc-parser/binding-win32-ia32-msvc': 0.137.0 2134 + '@oxc-parser/binding-win32-x64-msvc': 0.137.0 2135 + 2136 + oxc-resolver@11.21.3: 2137 + optionalDependencies: 2138 + '@oxc-resolver/binding-android-arm-eabi': 11.21.3 2139 + '@oxc-resolver/binding-android-arm64': 11.21.3 2140 + '@oxc-resolver/binding-darwin-arm64': 11.21.3 2141 + '@oxc-resolver/binding-darwin-x64': 11.21.3 2142 + '@oxc-resolver/binding-freebsd-x64': 11.21.3 2143 + '@oxc-resolver/binding-linux-arm-gnueabihf': 11.21.3 2144 + '@oxc-resolver/binding-linux-arm-musleabihf': 11.21.3 2145 + '@oxc-resolver/binding-linux-arm64-gnu': 11.21.3 2146 + '@oxc-resolver/binding-linux-arm64-musl': 11.21.3 2147 + '@oxc-resolver/binding-linux-ppc64-gnu': 11.21.3 2148 + '@oxc-resolver/binding-linux-riscv64-gnu': 11.21.3 2149 + '@oxc-resolver/binding-linux-riscv64-musl': 11.21.3 2150 + '@oxc-resolver/binding-linux-s390x-gnu': 11.21.3 2151 + '@oxc-resolver/binding-linux-x64-gnu': 11.21.3 2152 + '@oxc-resolver/binding-linux-x64-musl': 11.21.3 2153 + '@oxc-resolver/binding-openharmony-arm64': 11.21.3 2154 + '@oxc-resolver/binding-wasm32-wasi': 11.21.3 2155 + '@oxc-resolver/binding-win32-arm64-msvc': 11.21.3 2156 + '@oxc-resolver/binding-win32-x64-msvc': 11.21.3 2157 + 2158 + oxfmt@0.47.0: 2159 + dependencies: 2160 + tinypool: 2.1.0 2161 + optionalDependencies: 2162 + '@oxfmt/binding-android-arm-eabi': 0.47.0 2163 + '@oxfmt/binding-android-arm64': 0.47.0 2164 + '@oxfmt/binding-darwin-arm64': 0.47.0 2165 + '@oxfmt/binding-darwin-x64': 0.47.0 2166 + '@oxfmt/binding-freebsd-x64': 0.47.0 2167 + '@oxfmt/binding-linux-arm-gnueabihf': 0.47.0 2168 + '@oxfmt/binding-linux-arm-musleabihf': 0.47.0 2169 + '@oxfmt/binding-linux-arm64-gnu': 0.47.0 2170 + '@oxfmt/binding-linux-arm64-musl': 0.47.0 2171 + '@oxfmt/binding-linux-ppc64-gnu': 0.47.0 2172 + '@oxfmt/binding-linux-riscv64-gnu': 0.47.0 2173 + '@oxfmt/binding-linux-riscv64-musl': 0.47.0 2174 + '@oxfmt/binding-linux-s390x-gnu': 0.47.0 2175 + '@oxfmt/binding-linux-x64-gnu': 0.47.0 2176 + '@oxfmt/binding-linux-x64-musl': 0.47.0 2177 + '@oxfmt/binding-openharmony-arm64': 0.47.0 2178 + '@oxfmt/binding-win32-arm64-msvc': 0.47.0 2179 + '@oxfmt/binding-win32-ia32-msvc': 0.47.0 2180 + '@oxfmt/binding-win32-x64-msvc': 0.47.0 2181 + 2182 + oxlint@1.71.0: 2183 + optionalDependencies: 2184 + '@oxlint/binding-android-arm-eabi': 1.71.0 2185 + '@oxlint/binding-android-arm64': 1.71.0 2186 + '@oxlint/binding-darwin-arm64': 1.71.0 2187 + '@oxlint/binding-darwin-x64': 1.71.0 2188 + '@oxlint/binding-freebsd-x64': 1.71.0 2189 + '@oxlint/binding-linux-arm-gnueabihf': 1.71.0 2190 + '@oxlint/binding-linux-arm-musleabihf': 1.71.0 2191 + '@oxlint/binding-linux-arm64-gnu': 1.71.0 2192 + '@oxlint/binding-linux-arm64-musl': 1.71.0 2193 + '@oxlint/binding-linux-ppc64-gnu': 1.71.0 2194 + '@oxlint/binding-linux-riscv64-gnu': 1.71.0 2195 + '@oxlint/binding-linux-riscv64-musl': 1.71.0 2196 + '@oxlint/binding-linux-s390x-gnu': 1.71.0 2197 + '@oxlint/binding-linux-x64-gnu': 1.71.0 2198 + '@oxlint/binding-linux-x64-musl': 1.71.0 2199 + '@oxlint/binding-openharmony-arm64': 1.71.0 2200 + '@oxlint/binding-win32-arm64-msvc': 1.71.0 2201 + '@oxlint/binding-win32-ia32-msvc': 1.71.0 2202 + '@oxlint/binding-win32-x64-msvc': 1.71.0 2203 + 2204 + package-manager-detector@1.6.0: {} 2205 + 2206 + pathe@2.0.3: {} 2207 + 2208 + picocolors@1.1.1: {} 2209 + 2210 + picomatch@4.0.4: {} 2211 + 2212 + postcss@8.5.15: 2213 + dependencies: 2214 + nanoid: 3.3.15 2215 + picocolors: 1.1.1 2216 + source-map-js: 1.2.1 2217 + 2218 + publint@0.3.21: 2219 + dependencies: 2220 + '@publint/pack': 0.1.5 2221 + package-manager-detector: 1.6.0 2222 + picocolors: 1.1.1 2223 + sade: 1.8.1 2224 + 2225 + quansync@1.0.0: {} 2226 + 2227 + resolve-pkg-maps@1.0.0: {} 2228 + 2229 + rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260427.1)(oxc-resolver@11.21.3)(rolldown@1.0.0-rc.17): 2230 + dependencies: 2231 + '@babel/generator': 8.0.0-rc.3 2232 + '@babel/helper-validator-identifier': 8.0.0-rc.3 2233 + '@babel/parser': 8.0.0-rc.3 2234 + '@babel/types': 8.0.0-rc.3 2235 + ast-kit: 3.0.0 2236 + birpc: 4.0.0 2237 + dts-resolver: 2.1.3(oxc-resolver@11.21.3) 2238 + get-tsconfig: 4.14.0 2239 + obug: 2.1.3 2240 + picomatch: 4.0.4 2241 + rolldown: 1.0.0-rc.17 2242 + optionalDependencies: 2243 + '@typescript/native-preview': 7.0.0-dev.20260427.1 2244 + transitivePeerDependencies: 2245 + - oxc-resolver 2246 + 2247 + rolldown@1.0.0-rc.17: 2248 + dependencies: 2249 + '@oxc-project/types': 0.127.0 2250 + '@rolldown/pluginutils': 1.0.0-rc.17 2251 + optionalDependencies: 2252 + '@rolldown/binding-android-arm64': 1.0.0-rc.17 2253 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.17 2254 + '@rolldown/binding-darwin-x64': 1.0.0-rc.17 2255 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.17 2256 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.17 2257 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.17 2258 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.17 2259 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.17 2260 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.17 2261 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.17 2262 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.17 2263 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.17 2264 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.17 2265 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.17 2266 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.17 2267 + 2268 + rolldown@1.1.2: 2269 + dependencies: 2270 + '@oxc-project/types': 0.137.0 2271 + '@rolldown/pluginutils': 1.0.1 2272 + optionalDependencies: 2273 + '@rolldown/binding-android-arm64': 1.1.2 2274 + '@rolldown/binding-darwin-arm64': 1.1.2 2275 + '@rolldown/binding-darwin-x64': 1.1.2 2276 + '@rolldown/binding-freebsd-x64': 1.1.2 2277 + '@rolldown/binding-linux-arm-gnueabihf': 1.1.2 2278 + '@rolldown/binding-linux-arm64-gnu': 1.1.2 2279 + '@rolldown/binding-linux-arm64-musl': 1.1.2 2280 + '@rolldown/binding-linux-ppc64-gnu': 1.1.2 2281 + '@rolldown/binding-linux-s390x-gnu': 1.1.2 2282 + '@rolldown/binding-linux-x64-gnu': 1.1.2 2283 + '@rolldown/binding-linux-x64-musl': 1.1.2 2284 + '@rolldown/binding-openharmony-arm64': 1.1.2 2285 + '@rolldown/binding-wasm32-wasi': 1.1.2 2286 + '@rolldown/binding-win32-arm64-msvc': 1.1.2 2287 + '@rolldown/binding-win32-x64-msvc': 1.1.2 2288 + 2289 + sade@1.8.1: 2290 + dependencies: 2291 + mri: 1.2.0 2292 + 2293 + semver@7.8.5: {} 2294 + 2295 + siginfo@2.0.0: {} 2296 + 2297 + smol-toml@1.7.0: {} 2298 + 2299 + source-map-js@1.2.1: {} 2300 + 2301 + stackback@0.0.2: {} 2302 + 2303 + std-env@4.1.0: {} 2304 + 2305 + strip-json-comments@5.0.3: {} 2306 + 2307 + tinybench@2.9.0: {} 2308 + 2309 + tinyexec@1.2.4: {} 2310 + 2311 + tinyglobby@0.2.17: 2312 + dependencies: 2313 + fdir: 6.5.0(picomatch@4.0.4) 2314 + picomatch: 4.0.4 2315 + 2316 + tinypool@2.1.0: {} 2317 + 2318 + tinyrainbow@3.1.0: {} 2319 + 2320 + tree-kill@1.2.2: {} 2321 + 2322 + tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.20260427.1)(oxc-resolver@11.21.3)(publint@0.3.21): 2323 + dependencies: 2324 + ansis: 4.3.1 2325 + cac: 7.0.0 2326 + defu: 6.1.7 2327 + empathic: 2.0.1 2328 + hookable: 6.1.1 2329 + import-without-cache: 0.3.3 2330 + obug: 2.1.3 2331 + picomatch: 4.0.4 2332 + rolldown: 1.0.0-rc.17 2333 + rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260427.1)(oxc-resolver@11.21.3)(rolldown@1.0.0-rc.17) 2334 + semver: 7.8.5 2335 + tinyexec: 1.2.4 2336 + tinyglobby: 0.2.17 2337 + tree-kill: 1.2.2 2338 + unconfig-core: 7.5.0 2339 + unrun: 0.2.39 2340 + optionalDependencies: 2341 + publint: 0.3.21 2342 + transitivePeerDependencies: 2343 + - '@ts-macro/tsc' 2344 + - '@typescript/native-preview' 2345 + - oxc-resolver 2346 + - synckit 2347 + - vue-tsc 2348 + 2349 + tslib@2.8.1: 2350 + optional: true 2351 + 2352 + ultramatter@0.0.4: {} 2353 + 2354 + unbash@4.0.1: {} 2355 + 2356 + unconfig-core@7.5.0: 2357 + dependencies: 2358 + '@quansync/fs': 1.0.0 2359 + quansync: 1.0.0 2360 + 2361 + undici-types@8.3.0: {} 2362 + 2363 + unrun@0.2.39: 2364 + dependencies: 2365 + rolldown: 1.0.0-rc.17 2366 + 2367 + vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0): 2368 + dependencies: 2369 + lightningcss: 1.32.0 2370 + picomatch: 4.0.4 2371 + postcss: 8.5.15 2372 + rolldown: 1.1.2 2373 + tinyglobby: 0.2.17 2374 + optionalDependencies: 2375 + '@types/node': 26.0.0 2376 + fsevents: 2.3.3 2377 + jiti: 2.7.0 2378 + yaml: 2.9.0 2379 + 2380 + vitest-ansi-serializer@0.2.1(vitest@4.1.9(@types/node@26.0.0)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0))): 2381 + dependencies: 2382 + vitest: 4.1.9(@types/node@26.0.0)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0)) 2383 + 2384 + vitest@4.1.9(@types/node@26.0.0)(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0)): 2385 + dependencies: 2386 + '@vitest/expect': 4.1.9 2387 + '@vitest/mocker': 4.1.9(vite@8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0)) 2388 + '@vitest/pretty-format': 4.1.9 2389 + '@vitest/runner': 4.1.9 2390 + '@vitest/snapshot': 4.1.9 2391 + '@vitest/spy': 4.1.9 2392 + '@vitest/utils': 4.1.9 2393 + es-module-lexer: 2.1.0 2394 + expect-type: 1.3.0 2395 + magic-string: 0.30.21 2396 + obug: 2.1.3 2397 + pathe: 2.0.3 2398 + picomatch: 4.0.4 2399 + std-env: 4.1.0 2400 + tinybench: 2.9.0 2401 + tinyexec: 1.2.4 2402 + tinyglobby: 0.2.17 2403 + tinyrainbow: 3.1.0 2404 + vite: 8.1.0(@types/node@26.0.0)(jiti@2.7.0)(yaml@2.9.0) 2405 + why-is-node-running: 2.3.0 2406 + optionalDependencies: 2407 + '@types/node': 26.0.0 2408 + transitivePeerDependencies: 2409 + - msw 2410 + 2411 + walk-up-path@4.0.0: {} 2412 + 2413 + why-is-node-running@2.3.0: 2414 + dependencies: 2415 + siginfo: 2.0.0 2416 + stackback: 0.0.2 2417 + 2418 + yaml@2.9.0: {} 2419 + 2420 + zod@4.4.3: {}
+2
pnpm-workspace.yaml
··· 1 + packages: 2 + - packages/*
+3
tsconfig.json
··· 1 + { 2 + "extends": "@bomb.sh/tools/tsconfig.json" 3 + }