flora is a fast and secure runtime that lets you write discord bots for your servers, with a rich TypeScript SDK, without worrying about running infrastructure. [mirror]
1
fork

Configure Feed

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

chore: add new solid-js frontend

+3792 -81
+13 -1
AGENTS.md
··· 489 489 490 490 - **Using the package manager directly:** Do not use pnpm, npm, or Yarn directly. Vite+ can handle all package manager operations. 491 491 - **Always use Vite commands to run tools:** Don't attempt to run `vp vitest` or `vp oxlint`. They do not exist. Use `vp test` and `vp lint` instead. 492 - - **Running scripts:** Vite+ commands take precedence over `package.json` scripts. If there is a `test` script defined in `scripts` that conflicts with the built-in `vp test` command, run it using `vp run test`. 492 + - **Running scripts:** Vite+ built-in commands (`vp dev`, `vp build`, `vp test`, etc.) always run the Vite+ built-in tool, not any `package.json` script of the same name. To run a custom script that shares a name with a built-in command, use `vp run <script>`. For example, if you have a custom `dev` script that runs multiple services concurrently, run it with `vp run dev`, not `vp dev` (which always starts Vite's dev server). 493 493 - **Do not install Vitest, Oxlint, Oxfmt, or tsdown directly:** Vite+ wraps these tools. They must not be installed directly. You cannot upgrade these tools by installing their latest versions. Always use Vite+ commands. 494 494 - **Use Vite+ wrappers for one-off binaries:** Use `vp dlx` instead of package-manager-specific `dlx`/`npx` commands. 495 495 - **Import JavaScript modules from `vite-plus`:** Instead of importing from `vite` or `vitest`, all modules should be imported from the project's `vite-plus` dependency. For example, `import { defineConfig } from 'vite-plus';` or `import { expect, test, vi } from 'vite-plus/test';`. You must not install `vitest` to import test utilities. 496 496 - **Type-Aware Linting:** There is no need to install `oxlint-tsgolint`, `vp lint --type-aware` works out of the box. 497 + 498 + ## CI Integration 499 + 500 + For GitHub Actions, consider using [`voidzero-dev/setup-vp`](https://github.com/voidzero-dev/setup-vp) to replace separate `actions/setup-node`, package-manager setup, cache, and install steps with a single action. 501 + 502 + ```yaml 503 + - uses: voidzero-dev/setup-vp@v1 504 + with: 505 + cache: true 506 + - run: vp check 507 + - run: vp test 508 + ``` 497 509 498 510 ## Review Checklist for Agents 499 511
+28
apps/frontend-new/.gitignore
··· 1 + dist 2 + .wrangler 3 + .output 4 + .vercel 5 + .netlify 6 + .vinxi 7 + app.config.timestamp_*.js 8 + 9 + # Environment 10 + .env 11 + .env*.local 12 + 13 + # dependencies 14 + /node_modules 15 + 16 + # IDEs and editors 17 + /.idea 18 + .project 19 + .classpath 20 + *.launch 21 + .settings/ 22 + 23 + # Temp 24 + gitignore 25 + 26 + # System Files 27 + .DS_Store 28 + Thumbs.db
+3
apps/frontend-new/.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["VoidZero.vite-plus-extension-pack"] 3 + }
+8
apps/frontend-new/.vscode/settings.json
··· 1 + { 2 + "editor.defaultFormatter": "oxc.oxc-vscode", 3 + "editor.formatOnSave": true, 4 + "editor.formatOnSaveMode": "file", 5 + "editor.codeActionsOnSave": { 6 + "source.fixAll.oxc": "explicit" 7 + } 8 + }
+36
apps/frontend-new/README.md
··· 1 + ## Usage 2 + 3 + Those templates dependencies are maintained via [pnpm](https://pnpm.io) via `pnpm up -Lri`. 4 + 5 + This is the reason you see a `pnpm-lock.yaml`. That being said, any package manager will work. This file can be safely be removed once you clone a template. 6 + 7 + ```bash 8 + $ npm install # or pnpm install or yarn install 9 + ``` 10 + 11 + ### Learn more on the [Solid Website](https://solidjs.com) and come chat with us on our [Discord](https://discord.com/invite/solidjs) 12 + 13 + ## Available Scripts 14 + 15 + In the project directory, you can run: 16 + 17 + ### `npm run dev` or `npm start` 18 + 19 + Runs the app in the development mode.<br> 20 + Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 21 + 22 + The page will reload if you make edits.<br> 23 + 24 + ### `npm run build` 25 + 26 + Builds the app for production to the `dist` folder.<br> 27 + It correctly bundles Solid in production mode and optimizes the build for the best performance. 28 + 29 + The build is minified and the filenames include the hashes.<br> 30 + Your app is ready to be deployed! 31 + 32 + ## Deployment 33 + 34 + You can deploy the `dist` folder to any static host provider (netlify, surge, now, etc.) 35 + 36 + ## This project was created with the [Solid CLI](https://github.com/solidjs-community/solid-cli)
+15
apps/frontend-new/index.html
··· 1 + <!doctype html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="utf-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 + <meta name="theme-color" content="#000000" /> 7 + <title>Solid App</title> 8 + </head> 9 + <body> 10 + <noscript>You need to enable JavaScript to run this app.</noscript> 11 + <div id="root"></div> 12 + 13 + <script src="/src/index.tsx" type="module"></script> 14 + </body> 15 + </html>
+28
apps/frontend-new/package.json
··· 1 + { 2 + "name": "vite-template-solid", 3 + "version": "0.0.0", 4 + "description": "", 5 + "license": "MIT", 6 + "type": "module", 7 + "scripts": { 8 + "start": "vp dev", 9 + "dev": "vp dev", 10 + "build": "vp build", 11 + "serve": "vp preview" 12 + }, 13 + "dependencies": { 14 + "@uwu/flora-api-client": "workspace:*", 15 + "solid-js": "^1.9.9" 16 + }, 17 + "devDependencies": { 18 + "@oxc-solid-js/compiler": "1.1.4", 19 + "@oxc-solid-js/vite": "0.1.0-alpha.15", 20 + "@tailwindcss/vite": "^4.1.13", 21 + "solid-devtools": "^0.34.3", 22 + "tailwindcss": "^4.1.13", 23 + "typescript": "^5.9.2", 24 + "vite": "catalog:", 25 + "vite-plugin-solid": "^2.11.8", 26 + "vite-plus": "catalog:" 27 + } 28 + }
+1739
apps/frontend-new/pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: 10 + dependencies: 11 + solid-js: 12 + specifier: ^1.9.9 13 + version: 1.9.9 14 + devDependencies: 15 + '@tailwindcss/vite': 16 + specifier: ^4.1.13 17 + version: 4.1.13(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)) 18 + solid-devtools: 19 + specifier: ^0.34.3 20 + version: 0.34.3(solid-js@1.9.9)(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)) 21 + tailwindcss: 22 + specifier: ^4.1.13 23 + version: 4.1.13 24 + typescript: 25 + specifier: ^5.9.2 26 + version: 5.9.2 27 + vite: 28 + specifier: ^7.1.4 29 + version: 7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1) 30 + vite-plugin-solid: 31 + specifier: ^2.11.8 32 + version: 2.11.9(solid-js@1.9.9)(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)) 33 + 34 + packages: 35 + 36 + '@babel/code-frame@7.27.1': 37 + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 38 + engines: {node: '>=6.9.0'} 39 + 40 + '@babel/compat-data@7.28.4': 41 + resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 42 + engines: {node: '>=6.9.0'} 43 + 44 + '@babel/core@7.28.4': 45 + resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} 46 + engines: {node: '>=6.9.0'} 47 + 48 + '@babel/generator@7.28.3': 49 + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} 50 + engines: {node: '>=6.9.0'} 51 + 52 + '@babel/helper-compilation-targets@7.27.2': 53 + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} 54 + engines: {node: '>=6.9.0'} 55 + 56 + '@babel/helper-globals@7.28.0': 57 + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} 58 + engines: {node: '>=6.9.0'} 59 + 60 + '@babel/helper-module-imports@7.18.6': 61 + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} 62 + engines: {node: '>=6.9.0'} 63 + 64 + '@babel/helper-module-imports@7.27.1': 65 + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 66 + engines: {node: '>=6.9.0'} 67 + 68 + '@babel/helper-module-transforms@7.28.3': 69 + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} 70 + engines: {node: '>=6.9.0'} 71 + peerDependencies: 72 + '@babel/core': ^7.0.0 73 + 74 + '@babel/helper-plugin-utils@7.27.1': 75 + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} 76 + engines: {node: '>=6.9.0'} 77 + 78 + '@babel/helper-string-parser@7.27.1': 79 + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 80 + engines: {node: '>=6.9.0'} 81 + 82 + '@babel/helper-validator-identifier@7.27.1': 83 + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 84 + engines: {node: '>=6.9.0'} 85 + 86 + '@babel/helper-validator-option@7.27.1': 87 + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 88 + engines: {node: '>=6.9.0'} 89 + 90 + '@babel/helpers@7.28.4': 91 + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 92 + engines: {node: '>=6.9.0'} 93 + 94 + '@babel/parser@7.28.4': 95 + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} 96 + engines: {node: '>=6.0.0'} 97 + hasBin: true 98 + 99 + '@babel/plugin-syntax-jsx@7.27.1': 100 + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} 101 + engines: {node: '>=6.9.0'} 102 + peerDependencies: 103 + '@babel/core': ^7.0.0-0 104 + 105 + '@babel/plugin-syntax-typescript@7.27.1': 106 + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} 107 + engines: {node: '>=6.9.0'} 108 + peerDependencies: 109 + '@babel/core': ^7.0.0-0 110 + 111 + '@babel/template@7.27.2': 112 + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 113 + engines: {node: '>=6.9.0'} 114 + 115 + '@babel/traverse@7.28.4': 116 + resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} 117 + engines: {node: '>=6.9.0'} 118 + 119 + '@babel/types@7.28.4': 120 + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} 121 + engines: {node: '>=6.9.0'} 122 + 123 + '@esbuild/aix-ppc64@0.25.11': 124 + resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==} 125 + engines: {node: '>=18'} 126 + cpu: [ppc64] 127 + os: [aix] 128 + 129 + '@esbuild/android-arm64@0.25.11': 130 + resolution: {integrity: sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==} 131 + engines: {node: '>=18'} 132 + cpu: [arm64] 133 + os: [android] 134 + 135 + '@esbuild/android-arm@0.25.11': 136 + resolution: {integrity: sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==} 137 + engines: {node: '>=18'} 138 + cpu: [arm] 139 + os: [android] 140 + 141 + '@esbuild/android-x64@0.25.11': 142 + resolution: {integrity: sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==} 143 + engines: {node: '>=18'} 144 + cpu: [x64] 145 + os: [android] 146 + 147 + '@esbuild/darwin-arm64@0.25.11': 148 + resolution: {integrity: sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==} 149 + engines: {node: '>=18'} 150 + cpu: [arm64] 151 + os: [darwin] 152 + 153 + '@esbuild/darwin-x64@0.25.11': 154 + resolution: {integrity: sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==} 155 + engines: {node: '>=18'} 156 + cpu: [x64] 157 + os: [darwin] 158 + 159 + '@esbuild/freebsd-arm64@0.25.11': 160 + resolution: {integrity: sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==} 161 + engines: {node: '>=18'} 162 + cpu: [arm64] 163 + os: [freebsd] 164 + 165 + '@esbuild/freebsd-x64@0.25.11': 166 + resolution: {integrity: sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==} 167 + engines: {node: '>=18'} 168 + cpu: [x64] 169 + os: [freebsd] 170 + 171 + '@esbuild/linux-arm64@0.25.11': 172 + resolution: {integrity: sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==} 173 + engines: {node: '>=18'} 174 + cpu: [arm64] 175 + os: [linux] 176 + 177 + '@esbuild/linux-arm@0.25.11': 178 + resolution: {integrity: sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==} 179 + engines: {node: '>=18'} 180 + cpu: [arm] 181 + os: [linux] 182 + 183 + '@esbuild/linux-ia32@0.25.11': 184 + resolution: {integrity: sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==} 185 + engines: {node: '>=18'} 186 + cpu: [ia32] 187 + os: [linux] 188 + 189 + '@esbuild/linux-loong64@0.25.11': 190 + resolution: {integrity: sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==} 191 + engines: {node: '>=18'} 192 + cpu: [loong64] 193 + os: [linux] 194 + 195 + '@esbuild/linux-mips64el@0.25.11': 196 + resolution: {integrity: sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==} 197 + engines: {node: '>=18'} 198 + cpu: [mips64el] 199 + os: [linux] 200 + 201 + '@esbuild/linux-ppc64@0.25.11': 202 + resolution: {integrity: sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==} 203 + engines: {node: '>=18'} 204 + cpu: [ppc64] 205 + os: [linux] 206 + 207 + '@esbuild/linux-riscv64@0.25.11': 208 + resolution: {integrity: sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==} 209 + engines: {node: '>=18'} 210 + cpu: [riscv64] 211 + os: [linux] 212 + 213 + '@esbuild/linux-s390x@0.25.11': 214 + resolution: {integrity: sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==} 215 + engines: {node: '>=18'} 216 + cpu: [s390x] 217 + os: [linux] 218 + 219 + '@esbuild/linux-x64@0.25.11': 220 + resolution: {integrity: sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==} 221 + engines: {node: '>=18'} 222 + cpu: [x64] 223 + os: [linux] 224 + 225 + '@esbuild/netbsd-arm64@0.25.11': 226 + resolution: {integrity: sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==} 227 + engines: {node: '>=18'} 228 + cpu: [arm64] 229 + os: [netbsd] 230 + 231 + '@esbuild/netbsd-x64@0.25.11': 232 + resolution: {integrity: sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==} 233 + engines: {node: '>=18'} 234 + cpu: [x64] 235 + os: [netbsd] 236 + 237 + '@esbuild/openbsd-arm64@0.25.11': 238 + resolution: {integrity: sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==} 239 + engines: {node: '>=18'} 240 + cpu: [arm64] 241 + os: [openbsd] 242 + 243 + '@esbuild/openbsd-x64@0.25.11': 244 + resolution: {integrity: sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==} 245 + engines: {node: '>=18'} 246 + cpu: [x64] 247 + os: [openbsd] 248 + 249 + '@esbuild/openharmony-arm64@0.25.11': 250 + resolution: {integrity: sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==} 251 + engines: {node: '>=18'} 252 + cpu: [arm64] 253 + os: [openharmony] 254 + 255 + '@esbuild/sunos-x64@0.25.11': 256 + resolution: {integrity: sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==} 257 + engines: {node: '>=18'} 258 + cpu: [x64] 259 + os: [sunos] 260 + 261 + '@esbuild/win32-arm64@0.25.11': 262 + resolution: {integrity: sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==} 263 + engines: {node: '>=18'} 264 + cpu: [arm64] 265 + os: [win32] 266 + 267 + '@esbuild/win32-ia32@0.25.11': 268 + resolution: {integrity: sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==} 269 + engines: {node: '>=18'} 270 + cpu: [ia32] 271 + os: [win32] 272 + 273 + '@esbuild/win32-x64@0.25.11': 274 + resolution: {integrity: sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==} 275 + engines: {node: '>=18'} 276 + cpu: [x64] 277 + os: [win32] 278 + 279 + '@isaacs/fs-minipass@4.0.1': 280 + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} 281 + engines: {node: '>=18.0.0'} 282 + 283 + '@jridgewell/gen-mapping@0.3.13': 284 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 285 + 286 + '@jridgewell/remapping@2.3.5': 287 + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 288 + 289 + '@jridgewell/resolve-uri@3.1.2': 290 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 291 + engines: {node: '>=6.0.0'} 292 + 293 + '@jridgewell/sourcemap-codec@1.5.5': 294 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 295 + 296 + '@jridgewell/trace-mapping@0.3.30': 297 + resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==} 298 + 299 + '@jridgewell/trace-mapping@0.3.31': 300 + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 301 + 302 + '@nothing-but/utils@0.17.0': 303 + resolution: {integrity: sha512-TuCHcHLOqDL0SnaAxACfuRHBNRgNJcNn9X0GiH5H3YSDBVquCr3qEIG3FOQAuMyZCbu9w8nk2CHhOsn7IvhIwQ==} 304 + 305 + '@rollup/rollup-android-arm-eabi@4.52.5': 306 + resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==} 307 + cpu: [arm] 308 + os: [android] 309 + 310 + '@rollup/rollup-android-arm64@4.52.5': 311 + resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} 312 + cpu: [arm64] 313 + os: [android] 314 + 315 + '@rollup/rollup-darwin-arm64@4.52.5': 316 + resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} 317 + cpu: [arm64] 318 + os: [darwin] 319 + 320 + '@rollup/rollup-darwin-x64@4.52.5': 321 + resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} 322 + cpu: [x64] 323 + os: [darwin] 324 + 325 + '@rollup/rollup-freebsd-arm64@4.52.5': 326 + resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} 327 + cpu: [arm64] 328 + os: [freebsd] 329 + 330 + '@rollup/rollup-freebsd-x64@4.52.5': 331 + resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} 332 + cpu: [x64] 333 + os: [freebsd] 334 + 335 + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': 336 + resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} 337 + cpu: [arm] 338 + os: [linux] 339 + 340 + '@rollup/rollup-linux-arm-musleabihf@4.52.5': 341 + resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} 342 + cpu: [arm] 343 + os: [linux] 344 + 345 + '@rollup/rollup-linux-arm64-gnu@4.52.5': 346 + resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} 347 + cpu: [arm64] 348 + os: [linux] 349 + 350 + '@rollup/rollup-linux-arm64-musl@4.52.5': 351 + resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} 352 + cpu: [arm64] 353 + os: [linux] 354 + 355 + '@rollup/rollup-linux-loong64-gnu@4.52.5': 356 + resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} 357 + cpu: [loong64] 358 + os: [linux] 359 + 360 + '@rollup/rollup-linux-ppc64-gnu@4.52.5': 361 + resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} 362 + cpu: [ppc64] 363 + os: [linux] 364 + 365 + '@rollup/rollup-linux-riscv64-gnu@4.52.5': 366 + resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} 367 + cpu: [riscv64] 368 + os: [linux] 369 + 370 + '@rollup/rollup-linux-riscv64-musl@4.52.5': 371 + resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} 372 + cpu: [riscv64] 373 + os: [linux] 374 + 375 + '@rollup/rollup-linux-s390x-gnu@4.52.5': 376 + resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} 377 + cpu: [s390x] 378 + os: [linux] 379 + 380 + '@rollup/rollup-linux-x64-gnu@4.52.5': 381 + resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} 382 + cpu: [x64] 383 + os: [linux] 384 + 385 + '@rollup/rollup-linux-x64-musl@4.52.5': 386 + resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} 387 + cpu: [x64] 388 + os: [linux] 389 + 390 + '@rollup/rollup-openharmony-arm64@4.52.5': 391 + resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} 392 + cpu: [arm64] 393 + os: [openharmony] 394 + 395 + '@rollup/rollup-win32-arm64-msvc@4.52.5': 396 + resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} 397 + cpu: [arm64] 398 + os: [win32] 399 + 400 + '@rollup/rollup-win32-ia32-msvc@4.52.5': 401 + resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} 402 + cpu: [ia32] 403 + os: [win32] 404 + 405 + '@rollup/rollup-win32-x64-gnu@4.52.5': 406 + resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} 407 + cpu: [x64] 408 + os: [win32] 409 + 410 + '@rollup/rollup-win32-x64-msvc@4.52.5': 411 + resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==} 412 + cpu: [x64] 413 + os: [win32] 414 + 415 + '@solid-devtools/debugger@0.28.1': 416 + resolution: {integrity: sha512-6qIUI6VYkXoRnL8oF5bvh2KgH71qlJ18hNw/mwSyY6v48eb80ZR48/5PDXufUa3q+MBSuYa1uqTMwLewpay9eg==} 417 + peerDependencies: 418 + solid-js: ^1.9.0 419 + 420 + '@solid-devtools/shared@0.20.0': 421 + resolution: {integrity: sha512-o5TACmUOQsxpzpOKCjbQqGk8wL8PMi+frXG9WNu4Lh3PQVUB6hs95Kl/S8xc++zwcMguUKZJn8h5URUiMOca6Q==} 422 + peerDependencies: 423 + solid-js: ^1.9.0 424 + 425 + '@solid-primitives/bounds@0.1.3': 426 + resolution: {integrity: sha512-UbiyKMdSPmtijcEDnYLQL3zzaejpwWDAJJ4Gt5P0hgVs6A72piov0GyNw7V2SroH7NZFwxlYS22YmOr8A5xc1Q==} 427 + peerDependencies: 428 + solid-js: ^1.6.12 429 + 430 + '@solid-primitives/event-listener@2.4.3': 431 + resolution: {integrity: sha512-h4VqkYFv6Gf+L7SQj+Y6puigL/5DIi7x5q07VZET7AWcS+9/G3WfIE9WheniHWJs51OEkRB43w6lDys5YeFceg==} 432 + peerDependencies: 433 + solid-js: ^1.6.12 434 + 435 + '@solid-primitives/keyboard@1.3.3': 436 + resolution: {integrity: sha512-9dQHTTgLBqyAI7aavtO+HnpTVJgWQA1ghBSrmLtMu1SMxLPDuLfuNr+Tk5udb4AL4Ojg7h9JrKOGEEDqsJXWJA==} 437 + peerDependencies: 438 + solid-js: ^1.6.12 439 + 440 + '@solid-primitives/media@2.3.3': 441 + resolution: {integrity: sha512-hQ4hLOGvfbugQi5Eu1BFWAIJGIAzztq9x0h02xgBGl2l0Jaa3h7tg6bz5tV1NSuNYVGio4rPoa7zVQQLkkx9dA==} 442 + peerDependencies: 443 + solid-js: ^1.6.12 444 + 445 + '@solid-primitives/refs@1.1.2': 446 + resolution: {integrity: sha512-K7tf2thy7L+YJjdqXspXOg5xvNEOH8tgEWsp0+1mQk3obHBRD6hEjYZk7p7FlJphSZImS35je3UfmWuD7MhDfg==} 447 + peerDependencies: 448 + solid-js: ^1.6.12 449 + 450 + '@solid-primitives/resize-observer@2.1.3': 451 + resolution: {integrity: sha512-zBLje5E06TgOg93S7rGPldmhDnouNGhvfZVKOp+oG2XU8snA+GoCSSCz1M+jpNAg5Ek2EakU5UVQqL152WmdXQ==} 452 + peerDependencies: 453 + solid-js: ^1.6.12 454 + 455 + '@solid-primitives/rootless@1.5.2': 456 + resolution: {integrity: sha512-9HULb0QAzL2r47CCad0M+NKFtQ+LrGGNHZfteX/ThdGvKIg2o2GYhBooZubTCd/RTu2l2+Nw4s+dEfiDGvdrrQ==} 457 + peerDependencies: 458 + solid-js: ^1.6.12 459 + 460 + '@solid-primitives/scheduled@1.5.2': 461 + resolution: {integrity: sha512-/j2igE0xyNaHhj6kMfcUQn5rAVSTLbAX+CDEBm25hSNBmNiHLu2lM7Usj2kJJ5j36D67bE8wR1hBNA8hjtvsQA==} 462 + peerDependencies: 463 + solid-js: ^1.6.12 464 + 465 + '@solid-primitives/static-store@0.1.2': 466 + resolution: {integrity: sha512-ReK+5O38lJ7fT+L6mUFvUr6igFwHBESZF+2Ug842s7fvlVeBdIVEdTCErygff6w7uR6+jrr7J8jQo+cYrEq4Iw==} 467 + peerDependencies: 468 + solid-js: ^1.6.12 469 + 470 + '@solid-primitives/styles@0.1.2': 471 + resolution: {integrity: sha512-7iX5K+J5b1PRrbgw3Ki92uvU2LgQ0Kd/QMsrAZxDg5dpUBwMyTijZkA3bbs1ikZsT1oQhS41bTyKbjrXeU0Awg==} 472 + peerDependencies: 473 + solid-js: ^1.6.12 474 + 475 + '@solid-primitives/utils@6.3.2': 476 + resolution: {integrity: sha512-hZ/M/qr25QOCcwDPOHtGjxTD8w2mNyVAYvcfgwzBHq2RwNqHNdDNsMZYap20+ruRwW4A3Cdkczyoz0TSxLCAPQ==} 477 + peerDependencies: 478 + solid-js: ^1.6.12 479 + 480 + '@tailwindcss/node@4.1.13': 481 + resolution: {integrity: sha512-eq3ouolC1oEFOAvOMOBAmfCIqZBJuvWvvYWh5h5iOYfe1HFC6+GZ6EIL0JdM3/niGRJmnrOc+8gl9/HGUaaptw==} 482 + 483 + '@tailwindcss/oxide-android-arm64@4.1.13': 484 + resolution: {integrity: sha512-BrpTrVYyejbgGo57yc8ieE+D6VT9GOgnNdmh5Sac6+t0m+v+sKQevpFVpwX3pBrM2qKrQwJ0c5eDbtjouY/+ew==} 485 + engines: {node: '>= 10'} 486 + cpu: [arm64] 487 + os: [android] 488 + 489 + '@tailwindcss/oxide-darwin-arm64@4.1.13': 490 + resolution: {integrity: sha512-YP+Jksc4U0KHcu76UhRDHq9bx4qtBftp9ShK/7UGfq0wpaP96YVnnjFnj3ZFrUAjc5iECzODl/Ts0AN7ZPOANQ==} 491 + engines: {node: '>= 10'} 492 + cpu: [arm64] 493 + os: [darwin] 494 + 495 + '@tailwindcss/oxide-darwin-x64@4.1.13': 496 + resolution: {integrity: sha512-aAJ3bbwrn/PQHDxCto9sxwQfT30PzyYJFG0u/BWZGeVXi5Hx6uuUOQEI2Fa43qvmUjTRQNZnGqe9t0Zntexeuw==} 497 + engines: {node: '>= 10'} 498 + cpu: [x64] 499 + os: [darwin] 500 + 501 + '@tailwindcss/oxide-freebsd-x64@4.1.13': 502 + resolution: {integrity: sha512-Wt8KvASHwSXhKE/dJLCCWcTSVmBj3xhVhp/aF3RpAhGeZ3sVo7+NTfgiN8Vey/Fi8prRClDs6/f0KXPDTZE6nQ==} 503 + engines: {node: '>= 10'} 504 + cpu: [x64] 505 + os: [freebsd] 506 + 507 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13': 508 + resolution: {integrity: sha512-mbVbcAsW3Gkm2MGwA93eLtWrwajz91aXZCNSkGTx/R5eb6KpKD5q8Ueckkh9YNboU8RH7jiv+ol/I7ZyQ9H7Bw==} 509 + engines: {node: '>= 10'} 510 + cpu: [arm] 511 + os: [linux] 512 + 513 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.13': 514 + resolution: {integrity: sha512-wdtfkmpXiwej/yoAkrCP2DNzRXCALq9NVLgLELgLim1QpSfhQM5+ZxQQF8fkOiEpuNoKLp4nKZ6RC4kmeFH0HQ==} 515 + engines: {node: '>= 10'} 516 + cpu: [arm64] 517 + os: [linux] 518 + 519 + '@tailwindcss/oxide-linux-arm64-musl@4.1.13': 520 + resolution: {integrity: sha512-hZQrmtLdhyqzXHB7mkXfq0IYbxegaqTmfa1p9MBj72WPoDD3oNOh1Lnxf6xZLY9C3OV6qiCYkO1i/LrzEdW2mg==} 521 + engines: {node: '>= 10'} 522 + cpu: [arm64] 523 + os: [linux] 524 + 525 + '@tailwindcss/oxide-linux-x64-gnu@4.1.13': 526 + resolution: {integrity: sha512-uaZTYWxSXyMWDJZNY1Ul7XkJTCBRFZ5Fo6wtjrgBKzZLoJNrG+WderJwAjPzuNZOnmdrVg260DKwXCFtJ/hWRQ==} 527 + engines: {node: '>= 10'} 528 + cpu: [x64] 529 + os: [linux] 530 + 531 + '@tailwindcss/oxide-linux-x64-musl@4.1.13': 532 + resolution: {integrity: sha512-oXiPj5mi4Hdn50v5RdnuuIms0PVPI/EG4fxAfFiIKQh5TgQgX7oSuDWntHW7WNIi/yVLAiS+CRGW4RkoGSSgVQ==} 533 + engines: {node: '>= 10'} 534 + cpu: [x64] 535 + os: [linux] 536 + 537 + '@tailwindcss/oxide-wasm32-wasi@4.1.13': 538 + resolution: {integrity: sha512-+LC2nNtPovtrDwBc/nqnIKYh/W2+R69FA0hgoeOn64BdCX522u19ryLh3Vf3F8W49XBcMIxSe665kwy21FkhvA==} 539 + engines: {node: '>=14.0.0'} 540 + cpu: [wasm32] 541 + bundledDependencies: 542 + - '@napi-rs/wasm-runtime' 543 + - '@emnapi/core' 544 + - '@emnapi/runtime' 545 + - '@tybys/wasm-util' 546 + - '@emnapi/wasi-threads' 547 + - tslib 548 + 549 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.13': 550 + resolution: {integrity: sha512-dziTNeQXtoQ2KBXmrjCxsuPk3F3CQ/yb7ZNZNA+UkNTeiTGgfeh+gH5Pi7mRncVgcPD2xgHvkFCh/MhZWSgyQg==} 551 + engines: {node: '>= 10'} 552 + cpu: [arm64] 553 + os: [win32] 554 + 555 + '@tailwindcss/oxide-win32-x64-msvc@4.1.13': 556 + resolution: {integrity: sha512-3+LKesjXydTkHk5zXX01b5KMzLV1xl2mcktBJkje7rhFUpUlYJy7IMOLqjIRQncLTa1WZZiFY/foAeB5nmaiTw==} 557 + engines: {node: '>= 10'} 558 + cpu: [x64] 559 + os: [win32] 560 + 561 + '@tailwindcss/oxide@4.1.13': 562 + resolution: {integrity: sha512-CPgsM1IpGRa880sMbYmG1s4xhAy3xEt1QULgTJGQmZUeNgXFR7s1YxYygmJyBGtou4SyEosGAGEeYqY7R53bIA==} 563 + engines: {node: '>= 10'} 564 + 565 + '@tailwindcss/vite@4.1.13': 566 + resolution: {integrity: sha512-0PmqLQ010N58SbMTJ7BVJ4I2xopiQn/5i6nlb4JmxzQf8zcS5+m2Cv6tqh+sfDwtIdjoEnOvwsGQ1hkUi8QEHQ==} 567 + peerDependencies: 568 + vite: ^5.2.0 || ^6 || ^7 569 + 570 + '@types/babel__core@7.20.5': 571 + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 572 + 573 + '@types/babel__generator@7.27.0': 574 + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} 575 + 576 + '@types/babel__template@7.4.4': 577 + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 578 + 579 + '@types/babel__traverse@7.28.0': 580 + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} 581 + 582 + '@types/estree@1.0.8': 583 + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 584 + 585 + babel-plugin-jsx-dom-expressions@0.40.1: 586 + resolution: {integrity: sha512-b4iHuirqK7RgaMzB2Lsl7MqrlDgQtVRSSazyrmx7wB3T759ggGjod5Rkok5MfHjQXhR7tRPmdwoeGPqBnW2KfA==} 587 + peerDependencies: 588 + '@babel/core': ^7.20.12 589 + 590 + babel-preset-solid@1.9.9: 591 + resolution: {integrity: sha512-pCnxWrciluXCeli/dj5PIEHgbNzim3evtTn12snjqqg8QZWJNMjH1AWIp4iG/tbVjqQ72aBEymMSagvmgxubXw==} 592 + peerDependencies: 593 + '@babel/core': ^7.0.0 594 + solid-js: ^1.9.8 595 + peerDependenciesMeta: 596 + solid-js: 597 + optional: true 598 + 599 + browserslist@4.25.4: 600 + resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==} 601 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 602 + hasBin: true 603 + 604 + caniuse-lite@1.0.30001741: 605 + resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} 606 + 607 + chownr@3.0.0: 608 + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} 609 + engines: {node: '>=18'} 610 + 611 + convert-source-map@2.0.0: 612 + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 613 + 614 + csstype@3.1.3: 615 + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 616 + 617 + debug@4.4.1: 618 + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 619 + engines: {node: '>=6.0'} 620 + peerDependencies: 621 + supports-color: '*' 622 + peerDependenciesMeta: 623 + supports-color: 624 + optional: true 625 + 626 + detect-libc@2.0.4: 627 + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} 628 + engines: {node: '>=8'} 629 + 630 + electron-to-chromium@1.5.214: 631 + resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==} 632 + 633 + enhanced-resolve@5.18.3: 634 + resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} 635 + engines: {node: '>=10.13.0'} 636 + 637 + entities@6.0.1: 638 + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 639 + engines: {node: '>=0.12'} 640 + 641 + esbuild@0.25.11: 642 + resolution: {integrity: sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==} 643 + engines: {node: '>=18'} 644 + hasBin: true 645 + 646 + escalade@3.2.0: 647 + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 648 + engines: {node: '>=6'} 649 + 650 + fdir@6.5.0: 651 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 652 + engines: {node: '>=12.0.0'} 653 + peerDependencies: 654 + picomatch: ^3 || ^4 655 + peerDependenciesMeta: 656 + picomatch: 657 + optional: true 658 + 659 + fsevents@2.3.3: 660 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 661 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 662 + os: [darwin] 663 + 664 + gensync@1.0.0-beta.2: 665 + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 666 + engines: {node: '>=6.9.0'} 667 + 668 + graceful-fs@4.2.11: 669 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 670 + 671 + html-entities@2.3.3: 672 + resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} 673 + 674 + is-what@4.1.16: 675 + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} 676 + engines: {node: '>=12.13'} 677 + 678 + jiti@2.5.1: 679 + resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==} 680 + hasBin: true 681 + 682 + js-tokens@4.0.0: 683 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 684 + 685 + jsesc@3.1.0: 686 + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 687 + engines: {node: '>=6'} 688 + hasBin: true 689 + 690 + json5@2.2.3: 691 + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 692 + engines: {node: '>=6'} 693 + hasBin: true 694 + 695 + lightningcss-darwin-arm64@1.30.1: 696 + resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} 697 + engines: {node: '>= 12.0.0'} 698 + cpu: [arm64] 699 + os: [darwin] 700 + 701 + lightningcss-darwin-x64@1.30.1: 702 + resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} 703 + engines: {node: '>= 12.0.0'} 704 + cpu: [x64] 705 + os: [darwin] 706 + 707 + lightningcss-freebsd-x64@1.30.1: 708 + resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} 709 + engines: {node: '>= 12.0.0'} 710 + cpu: [x64] 711 + os: [freebsd] 712 + 713 + lightningcss-linux-arm-gnueabihf@1.30.1: 714 + resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} 715 + engines: {node: '>= 12.0.0'} 716 + cpu: [arm] 717 + os: [linux] 718 + 719 + lightningcss-linux-arm64-gnu@1.30.1: 720 + resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} 721 + engines: {node: '>= 12.0.0'} 722 + cpu: [arm64] 723 + os: [linux] 724 + 725 + lightningcss-linux-arm64-musl@1.30.1: 726 + resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} 727 + engines: {node: '>= 12.0.0'} 728 + cpu: [arm64] 729 + os: [linux] 730 + 731 + lightningcss-linux-x64-gnu@1.30.1: 732 + resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} 733 + engines: {node: '>= 12.0.0'} 734 + cpu: [x64] 735 + os: [linux] 736 + 737 + lightningcss-linux-x64-musl@1.30.1: 738 + resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} 739 + engines: {node: '>= 12.0.0'} 740 + cpu: [x64] 741 + os: [linux] 742 + 743 + lightningcss-win32-arm64-msvc@1.30.1: 744 + resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} 745 + engines: {node: '>= 12.0.0'} 746 + cpu: [arm64] 747 + os: [win32] 748 + 749 + lightningcss-win32-x64-msvc@1.30.1: 750 + resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} 751 + engines: {node: '>= 12.0.0'} 752 + cpu: [x64] 753 + os: [win32] 754 + 755 + lightningcss@1.30.1: 756 + resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} 757 + engines: {node: '>= 12.0.0'} 758 + 759 + lru-cache@5.1.1: 760 + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 761 + 762 + magic-string@0.30.18: 763 + resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==} 764 + 765 + merge-anything@5.1.7: 766 + resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} 767 + engines: {node: '>=12.13'} 768 + 769 + minipass@7.1.2: 770 + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 771 + engines: {node: '>=16 || 14 >=14.17'} 772 + 773 + minizlib@3.0.2: 774 + resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} 775 + engines: {node: '>= 18'} 776 + 777 + mkdirp@3.0.1: 778 + resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} 779 + engines: {node: '>=10'} 780 + hasBin: true 781 + 782 + ms@2.1.3: 783 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 784 + 785 + nanoid@3.3.11: 786 + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 787 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 788 + hasBin: true 789 + 790 + node-releases@2.0.20: 791 + resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==} 792 + 793 + parse5@7.3.0: 794 + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 795 + 796 + picocolors@1.1.1: 797 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 798 + 799 + picomatch@4.0.3: 800 + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 801 + engines: {node: '>=12'} 802 + 803 + postcss@8.5.6: 804 + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 805 + engines: {node: ^10 || ^12 || >=14} 806 + 807 + rollup@4.52.5: 808 + resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==} 809 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 810 + hasBin: true 811 + 812 + semver@6.3.1: 813 + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 814 + hasBin: true 815 + 816 + seroval-plugins@1.3.3: 817 + resolution: {integrity: sha512-16OL3NnUBw8JG1jBLUoZJsLnQq0n5Ua6aHalhJK4fMQkz1lqR7Osz1sA30trBtd9VUDc2NgkuRCn8+/pBwqZ+w==} 818 + engines: {node: '>=10'} 819 + peerDependencies: 820 + seroval: ^1.0 821 + 822 + seroval@1.3.2: 823 + resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==} 824 + engines: {node: '>=10'} 825 + 826 + solid-devtools@0.34.3: 827 + resolution: {integrity: sha512-ZQua959n+Zu3sLbm9g0IRjYUb1YYlYbu83PWLRoKbSsq0a3ItQNhnS2OBU7rQNmOKZiMexNo9Z3izas9BcOKDg==} 828 + peerDependencies: 829 + solid-js: ^1.9.0 830 + vite: ^2.2.3 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 831 + peerDependenciesMeta: 832 + vite: 833 + optional: true 834 + 835 + solid-js@1.9.9: 836 + resolution: {integrity: sha512-A0ZBPJQldAeGCTW0YRYJmt7RCeh5rbFfPZ2aOttgYnctHE7HgKeHCBB/PVc2P7eOfmNXqMFFFoYYdm3S4dcbkA==} 837 + 838 + solid-refresh@0.6.3: 839 + resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} 840 + peerDependencies: 841 + solid-js: ^1.3 842 + 843 + source-map-js@1.2.1: 844 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 845 + engines: {node: '>=0.10.0'} 846 + 847 + tailwindcss@4.1.13: 848 + resolution: {integrity: sha512-i+zidfmTqtwquj4hMEwdjshYYgMbOrPzb9a0M3ZgNa0JMoZeFC6bxZvO8yr8ozS6ix2SDz0+mvryPeBs2TFE+w==} 849 + 850 + tapable@2.2.3: 851 + resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==} 852 + engines: {node: '>=6'} 853 + 854 + tar@7.4.3: 855 + resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} 856 + engines: {node: '>=18'} 857 + 858 + tinyglobby@0.2.15: 859 + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 860 + engines: {node: '>=12.0.0'} 861 + 862 + typescript@5.9.2: 863 + resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} 864 + engines: {node: '>=14.17'} 865 + hasBin: true 866 + 867 + update-browserslist-db@1.1.3: 868 + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 869 + hasBin: true 870 + peerDependencies: 871 + browserslist: '>= 4.21.0' 872 + 873 + validate-html-nesting@1.2.3: 874 + resolution: {integrity: sha512-kdkWdCl6eCeLlRShJKbjVOU2kFKxMF8Ghu50n+crEoyx+VKm3FxAxF9z4DCy6+bbTOqNW0+jcIYRnjoIRzigRw==} 875 + 876 + vite-plugin-solid@2.11.9: 877 + resolution: {integrity: sha512-bTA6p+bspXZsuulSd2y6aTzegF8xGaJYcq1Uyh/mv+W4DQtzCgL9nN6n2fsTaxp/dMk+ZHHKgGndlNeooqHLKw==} 878 + peerDependencies: 879 + '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* 880 + solid-js: ^1.7.2 881 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 882 + peerDependenciesMeta: 883 + '@testing-library/jest-dom': 884 + optional: true 885 + 886 + vite@7.1.10: 887 + resolution: {integrity: sha512-CmuvUBzVJ/e3HGxhg6cYk88NGgTnBoOo7ogtfJJ0fefUWAxN/WDSUa50o+oVBxuIhO8FoEZW0j2eW7sfjs5EtA==} 888 + engines: {node: ^20.19.0 || >=22.12.0} 889 + hasBin: true 890 + peerDependencies: 891 + '@types/node': ^20.19.0 || >=22.12.0 892 + jiti: '>=1.21.0' 893 + less: ^4.0.0 894 + lightningcss: ^1.21.0 895 + sass: ^1.70.0 896 + sass-embedded: ^1.70.0 897 + stylus: '>=0.54.8' 898 + sugarss: ^5.0.0 899 + terser: ^5.16.0 900 + tsx: ^4.8.1 901 + yaml: ^2.4.2 902 + peerDependenciesMeta: 903 + '@types/node': 904 + optional: true 905 + jiti: 906 + optional: true 907 + less: 908 + optional: true 909 + lightningcss: 910 + optional: true 911 + sass: 912 + optional: true 913 + sass-embedded: 914 + optional: true 915 + stylus: 916 + optional: true 917 + sugarss: 918 + optional: true 919 + terser: 920 + optional: true 921 + tsx: 922 + optional: true 923 + yaml: 924 + optional: true 925 + 926 + vitefu@1.1.1: 927 + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 928 + peerDependencies: 929 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 930 + peerDependenciesMeta: 931 + vite: 932 + optional: true 933 + 934 + yallist@3.1.1: 935 + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 936 + 937 + yallist@5.0.0: 938 + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 939 + engines: {node: '>=18'} 940 + 941 + yaml@2.6.1: 942 + resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} 943 + engines: {node: '>= 14'} 944 + hasBin: true 945 + 946 + snapshots: 947 + 948 + '@babel/code-frame@7.27.1': 949 + dependencies: 950 + '@babel/helper-validator-identifier': 7.27.1 951 + js-tokens: 4.0.0 952 + picocolors: 1.1.1 953 + 954 + '@babel/compat-data@7.28.4': {} 955 + 956 + '@babel/core@7.28.4': 957 + dependencies: 958 + '@babel/code-frame': 7.27.1 959 + '@babel/generator': 7.28.3 960 + '@babel/helper-compilation-targets': 7.27.2 961 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) 962 + '@babel/helpers': 7.28.4 963 + '@babel/parser': 7.28.4 964 + '@babel/template': 7.27.2 965 + '@babel/traverse': 7.28.4 966 + '@babel/types': 7.28.4 967 + '@jridgewell/remapping': 2.3.5 968 + convert-source-map: 2.0.0 969 + debug: 4.4.1 970 + gensync: 1.0.0-beta.2 971 + json5: 2.2.3 972 + semver: 6.3.1 973 + transitivePeerDependencies: 974 + - supports-color 975 + 976 + '@babel/generator@7.28.3': 977 + dependencies: 978 + '@babel/parser': 7.28.4 979 + '@babel/types': 7.28.4 980 + '@jridgewell/gen-mapping': 0.3.13 981 + '@jridgewell/trace-mapping': 0.3.31 982 + jsesc: 3.1.0 983 + 984 + '@babel/helper-compilation-targets@7.27.2': 985 + dependencies: 986 + '@babel/compat-data': 7.28.4 987 + '@babel/helper-validator-option': 7.27.1 988 + browserslist: 4.25.4 989 + lru-cache: 5.1.1 990 + semver: 6.3.1 991 + 992 + '@babel/helper-globals@7.28.0': {} 993 + 994 + '@babel/helper-module-imports@7.18.6': 995 + dependencies: 996 + '@babel/types': 7.28.4 997 + 998 + '@babel/helper-module-imports@7.27.1': 999 + dependencies: 1000 + '@babel/traverse': 7.28.4 1001 + '@babel/types': 7.28.4 1002 + transitivePeerDependencies: 1003 + - supports-color 1004 + 1005 + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': 1006 + dependencies: 1007 + '@babel/core': 7.28.4 1008 + '@babel/helper-module-imports': 7.27.1 1009 + '@babel/helper-validator-identifier': 7.27.1 1010 + '@babel/traverse': 7.28.4 1011 + transitivePeerDependencies: 1012 + - supports-color 1013 + 1014 + '@babel/helper-plugin-utils@7.27.1': {} 1015 + 1016 + '@babel/helper-string-parser@7.27.1': {} 1017 + 1018 + '@babel/helper-validator-identifier@7.27.1': {} 1019 + 1020 + '@babel/helper-validator-option@7.27.1': {} 1021 + 1022 + '@babel/helpers@7.28.4': 1023 + dependencies: 1024 + '@babel/template': 7.27.2 1025 + '@babel/types': 7.28.4 1026 + 1027 + '@babel/parser@7.28.4': 1028 + dependencies: 1029 + '@babel/types': 7.28.4 1030 + 1031 + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)': 1032 + dependencies: 1033 + '@babel/core': 7.28.4 1034 + '@babel/helper-plugin-utils': 7.27.1 1035 + 1036 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)': 1037 + dependencies: 1038 + '@babel/core': 7.28.4 1039 + '@babel/helper-plugin-utils': 7.27.1 1040 + 1041 + '@babel/template@7.27.2': 1042 + dependencies: 1043 + '@babel/code-frame': 7.27.1 1044 + '@babel/parser': 7.28.4 1045 + '@babel/types': 7.28.4 1046 + 1047 + '@babel/traverse@7.28.4': 1048 + dependencies: 1049 + '@babel/code-frame': 7.27.1 1050 + '@babel/generator': 7.28.3 1051 + '@babel/helper-globals': 7.28.0 1052 + '@babel/parser': 7.28.4 1053 + '@babel/template': 7.27.2 1054 + '@babel/types': 7.28.4 1055 + debug: 4.4.1 1056 + transitivePeerDependencies: 1057 + - supports-color 1058 + 1059 + '@babel/types@7.28.4': 1060 + dependencies: 1061 + '@babel/helper-string-parser': 7.27.1 1062 + '@babel/helper-validator-identifier': 7.27.1 1063 + 1064 + '@esbuild/aix-ppc64@0.25.11': 1065 + optional: true 1066 + 1067 + '@esbuild/android-arm64@0.25.11': 1068 + optional: true 1069 + 1070 + '@esbuild/android-arm@0.25.11': 1071 + optional: true 1072 + 1073 + '@esbuild/android-x64@0.25.11': 1074 + optional: true 1075 + 1076 + '@esbuild/darwin-arm64@0.25.11': 1077 + optional: true 1078 + 1079 + '@esbuild/darwin-x64@0.25.11': 1080 + optional: true 1081 + 1082 + '@esbuild/freebsd-arm64@0.25.11': 1083 + optional: true 1084 + 1085 + '@esbuild/freebsd-x64@0.25.11': 1086 + optional: true 1087 + 1088 + '@esbuild/linux-arm64@0.25.11': 1089 + optional: true 1090 + 1091 + '@esbuild/linux-arm@0.25.11': 1092 + optional: true 1093 + 1094 + '@esbuild/linux-ia32@0.25.11': 1095 + optional: true 1096 + 1097 + '@esbuild/linux-loong64@0.25.11': 1098 + optional: true 1099 + 1100 + '@esbuild/linux-mips64el@0.25.11': 1101 + optional: true 1102 + 1103 + '@esbuild/linux-ppc64@0.25.11': 1104 + optional: true 1105 + 1106 + '@esbuild/linux-riscv64@0.25.11': 1107 + optional: true 1108 + 1109 + '@esbuild/linux-s390x@0.25.11': 1110 + optional: true 1111 + 1112 + '@esbuild/linux-x64@0.25.11': 1113 + optional: true 1114 + 1115 + '@esbuild/netbsd-arm64@0.25.11': 1116 + optional: true 1117 + 1118 + '@esbuild/netbsd-x64@0.25.11': 1119 + optional: true 1120 + 1121 + '@esbuild/openbsd-arm64@0.25.11': 1122 + optional: true 1123 + 1124 + '@esbuild/openbsd-x64@0.25.11': 1125 + optional: true 1126 + 1127 + '@esbuild/openharmony-arm64@0.25.11': 1128 + optional: true 1129 + 1130 + '@esbuild/sunos-x64@0.25.11': 1131 + optional: true 1132 + 1133 + '@esbuild/win32-arm64@0.25.11': 1134 + optional: true 1135 + 1136 + '@esbuild/win32-ia32@0.25.11': 1137 + optional: true 1138 + 1139 + '@esbuild/win32-x64@0.25.11': 1140 + optional: true 1141 + 1142 + '@isaacs/fs-minipass@4.0.1': 1143 + dependencies: 1144 + minipass: 7.1.2 1145 + 1146 + '@jridgewell/gen-mapping@0.3.13': 1147 + dependencies: 1148 + '@jridgewell/sourcemap-codec': 1.5.5 1149 + '@jridgewell/trace-mapping': 0.3.30 1150 + 1151 + '@jridgewell/remapping@2.3.5': 1152 + dependencies: 1153 + '@jridgewell/gen-mapping': 0.3.13 1154 + '@jridgewell/trace-mapping': 0.3.30 1155 + 1156 + '@jridgewell/resolve-uri@3.1.2': {} 1157 + 1158 + '@jridgewell/sourcemap-codec@1.5.5': {} 1159 + 1160 + '@jridgewell/trace-mapping@0.3.30': 1161 + dependencies: 1162 + '@jridgewell/resolve-uri': 3.1.2 1163 + '@jridgewell/sourcemap-codec': 1.5.5 1164 + 1165 + '@jridgewell/trace-mapping@0.3.31': 1166 + dependencies: 1167 + '@jridgewell/resolve-uri': 3.1.2 1168 + '@jridgewell/sourcemap-codec': 1.5.5 1169 + 1170 + '@nothing-but/utils@0.17.0': {} 1171 + 1172 + '@rollup/rollup-android-arm-eabi@4.52.5': 1173 + optional: true 1174 + 1175 + '@rollup/rollup-android-arm64@4.52.5': 1176 + optional: true 1177 + 1178 + '@rollup/rollup-darwin-arm64@4.52.5': 1179 + optional: true 1180 + 1181 + '@rollup/rollup-darwin-x64@4.52.5': 1182 + optional: true 1183 + 1184 + '@rollup/rollup-freebsd-arm64@4.52.5': 1185 + optional: true 1186 + 1187 + '@rollup/rollup-freebsd-x64@4.52.5': 1188 + optional: true 1189 + 1190 + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': 1191 + optional: true 1192 + 1193 + '@rollup/rollup-linux-arm-musleabihf@4.52.5': 1194 + optional: true 1195 + 1196 + '@rollup/rollup-linux-arm64-gnu@4.52.5': 1197 + optional: true 1198 + 1199 + '@rollup/rollup-linux-arm64-musl@4.52.5': 1200 + optional: true 1201 + 1202 + '@rollup/rollup-linux-loong64-gnu@4.52.5': 1203 + optional: true 1204 + 1205 + '@rollup/rollup-linux-ppc64-gnu@4.52.5': 1206 + optional: true 1207 + 1208 + '@rollup/rollup-linux-riscv64-gnu@4.52.5': 1209 + optional: true 1210 + 1211 + '@rollup/rollup-linux-riscv64-musl@4.52.5': 1212 + optional: true 1213 + 1214 + '@rollup/rollup-linux-s390x-gnu@4.52.5': 1215 + optional: true 1216 + 1217 + '@rollup/rollup-linux-x64-gnu@4.52.5': 1218 + optional: true 1219 + 1220 + '@rollup/rollup-linux-x64-musl@4.52.5': 1221 + optional: true 1222 + 1223 + '@rollup/rollup-openharmony-arm64@4.52.5': 1224 + optional: true 1225 + 1226 + '@rollup/rollup-win32-arm64-msvc@4.52.5': 1227 + optional: true 1228 + 1229 + '@rollup/rollup-win32-ia32-msvc@4.52.5': 1230 + optional: true 1231 + 1232 + '@rollup/rollup-win32-x64-gnu@4.52.5': 1233 + optional: true 1234 + 1235 + '@rollup/rollup-win32-x64-msvc@4.52.5': 1236 + optional: true 1237 + 1238 + '@solid-devtools/debugger@0.28.1(solid-js@1.9.9)': 1239 + dependencies: 1240 + '@nothing-but/utils': 0.17.0 1241 + '@solid-devtools/shared': 0.20.0(solid-js@1.9.9) 1242 + '@solid-primitives/bounds': 0.1.3(solid-js@1.9.9) 1243 + '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.9) 1244 + '@solid-primitives/keyboard': 1.3.3(solid-js@1.9.9) 1245 + '@solid-primitives/rootless': 1.5.2(solid-js@1.9.9) 1246 + '@solid-primitives/scheduled': 1.5.2(solid-js@1.9.9) 1247 + '@solid-primitives/static-store': 0.1.2(solid-js@1.9.9) 1248 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1249 + solid-js: 1.9.9 1250 + 1251 + '@solid-devtools/shared@0.20.0(solid-js@1.9.9)': 1252 + dependencies: 1253 + '@nothing-but/utils': 0.17.0 1254 + '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.9) 1255 + '@solid-primitives/media': 2.3.3(solid-js@1.9.9) 1256 + '@solid-primitives/refs': 1.1.2(solid-js@1.9.9) 1257 + '@solid-primitives/rootless': 1.5.2(solid-js@1.9.9) 1258 + '@solid-primitives/scheduled': 1.5.2(solid-js@1.9.9) 1259 + '@solid-primitives/static-store': 0.1.2(solid-js@1.9.9) 1260 + '@solid-primitives/styles': 0.1.2(solid-js@1.9.9) 1261 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1262 + solid-js: 1.9.9 1263 + 1264 + '@solid-primitives/bounds@0.1.3(solid-js@1.9.9)': 1265 + dependencies: 1266 + '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.9) 1267 + '@solid-primitives/resize-observer': 2.1.3(solid-js@1.9.9) 1268 + '@solid-primitives/static-store': 0.1.2(solid-js@1.9.9) 1269 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1270 + solid-js: 1.9.9 1271 + 1272 + '@solid-primitives/event-listener@2.4.3(solid-js@1.9.9)': 1273 + dependencies: 1274 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1275 + solid-js: 1.9.9 1276 + 1277 + '@solid-primitives/keyboard@1.3.3(solid-js@1.9.9)': 1278 + dependencies: 1279 + '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.9) 1280 + '@solid-primitives/rootless': 1.5.2(solid-js@1.9.9) 1281 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1282 + solid-js: 1.9.9 1283 + 1284 + '@solid-primitives/media@2.3.3(solid-js@1.9.9)': 1285 + dependencies: 1286 + '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.9) 1287 + '@solid-primitives/rootless': 1.5.2(solid-js@1.9.9) 1288 + '@solid-primitives/static-store': 0.1.2(solid-js@1.9.9) 1289 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1290 + solid-js: 1.9.9 1291 + 1292 + '@solid-primitives/refs@1.1.2(solid-js@1.9.9)': 1293 + dependencies: 1294 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1295 + solid-js: 1.9.9 1296 + 1297 + '@solid-primitives/resize-observer@2.1.3(solid-js@1.9.9)': 1298 + dependencies: 1299 + '@solid-primitives/event-listener': 2.4.3(solid-js@1.9.9) 1300 + '@solid-primitives/rootless': 1.5.2(solid-js@1.9.9) 1301 + '@solid-primitives/static-store': 0.1.2(solid-js@1.9.9) 1302 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1303 + solid-js: 1.9.9 1304 + 1305 + '@solid-primitives/rootless@1.5.2(solid-js@1.9.9)': 1306 + dependencies: 1307 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1308 + solid-js: 1.9.9 1309 + 1310 + '@solid-primitives/scheduled@1.5.2(solid-js@1.9.9)': 1311 + dependencies: 1312 + solid-js: 1.9.9 1313 + 1314 + '@solid-primitives/static-store@0.1.2(solid-js@1.9.9)': 1315 + dependencies: 1316 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1317 + solid-js: 1.9.9 1318 + 1319 + '@solid-primitives/styles@0.1.2(solid-js@1.9.9)': 1320 + dependencies: 1321 + '@solid-primitives/rootless': 1.5.2(solid-js@1.9.9) 1322 + '@solid-primitives/utils': 6.3.2(solid-js@1.9.9) 1323 + solid-js: 1.9.9 1324 + 1325 + '@solid-primitives/utils@6.3.2(solid-js@1.9.9)': 1326 + dependencies: 1327 + solid-js: 1.9.9 1328 + 1329 + '@tailwindcss/node@4.1.13': 1330 + dependencies: 1331 + '@jridgewell/remapping': 2.3.5 1332 + enhanced-resolve: 5.18.3 1333 + jiti: 2.5.1 1334 + lightningcss: 1.30.1 1335 + magic-string: 0.30.18 1336 + source-map-js: 1.2.1 1337 + tailwindcss: 4.1.13 1338 + 1339 + '@tailwindcss/oxide-android-arm64@4.1.13': 1340 + optional: true 1341 + 1342 + '@tailwindcss/oxide-darwin-arm64@4.1.13': 1343 + optional: true 1344 + 1345 + '@tailwindcss/oxide-darwin-x64@4.1.13': 1346 + optional: true 1347 + 1348 + '@tailwindcss/oxide-freebsd-x64@4.1.13': 1349 + optional: true 1350 + 1351 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13': 1352 + optional: true 1353 + 1354 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.13': 1355 + optional: true 1356 + 1357 + '@tailwindcss/oxide-linux-arm64-musl@4.1.13': 1358 + optional: true 1359 + 1360 + '@tailwindcss/oxide-linux-x64-gnu@4.1.13': 1361 + optional: true 1362 + 1363 + '@tailwindcss/oxide-linux-x64-musl@4.1.13': 1364 + optional: true 1365 + 1366 + '@tailwindcss/oxide-wasm32-wasi@4.1.13': 1367 + optional: true 1368 + 1369 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.13': 1370 + optional: true 1371 + 1372 + '@tailwindcss/oxide-win32-x64-msvc@4.1.13': 1373 + optional: true 1374 + 1375 + '@tailwindcss/oxide@4.1.13': 1376 + dependencies: 1377 + detect-libc: 2.0.4 1378 + tar: 7.4.3 1379 + optionalDependencies: 1380 + '@tailwindcss/oxide-android-arm64': 4.1.13 1381 + '@tailwindcss/oxide-darwin-arm64': 4.1.13 1382 + '@tailwindcss/oxide-darwin-x64': 4.1.13 1383 + '@tailwindcss/oxide-freebsd-x64': 4.1.13 1384 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.13 1385 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.13 1386 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.13 1387 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.13 1388 + '@tailwindcss/oxide-linux-x64-musl': 4.1.13 1389 + '@tailwindcss/oxide-wasm32-wasi': 4.1.13 1390 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.13 1391 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.13 1392 + 1393 + '@tailwindcss/vite@4.1.13(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1))': 1394 + dependencies: 1395 + '@tailwindcss/node': 4.1.13 1396 + '@tailwindcss/oxide': 4.1.13 1397 + tailwindcss: 4.1.13 1398 + vite: 7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1) 1399 + 1400 + '@types/babel__core@7.20.5': 1401 + dependencies: 1402 + '@babel/parser': 7.28.4 1403 + '@babel/types': 7.28.4 1404 + '@types/babel__generator': 7.27.0 1405 + '@types/babel__template': 7.4.4 1406 + '@types/babel__traverse': 7.28.0 1407 + 1408 + '@types/babel__generator@7.27.0': 1409 + dependencies: 1410 + '@babel/types': 7.28.4 1411 + 1412 + '@types/babel__template@7.4.4': 1413 + dependencies: 1414 + '@babel/parser': 7.28.4 1415 + '@babel/types': 7.28.4 1416 + 1417 + '@types/babel__traverse@7.28.0': 1418 + dependencies: 1419 + '@babel/types': 7.28.4 1420 + 1421 + '@types/estree@1.0.8': {} 1422 + 1423 + babel-plugin-jsx-dom-expressions@0.40.1(@babel/core@7.28.4): 1424 + dependencies: 1425 + '@babel/core': 7.28.4 1426 + '@babel/helper-module-imports': 7.18.6 1427 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) 1428 + '@babel/types': 7.28.4 1429 + html-entities: 2.3.3 1430 + parse5: 7.3.0 1431 + validate-html-nesting: 1.2.3 1432 + 1433 + babel-preset-solid@1.9.9(@babel/core@7.28.4)(solid-js@1.9.9): 1434 + dependencies: 1435 + '@babel/core': 7.28.4 1436 + babel-plugin-jsx-dom-expressions: 0.40.1(@babel/core@7.28.4) 1437 + optionalDependencies: 1438 + solid-js: 1.9.9 1439 + 1440 + browserslist@4.25.4: 1441 + dependencies: 1442 + caniuse-lite: 1.0.30001741 1443 + electron-to-chromium: 1.5.214 1444 + node-releases: 2.0.20 1445 + update-browserslist-db: 1.1.3(browserslist@4.25.4) 1446 + 1447 + caniuse-lite@1.0.30001741: {} 1448 + 1449 + chownr@3.0.0: {} 1450 + 1451 + convert-source-map@2.0.0: {} 1452 + 1453 + csstype@3.1.3: {} 1454 + 1455 + debug@4.4.1: 1456 + dependencies: 1457 + ms: 2.1.3 1458 + 1459 + detect-libc@2.0.4: {} 1460 + 1461 + electron-to-chromium@1.5.214: {} 1462 + 1463 + enhanced-resolve@5.18.3: 1464 + dependencies: 1465 + graceful-fs: 4.2.11 1466 + tapable: 2.2.3 1467 + 1468 + entities@6.0.1: {} 1469 + 1470 + esbuild@0.25.11: 1471 + optionalDependencies: 1472 + '@esbuild/aix-ppc64': 0.25.11 1473 + '@esbuild/android-arm': 0.25.11 1474 + '@esbuild/android-arm64': 0.25.11 1475 + '@esbuild/android-x64': 0.25.11 1476 + '@esbuild/darwin-arm64': 0.25.11 1477 + '@esbuild/darwin-x64': 0.25.11 1478 + '@esbuild/freebsd-arm64': 0.25.11 1479 + '@esbuild/freebsd-x64': 0.25.11 1480 + '@esbuild/linux-arm': 0.25.11 1481 + '@esbuild/linux-arm64': 0.25.11 1482 + '@esbuild/linux-ia32': 0.25.11 1483 + '@esbuild/linux-loong64': 0.25.11 1484 + '@esbuild/linux-mips64el': 0.25.11 1485 + '@esbuild/linux-ppc64': 0.25.11 1486 + '@esbuild/linux-riscv64': 0.25.11 1487 + '@esbuild/linux-s390x': 0.25.11 1488 + '@esbuild/linux-x64': 0.25.11 1489 + '@esbuild/netbsd-arm64': 0.25.11 1490 + '@esbuild/netbsd-x64': 0.25.11 1491 + '@esbuild/openbsd-arm64': 0.25.11 1492 + '@esbuild/openbsd-x64': 0.25.11 1493 + '@esbuild/openharmony-arm64': 0.25.11 1494 + '@esbuild/sunos-x64': 0.25.11 1495 + '@esbuild/win32-arm64': 0.25.11 1496 + '@esbuild/win32-ia32': 0.25.11 1497 + '@esbuild/win32-x64': 0.25.11 1498 + 1499 + escalade@3.2.0: {} 1500 + 1501 + fdir@6.5.0(picomatch@4.0.3): 1502 + optionalDependencies: 1503 + picomatch: 4.0.3 1504 + 1505 + fsevents@2.3.3: 1506 + optional: true 1507 + 1508 + gensync@1.0.0-beta.2: {} 1509 + 1510 + graceful-fs@4.2.11: {} 1511 + 1512 + html-entities@2.3.3: {} 1513 + 1514 + is-what@4.1.16: {} 1515 + 1516 + jiti@2.5.1: {} 1517 + 1518 + js-tokens@4.0.0: {} 1519 + 1520 + jsesc@3.1.0: {} 1521 + 1522 + json5@2.2.3: {} 1523 + 1524 + lightningcss-darwin-arm64@1.30.1: 1525 + optional: true 1526 + 1527 + lightningcss-darwin-x64@1.30.1: 1528 + optional: true 1529 + 1530 + lightningcss-freebsd-x64@1.30.1: 1531 + optional: true 1532 + 1533 + lightningcss-linux-arm-gnueabihf@1.30.1: 1534 + optional: true 1535 + 1536 + lightningcss-linux-arm64-gnu@1.30.1: 1537 + optional: true 1538 + 1539 + lightningcss-linux-arm64-musl@1.30.1: 1540 + optional: true 1541 + 1542 + lightningcss-linux-x64-gnu@1.30.1: 1543 + optional: true 1544 + 1545 + lightningcss-linux-x64-musl@1.30.1: 1546 + optional: true 1547 + 1548 + lightningcss-win32-arm64-msvc@1.30.1: 1549 + optional: true 1550 + 1551 + lightningcss-win32-x64-msvc@1.30.1: 1552 + optional: true 1553 + 1554 + lightningcss@1.30.1: 1555 + dependencies: 1556 + detect-libc: 2.0.4 1557 + optionalDependencies: 1558 + lightningcss-darwin-arm64: 1.30.1 1559 + lightningcss-darwin-x64: 1.30.1 1560 + lightningcss-freebsd-x64: 1.30.1 1561 + lightningcss-linux-arm-gnueabihf: 1.30.1 1562 + lightningcss-linux-arm64-gnu: 1.30.1 1563 + lightningcss-linux-arm64-musl: 1.30.1 1564 + lightningcss-linux-x64-gnu: 1.30.1 1565 + lightningcss-linux-x64-musl: 1.30.1 1566 + lightningcss-win32-arm64-msvc: 1.30.1 1567 + lightningcss-win32-x64-msvc: 1.30.1 1568 + 1569 + lru-cache@5.1.1: 1570 + dependencies: 1571 + yallist: 3.1.1 1572 + 1573 + magic-string@0.30.18: 1574 + dependencies: 1575 + '@jridgewell/sourcemap-codec': 1.5.5 1576 + 1577 + merge-anything@5.1.7: 1578 + dependencies: 1579 + is-what: 4.1.16 1580 + 1581 + minipass@7.1.2: {} 1582 + 1583 + minizlib@3.0.2: 1584 + dependencies: 1585 + minipass: 7.1.2 1586 + 1587 + mkdirp@3.0.1: {} 1588 + 1589 + ms@2.1.3: {} 1590 + 1591 + nanoid@3.3.11: {} 1592 + 1593 + node-releases@2.0.20: {} 1594 + 1595 + parse5@7.3.0: 1596 + dependencies: 1597 + entities: 6.0.1 1598 + 1599 + picocolors@1.1.1: {} 1600 + 1601 + picomatch@4.0.3: {} 1602 + 1603 + postcss@8.5.6: 1604 + dependencies: 1605 + nanoid: 3.3.11 1606 + picocolors: 1.1.1 1607 + source-map-js: 1.2.1 1608 + 1609 + rollup@4.52.5: 1610 + dependencies: 1611 + '@types/estree': 1.0.8 1612 + optionalDependencies: 1613 + '@rollup/rollup-android-arm-eabi': 4.52.5 1614 + '@rollup/rollup-android-arm64': 4.52.5 1615 + '@rollup/rollup-darwin-arm64': 4.52.5 1616 + '@rollup/rollup-darwin-x64': 4.52.5 1617 + '@rollup/rollup-freebsd-arm64': 4.52.5 1618 + '@rollup/rollup-freebsd-x64': 4.52.5 1619 + '@rollup/rollup-linux-arm-gnueabihf': 4.52.5 1620 + '@rollup/rollup-linux-arm-musleabihf': 4.52.5 1621 + '@rollup/rollup-linux-arm64-gnu': 4.52.5 1622 + '@rollup/rollup-linux-arm64-musl': 4.52.5 1623 + '@rollup/rollup-linux-loong64-gnu': 4.52.5 1624 + '@rollup/rollup-linux-ppc64-gnu': 4.52.5 1625 + '@rollup/rollup-linux-riscv64-gnu': 4.52.5 1626 + '@rollup/rollup-linux-riscv64-musl': 4.52.5 1627 + '@rollup/rollup-linux-s390x-gnu': 4.52.5 1628 + '@rollup/rollup-linux-x64-gnu': 4.52.5 1629 + '@rollup/rollup-linux-x64-musl': 4.52.5 1630 + '@rollup/rollup-openharmony-arm64': 4.52.5 1631 + '@rollup/rollup-win32-arm64-msvc': 4.52.5 1632 + '@rollup/rollup-win32-ia32-msvc': 4.52.5 1633 + '@rollup/rollup-win32-x64-gnu': 4.52.5 1634 + '@rollup/rollup-win32-x64-msvc': 4.52.5 1635 + fsevents: 2.3.3 1636 + 1637 + semver@6.3.1: {} 1638 + 1639 + seroval-plugins@1.3.3(seroval@1.3.2): 1640 + dependencies: 1641 + seroval: 1.3.2 1642 + 1643 + seroval@1.3.2: {} 1644 + 1645 + solid-devtools@0.34.3(solid-js@1.9.9)(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)): 1646 + dependencies: 1647 + '@babel/core': 7.28.4 1648 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) 1649 + '@babel/types': 7.28.4 1650 + '@solid-devtools/debugger': 0.28.1(solid-js@1.9.9) 1651 + '@solid-devtools/shared': 0.20.0(solid-js@1.9.9) 1652 + solid-js: 1.9.9 1653 + optionalDependencies: 1654 + vite: 7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1) 1655 + transitivePeerDependencies: 1656 + - supports-color 1657 + 1658 + solid-js@1.9.9: 1659 + dependencies: 1660 + csstype: 3.1.3 1661 + seroval: 1.3.2 1662 + seroval-plugins: 1.3.3(seroval@1.3.2) 1663 + 1664 + solid-refresh@0.6.3(solid-js@1.9.9): 1665 + dependencies: 1666 + '@babel/generator': 7.28.3 1667 + '@babel/helper-module-imports': 7.27.1 1668 + '@babel/types': 7.28.4 1669 + solid-js: 1.9.9 1670 + transitivePeerDependencies: 1671 + - supports-color 1672 + 1673 + source-map-js@1.2.1: {} 1674 + 1675 + tailwindcss@4.1.13: {} 1676 + 1677 + tapable@2.2.3: {} 1678 + 1679 + tar@7.4.3: 1680 + dependencies: 1681 + '@isaacs/fs-minipass': 4.0.1 1682 + chownr: 3.0.0 1683 + minipass: 7.1.2 1684 + minizlib: 3.0.2 1685 + mkdirp: 3.0.1 1686 + yallist: 5.0.0 1687 + 1688 + tinyglobby@0.2.15: 1689 + dependencies: 1690 + fdir: 6.5.0(picomatch@4.0.3) 1691 + picomatch: 4.0.3 1692 + 1693 + typescript@5.9.2: {} 1694 + 1695 + update-browserslist-db@1.1.3(browserslist@4.25.4): 1696 + dependencies: 1697 + browserslist: 4.25.4 1698 + escalade: 3.2.0 1699 + picocolors: 1.1.1 1700 + 1701 + validate-html-nesting@1.2.3: {} 1702 + 1703 + vite-plugin-solid@2.11.9(solid-js@1.9.9)(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)): 1704 + dependencies: 1705 + '@babel/core': 7.28.4 1706 + '@types/babel__core': 7.20.5 1707 + babel-preset-solid: 1.9.9(@babel/core@7.28.4)(solid-js@1.9.9) 1708 + merge-anything: 5.1.7 1709 + solid-js: 1.9.9 1710 + solid-refresh: 0.6.3(solid-js@1.9.9) 1711 + vite: 7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1) 1712 + vitefu: 1.1.1(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)) 1713 + transitivePeerDependencies: 1714 + - supports-color 1715 + 1716 + vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1): 1717 + dependencies: 1718 + esbuild: 0.25.11 1719 + fdir: 6.5.0(picomatch@4.0.3) 1720 + picomatch: 4.0.3 1721 + postcss: 8.5.6 1722 + rollup: 4.52.5 1723 + tinyglobby: 0.2.15 1724 + optionalDependencies: 1725 + fsevents: 2.3.3 1726 + jiti: 2.5.1 1727 + lightningcss: 1.30.1 1728 + yaml: 2.6.1 1729 + 1730 + vitefu@1.1.1(vite@7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1)): 1731 + optionalDependencies: 1732 + vite: 7.1.10(jiti@2.5.1)(lightningcss@1.30.1)(yaml@2.6.1) 1733 + 1734 + yallist@3.1.1: {} 1735 + 1736 + yallist@5.0.0: {} 1737 + 1738 + yaml@2.6.1: 1739 + optional: true
+7
apps/frontend-new/src/App.tsx
··· 1 + import type { Component } from 'solid-js' 2 + 3 + const App: Component = () => { 4 + return <p class='text-4xl text-green-700 text-center py-20'>Hello tailwind!</p> 5 + } 6 + 7 + export default App
+1
apps/frontend-new/src/index.css
··· 1 + @import 'tailwindcss';
+16
apps/frontend-new/src/index.tsx
··· 1 + /* @refresh reload */ 2 + import './index.css' 3 + import { render } from 'solid-js/web' 4 + import 'solid-devtools' 5 + 6 + import App from './App' 7 + 8 + const root = document.getElementById('root') 9 + 10 + if (import.meta.env.DEV && !(root instanceof HTMLElement)) { 11 + throw new Error( 12 + 'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?' 13 + ) 14 + } 15 + 16 + render(() => <App />, root!)
+20
apps/frontend-new/tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + // General 4 + "jsx": "preserve", 5 + "jsxImportSource": "solid-js", 6 + "target": "ESNext", 7 + 8 + // Modules 9 + "allowSyntheticDefaultImports": true, 10 + "esModuleInterop": true, 11 + "isolatedModules": true, 12 + "module": "ESNext", 13 + "moduleResolution": "bundler", 14 + "noEmit": true, 15 + 16 + // Type Checking & Safety 17 + "strict": true, 18 + "types": ["vite/client"] 19 + } 20 + }
+14
apps/frontend-new/vite.config.ts
··· 1 + import tailwindcss from '@tailwindcss/vite' 2 + import { defineConfig } from 'vite' 3 + import devtools from 'solid-devtools/vite' 4 + import solidOxc from '@oxc-solid-js/vite' 5 + 6 + export default defineConfig({ 7 + plugins: [solidOxc(), tailwindcss()], 8 + server: { 9 + port: 3000 10 + }, 11 + build: { 12 + target: 'esnext' 13 + } 14 + })
+1860 -77
pnpm-lock.yaml
··· 34 34 specifier: ^5 35 35 version: 5.9.3 36 36 vite-plus: 37 - specifier: latest 37 + specifier: 0.1.16 38 38 version: 0.1.11 39 39 40 40 overrides: 41 - vite: npm:@voidzero-dev/vite-plus-core@latest 42 - vitest: npm:@voidzero-dev/vite-plus-test@latest 41 + vite: npm:@voidzero-dev/vite-plus-core@0.1.16 42 + vitest: npm:@voidzero-dev/vite-plus-test@0.1.16 43 43 44 44 importers: 45 45 ··· 50 50 version: link:packages/cli 51 51 vite-plus: 52 52 specifier: 'catalog:' 53 - version: 0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 53 + version: 0.1.16(@types/node@25.1.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 54 54 55 55 apps/build-service: 56 56 dependencies: ··· 75 75 version: 7.0.0-dev.20260313.1 76 76 vite-plus: 77 77 specifier: 'catalog:' 78 - version: 0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 78 + version: 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 79 79 80 80 apps/frontend: 81 81 dependencies: ··· 156 156 version: 4.0.2 157 157 '@tailwindcss/vite': 158 158 specifier: ^4.1.18 159 - version: 4.2.1(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 159 + version: 4.2.1(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 160 160 '@tanstack/react-query': 161 161 specifier: ^5.90.12 162 162 version: 5.90.21(react@19.2.4) ··· 232 232 version: 0.1.25(@types/react@19.2.14)(react@19.2.4) 233 233 '@rolldown/plugin-babel': 234 234 specifier: 'catalog:' 235 - version: 0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9) 235 + version: 0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9) 236 236 '@types/babel__core': 237 237 specifier: 'catalog:' 238 238 version: 7.20.5 ··· 250 250 version: 7.0.0-dev.20260313.1 251 251 '@vitejs/plugin-react': 252 252 specifier: ^6.0.1 253 - version: 6.0.1(@rolldown/plugin-babel@0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9))(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(babel-plugin-react-compiler@1.0.0) 253 + version: 6.0.1(@rolldown/plugin-babel@0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9))(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(babel-plugin-react-compiler@1.0.0) 254 254 babel-plugin-react-compiler: 255 255 specifier: 1.0.0 256 256 version: 1.0.0 ··· 261 261 specifier: 'catalog:' 262 262 version: 5.9.3 263 263 vite: 264 - specifier: npm:@voidzero-dev/vite-plus-core@latest 265 - version: '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 264 + specifier: npm:@voidzero-dev/vite-plus-core@0.1.16 265 + version: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 266 + vite-plus: 267 + specifier: 'catalog:' 268 + version: 0.1.11(@types/node@24.12.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 269 + 270 + apps/frontend-new: 271 + dependencies: 272 + '@uwu/flora-api-client': 273 + specifier: workspace:* 274 + version: link:../../packages/api-client 275 + solid-js: 276 + specifier: ^1.9.9 277 + version: 1.9.11 278 + devDependencies: 279 + '@oxc-solid-js/compiler': 280 + specifier: 1.1.4 281 + version: 1.1.4 282 + '@oxc-solid-js/vite': 283 + specifier: 0.1.0-alpha.15 284 + version: 0.1.0-alpha.15(@oxc-solid-js/compiler@1.1.4)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(solid-js@1.9.11) 285 + '@tailwindcss/vite': 286 + specifier: ^4.1.13 287 + version: 4.2.1(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 288 + solid-devtools: 289 + specifier: ^0.34.3 290 + version: 0.34.5(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(solid-js@1.9.11) 291 + tailwindcss: 292 + specifier: ^4.1.13 293 + version: 4.2.1 294 + typescript: 295 + specifier: ^5.9.2 296 + version: 5.9.3 297 + vite: 298 + specifier: npm:@voidzero-dev/vite-plus-core@0.1.16 299 + version: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 300 + vite-plugin-solid: 301 + specifier: ^2.11.8 302 + version: 2.11.12(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(solid-js@1.9.11) 266 303 vite-plus: 267 304 specifier: 'catalog:' 268 - version: 0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 305 + version: 0.1.16(@types/node@25.1.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 269 306 270 307 apps/uwu.network: 271 308 dependencies: ··· 299 336 version: 0.1.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(vue@3.5.30(typescript@5.9.3)) 300 337 vitepress: 301 338 specifier: 2.0.0-alpha.16 302 - version: 2.0.0-alpha.16(@types/node@24.12.0)(change-case@5.4.4)(esbuild@0.27.3)(jiti@2.6.1)(oxc-minify@0.116.0)(postcss@8.5.8)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 339 + version: 2.0.0-alpha.16(@types/node@24.12.0)(change-case@5.4.4)(jiti@2.6.1)(oxc-minify@0.116.0)(postcss@8.5.9)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 303 340 vue: 304 341 specifier: ^3.5.29 305 342 version: 3.5.30(typescript@5.9.3) ··· 321 358 version: 5.9.3 322 359 unocss: 323 360 specifier: ^66.5.12 324 - version: 66.6.6(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2)) 361 + version: 66.6.6(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2)) 325 362 wrangler: 326 363 specifier: ^4.58.0 327 364 version: 4.73.0 ··· 352 389 version: 5.9.3 353 390 vite-plus: 354 391 specifier: 'catalog:' 355 - version: 0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 392 + version: 0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 356 393 vitest: 357 - specifier: npm:@voidzero-dev/vite-plus-test@latest 358 - version: '@voidzero-dev/vite-plus-test@0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)' 394 + specifier: npm:@voidzero-dev/vite-plus-test@0.1.16 395 + version: '@voidzero-dev/vite-plus-test@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)' 359 396 360 397 packages/cli: 361 398 dependencies: ··· 404 441 version: 5.9.3 405 442 vite-plus: 406 443 specifier: 'catalog:' 407 - version: 0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 444 + version: 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 408 445 vitest: 409 - specifier: npm:@voidzero-dev/vite-plus-test@latest 410 - version: '@voidzero-dev/vite-plus-test@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)' 446 + specifier: npm:@voidzero-dev/vite-plus-test@0.1.16 447 + version: '@voidzero-dev/vite-plus-test@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)' 411 448 412 449 packages/sdk: 413 450 devDependencies: ··· 473 510 474 511 '@babel/helper-member-expression-to-functions@7.28.5': 475 512 resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} 513 + engines: {node: '>=6.9.0'} 514 + 515 + '@babel/helper-module-imports@7.18.6': 516 + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} 476 517 engines: {node: '>=6.9.0'} 477 518 478 519 '@babel/helper-module-imports@7.28.6': ··· 780 821 cpu: [ppc64] 781 822 os: [aix] 782 823 824 + '@esbuild/aix-ppc64@0.27.7': 825 + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} 826 + engines: {node: '>=18'} 827 + cpu: [ppc64] 828 + os: [aix] 829 + 783 830 '@esbuild/android-arm64@0.25.12': 784 831 resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} 785 832 engines: {node: '>=18'} ··· 792 839 cpu: [arm64] 793 840 os: [android] 794 841 842 + '@esbuild/android-arm64@0.27.7': 843 + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} 844 + engines: {node: '>=18'} 845 + cpu: [arm64] 846 + os: [android] 847 + 795 848 '@esbuild/android-arm@0.25.12': 796 849 resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} 797 850 engines: {node: '>=18'} ··· 804 857 cpu: [arm] 805 858 os: [android] 806 859 860 + '@esbuild/android-arm@0.27.7': 861 + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} 862 + engines: {node: '>=18'} 863 + cpu: [arm] 864 + os: [android] 865 + 807 866 '@esbuild/android-x64@0.25.12': 808 867 resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} 809 868 engines: {node: '>=18'} ··· 816 875 cpu: [x64] 817 876 os: [android] 818 877 878 + '@esbuild/android-x64@0.27.7': 879 + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} 880 + engines: {node: '>=18'} 881 + cpu: [x64] 882 + os: [android] 883 + 819 884 '@esbuild/darwin-arm64@0.25.12': 820 885 resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} 821 886 engines: {node: '>=18'} ··· 828 893 cpu: [arm64] 829 894 os: [darwin] 830 895 896 + '@esbuild/darwin-arm64@0.27.7': 897 + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} 898 + engines: {node: '>=18'} 899 + cpu: [arm64] 900 + os: [darwin] 901 + 831 902 '@esbuild/darwin-x64@0.25.12': 832 903 resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} 833 904 engines: {node: '>=18'} ··· 840 911 cpu: [x64] 841 912 os: [darwin] 842 913 914 + '@esbuild/darwin-x64@0.27.7': 915 + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} 916 + engines: {node: '>=18'} 917 + cpu: [x64] 918 + os: [darwin] 919 + 843 920 '@esbuild/freebsd-arm64@0.25.12': 844 921 resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} 845 922 engines: {node: '>=18'} ··· 852 929 cpu: [arm64] 853 930 os: [freebsd] 854 931 932 + '@esbuild/freebsd-arm64@0.27.7': 933 + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} 934 + engines: {node: '>=18'} 935 + cpu: [arm64] 936 + os: [freebsd] 937 + 855 938 '@esbuild/freebsd-x64@0.25.12': 856 939 resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} 857 940 engines: {node: '>=18'} ··· 864 947 cpu: [x64] 865 948 os: [freebsd] 866 949 950 + '@esbuild/freebsd-x64@0.27.7': 951 + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} 952 + engines: {node: '>=18'} 953 + cpu: [x64] 954 + os: [freebsd] 955 + 867 956 '@esbuild/linux-arm64@0.25.12': 868 957 resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} 869 958 engines: {node: '>=18'} ··· 876 965 cpu: [arm64] 877 966 os: [linux] 878 967 968 + '@esbuild/linux-arm64@0.27.7': 969 + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} 970 + engines: {node: '>=18'} 971 + cpu: [arm64] 972 + os: [linux] 973 + 879 974 '@esbuild/linux-arm@0.25.12': 880 975 resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} 881 976 engines: {node: '>=18'} ··· 888 983 cpu: [arm] 889 984 os: [linux] 890 985 986 + '@esbuild/linux-arm@0.27.7': 987 + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} 988 + engines: {node: '>=18'} 989 + cpu: [arm] 990 + os: [linux] 991 + 891 992 '@esbuild/linux-ia32@0.25.12': 892 993 resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} 893 994 engines: {node: '>=18'} ··· 896 997 897 998 '@esbuild/linux-ia32@0.27.3': 898 999 resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==} 1000 + engines: {node: '>=18'} 1001 + cpu: [ia32] 1002 + os: [linux] 1003 + 1004 + '@esbuild/linux-ia32@0.27.7': 1005 + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} 899 1006 engines: {node: '>=18'} 900 1007 cpu: [ia32] 901 1008 os: [linux] ··· 912 1019 cpu: [loong64] 913 1020 os: [linux] 914 1021 1022 + '@esbuild/linux-loong64@0.27.7': 1023 + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} 1024 + engines: {node: '>=18'} 1025 + cpu: [loong64] 1026 + os: [linux] 1027 + 915 1028 '@esbuild/linux-mips64el@0.25.12': 916 1029 resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} 917 1030 engines: {node: '>=18'} ··· 924 1037 cpu: [mips64el] 925 1038 os: [linux] 926 1039 1040 + '@esbuild/linux-mips64el@0.27.7': 1041 + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} 1042 + engines: {node: '>=18'} 1043 + cpu: [mips64el] 1044 + os: [linux] 1045 + 927 1046 '@esbuild/linux-ppc64@0.25.12': 928 1047 resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} 929 1048 engines: {node: '>=18'} ··· 936 1055 cpu: [ppc64] 937 1056 os: [linux] 938 1057 1058 + '@esbuild/linux-ppc64@0.27.7': 1059 + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} 1060 + engines: {node: '>=18'} 1061 + cpu: [ppc64] 1062 + os: [linux] 1063 + 939 1064 '@esbuild/linux-riscv64@0.25.12': 940 1065 resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} 941 1066 engines: {node: '>=18'} ··· 948 1073 cpu: [riscv64] 949 1074 os: [linux] 950 1075 1076 + '@esbuild/linux-riscv64@0.27.7': 1077 + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} 1078 + engines: {node: '>=18'} 1079 + cpu: [riscv64] 1080 + os: [linux] 1081 + 951 1082 '@esbuild/linux-s390x@0.25.12': 952 1083 resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} 953 1084 engines: {node: '>=18'} ··· 956 1087 957 1088 '@esbuild/linux-s390x@0.27.3': 958 1089 resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==} 1090 + engines: {node: '>=18'} 1091 + cpu: [s390x] 1092 + os: [linux] 1093 + 1094 + '@esbuild/linux-s390x@0.27.7': 1095 + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} 959 1096 engines: {node: '>=18'} 960 1097 cpu: [s390x] 961 1098 os: [linux] ··· 972 1109 cpu: [x64] 973 1110 os: [linux] 974 1111 1112 + '@esbuild/linux-x64@0.27.7': 1113 + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} 1114 + engines: {node: '>=18'} 1115 + cpu: [x64] 1116 + os: [linux] 1117 + 975 1118 '@esbuild/netbsd-arm64@0.25.12': 976 1119 resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} 977 1120 engines: {node: '>=18'} ··· 984 1127 cpu: [arm64] 985 1128 os: [netbsd] 986 1129 1130 + '@esbuild/netbsd-arm64@0.27.7': 1131 + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} 1132 + engines: {node: '>=18'} 1133 + cpu: [arm64] 1134 + os: [netbsd] 1135 + 987 1136 '@esbuild/netbsd-x64@0.25.12': 988 1137 resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} 989 1138 engines: {node: '>=18'} ··· 996 1145 cpu: [x64] 997 1146 os: [netbsd] 998 1147 1148 + '@esbuild/netbsd-x64@0.27.7': 1149 + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} 1150 + engines: {node: '>=18'} 1151 + cpu: [x64] 1152 + os: [netbsd] 1153 + 999 1154 '@esbuild/openbsd-arm64@0.25.12': 1000 1155 resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} 1001 1156 engines: {node: '>=18'} ··· 1008 1163 cpu: [arm64] 1009 1164 os: [openbsd] 1010 1165 1166 + '@esbuild/openbsd-arm64@0.27.7': 1167 + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} 1168 + engines: {node: '>=18'} 1169 + cpu: [arm64] 1170 + os: [openbsd] 1171 + 1011 1172 '@esbuild/openbsd-x64@0.25.12': 1012 1173 resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} 1013 1174 engines: {node: '>=18'} ··· 1020 1181 cpu: [x64] 1021 1182 os: [openbsd] 1022 1183 1184 + '@esbuild/openbsd-x64@0.27.7': 1185 + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} 1186 + engines: {node: '>=18'} 1187 + cpu: [x64] 1188 + os: [openbsd] 1189 + 1023 1190 '@esbuild/openharmony-arm64@0.25.12': 1024 1191 resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} 1025 1192 engines: {node: '>=18'} ··· 1032 1199 cpu: [arm64] 1033 1200 os: [openharmony] 1034 1201 1202 + '@esbuild/openharmony-arm64@0.27.7': 1203 + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} 1204 + engines: {node: '>=18'} 1205 + cpu: [arm64] 1206 + os: [openharmony] 1207 + 1035 1208 '@esbuild/sunos-x64@0.25.12': 1036 1209 resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} 1037 1210 engines: {node: '>=18'} ··· 1044 1217 cpu: [x64] 1045 1218 os: [sunos] 1046 1219 1220 + '@esbuild/sunos-x64@0.27.7': 1221 + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} 1222 + engines: {node: '>=18'} 1223 + cpu: [x64] 1224 + os: [sunos] 1225 + 1047 1226 '@esbuild/win32-arm64@0.25.12': 1048 1227 resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} 1049 1228 engines: {node: '>=18'} ··· 1056 1235 cpu: [arm64] 1057 1236 os: [win32] 1058 1237 1238 + '@esbuild/win32-arm64@0.27.7': 1239 + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} 1240 + engines: {node: '>=18'} 1241 + cpu: [arm64] 1242 + os: [win32] 1243 + 1059 1244 '@esbuild/win32-ia32@0.25.12': 1060 1245 resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} 1061 1246 engines: {node: '>=18'} ··· 1064 1249 1065 1250 '@esbuild/win32-ia32@0.27.3': 1066 1251 resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==} 1252 + engines: {node: '>=18'} 1253 + cpu: [ia32] 1254 + os: [win32] 1255 + 1256 + '@esbuild/win32-ia32@0.27.7': 1257 + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} 1067 1258 engines: {node: '>=18'} 1068 1259 cpu: [ia32] 1069 1260 os: [win32] ··· 1076 1267 1077 1268 '@esbuild/win32-x64@0.27.3': 1078 1269 resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==} 1270 + engines: {node: '>=18'} 1271 + cpu: [x64] 1272 + os: [win32] 1273 + 1274 + '@esbuild/win32-x64@0.27.7': 1275 + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} 1079 1276 engines: {node: '>=18'} 1080 1277 cpu: [x64] 1081 1278 os: [win32] ··· 1346 1543 '@napi-rs/wasm-runtime@1.1.1': 1347 1544 resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==} 1348 1545 1546 + '@napi-rs/wasm-runtime@1.1.3': 1547 + resolution: {integrity: sha512-xK9sGVbJWYb08+mTJt3/YV24WxvxpXcXtP6B172paPZ+Ts69Re9dAr7lKwJoeIx8OoeuimEiRZ7umkiUVClmmQ==} 1548 + peerDependencies: 1549 + '@emnapi/core': ^1.7.1 1550 + '@emnapi/runtime': ^1.7.1 1551 + 1349 1552 '@noble/ciphers@1.3.0': 1350 1553 resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==} 1351 1554 engines: {node: ^14.21.3 || >=16} ··· 1370 1573 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1371 1574 engines: {node: '>= 8'} 1372 1575 1576 + '@nothing-but/utils@0.17.0': 1577 + resolution: {integrity: sha512-TuCHcHLOqDL0SnaAxACfuRHBNRgNJcNn9X0GiH5H3YSDBVquCr3qEIG3FOQAuMyZCbu9w8nk2CHhOsn7IvhIwQ==} 1578 + 1373 1579 '@open-draft/deferred-promise@2.2.0': 1374 1580 resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} 1375 1581 ··· 1637 1843 resolution: {integrity: sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ==} 1638 1844 engines: {node: ^20.19.0 || >=22.12.0} 1639 1845 1846 + '@oxc-project/runtime@0.123.0': 1847 + resolution: {integrity: sha512-wRf0z8saz9tHLcK3YeTeBmwISrpy4bBimvKxUmryiIhbt+ZJb0nwwJNL3D8xpeWbNfZlGSlzRBZbfcbApIGZJw==} 1848 + engines: {node: ^20.19.0 || >=22.12.0} 1849 + 1640 1850 '@oxc-project/types@0.115.0': 1641 1851 resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==} 1642 1852 1853 + '@oxc-project/types@0.123.0': 1854 + resolution: {integrity: sha512-YtECP/y8Mj1lSHiUWGSRzy/C6teUKlS87dEfuVKT09LgQbUsBW1rNg+MiJ4buGu3yuADV60gbIvo9/HplA56Ew==} 1855 + 1856 + '@oxc-solid-js/compiler-darwin-arm64@1.1.4': 1857 + resolution: {integrity: sha512-WNt7GE6YoUMBzvZMEZBWpYgb3WIRBki53jX60dI1RH+tYhvdyb1cojfWqPJl5I2hIt5EE8f9yDoUra9sIZho6A==} 1858 + engines: {node: '>= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0'} 1859 + cpu: [arm64] 1860 + os: [darwin] 1861 + 1862 + '@oxc-solid-js/compiler-darwin-x64@1.1.4': 1863 + resolution: {integrity: sha512-MzVnXPmjhfZRBc6LZW121fN2utVMOS9fJ+9pScgY5gol1f2QX95nwEFWneP0GFb6FL8anh+QxXgxfAoom5x1ZA==} 1864 + engines: {node: '>= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0'} 1865 + cpu: [x64] 1866 + os: [darwin] 1867 + 1868 + '@oxc-solid-js/compiler-linux-x64-gnu@1.1.4': 1869 + resolution: {integrity: sha512-xMLOOe1i4Jnu94j2ZsrU1k1Q7edxhNw+yUsyzgFTjV6VQe7SFWxBAgAGwirZz9j39W5tAPXRhp9AjdhPJTJ5uQ==} 1870 + engines: {node: '>= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0'} 1871 + cpu: [x64] 1872 + os: [linux] 1873 + libc: [glibc] 1874 + 1875 + '@oxc-solid-js/compiler-win32-x64-msvc@1.1.4': 1876 + resolution: {integrity: sha512-BOvcN5N1+6rBxY8TsusnnPLKwMMio2GSUPkXZHrNJ2FzYfdIbMXTJUozLJYwc5IT50qhz2/b2S+cNKrroc/VdA==} 1877 + engines: {node: '>= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0'} 1878 + cpu: [x64] 1879 + os: [win32] 1880 + 1881 + '@oxc-solid-js/compiler@1.1.4': 1882 + resolution: {integrity: sha512-CIPTuCwad6DUXL857SR37l7IPHtdxU9rM5ePgQNfu/EJYnBNdGCvdsMB+obKBGIhJOYThJYlsiWCSNn7izJuhA==} 1883 + engines: {node: '>= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0'} 1884 + 1885 + '@oxc-solid-js/vite@0.1.0-alpha.15': 1886 + resolution: {integrity: sha512-72RVZC6sK6qxyU3diGNVsonaidNg66Sh+YM3kg5Q5CmEv9JFzniUpwPr4cqn8xQczkoUJm8iN8FbrCIRfMCIow==} 1887 + peerDependencies: 1888 + '@oxc-solid-js/compiler': 1.1.1 1889 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 1890 + 1643 1891 '@oxfmt/binding-android-arm-eabi@0.40.0': 1644 1892 resolution: {integrity: sha512-S6zd5r1w/HmqR8t0CTnGjFTBLDq2QKORPwriCHxo4xFNuhmOTABGjPaNvCJJVnrKBLsohOeiDX3YqQfJPF+FXw==} 1645 1893 engines: {node: ^20.19.0 || >=22.12.0} 1646 1894 cpu: [arm] 1647 1895 os: [android] 1648 1896 1897 + '@oxfmt/binding-android-arm-eabi@0.43.0': 1898 + resolution: {integrity: sha512-CgU2s+/9hHZgo0IxVxrbMPrMj+tJ6VM3mD7Mr/4oiz4FNTISLoCvRmB5nk4wAAle045RtRjd86m673jwPyb1OQ==} 1899 + engines: {node: ^20.19.0 || >=22.12.0} 1900 + cpu: [arm] 1901 + os: [android] 1902 + 1649 1903 '@oxfmt/binding-android-arm64@0.40.0': 1650 1904 resolution: {integrity: sha512-/mbS9UUP/5Vbl2D6osIdcYiP0oie63LKMoTyGj5hyMCK/SFkl3EhtyRAfdjPvuvHC0SXdW6ePaTKkBSq1SNcIw==} 1651 1905 engines: {node: ^20.19.0 || >=22.12.0} 1652 1906 cpu: [arm64] 1653 1907 os: [android] 1654 1908 1909 + '@oxfmt/binding-android-arm64@0.43.0': 1910 + resolution: {integrity: sha512-T9OfRwjA/EdYxAqbvR7TtqLv5nIrwPXuCtTwOHtS7aR9uXyn74ZYgzgTo6/ZwvTq9DY4W+DsV09hB2EXgn9EbA==} 1911 + engines: {node: ^20.19.0 || >=22.12.0} 1912 + cpu: [arm64] 1913 + os: [android] 1914 + 1655 1915 '@oxfmt/binding-darwin-arm64@0.40.0': 1656 1916 resolution: {integrity: sha512-wRt8fRdfLiEhnRMBonlIbKrJWixoEmn6KCjKE9PElnrSDSXETGZfPb8ee+nQNTobXkCVvVLytp2o0obAsxl78Q==} 1917 + engines: {node: ^20.19.0 || >=22.12.0} 1918 + cpu: [arm64] 1919 + os: [darwin] 1920 + 1921 + '@oxfmt/binding-darwin-arm64@0.43.0': 1922 + resolution: {integrity: sha512-o3i49ZUSJWANzXMAAVY1wnqb65hn4JVzwlRQ5qfcwhRzIA8lGVaud31Q3by5ALHPrksp5QEaKCQF9aAS3TXpZA==} 1657 1923 engines: {node: ^20.19.0 || >=22.12.0} 1658 1924 cpu: [arm64] 1659 1925 os: [darwin] ··· 1664 1930 cpu: [x64] 1665 1931 os: [darwin] 1666 1932 1933 + '@oxfmt/binding-darwin-x64@0.43.0': 1934 + resolution: {integrity: sha512-vWECzzCFkb0kK6jaHjbtC5sC3adiNWtqawFCxhpvsWlzVeKmv5bNvkB4nux+o4JKWTpHCM57NDK/MeXt44txmA==} 1935 + engines: {node: ^20.19.0 || >=22.12.0} 1936 + cpu: [x64] 1937 + os: [darwin] 1938 + 1667 1939 '@oxfmt/binding-freebsd-x64@0.40.0': 1668 1940 resolution: {integrity: sha512-agZ9ITaqdBjcerRRFEHB8s0OyVcQW8F9ZxsszjxzeSthQ4fcN2MuOtQFWec1ed8/lDa50jSLHVE2/xPmTgtCfQ==} 1669 1941 engines: {node: ^20.19.0 || >=22.12.0} 1670 1942 cpu: [x64] 1671 1943 os: [freebsd] 1672 1944 1945 + '@oxfmt/binding-freebsd-x64@0.43.0': 1946 + resolution: {integrity: sha512-rgz8JpkKiI/umOf7fl9gwKyQasC8bs5SYHy6g7e4SunfLBY3+8ATcD5caIg8KLGEtKFm5ujKaH8EfjcmnhzTLg==} 1947 + engines: {node: ^20.19.0 || >=22.12.0} 1948 + cpu: [x64] 1949 + os: [freebsd] 1950 + 1673 1951 '@oxfmt/binding-linux-arm-gnueabihf@0.40.0': 1674 1952 resolution: {integrity: sha512-ZM2oQ47p28TP1DVIp7HL1QoMUgqlBFHey0ksHct7tMXoU5BqjNvPWw7888azzMt25lnyPODVuye1wvNbvVUFOA==} 1675 1953 engines: {node: ^20.19.0 || >=22.12.0} 1676 1954 cpu: [arm] 1677 1955 os: [linux] 1678 1956 1957 + '@oxfmt/binding-linux-arm-gnueabihf@0.43.0': 1958 + resolution: {integrity: sha512-nWYnF3vIFzT4OM1qL/HSf1Yuj96aBuKWSaObXHSWliwAk2rcj7AWd6Lf7jowEBQMo4wCZVnueIGw/7C4u0KTBQ==} 1959 + engines: {node: ^20.19.0 || >=22.12.0} 1960 + cpu: [arm] 1961 + os: [linux] 1962 + 1679 1963 '@oxfmt/binding-linux-arm-musleabihf@0.40.0': 1680 1964 resolution: {integrity: sha512-RBFPAxRAIsMisKM47Oe6Lwdv6agZYLz02CUhVCD1sOv5ajAcRMrnwCFBPWwGXpazToW2mjnZxFos8TuFjTU15A==} 1681 1965 engines: {node: ^20.19.0 || >=22.12.0} 1682 1966 cpu: [arm] 1683 1967 os: [linux] 1684 1968 1969 + '@oxfmt/binding-linux-arm-musleabihf@0.43.0': 1970 + resolution: {integrity: sha512-sFg+NWJbLfupYTF4WELHAPSnLPOn1jiDZ33Z1jfDnTaA+cC3iB35x0FMMZTFdFOz3icRIArncwCcemJFGXu6TQ==} 1971 + engines: {node: ^20.19.0 || >=22.12.0} 1972 + cpu: [arm] 1973 + os: [linux] 1974 + 1685 1975 '@oxfmt/binding-linux-arm64-gnu@0.40.0': 1686 1976 resolution: {integrity: sha512-Nb2XbQ+wV3W2jSIihXdPj7k83eOxeSgYP3N/SRXvQ6ZYPIk6Q86qEh5Gl/7OitX3bQoQrESqm1yMLvZV8/J7dA==} 1687 1977 engines: {node: ^20.19.0 || >=22.12.0} ··· 1689 1979 os: [linux] 1690 1980 libc: [glibc] 1691 1981 1982 + '@oxfmt/binding-linux-arm64-gnu@0.43.0': 1983 + resolution: {integrity: sha512-MelWqv68tX6wZEILDrTc9yewiGXe7im62+5x0bNXlCYFOZdA+VnYiJfAihbROsZ5fm90p9C3haFrqjj43XnlAA==} 1984 + engines: {node: ^20.19.0 || >=22.12.0} 1985 + cpu: [arm64] 1986 + os: [linux] 1987 + libc: [glibc] 1988 + 1692 1989 '@oxfmt/binding-linux-arm64-musl@0.40.0': 1693 1990 resolution: {integrity: sha512-tGmWhLD/0YMotCdfezlT6tC/MJG/wKpo4vnQ3Cq+4eBk/BwNv7EmkD0VkD5F/dYkT3b8FNU01X2e8vvJuWoM1w==} 1991 + engines: {node: ^20.19.0 || >=22.12.0} 1992 + cpu: [arm64] 1993 + os: [linux] 1994 + libc: [musl] 1995 + 1996 + '@oxfmt/binding-linux-arm64-musl@0.43.0': 1997 + resolution: {integrity: sha512-ROaWfYh+6BSJ1Arwy5ujijTlwnZetxDxzBpDc1oBR4d7rfrPBqzeyjd5WOudowzQUgyavl2wEpzn1hw3jWcqLA==} 1694 1998 engines: {node: ^20.19.0 || >=22.12.0} 1695 1999 cpu: [arm64] 1696 2000 os: [linux] ··· 1698 2002 1699 2003 '@oxfmt/binding-linux-ppc64-gnu@0.40.0': 1700 2004 resolution: {integrity: sha512-rVbFyM3e7YhkVnp0IVYjaSHfrBWcTRWb60LEcdNAJcE2mbhTpbqKufx0FrhWfoxOrW/+7UJonAOShoFFLigDqQ==} 2005 + engines: {node: ^20.19.0 || >=22.12.0} 2006 + cpu: [ppc64] 2007 + os: [linux] 2008 + libc: [glibc] 2009 + 2010 + '@oxfmt/binding-linux-ppc64-gnu@0.43.0': 2011 + resolution: {integrity: sha512-PJRs/uNxmFipJJ8+SyKHh7Y7VZIKQicqrrBzvfyM5CtKi8D7yZKTwUOZV3ffxmiC2e7l1SDJpkBEOyue5NAFsg==} 1701 2012 engines: {node: ^20.19.0 || >=22.12.0} 1702 2013 cpu: [ppc64] 1703 2014 os: [linux] ··· 1710 2021 os: [linux] 1711 2022 libc: [glibc] 1712 2023 2024 + '@oxfmt/binding-linux-riscv64-gnu@0.43.0': 2025 + resolution: {integrity: sha512-j6biGAgzIhj+EtHXlbNumvwG7XqOIdiU4KgIWRXAEj/iUbHKukKW8eXa4MIwpQwW1YkxovduKtzEAPnjlnAhVQ==} 2026 + engines: {node: ^20.19.0 || >=22.12.0} 2027 + cpu: [riscv64] 2028 + os: [linux] 2029 + libc: [glibc] 2030 + 1713 2031 '@oxfmt/binding-linux-riscv64-musl@0.40.0': 1714 2032 resolution: {integrity: sha512-JJ4PPSdcbGBjPvb+O7xYm2FmAsKCyuEMYhqatBAHMp/6TA6rVlf9Z/sYPa4/3Bommb+8nndm15SPFRHEPU5qFA==} 1715 2033 engines: {node: ^20.19.0 || >=22.12.0} ··· 1717 2035 os: [linux] 1718 2036 libc: [musl] 1719 2037 2038 + '@oxfmt/binding-linux-riscv64-musl@0.43.0': 2039 + resolution: {integrity: sha512-RYWxAcslKxvy7yri24Xm9cmD0RiANaiEPs007EFG6l9h1ChM69Q5SOzACaCoz4Z9dEplnhhneeBaTWMEdpgIbA==} 2040 + engines: {node: ^20.19.0 || >=22.12.0} 2041 + cpu: [riscv64] 2042 + os: [linux] 2043 + libc: [musl] 2044 + 1720 2045 '@oxfmt/binding-linux-s390x-gnu@0.40.0': 1721 2046 resolution: {integrity: sha512-Kp0zNJoX9Ik77wUya2tpBY3W9f40VUoMQLWVaob5SgCrblH/t2xr/9B2bWHfs0WCefuGmqXcB+t0Lq77sbBmZw==} 1722 2047 engines: {node: ^20.19.0 || >=22.12.0} ··· 1724 2049 os: [linux] 1725 2050 libc: [glibc] 1726 2051 2052 + '@oxfmt/binding-linux-s390x-gnu@0.43.0': 2053 + resolution: {integrity: sha512-DT6Q8zfQQy3jxpezAsBACEHNUUixKSYTwdXeXojNHe4DQOoxjPdjr3Szu6BRNjxLykZM/xMNmp9ElOIyDppwtw==} 2054 + engines: {node: ^20.19.0 || >=22.12.0} 2055 + cpu: [s390x] 2056 + os: [linux] 2057 + libc: [glibc] 2058 + 1727 2059 '@oxfmt/binding-linux-x64-gnu@0.40.0': 1728 2060 resolution: {integrity: sha512-7YTCNzleWTaQTqNGUNQ66qVjpoV6DjbCOea+RnpMBly2bpzrI/uu7Rr+2zcgRfNxyjXaFTVQKaRKjqVdeUfeVA==} 1729 2061 engines: {node: ^20.19.0 || >=22.12.0} ··· 1731 2063 os: [linux] 1732 2064 libc: [glibc] 1733 2065 2066 + '@oxfmt/binding-linux-x64-gnu@0.43.0': 2067 + resolution: {integrity: sha512-R8Yk7iYcuZORXmCfFZClqbDxRZgZ9/HEidUuBNdoX8Ptx07cMePnMVJ/woB84lFIDjh2ROHVaOP40Ds3rBXFqg==} 2068 + engines: {node: ^20.19.0 || >=22.12.0} 2069 + cpu: [x64] 2070 + os: [linux] 2071 + libc: [glibc] 2072 + 1734 2073 '@oxfmt/binding-linux-x64-musl@0.40.0': 1735 2074 resolution: {integrity: sha512-hWnSzJ0oegeOwfOEeejYXfBqmnRGHusgtHfCPzmvJvHTwy1s3Neo59UKc1CmpE3zxvrCzJoVHos0rr97GHMNPw==} 1736 2075 engines: {node: ^20.19.0 || >=22.12.0} ··· 1738 2077 os: [linux] 1739 2078 libc: [musl] 1740 2079 2080 + '@oxfmt/binding-linux-x64-musl@0.43.0': 2081 + resolution: {integrity: sha512-F2YYqyvnQNvi320RWZNAvsaWEHwmW3k4OwNJ1hZxRKXupY63expbBaNp6jAgvYs7y/g546vuQnGHQuCBhslhLQ==} 2082 + engines: {node: ^20.19.0 || >=22.12.0} 2083 + cpu: [x64] 2084 + os: [linux] 2085 + libc: [musl] 2086 + 1741 2087 '@oxfmt/binding-openharmony-arm64@0.40.0': 1742 2088 resolution: {integrity: sha512-28sJC1lR4qtBJGzSRRbPnSW3GxU2+4YyQFE6rCmsUYqZ5XYH8jg0/w+CvEzQ8TuAQz5zLkcA25nFQGwoU0PT3Q==} 1743 2089 engines: {node: ^20.19.0 || >=22.12.0} 1744 2090 cpu: [arm64] 1745 2091 os: [openharmony] 1746 2092 2093 + '@oxfmt/binding-openharmony-arm64@0.43.0': 2094 + resolution: {integrity: sha512-OE6TdietLXV3F6c7pNIhx/9YC1/2YFwjU9DPc/fbjxIX19hNIaP1rS0cFjCGJlGX+cVJwIKWe8Mos+LdQ1yAJw==} 2095 + engines: {node: ^20.19.0 || >=22.12.0} 2096 + cpu: [arm64] 2097 + os: [openharmony] 2098 + 1747 2099 '@oxfmt/binding-win32-arm64-msvc@0.40.0': 1748 2100 resolution: {integrity: sha512-cDkRnyT0dqwF5oIX1Cv59HKCeZQFbWWdUpXa3uvnHFT2iwYSSZspkhgjXjU6iDp5pFPaAEAe9FIbMoTgkTmKPg==} 1749 2101 engines: {node: ^20.19.0 || >=22.12.0} 1750 2102 cpu: [arm64] 1751 2103 os: [win32] 1752 2104 2105 + '@oxfmt/binding-win32-arm64-msvc@0.43.0': 2106 + resolution: {integrity: sha512-0nWK6a7pGkbdoypfVicmV9k/N1FwjPZENoqhlTU+5HhZnAhpIO3za30nEE33u6l6tuy9OVfpdXUqxUgZ+4lbZw==} 2107 + engines: {node: ^20.19.0 || >=22.12.0} 2108 + cpu: [arm64] 2109 + os: [win32] 2110 + 1753 2111 '@oxfmt/binding-win32-ia32-msvc@0.40.0': 1754 2112 resolution: {integrity: sha512-7rPemBJjqm5Gkv6ZRCPvK8lE6AqQ/2z31DRdWazyx2ZvaSgL7QGofHXHNouRpPvNsT9yxRNQJgigsWkc+0qg4w==} 2113 + engines: {node: ^20.19.0 || >=22.12.0} 2114 + cpu: [ia32] 2115 + os: [win32] 2116 + 2117 + '@oxfmt/binding-win32-ia32-msvc@0.43.0': 2118 + resolution: {integrity: sha512-9aokTR4Ft+tRdvgN/pKzSkVy2ksc4/dCpDm9L/xFrbIw0yhLtASLbvoG/5WOTUh/BRPPnfGTsWznEqv0dlOmhA==} 1755 2119 engines: {node: ^20.19.0 || >=22.12.0} 1756 2120 cpu: [ia32] 1757 2121 os: [win32] ··· 1762 2126 cpu: [x64] 1763 2127 os: [win32] 1764 2128 2129 + '@oxfmt/binding-win32-x64-msvc@0.43.0': 2130 + resolution: {integrity: sha512-4bPgdQux2ZLWn3bf2TTXXMHcJB4lenmuxrLqygPmvCJ104Yqzj1UctxSRzR31TiJ4MLaG22RK8dUsVpJtrCz5g==} 2131 + engines: {node: ^20.19.0 || >=22.12.0} 2132 + cpu: [x64] 2133 + os: [win32] 2134 + 1765 2135 '@oxlint-tsgolint/darwin-arm64@0.16.0': 1766 2136 resolution: {integrity: sha512-WQt5lGwRPJBw7q2KNR0mSPDAaMmZmVvDlEEti96xLO7ONhyomQc6fBZxxwZ4qTFedjJnrHX94sFelZ4OKzS7UQ==} 1767 2137 cpu: [arm64] 1768 2138 os: [darwin] 1769 2139 2140 + '@oxlint-tsgolint/darwin-arm64@0.20.0': 2141 + resolution: {integrity: sha512-KKQcIHZHMxqpHUA1VXIbOG6chNCFkUWbQy6M+AFVtPKkA/3xAeJkJ3njoV66bfzwPHRcWQO+kcj5XqtbkjakoA==} 2142 + cpu: [arm64] 2143 + os: [darwin] 2144 + 1770 2145 '@oxlint-tsgolint/darwin-x64@0.16.0': 1771 2146 resolution: {integrity: sha512-VJo29XOzdkalvCTiE2v6FU3qZlgHaM8x8hUEVJGPU2i5W+FlocPpmn00+Ld2n7Q0pqIjyD5EyvZ5UmoIEJMfqg==} 2147 + cpu: [x64] 2148 + os: [darwin] 2149 + 2150 + '@oxlint-tsgolint/darwin-x64@0.20.0': 2151 + resolution: {integrity: sha512-7HeVMuclGfG+NLZi2ybY0T4fMI7/XxO/208rJk+zEIloKkVnlh11Wd241JMGwgNFXn+MLJbOqOfojDb2Dt4L1g==} 1772 2152 cpu: [x64] 1773 2153 os: [darwin] 1774 2154 ··· 1777 2157 cpu: [arm64] 1778 2158 os: [linux] 1779 2159 2160 + '@oxlint-tsgolint/linux-arm64@0.20.0': 2161 + resolution: {integrity: sha512-zxhUwz+WSxE6oWlZLK2z2ps9yC6ebmgoYmjAl0Oa48+GqkZ56NVgo+wb8DURNv6xrggzHStQxqQxe3mK51HZag==} 2162 + cpu: [arm64] 2163 + os: [linux] 2164 + 1780 2165 '@oxlint-tsgolint/linux-x64@0.16.0': 1781 2166 resolution: {integrity: sha512-XQSwVUsnwLokMhe1TD6IjgvW5WMTPzOGGkdFDtXWQmlN2YeTw94s/NN0KgDrn2agM1WIgAenEkvnm0u7NgwEyw==} 1782 2167 cpu: [x64] 1783 2168 os: [linux] 1784 2169 2170 + '@oxlint-tsgolint/linux-x64@0.20.0': 2171 + resolution: {integrity: sha512-/1l6FnahC9im8PK+Ekkx/V3yetO/PzZnJegE2FXcv/iXEhbeVxP/ouiTYcUQu9shT1FWJCSNti1VJHH+21Y1dg==} 2172 + cpu: [x64] 2173 + os: [linux] 2174 + 1785 2175 '@oxlint-tsgolint/win32-arm64@0.16.0': 1786 2176 resolution: {integrity: sha512-EWdlspQiiFGsP2AiCYdhg5dTYyAlj6y1nRyNI2dQWq4Q/LITFHiSRVPe+7m7K7lcsZCEz2icN/bCeSkZaORqIg==} 2177 + cpu: [arm64] 2178 + os: [win32] 2179 + 2180 + '@oxlint-tsgolint/win32-arm64@0.20.0': 2181 + resolution: {integrity: sha512-oPZ5Yz8sVdo7P/5q+i3IKeix31eFZ55JAPa1+RGPoe9PoaYVsdMvR6Jvib6YtrqoJnFPlg3fjEjlEPL8VBKYJA==} 1787 2182 cpu: [arm64] 1788 2183 os: [win32] 1789 2184 ··· 1792 2187 cpu: [x64] 1793 2188 os: [win32] 1794 2189 2190 + '@oxlint-tsgolint/win32-x64@0.20.0': 2191 + resolution: {integrity: sha512-4stx8RHj3SP9vQyRF/yZbz5igtPvYMEUR8CUoha4BVNZihi39DpCR8qkU7lpjB5Ga1DRMo2pHaA4bdTOMaY4mw==} 2192 + cpu: [x64] 2193 + os: [win32] 2194 + 1795 2195 '@oxlint/binding-android-arm-eabi@1.55.0': 1796 2196 resolution: {integrity: sha512-NhvgAhncTSOhRahQSCnkK/4YIGPjTmhPurQQ2dwt2IvwCMTvZRW5vF2K10UBOxFve4GZDMw6LtXZdC2qeuYIVQ==} 1797 2197 engines: {node: ^20.19.0 || >=22.12.0} 1798 2198 cpu: [arm] 1799 2199 os: [android] 1800 2200 2201 + '@oxlint/binding-android-arm-eabi@1.58.0': 2202 + resolution: {integrity: sha512-1T7UN3SsWWxpWyWGn1cT3ASNJOo+pI3eUkmEl7HgtowapcV8kslYpFQcYn431VuxghXakPNlbjRwhqmR37PFOg==} 2203 + engines: {node: ^20.19.0 || >=22.12.0} 2204 + cpu: [arm] 2205 + os: [android] 2206 + 1801 2207 '@oxlint/binding-android-arm64@1.55.0': 1802 2208 resolution: {integrity: sha512-P9iWRh+Ugqhg+D7rkc7boHX8o3H2h7YPcZHQIgvVBgnua5tk4LR2L+IBlreZs58/95cd2x3/004p5VsQM9z4SA==} 1803 2209 engines: {node: ^20.19.0 || >=22.12.0} 1804 2210 cpu: [arm64] 1805 2211 os: [android] 1806 2212 2213 + '@oxlint/binding-android-arm64@1.58.0': 2214 + resolution: {integrity: sha512-GryzujxuiRv2YFF7bRy8mKcxlbuAN+euVUtGJt9KKbLT8JBUIosamVhcthLh+VEr6KE6cjeVMAQxKAzJcoN7dg==} 2215 + engines: {node: ^20.19.0 || >=22.12.0} 2216 + cpu: [arm64] 2217 + os: [android] 2218 + 1807 2219 '@oxlint/binding-darwin-arm64@1.55.0': 1808 2220 resolution: {integrity: sha512-esakkJIt7WFAhT30P/Qzn96ehFpzdZ1mNuzpOb8SCW7lI4oB8VsyQnkSHREM671jfpuBb/o2ppzBCx5l0jpgMA==} 1809 2221 engines: {node: ^20.19.0 || >=22.12.0} 1810 2222 cpu: [arm64] 1811 2223 os: [darwin] 1812 2224 2225 + '@oxlint/binding-darwin-arm64@1.58.0': 2226 + resolution: {integrity: sha512-7/bRSJIwl4GxeZL9rPZ11anNTyUO9epZrfEJH/ZMla3+/gbQ6xZixh9nOhsZ0QwsTW7/5J2A/fHbD1udC5DQQA==} 2227 + engines: {node: ^20.19.0 || >=22.12.0} 2228 + cpu: [arm64] 2229 + os: [darwin] 2230 + 1813 2231 '@oxlint/binding-darwin-x64@1.55.0': 1814 2232 resolution: {integrity: sha512-xDMFRCCAEK9fOH6As2z8ELsC+VDGSFRHwIKVSilw+xhgLwTDFu37rtmRbmUlx8rRGS6cWKQPTc47AVxAZEVVPQ==} 2233 + engines: {node: ^20.19.0 || >=22.12.0} 2234 + cpu: [x64] 2235 + os: [darwin] 2236 + 2237 + '@oxlint/binding-darwin-x64@1.58.0': 2238 + resolution: {integrity: sha512-EqdtJSiHweS2vfILNrpyJ6HUwpEq2g7+4Zx1FPi4hu3Hu7tC3znF6ufbXO8Ub2LD4mGgznjI7kSdku9NDD1Mkg==} 1815 2239 engines: {node: ^20.19.0 || >=22.12.0} 1816 2240 cpu: [x64] 1817 2241 os: [darwin] ··· 1822 2246 cpu: [x64] 1823 2247 os: [freebsd] 1824 2248 2249 + '@oxlint/binding-freebsd-x64@1.58.0': 2250 + resolution: {integrity: sha512-VQt5TH4M42mY20F545G637RKxV/yjwVtKk2vfXuazfReSIiuvWBnv+FVSvIV5fKVTJNjt3GSJibh6JecbhGdBw==} 2251 + engines: {node: ^20.19.0 || >=22.12.0} 2252 + cpu: [x64] 2253 + os: [freebsd] 2254 + 1825 2255 '@oxlint/binding-linux-arm-gnueabihf@1.55.0': 1826 2256 resolution: {integrity: sha512-LcX6RYcF9vL9ESGwJW3yyIZ/d/ouzdOKXxCdey1q0XJOW1asrHsIg5MmyKdEBR4plQx+shvYeQne7AzW5f3T1w==} 1827 2257 engines: {node: ^20.19.0 || >=22.12.0} 1828 2258 cpu: [arm] 1829 2259 os: [linux] 1830 2260 2261 + '@oxlint/binding-linux-arm-gnueabihf@1.58.0': 2262 + resolution: {integrity: sha512-fBYcj4ucwpAtjJT3oeBdFBYKvNyjRSK+cyuvBOTQjh0jvKp4yeA4S/D0IsCHus/VPaNG5L48qQkh+Vjy3HL2/Q==} 2263 + engines: {node: ^20.19.0 || >=22.12.0} 2264 + cpu: [arm] 2265 + os: [linux] 2266 + 1831 2267 '@oxlint/binding-linux-arm-musleabihf@1.55.0': 1832 2268 resolution: {integrity: sha512-C+8GS1rPtK+dI7mJFkqoRBkDuqbrNihnyYQsJPS9ez+8zF9JzfvU19lawqt4l/Y23o5uQswE/DORa8aiXUih3w==} 1833 2269 engines: {node: ^20.19.0 || >=22.12.0} 1834 2270 cpu: [arm] 1835 2271 os: [linux] 1836 2272 2273 + '@oxlint/binding-linux-arm-musleabihf@1.58.0': 2274 + resolution: {integrity: sha512-0BeuFfwlUHlJ1xpEdSD1YO3vByEFGPg36uLjK1JgFaxFb4W6w17F8ET8sz5cheZ4+x5f2xzdnRrrWv83E3Yd8g==} 2275 + engines: {node: ^20.19.0 || >=22.12.0} 2276 + cpu: [arm] 2277 + os: [linux] 2278 + 1837 2279 '@oxlint/binding-linux-arm64-gnu@1.55.0': 1838 2280 resolution: {integrity: sha512-ErLE4XbmcCopA4/CIDiH6J1IAaDOMnf/KSx/aFObs4/OjAAM3sFKWGZ57pNOMxhhyBdcmcXwYymph9GwcpcqgQ==} 1839 2281 engines: {node: ^20.19.0 || >=22.12.0} ··· 1841 2283 os: [linux] 1842 2284 libc: [glibc] 1843 2285 2286 + '@oxlint/binding-linux-arm64-gnu@1.58.0': 2287 + resolution: {integrity: sha512-TXlZgnPTlxrQzxG9ZXU7BNwx1Ilrr17P3GwZY0If2EzrinqRH3zXPc3HrRcBJgcsoZNMuNL5YivtkJYgp467UQ==} 2288 + engines: {node: ^20.19.0 || >=22.12.0} 2289 + cpu: [arm64] 2290 + os: [linux] 2291 + libc: [glibc] 2292 + 1844 2293 '@oxlint/binding-linux-arm64-musl@1.55.0': 1845 2294 resolution: {integrity: sha512-/kp65avi6zZfqEng56TTuhiy3P/3pgklKIdf38yvYeJ9/PgEeRA2A2AqKAKbZBNAqUzrzHhz9jF6j/PZvhJzTQ==} 2295 + engines: {node: ^20.19.0 || >=22.12.0} 2296 + cpu: [arm64] 2297 + os: [linux] 2298 + libc: [musl] 2299 + 2300 + '@oxlint/binding-linux-arm64-musl@1.58.0': 2301 + resolution: {integrity: sha512-zSoYRo5dxHLcUx93Stl2hW3hSNjPt99O70eRVWt5A1zwJ+FPjeCCANCD2a9R4JbHsdcl11TIQOjyigcRVOH2mw==} 1846 2302 engines: {node: ^20.19.0 || >=22.12.0} 1847 2303 cpu: [arm64] 1848 2304 os: [linux] ··· 1855 2311 os: [linux] 1856 2312 libc: [glibc] 1857 2313 2314 + '@oxlint/binding-linux-ppc64-gnu@1.58.0': 2315 + resolution: {integrity: sha512-NQ0U/lqxH2/VxBYeAIvMNUK1y0a1bJ3ZicqkF2c6wfakbEciP9jvIE4yNzCFpZaqeIeRYaV7AVGqEO1yrfVPjA==} 2316 + engines: {node: ^20.19.0 || >=22.12.0} 2317 + cpu: [ppc64] 2318 + os: [linux] 2319 + libc: [glibc] 2320 + 1858 2321 '@oxlint/binding-linux-riscv64-gnu@1.55.0': 1859 2322 resolution: {integrity: sha512-clj0lnIN+V52G9tdtZl0LbdTSurnZ1NZj92Je5X4lC7gP5jiCSW+Y/oiDiSauBAD4wrHt2S7nN3pA0zfKYK/6Q==} 1860 2323 engines: {node: ^20.19.0 || >=22.12.0} ··· 1862 2325 os: [linux] 1863 2326 libc: [glibc] 1864 2327 2328 + '@oxlint/binding-linux-riscv64-gnu@1.58.0': 2329 + resolution: {integrity: sha512-X9J+kr3gIC9FT8GuZt0ekzpNUtkBVzMVU4KiKDSlocyQuEgi3gBbXYN8UkQiV77FTusLDPsovjo95YedHr+3yg==} 2330 + engines: {node: ^20.19.0 || >=22.12.0} 2331 + cpu: [riscv64] 2332 + os: [linux] 2333 + libc: [glibc] 2334 + 1865 2335 '@oxlint/binding-linux-riscv64-musl@1.55.0': 1866 2336 resolution: {integrity: sha512-NNu08pllN5x/O94/sgR3DA8lbrGBnTHsINZZR0hcav1sj79ksTiKKm1mRzvZvacwQ0hUnGinFo+JO75ok2PxYg==} 1867 2337 engines: {node: ^20.19.0 || >=22.12.0} ··· 1869 2339 os: [linux] 1870 2340 libc: [musl] 1871 2341 2342 + '@oxlint/binding-linux-riscv64-musl@1.58.0': 2343 + resolution: {integrity: sha512-CDze3pi1OO3Wvb/QsXjmLEY4XPKGM6kIo82ssNOgmcl1IdndF9VSGAE38YLhADWmOac7fjqhBw82LozuUVxD0Q==} 2344 + engines: {node: ^20.19.0 || >=22.12.0} 2345 + cpu: [riscv64] 2346 + os: [linux] 2347 + libc: [musl] 2348 + 1872 2349 '@oxlint/binding-linux-s390x-gnu@1.55.0': 1873 2350 resolution: {integrity: sha512-BvfQz3PRlWZRoEZ17dZCqgQsMRdpzGZomJkVATwCIGhHVVeHJMQdmdXPSjcT1DCNUrOjXnVyj1RGDj5+/Je2+Q==} 2351 + engines: {node: ^20.19.0 || >=22.12.0} 2352 + cpu: [s390x] 2353 + os: [linux] 2354 + libc: [glibc] 2355 + 2356 + '@oxlint/binding-linux-s390x-gnu@1.58.0': 2357 + resolution: {integrity: sha512-b/89glbxFaEAcA6Uf1FvCNecBJEgcUTsV1quzrqXM/o4R1M4u+2KCVuyGCayN2UpsRWtGGLb+Ver0tBBpxaPog==} 1874 2358 engines: {node: ^20.19.0 || >=22.12.0} 1875 2359 cpu: [s390x] 1876 2360 os: [linux] ··· 1883 2367 os: [linux] 1884 2368 libc: [glibc] 1885 2369 2370 + '@oxlint/binding-linux-x64-gnu@1.58.0': 2371 + resolution: {integrity: sha512-0/yYpkq9VJFCEcuRlrViGj8pJUFFvNS4EkEREaN7CB1EcLXJIaVSSa5eCihwBGXtOZxhnblWgxks9juRdNQI7w==} 2372 + engines: {node: ^20.19.0 || >=22.12.0} 2373 + cpu: [x64] 2374 + os: [linux] 2375 + libc: [glibc] 2376 + 1886 2377 '@oxlint/binding-linux-x64-musl@1.55.0': 1887 2378 resolution: {integrity: sha512-BDpP7W8GlaG7BR6QjGZAleYzxoyKc/D24spZIF2mB3XsfALQJJT/OBmP8YpeTb1rveFSBHzl8T7l0aqwkWNdGA==} 1888 2379 engines: {node: ^20.19.0 || >=22.12.0} ··· 1890 2381 os: [linux] 1891 2382 libc: [musl] 1892 2383 2384 + '@oxlint/binding-linux-x64-musl@1.58.0': 2385 + resolution: {integrity: sha512-hr6FNvmcAXiH+JxSvaJ4SJ1HofkdqEElXICW9sm3/Rd5eC3t7kzvmLyRAB3NngKO2wzXRCAm4Z/mGWfrsS4X8w==} 2386 + engines: {node: ^20.19.0 || >=22.12.0} 2387 + cpu: [x64] 2388 + os: [linux] 2389 + libc: [musl] 2390 + 1893 2391 '@oxlint/binding-openharmony-arm64@1.55.0': 1894 2392 resolution: {integrity: sha512-PS6GFvmde/pc3fCA2Srt51glr8Lcxhpf6WIBFfLphndjRrD34NEcses4TSxQrEcxYo6qVywGfylM0ZhSCF2gGA==} 2393 + engines: {node: ^20.19.0 || >=22.12.0} 2394 + cpu: [arm64] 2395 + os: [openharmony] 2396 + 2397 + '@oxlint/binding-openharmony-arm64@1.58.0': 2398 + resolution: {integrity: sha512-R+O368VXgRql1K6Xar+FEo7NEwfo13EibPMoTv3sesYQedRXd6m30Dh/7lZMxnrQVFfeo4EOfYIP4FpcgWQNHg==} 1895 2399 engines: {node: ^20.19.0 || >=22.12.0} 1896 2400 cpu: [arm64] 1897 2401 os: [openharmony] ··· 1902 2406 cpu: [arm64] 1903 2407 os: [win32] 1904 2408 2409 + '@oxlint/binding-win32-arm64-msvc@1.58.0': 2410 + resolution: {integrity: sha512-Q0FZiAY/3c4YRj4z3h9K1PgaByrifrfbBoODSeX7gy97UtB7pySPUQfC2B/GbxWU6k7CzQrRy5gME10PltLAFQ==} 2411 + engines: {node: ^20.19.0 || >=22.12.0} 2412 + cpu: [arm64] 2413 + os: [win32] 2414 + 1905 2415 '@oxlint/binding-win32-ia32-msvc@1.55.0': 1906 2416 resolution: {integrity: sha512-gzkk4zE2zsE+WmRxFOiAZHpCpUNDFytEakqNXoNHW+PnYEOTPKDdW6nrzgSeTbGKVPXNAKQnRnMgrh7+n3Xueg==} 1907 2417 engines: {node: ^20.19.0 || >=22.12.0} 1908 2418 cpu: [ia32] 1909 2419 os: [win32] 1910 2420 2421 + '@oxlint/binding-win32-ia32-msvc@1.58.0': 2422 + resolution: {integrity: sha512-Y8FKBABrSPp9H0QkRLHDHOSUgM/309a3IvOVgPcVxYcX70wxJrk608CuTg7w+C6vEd724X5wJoNkBcGYfH7nNQ==} 2423 + engines: {node: ^20.19.0 || >=22.12.0} 2424 + cpu: [ia32] 2425 + os: [win32] 2426 + 1911 2427 '@oxlint/binding-win32-x64-msvc@1.55.0': 1912 2428 resolution: {integrity: sha512-ZFALNow2/og75gvYzNP7qe+rREQ5xunktwA+lgykoozHZ6hw9bqg4fn5j2UvG4gIn1FXqrZHkOAXuPf5+GOYTQ==} 2429 + engines: {node: ^20.19.0 || >=22.12.0} 2430 + cpu: [x64] 2431 + os: [win32] 2432 + 2433 + '@oxlint/binding-win32-x64-msvc@1.58.0': 2434 + resolution: {integrity: sha512-bCn5rbiz5My+Bj7M09sDcnqW0QJyINRVxdZ65x1/Y2tGrMwherwK/lpk+HRQCKvXa8pcaQdF5KY5j54VGZLwNg==} 1913 2435 engines: {node: ^20.19.0 || >=22.12.0} 1914 2436 cpu: [x64] 1915 2437 os: [win32] ··· 2547 3069 resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} 2548 3070 engines: {node: '>=18'} 2549 3071 3072 + '@solid-devtools/debugger@0.28.1': 3073 + resolution: {integrity: sha512-6qIUI6VYkXoRnL8oF5bvh2KgH71qlJ18hNw/mwSyY6v48eb80ZR48/5PDXufUa3q+MBSuYa1uqTMwLewpay9eg==} 3074 + peerDependencies: 3075 + solid-js: ^1.9.0 3076 + 3077 + '@solid-devtools/shared@0.20.0': 3078 + resolution: {integrity: sha512-o5TACmUOQsxpzpOKCjbQqGk8wL8PMi+frXG9WNu4Lh3PQVUB6hs95Kl/S8xc++zwcMguUKZJn8h5URUiMOca6Q==} 3079 + peerDependencies: 3080 + solid-js: ^1.9.0 3081 + 3082 + '@solid-primitives/bounds@0.1.5': 3083 + resolution: {integrity: sha512-JFym8zijMfWp1FaAmJlH3xMfenCuhjaUsoBn3kt9FtoWwLj+yt+EGYt+p3SkOKwF7h4gaGtZ5PIdSbSNVWkRmg==} 3084 + peerDependencies: 3085 + solid-js: ^1.6.12 3086 + 3087 + '@solid-primitives/event-listener@2.4.5': 3088 + resolution: {integrity: sha512-nwRV558mIabl4yVAhZKY8cb6G+O1F0M6Z75ttTu5hk+SxdOnKSGj+eetDIu7Oax1P138ZdUU01qnBPR8rnxaEA==} 3089 + peerDependencies: 3090 + solid-js: ^1.6.12 3091 + 3092 + '@solid-primitives/keyboard@1.3.5': 3093 + resolution: {integrity: sha512-sav+l+PL+74z3yaftVs7qd8c2SXkqzuxPOVibUe5wYMt+U5Hxp3V3XCPgBPN2I6cANjvoFtz0NiU8uHVLdi9FQ==} 3094 + peerDependencies: 3095 + solid-js: ^1.6.12 3096 + 3097 + '@solid-primitives/media@2.3.5': 3098 + resolution: {integrity: sha512-LX9fB5WDaK87FMDtUB1qokBOfT2et9Uobv/zZaKLH9caFSz4+P70MBKEIBHcZQy+9MV5M2XvGYLTbLskjkzMjA==} 3099 + peerDependencies: 3100 + solid-js: ^1.6.12 3101 + 3102 + '@solid-primitives/refs@1.1.3': 3103 + resolution: {integrity: sha512-aam02fjNKpBteewF/UliPSQCVJsIIGOLEWQOh+ll6R/QePzBOOBMcC4G+5jTaO75JuUS1d/14Q1YXT3X0Ow6iA==} 3104 + peerDependencies: 3105 + solid-js: ^1.6.12 3106 + 3107 + '@solid-primitives/resize-observer@2.1.5': 3108 + resolution: {integrity: sha512-AiyTknKcNBaKHbcSMuxtSNM8FjIuiSuFyFghdD0TcCMU9hKi9EmsC5pjfjDwxE+5EueB1a+T/34PLRI5vbBbKw==} 3109 + peerDependencies: 3110 + solid-js: ^1.6.12 3111 + 3112 + '@solid-primitives/rootless@1.5.3': 3113 + resolution: {integrity: sha512-N8cIDAHbWcLahNRLr0knAAQvXyEdEMoAZvIMZKmhNb1mlx9e2UOv9BRD5YNwQUJwbNoYVhhLwFOEOcVXFx0HqA==} 3114 + peerDependencies: 3115 + solid-js: ^1.6.12 3116 + 3117 + '@solid-primitives/scheduled@1.5.3': 3118 + resolution: {integrity: sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g==} 3119 + peerDependencies: 3120 + solid-js: ^1.6.12 3121 + 3122 + '@solid-primitives/static-store@0.1.3': 3123 + resolution: {integrity: sha512-uxez7SXnr5GiRnzqO2IEDjOJRIXaG+0LZLBizmUA1FwSi+hrpuMzVBwyk70m4prcl8X6FDDXUl9O8hSq8wHbBQ==} 3124 + peerDependencies: 3125 + solid-js: ^1.6.12 3126 + 3127 + '@solid-primitives/styles@0.1.3': 3128 + resolution: {integrity: sha512-7YdA21prMeCX+oOF/1RAn02+cGz/pG4dyPWtHBC2H8aZvnC7IfThBt80mP+TioejrdfE7Lc54Uh18f7Pig+gRQ==} 3129 + peerDependencies: 3130 + solid-js: ^1.6.12 3131 + 3132 + '@solid-primitives/utils@6.4.0': 3133 + resolution: {integrity: sha512-AeGTBg8Wtkh/0s+evyLtP8piQoS4wyqqQaAFs2HJcFMMjYAtUgo+ZPduRXLjPlqKVc2ejeR544oeqpbn8Egn8A==} 3134 + peerDependencies: 3135 + solid-js: ^1.6.12 3136 + 2550 3137 '@speed-highlight/core@1.2.14': 2551 3138 resolution: {integrity: sha512-G4ewlBNhUtlLvrJTb88d2mdy2KRijzs4UhnlrOSRT4bmjh/IqNElZa3zkrZ+TC47TwtlDWzVLFADljF1Ijp5hA==} 2552 3139 ··· 2934 3521 yaml: 2935 3522 optional: true 2936 3523 3524 + '@voidzero-dev/vite-plus-core@0.1.16': 3525 + resolution: {integrity: sha512-fOyf14CXjcXqANFs2fCXEX+0Tn9ZjmqfFV+qTnARwIF1Kzl8WquO4XtvlDgs/fTQ91H4AyoNUgkvWdKS+C4xYA==} 3526 + engines: {node: ^20.19.0 || >=22.12.0} 3527 + peerDependencies: 3528 + '@arethetypeswrong/core': ^0.18.1 3529 + '@tsdown/css': 0.21.7 3530 + '@tsdown/exe': 0.21.7 3531 + '@types/node': ^20.19.0 || >=22.12.0 3532 + '@vitejs/devtools': ^0.1.0 3533 + esbuild: ^0.28.0 3534 + jiti: '>=1.21.0' 3535 + less: ^4.0.0 3536 + publint: ^0.3.0 3537 + sass: ^1.70.0 3538 + sass-embedded: ^1.70.0 3539 + stylus: '>=0.54.8' 3540 + sugarss: ^5.0.0 3541 + terser: ^5.16.0 3542 + tsx: ^4.8.1 3543 + typescript: ^5.0.0 || ^6.0.0 3544 + unplugin-unused: ^0.5.0 3545 + yaml: ^2.4.2 3546 + peerDependenciesMeta: 3547 + '@arethetypeswrong/core': 3548 + optional: true 3549 + '@tsdown/css': 3550 + optional: true 3551 + '@tsdown/exe': 3552 + optional: true 3553 + '@types/node': 3554 + optional: true 3555 + '@vitejs/devtools': 3556 + optional: true 3557 + esbuild: 3558 + optional: true 3559 + jiti: 3560 + optional: true 3561 + less: 3562 + optional: true 3563 + publint: 3564 + optional: true 3565 + sass: 3566 + optional: true 3567 + sass-embedded: 3568 + optional: true 3569 + stylus: 3570 + optional: true 3571 + sugarss: 3572 + optional: true 3573 + terser: 3574 + optional: true 3575 + tsx: 3576 + optional: true 3577 + typescript: 3578 + optional: true 3579 + unplugin-unused: 3580 + optional: true 3581 + yaml: 3582 + optional: true 3583 + 2937 3584 '@voidzero-dev/vite-plus-darwin-arm64@0.1.11': 2938 3585 resolution: {integrity: sha512-ENokEkMhDMJ9nM/tUDAXvtah/P3cAnEbkeKCCxJgFvTTGnGM8eBvP2qpJeTrfhy9ndIWihcsfMufszinLsfhUg==} 2939 3586 engines: {node: ^20.19.0 || >=22.12.0} 2940 3587 cpu: [arm64] 2941 3588 os: [darwin] 2942 3589 3590 + '@voidzero-dev/vite-plus-darwin-arm64@0.1.16': 3591 + resolution: {integrity: sha512-InG0ZmuGh7DTrn7zWQ0UvKapElphKI6G1oYfys+jraedG70EhIIee9gtO+mTE1T0bF67SgAcLXwNyaiNda0XwA==} 3592 + engines: {node: ^20.19.0 || >=22.12.0} 3593 + cpu: [arm64] 3594 + os: [darwin] 3595 + 2943 3596 '@voidzero-dev/vite-plus-darwin-x64@0.1.11': 2944 3597 resolution: {integrity: sha512-gOSGYtXq5qigDsiW+oCrefv4K8WUSnZ5vH+kPHDvpsMXlqxR0rY6xrJgkJ2tCkWdCig8YHVDascSV/cj4nGwsw==} 2945 3598 engines: {node: ^20.19.0 || >=22.12.0} 2946 3599 cpu: [x64] 2947 3600 os: [darwin] 2948 3601 3602 + '@voidzero-dev/vite-plus-darwin-x64@0.1.16': 3603 + resolution: {integrity: sha512-LGNrECstuhkCRKRj/dE98Xcprw8HU3VMIMJnZsnDR2C5RB2HADNIu21at/a/G3giA9eWm7uhtPp9FvUtTCK9TA==} 3604 + engines: {node: ^20.19.0 || >=22.12.0} 3605 + cpu: [x64] 3606 + os: [darwin] 3607 + 2949 3608 '@voidzero-dev/vite-plus-linux-arm64-gnu@0.1.11': 2950 3609 resolution: {integrity: sha512-aDVe1vvhtXBqZdmCiCSm3DUl5/O+x5CeAcjPPTLSsEX79cSfvkD0UU26lQ8eX+pr3xVDEocJTtTLmOMVImGlyA==} 2951 3610 engines: {node: ^20.19.0 || >=22.12.0} ··· 2953 3612 os: [linux] 2954 3613 libc: [glibc] 2955 3614 3615 + '@voidzero-dev/vite-plus-linux-arm64-gnu@0.1.16': 3616 + resolution: {integrity: sha512-AoFKu6dIOtlkp/mwmtU8ES2uzoaxCHhIym1Tk7qMxyvke4IXnye6VDc4kPMRQwD8mwR3T3bO0HuaEEHxrIWDxw==} 3617 + engines: {node: ^20.19.0 || >=22.12.0} 3618 + cpu: [arm64] 3619 + os: [linux] 3620 + libc: [glibc] 3621 + 3622 + '@voidzero-dev/vite-plus-linux-arm64-musl@0.1.16': 3623 + resolution: {integrity: sha512-PloCsGTRIhcXIpUOJ6PqVG8gYNpq+ooJNyqy5sQ82BRnJuo8oV7uBLFvg0X9B3Bzh+vO1F8/+92+o5TiL35JMg==} 3624 + engines: {node: ^20.19.0 || >=22.12.0} 3625 + cpu: [arm64] 3626 + os: [linux] 3627 + libc: [musl] 3628 + 2956 3629 '@voidzero-dev/vite-plus-linux-x64-gnu@0.1.11': 2957 3630 resolution: {integrity: sha512-rkaKCGq/CFML2M7c0ixUOuhE6qi961x84/ZFQhkUy2MJw3RP7R/M1BDyWr2qEq20SgRWLkffcWMni3P2JnmrBw==} 2958 3631 engines: {node: ^20.19.0 || >=22.12.0} ··· 2960 3633 os: [linux] 2961 3634 libc: [glibc] 2962 3635 3636 + '@voidzero-dev/vite-plus-linux-x64-gnu@0.1.16': 3637 + resolution: {integrity: sha512-nY9/2g+qjhwsW5U3MrFLlx+bOBsdOJiO2HzbxQy7jo/S3jPTnXhFlrRegQuAmqrHAXrSdNwgblgRpICKhx1xZg==} 3638 + engines: {node: ^20.19.0 || >=22.12.0} 3639 + cpu: [x64] 3640 + os: [linux] 3641 + libc: [glibc] 3642 + 3643 + '@voidzero-dev/vite-plus-linux-x64-musl@0.1.16': 3644 + resolution: {integrity: sha512-JGKEAMoXqzdr9lHT/13uRNV9uzrSYXAFhjAfIC8WEQMG2VUFksvq5/TOc26hzmzbqu+bxRmfN8h1aVTDL8KwFg==} 3645 + engines: {node: ^20.19.0 || >=22.12.0} 3646 + cpu: [x64] 3647 + os: [linux] 3648 + libc: [musl] 3649 + 2963 3650 '@voidzero-dev/vite-plus-test@0.1.11': 2964 3651 resolution: {integrity: sha512-3kBfi/LyPOGnLCmvYtgM5GZVAyiJiYjgdm9Fu9WLLl56zcSljj0TBG19eaKY6v/j2VJ+7o80n/A/MPz46lzMFA==} 2965 3652 engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} ··· 2985 3672 jsdom: 2986 3673 optional: true 2987 3674 3675 + '@voidzero-dev/vite-plus-test@0.1.16': 3676 + resolution: {integrity: sha512-d/rJPX/heMzoAFdnpZsp04MAa6nw1yH1tA4mVCV4m8goVcE9nAvt69mjLMzE8N/rYIQOSgenf3hDXuQRuD6OKQ==} 3677 + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} 3678 + peerDependencies: 3679 + '@edge-runtime/vm': '*' 3680 + '@opentelemetry/api': ^1.9.0 3681 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 3682 + '@vitest/ui': 4.1.2 3683 + happy-dom: '*' 3684 + jsdom: '*' 3685 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 3686 + peerDependenciesMeta: 3687 + '@edge-runtime/vm': 3688 + optional: true 3689 + '@opentelemetry/api': 3690 + optional: true 3691 + '@types/node': 3692 + optional: true 3693 + '@vitest/ui': 3694 + optional: true 3695 + happy-dom: 3696 + optional: true 3697 + jsdom: 3698 + optional: true 3699 + 2988 3700 '@voidzero-dev/vite-plus-win32-arm64-msvc@0.1.11': 2989 3701 resolution: {integrity: sha512-MerozzH8QYY+V5l6ZQq+vrtx75rnPlmc+TauH5hL08oEWx7ScwfrNKyamnv5rg7HWBx/ryuaYaJCjODOu7MjSg==} 2990 3702 engines: {node: ^20.19.0 || >=22.12.0} 2991 3703 cpu: [arm64] 2992 3704 os: [win32] 2993 3705 3706 + '@voidzero-dev/vite-plus-win32-arm64-msvc@0.1.16': 3707 + resolution: {integrity: sha512-IugPUCLY7HmiPcCeuHKUqO1+G2vxHnYzAGhS02AixD0sJLTAIKCUANDOiVUFf/HMw+jh/UkugW7MWek8lf/JrQ==} 3708 + engines: {node: ^20.19.0 || >=22.12.0} 3709 + cpu: [arm64] 3710 + os: [win32] 3711 + 2994 3712 '@voidzero-dev/vite-plus-win32-x64-msvc@0.1.11': 2995 3713 resolution: {integrity: sha512-ubGlfvkfWT4Eivg3O2lxMyA6h7u1XZm4XdW3MUZIXXd9Q/iIRVJdSsEg78C/OZ3e8Qofszsro6P8ZrQo8ROQxg==} 2996 3714 engines: {node: ^20.19.0 || >=22.12.0} 2997 3715 cpu: [x64] 2998 3716 os: [win32] 2999 3717 3718 + '@voidzero-dev/vite-plus-win32-x64-msvc@0.1.16': 3719 + resolution: {integrity: sha512-tq93CIeMs92HF7rdylJknRiyzMOWMKCmpw+g8nl5Q5nmUDNLUsrL3CGfbyqjgbruuPnIr761r9MfydPqZU/cYg==} 3720 + engines: {node: ^20.19.0 || >=22.12.0} 3721 + cpu: [x64] 3722 + os: [win32] 3723 + 3000 3724 '@vscode/iconv-lite-umd@0.7.1': 3001 3725 resolution: {integrity: sha512-tK6k0DXFHW7q5+GGuGZO+phpAqpxO4WXl+BLc/8/uOk3RsM2ssAL3CQUQDb1TGfwltjsauhN6S4ghYZzs4sPFw==} 3002 3726 ··· 3161 3885 atomically@2.1.1: 3162 3886 resolution: {integrity: sha512-P4w9o2dqARji6P7MHprklbfiArZAWvo07yW7qs3pdljb3BWr12FIB7W+p0zJiuiVsUpRO0iZn1kFFcpPegg0tQ==} 3163 3887 3888 + babel-plugin-jsx-dom-expressions@0.40.6: 3889 + resolution: {integrity: sha512-v3P1MW46Lm7VMpAkq0QfyzLWWkC8fh+0aE5Km4msIgDx5kjenHU0pF2s+4/NH8CQn/kla6+Hvws+2AF7bfV5qQ==} 3890 + peerDependencies: 3891 + '@babel/core': ^7.20.12 3892 + 3164 3893 babel-plugin-react-compiler@1.0.0: 3165 3894 resolution: {integrity: sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==} 3166 3895 3896 + babel-preset-solid@1.9.12: 3897 + resolution: {integrity: sha512-LLqnuKVDlKpyBlMPcH6qEvs/wmS9a+NczppxJ3ryS/c0O5IiSFOIBQi9GzyiGDSbcJpx4Gr87jyFTos1MyEuWg==} 3898 + peerDependencies: 3899 + '@babel/core': ^7.0.0 3900 + solid-js: ^1.9.12 3901 + peerDependenciesMeta: 3902 + solid-js: 3903 + optional: true 3904 + 3167 3905 balanced-match@1.0.2: 3168 3906 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 3169 3907 ··· 3516 4254 resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==} 3517 4255 engines: {node: '>=10.13.0'} 3518 4256 4257 + entities@6.0.1: 4258 + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 4259 + engines: {node: '>=0.12'} 4260 + 3519 4261 entities@7.0.1: 3520 4262 resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} 3521 4263 engines: {node: '>=0.12'} ··· 3556 4298 3557 4299 esbuild@0.27.3: 3558 4300 resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==} 4301 + engines: {node: '>=18'} 4302 + hasBin: true 4303 + 4304 + esbuild@0.27.7: 4305 + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} 3559 4306 engines: {node: '>=18'} 3560 4307 hasBin: true 3561 4308 ··· 3750 4497 resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} 3751 4498 engines: {node: '>=18'} 3752 4499 3753 - get-tsconfig@4.13.6: 3754 - resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==} 4500 + get-tsconfig@4.13.7: 4501 + resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==} 3755 4502 3756 4503 giget@2.0.0: 3757 4504 resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} ··· 3812 4559 3813 4560 hookable@5.5.3: 3814 4561 resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 4562 + 4563 + html-entities@2.3.3: 4564 + resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} 3815 4565 3816 4566 html-void-elements@3.0.0: 3817 4567 resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} ··· 3955 4705 is-unicode-supported@2.1.0: 3956 4706 resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 3957 4707 engines: {node: '>=18'} 4708 + 4709 + is-what@4.1.16: 4710 + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} 4711 + engines: {node: '>=12.13'} 3958 4712 3959 4713 is-wsl@3.1.1: 3960 4714 resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} ··· 4028 4782 cpu: [arm64] 4029 4783 os: [android] 4030 4784 4785 + lightningcss-android-arm64@1.32.0: 4786 + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} 4787 + engines: {node: '>= 12.0.0'} 4788 + cpu: [arm64] 4789 + os: [android] 4790 + 4031 4791 lightningcss-darwin-arm64@1.31.1: 4032 4792 resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==} 4033 4793 engines: {node: '>= 12.0.0'} 4034 4794 cpu: [arm64] 4035 4795 os: [darwin] 4036 4796 4797 + lightningcss-darwin-arm64@1.32.0: 4798 + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} 4799 + engines: {node: '>= 12.0.0'} 4800 + cpu: [arm64] 4801 + os: [darwin] 4802 + 4037 4803 lightningcss-darwin-x64@1.31.1: 4038 4804 resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==} 4039 4805 engines: {node: '>= 12.0.0'} 4040 4806 cpu: [x64] 4041 4807 os: [darwin] 4042 4808 4809 + lightningcss-darwin-x64@1.32.0: 4810 + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} 4811 + engines: {node: '>= 12.0.0'} 4812 + cpu: [x64] 4813 + os: [darwin] 4814 + 4043 4815 lightningcss-freebsd-x64@1.31.1: 4044 4816 resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==} 4045 4817 engines: {node: '>= 12.0.0'} 4046 4818 cpu: [x64] 4047 4819 os: [freebsd] 4048 4820 4821 + lightningcss-freebsd-x64@1.32.0: 4822 + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} 4823 + engines: {node: '>= 12.0.0'} 4824 + cpu: [x64] 4825 + os: [freebsd] 4826 + 4049 4827 lightningcss-linux-arm-gnueabihf@1.31.1: 4050 4828 resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==} 4829 + engines: {node: '>= 12.0.0'} 4830 + cpu: [arm] 4831 + os: [linux] 4832 + 4833 + lightningcss-linux-arm-gnueabihf@1.32.0: 4834 + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} 4051 4835 engines: {node: '>= 12.0.0'} 4052 4836 cpu: [arm] 4053 4837 os: [linux] 4054 4838 4055 4839 lightningcss-linux-arm64-gnu@1.31.1: 4056 4840 resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==} 4841 + engines: {node: '>= 12.0.0'} 4842 + cpu: [arm64] 4843 + os: [linux] 4844 + libc: [glibc] 4845 + 4846 + lightningcss-linux-arm64-gnu@1.32.0: 4847 + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} 4057 4848 engines: {node: '>= 12.0.0'} 4058 4849 cpu: [arm64] 4059 4850 os: [linux] ··· 4066 4857 os: [linux] 4067 4858 libc: [musl] 4068 4859 4860 + lightningcss-linux-arm64-musl@1.32.0: 4861 + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} 4862 + engines: {node: '>= 12.0.0'} 4863 + cpu: [arm64] 4864 + os: [linux] 4865 + libc: [musl] 4866 + 4069 4867 lightningcss-linux-x64-gnu@1.31.1: 4070 4868 resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==} 4071 4869 engines: {node: '>= 12.0.0'} ··· 4073 4871 os: [linux] 4074 4872 libc: [glibc] 4075 4873 4874 + lightningcss-linux-x64-gnu@1.32.0: 4875 + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} 4876 + engines: {node: '>= 12.0.0'} 4877 + cpu: [x64] 4878 + os: [linux] 4879 + libc: [glibc] 4880 + 4076 4881 lightningcss-linux-x64-musl@1.31.1: 4077 4882 resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==} 4078 4883 engines: {node: '>= 12.0.0'} ··· 4080 4885 os: [linux] 4081 4886 libc: [musl] 4082 4887 4888 + lightningcss-linux-x64-musl@1.32.0: 4889 + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} 4890 + engines: {node: '>= 12.0.0'} 4891 + cpu: [x64] 4892 + os: [linux] 4893 + libc: [musl] 4894 + 4083 4895 lightningcss-win32-arm64-msvc@1.31.1: 4084 4896 resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==} 4085 4897 engines: {node: '>= 12.0.0'} 4086 4898 cpu: [arm64] 4087 4899 os: [win32] 4088 4900 4901 + lightningcss-win32-arm64-msvc@1.32.0: 4902 + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} 4903 + engines: {node: '>= 12.0.0'} 4904 + cpu: [arm64] 4905 + os: [win32] 4906 + 4089 4907 lightningcss-win32-x64-msvc@1.31.1: 4090 4908 resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==} 4091 4909 engines: {node: '>= 12.0.0'} 4092 4910 cpu: [x64] 4093 4911 os: [win32] 4094 4912 4913 + lightningcss-win32-x64-msvc@1.32.0: 4914 + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} 4915 + engines: {node: '>= 12.0.0'} 4916 + cpu: [x64] 4917 + os: [win32] 4918 + 4095 4919 lightningcss@1.31.1: 4096 4920 resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==} 4921 + engines: {node: '>= 12.0.0'} 4922 + 4923 + lightningcss@1.32.0: 4924 + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} 4097 4925 engines: {node: '>= 12.0.0'} 4098 4926 4099 4927 lines-and-columns@1.2.4: ··· 4145 4973 media-typer@1.1.0: 4146 4974 resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} 4147 4975 engines: {node: '>= 0.8'} 4976 + 4977 + merge-anything@5.1.7: 4978 + resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} 4979 + engines: {node: '>=12.13'} 4148 4980 4149 4981 merge-descriptors@2.0.0: 4150 4982 resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} ··· 4402 5234 4403 5235 oxfmt@0.40.0: 4404 5236 resolution: {integrity: sha512-g0C3I7xUj4b4DcagevM9kgH6+pUHytikxUcn3/VUkvzTNaaXBeyZqb7IBsHwojeXm4mTBEC/aBjBTMVUkZwWUQ==} 5237 + engines: {node: ^20.19.0 || >=22.12.0} 5238 + hasBin: true 5239 + 5240 + oxfmt@0.43.0: 5241 + resolution: {integrity: sha512-KTYNG5ISfHSdmeZ25Xzb3qgz9EmQvkaGAxgBY/p38+ZiAet3uZeu7FnMwcSQJg152Qwl0wnYAxDc+Z/H6cvrwA==} 4405 5242 engines: {node: ^20.19.0 || >=22.12.0} 4406 5243 hasBin: true 4407 5244 ··· 4409 5246 resolution: {integrity: sha512-4RuJK2jP08XwqtUu+5yhCbxEauCm6tv2MFHKEMsjbosK2+vy5us82oI3VLuHwbNyZG7ekZA26U2LLHnGR4frIA==} 4410 5247 hasBin: true 4411 5248 5249 + oxlint-tsgolint@0.20.0: 5250 + resolution: {integrity: sha512-/Uc9TQyN1l8w9QNvXtVHYtz+SzDJHKpb5X0UnHodl0BVzijUPk0LPlDOHAvogd1UI+iy9ZSF6gQxEqfzUxCULQ==} 5251 + hasBin: true 5252 + 4412 5253 oxlint@1.55.0: 4413 5254 resolution: {integrity: sha512-T+FjepiyWpaZMhekqRpH8Z3I4vNM610p6w+Vjfqgj5TZUxHXl7N8N5IPvmOU8U4XdTRxqtNNTh9Y4hLtr7yvFg==} 4414 5255 engines: {node: ^20.19.0 || >=22.12.0} ··· 4419 5260 oxlint-tsgolint: 4420 5261 optional: true 4421 5262 5263 + oxlint@1.58.0: 5264 + resolution: {integrity: sha512-t4s9leczDMqlvOSjnbCQe7gtoLkWgBGZ7sBdCJ9EOj5IXFSG/X7OAzK4yuH4iW+4cAYe8kLFbC8tuYMwWZm+Cg==} 5265 + engines: {node: ^20.19.0 || >=22.12.0} 5266 + hasBin: true 5267 + peerDependencies: 5268 + oxlint-tsgolint: '>=0.18.0' 5269 + peerDependenciesMeta: 5270 + oxlint-tsgolint: 5271 + optional: true 5272 + 4422 5273 package-manager-detector@1.6.0: 4423 5274 resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 4424 5275 ··· 4437 5288 parse-ms@4.0.0: 4438 5289 resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} 4439 5290 engines: {node: '>=18'} 5291 + 5292 + parse5@7.3.0: 5293 + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 4440 5294 4441 5295 parseurl@1.3.3: 4442 5296 resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} ··· 4490 5344 resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 4491 5345 engines: {node: '>=12'} 4492 5346 5347 + picomatch@4.0.4: 5348 + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} 5349 + engines: {node: '>=12'} 5350 + 4493 5351 pid-port@1.0.2: 4494 5352 resolution: {integrity: sha512-Khqp07zX8IJpmIg56bHrLxS3M0iSL4cq6wnMq8YE7r/hSw3Kn4QxYS6QJg8Bs22Z7CSVj7eSsxFuigYVIFWmjg==} 4495 5353 engines: {node: '>=18'} ··· 4526 5384 4527 5385 postcss@8.5.8: 4528 5386 resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==} 5387 + engines: {node: ^10 || ^12 || >=14} 5388 + 5389 + postcss@8.5.9: 5390 + resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==} 4529 5391 engines: {node: ^10 || ^12 || >=14} 4530 5392 4531 5393 powershell-utils@0.1.0: ··· 4800 5662 resolution: {integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==} 4801 5663 engines: {node: '>= 18'} 4802 5664 5665 + solid-devtools@0.34.5: 5666 + resolution: {integrity: sha512-KNVdS9MQzzeVS++Vmg4JeU0fM6ZMuBEmkBA7SmqPS2s5UHpRjv1PNH8gShmlN9L/tki6OUAzJP3H1aKq2AcOSg==} 5667 + peerDependencies: 5668 + solid-js: ^1.9.0 5669 + vite: ^2.2.3 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 5670 + peerDependenciesMeta: 5671 + vite: 5672 + optional: true 5673 + 4803 5674 solid-js@1.9.11: 4804 5675 resolution: {integrity: sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==} 5676 + 5677 + solid-refresh@0.6.3: 5678 + resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} 5679 + peerDependencies: 5680 + solid-js: ^1.3 5681 + 5682 + solid-refresh@0.7.8: 5683 + resolution: {integrity: sha512-iG442T3HXJp5jEebCy8okETrWnmX7CnxNOKrJQVeufh6WXSn+xtLXaptUXXMHTWcRqTJOJwQ8UwzxrRtVFSIzA==} 5684 + peerDependencies: 5685 + solid-js: ^1.3 4805 5686 4806 5687 source-map-js@1.2.1: 4807 5688 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} ··· 4917 5798 resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==} 4918 5799 engines: {node: '>=18'} 4919 5800 5801 + tinyexec@1.1.1: 5802 + resolution: {integrity: sha512-VKS/ZaQhhkKFMANmAOhhXVoIfBXblQxGX1myCQ2faQrfmobMftXeJPcZGp0gS07ocvGJWDLZGyOZDadDBqYIJg==} 5803 + engines: {node: '>=18'} 5804 + 4920 5805 tinyglobby@0.2.15: 4921 5806 resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 5807 + engines: {node: '>=12.0.0'} 5808 + 5809 + tinyglobby@0.2.16: 5810 + resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} 4922 5811 engines: {node: '>=12.0.0'} 4923 5812 4924 5813 tinypool@2.1.0: ··· 5106 5995 vfile@6.0.3: 5107 5996 resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 5108 5997 5998 + vite-plugin-solid@2.11.12: 5999 + resolution: {integrity: sha512-FgjPcx2OwX9h6f28jli7A4bG7PP3te8uyakE5iqsmpq3Jqi1TWLgSroC9N6cMfGRU2zXsl4Q6ISvTr2VL0QHpA==} 6000 + peerDependencies: 6001 + '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* 6002 + solid-js: ^1.7.2 6003 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 6004 + peerDependenciesMeta: 6005 + '@testing-library/jest-dom': 6006 + optional: true 6007 + 5109 6008 vite-plus@0.1.11: 5110 6009 resolution: {integrity: sha512-mDUbWirSUWtS/diQiq1QkHGsMNQWu90kSH5s7RWqVnV9s1PRxQ1IcH6mIeOG7YzPJlfO1vQbONZRsOfdyj9IKw==} 6010 + engines: {node: ^20.19.0 || >=22.12.0} 6011 + hasBin: true 6012 + 6013 + vite-plus@0.1.16: 6014 + resolution: {integrity: sha512-sgYHc5zWLSDInaHb/abvEA7UOwh7sUWuyNt+Slphj55jPvzodT8Dqw115xyKwDARTuRFSpm1eo/t58qZ8/NylQ==} 5111 6015 engines: {node: ^20.19.0 || >=22.12.0} 5112 6016 hasBin: true 5113 6017 ··· 5152 6056 tsx: 5153 6057 optional: true 5154 6058 yaml: 6059 + optional: true 6060 + 6061 + vitefu@1.1.3: 6062 + resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==} 6063 + peerDependencies: 6064 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 6065 + peerDependenciesMeta: 6066 + vite: 5155 6067 optional: true 5156 6068 5157 6069 vitepress@2.0.0-alpha.16: ··· 5252 6164 utf-8-validate: 5253 6165 optional: true 5254 6166 6167 + ws@8.20.0: 6168 + resolution: {integrity: sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==} 6169 + engines: {node: '>=10.0.0'} 6170 + peerDependencies: 6171 + bufferutil: ^4.0.1 6172 + utf-8-validate: '>=5.0.2' 6173 + peerDependenciesMeta: 6174 + bufferutil: 6175 + optional: true 6176 + utf-8-validate: 6177 + optional: true 6178 + 5255 6179 wsl-utils@0.3.1: 5256 6180 resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} 5257 6181 engines: {node: '>=20'} ··· 5386 6310 '@babel/helper-member-expression-to-functions@7.28.5': 5387 6311 dependencies: 5388 6312 '@babel/traverse': 7.29.0 5389 - '@babel/types': 7.28.6 6313 + '@babel/types': 7.29.0 5390 6314 transitivePeerDependencies: 5391 6315 - supports-color 5392 6316 6317 + '@babel/helper-module-imports@7.18.6': 6318 + dependencies: 6319 + '@babel/types': 7.29.0 6320 + 5393 6321 '@babel/helper-module-imports@7.28.6': 5394 6322 dependencies: 5395 6323 '@babel/traverse': 7.29.0 ··· 5408 6336 5409 6337 '@babel/helper-optimise-call-expression@7.27.1': 5410 6338 dependencies: 5411 - '@babel/types': 7.28.6 6339 + '@babel/types': 7.29.0 5412 6340 5413 6341 '@babel/helper-plugin-utils@7.28.6': {} 5414 6342 ··· 5761 6689 '@esbuild/aix-ppc64@0.27.3': 5762 6690 optional: true 5763 6691 6692 + '@esbuild/aix-ppc64@0.27.7': 6693 + optional: true 6694 + 5764 6695 '@esbuild/android-arm64@0.25.12': 5765 6696 optional: true 5766 6697 5767 6698 '@esbuild/android-arm64@0.27.3': 5768 6699 optional: true 5769 6700 6701 + '@esbuild/android-arm64@0.27.7': 6702 + optional: true 6703 + 5770 6704 '@esbuild/android-arm@0.25.12': 5771 6705 optional: true 5772 6706 5773 6707 '@esbuild/android-arm@0.27.3': 5774 6708 optional: true 5775 6709 6710 + '@esbuild/android-arm@0.27.7': 6711 + optional: true 6712 + 5776 6713 '@esbuild/android-x64@0.25.12': 5777 6714 optional: true 5778 6715 5779 6716 '@esbuild/android-x64@0.27.3': 5780 6717 optional: true 5781 6718 6719 + '@esbuild/android-x64@0.27.7': 6720 + optional: true 6721 + 5782 6722 '@esbuild/darwin-arm64@0.25.12': 5783 6723 optional: true 5784 6724 5785 6725 '@esbuild/darwin-arm64@0.27.3': 5786 6726 optional: true 5787 6727 6728 + '@esbuild/darwin-arm64@0.27.7': 6729 + optional: true 6730 + 5788 6731 '@esbuild/darwin-x64@0.25.12': 5789 6732 optional: true 5790 6733 5791 6734 '@esbuild/darwin-x64@0.27.3': 6735 + optional: true 6736 + 6737 + '@esbuild/darwin-x64@0.27.7': 5792 6738 optional: true 5793 6739 5794 6740 '@esbuild/freebsd-arm64@0.25.12': 5795 6741 optional: true 5796 6742 5797 6743 '@esbuild/freebsd-arm64@0.27.3': 6744 + optional: true 6745 + 6746 + '@esbuild/freebsd-arm64@0.27.7': 5798 6747 optional: true 5799 6748 5800 6749 '@esbuild/freebsd-x64@0.25.12': ··· 5803 6752 '@esbuild/freebsd-x64@0.27.3': 5804 6753 optional: true 5805 6754 6755 + '@esbuild/freebsd-x64@0.27.7': 6756 + optional: true 6757 + 5806 6758 '@esbuild/linux-arm64@0.25.12': 5807 6759 optional: true 5808 6760 5809 6761 '@esbuild/linux-arm64@0.27.3': 5810 6762 optional: true 5811 6763 6764 + '@esbuild/linux-arm64@0.27.7': 6765 + optional: true 6766 + 5812 6767 '@esbuild/linux-arm@0.25.12': 5813 6768 optional: true 5814 6769 5815 6770 '@esbuild/linux-arm@0.27.3': 5816 6771 optional: true 5817 6772 6773 + '@esbuild/linux-arm@0.27.7': 6774 + optional: true 6775 + 5818 6776 '@esbuild/linux-ia32@0.25.12': 5819 6777 optional: true 5820 6778 5821 6779 '@esbuild/linux-ia32@0.27.3': 5822 6780 optional: true 5823 6781 6782 + '@esbuild/linux-ia32@0.27.7': 6783 + optional: true 6784 + 5824 6785 '@esbuild/linux-loong64@0.25.12': 5825 6786 optional: true 5826 6787 5827 6788 '@esbuild/linux-loong64@0.27.3': 5828 6789 optional: true 5829 6790 6791 + '@esbuild/linux-loong64@0.27.7': 6792 + optional: true 6793 + 5830 6794 '@esbuild/linux-mips64el@0.25.12': 5831 6795 optional: true 5832 6796 5833 6797 '@esbuild/linux-mips64el@0.27.3': 6798 + optional: true 6799 + 6800 + '@esbuild/linux-mips64el@0.27.7': 5834 6801 optional: true 5835 6802 5836 6803 '@esbuild/linux-ppc64@0.25.12': 5837 6804 optional: true 5838 6805 5839 6806 '@esbuild/linux-ppc64@0.27.3': 6807 + optional: true 6808 + 6809 + '@esbuild/linux-ppc64@0.27.7': 5840 6810 optional: true 5841 6811 5842 6812 '@esbuild/linux-riscv64@0.25.12': ··· 5845 6815 '@esbuild/linux-riscv64@0.27.3': 5846 6816 optional: true 5847 6817 6818 + '@esbuild/linux-riscv64@0.27.7': 6819 + optional: true 6820 + 5848 6821 '@esbuild/linux-s390x@0.25.12': 5849 6822 optional: true 5850 6823 5851 6824 '@esbuild/linux-s390x@0.27.3': 5852 6825 optional: true 5853 6826 6827 + '@esbuild/linux-s390x@0.27.7': 6828 + optional: true 6829 + 5854 6830 '@esbuild/linux-x64@0.25.12': 5855 6831 optional: true 5856 6832 5857 6833 '@esbuild/linux-x64@0.27.3': 5858 6834 optional: true 5859 6835 6836 + '@esbuild/linux-x64@0.27.7': 6837 + optional: true 6838 + 5860 6839 '@esbuild/netbsd-arm64@0.25.12': 5861 6840 optional: true 5862 6841 5863 6842 '@esbuild/netbsd-arm64@0.27.3': 5864 6843 optional: true 5865 6844 6845 + '@esbuild/netbsd-arm64@0.27.7': 6846 + optional: true 6847 + 5866 6848 '@esbuild/netbsd-x64@0.25.12': 5867 6849 optional: true 5868 6850 5869 6851 '@esbuild/netbsd-x64@0.27.3': 5870 6852 optional: true 5871 6853 6854 + '@esbuild/netbsd-x64@0.27.7': 6855 + optional: true 6856 + 5872 6857 '@esbuild/openbsd-arm64@0.25.12': 5873 6858 optional: true 5874 6859 5875 6860 '@esbuild/openbsd-arm64@0.27.3': 5876 6861 optional: true 5877 6862 6863 + '@esbuild/openbsd-arm64@0.27.7': 6864 + optional: true 6865 + 5878 6866 '@esbuild/openbsd-x64@0.25.12': 5879 6867 optional: true 5880 6868 5881 6869 '@esbuild/openbsd-x64@0.27.3': 5882 6870 optional: true 5883 6871 6872 + '@esbuild/openbsd-x64@0.27.7': 6873 + optional: true 6874 + 5884 6875 '@esbuild/openharmony-arm64@0.25.12': 5885 6876 optional: true 5886 6877 5887 6878 '@esbuild/openharmony-arm64@0.27.3': 5888 6879 optional: true 5889 6880 6881 + '@esbuild/openharmony-arm64@0.27.7': 6882 + optional: true 6883 + 5890 6884 '@esbuild/sunos-x64@0.25.12': 5891 6885 optional: true 5892 6886 5893 6887 '@esbuild/sunos-x64@0.27.3': 5894 6888 optional: true 5895 6889 6890 + '@esbuild/sunos-x64@0.27.7': 6891 + optional: true 6892 + 5896 6893 '@esbuild/win32-arm64@0.25.12': 5897 6894 optional: true 5898 6895 5899 6896 '@esbuild/win32-arm64@0.27.3': 5900 6897 optional: true 5901 6898 6899 + '@esbuild/win32-arm64@0.27.7': 6900 + optional: true 6901 + 5902 6902 '@esbuild/win32-ia32@0.25.12': 5903 6903 optional: true 5904 6904 5905 6905 '@esbuild/win32-ia32@0.27.3': 5906 6906 optional: true 5907 6907 6908 + '@esbuild/win32-ia32@0.27.7': 6909 + optional: true 6910 + 5908 6911 '@esbuild/win32-x64@0.25.12': 5909 6912 optional: true 5910 6913 5911 6914 '@esbuild/win32-x64@0.27.3': 6915 + optional: true 6916 + 6917 + '@esbuild/win32-x64@0.27.7': 5912 6918 optional: true 5913 6919 5914 6920 '@floating-ui/core@1.7.5': ··· 6145 7151 '@tybys/wasm-util': 0.10.1 6146 7152 optional: true 6147 7153 7154 + '@napi-rs/wasm-runtime@1.1.3(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)': 7155 + dependencies: 7156 + '@emnapi/core': 1.8.1 7157 + '@emnapi/runtime': 1.8.1 7158 + '@tybys/wasm-util': 0.10.1 7159 + optional: true 7160 + 6148 7161 '@noble/ciphers@1.3.0': {} 6149 7162 6150 7163 '@noble/curves@1.9.7': ··· 6165 7178 '@nodelib/fs.scandir': 2.1.5 6166 7179 fastq: 1.20.1 6167 7180 7181 + '@nothing-but/utils@0.17.0': {} 7182 + 6168 7183 '@open-draft/deferred-promise@2.2.0': {} 6169 7184 6170 7185 '@open-draft/logger@0.3.0': ··· 6300 7315 6301 7316 '@oxc-project/runtime@0.115.0': {} 6302 7317 7318 + '@oxc-project/runtime@0.123.0': {} 7319 + 6303 7320 '@oxc-project/types@0.115.0': {} 6304 7321 7322 + '@oxc-project/types@0.123.0': {} 7323 + 7324 + '@oxc-solid-js/compiler-darwin-arm64@1.1.4': 7325 + optional: true 7326 + 7327 + '@oxc-solid-js/compiler-darwin-x64@1.1.4': 7328 + optional: true 7329 + 7330 + '@oxc-solid-js/compiler-linux-x64-gnu@1.1.4': 7331 + optional: true 7332 + 7333 + '@oxc-solid-js/compiler-win32-x64-msvc@1.1.4': 7334 + optional: true 7335 + 7336 + '@oxc-solid-js/compiler@1.1.4': 7337 + optionalDependencies: 7338 + '@oxc-solid-js/compiler-darwin-arm64': 1.1.4 7339 + '@oxc-solid-js/compiler-darwin-x64': 1.1.4 7340 + '@oxc-solid-js/compiler-linux-x64-gnu': 1.1.4 7341 + '@oxc-solid-js/compiler-win32-x64-msvc': 1.1.4 7342 + 7343 + '@oxc-solid-js/vite@0.1.0-alpha.15(@oxc-solid-js/compiler@1.1.4)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(solid-js@1.9.11)': 7344 + dependencies: 7345 + '@oxc-solid-js/compiler': 1.1.4 7346 + solid-refresh: 0.7.8(solid-js@1.9.11) 7347 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 7348 + transitivePeerDependencies: 7349 + - solid-js 7350 + 6305 7351 '@oxfmt/binding-android-arm-eabi@0.40.0': 6306 7352 optional: true 6307 7353 7354 + '@oxfmt/binding-android-arm-eabi@0.43.0': 7355 + optional: true 7356 + 6308 7357 '@oxfmt/binding-android-arm64@0.40.0': 7358 + optional: true 7359 + 7360 + '@oxfmt/binding-android-arm64@0.43.0': 6309 7361 optional: true 6310 7362 6311 7363 '@oxfmt/binding-darwin-arm64@0.40.0': 6312 7364 optional: true 6313 7365 7366 + '@oxfmt/binding-darwin-arm64@0.43.0': 7367 + optional: true 7368 + 6314 7369 '@oxfmt/binding-darwin-x64@0.40.0': 6315 7370 optional: true 6316 7371 7372 + '@oxfmt/binding-darwin-x64@0.43.0': 7373 + optional: true 7374 + 6317 7375 '@oxfmt/binding-freebsd-x64@0.40.0': 6318 7376 optional: true 6319 7377 7378 + '@oxfmt/binding-freebsd-x64@0.43.0': 7379 + optional: true 7380 + 6320 7381 '@oxfmt/binding-linux-arm-gnueabihf@0.40.0': 7382 + optional: true 7383 + 7384 + '@oxfmt/binding-linux-arm-gnueabihf@0.43.0': 6321 7385 optional: true 6322 7386 6323 7387 '@oxfmt/binding-linux-arm-musleabihf@0.40.0': 6324 7388 optional: true 6325 7389 7390 + '@oxfmt/binding-linux-arm-musleabihf@0.43.0': 7391 + optional: true 7392 + 6326 7393 '@oxfmt/binding-linux-arm64-gnu@0.40.0': 6327 7394 optional: true 6328 7395 7396 + '@oxfmt/binding-linux-arm64-gnu@0.43.0': 7397 + optional: true 7398 + 6329 7399 '@oxfmt/binding-linux-arm64-musl@0.40.0': 6330 7400 optional: true 6331 7401 7402 + '@oxfmt/binding-linux-arm64-musl@0.43.0': 7403 + optional: true 7404 + 6332 7405 '@oxfmt/binding-linux-ppc64-gnu@0.40.0': 6333 7406 optional: true 6334 7407 7408 + '@oxfmt/binding-linux-ppc64-gnu@0.43.0': 7409 + optional: true 7410 + 6335 7411 '@oxfmt/binding-linux-riscv64-gnu@0.40.0': 7412 + optional: true 7413 + 7414 + '@oxfmt/binding-linux-riscv64-gnu@0.43.0': 6336 7415 optional: true 6337 7416 6338 7417 '@oxfmt/binding-linux-riscv64-musl@0.40.0': 6339 7418 optional: true 6340 7419 7420 + '@oxfmt/binding-linux-riscv64-musl@0.43.0': 7421 + optional: true 7422 + 6341 7423 '@oxfmt/binding-linux-s390x-gnu@0.40.0': 6342 7424 optional: true 6343 7425 7426 + '@oxfmt/binding-linux-s390x-gnu@0.43.0': 7427 + optional: true 7428 + 6344 7429 '@oxfmt/binding-linux-x64-gnu@0.40.0': 6345 7430 optional: true 6346 7431 7432 + '@oxfmt/binding-linux-x64-gnu@0.43.0': 7433 + optional: true 7434 + 6347 7435 '@oxfmt/binding-linux-x64-musl@0.40.0': 6348 7436 optional: true 6349 7437 7438 + '@oxfmt/binding-linux-x64-musl@0.43.0': 7439 + optional: true 7440 + 6350 7441 '@oxfmt/binding-openharmony-arm64@0.40.0': 7442 + optional: true 7443 + 7444 + '@oxfmt/binding-openharmony-arm64@0.43.0': 6351 7445 optional: true 6352 7446 6353 7447 '@oxfmt/binding-win32-arm64-msvc@0.40.0': 6354 7448 optional: true 6355 7449 7450 + '@oxfmt/binding-win32-arm64-msvc@0.43.0': 7451 + optional: true 7452 + 6356 7453 '@oxfmt/binding-win32-ia32-msvc@0.40.0': 6357 7454 optional: true 6358 7455 7456 + '@oxfmt/binding-win32-ia32-msvc@0.43.0': 7457 + optional: true 7458 + 6359 7459 '@oxfmt/binding-win32-x64-msvc@0.40.0': 6360 7460 optional: true 6361 7461 7462 + '@oxfmt/binding-win32-x64-msvc@0.43.0': 7463 + optional: true 7464 + 6362 7465 '@oxlint-tsgolint/darwin-arm64@0.16.0': 6363 7466 optional: true 6364 7467 7468 + '@oxlint-tsgolint/darwin-arm64@0.20.0': 7469 + optional: true 7470 + 6365 7471 '@oxlint-tsgolint/darwin-x64@0.16.0': 7472 + optional: true 7473 + 7474 + '@oxlint-tsgolint/darwin-x64@0.20.0': 6366 7475 optional: true 6367 7476 6368 7477 '@oxlint-tsgolint/linux-arm64@0.16.0': 6369 7478 optional: true 6370 7479 7480 + '@oxlint-tsgolint/linux-arm64@0.20.0': 7481 + optional: true 7482 + 6371 7483 '@oxlint-tsgolint/linux-x64@0.16.0': 6372 7484 optional: true 6373 7485 7486 + '@oxlint-tsgolint/linux-x64@0.20.0': 7487 + optional: true 7488 + 6374 7489 '@oxlint-tsgolint/win32-arm64@0.16.0': 6375 7490 optional: true 6376 7491 7492 + '@oxlint-tsgolint/win32-arm64@0.20.0': 7493 + optional: true 7494 + 6377 7495 '@oxlint-tsgolint/win32-x64@0.16.0': 6378 7496 optional: true 6379 7497 7498 + '@oxlint-tsgolint/win32-x64@0.20.0': 7499 + optional: true 7500 + 6380 7501 '@oxlint/binding-android-arm-eabi@1.55.0': 7502 + optional: true 7503 + 7504 + '@oxlint/binding-android-arm-eabi@1.58.0': 6381 7505 optional: true 6382 7506 6383 7507 '@oxlint/binding-android-arm64@1.55.0': 6384 7508 optional: true 6385 7509 7510 + '@oxlint/binding-android-arm64@1.58.0': 7511 + optional: true 7512 + 6386 7513 '@oxlint/binding-darwin-arm64@1.55.0': 6387 7514 optional: true 6388 7515 7516 + '@oxlint/binding-darwin-arm64@1.58.0': 7517 + optional: true 7518 + 6389 7519 '@oxlint/binding-darwin-x64@1.55.0': 6390 7520 optional: true 6391 7521 7522 + '@oxlint/binding-darwin-x64@1.58.0': 7523 + optional: true 7524 + 6392 7525 '@oxlint/binding-freebsd-x64@1.55.0': 6393 7526 optional: true 6394 7527 7528 + '@oxlint/binding-freebsd-x64@1.58.0': 7529 + optional: true 7530 + 6395 7531 '@oxlint/binding-linux-arm-gnueabihf@1.55.0': 7532 + optional: true 7533 + 7534 + '@oxlint/binding-linux-arm-gnueabihf@1.58.0': 6396 7535 optional: true 6397 7536 6398 7537 '@oxlint/binding-linux-arm-musleabihf@1.55.0': 6399 7538 optional: true 6400 7539 7540 + '@oxlint/binding-linux-arm-musleabihf@1.58.0': 7541 + optional: true 7542 + 6401 7543 '@oxlint/binding-linux-arm64-gnu@1.55.0': 6402 7544 optional: true 6403 7545 7546 + '@oxlint/binding-linux-arm64-gnu@1.58.0': 7547 + optional: true 7548 + 6404 7549 '@oxlint/binding-linux-arm64-musl@1.55.0': 6405 7550 optional: true 6406 7551 7552 + '@oxlint/binding-linux-arm64-musl@1.58.0': 7553 + optional: true 7554 + 6407 7555 '@oxlint/binding-linux-ppc64-gnu@1.55.0': 6408 7556 optional: true 6409 7557 7558 + '@oxlint/binding-linux-ppc64-gnu@1.58.0': 7559 + optional: true 7560 + 6410 7561 '@oxlint/binding-linux-riscv64-gnu@1.55.0': 7562 + optional: true 7563 + 7564 + '@oxlint/binding-linux-riscv64-gnu@1.58.0': 6411 7565 optional: true 6412 7566 6413 7567 '@oxlint/binding-linux-riscv64-musl@1.55.0': 6414 7568 optional: true 6415 7569 7570 + '@oxlint/binding-linux-riscv64-musl@1.58.0': 7571 + optional: true 7572 + 6416 7573 '@oxlint/binding-linux-s390x-gnu@1.55.0': 6417 7574 optional: true 6418 7575 7576 + '@oxlint/binding-linux-s390x-gnu@1.58.0': 7577 + optional: true 7578 + 6419 7579 '@oxlint/binding-linux-x64-gnu@1.55.0': 6420 7580 optional: true 6421 7581 7582 + '@oxlint/binding-linux-x64-gnu@1.58.0': 7583 + optional: true 7584 + 6422 7585 '@oxlint/binding-linux-x64-musl@1.55.0': 6423 7586 optional: true 6424 7587 7588 + '@oxlint/binding-linux-x64-musl@1.58.0': 7589 + optional: true 7590 + 6425 7591 '@oxlint/binding-openharmony-arm64@1.55.0': 7592 + optional: true 7593 + 7594 + '@oxlint/binding-openharmony-arm64@1.58.0': 6426 7595 optional: true 6427 7596 6428 7597 '@oxlint/binding-win32-arm64-msvc@1.55.0': 7598 + optional: true 7599 + 7600 + '@oxlint/binding-win32-arm64-msvc@1.58.0': 6429 7601 optional: true 6430 7602 6431 7603 '@oxlint/binding-win32-ia32-msvc@1.55.0': 6432 7604 optional: true 6433 7605 7606 + '@oxlint/binding-win32-ia32-msvc@1.58.0': 7607 + optional: true 7608 + 6434 7609 '@oxlint/binding-win32-x64-msvc@1.55.0': 7610 + optional: true 7611 + 7612 + '@oxlint/binding-win32-x64-msvc@1.58.0': 6435 7613 optional: true 6436 7614 6437 7615 '@parcel/watcher-android-arm64@2.5.6': ··· 6817 7995 '@napi-rs/wasm-runtime': 0.2.12 6818 7996 optional: true 6819 7997 6820 - '@rolldown/binding-wasm32-wasi@1.0.0-rc.6': 7998 + '@rolldown/binding-wasm32-wasi@1.0.0-rc.6(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)': 6821 7999 dependencies: 6822 - '@napi-rs/wasm-runtime': 1.1.1 8000 + '@napi-rs/wasm-runtime': 1.1.3(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1) 8001 + transitivePeerDependencies: 8002 + - '@emnapi/core' 8003 + - '@emnapi/runtime' 6823 8004 optional: true 6824 8005 6825 8006 '@rolldown/binding-wasm32-wasi@1.0.0-rc.9': ··· 6848 8029 '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9': 6849 8030 optional: true 6850 8031 6851 - '@rolldown/plugin-babel@0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9)': 8032 + '@rolldown/plugin-babel@0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9)': 6852 8033 dependencies: 6853 8034 '@babel/core': 7.29.0 6854 8035 picomatch: 4.0.3 6855 8036 rolldown: 1.0.0-rc.9 6856 8037 optionalDependencies: 6857 8038 '@babel/runtime': 7.28.6 6858 - vite: '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 8039 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 6859 8040 6860 8041 '@rolldown/pluginutils@1.0.0-rc.2': {} 6861 8042 ··· 6944 8125 6945 8126 '@sindresorhus/merge-streams@4.0.0': {} 6946 8127 8128 + '@solid-devtools/debugger@0.28.1(solid-js@1.9.11)': 8129 + dependencies: 8130 + '@nothing-but/utils': 0.17.0 8131 + '@solid-devtools/shared': 0.20.0(solid-js@1.9.11) 8132 + '@solid-primitives/bounds': 0.1.5(solid-js@1.9.11) 8133 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.11) 8134 + '@solid-primitives/keyboard': 1.3.5(solid-js@1.9.11) 8135 + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.11) 8136 + '@solid-primitives/scheduled': 1.5.3(solid-js@1.9.11) 8137 + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.11) 8138 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8139 + solid-js: 1.9.11 8140 + 8141 + '@solid-devtools/shared@0.20.0(solid-js@1.9.11)': 8142 + dependencies: 8143 + '@nothing-but/utils': 0.17.0 8144 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.11) 8145 + '@solid-primitives/media': 2.3.5(solid-js@1.9.11) 8146 + '@solid-primitives/refs': 1.1.3(solid-js@1.9.11) 8147 + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.11) 8148 + '@solid-primitives/scheduled': 1.5.3(solid-js@1.9.11) 8149 + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.11) 8150 + '@solid-primitives/styles': 0.1.3(solid-js@1.9.11) 8151 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8152 + solid-js: 1.9.11 8153 + 8154 + '@solid-primitives/bounds@0.1.5(solid-js@1.9.11)': 8155 + dependencies: 8156 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.11) 8157 + '@solid-primitives/resize-observer': 2.1.5(solid-js@1.9.11) 8158 + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.11) 8159 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8160 + solid-js: 1.9.11 8161 + 8162 + '@solid-primitives/event-listener@2.4.5(solid-js@1.9.11)': 8163 + dependencies: 8164 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8165 + solid-js: 1.9.11 8166 + 8167 + '@solid-primitives/keyboard@1.3.5(solid-js@1.9.11)': 8168 + dependencies: 8169 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.11) 8170 + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.11) 8171 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8172 + solid-js: 1.9.11 8173 + 8174 + '@solid-primitives/media@2.3.5(solid-js@1.9.11)': 8175 + dependencies: 8176 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.11) 8177 + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.11) 8178 + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.11) 8179 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8180 + solid-js: 1.9.11 8181 + 8182 + '@solid-primitives/refs@1.1.3(solid-js@1.9.11)': 8183 + dependencies: 8184 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8185 + solid-js: 1.9.11 8186 + 8187 + '@solid-primitives/resize-observer@2.1.5(solid-js@1.9.11)': 8188 + dependencies: 8189 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.11) 8190 + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.11) 8191 + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.11) 8192 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8193 + solid-js: 1.9.11 8194 + 8195 + '@solid-primitives/rootless@1.5.3(solid-js@1.9.11)': 8196 + dependencies: 8197 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8198 + solid-js: 1.9.11 8199 + 8200 + '@solid-primitives/scheduled@1.5.3(solid-js@1.9.11)': 8201 + dependencies: 8202 + solid-js: 1.9.11 8203 + 8204 + '@solid-primitives/static-store@0.1.3(solid-js@1.9.11)': 8205 + dependencies: 8206 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8207 + solid-js: 1.9.11 8208 + 8209 + '@solid-primitives/styles@0.1.3(solid-js@1.9.11)': 8210 + dependencies: 8211 + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.11) 8212 + '@solid-primitives/utils': 6.4.0(solid-js@1.9.11) 8213 + solid-js: 1.9.11 8214 + 8215 + '@solid-primitives/utils@6.4.0(solid-js@1.9.11)': 8216 + dependencies: 8217 + solid-js: 1.9.11 8218 + 6947 8219 '@speed-highlight/core@1.2.14': {} 6948 8220 6949 8221 '@standard-schema/spec@1.1.0': {} ··· 7009 8281 '@tailwindcss/oxide-win32-arm64-msvc': 4.2.1 7010 8282 '@tailwindcss/oxide-win32-x64-msvc': 4.2.1 7011 8283 7012 - '@tailwindcss/vite@4.2.1(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))': 8284 + '@tailwindcss/vite@4.2.1(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))': 7013 8285 dependencies: 7014 8286 '@tailwindcss/node': 4.2.1 7015 8287 '@tailwindcss/oxide': 4.2.1 7016 8288 tailwindcss: 4.2.1 7017 - vite: '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 8289 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 8290 + 8291 + '@tailwindcss/vite@4.2.1(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))': 8292 + dependencies: 8293 + '@tailwindcss/node': 4.2.1 8294 + '@tailwindcss/oxide': 4.2.1 8295 + tailwindcss: 4.2.1 8296 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 7018 8297 7019 8298 '@tanstack/query-core@5.90.20': {} 7020 8299 ··· 7274 8553 dependencies: 7275 8554 '@unocss/core': 66.6.6 7276 8555 7277 - '@unocss/vite@66.6.6(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))': 8556 + '@unocss/vite@66.6.6(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))': 7278 8557 dependencies: 7279 8558 '@jridgewell/remapping': 2.3.5 7280 8559 '@unocss/config': 66.6.6 ··· 7285 8564 pathe: 2.0.3 7286 8565 tinyglobby: 0.2.15 7287 8566 unplugin-utils: 0.3.1 7288 - vite: 8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 8567 + vite: 8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 7289 8568 7290 - '@vitejs/plugin-react@6.0.1(@rolldown/plugin-babel@0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9))(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(babel-plugin-react-compiler@1.0.0)': 8569 + '@vitejs/plugin-react@6.0.1(@rolldown/plugin-babel@0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9))(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(babel-plugin-react-compiler@1.0.0)': 7291 8570 dependencies: 7292 8571 '@rolldown/pluginutils': 1.0.0-rc.7 7293 - vite: '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 8572 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 7294 8573 optionalDependencies: 7295 - '@rolldown/plugin-babel': 0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9) 8574 + '@rolldown/plugin-babel': 0.2.1(@babel/core@7.29.0)(@babel/runtime@7.28.6)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(rolldown@1.0.0-rc.9) 7296 8575 babel-plugin-react-compiler: 1.0.0 7297 8576 7298 - '@vitejs/plugin-vue@6.0.5(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': 8577 + '@vitejs/plugin-vue@6.0.5(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': 7299 8578 dependencies: 7300 8579 '@rolldown/pluginutils': 1.0.0-rc.2 7301 - vite: '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 8580 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 7302 8581 vue: 3.5.30(typescript@5.9.3) 7303 8582 7304 - '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 8583 + '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 7305 8584 dependencies: 7306 8585 '@oxc-project/runtime': 0.115.0 7307 8586 '@oxc-project/types': 0.115.0 ··· 7309 8588 postcss: 8.5.8 7310 8589 optionalDependencies: 7311 8590 '@types/node': 24.12.0 7312 - esbuild: 0.27.3 8591 + esbuild: 0.27.7 7313 8592 fsevents: 2.3.3 7314 8593 jiti: 2.6.1 7315 8594 sass: 1.97.3 ··· 7317 8596 typescript: 5.9.3 7318 8597 yaml: 2.8.2 7319 8598 7320 - '@voidzero-dev/vite-plus-core@0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 8599 + '@voidzero-dev/vite-plus-core@0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 7321 8600 dependencies: 7322 8601 '@oxc-project/runtime': 0.115.0 7323 8602 '@oxc-project/types': 0.115.0 ··· 7325 8604 postcss: 8.5.8 7326 8605 optionalDependencies: 7327 8606 '@types/node': 25.1.0 7328 - esbuild: 0.27.3 8607 + esbuild: 0.27.7 8608 + fsevents: 2.3.3 8609 + jiti: 2.6.1 8610 + sass: 1.97.3 8611 + tsx: 4.21.0 8612 + typescript: 5.9.3 8613 + yaml: 2.8.2 8614 + 8615 + '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 8616 + dependencies: 8617 + '@oxc-project/runtime': 0.123.0 8618 + '@oxc-project/types': 0.123.0 8619 + lightningcss: 1.32.0 8620 + postcss: 8.5.9 8621 + optionalDependencies: 8622 + '@types/node': 24.12.0 8623 + esbuild: 0.27.7 8624 + fsevents: 2.3.3 8625 + jiti: 2.6.1 8626 + sass: 1.97.3 8627 + tsx: 4.21.0 8628 + typescript: 5.9.3 8629 + yaml: 2.8.2 8630 + 8631 + '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 8632 + dependencies: 8633 + '@oxc-project/runtime': 0.123.0 8634 + '@oxc-project/types': 0.123.0 8635 + lightningcss: 1.32.0 8636 + postcss: 8.5.9 8637 + optionalDependencies: 8638 + '@types/node': 25.1.0 8639 + esbuild: 0.27.7 7329 8640 fsevents: 2.3.3 7330 8641 jiti: 2.6.1 7331 8642 sass: 1.97.3 ··· 7336 8647 '@voidzero-dev/vite-plus-darwin-arm64@0.1.11': 7337 8648 optional: true 7338 8649 8650 + '@voidzero-dev/vite-plus-darwin-arm64@0.1.16': 8651 + optional: true 8652 + 7339 8653 '@voidzero-dev/vite-plus-darwin-x64@0.1.11': 7340 8654 optional: true 7341 8655 8656 + '@voidzero-dev/vite-plus-darwin-x64@0.1.16': 8657 + optional: true 8658 + 7342 8659 '@voidzero-dev/vite-plus-linux-arm64-gnu@0.1.11': 8660 + optional: true 8661 + 8662 + '@voidzero-dev/vite-plus-linux-arm64-gnu@0.1.16': 8663 + optional: true 8664 + 8665 + '@voidzero-dev/vite-plus-linux-arm64-musl@0.1.16': 7343 8666 optional: true 7344 8667 7345 8668 '@voidzero-dev/vite-plus-linux-x64-gnu@0.1.11': 7346 8669 optional: true 7347 8670 7348 - '@voidzero-dev/vite-plus-test@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': 8671 + '@voidzero-dev/vite-plus-linux-x64-gnu@0.1.16': 8672 + optional: true 8673 + 8674 + '@voidzero-dev/vite-plus-linux-x64-musl@0.1.16': 8675 + optional: true 8676 + 8677 + '@voidzero-dev/vite-plus-test@0.1.11(@types/node@24.12.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 7349 8678 dependencies: 7350 8679 '@standard-schema/spec': 1.1.0 7351 8680 '@types/chai': 5.2.3 7352 - '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 8681 + '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 7353 8682 es-module-lexer: 1.7.0 7354 8683 obug: 2.1.1 7355 8684 pixelmatch: 7.1.0 ··· 7359 8688 tinybench: 2.9.0 7360 8689 tinyexec: 1.0.2 7361 8690 tinyglobby: 0.2.15 7362 - vite: 8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 8691 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 7363 8692 ws: 8.19.0 7364 8693 optionalDependencies: 7365 8694 '@types/node': 24.12.0 ··· 7384 8713 - utf-8-validate 7385 8714 - yaml 7386 8715 7387 - '@voidzero-dev/vite-plus-test@0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': 8716 + '@voidzero-dev/vite-plus-test@0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': 7388 8717 dependencies: 7389 8718 '@standard-schema/spec': 1.1.0 7390 8719 '@types/chai': 5.2.3 7391 - '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 8720 + '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 7392 8721 es-module-lexer: 1.7.0 7393 8722 obug: 2.1.1 7394 8723 pixelmatch: 7.1.0 ··· 7398 8727 tinybench: 2.9.0 7399 8728 tinyexec: 1.0.2 7400 8729 tinyglobby: 0.2.15 7401 - vite: 8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 8730 + vite: 8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 7402 8731 ws: 8.19.0 7403 8732 optionalDependencies: 8733 + '@types/node': 24.12.0 8734 + transitivePeerDependencies: 8735 + - '@arethetypeswrong/core' 8736 + - '@tsdown/css' 8737 + - '@tsdown/exe' 8738 + - '@vitejs/devtools' 8739 + - bufferutil 8740 + - esbuild 8741 + - jiti 8742 + - less 8743 + - publint 8744 + - sass 8745 + - sass-embedded 8746 + - stylus 8747 + - sugarss 8748 + - terser 8749 + - tsx 8750 + - typescript 8751 + - unplugin-unused 8752 + - utf-8-validate 8753 + - yaml 8754 + 8755 + '@voidzero-dev/vite-plus-test@0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': 8756 + dependencies: 8757 + '@standard-schema/spec': 1.1.0 8758 + '@types/chai': 5.2.3 8759 + '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 8760 + es-module-lexer: 1.7.0 8761 + obug: 2.1.1 8762 + pixelmatch: 7.1.0 8763 + pngjs: 7.0.0 8764 + sirv: 3.0.2 8765 + std-env: 4.0.0 8766 + tinybench: 2.9.0 8767 + tinyexec: 1.0.2 8768 + tinyglobby: 0.2.15 8769 + vite: 8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 8770 + ws: 8.19.0 8771 + optionalDependencies: 8772 + '@types/node': 25.1.0 8773 + transitivePeerDependencies: 8774 + - '@arethetypeswrong/core' 8775 + - '@tsdown/css' 8776 + - '@tsdown/exe' 8777 + - '@vitejs/devtools' 8778 + - bufferutil 8779 + - esbuild 8780 + - jiti 8781 + - less 8782 + - publint 8783 + - sass 8784 + - sass-embedded 8785 + - stylus 8786 + - sugarss 8787 + - terser 8788 + - tsx 8789 + - typescript 8790 + - unplugin-unused 8791 + - utf-8-validate 8792 + - yaml 8793 + 8794 + '@voidzero-dev/vite-plus-test@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': 8795 + dependencies: 8796 + '@standard-schema/spec': 1.1.0 8797 + '@types/chai': 5.2.3 8798 + '@voidzero-dev/vite-plus-core': 0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 8799 + es-module-lexer: 1.7.0 8800 + obug: 2.1.1 8801 + pixelmatch: 7.1.0 8802 + pngjs: 7.0.0 8803 + sirv: 3.0.2 8804 + std-env: 4.0.0 8805 + tinybench: 2.9.0 8806 + tinyexec: 1.1.1 8807 + tinyglobby: 0.2.16 8808 + vite: 8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 8809 + ws: 8.20.0 8810 + optionalDependencies: 8811 + '@types/node': 24.12.0 8812 + transitivePeerDependencies: 8813 + - '@arethetypeswrong/core' 8814 + - '@tsdown/css' 8815 + - '@tsdown/exe' 8816 + - '@vitejs/devtools' 8817 + - bufferutil 8818 + - esbuild 8819 + - jiti 8820 + - less 8821 + - publint 8822 + - sass 8823 + - sass-embedded 8824 + - stylus 8825 + - sugarss 8826 + - terser 8827 + - tsx 8828 + - typescript 8829 + - unplugin-unused 8830 + - utf-8-validate 8831 + - yaml 8832 + 8833 + '@voidzero-dev/vite-plus-test@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': 8834 + dependencies: 8835 + '@standard-schema/spec': 1.1.0 8836 + '@types/chai': 5.2.3 8837 + '@voidzero-dev/vite-plus-core': 0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 8838 + es-module-lexer: 1.7.0 8839 + obug: 2.1.1 8840 + pixelmatch: 7.1.0 8841 + pngjs: 7.0.0 8842 + sirv: 3.0.2 8843 + std-env: 4.0.0 8844 + tinybench: 2.9.0 8845 + tinyexec: 1.1.1 8846 + tinyglobby: 0.2.16 8847 + vite: 8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2) 8848 + ws: 8.20.0 8849 + optionalDependencies: 7404 8850 '@types/node': 25.1.0 7405 8851 transitivePeerDependencies: 7406 8852 - '@arethetypeswrong/core' ··· 7424 8870 - yaml 7425 8871 7426 8872 '@voidzero-dev/vite-plus-win32-arm64-msvc@0.1.11': 8873 + optional: true 8874 + 8875 + '@voidzero-dev/vite-plus-win32-arm64-msvc@0.1.16': 7427 8876 optional: true 7428 8877 7429 8878 '@voidzero-dev/vite-plus-win32-x64-msvc@0.1.11': 8879 + optional: true 8880 + 8881 + '@voidzero-dev/vite-plus-win32-x64-msvc@0.1.16': 7430 8882 optional: true 7431 8883 7432 8884 '@vscode/iconv-lite-umd@0.7.1': {} ··· 7574 9026 stubborn-fs: 2.0.0 7575 9027 when-exit: 2.1.5 7576 9028 9029 + babel-plugin-jsx-dom-expressions@0.40.6(@babel/core@7.29.0): 9030 + dependencies: 9031 + '@babel/core': 7.29.0 9032 + '@babel/helper-module-imports': 7.18.6 9033 + '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0) 9034 + '@babel/types': 7.29.0 9035 + html-entities: 2.3.3 9036 + parse5: 7.3.0 9037 + 7577 9038 babel-plugin-react-compiler@1.0.0: 7578 9039 dependencies: 7579 9040 '@babel/types': 7.28.6 9041 + 9042 + babel-preset-solid@1.9.12(@babel/core@7.29.0)(solid-js@1.9.11): 9043 + dependencies: 9044 + '@babel/core': 7.29.0 9045 + babel-plugin-jsx-dom-expressions: 0.40.6(@babel/core@7.29.0) 9046 + optionalDependencies: 9047 + solid-js: 1.9.11 7580 9048 7581 9049 balanced-match@1.0.2: {} 7582 9050 ··· 7890 9358 graceful-fs: 4.2.11 7891 9359 tapable: 2.3.0 7892 9360 9361 + entities@6.0.1: {} 9362 + 7893 9363 entities@7.0.1: {} 7894 9364 7895 9365 env-paths@2.2.1: {} ··· 7970 9440 '@esbuild/win32-ia32': 0.27.3 7971 9441 '@esbuild/win32-x64': 0.27.3 7972 9442 9443 + esbuild@0.27.7: 9444 + optionalDependencies: 9445 + '@esbuild/aix-ppc64': 0.27.7 9446 + '@esbuild/android-arm': 0.27.7 9447 + '@esbuild/android-arm64': 0.27.7 9448 + '@esbuild/android-x64': 0.27.7 9449 + '@esbuild/darwin-arm64': 0.27.7 9450 + '@esbuild/darwin-x64': 0.27.7 9451 + '@esbuild/freebsd-arm64': 0.27.7 9452 + '@esbuild/freebsd-x64': 0.27.7 9453 + '@esbuild/linux-arm': 0.27.7 9454 + '@esbuild/linux-arm64': 0.27.7 9455 + '@esbuild/linux-ia32': 0.27.7 9456 + '@esbuild/linux-loong64': 0.27.7 9457 + '@esbuild/linux-mips64el': 0.27.7 9458 + '@esbuild/linux-ppc64': 0.27.7 9459 + '@esbuild/linux-riscv64': 0.27.7 9460 + '@esbuild/linux-s390x': 0.27.7 9461 + '@esbuild/linux-x64': 0.27.7 9462 + '@esbuild/netbsd-arm64': 0.27.7 9463 + '@esbuild/netbsd-x64': 0.27.7 9464 + '@esbuild/openbsd-arm64': 0.27.7 9465 + '@esbuild/openbsd-x64': 0.27.7 9466 + '@esbuild/openharmony-arm64': 0.27.7 9467 + '@esbuild/sunos-x64': 0.27.7 9468 + '@esbuild/win32-arm64': 0.27.7 9469 + '@esbuild/win32-ia32': 0.27.7 9470 + '@esbuild/win32-x64': 0.27.7 9471 + optional: true 9472 + 7973 9473 escalade@3.2.0: {} 7974 9474 7975 9475 escape-html@1.0.3: {} ··· 8103 9603 optionalDependencies: 8104 9604 picomatch: 4.0.3 8105 9605 9606 + fdir@6.5.0(picomatch@4.0.4): 9607 + optionalDependencies: 9608 + picomatch: 4.0.4 9609 + 8106 9610 fetch-blob@3.2.0: 8107 9611 dependencies: 8108 9612 node-domexception: 1.0.0 ··· 8209 9713 '@sec-ant/readable-stream': 0.4.1 8210 9714 is-stream: 4.0.1 8211 9715 8212 - get-tsconfig@4.13.6: 9716 + get-tsconfig@4.13.7: 8213 9717 dependencies: 8214 9718 resolve-pkg-maps: 1.0.0 8215 9719 optional: true ··· 8274 9778 8275 9779 hookable@5.5.3: {} 8276 9780 9781 + html-entities@2.3.3: {} 9782 + 8277 9783 html-void-elements@3.0.0: {} 8278 9784 8279 9785 http-errors@2.0.1: ··· 8370 9876 8371 9877 is-unicode-supported@2.1.0: {} 8372 9878 9879 + is-what@4.1.16: {} 9880 + 8373 9881 is-wsl@3.1.1: 8374 9882 dependencies: 8375 9883 is-inside-container: 1.0.0 ··· 8415 9923 kleur@4.1.5: {} 8416 9924 8417 9925 lightningcss-android-arm64@1.31.1: 9926 + optional: true 9927 + 9928 + lightningcss-android-arm64@1.32.0: 8418 9929 optional: true 8419 9930 8420 9931 lightningcss-darwin-arm64@1.31.1: 8421 9932 optional: true 8422 9933 9934 + lightningcss-darwin-arm64@1.32.0: 9935 + optional: true 9936 + 8423 9937 lightningcss-darwin-x64@1.31.1: 8424 9938 optional: true 8425 9939 9940 + lightningcss-darwin-x64@1.32.0: 9941 + optional: true 9942 + 8426 9943 lightningcss-freebsd-x64@1.31.1: 8427 9944 optional: true 8428 9945 9946 + lightningcss-freebsd-x64@1.32.0: 9947 + optional: true 9948 + 8429 9949 lightningcss-linux-arm-gnueabihf@1.31.1: 9950 + optional: true 9951 + 9952 + lightningcss-linux-arm-gnueabihf@1.32.0: 8430 9953 optional: true 8431 9954 8432 9955 lightningcss-linux-arm64-gnu@1.31.1: 9956 + optional: true 9957 + 9958 + lightningcss-linux-arm64-gnu@1.32.0: 8433 9959 optional: true 8434 9960 8435 9961 lightningcss-linux-arm64-musl@1.31.1: 8436 9962 optional: true 8437 9963 9964 + lightningcss-linux-arm64-musl@1.32.0: 9965 + optional: true 9966 + 8438 9967 lightningcss-linux-x64-gnu@1.31.1: 8439 9968 optional: true 8440 9969 9970 + lightningcss-linux-x64-gnu@1.32.0: 9971 + optional: true 9972 + 8441 9973 lightningcss-linux-x64-musl@1.31.1: 8442 9974 optional: true 8443 9975 9976 + lightningcss-linux-x64-musl@1.32.0: 9977 + optional: true 9978 + 8444 9979 lightningcss-win32-arm64-msvc@1.31.1: 9980 + optional: true 9981 + 9982 + lightningcss-win32-arm64-msvc@1.32.0: 8445 9983 optional: true 8446 9984 8447 9985 lightningcss-win32-x64-msvc@1.31.1: 9986 + optional: true 9987 + 9988 + lightningcss-win32-x64-msvc@1.32.0: 8448 9989 optional: true 8449 9990 8450 9991 lightningcss@1.31.1: ··· 8463 10004 lightningcss-win32-arm64-msvc: 1.31.1 8464 10005 lightningcss-win32-x64-msvc: 1.31.1 8465 10006 10007 + lightningcss@1.32.0: 10008 + dependencies: 10009 + detect-libc: 2.1.2 10010 + optionalDependencies: 10011 + lightningcss-android-arm64: 1.32.0 10012 + lightningcss-darwin-arm64: 1.32.0 10013 + lightningcss-darwin-x64: 1.32.0 10014 + lightningcss-freebsd-x64: 1.32.0 10015 + lightningcss-linux-arm-gnueabihf: 1.32.0 10016 + lightningcss-linux-arm64-gnu: 1.32.0 10017 + lightningcss-linux-arm64-musl: 1.32.0 10018 + lightningcss-linux-x64-gnu: 1.32.0 10019 + lightningcss-linux-x64-musl: 1.32.0 10020 + lightningcss-win32-arm64-msvc: 1.32.0 10021 + lightningcss-win32-x64-msvc: 1.32.0 10022 + 8466 10023 lines-and-columns@1.2.4: {} 8467 10024 8468 10025 log-symbols@6.0.0: ··· 8519 10076 mdn-data@2.27.1: {} 8520 10077 8521 10078 media-typer@1.1.0: {} 10079 + 10080 + merge-anything@5.1.7: 10081 + dependencies: 10082 + is-what: 4.1.16 8522 10083 8523 10084 merge-descriptors@2.0.0: {} 8524 10085 ··· 8855 10416 '@oxfmt/binding-win32-ia32-msvc': 0.40.0 8856 10417 '@oxfmt/binding-win32-x64-msvc': 0.40.0 8857 10418 10419 + oxfmt@0.43.0: 10420 + dependencies: 10421 + tinypool: 2.1.0 10422 + optionalDependencies: 10423 + '@oxfmt/binding-android-arm-eabi': 0.43.0 10424 + '@oxfmt/binding-android-arm64': 0.43.0 10425 + '@oxfmt/binding-darwin-arm64': 0.43.0 10426 + '@oxfmt/binding-darwin-x64': 0.43.0 10427 + '@oxfmt/binding-freebsd-x64': 0.43.0 10428 + '@oxfmt/binding-linux-arm-gnueabihf': 0.43.0 10429 + '@oxfmt/binding-linux-arm-musleabihf': 0.43.0 10430 + '@oxfmt/binding-linux-arm64-gnu': 0.43.0 10431 + '@oxfmt/binding-linux-arm64-musl': 0.43.0 10432 + '@oxfmt/binding-linux-ppc64-gnu': 0.43.0 10433 + '@oxfmt/binding-linux-riscv64-gnu': 0.43.0 10434 + '@oxfmt/binding-linux-riscv64-musl': 0.43.0 10435 + '@oxfmt/binding-linux-s390x-gnu': 0.43.0 10436 + '@oxfmt/binding-linux-x64-gnu': 0.43.0 10437 + '@oxfmt/binding-linux-x64-musl': 0.43.0 10438 + '@oxfmt/binding-openharmony-arm64': 0.43.0 10439 + '@oxfmt/binding-win32-arm64-msvc': 0.43.0 10440 + '@oxfmt/binding-win32-ia32-msvc': 0.43.0 10441 + '@oxfmt/binding-win32-x64-msvc': 0.43.0 10442 + 8858 10443 oxlint-tsgolint@0.16.0: 8859 10444 optionalDependencies: 8860 10445 '@oxlint-tsgolint/darwin-arm64': 0.16.0 ··· 8864 10449 '@oxlint-tsgolint/win32-arm64': 0.16.0 8865 10450 '@oxlint-tsgolint/win32-x64': 0.16.0 8866 10451 10452 + oxlint-tsgolint@0.20.0: 10453 + optionalDependencies: 10454 + '@oxlint-tsgolint/darwin-arm64': 0.20.0 10455 + '@oxlint-tsgolint/darwin-x64': 0.20.0 10456 + '@oxlint-tsgolint/linux-arm64': 0.20.0 10457 + '@oxlint-tsgolint/linux-x64': 0.20.0 10458 + '@oxlint-tsgolint/win32-arm64': 0.20.0 10459 + '@oxlint-tsgolint/win32-x64': 0.20.0 10460 + 8867 10461 oxlint@1.55.0(oxlint-tsgolint@0.16.0): 8868 10462 optionalDependencies: 8869 10463 '@oxlint/binding-android-arm-eabi': 1.55.0 ··· 8887 10481 '@oxlint/binding-win32-x64-msvc': 1.55.0 8888 10482 oxlint-tsgolint: 0.16.0 8889 10483 10484 + oxlint@1.58.0(oxlint-tsgolint@0.20.0): 10485 + optionalDependencies: 10486 + '@oxlint/binding-android-arm-eabi': 1.58.0 10487 + '@oxlint/binding-android-arm64': 1.58.0 10488 + '@oxlint/binding-darwin-arm64': 1.58.0 10489 + '@oxlint/binding-darwin-x64': 1.58.0 10490 + '@oxlint/binding-freebsd-x64': 1.58.0 10491 + '@oxlint/binding-linux-arm-gnueabihf': 1.58.0 10492 + '@oxlint/binding-linux-arm-musleabihf': 1.58.0 10493 + '@oxlint/binding-linux-arm64-gnu': 1.58.0 10494 + '@oxlint/binding-linux-arm64-musl': 1.58.0 10495 + '@oxlint/binding-linux-ppc64-gnu': 1.58.0 10496 + '@oxlint/binding-linux-riscv64-gnu': 1.58.0 10497 + '@oxlint/binding-linux-riscv64-musl': 1.58.0 10498 + '@oxlint/binding-linux-s390x-gnu': 1.58.0 10499 + '@oxlint/binding-linux-x64-gnu': 1.58.0 10500 + '@oxlint/binding-linux-x64-musl': 1.58.0 10501 + '@oxlint/binding-openharmony-arm64': 1.58.0 10502 + '@oxlint/binding-win32-arm64-msvc': 1.58.0 10503 + '@oxlint/binding-win32-ia32-msvc': 1.58.0 10504 + '@oxlint/binding-win32-x64-msvc': 1.58.0 10505 + oxlint-tsgolint: 0.20.0 10506 + 8890 10507 package-manager-detector@1.6.0: {} 8891 10508 8892 10509 parent-module@1.0.1: ··· 8907 10524 type-fest: 4.41.0 8908 10525 8909 10526 parse-ms@4.0.0: {} 10527 + 10528 + parse5@7.3.0: 10529 + dependencies: 10530 + entities: 6.0.1 8910 10531 8911 10532 parseurl@1.3.3: {} 8912 10533 ··· 8936 10557 8937 10558 picomatch@4.0.3: {} 8938 10559 10560 + picomatch@4.0.4: {} 10561 + 8939 10562 pid-port@1.0.2: 8940 10563 dependencies: 8941 10564 execa: 8.0.1 ··· 8974 10597 source-map-js: 1.2.1 8975 10598 8976 10599 postcss@8.5.8: 10600 + dependencies: 10601 + nanoid: 3.3.11 10602 + picocolors: 1.1.1 10603 + source-map-js: 1.2.1 10604 + 10605 + postcss@8.5.9: 8977 10606 dependencies: 8978 10607 nanoid: 3.3.11 8979 10608 picocolors: 1.1.1 ··· 9142 10771 '@rolldown/binding-win32-ia32-msvc': 0.15.1 9143 10772 '@rolldown/binding-win32-x64-msvc': 0.15.1 9144 10773 9145 - rolldown@1.0.0-rc.6: 10774 + rolldown@1.0.0-rc.6(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1): 9146 10775 dependencies: 9147 10776 '@oxc-project/types': 0.115.0 9148 10777 '@rolldown/pluginutils': 1.0.0-rc.6 ··· 9157 10786 '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.6 9158 10787 '@rolldown/binding-linux-x64-musl': 1.0.0-rc.6 9159 10788 '@rolldown/binding-openharmony-arm64': 1.0.0-rc.6 9160 - '@rolldown/binding-wasm32-wasi': 1.0.0-rc.6 10789 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.6(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1) 9161 10790 '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.6 9162 10791 '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.6 10792 + transitivePeerDependencies: 10793 + - '@emnapi/core' 10794 + - '@emnapi/runtime' 9163 10795 9164 10796 rolldown@1.0.0-rc.9: 9165 10797 dependencies: ··· 9385 11017 9386 11018 smol-toml@1.6.0: {} 9387 11019 11020 + solid-devtools@0.34.5(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(solid-js@1.9.11): 11021 + dependencies: 11022 + '@babel/core': 7.29.0 11023 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) 11024 + '@babel/types': 7.29.0 11025 + '@solid-devtools/debugger': 0.28.1(solid-js@1.9.11) 11026 + '@solid-devtools/shared': 0.20.0(solid-js@1.9.11) 11027 + solid-js: 1.9.11 11028 + optionalDependencies: 11029 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 11030 + transitivePeerDependencies: 11031 + - supports-color 11032 + 9388 11033 solid-js@1.9.11: 9389 11034 dependencies: 9390 11035 csstype: 3.2.3 9391 11036 seroval: 1.5.1 9392 11037 seroval-plugins: 1.5.1(seroval@1.5.1) 9393 11038 11039 + solid-refresh@0.6.3(solid-js@1.9.11): 11040 + dependencies: 11041 + '@babel/generator': 7.29.1 11042 + '@babel/helper-module-imports': 7.28.6 11043 + '@babel/types': 7.29.0 11044 + solid-js: 1.9.11 11045 + transitivePeerDependencies: 11046 + - supports-color 11047 + 11048 + solid-refresh@0.7.8(solid-js@1.9.11): 11049 + dependencies: 11050 + '@babel/generator': 7.29.1 11051 + '@babel/types': 7.29.0 11052 + solid-js: 1.9.11 11053 + 9394 11054 source-map-js@1.2.1: {} 9395 11055 9396 11056 source-map@0.6.1: {} ··· 9476 11136 9477 11137 tinyexec@1.0.4: {} 9478 11138 11139 + tinyexec@1.1.1: {} 11140 + 9479 11141 tinyglobby@0.2.15: 9480 11142 dependencies: 9481 11143 fdir: 6.5.0(picomatch@4.0.3) 9482 11144 picomatch: 4.0.3 9483 11145 11146 + tinyglobby@0.2.16: 11147 + dependencies: 11148 + fdir: 6.5.0(picomatch@4.0.4) 11149 + picomatch: 4.0.4 11150 + 9484 11151 tinypool@2.1.0: {} 9485 11152 9486 11153 tldts-core@7.0.25: {} ··· 9520 11187 9521 11188 tsx@4.21.0: 9522 11189 dependencies: 9523 - esbuild: 0.27.3 9524 - get-tsconfig: 4.13.6 11190 + esbuild: 0.27.7 11191 + get-tsconfig: 4.13.7 9525 11192 optionalDependencies: 9526 11193 fsevents: 2.3.3 9527 11194 optional: true ··· 9598 11265 9599 11266 universalify@2.0.1: {} 9600 11267 9601 - unocss@66.6.6(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2)): 11268 + unocss@66.6.6(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2)): 9602 11269 dependencies: 9603 11270 '@unocss/cli': 66.6.6 9604 11271 '@unocss/core': 66.6.6 ··· 9616 11283 '@unocss/transformer-compile-class': 66.6.6 9617 11284 '@unocss/transformer-directives': 66.6.6 9618 11285 '@unocss/transformer-variant-group': 66.6.6 9619 - '@unocss/vite': 66.6.6(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2)) 11286 + '@unocss/vite': 66.6.6(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2)) 9620 11287 transitivePeerDependencies: 9621 11288 - vite 9622 11289 ··· 9670 11337 '@types/unist': 3.0.3 9671 11338 vfile-message: 4.0.3 9672 11339 9673 - vite-plus@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2): 11340 + vite-plugin-solid@2.11.12(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(solid-js@1.9.11): 11341 + dependencies: 11342 + '@babel/core': 7.29.0 11343 + '@types/babel__core': 7.20.5 11344 + babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.11) 11345 + merge-anything: 5.1.7 11346 + solid-js: 1.9.11 11347 + solid-refresh: 0.6.3(solid-js@1.9.11) 11348 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 11349 + vitefu: 1.1.3(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 11350 + transitivePeerDependencies: 11351 + - supports-color 11352 + 11353 + vite-plus@0.1.11(@types/node@24.12.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 9674 11354 dependencies: 9675 11355 '@oxc-project/types': 0.115.0 9676 - '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 9677 - '@voidzero-dev/vite-plus-test': 0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 11356 + '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 11357 + '@voidzero-dev/vite-plus-test': 0.1.11(@types/node@24.12.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 9678 11358 cac: 6.7.14 9679 11359 cross-spawn: 7.0.6 9680 11360 oxfmt: 0.40.0 ··· 9716 11396 - vite 9717 11397 - yaml 9718 11398 9719 - vite-plus@0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2): 11399 + vite-plus@0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2): 9720 11400 dependencies: 9721 11401 '@oxc-project/types': 0.115.0 9722 - '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 9723 - '@voidzero-dev/vite-plus-test': 0.1.11(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 11402 + '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 11403 + '@voidzero-dev/vite-plus-test': 0.1.11(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 9724 11404 cac: 6.7.14 9725 11405 cross-spawn: 7.0.6 9726 11406 oxfmt: 0.40.0 ··· 9762 11442 - vite 9763 11443 - yaml 9764 11444 9765 - vite@8.0.0-beta.16(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2): 11445 + vite-plus@0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2): 11446 + dependencies: 11447 + '@oxc-project/types': 0.115.0 11448 + '@voidzero-dev/vite-plus-core': 0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 11449 + '@voidzero-dev/vite-plus-test': 0.1.11(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 11450 + cac: 6.7.14 11451 + cross-spawn: 7.0.6 11452 + oxfmt: 0.40.0 11453 + oxlint: 1.55.0(oxlint-tsgolint@0.16.0) 11454 + oxlint-tsgolint: 0.16.0 11455 + picocolors: 1.1.1 11456 + optionalDependencies: 11457 + '@voidzero-dev/vite-plus-darwin-arm64': 0.1.11 11458 + '@voidzero-dev/vite-plus-darwin-x64': 0.1.11 11459 + '@voidzero-dev/vite-plus-linux-arm64-gnu': 0.1.11 11460 + '@voidzero-dev/vite-plus-linux-x64-gnu': 0.1.11 11461 + '@voidzero-dev/vite-plus-win32-arm64-msvc': 0.1.11 11462 + '@voidzero-dev/vite-plus-win32-x64-msvc': 0.1.11 11463 + transitivePeerDependencies: 11464 + - '@arethetypeswrong/core' 11465 + - '@edge-runtime/vm' 11466 + - '@opentelemetry/api' 11467 + - '@tsdown/css' 11468 + - '@tsdown/exe' 11469 + - '@types/node' 11470 + - '@vitejs/devtools' 11471 + - '@vitest/ui' 11472 + - bufferutil 11473 + - esbuild 11474 + - happy-dom 11475 + - jiti 11476 + - jsdom 11477 + - less 11478 + - publint 11479 + - sass 11480 + - sass-embedded 11481 + - stylus 11482 + - sugarss 11483 + - terser 11484 + - tsx 11485 + - typescript 11486 + - unplugin-unused 11487 + - utf-8-validate 11488 + - vite 11489 + - yaml 11490 + 11491 + vite-plus@0.1.16(@types/node@25.1.0)(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 11492 + dependencies: 11493 + '@oxc-project/types': 0.123.0 11494 + '@voidzero-dev/vite-plus-core': 0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 11495 + '@voidzero-dev/vite-plus-test': 0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) 11496 + oxfmt: 0.43.0 11497 + oxlint: 1.58.0(oxlint-tsgolint@0.20.0) 11498 + oxlint-tsgolint: 0.20.0 11499 + optionalDependencies: 11500 + '@voidzero-dev/vite-plus-darwin-arm64': 0.1.16 11501 + '@voidzero-dev/vite-plus-darwin-x64': 0.1.16 11502 + '@voidzero-dev/vite-plus-linux-arm64-gnu': 0.1.16 11503 + '@voidzero-dev/vite-plus-linux-arm64-musl': 0.1.16 11504 + '@voidzero-dev/vite-plus-linux-x64-gnu': 0.1.16 11505 + '@voidzero-dev/vite-plus-linux-x64-musl': 0.1.16 11506 + '@voidzero-dev/vite-plus-win32-arm64-msvc': 0.1.16 11507 + '@voidzero-dev/vite-plus-win32-x64-msvc': 0.1.16 11508 + transitivePeerDependencies: 11509 + - '@arethetypeswrong/core' 11510 + - '@edge-runtime/vm' 11511 + - '@opentelemetry/api' 11512 + - '@tsdown/css' 11513 + - '@tsdown/exe' 11514 + - '@types/node' 11515 + - '@vitejs/devtools' 11516 + - '@vitest/ui' 11517 + - bufferutil 11518 + - esbuild 11519 + - happy-dom 11520 + - jiti 11521 + - jsdom 11522 + - less 11523 + - publint 11524 + - sass 11525 + - sass-embedded 11526 + - stylus 11527 + - sugarss 11528 + - terser 11529 + - tsx 11530 + - typescript 11531 + - unplugin-unused 11532 + - utf-8-validate 11533 + - vite 11534 + - yaml 11535 + 11536 + vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2): 9766 11537 dependencies: 9767 11538 '@oxc-project/runtime': 0.115.0 9768 - lightningcss: 1.31.1 9769 - picomatch: 4.0.3 9770 - postcss: 8.5.8 9771 - rolldown: 1.0.0-rc.6 9772 - tinyglobby: 0.2.15 11539 + lightningcss: 1.32.0 11540 + picomatch: 4.0.4 11541 + postcss: 8.5.9 11542 + rolldown: 1.0.0-rc.6(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1) 11543 + tinyglobby: 0.2.16 9773 11544 optionalDependencies: 9774 11545 '@types/node': 24.12.0 9775 - esbuild: 0.27.3 11546 + esbuild: 0.27.7 9776 11547 fsevents: 2.3.3 9777 11548 jiti: 2.6.1 9778 11549 sass: 1.97.3 9779 11550 tsx: 4.21.0 9780 11551 yaml: 2.8.2 11552 + transitivePeerDependencies: 11553 + - '@emnapi/core' 11554 + - '@emnapi/runtime' 9781 11555 9782 - vite@8.0.0-beta.16(@types/node@25.1.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2): 11556 + vite@8.0.0-beta.16(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1)(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(yaml@2.8.2): 9783 11557 dependencies: 9784 11558 '@oxc-project/runtime': 0.115.0 9785 - lightningcss: 1.31.1 9786 - picomatch: 4.0.3 9787 - postcss: 8.5.8 9788 - rolldown: 1.0.0-rc.6 9789 - tinyglobby: 0.2.15 11559 + lightningcss: 1.32.0 11560 + picomatch: 4.0.4 11561 + postcss: 8.5.9 11562 + rolldown: 1.0.0-rc.6(@emnapi/core@1.8.1)(@emnapi/runtime@1.8.1) 11563 + tinyglobby: 0.2.16 9790 11564 optionalDependencies: 9791 11565 '@types/node': 25.1.0 9792 - esbuild: 0.27.3 11566 + esbuild: 0.27.7 9793 11567 fsevents: 2.3.3 9794 11568 jiti: 2.6.1 9795 11569 sass: 1.97.3 9796 11570 tsx: 4.21.0 9797 11571 yaml: 2.8.2 11572 + transitivePeerDependencies: 11573 + - '@emnapi/core' 11574 + - '@emnapi/runtime' 9798 11575 9799 - vitepress@2.0.0-alpha.16(@types/node@24.12.0)(change-case@5.4.4)(esbuild@0.27.3)(jiti@2.6.1)(oxc-minify@0.116.0)(postcss@8.5.8)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 11576 + vitefu@1.1.3(@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)): 11577 + optionalDependencies: 11578 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@25.1.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 11579 + 11580 + vitepress@2.0.0-alpha.16(@types/node@24.12.0)(change-case@5.4.4)(jiti@2.6.1)(oxc-minify@0.116.0)(postcss@8.5.9)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 9800 11581 dependencies: 9801 11582 '@docsearch/css': 4.6.0 9802 11583 '@docsearch/js': 4.6.0 ··· 9806 11587 '@shikijs/transformers': 3.23.0 9807 11588 '@shikijs/types': 3.23.0 9808 11589 '@types/markdown-it': 14.1.2 9809 - '@vitejs/plugin-vue': 6.0.5(@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) 11590 + '@vitejs/plugin-vue': 6.0.5(@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) 9810 11591 '@vue/devtools-api': 8.1.0 9811 11592 '@vue/shared': 3.5.27 9812 11593 '@vueuse/core': 14.2.1(vue@3.5.30(typescript@5.9.3)) ··· 9815 11596 mark.js: 8.11.1 9816 11597 minisearch: 7.2.0 9817 11598 shiki: 3.23.0 9818 - vite: '@voidzero-dev/vite-plus-core@0.1.11(@types/node@24.12.0)(esbuild@0.27.3)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 11599 + vite: '@voidzero-dev/vite-plus-core@0.1.16(@types/node@24.12.0)(esbuild@0.27.7)(jiti@2.6.1)(sass@1.97.3)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 9819 11600 vue: 3.5.30(typescript@5.9.3) 9820 11601 optionalDependencies: 9821 11602 oxc-minify: 0.116.0 9822 - postcss: 8.5.8 11603 + postcss: 8.5.9 9823 11604 transitivePeerDependencies: 9824 11605 - '@arethetypeswrong/core' 9825 11606 - '@tsdown/css' ··· 9923 11704 ws@8.18.0: {} 9924 11705 9925 11706 ws@8.19.0: {} 11707 + 11708 + ws@8.20.0: {} 9926 11709 9927 11710 wsl-utils@0.3.1: 9928 11711 dependencies:
+4 -3
pnpm-workspace.yaml
··· 5 5 6 6 catalog: 7 7 '@babel/core': 7.29.0 8 + '@oxc-solid-js/vite': 0.1.0-alpha.15 8 9 '@rolldown/plugin-babel': 0.2.1 9 10 '@shikijs/core': 4.0.2 10 11 '@shikijs/engine-javascript': 4.0.2 ··· 13 14 '@types/node': ^24 14 15 '@typescript/native-preview': ^7.0.0-dev.20260105.1 15 16 typescript: ^5 16 - vite: npm:@voidzero-dev/vite-plus-core@latest 17 - vite-plus: latest 18 - vitest: npm:@voidzero-dev/vite-plus-test@latest 17 + vite: npm:@voidzero-dev/vite-plus-core@0.1.16 18 + vite-plus: 0.1.16 19 + vitest: npm:@voidzero-dev/vite-plus-test@0.1.16 19 20 20 21 catalogMode: prefer 21 22 ignoreDepScripts: true