[Archived] Archived WIP of vielle.dev

Initial commit from Astro

authored by

houston[bot] and committed by
afterlifepro
a97893b5

+3766
+24
.gitignore
··· 1 + # build output 2 + dist/ 3 + 4 + # generated types 5 + .astro/ 6 + 7 + # dependencies 8 + node_modules/ 9 + 10 + # logs 11 + npm-debug.log* 12 + yarn-debug.log* 13 + yarn-error.log* 14 + pnpm-debug.log* 15 + 16 + # environment variables 17 + .env 18 + .env.production 19 + 20 + # macOS-specific files 21 + .DS_Store 22 + 23 + # jetbrains setting folder 24 + .idea/
+4
.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["astro-build.astro-vscode"], 3 + "unwantedRecommendations": [] 4 + }
+11
.vscode/launch.json
··· 1 + { 2 + "version": "0.2.0", 3 + "configurations": [ 4 + { 5 + "command": "./node_modules/.bin/astro dev", 6 + "name": "Development server", 7 + "request": "launch", 8 + "type": "node-terminal" 9 + } 10 + ] 11 + }
+48
README.md
··· 1 + # Astro Starter Kit: Basics 2 + 3 + ```sh 4 + npm create astro@latest -- --template basics 5 + ``` 6 + 7 + [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics) 8 + [![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics) 9 + [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json) 10 + 11 + > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 12 + 13 + ![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554) 14 + 15 + ## 🚀 Project Structure 16 + 17 + Inside of your Astro project, you'll see the following folders and files: 18 + 19 + ```text 20 + / 21 + ├── public/ 22 + │ └── favicon.svg 23 + ├── src/ 24 + │ ├── layouts/ 25 + │ │ └── Layout.astro 26 + │ └── pages/ 27 + │ └── index.astro 28 + └── package.json 29 + ``` 30 + 31 + To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/). 32 + 33 + ## 🧞 Commands 34 + 35 + All commands are run from the root of the project, from a terminal: 36 + 37 + | Command | Action | 38 + | :------------------------ | :----------------------------------------------- | 39 + | `npm install` | Installs dependencies | 40 + | `npm run dev` | Starts local dev server at `localhost:4321` | 41 + | `npm run build` | Build your production site to `./dist/` | 42 + | `npm run preview` | Preview your build locally, before deploying | 43 + | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | 44 + | `npm run astro -- --help` | Get help using the Astro CLI | 45 + 46 + ## 👀 Want to learn more? 47 + 48 + Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
+5
astro.config.mjs
··· 1 + // @ts-check 2 + import { defineConfig } from 'astro/config'; 3 + 4 + // https://astro.build/config 5 + export default defineConfig({});
+14
package.json
··· 1 + { 2 + "name": "v2", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "scripts": { 6 + "dev": "astro dev", 7 + "build": "astro build", 8 + "preview": "astro preview", 9 + "astro": "astro" 10 + }, 11 + "dependencies": { 12 + "astro": "^5.1.1" 13 + } 14 + }
+3402
pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: 10 + dependencies: 11 + astro: 12 + specifier: ^5.1.1 13 + version: 5.1.1(rollup@4.29.1)(typescript@5.7.2) 14 + 15 + packages: 16 + 17 + '@astrojs/compiler@2.10.3': 18 + resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} 19 + 20 + '@astrojs/internal-helpers@0.4.2': 21 + resolution: {integrity: sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==} 22 + 23 + '@astrojs/markdown-remark@6.0.1': 24 + resolution: {integrity: sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==} 25 + 26 + '@astrojs/prism@3.2.0': 27 + resolution: {integrity: sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==} 28 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 29 + 30 + '@astrojs/telemetry@3.2.0': 31 + resolution: {integrity: sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==} 32 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 33 + 34 + '@babel/helper-string-parser@7.25.9': 35 + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 36 + engines: {node: '>=6.9.0'} 37 + 38 + '@babel/helper-validator-identifier@7.25.9': 39 + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 40 + engines: {node: '>=6.9.0'} 41 + 42 + '@babel/parser@7.26.3': 43 + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} 44 + engines: {node: '>=6.0.0'} 45 + hasBin: true 46 + 47 + '@babel/types@7.26.3': 48 + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 49 + engines: {node: '>=6.9.0'} 50 + 51 + '@emnapi/runtime@1.3.1': 52 + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 53 + 54 + '@esbuild/aix-ppc64@0.21.5': 55 + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 56 + engines: {node: '>=12'} 57 + cpu: [ppc64] 58 + os: [aix] 59 + 60 + '@esbuild/aix-ppc64@0.24.2': 61 + resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} 62 + engines: {node: '>=18'} 63 + cpu: [ppc64] 64 + os: [aix] 65 + 66 + '@esbuild/android-arm64@0.21.5': 67 + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 68 + engines: {node: '>=12'} 69 + cpu: [arm64] 70 + os: [android] 71 + 72 + '@esbuild/android-arm64@0.24.2': 73 + resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} 74 + engines: {node: '>=18'} 75 + cpu: [arm64] 76 + os: [android] 77 + 78 + '@esbuild/android-arm@0.21.5': 79 + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 80 + engines: {node: '>=12'} 81 + cpu: [arm] 82 + os: [android] 83 + 84 + '@esbuild/android-arm@0.24.2': 85 + resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} 86 + engines: {node: '>=18'} 87 + cpu: [arm] 88 + os: [android] 89 + 90 + '@esbuild/android-x64@0.21.5': 91 + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 92 + engines: {node: '>=12'} 93 + cpu: [x64] 94 + os: [android] 95 + 96 + '@esbuild/android-x64@0.24.2': 97 + resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} 98 + engines: {node: '>=18'} 99 + cpu: [x64] 100 + os: [android] 101 + 102 + '@esbuild/darwin-arm64@0.21.5': 103 + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 104 + engines: {node: '>=12'} 105 + cpu: [arm64] 106 + os: [darwin] 107 + 108 + '@esbuild/darwin-arm64@0.24.2': 109 + resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} 110 + engines: {node: '>=18'} 111 + cpu: [arm64] 112 + os: [darwin] 113 + 114 + '@esbuild/darwin-x64@0.21.5': 115 + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 116 + engines: {node: '>=12'} 117 + cpu: [x64] 118 + os: [darwin] 119 + 120 + '@esbuild/darwin-x64@0.24.2': 121 + resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} 122 + engines: {node: '>=18'} 123 + cpu: [x64] 124 + os: [darwin] 125 + 126 + '@esbuild/freebsd-arm64@0.21.5': 127 + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 128 + engines: {node: '>=12'} 129 + cpu: [arm64] 130 + os: [freebsd] 131 + 132 + '@esbuild/freebsd-arm64@0.24.2': 133 + resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} 134 + engines: {node: '>=18'} 135 + cpu: [arm64] 136 + os: [freebsd] 137 + 138 + '@esbuild/freebsd-x64@0.21.5': 139 + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 140 + engines: {node: '>=12'} 141 + cpu: [x64] 142 + os: [freebsd] 143 + 144 + '@esbuild/freebsd-x64@0.24.2': 145 + resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} 146 + engines: {node: '>=18'} 147 + cpu: [x64] 148 + os: [freebsd] 149 + 150 + '@esbuild/linux-arm64@0.21.5': 151 + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 152 + engines: {node: '>=12'} 153 + cpu: [arm64] 154 + os: [linux] 155 + 156 + '@esbuild/linux-arm64@0.24.2': 157 + resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} 158 + engines: {node: '>=18'} 159 + cpu: [arm64] 160 + os: [linux] 161 + 162 + '@esbuild/linux-arm@0.21.5': 163 + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 164 + engines: {node: '>=12'} 165 + cpu: [arm] 166 + os: [linux] 167 + 168 + '@esbuild/linux-arm@0.24.2': 169 + resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} 170 + engines: {node: '>=18'} 171 + cpu: [arm] 172 + os: [linux] 173 + 174 + '@esbuild/linux-ia32@0.21.5': 175 + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 176 + engines: {node: '>=12'} 177 + cpu: [ia32] 178 + os: [linux] 179 + 180 + '@esbuild/linux-ia32@0.24.2': 181 + resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} 182 + engines: {node: '>=18'} 183 + cpu: [ia32] 184 + os: [linux] 185 + 186 + '@esbuild/linux-loong64@0.21.5': 187 + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 188 + engines: {node: '>=12'} 189 + cpu: [loong64] 190 + os: [linux] 191 + 192 + '@esbuild/linux-loong64@0.24.2': 193 + resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} 194 + engines: {node: '>=18'} 195 + cpu: [loong64] 196 + os: [linux] 197 + 198 + '@esbuild/linux-mips64el@0.21.5': 199 + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 200 + engines: {node: '>=12'} 201 + cpu: [mips64el] 202 + os: [linux] 203 + 204 + '@esbuild/linux-mips64el@0.24.2': 205 + resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} 206 + engines: {node: '>=18'} 207 + cpu: [mips64el] 208 + os: [linux] 209 + 210 + '@esbuild/linux-ppc64@0.21.5': 211 + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 212 + engines: {node: '>=12'} 213 + cpu: [ppc64] 214 + os: [linux] 215 + 216 + '@esbuild/linux-ppc64@0.24.2': 217 + resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} 218 + engines: {node: '>=18'} 219 + cpu: [ppc64] 220 + os: [linux] 221 + 222 + '@esbuild/linux-riscv64@0.21.5': 223 + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 224 + engines: {node: '>=12'} 225 + cpu: [riscv64] 226 + os: [linux] 227 + 228 + '@esbuild/linux-riscv64@0.24.2': 229 + resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} 230 + engines: {node: '>=18'} 231 + cpu: [riscv64] 232 + os: [linux] 233 + 234 + '@esbuild/linux-s390x@0.21.5': 235 + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 236 + engines: {node: '>=12'} 237 + cpu: [s390x] 238 + os: [linux] 239 + 240 + '@esbuild/linux-s390x@0.24.2': 241 + resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} 242 + engines: {node: '>=18'} 243 + cpu: [s390x] 244 + os: [linux] 245 + 246 + '@esbuild/linux-x64@0.21.5': 247 + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 248 + engines: {node: '>=12'} 249 + cpu: [x64] 250 + os: [linux] 251 + 252 + '@esbuild/linux-x64@0.24.2': 253 + resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} 254 + engines: {node: '>=18'} 255 + cpu: [x64] 256 + os: [linux] 257 + 258 + '@esbuild/netbsd-arm64@0.24.2': 259 + resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} 260 + engines: {node: '>=18'} 261 + cpu: [arm64] 262 + os: [netbsd] 263 + 264 + '@esbuild/netbsd-x64@0.21.5': 265 + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 266 + engines: {node: '>=12'} 267 + cpu: [x64] 268 + os: [netbsd] 269 + 270 + '@esbuild/netbsd-x64@0.24.2': 271 + resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} 272 + engines: {node: '>=18'} 273 + cpu: [x64] 274 + os: [netbsd] 275 + 276 + '@esbuild/openbsd-arm64@0.24.2': 277 + resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} 278 + engines: {node: '>=18'} 279 + cpu: [arm64] 280 + os: [openbsd] 281 + 282 + '@esbuild/openbsd-x64@0.21.5': 283 + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 284 + engines: {node: '>=12'} 285 + cpu: [x64] 286 + os: [openbsd] 287 + 288 + '@esbuild/openbsd-x64@0.24.2': 289 + resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} 290 + engines: {node: '>=18'} 291 + cpu: [x64] 292 + os: [openbsd] 293 + 294 + '@esbuild/sunos-x64@0.21.5': 295 + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 296 + engines: {node: '>=12'} 297 + cpu: [x64] 298 + os: [sunos] 299 + 300 + '@esbuild/sunos-x64@0.24.2': 301 + resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} 302 + engines: {node: '>=18'} 303 + cpu: [x64] 304 + os: [sunos] 305 + 306 + '@esbuild/win32-arm64@0.21.5': 307 + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 308 + engines: {node: '>=12'} 309 + cpu: [arm64] 310 + os: [win32] 311 + 312 + '@esbuild/win32-arm64@0.24.2': 313 + resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} 314 + engines: {node: '>=18'} 315 + cpu: [arm64] 316 + os: [win32] 317 + 318 + '@esbuild/win32-ia32@0.21.5': 319 + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 320 + engines: {node: '>=12'} 321 + cpu: [ia32] 322 + os: [win32] 323 + 324 + '@esbuild/win32-ia32@0.24.2': 325 + resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} 326 + engines: {node: '>=18'} 327 + cpu: [ia32] 328 + os: [win32] 329 + 330 + '@esbuild/win32-x64@0.21.5': 331 + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 332 + engines: {node: '>=12'} 333 + cpu: [x64] 334 + os: [win32] 335 + 336 + '@esbuild/win32-x64@0.24.2': 337 + resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} 338 + engines: {node: '>=18'} 339 + cpu: [x64] 340 + os: [win32] 341 + 342 + '@img/sharp-darwin-arm64@0.33.5': 343 + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 344 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 345 + cpu: [arm64] 346 + os: [darwin] 347 + 348 + '@img/sharp-darwin-x64@0.33.5': 349 + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 350 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 351 + cpu: [x64] 352 + os: [darwin] 353 + 354 + '@img/sharp-libvips-darwin-arm64@1.0.4': 355 + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 356 + cpu: [arm64] 357 + os: [darwin] 358 + 359 + '@img/sharp-libvips-darwin-x64@1.0.4': 360 + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 361 + cpu: [x64] 362 + os: [darwin] 363 + 364 + '@img/sharp-libvips-linux-arm64@1.0.4': 365 + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 366 + cpu: [arm64] 367 + os: [linux] 368 + 369 + '@img/sharp-libvips-linux-arm@1.0.5': 370 + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 371 + cpu: [arm] 372 + os: [linux] 373 + 374 + '@img/sharp-libvips-linux-s390x@1.0.4': 375 + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 376 + cpu: [s390x] 377 + os: [linux] 378 + 379 + '@img/sharp-libvips-linux-x64@1.0.4': 380 + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 381 + cpu: [x64] 382 + os: [linux] 383 + 384 + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 385 + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 386 + cpu: [arm64] 387 + os: [linux] 388 + 389 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': 390 + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 391 + cpu: [x64] 392 + os: [linux] 393 + 394 + '@img/sharp-linux-arm64@0.33.5': 395 + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 396 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 397 + cpu: [arm64] 398 + os: [linux] 399 + 400 + '@img/sharp-linux-arm@0.33.5': 401 + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 402 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 403 + cpu: [arm] 404 + os: [linux] 405 + 406 + '@img/sharp-linux-s390x@0.33.5': 407 + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 408 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 409 + cpu: [s390x] 410 + os: [linux] 411 + 412 + '@img/sharp-linux-x64@0.33.5': 413 + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 414 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 415 + cpu: [x64] 416 + os: [linux] 417 + 418 + '@img/sharp-linuxmusl-arm64@0.33.5': 419 + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 420 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 421 + cpu: [arm64] 422 + os: [linux] 423 + 424 + '@img/sharp-linuxmusl-x64@0.33.5': 425 + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 426 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 427 + cpu: [x64] 428 + os: [linux] 429 + 430 + '@img/sharp-wasm32@0.33.5': 431 + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 432 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 433 + cpu: [wasm32] 434 + 435 + '@img/sharp-win32-ia32@0.33.5': 436 + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 437 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 438 + cpu: [ia32] 439 + os: [win32] 440 + 441 + '@img/sharp-win32-x64@0.33.5': 442 + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 443 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 444 + cpu: [x64] 445 + os: [win32] 446 + 447 + '@jridgewell/sourcemap-codec@1.5.0': 448 + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 449 + 450 + '@nodelib/fs.scandir@2.1.5': 451 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 452 + engines: {node: '>= 8'} 453 + 454 + '@nodelib/fs.stat@2.0.5': 455 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 456 + engines: {node: '>= 8'} 457 + 458 + '@nodelib/fs.walk@1.2.8': 459 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 460 + engines: {node: '>= 8'} 461 + 462 + '@oslojs/encoding@1.1.0': 463 + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 464 + 465 + '@rollup/pluginutils@5.1.4': 466 + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} 467 + engines: {node: '>=14.0.0'} 468 + peerDependencies: 469 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 470 + peerDependenciesMeta: 471 + rollup: 472 + optional: true 473 + 474 + '@rollup/rollup-android-arm-eabi@4.29.1': 475 + resolution: {integrity: sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==} 476 + cpu: [arm] 477 + os: [android] 478 + 479 + '@rollup/rollup-android-arm64@4.29.1': 480 + resolution: {integrity: sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==} 481 + cpu: [arm64] 482 + os: [android] 483 + 484 + '@rollup/rollup-darwin-arm64@4.29.1': 485 + resolution: {integrity: sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==} 486 + cpu: [arm64] 487 + os: [darwin] 488 + 489 + '@rollup/rollup-darwin-x64@4.29.1': 490 + resolution: {integrity: sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==} 491 + cpu: [x64] 492 + os: [darwin] 493 + 494 + '@rollup/rollup-freebsd-arm64@4.29.1': 495 + resolution: {integrity: sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==} 496 + cpu: [arm64] 497 + os: [freebsd] 498 + 499 + '@rollup/rollup-freebsd-x64@4.29.1': 500 + resolution: {integrity: sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==} 501 + cpu: [x64] 502 + os: [freebsd] 503 + 504 + '@rollup/rollup-linux-arm-gnueabihf@4.29.1': 505 + resolution: {integrity: sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==} 506 + cpu: [arm] 507 + os: [linux] 508 + 509 + '@rollup/rollup-linux-arm-musleabihf@4.29.1': 510 + resolution: {integrity: sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==} 511 + cpu: [arm] 512 + os: [linux] 513 + 514 + '@rollup/rollup-linux-arm64-gnu@4.29.1': 515 + resolution: {integrity: sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==} 516 + cpu: [arm64] 517 + os: [linux] 518 + 519 + '@rollup/rollup-linux-arm64-musl@4.29.1': 520 + resolution: {integrity: sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==} 521 + cpu: [arm64] 522 + os: [linux] 523 + 524 + '@rollup/rollup-linux-loongarch64-gnu@4.29.1': 525 + resolution: {integrity: sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==} 526 + cpu: [loong64] 527 + os: [linux] 528 + 529 + '@rollup/rollup-linux-powerpc64le-gnu@4.29.1': 530 + resolution: {integrity: sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==} 531 + cpu: [ppc64] 532 + os: [linux] 533 + 534 + '@rollup/rollup-linux-riscv64-gnu@4.29.1': 535 + resolution: {integrity: sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==} 536 + cpu: [riscv64] 537 + os: [linux] 538 + 539 + '@rollup/rollup-linux-s390x-gnu@4.29.1': 540 + resolution: {integrity: sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==} 541 + cpu: [s390x] 542 + os: [linux] 543 + 544 + '@rollup/rollup-linux-x64-gnu@4.29.1': 545 + resolution: {integrity: sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==} 546 + cpu: [x64] 547 + os: [linux] 548 + 549 + '@rollup/rollup-linux-x64-musl@4.29.1': 550 + resolution: {integrity: sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==} 551 + cpu: [x64] 552 + os: [linux] 553 + 554 + '@rollup/rollup-win32-arm64-msvc@4.29.1': 555 + resolution: {integrity: sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==} 556 + cpu: [arm64] 557 + os: [win32] 558 + 559 + '@rollup/rollup-win32-ia32-msvc@4.29.1': 560 + resolution: {integrity: sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==} 561 + cpu: [ia32] 562 + os: [win32] 563 + 564 + '@rollup/rollup-win32-x64-msvc@4.29.1': 565 + resolution: {integrity: sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==} 566 + cpu: [x64] 567 + os: [win32] 568 + 569 + '@shikijs/core@1.24.4': 570 + resolution: {integrity: sha512-jjLsld+xEEGYlxAXDyGwWsKJ1sw5Pc1pnp4ai2ORpjx2UX08YYTC0NNqQYO1PaghYaR+PvgMOGuvzw2he9sk0Q==} 571 + 572 + '@shikijs/engine-javascript@1.24.4': 573 + resolution: {integrity: sha512-TClaQOLvo9WEMJv6GoUsykQ6QdynuKszuORFWCke8qvi6PeLm7FcD9+7y45UenysxEWYpDL5KJaVXTngTE+2BA==} 574 + 575 + '@shikijs/engine-oniguruma@1.24.4': 576 + resolution: {integrity: sha512-Do2ry6flp2HWdvpj2XOwwa0ljZBRy15HKZITzPcNIBOGSeprnA8gOooA/bLsSPuy8aJBa+Q/r34dMmC3KNL/zw==} 577 + 578 + '@shikijs/types@1.24.4': 579 + resolution: {integrity: sha512-0r0XU7Eaow0PuDxuWC1bVqmWCgm3XqizIaT7SM42K03vc69LGooT0U8ccSR44xP/hGlNx4FKhtYpV+BU6aaKAA==} 580 + 581 + '@shikijs/vscode-textmate@9.3.1': 582 + resolution: {integrity: sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==} 583 + 584 + '@types/cookie@0.6.0': 585 + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 586 + 587 + '@types/debug@4.1.12': 588 + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 589 + 590 + '@types/estree@1.0.6': 591 + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 592 + 593 + '@types/hast@3.0.4': 594 + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 595 + 596 + '@types/mdast@4.0.4': 597 + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 598 + 599 + '@types/ms@0.7.34': 600 + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 601 + 602 + '@types/nlcst@2.0.3': 603 + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 604 + 605 + '@types/unist@3.0.3': 606 + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 607 + 608 + '@ungap/structured-clone@1.2.1': 609 + resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} 610 + 611 + acorn@8.14.0: 612 + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 613 + engines: {node: '>=0.4.0'} 614 + hasBin: true 615 + 616 + ansi-align@3.0.1: 617 + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 618 + 619 + ansi-regex@5.0.1: 620 + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 621 + engines: {node: '>=8'} 622 + 623 + ansi-regex@6.1.0: 624 + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 625 + engines: {node: '>=12'} 626 + 627 + ansi-styles@6.2.1: 628 + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 629 + engines: {node: '>=12'} 630 + 631 + anymatch@3.1.3: 632 + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 633 + engines: {node: '>= 8'} 634 + 635 + argparse@1.0.10: 636 + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 637 + 638 + argparse@2.0.1: 639 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 640 + 641 + aria-query@5.3.2: 642 + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 643 + engines: {node: '>= 0.4'} 644 + 645 + array-iterate@2.0.1: 646 + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 647 + 648 + astro@5.1.1: 649 + resolution: {integrity: sha512-prpWC2PRs4P3FKQg6gZaU+VNMqbZi5pDvORGB2nrjfRjkrvF6/l4BqhvkJ6YQ0Ohm5rIMVz8ljgaRI77mLHbwg==} 650 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 651 + hasBin: true 652 + 653 + axobject-query@4.1.0: 654 + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 655 + engines: {node: '>= 0.4'} 656 + 657 + bail@2.0.2: 658 + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 659 + 660 + base-64@1.0.0: 661 + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 662 + 663 + binary-extensions@2.3.0: 664 + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 665 + engines: {node: '>=8'} 666 + 667 + boxen@8.0.1: 668 + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 669 + engines: {node: '>=18'} 670 + 671 + braces@3.0.3: 672 + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 673 + engines: {node: '>=8'} 674 + 675 + camelcase@8.0.0: 676 + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 677 + engines: {node: '>=16'} 678 + 679 + ccount@2.0.1: 680 + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 681 + 682 + chalk@5.4.1: 683 + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 684 + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 685 + 686 + character-entities-html4@2.1.0: 687 + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 688 + 689 + character-entities-legacy@3.0.0: 690 + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 691 + 692 + character-entities@2.0.2: 693 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 694 + 695 + chokidar@3.6.0: 696 + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 697 + engines: {node: '>= 8.10.0'} 698 + 699 + ci-info@4.1.0: 700 + resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} 701 + engines: {node: '>=8'} 702 + 703 + cli-boxes@3.0.0: 704 + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 705 + engines: {node: '>=10'} 706 + 707 + clsx@2.1.1: 708 + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 709 + engines: {node: '>=6'} 710 + 711 + color-convert@2.0.1: 712 + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 713 + engines: {node: '>=7.0.0'} 714 + 715 + color-name@1.1.4: 716 + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 717 + 718 + color-string@1.9.1: 719 + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 720 + 721 + color@4.2.3: 722 + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 723 + engines: {node: '>=12.5.0'} 724 + 725 + comma-separated-tokens@2.0.3: 726 + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 727 + 728 + common-ancestor-path@1.0.1: 729 + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 730 + 731 + consola@3.3.3: 732 + resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} 733 + engines: {node: ^14.18.0 || >=16.10.0} 734 + 735 + cookie-es@1.2.2: 736 + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 737 + 738 + cookie@0.7.2: 739 + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 740 + engines: {node: '>= 0.6'} 741 + 742 + crossws@0.3.1: 743 + resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==} 744 + 745 + cssesc@3.0.0: 746 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 747 + engines: {node: '>=4'} 748 + hasBin: true 749 + 750 + debug@4.4.0: 751 + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 752 + engines: {node: '>=6.0'} 753 + peerDependencies: 754 + supports-color: '*' 755 + peerDependenciesMeta: 756 + supports-color: 757 + optional: true 758 + 759 + decode-named-character-reference@1.0.2: 760 + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 761 + 762 + defu@6.1.4: 763 + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 764 + 765 + dequal@2.0.3: 766 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 767 + engines: {node: '>=6'} 768 + 769 + destr@2.0.3: 770 + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 771 + 772 + detect-libc@2.0.3: 773 + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 774 + engines: {node: '>=8'} 775 + 776 + deterministic-object-hash@2.0.2: 777 + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 778 + engines: {node: '>=18'} 779 + 780 + devalue@5.1.1: 781 + resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} 782 + 783 + devlop@1.1.0: 784 + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 785 + 786 + diff@5.2.0: 787 + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 788 + engines: {node: '>=0.3.1'} 789 + 790 + dlv@1.1.3: 791 + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 792 + 793 + dset@3.1.4: 794 + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 795 + engines: {node: '>=4'} 796 + 797 + emoji-regex-xs@1.0.0: 798 + resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} 799 + 800 + emoji-regex@10.4.0: 801 + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} 802 + 803 + emoji-regex@8.0.0: 804 + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 805 + 806 + entities@4.5.0: 807 + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 808 + engines: {node: '>=0.12'} 809 + 810 + es-module-lexer@1.6.0: 811 + resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} 812 + 813 + esbuild@0.21.5: 814 + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 815 + engines: {node: '>=12'} 816 + hasBin: true 817 + 818 + esbuild@0.24.2: 819 + resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} 820 + engines: {node: '>=18'} 821 + hasBin: true 822 + 823 + escape-string-regexp@5.0.0: 824 + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 825 + engines: {node: '>=12'} 826 + 827 + esprima@4.0.1: 828 + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 829 + engines: {node: '>=4'} 830 + hasBin: true 831 + 832 + estree-walker@2.0.2: 833 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 834 + 835 + estree-walker@3.0.3: 836 + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 837 + 838 + eventemitter3@5.0.1: 839 + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 840 + 841 + extend@3.0.2: 842 + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 843 + 844 + fast-glob@3.3.2: 845 + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 846 + engines: {node: '>=8.6.0'} 847 + 848 + fastq@1.18.0: 849 + resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} 850 + 851 + fill-range@7.1.1: 852 + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 853 + engines: {node: '>=8'} 854 + 855 + find-up-simple@1.0.0: 856 + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 857 + engines: {node: '>=18'} 858 + 859 + find-up@4.1.0: 860 + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 861 + engines: {node: '>=8'} 862 + 863 + find-yarn-workspace-root2@1.2.16: 864 + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} 865 + 866 + flattie@1.1.1: 867 + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 868 + engines: {node: '>=8'} 869 + 870 + fsevents@2.3.3: 871 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 872 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 873 + os: [darwin] 874 + 875 + get-east-asian-width@1.3.0: 876 + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} 877 + engines: {node: '>=18'} 878 + 879 + github-slugger@2.0.0: 880 + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 881 + 882 + glob-parent@5.1.2: 883 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 884 + engines: {node: '>= 6'} 885 + 886 + graceful-fs@4.2.11: 887 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 888 + 889 + h3@1.13.0: 890 + resolution: {integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==} 891 + 892 + hast-util-from-html@2.0.3: 893 + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 894 + 895 + hast-util-from-parse5@8.0.2: 896 + resolution: {integrity: sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==} 897 + 898 + hast-util-is-element@3.0.0: 899 + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 900 + 901 + hast-util-parse-selector@4.0.0: 902 + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 903 + 904 + hast-util-raw@9.1.0: 905 + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 906 + 907 + hast-util-to-html@9.0.4: 908 + resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==} 909 + 910 + hast-util-to-parse5@8.0.0: 911 + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 912 + 913 + hast-util-to-text@4.0.2: 914 + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 915 + 916 + hast-util-whitespace@3.0.0: 917 + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 918 + 919 + hastscript@9.0.0: 920 + resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==} 921 + 922 + html-escaper@3.0.3: 923 + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 924 + 925 + html-void-elements@3.0.0: 926 + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 927 + 928 + http-cache-semantics@4.1.1: 929 + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 930 + 931 + import-meta-resolve@4.1.0: 932 + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 933 + 934 + iron-webcrypto@1.2.1: 935 + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 936 + 937 + is-arrayish@0.3.2: 938 + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 939 + 940 + is-binary-path@2.1.0: 941 + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 942 + engines: {node: '>=8'} 943 + 944 + is-docker@3.0.0: 945 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 946 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 947 + hasBin: true 948 + 949 + is-extglob@2.1.1: 950 + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 951 + engines: {node: '>=0.10.0'} 952 + 953 + is-fullwidth-code-point@3.0.0: 954 + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 955 + engines: {node: '>=8'} 956 + 957 + is-glob@4.0.3: 958 + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 959 + engines: {node: '>=0.10.0'} 960 + 961 + is-inside-container@1.0.0: 962 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 963 + engines: {node: '>=14.16'} 964 + hasBin: true 965 + 966 + is-number@7.0.0: 967 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 968 + engines: {node: '>=0.12.0'} 969 + 970 + is-plain-obj@4.1.0: 971 + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 972 + engines: {node: '>=12'} 973 + 974 + is-wsl@3.1.0: 975 + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 976 + engines: {node: '>=16'} 977 + 978 + js-yaml@3.14.1: 979 + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 980 + hasBin: true 981 + 982 + js-yaml@4.1.0: 983 + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 984 + hasBin: true 985 + 986 + kleur@3.0.3: 987 + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 988 + engines: {node: '>=6'} 989 + 990 + kleur@4.1.5: 991 + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 992 + engines: {node: '>=6'} 993 + 994 + load-yaml-file@0.2.0: 995 + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} 996 + engines: {node: '>=6'} 997 + 998 + locate-path@5.0.0: 999 + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1000 + engines: {node: '>=8'} 1001 + 1002 + longest-streak@3.1.0: 1003 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1004 + 1005 + lru-cache@10.4.3: 1006 + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1007 + 1008 + magic-string@0.30.17: 1009 + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1010 + 1011 + magicast@0.3.5: 1012 + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 1013 + 1014 + markdown-table@3.0.4: 1015 + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 1016 + 1017 + mdast-util-definitions@6.0.0: 1018 + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 1019 + 1020 + mdast-util-find-and-replace@3.0.1: 1021 + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} 1022 + 1023 + mdast-util-from-markdown@2.0.2: 1024 + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 1025 + 1026 + mdast-util-gfm-autolink-literal@2.0.1: 1027 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1028 + 1029 + mdast-util-gfm-footnote@2.0.0: 1030 + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} 1031 + 1032 + mdast-util-gfm-strikethrough@2.0.0: 1033 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1034 + 1035 + mdast-util-gfm-table@2.0.0: 1036 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1037 + 1038 + mdast-util-gfm-task-list-item@2.0.0: 1039 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1040 + 1041 + mdast-util-gfm@3.0.0: 1042 + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} 1043 + 1044 + mdast-util-phrasing@4.1.0: 1045 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1046 + 1047 + mdast-util-to-hast@13.2.0: 1048 + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 1049 + 1050 + mdast-util-to-markdown@2.1.2: 1051 + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 1052 + 1053 + mdast-util-to-string@4.0.0: 1054 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 1055 + 1056 + merge2@1.4.1: 1057 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1058 + engines: {node: '>= 8'} 1059 + 1060 + micromark-core-commonmark@2.0.2: 1061 + resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} 1062 + 1063 + micromark-extension-gfm-autolink-literal@2.1.0: 1064 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 1065 + 1066 + micromark-extension-gfm-footnote@2.1.0: 1067 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 1068 + 1069 + micromark-extension-gfm-strikethrough@2.1.0: 1070 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 1071 + 1072 + micromark-extension-gfm-table@2.1.0: 1073 + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} 1074 + 1075 + micromark-extension-gfm-tagfilter@2.0.0: 1076 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 1077 + 1078 + micromark-extension-gfm-task-list-item@2.1.0: 1079 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 1080 + 1081 + micromark-extension-gfm@3.0.0: 1082 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 1083 + 1084 + micromark-factory-destination@2.0.1: 1085 + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 1086 + 1087 + micromark-factory-label@2.0.1: 1088 + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 1089 + 1090 + micromark-factory-space@2.0.1: 1091 + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 1092 + 1093 + micromark-factory-title@2.0.1: 1094 + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 1095 + 1096 + micromark-factory-whitespace@2.0.1: 1097 + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 1098 + 1099 + micromark-util-character@2.1.1: 1100 + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 1101 + 1102 + micromark-util-chunked@2.0.1: 1103 + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 1104 + 1105 + micromark-util-classify-character@2.0.1: 1106 + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 1107 + 1108 + micromark-util-combine-extensions@2.0.1: 1109 + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 1110 + 1111 + micromark-util-decode-numeric-character-reference@2.0.2: 1112 + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 1113 + 1114 + micromark-util-decode-string@2.0.1: 1115 + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 1116 + 1117 + micromark-util-encode@2.0.1: 1118 + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 1119 + 1120 + micromark-util-html-tag-name@2.0.1: 1121 + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 1122 + 1123 + micromark-util-normalize-identifier@2.0.1: 1124 + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 1125 + 1126 + micromark-util-resolve-all@2.0.1: 1127 + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 1128 + 1129 + micromark-util-sanitize-uri@2.0.1: 1130 + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 1131 + 1132 + micromark-util-subtokenize@2.0.3: 1133 + resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} 1134 + 1135 + micromark-util-symbol@2.0.1: 1136 + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 1137 + 1138 + micromark-util-types@2.0.1: 1139 + resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} 1140 + 1141 + micromark@4.0.1: 1142 + resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} 1143 + 1144 + micromatch@4.0.8: 1145 + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1146 + engines: {node: '>=8.6'} 1147 + 1148 + mime@3.0.0: 1149 + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 1150 + engines: {node: '>=10.0.0'} 1151 + hasBin: true 1152 + 1153 + mrmime@2.0.0: 1154 + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 1155 + engines: {node: '>=10'} 1156 + 1157 + ms@2.1.3: 1158 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1159 + 1160 + nanoid@3.3.8: 1161 + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1162 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1163 + hasBin: true 1164 + 1165 + neotraverse@0.6.18: 1166 + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 1167 + engines: {node: '>= 10'} 1168 + 1169 + nlcst-to-string@4.0.0: 1170 + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 1171 + 1172 + node-fetch-native@1.6.4: 1173 + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} 1174 + 1175 + normalize-path@3.0.0: 1176 + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1177 + engines: {node: '>=0.10.0'} 1178 + 1179 + ofetch@1.4.1: 1180 + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 1181 + 1182 + ohash@1.1.4: 1183 + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} 1184 + 1185 + oniguruma-to-es@0.8.1: 1186 + resolution: {integrity: sha512-dekySTEvCxCj0IgKcA2uUCO/e4ArsqpucDPcX26w9ajx+DvMWLc5eZeJaRQkd7oC/+rwif5gnT900tA34uN9Zw==} 1187 + 1188 + p-limit@2.3.0: 1189 + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1190 + engines: {node: '>=6'} 1191 + 1192 + p-limit@6.2.0: 1193 + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 1194 + engines: {node: '>=18'} 1195 + 1196 + p-locate@4.1.0: 1197 + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1198 + engines: {node: '>=8'} 1199 + 1200 + p-queue@8.0.1: 1201 + resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} 1202 + engines: {node: '>=18'} 1203 + 1204 + p-timeout@6.1.3: 1205 + resolution: {integrity: sha512-UJUyfKbwvr/uZSV6btANfb+0t/mOhKV/KXcCUTp8FcQI+v/0d+wXqH4htrW0E4rR6WiEO/EPvUFiV9D5OI4vlw==} 1206 + engines: {node: '>=14.16'} 1207 + 1208 + p-try@2.2.0: 1209 + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1210 + engines: {node: '>=6'} 1211 + 1212 + parse-latin@7.0.0: 1213 + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 1214 + 1215 + parse5@7.2.1: 1216 + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} 1217 + 1218 + path-exists@4.0.0: 1219 + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1220 + engines: {node: '>=8'} 1221 + 1222 + pathe@1.1.2: 1223 + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 1224 + 1225 + picocolors@1.1.1: 1226 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1227 + 1228 + picomatch@2.3.1: 1229 + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1230 + engines: {node: '>=8.6'} 1231 + 1232 + picomatch@4.0.2: 1233 + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1234 + engines: {node: '>=12'} 1235 + 1236 + pify@4.0.1: 1237 + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 1238 + engines: {node: '>=6'} 1239 + 1240 + pkg-dir@4.2.0: 1241 + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 1242 + engines: {node: '>=8'} 1243 + 1244 + postcss@8.4.49: 1245 + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} 1246 + engines: {node: ^10 || ^12 || >=14} 1247 + 1248 + preferred-pm@4.0.0: 1249 + resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} 1250 + engines: {node: '>=18.12'} 1251 + 1252 + prismjs@1.29.0: 1253 + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} 1254 + engines: {node: '>=6'} 1255 + 1256 + prompts@2.4.2: 1257 + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 1258 + engines: {node: '>= 6'} 1259 + 1260 + property-information@6.5.0: 1261 + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 1262 + 1263 + queue-microtask@1.2.3: 1264 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1265 + 1266 + radix3@1.1.2: 1267 + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 1268 + 1269 + readdirp@3.6.0: 1270 + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1271 + engines: {node: '>=8.10.0'} 1272 + 1273 + regex-recursion@5.1.1: 1274 + resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==} 1275 + 1276 + regex-utilities@2.3.0: 1277 + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 1278 + 1279 + regex@5.1.1: 1280 + resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==} 1281 + 1282 + rehype-parse@9.0.1: 1283 + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 1284 + 1285 + rehype-raw@7.0.0: 1286 + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 1287 + 1288 + rehype-stringify@10.0.1: 1289 + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 1290 + 1291 + rehype@13.0.2: 1292 + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 1293 + 1294 + remark-gfm@4.0.0: 1295 + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} 1296 + 1297 + remark-parse@11.0.0: 1298 + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 1299 + 1300 + remark-rehype@11.1.1: 1301 + resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} 1302 + 1303 + remark-smartypants@3.0.2: 1304 + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 1305 + engines: {node: '>=16.0.0'} 1306 + 1307 + remark-stringify@11.0.0: 1308 + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 1309 + 1310 + retext-latin@4.0.0: 1311 + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 1312 + 1313 + retext-smartypants@6.2.0: 1314 + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 1315 + 1316 + retext-stringify@4.0.0: 1317 + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 1318 + 1319 + retext@9.0.0: 1320 + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 1321 + 1322 + reusify@1.0.4: 1323 + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1324 + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1325 + 1326 + rollup@4.29.1: 1327 + resolution: {integrity: sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==} 1328 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1329 + hasBin: true 1330 + 1331 + run-parallel@1.2.0: 1332 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1333 + 1334 + semver@7.6.3: 1335 + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1336 + engines: {node: '>=10'} 1337 + hasBin: true 1338 + 1339 + sharp@0.33.5: 1340 + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1341 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1342 + 1343 + shiki@1.24.4: 1344 + resolution: {integrity: sha512-aVGSFAOAr1v26Hh/+GBIsRVDWJ583XYV7CuNURKRWh9gpGv4OdbisZGq96B9arMYTZhTQkmRF5BrShOSTvNqhw==} 1345 + 1346 + simple-swizzle@0.2.2: 1347 + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1348 + 1349 + sisteransi@1.0.5: 1350 + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1351 + 1352 + source-map-js@1.2.1: 1353 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1354 + engines: {node: '>=0.10.0'} 1355 + 1356 + space-separated-tokens@2.0.2: 1357 + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 1358 + 1359 + sprintf-js@1.0.3: 1360 + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 1361 + 1362 + string-width@4.2.3: 1363 + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1364 + engines: {node: '>=8'} 1365 + 1366 + string-width@7.2.0: 1367 + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 1368 + engines: {node: '>=18'} 1369 + 1370 + stringify-entities@4.0.4: 1371 + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1372 + 1373 + strip-ansi@6.0.1: 1374 + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1375 + engines: {node: '>=8'} 1376 + 1377 + strip-ansi@7.1.0: 1378 + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1379 + engines: {node: '>=12'} 1380 + 1381 + strip-bom@3.0.0: 1382 + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1383 + engines: {node: '>=4'} 1384 + 1385 + tinyexec@0.3.1: 1386 + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} 1387 + 1388 + to-regex-range@5.0.1: 1389 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1390 + engines: {node: '>=8.0'} 1391 + 1392 + trim-lines@3.0.1: 1393 + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1394 + 1395 + trough@2.2.0: 1396 + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 1397 + 1398 + tsconfck@3.1.4: 1399 + resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} 1400 + engines: {node: ^18 || >=20} 1401 + hasBin: true 1402 + peerDependencies: 1403 + typescript: ^5.0.0 1404 + peerDependenciesMeta: 1405 + typescript: 1406 + optional: true 1407 + 1408 + tslib@2.8.1: 1409 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1410 + 1411 + type-fest@4.31.0: 1412 + resolution: {integrity: sha512-yCxltHW07Nkhv/1F6wWBr8kz+5BGMfP+RbRSYFnegVb0qV/UMT0G0ElBloPVerqn4M2ZV80Ir1FtCcYv1cT6vQ==} 1413 + engines: {node: '>=16'} 1414 + 1415 + typescript@5.7.2: 1416 + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} 1417 + engines: {node: '>=14.17'} 1418 + hasBin: true 1419 + 1420 + ufo@1.5.4: 1421 + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 1422 + 1423 + ultrahtml@1.5.3: 1424 + resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} 1425 + 1426 + uncrypto@0.1.3: 1427 + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 1428 + 1429 + unenv@1.10.0: 1430 + resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} 1431 + 1432 + unified@11.0.5: 1433 + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 1434 + 1435 + unist-util-find-after@5.0.0: 1436 + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 1437 + 1438 + unist-util-is@6.0.0: 1439 + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 1440 + 1441 + unist-util-modify-children@4.0.0: 1442 + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 1443 + 1444 + unist-util-position@5.0.0: 1445 + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 1446 + 1447 + unist-util-remove-position@5.0.0: 1448 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 1449 + 1450 + unist-util-stringify-position@4.0.0: 1451 + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1452 + 1453 + unist-util-visit-children@3.0.0: 1454 + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 1455 + 1456 + unist-util-visit-parents@6.0.1: 1457 + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 1458 + 1459 + unist-util-visit@5.0.0: 1460 + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1461 + 1462 + unstorage@1.14.4: 1463 + resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==} 1464 + peerDependencies: 1465 + '@azure/app-configuration': ^1.8.0 1466 + '@azure/cosmos': ^4.2.0 1467 + '@azure/data-tables': ^13.3.0 1468 + '@azure/identity': ^4.5.0 1469 + '@azure/keyvault-secrets': ^4.9.0 1470 + '@azure/storage-blob': ^12.26.0 1471 + '@capacitor/preferences': ^6.0.3 1472 + '@deno/kv': '>=0.8.4' 1473 + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 1474 + '@planetscale/database': ^1.19.0 1475 + '@upstash/redis': ^1.34.3 1476 + '@vercel/blob': '>=0.27.0' 1477 + '@vercel/kv': ^1.0.1 1478 + aws4fetch: ^1.0.20 1479 + db0: '>=0.2.1' 1480 + idb-keyval: ^6.2.1 1481 + ioredis: ^5.4.2 1482 + uploadthing: ^7.4.1 1483 + peerDependenciesMeta: 1484 + '@azure/app-configuration': 1485 + optional: true 1486 + '@azure/cosmos': 1487 + optional: true 1488 + '@azure/data-tables': 1489 + optional: true 1490 + '@azure/identity': 1491 + optional: true 1492 + '@azure/keyvault-secrets': 1493 + optional: true 1494 + '@azure/storage-blob': 1495 + optional: true 1496 + '@capacitor/preferences': 1497 + optional: true 1498 + '@deno/kv': 1499 + optional: true 1500 + '@netlify/blobs': 1501 + optional: true 1502 + '@planetscale/database': 1503 + optional: true 1504 + '@upstash/redis': 1505 + optional: true 1506 + '@vercel/blob': 1507 + optional: true 1508 + '@vercel/kv': 1509 + optional: true 1510 + aws4fetch: 1511 + optional: true 1512 + db0: 1513 + optional: true 1514 + idb-keyval: 1515 + optional: true 1516 + ioredis: 1517 + optional: true 1518 + uploadthing: 1519 + optional: true 1520 + 1521 + vfile-location@5.0.3: 1522 + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 1523 + 1524 + vfile-message@4.0.2: 1525 + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} 1526 + 1527 + vfile@6.0.3: 1528 + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 1529 + 1530 + vite@6.0.6: 1531 + resolution: {integrity: sha512-NSjmUuckPmDU18bHz7QZ+bTYhRR0iA72cs2QAxCqDpafJ0S6qetco0LB3WW2OxlMHS0JmAv+yZ/R3uPmMyGTjQ==} 1532 + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1533 + hasBin: true 1534 + peerDependencies: 1535 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1536 + jiti: '>=1.21.0' 1537 + less: '*' 1538 + lightningcss: ^1.21.0 1539 + sass: '*' 1540 + sass-embedded: '*' 1541 + stylus: '*' 1542 + sugarss: '*' 1543 + terser: ^5.16.0 1544 + tsx: ^4.8.1 1545 + yaml: ^2.4.2 1546 + peerDependenciesMeta: 1547 + '@types/node': 1548 + optional: true 1549 + jiti: 1550 + optional: true 1551 + less: 1552 + optional: true 1553 + lightningcss: 1554 + optional: true 1555 + sass: 1556 + optional: true 1557 + sass-embedded: 1558 + optional: true 1559 + stylus: 1560 + optional: true 1561 + sugarss: 1562 + optional: true 1563 + terser: 1564 + optional: true 1565 + tsx: 1566 + optional: true 1567 + yaml: 1568 + optional: true 1569 + 1570 + vitefu@1.0.4: 1571 + resolution: {integrity: sha512-y6zEE3PQf6uu/Mt6DTJ9ih+kyJLr4XcSgHR2zUkM8SWDhuixEJxfJ6CZGMHh1Ec3vPLoEA0IHU5oWzVqw8ulow==} 1572 + peerDependencies: 1573 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 1574 + peerDependenciesMeta: 1575 + vite: 1576 + optional: true 1577 + 1578 + web-namespaces@2.0.1: 1579 + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 1580 + 1581 + which-pm-runs@1.1.0: 1582 + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 1583 + engines: {node: '>=4'} 1584 + 1585 + which-pm@3.0.0: 1586 + resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} 1587 + engines: {node: '>=18.12'} 1588 + 1589 + widest-line@5.0.0: 1590 + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 1591 + engines: {node: '>=18'} 1592 + 1593 + wrap-ansi@9.0.0: 1594 + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 1595 + engines: {node: '>=18'} 1596 + 1597 + xxhash-wasm@1.1.0: 1598 + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 1599 + 1600 + yargs-parser@21.1.1: 1601 + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1602 + engines: {node: '>=12'} 1603 + 1604 + yocto-queue@1.1.1: 1605 + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} 1606 + engines: {node: '>=12.20'} 1607 + 1608 + yocto-spinner@0.1.2: 1609 + resolution: {integrity: sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==} 1610 + engines: {node: '>=18.19'} 1611 + 1612 + yoctocolors@2.1.1: 1613 + resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==} 1614 + engines: {node: '>=18'} 1615 + 1616 + zod-to-json-schema@3.24.1: 1617 + resolution: {integrity: sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==} 1618 + peerDependencies: 1619 + zod: ^3.24.1 1620 + 1621 + zod-to-ts@1.2.0: 1622 + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 1623 + peerDependencies: 1624 + typescript: ^4.9.4 || ^5.0.2 1625 + zod: ^3 1626 + 1627 + zod@3.24.1: 1628 + resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} 1629 + 1630 + zwitch@2.0.4: 1631 + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 1632 + 1633 + snapshots: 1634 + 1635 + '@astrojs/compiler@2.10.3': {} 1636 + 1637 + '@astrojs/internal-helpers@0.4.2': {} 1638 + 1639 + '@astrojs/markdown-remark@6.0.1': 1640 + dependencies: 1641 + '@astrojs/prism': 3.2.0 1642 + github-slugger: 2.0.0 1643 + hast-util-from-html: 2.0.3 1644 + hast-util-to-text: 4.0.2 1645 + import-meta-resolve: 4.1.0 1646 + js-yaml: 4.1.0 1647 + mdast-util-definitions: 6.0.0 1648 + rehype-raw: 7.0.0 1649 + rehype-stringify: 10.0.1 1650 + remark-gfm: 4.0.0 1651 + remark-parse: 11.0.0 1652 + remark-rehype: 11.1.1 1653 + remark-smartypants: 3.0.2 1654 + shiki: 1.24.4 1655 + unified: 11.0.5 1656 + unist-util-remove-position: 5.0.0 1657 + unist-util-visit: 5.0.0 1658 + unist-util-visit-parents: 6.0.1 1659 + vfile: 6.0.3 1660 + transitivePeerDependencies: 1661 + - supports-color 1662 + 1663 + '@astrojs/prism@3.2.0': 1664 + dependencies: 1665 + prismjs: 1.29.0 1666 + 1667 + '@astrojs/telemetry@3.2.0': 1668 + dependencies: 1669 + ci-info: 4.1.0 1670 + debug: 4.4.0 1671 + dlv: 1.1.3 1672 + dset: 3.1.4 1673 + is-docker: 3.0.0 1674 + is-wsl: 3.1.0 1675 + which-pm-runs: 1.1.0 1676 + transitivePeerDependencies: 1677 + - supports-color 1678 + 1679 + '@babel/helper-string-parser@7.25.9': {} 1680 + 1681 + '@babel/helper-validator-identifier@7.25.9': {} 1682 + 1683 + '@babel/parser@7.26.3': 1684 + dependencies: 1685 + '@babel/types': 7.26.3 1686 + 1687 + '@babel/types@7.26.3': 1688 + dependencies: 1689 + '@babel/helper-string-parser': 7.25.9 1690 + '@babel/helper-validator-identifier': 7.25.9 1691 + 1692 + '@emnapi/runtime@1.3.1': 1693 + dependencies: 1694 + tslib: 2.8.1 1695 + optional: true 1696 + 1697 + '@esbuild/aix-ppc64@0.21.5': 1698 + optional: true 1699 + 1700 + '@esbuild/aix-ppc64@0.24.2': 1701 + optional: true 1702 + 1703 + '@esbuild/android-arm64@0.21.5': 1704 + optional: true 1705 + 1706 + '@esbuild/android-arm64@0.24.2': 1707 + optional: true 1708 + 1709 + '@esbuild/android-arm@0.21.5': 1710 + optional: true 1711 + 1712 + '@esbuild/android-arm@0.24.2': 1713 + optional: true 1714 + 1715 + '@esbuild/android-x64@0.21.5': 1716 + optional: true 1717 + 1718 + '@esbuild/android-x64@0.24.2': 1719 + optional: true 1720 + 1721 + '@esbuild/darwin-arm64@0.21.5': 1722 + optional: true 1723 + 1724 + '@esbuild/darwin-arm64@0.24.2': 1725 + optional: true 1726 + 1727 + '@esbuild/darwin-x64@0.21.5': 1728 + optional: true 1729 + 1730 + '@esbuild/darwin-x64@0.24.2': 1731 + optional: true 1732 + 1733 + '@esbuild/freebsd-arm64@0.21.5': 1734 + optional: true 1735 + 1736 + '@esbuild/freebsd-arm64@0.24.2': 1737 + optional: true 1738 + 1739 + '@esbuild/freebsd-x64@0.21.5': 1740 + optional: true 1741 + 1742 + '@esbuild/freebsd-x64@0.24.2': 1743 + optional: true 1744 + 1745 + '@esbuild/linux-arm64@0.21.5': 1746 + optional: true 1747 + 1748 + '@esbuild/linux-arm64@0.24.2': 1749 + optional: true 1750 + 1751 + '@esbuild/linux-arm@0.21.5': 1752 + optional: true 1753 + 1754 + '@esbuild/linux-arm@0.24.2': 1755 + optional: true 1756 + 1757 + '@esbuild/linux-ia32@0.21.5': 1758 + optional: true 1759 + 1760 + '@esbuild/linux-ia32@0.24.2': 1761 + optional: true 1762 + 1763 + '@esbuild/linux-loong64@0.21.5': 1764 + optional: true 1765 + 1766 + '@esbuild/linux-loong64@0.24.2': 1767 + optional: true 1768 + 1769 + '@esbuild/linux-mips64el@0.21.5': 1770 + optional: true 1771 + 1772 + '@esbuild/linux-mips64el@0.24.2': 1773 + optional: true 1774 + 1775 + '@esbuild/linux-ppc64@0.21.5': 1776 + optional: true 1777 + 1778 + '@esbuild/linux-ppc64@0.24.2': 1779 + optional: true 1780 + 1781 + '@esbuild/linux-riscv64@0.21.5': 1782 + optional: true 1783 + 1784 + '@esbuild/linux-riscv64@0.24.2': 1785 + optional: true 1786 + 1787 + '@esbuild/linux-s390x@0.21.5': 1788 + optional: true 1789 + 1790 + '@esbuild/linux-s390x@0.24.2': 1791 + optional: true 1792 + 1793 + '@esbuild/linux-x64@0.21.5': 1794 + optional: true 1795 + 1796 + '@esbuild/linux-x64@0.24.2': 1797 + optional: true 1798 + 1799 + '@esbuild/netbsd-arm64@0.24.2': 1800 + optional: true 1801 + 1802 + '@esbuild/netbsd-x64@0.21.5': 1803 + optional: true 1804 + 1805 + '@esbuild/netbsd-x64@0.24.2': 1806 + optional: true 1807 + 1808 + '@esbuild/openbsd-arm64@0.24.2': 1809 + optional: true 1810 + 1811 + '@esbuild/openbsd-x64@0.21.5': 1812 + optional: true 1813 + 1814 + '@esbuild/openbsd-x64@0.24.2': 1815 + optional: true 1816 + 1817 + '@esbuild/sunos-x64@0.21.5': 1818 + optional: true 1819 + 1820 + '@esbuild/sunos-x64@0.24.2': 1821 + optional: true 1822 + 1823 + '@esbuild/win32-arm64@0.21.5': 1824 + optional: true 1825 + 1826 + '@esbuild/win32-arm64@0.24.2': 1827 + optional: true 1828 + 1829 + '@esbuild/win32-ia32@0.21.5': 1830 + optional: true 1831 + 1832 + '@esbuild/win32-ia32@0.24.2': 1833 + optional: true 1834 + 1835 + '@esbuild/win32-x64@0.21.5': 1836 + optional: true 1837 + 1838 + '@esbuild/win32-x64@0.24.2': 1839 + optional: true 1840 + 1841 + '@img/sharp-darwin-arm64@0.33.5': 1842 + optionalDependencies: 1843 + '@img/sharp-libvips-darwin-arm64': 1.0.4 1844 + optional: true 1845 + 1846 + '@img/sharp-darwin-x64@0.33.5': 1847 + optionalDependencies: 1848 + '@img/sharp-libvips-darwin-x64': 1.0.4 1849 + optional: true 1850 + 1851 + '@img/sharp-libvips-darwin-arm64@1.0.4': 1852 + optional: true 1853 + 1854 + '@img/sharp-libvips-darwin-x64@1.0.4': 1855 + optional: true 1856 + 1857 + '@img/sharp-libvips-linux-arm64@1.0.4': 1858 + optional: true 1859 + 1860 + '@img/sharp-libvips-linux-arm@1.0.5': 1861 + optional: true 1862 + 1863 + '@img/sharp-libvips-linux-s390x@1.0.4': 1864 + optional: true 1865 + 1866 + '@img/sharp-libvips-linux-x64@1.0.4': 1867 + optional: true 1868 + 1869 + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 1870 + optional: true 1871 + 1872 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': 1873 + optional: true 1874 + 1875 + '@img/sharp-linux-arm64@0.33.5': 1876 + optionalDependencies: 1877 + '@img/sharp-libvips-linux-arm64': 1.0.4 1878 + optional: true 1879 + 1880 + '@img/sharp-linux-arm@0.33.5': 1881 + optionalDependencies: 1882 + '@img/sharp-libvips-linux-arm': 1.0.5 1883 + optional: true 1884 + 1885 + '@img/sharp-linux-s390x@0.33.5': 1886 + optionalDependencies: 1887 + '@img/sharp-libvips-linux-s390x': 1.0.4 1888 + optional: true 1889 + 1890 + '@img/sharp-linux-x64@0.33.5': 1891 + optionalDependencies: 1892 + '@img/sharp-libvips-linux-x64': 1.0.4 1893 + optional: true 1894 + 1895 + '@img/sharp-linuxmusl-arm64@0.33.5': 1896 + optionalDependencies: 1897 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 1898 + optional: true 1899 + 1900 + '@img/sharp-linuxmusl-x64@0.33.5': 1901 + optionalDependencies: 1902 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 1903 + optional: true 1904 + 1905 + '@img/sharp-wasm32@0.33.5': 1906 + dependencies: 1907 + '@emnapi/runtime': 1.3.1 1908 + optional: true 1909 + 1910 + '@img/sharp-win32-ia32@0.33.5': 1911 + optional: true 1912 + 1913 + '@img/sharp-win32-x64@0.33.5': 1914 + optional: true 1915 + 1916 + '@jridgewell/sourcemap-codec@1.5.0': {} 1917 + 1918 + '@nodelib/fs.scandir@2.1.5': 1919 + dependencies: 1920 + '@nodelib/fs.stat': 2.0.5 1921 + run-parallel: 1.2.0 1922 + 1923 + '@nodelib/fs.stat@2.0.5': {} 1924 + 1925 + '@nodelib/fs.walk@1.2.8': 1926 + dependencies: 1927 + '@nodelib/fs.scandir': 2.1.5 1928 + fastq: 1.18.0 1929 + 1930 + '@oslojs/encoding@1.1.0': {} 1931 + 1932 + '@rollup/pluginutils@5.1.4(rollup@4.29.1)': 1933 + dependencies: 1934 + '@types/estree': 1.0.6 1935 + estree-walker: 2.0.2 1936 + picomatch: 4.0.2 1937 + optionalDependencies: 1938 + rollup: 4.29.1 1939 + 1940 + '@rollup/rollup-android-arm-eabi@4.29.1': 1941 + optional: true 1942 + 1943 + '@rollup/rollup-android-arm64@4.29.1': 1944 + optional: true 1945 + 1946 + '@rollup/rollup-darwin-arm64@4.29.1': 1947 + optional: true 1948 + 1949 + '@rollup/rollup-darwin-x64@4.29.1': 1950 + optional: true 1951 + 1952 + '@rollup/rollup-freebsd-arm64@4.29.1': 1953 + optional: true 1954 + 1955 + '@rollup/rollup-freebsd-x64@4.29.1': 1956 + optional: true 1957 + 1958 + '@rollup/rollup-linux-arm-gnueabihf@4.29.1': 1959 + optional: true 1960 + 1961 + '@rollup/rollup-linux-arm-musleabihf@4.29.1': 1962 + optional: true 1963 + 1964 + '@rollup/rollup-linux-arm64-gnu@4.29.1': 1965 + optional: true 1966 + 1967 + '@rollup/rollup-linux-arm64-musl@4.29.1': 1968 + optional: true 1969 + 1970 + '@rollup/rollup-linux-loongarch64-gnu@4.29.1': 1971 + optional: true 1972 + 1973 + '@rollup/rollup-linux-powerpc64le-gnu@4.29.1': 1974 + optional: true 1975 + 1976 + '@rollup/rollup-linux-riscv64-gnu@4.29.1': 1977 + optional: true 1978 + 1979 + '@rollup/rollup-linux-s390x-gnu@4.29.1': 1980 + optional: true 1981 + 1982 + '@rollup/rollup-linux-x64-gnu@4.29.1': 1983 + optional: true 1984 + 1985 + '@rollup/rollup-linux-x64-musl@4.29.1': 1986 + optional: true 1987 + 1988 + '@rollup/rollup-win32-arm64-msvc@4.29.1': 1989 + optional: true 1990 + 1991 + '@rollup/rollup-win32-ia32-msvc@4.29.1': 1992 + optional: true 1993 + 1994 + '@rollup/rollup-win32-x64-msvc@4.29.1': 1995 + optional: true 1996 + 1997 + '@shikijs/core@1.24.4': 1998 + dependencies: 1999 + '@shikijs/engine-javascript': 1.24.4 2000 + '@shikijs/engine-oniguruma': 1.24.4 2001 + '@shikijs/types': 1.24.4 2002 + '@shikijs/vscode-textmate': 9.3.1 2003 + '@types/hast': 3.0.4 2004 + hast-util-to-html: 9.0.4 2005 + 2006 + '@shikijs/engine-javascript@1.24.4': 2007 + dependencies: 2008 + '@shikijs/types': 1.24.4 2009 + '@shikijs/vscode-textmate': 9.3.1 2010 + oniguruma-to-es: 0.8.1 2011 + 2012 + '@shikijs/engine-oniguruma@1.24.4': 2013 + dependencies: 2014 + '@shikijs/types': 1.24.4 2015 + '@shikijs/vscode-textmate': 9.3.1 2016 + 2017 + '@shikijs/types@1.24.4': 2018 + dependencies: 2019 + '@shikijs/vscode-textmate': 9.3.1 2020 + '@types/hast': 3.0.4 2021 + 2022 + '@shikijs/vscode-textmate@9.3.1': {} 2023 + 2024 + '@types/cookie@0.6.0': {} 2025 + 2026 + '@types/debug@4.1.12': 2027 + dependencies: 2028 + '@types/ms': 0.7.34 2029 + 2030 + '@types/estree@1.0.6': {} 2031 + 2032 + '@types/hast@3.0.4': 2033 + dependencies: 2034 + '@types/unist': 3.0.3 2035 + 2036 + '@types/mdast@4.0.4': 2037 + dependencies: 2038 + '@types/unist': 3.0.3 2039 + 2040 + '@types/ms@0.7.34': {} 2041 + 2042 + '@types/nlcst@2.0.3': 2043 + dependencies: 2044 + '@types/unist': 3.0.3 2045 + 2046 + '@types/unist@3.0.3': {} 2047 + 2048 + '@ungap/structured-clone@1.2.1': {} 2049 + 2050 + acorn@8.14.0: {} 2051 + 2052 + ansi-align@3.0.1: 2053 + dependencies: 2054 + string-width: 4.2.3 2055 + 2056 + ansi-regex@5.0.1: {} 2057 + 2058 + ansi-regex@6.1.0: {} 2059 + 2060 + ansi-styles@6.2.1: {} 2061 + 2062 + anymatch@3.1.3: 2063 + dependencies: 2064 + normalize-path: 3.0.0 2065 + picomatch: 2.3.1 2066 + 2067 + argparse@1.0.10: 2068 + dependencies: 2069 + sprintf-js: 1.0.3 2070 + 2071 + argparse@2.0.1: {} 2072 + 2073 + aria-query@5.3.2: {} 2074 + 2075 + array-iterate@2.0.1: {} 2076 + 2077 + astro@5.1.1(rollup@4.29.1)(typescript@5.7.2): 2078 + dependencies: 2079 + '@astrojs/compiler': 2.10.3 2080 + '@astrojs/internal-helpers': 0.4.2 2081 + '@astrojs/markdown-remark': 6.0.1 2082 + '@astrojs/telemetry': 3.2.0 2083 + '@oslojs/encoding': 1.1.0 2084 + '@rollup/pluginutils': 5.1.4(rollup@4.29.1) 2085 + '@types/cookie': 0.6.0 2086 + acorn: 8.14.0 2087 + aria-query: 5.3.2 2088 + axobject-query: 4.1.0 2089 + boxen: 8.0.1 2090 + ci-info: 4.1.0 2091 + clsx: 2.1.1 2092 + common-ancestor-path: 1.0.1 2093 + cookie: 0.7.2 2094 + cssesc: 3.0.0 2095 + debug: 4.4.0 2096 + deterministic-object-hash: 2.0.2 2097 + devalue: 5.1.1 2098 + diff: 5.2.0 2099 + dlv: 1.1.3 2100 + dset: 3.1.4 2101 + es-module-lexer: 1.6.0 2102 + esbuild: 0.21.5 2103 + estree-walker: 3.0.3 2104 + fast-glob: 3.3.2 2105 + flattie: 1.1.1 2106 + github-slugger: 2.0.0 2107 + html-escaper: 3.0.3 2108 + http-cache-semantics: 4.1.1 2109 + js-yaml: 4.1.0 2110 + kleur: 4.1.5 2111 + magic-string: 0.30.17 2112 + magicast: 0.3.5 2113 + micromatch: 4.0.8 2114 + mrmime: 2.0.0 2115 + neotraverse: 0.6.18 2116 + p-limit: 6.2.0 2117 + p-queue: 8.0.1 2118 + preferred-pm: 4.0.0 2119 + prompts: 2.4.2 2120 + rehype: 13.0.2 2121 + semver: 7.6.3 2122 + shiki: 1.24.4 2123 + tinyexec: 0.3.1 2124 + tsconfck: 3.1.4(typescript@5.7.2) 2125 + ultrahtml: 1.5.3 2126 + unist-util-visit: 5.0.0 2127 + unstorage: 1.14.4 2128 + vfile: 6.0.3 2129 + vite: 6.0.6 2130 + vitefu: 1.0.4(vite@6.0.6) 2131 + which-pm: 3.0.0 2132 + xxhash-wasm: 1.1.0 2133 + yargs-parser: 21.1.1 2134 + yocto-spinner: 0.1.2 2135 + zod: 3.24.1 2136 + zod-to-json-schema: 3.24.1(zod@3.24.1) 2137 + zod-to-ts: 1.2.0(typescript@5.7.2)(zod@3.24.1) 2138 + optionalDependencies: 2139 + sharp: 0.33.5 2140 + transitivePeerDependencies: 2141 + - '@azure/app-configuration' 2142 + - '@azure/cosmos' 2143 + - '@azure/data-tables' 2144 + - '@azure/identity' 2145 + - '@azure/keyvault-secrets' 2146 + - '@azure/storage-blob' 2147 + - '@capacitor/preferences' 2148 + - '@deno/kv' 2149 + - '@netlify/blobs' 2150 + - '@planetscale/database' 2151 + - '@types/node' 2152 + - '@upstash/redis' 2153 + - '@vercel/blob' 2154 + - '@vercel/kv' 2155 + - aws4fetch 2156 + - db0 2157 + - idb-keyval 2158 + - ioredis 2159 + - jiti 2160 + - less 2161 + - lightningcss 2162 + - rollup 2163 + - sass 2164 + - sass-embedded 2165 + - stylus 2166 + - sugarss 2167 + - supports-color 2168 + - terser 2169 + - tsx 2170 + - typescript 2171 + - uploadthing 2172 + - yaml 2173 + 2174 + axobject-query@4.1.0: {} 2175 + 2176 + bail@2.0.2: {} 2177 + 2178 + base-64@1.0.0: {} 2179 + 2180 + binary-extensions@2.3.0: {} 2181 + 2182 + boxen@8.0.1: 2183 + dependencies: 2184 + ansi-align: 3.0.1 2185 + camelcase: 8.0.0 2186 + chalk: 5.4.1 2187 + cli-boxes: 3.0.0 2188 + string-width: 7.2.0 2189 + type-fest: 4.31.0 2190 + widest-line: 5.0.0 2191 + wrap-ansi: 9.0.0 2192 + 2193 + braces@3.0.3: 2194 + dependencies: 2195 + fill-range: 7.1.1 2196 + 2197 + camelcase@8.0.0: {} 2198 + 2199 + ccount@2.0.1: {} 2200 + 2201 + chalk@5.4.1: {} 2202 + 2203 + character-entities-html4@2.1.0: {} 2204 + 2205 + character-entities-legacy@3.0.0: {} 2206 + 2207 + character-entities@2.0.2: {} 2208 + 2209 + chokidar@3.6.0: 2210 + dependencies: 2211 + anymatch: 3.1.3 2212 + braces: 3.0.3 2213 + glob-parent: 5.1.2 2214 + is-binary-path: 2.1.0 2215 + is-glob: 4.0.3 2216 + normalize-path: 3.0.0 2217 + readdirp: 3.6.0 2218 + optionalDependencies: 2219 + fsevents: 2.3.3 2220 + 2221 + ci-info@4.1.0: {} 2222 + 2223 + cli-boxes@3.0.0: {} 2224 + 2225 + clsx@2.1.1: {} 2226 + 2227 + color-convert@2.0.1: 2228 + dependencies: 2229 + color-name: 1.1.4 2230 + optional: true 2231 + 2232 + color-name@1.1.4: 2233 + optional: true 2234 + 2235 + color-string@1.9.1: 2236 + dependencies: 2237 + color-name: 1.1.4 2238 + simple-swizzle: 0.2.2 2239 + optional: true 2240 + 2241 + color@4.2.3: 2242 + dependencies: 2243 + color-convert: 2.0.1 2244 + color-string: 1.9.1 2245 + optional: true 2246 + 2247 + comma-separated-tokens@2.0.3: {} 2248 + 2249 + common-ancestor-path@1.0.1: {} 2250 + 2251 + consola@3.3.3: {} 2252 + 2253 + cookie-es@1.2.2: {} 2254 + 2255 + cookie@0.7.2: {} 2256 + 2257 + crossws@0.3.1: 2258 + dependencies: 2259 + uncrypto: 0.1.3 2260 + 2261 + cssesc@3.0.0: {} 2262 + 2263 + debug@4.4.0: 2264 + dependencies: 2265 + ms: 2.1.3 2266 + 2267 + decode-named-character-reference@1.0.2: 2268 + dependencies: 2269 + character-entities: 2.0.2 2270 + 2271 + defu@6.1.4: {} 2272 + 2273 + dequal@2.0.3: {} 2274 + 2275 + destr@2.0.3: {} 2276 + 2277 + detect-libc@2.0.3: 2278 + optional: true 2279 + 2280 + deterministic-object-hash@2.0.2: 2281 + dependencies: 2282 + base-64: 1.0.0 2283 + 2284 + devalue@5.1.1: {} 2285 + 2286 + devlop@1.1.0: 2287 + dependencies: 2288 + dequal: 2.0.3 2289 + 2290 + diff@5.2.0: {} 2291 + 2292 + dlv@1.1.3: {} 2293 + 2294 + dset@3.1.4: {} 2295 + 2296 + emoji-regex-xs@1.0.0: {} 2297 + 2298 + emoji-regex@10.4.0: {} 2299 + 2300 + emoji-regex@8.0.0: {} 2301 + 2302 + entities@4.5.0: {} 2303 + 2304 + es-module-lexer@1.6.0: {} 2305 + 2306 + esbuild@0.21.5: 2307 + optionalDependencies: 2308 + '@esbuild/aix-ppc64': 0.21.5 2309 + '@esbuild/android-arm': 0.21.5 2310 + '@esbuild/android-arm64': 0.21.5 2311 + '@esbuild/android-x64': 0.21.5 2312 + '@esbuild/darwin-arm64': 0.21.5 2313 + '@esbuild/darwin-x64': 0.21.5 2314 + '@esbuild/freebsd-arm64': 0.21.5 2315 + '@esbuild/freebsd-x64': 0.21.5 2316 + '@esbuild/linux-arm': 0.21.5 2317 + '@esbuild/linux-arm64': 0.21.5 2318 + '@esbuild/linux-ia32': 0.21.5 2319 + '@esbuild/linux-loong64': 0.21.5 2320 + '@esbuild/linux-mips64el': 0.21.5 2321 + '@esbuild/linux-ppc64': 0.21.5 2322 + '@esbuild/linux-riscv64': 0.21.5 2323 + '@esbuild/linux-s390x': 0.21.5 2324 + '@esbuild/linux-x64': 0.21.5 2325 + '@esbuild/netbsd-x64': 0.21.5 2326 + '@esbuild/openbsd-x64': 0.21.5 2327 + '@esbuild/sunos-x64': 0.21.5 2328 + '@esbuild/win32-arm64': 0.21.5 2329 + '@esbuild/win32-ia32': 0.21.5 2330 + '@esbuild/win32-x64': 0.21.5 2331 + 2332 + esbuild@0.24.2: 2333 + optionalDependencies: 2334 + '@esbuild/aix-ppc64': 0.24.2 2335 + '@esbuild/android-arm': 0.24.2 2336 + '@esbuild/android-arm64': 0.24.2 2337 + '@esbuild/android-x64': 0.24.2 2338 + '@esbuild/darwin-arm64': 0.24.2 2339 + '@esbuild/darwin-x64': 0.24.2 2340 + '@esbuild/freebsd-arm64': 0.24.2 2341 + '@esbuild/freebsd-x64': 0.24.2 2342 + '@esbuild/linux-arm': 0.24.2 2343 + '@esbuild/linux-arm64': 0.24.2 2344 + '@esbuild/linux-ia32': 0.24.2 2345 + '@esbuild/linux-loong64': 0.24.2 2346 + '@esbuild/linux-mips64el': 0.24.2 2347 + '@esbuild/linux-ppc64': 0.24.2 2348 + '@esbuild/linux-riscv64': 0.24.2 2349 + '@esbuild/linux-s390x': 0.24.2 2350 + '@esbuild/linux-x64': 0.24.2 2351 + '@esbuild/netbsd-arm64': 0.24.2 2352 + '@esbuild/netbsd-x64': 0.24.2 2353 + '@esbuild/openbsd-arm64': 0.24.2 2354 + '@esbuild/openbsd-x64': 0.24.2 2355 + '@esbuild/sunos-x64': 0.24.2 2356 + '@esbuild/win32-arm64': 0.24.2 2357 + '@esbuild/win32-ia32': 0.24.2 2358 + '@esbuild/win32-x64': 0.24.2 2359 + 2360 + escape-string-regexp@5.0.0: {} 2361 + 2362 + esprima@4.0.1: {} 2363 + 2364 + estree-walker@2.0.2: {} 2365 + 2366 + estree-walker@3.0.3: 2367 + dependencies: 2368 + '@types/estree': 1.0.6 2369 + 2370 + eventemitter3@5.0.1: {} 2371 + 2372 + extend@3.0.2: {} 2373 + 2374 + fast-glob@3.3.2: 2375 + dependencies: 2376 + '@nodelib/fs.stat': 2.0.5 2377 + '@nodelib/fs.walk': 1.2.8 2378 + glob-parent: 5.1.2 2379 + merge2: 1.4.1 2380 + micromatch: 4.0.8 2381 + 2382 + fastq@1.18.0: 2383 + dependencies: 2384 + reusify: 1.0.4 2385 + 2386 + fill-range@7.1.1: 2387 + dependencies: 2388 + to-regex-range: 5.0.1 2389 + 2390 + find-up-simple@1.0.0: {} 2391 + 2392 + find-up@4.1.0: 2393 + dependencies: 2394 + locate-path: 5.0.0 2395 + path-exists: 4.0.0 2396 + 2397 + find-yarn-workspace-root2@1.2.16: 2398 + dependencies: 2399 + micromatch: 4.0.8 2400 + pkg-dir: 4.2.0 2401 + 2402 + flattie@1.1.1: {} 2403 + 2404 + fsevents@2.3.3: 2405 + optional: true 2406 + 2407 + get-east-asian-width@1.3.0: {} 2408 + 2409 + github-slugger@2.0.0: {} 2410 + 2411 + glob-parent@5.1.2: 2412 + dependencies: 2413 + is-glob: 4.0.3 2414 + 2415 + graceful-fs@4.2.11: {} 2416 + 2417 + h3@1.13.0: 2418 + dependencies: 2419 + cookie-es: 1.2.2 2420 + crossws: 0.3.1 2421 + defu: 6.1.4 2422 + destr: 2.0.3 2423 + iron-webcrypto: 1.2.1 2424 + ohash: 1.1.4 2425 + radix3: 1.1.2 2426 + ufo: 1.5.4 2427 + uncrypto: 0.1.3 2428 + unenv: 1.10.0 2429 + 2430 + hast-util-from-html@2.0.3: 2431 + dependencies: 2432 + '@types/hast': 3.0.4 2433 + devlop: 1.1.0 2434 + hast-util-from-parse5: 8.0.2 2435 + parse5: 7.2.1 2436 + vfile: 6.0.3 2437 + vfile-message: 4.0.2 2438 + 2439 + hast-util-from-parse5@8.0.2: 2440 + dependencies: 2441 + '@types/hast': 3.0.4 2442 + '@types/unist': 3.0.3 2443 + devlop: 1.1.0 2444 + hastscript: 9.0.0 2445 + property-information: 6.5.0 2446 + vfile: 6.0.3 2447 + vfile-location: 5.0.3 2448 + web-namespaces: 2.0.1 2449 + 2450 + hast-util-is-element@3.0.0: 2451 + dependencies: 2452 + '@types/hast': 3.0.4 2453 + 2454 + hast-util-parse-selector@4.0.0: 2455 + dependencies: 2456 + '@types/hast': 3.0.4 2457 + 2458 + hast-util-raw@9.1.0: 2459 + dependencies: 2460 + '@types/hast': 3.0.4 2461 + '@types/unist': 3.0.3 2462 + '@ungap/structured-clone': 1.2.1 2463 + hast-util-from-parse5: 8.0.2 2464 + hast-util-to-parse5: 8.0.0 2465 + html-void-elements: 3.0.0 2466 + mdast-util-to-hast: 13.2.0 2467 + parse5: 7.2.1 2468 + unist-util-position: 5.0.0 2469 + unist-util-visit: 5.0.0 2470 + vfile: 6.0.3 2471 + web-namespaces: 2.0.1 2472 + zwitch: 2.0.4 2473 + 2474 + hast-util-to-html@9.0.4: 2475 + dependencies: 2476 + '@types/hast': 3.0.4 2477 + '@types/unist': 3.0.3 2478 + ccount: 2.0.1 2479 + comma-separated-tokens: 2.0.3 2480 + hast-util-whitespace: 3.0.0 2481 + html-void-elements: 3.0.0 2482 + mdast-util-to-hast: 13.2.0 2483 + property-information: 6.5.0 2484 + space-separated-tokens: 2.0.2 2485 + stringify-entities: 4.0.4 2486 + zwitch: 2.0.4 2487 + 2488 + hast-util-to-parse5@8.0.0: 2489 + dependencies: 2490 + '@types/hast': 3.0.4 2491 + comma-separated-tokens: 2.0.3 2492 + devlop: 1.1.0 2493 + property-information: 6.5.0 2494 + space-separated-tokens: 2.0.2 2495 + web-namespaces: 2.0.1 2496 + zwitch: 2.0.4 2497 + 2498 + hast-util-to-text@4.0.2: 2499 + dependencies: 2500 + '@types/hast': 3.0.4 2501 + '@types/unist': 3.0.3 2502 + hast-util-is-element: 3.0.0 2503 + unist-util-find-after: 5.0.0 2504 + 2505 + hast-util-whitespace@3.0.0: 2506 + dependencies: 2507 + '@types/hast': 3.0.4 2508 + 2509 + hastscript@9.0.0: 2510 + dependencies: 2511 + '@types/hast': 3.0.4 2512 + comma-separated-tokens: 2.0.3 2513 + hast-util-parse-selector: 4.0.0 2514 + property-information: 6.5.0 2515 + space-separated-tokens: 2.0.2 2516 + 2517 + html-escaper@3.0.3: {} 2518 + 2519 + html-void-elements@3.0.0: {} 2520 + 2521 + http-cache-semantics@4.1.1: {} 2522 + 2523 + import-meta-resolve@4.1.0: {} 2524 + 2525 + iron-webcrypto@1.2.1: {} 2526 + 2527 + is-arrayish@0.3.2: 2528 + optional: true 2529 + 2530 + is-binary-path@2.1.0: 2531 + dependencies: 2532 + binary-extensions: 2.3.0 2533 + 2534 + is-docker@3.0.0: {} 2535 + 2536 + is-extglob@2.1.1: {} 2537 + 2538 + is-fullwidth-code-point@3.0.0: {} 2539 + 2540 + is-glob@4.0.3: 2541 + dependencies: 2542 + is-extglob: 2.1.1 2543 + 2544 + is-inside-container@1.0.0: 2545 + dependencies: 2546 + is-docker: 3.0.0 2547 + 2548 + is-number@7.0.0: {} 2549 + 2550 + is-plain-obj@4.1.0: {} 2551 + 2552 + is-wsl@3.1.0: 2553 + dependencies: 2554 + is-inside-container: 1.0.0 2555 + 2556 + js-yaml@3.14.1: 2557 + dependencies: 2558 + argparse: 1.0.10 2559 + esprima: 4.0.1 2560 + 2561 + js-yaml@4.1.0: 2562 + dependencies: 2563 + argparse: 2.0.1 2564 + 2565 + kleur@3.0.3: {} 2566 + 2567 + kleur@4.1.5: {} 2568 + 2569 + load-yaml-file@0.2.0: 2570 + dependencies: 2571 + graceful-fs: 4.2.11 2572 + js-yaml: 3.14.1 2573 + pify: 4.0.1 2574 + strip-bom: 3.0.0 2575 + 2576 + locate-path@5.0.0: 2577 + dependencies: 2578 + p-locate: 4.1.0 2579 + 2580 + longest-streak@3.1.0: {} 2581 + 2582 + lru-cache@10.4.3: {} 2583 + 2584 + magic-string@0.30.17: 2585 + dependencies: 2586 + '@jridgewell/sourcemap-codec': 1.5.0 2587 + 2588 + magicast@0.3.5: 2589 + dependencies: 2590 + '@babel/parser': 7.26.3 2591 + '@babel/types': 7.26.3 2592 + source-map-js: 1.2.1 2593 + 2594 + markdown-table@3.0.4: {} 2595 + 2596 + mdast-util-definitions@6.0.0: 2597 + dependencies: 2598 + '@types/mdast': 4.0.4 2599 + '@types/unist': 3.0.3 2600 + unist-util-visit: 5.0.0 2601 + 2602 + mdast-util-find-and-replace@3.0.1: 2603 + dependencies: 2604 + '@types/mdast': 4.0.4 2605 + escape-string-regexp: 5.0.0 2606 + unist-util-is: 6.0.0 2607 + unist-util-visit-parents: 6.0.1 2608 + 2609 + mdast-util-from-markdown@2.0.2: 2610 + dependencies: 2611 + '@types/mdast': 4.0.4 2612 + '@types/unist': 3.0.3 2613 + decode-named-character-reference: 1.0.2 2614 + devlop: 1.1.0 2615 + mdast-util-to-string: 4.0.0 2616 + micromark: 4.0.1 2617 + micromark-util-decode-numeric-character-reference: 2.0.2 2618 + micromark-util-decode-string: 2.0.1 2619 + micromark-util-normalize-identifier: 2.0.1 2620 + micromark-util-symbol: 2.0.1 2621 + micromark-util-types: 2.0.1 2622 + unist-util-stringify-position: 4.0.0 2623 + transitivePeerDependencies: 2624 + - supports-color 2625 + 2626 + mdast-util-gfm-autolink-literal@2.0.1: 2627 + dependencies: 2628 + '@types/mdast': 4.0.4 2629 + ccount: 2.0.1 2630 + devlop: 1.1.0 2631 + mdast-util-find-and-replace: 3.0.1 2632 + micromark-util-character: 2.1.1 2633 + 2634 + mdast-util-gfm-footnote@2.0.0: 2635 + dependencies: 2636 + '@types/mdast': 4.0.4 2637 + devlop: 1.1.0 2638 + mdast-util-from-markdown: 2.0.2 2639 + mdast-util-to-markdown: 2.1.2 2640 + micromark-util-normalize-identifier: 2.0.1 2641 + transitivePeerDependencies: 2642 + - supports-color 2643 + 2644 + mdast-util-gfm-strikethrough@2.0.0: 2645 + dependencies: 2646 + '@types/mdast': 4.0.4 2647 + mdast-util-from-markdown: 2.0.2 2648 + mdast-util-to-markdown: 2.1.2 2649 + transitivePeerDependencies: 2650 + - supports-color 2651 + 2652 + mdast-util-gfm-table@2.0.0: 2653 + dependencies: 2654 + '@types/mdast': 4.0.4 2655 + devlop: 1.1.0 2656 + markdown-table: 3.0.4 2657 + mdast-util-from-markdown: 2.0.2 2658 + mdast-util-to-markdown: 2.1.2 2659 + transitivePeerDependencies: 2660 + - supports-color 2661 + 2662 + mdast-util-gfm-task-list-item@2.0.0: 2663 + dependencies: 2664 + '@types/mdast': 4.0.4 2665 + devlop: 1.1.0 2666 + mdast-util-from-markdown: 2.0.2 2667 + mdast-util-to-markdown: 2.1.2 2668 + transitivePeerDependencies: 2669 + - supports-color 2670 + 2671 + mdast-util-gfm@3.0.0: 2672 + dependencies: 2673 + mdast-util-from-markdown: 2.0.2 2674 + mdast-util-gfm-autolink-literal: 2.0.1 2675 + mdast-util-gfm-footnote: 2.0.0 2676 + mdast-util-gfm-strikethrough: 2.0.0 2677 + mdast-util-gfm-table: 2.0.0 2678 + mdast-util-gfm-task-list-item: 2.0.0 2679 + mdast-util-to-markdown: 2.1.2 2680 + transitivePeerDependencies: 2681 + - supports-color 2682 + 2683 + mdast-util-phrasing@4.1.0: 2684 + dependencies: 2685 + '@types/mdast': 4.0.4 2686 + unist-util-is: 6.0.0 2687 + 2688 + mdast-util-to-hast@13.2.0: 2689 + dependencies: 2690 + '@types/hast': 3.0.4 2691 + '@types/mdast': 4.0.4 2692 + '@ungap/structured-clone': 1.2.1 2693 + devlop: 1.1.0 2694 + micromark-util-sanitize-uri: 2.0.1 2695 + trim-lines: 3.0.1 2696 + unist-util-position: 5.0.0 2697 + unist-util-visit: 5.0.0 2698 + vfile: 6.0.3 2699 + 2700 + mdast-util-to-markdown@2.1.2: 2701 + dependencies: 2702 + '@types/mdast': 4.0.4 2703 + '@types/unist': 3.0.3 2704 + longest-streak: 3.1.0 2705 + mdast-util-phrasing: 4.1.0 2706 + mdast-util-to-string: 4.0.0 2707 + micromark-util-classify-character: 2.0.1 2708 + micromark-util-decode-string: 2.0.1 2709 + unist-util-visit: 5.0.0 2710 + zwitch: 2.0.4 2711 + 2712 + mdast-util-to-string@4.0.0: 2713 + dependencies: 2714 + '@types/mdast': 4.0.4 2715 + 2716 + merge2@1.4.1: {} 2717 + 2718 + micromark-core-commonmark@2.0.2: 2719 + dependencies: 2720 + decode-named-character-reference: 1.0.2 2721 + devlop: 1.1.0 2722 + micromark-factory-destination: 2.0.1 2723 + micromark-factory-label: 2.0.1 2724 + micromark-factory-space: 2.0.1 2725 + micromark-factory-title: 2.0.1 2726 + micromark-factory-whitespace: 2.0.1 2727 + micromark-util-character: 2.1.1 2728 + micromark-util-chunked: 2.0.1 2729 + micromark-util-classify-character: 2.0.1 2730 + micromark-util-html-tag-name: 2.0.1 2731 + micromark-util-normalize-identifier: 2.0.1 2732 + micromark-util-resolve-all: 2.0.1 2733 + micromark-util-subtokenize: 2.0.3 2734 + micromark-util-symbol: 2.0.1 2735 + micromark-util-types: 2.0.1 2736 + 2737 + micromark-extension-gfm-autolink-literal@2.1.0: 2738 + dependencies: 2739 + micromark-util-character: 2.1.1 2740 + micromark-util-sanitize-uri: 2.0.1 2741 + micromark-util-symbol: 2.0.1 2742 + micromark-util-types: 2.0.1 2743 + 2744 + micromark-extension-gfm-footnote@2.1.0: 2745 + dependencies: 2746 + devlop: 1.1.0 2747 + micromark-core-commonmark: 2.0.2 2748 + micromark-factory-space: 2.0.1 2749 + micromark-util-character: 2.1.1 2750 + micromark-util-normalize-identifier: 2.0.1 2751 + micromark-util-sanitize-uri: 2.0.1 2752 + micromark-util-symbol: 2.0.1 2753 + micromark-util-types: 2.0.1 2754 + 2755 + micromark-extension-gfm-strikethrough@2.1.0: 2756 + dependencies: 2757 + devlop: 1.1.0 2758 + micromark-util-chunked: 2.0.1 2759 + micromark-util-classify-character: 2.0.1 2760 + micromark-util-resolve-all: 2.0.1 2761 + micromark-util-symbol: 2.0.1 2762 + micromark-util-types: 2.0.1 2763 + 2764 + micromark-extension-gfm-table@2.1.0: 2765 + dependencies: 2766 + devlop: 1.1.0 2767 + micromark-factory-space: 2.0.1 2768 + micromark-util-character: 2.1.1 2769 + micromark-util-symbol: 2.0.1 2770 + micromark-util-types: 2.0.1 2771 + 2772 + micromark-extension-gfm-tagfilter@2.0.0: 2773 + dependencies: 2774 + micromark-util-types: 2.0.1 2775 + 2776 + micromark-extension-gfm-task-list-item@2.1.0: 2777 + dependencies: 2778 + devlop: 1.1.0 2779 + micromark-factory-space: 2.0.1 2780 + micromark-util-character: 2.1.1 2781 + micromark-util-symbol: 2.0.1 2782 + micromark-util-types: 2.0.1 2783 + 2784 + micromark-extension-gfm@3.0.0: 2785 + dependencies: 2786 + micromark-extension-gfm-autolink-literal: 2.1.0 2787 + micromark-extension-gfm-footnote: 2.1.0 2788 + micromark-extension-gfm-strikethrough: 2.1.0 2789 + micromark-extension-gfm-table: 2.1.0 2790 + micromark-extension-gfm-tagfilter: 2.0.0 2791 + micromark-extension-gfm-task-list-item: 2.1.0 2792 + micromark-util-combine-extensions: 2.0.1 2793 + micromark-util-types: 2.0.1 2794 + 2795 + micromark-factory-destination@2.0.1: 2796 + dependencies: 2797 + micromark-util-character: 2.1.1 2798 + micromark-util-symbol: 2.0.1 2799 + micromark-util-types: 2.0.1 2800 + 2801 + micromark-factory-label@2.0.1: 2802 + dependencies: 2803 + devlop: 1.1.0 2804 + micromark-util-character: 2.1.1 2805 + micromark-util-symbol: 2.0.1 2806 + micromark-util-types: 2.0.1 2807 + 2808 + micromark-factory-space@2.0.1: 2809 + dependencies: 2810 + micromark-util-character: 2.1.1 2811 + micromark-util-types: 2.0.1 2812 + 2813 + micromark-factory-title@2.0.1: 2814 + dependencies: 2815 + micromark-factory-space: 2.0.1 2816 + micromark-util-character: 2.1.1 2817 + micromark-util-symbol: 2.0.1 2818 + micromark-util-types: 2.0.1 2819 + 2820 + micromark-factory-whitespace@2.0.1: 2821 + dependencies: 2822 + micromark-factory-space: 2.0.1 2823 + micromark-util-character: 2.1.1 2824 + micromark-util-symbol: 2.0.1 2825 + micromark-util-types: 2.0.1 2826 + 2827 + micromark-util-character@2.1.1: 2828 + dependencies: 2829 + micromark-util-symbol: 2.0.1 2830 + micromark-util-types: 2.0.1 2831 + 2832 + micromark-util-chunked@2.0.1: 2833 + dependencies: 2834 + micromark-util-symbol: 2.0.1 2835 + 2836 + micromark-util-classify-character@2.0.1: 2837 + dependencies: 2838 + micromark-util-character: 2.1.1 2839 + micromark-util-symbol: 2.0.1 2840 + micromark-util-types: 2.0.1 2841 + 2842 + micromark-util-combine-extensions@2.0.1: 2843 + dependencies: 2844 + micromark-util-chunked: 2.0.1 2845 + micromark-util-types: 2.0.1 2846 + 2847 + micromark-util-decode-numeric-character-reference@2.0.2: 2848 + dependencies: 2849 + micromark-util-symbol: 2.0.1 2850 + 2851 + micromark-util-decode-string@2.0.1: 2852 + dependencies: 2853 + decode-named-character-reference: 1.0.2 2854 + micromark-util-character: 2.1.1 2855 + micromark-util-decode-numeric-character-reference: 2.0.2 2856 + micromark-util-symbol: 2.0.1 2857 + 2858 + micromark-util-encode@2.0.1: {} 2859 + 2860 + micromark-util-html-tag-name@2.0.1: {} 2861 + 2862 + micromark-util-normalize-identifier@2.0.1: 2863 + dependencies: 2864 + micromark-util-symbol: 2.0.1 2865 + 2866 + micromark-util-resolve-all@2.0.1: 2867 + dependencies: 2868 + micromark-util-types: 2.0.1 2869 + 2870 + micromark-util-sanitize-uri@2.0.1: 2871 + dependencies: 2872 + micromark-util-character: 2.1.1 2873 + micromark-util-encode: 2.0.1 2874 + micromark-util-symbol: 2.0.1 2875 + 2876 + micromark-util-subtokenize@2.0.3: 2877 + dependencies: 2878 + devlop: 1.1.0 2879 + micromark-util-chunked: 2.0.1 2880 + micromark-util-symbol: 2.0.1 2881 + micromark-util-types: 2.0.1 2882 + 2883 + micromark-util-symbol@2.0.1: {} 2884 + 2885 + micromark-util-types@2.0.1: {} 2886 + 2887 + micromark@4.0.1: 2888 + dependencies: 2889 + '@types/debug': 4.1.12 2890 + debug: 4.4.0 2891 + decode-named-character-reference: 1.0.2 2892 + devlop: 1.1.0 2893 + micromark-core-commonmark: 2.0.2 2894 + micromark-factory-space: 2.0.1 2895 + micromark-util-character: 2.1.1 2896 + micromark-util-chunked: 2.0.1 2897 + micromark-util-combine-extensions: 2.0.1 2898 + micromark-util-decode-numeric-character-reference: 2.0.2 2899 + micromark-util-encode: 2.0.1 2900 + micromark-util-normalize-identifier: 2.0.1 2901 + micromark-util-resolve-all: 2.0.1 2902 + micromark-util-sanitize-uri: 2.0.1 2903 + micromark-util-subtokenize: 2.0.3 2904 + micromark-util-symbol: 2.0.1 2905 + micromark-util-types: 2.0.1 2906 + transitivePeerDependencies: 2907 + - supports-color 2908 + 2909 + micromatch@4.0.8: 2910 + dependencies: 2911 + braces: 3.0.3 2912 + picomatch: 2.3.1 2913 + 2914 + mime@3.0.0: {} 2915 + 2916 + mrmime@2.0.0: {} 2917 + 2918 + ms@2.1.3: {} 2919 + 2920 + nanoid@3.3.8: {} 2921 + 2922 + neotraverse@0.6.18: {} 2923 + 2924 + nlcst-to-string@4.0.0: 2925 + dependencies: 2926 + '@types/nlcst': 2.0.3 2927 + 2928 + node-fetch-native@1.6.4: {} 2929 + 2930 + normalize-path@3.0.0: {} 2931 + 2932 + ofetch@1.4.1: 2933 + dependencies: 2934 + destr: 2.0.3 2935 + node-fetch-native: 1.6.4 2936 + ufo: 1.5.4 2937 + 2938 + ohash@1.1.4: {} 2939 + 2940 + oniguruma-to-es@0.8.1: 2941 + dependencies: 2942 + emoji-regex-xs: 1.0.0 2943 + regex: 5.1.1 2944 + regex-recursion: 5.1.1 2945 + 2946 + p-limit@2.3.0: 2947 + dependencies: 2948 + p-try: 2.2.0 2949 + 2950 + p-limit@6.2.0: 2951 + dependencies: 2952 + yocto-queue: 1.1.1 2953 + 2954 + p-locate@4.1.0: 2955 + dependencies: 2956 + p-limit: 2.3.0 2957 + 2958 + p-queue@8.0.1: 2959 + dependencies: 2960 + eventemitter3: 5.0.1 2961 + p-timeout: 6.1.3 2962 + 2963 + p-timeout@6.1.3: {} 2964 + 2965 + p-try@2.2.0: {} 2966 + 2967 + parse-latin@7.0.0: 2968 + dependencies: 2969 + '@types/nlcst': 2.0.3 2970 + '@types/unist': 3.0.3 2971 + nlcst-to-string: 4.0.0 2972 + unist-util-modify-children: 4.0.0 2973 + unist-util-visit-children: 3.0.0 2974 + vfile: 6.0.3 2975 + 2976 + parse5@7.2.1: 2977 + dependencies: 2978 + entities: 4.5.0 2979 + 2980 + path-exists@4.0.0: {} 2981 + 2982 + pathe@1.1.2: {} 2983 + 2984 + picocolors@1.1.1: {} 2985 + 2986 + picomatch@2.3.1: {} 2987 + 2988 + picomatch@4.0.2: {} 2989 + 2990 + pify@4.0.1: {} 2991 + 2992 + pkg-dir@4.2.0: 2993 + dependencies: 2994 + find-up: 4.1.0 2995 + 2996 + postcss@8.4.49: 2997 + dependencies: 2998 + nanoid: 3.3.8 2999 + picocolors: 1.1.1 3000 + source-map-js: 1.2.1 3001 + 3002 + preferred-pm@4.0.0: 3003 + dependencies: 3004 + find-up-simple: 1.0.0 3005 + find-yarn-workspace-root2: 1.2.16 3006 + which-pm: 3.0.0 3007 + 3008 + prismjs@1.29.0: {} 3009 + 3010 + prompts@2.4.2: 3011 + dependencies: 3012 + kleur: 3.0.3 3013 + sisteransi: 1.0.5 3014 + 3015 + property-information@6.5.0: {} 3016 + 3017 + queue-microtask@1.2.3: {} 3018 + 3019 + radix3@1.1.2: {} 3020 + 3021 + readdirp@3.6.0: 3022 + dependencies: 3023 + picomatch: 2.3.1 3024 + 3025 + regex-recursion@5.1.1: 3026 + dependencies: 3027 + regex: 5.1.1 3028 + regex-utilities: 2.3.0 3029 + 3030 + regex-utilities@2.3.0: {} 3031 + 3032 + regex@5.1.1: 3033 + dependencies: 3034 + regex-utilities: 2.3.0 3035 + 3036 + rehype-parse@9.0.1: 3037 + dependencies: 3038 + '@types/hast': 3.0.4 3039 + hast-util-from-html: 2.0.3 3040 + unified: 11.0.5 3041 + 3042 + rehype-raw@7.0.0: 3043 + dependencies: 3044 + '@types/hast': 3.0.4 3045 + hast-util-raw: 9.1.0 3046 + vfile: 6.0.3 3047 + 3048 + rehype-stringify@10.0.1: 3049 + dependencies: 3050 + '@types/hast': 3.0.4 3051 + hast-util-to-html: 9.0.4 3052 + unified: 11.0.5 3053 + 3054 + rehype@13.0.2: 3055 + dependencies: 3056 + '@types/hast': 3.0.4 3057 + rehype-parse: 9.0.1 3058 + rehype-stringify: 10.0.1 3059 + unified: 11.0.5 3060 + 3061 + remark-gfm@4.0.0: 3062 + dependencies: 3063 + '@types/mdast': 4.0.4 3064 + mdast-util-gfm: 3.0.0 3065 + micromark-extension-gfm: 3.0.0 3066 + remark-parse: 11.0.0 3067 + remark-stringify: 11.0.0 3068 + unified: 11.0.5 3069 + transitivePeerDependencies: 3070 + - supports-color 3071 + 3072 + remark-parse@11.0.0: 3073 + dependencies: 3074 + '@types/mdast': 4.0.4 3075 + mdast-util-from-markdown: 2.0.2 3076 + micromark-util-types: 2.0.1 3077 + unified: 11.0.5 3078 + transitivePeerDependencies: 3079 + - supports-color 3080 + 3081 + remark-rehype@11.1.1: 3082 + dependencies: 3083 + '@types/hast': 3.0.4 3084 + '@types/mdast': 4.0.4 3085 + mdast-util-to-hast: 13.2.0 3086 + unified: 11.0.5 3087 + vfile: 6.0.3 3088 + 3089 + remark-smartypants@3.0.2: 3090 + dependencies: 3091 + retext: 9.0.0 3092 + retext-smartypants: 6.2.0 3093 + unified: 11.0.5 3094 + unist-util-visit: 5.0.0 3095 + 3096 + remark-stringify@11.0.0: 3097 + dependencies: 3098 + '@types/mdast': 4.0.4 3099 + mdast-util-to-markdown: 2.1.2 3100 + unified: 11.0.5 3101 + 3102 + retext-latin@4.0.0: 3103 + dependencies: 3104 + '@types/nlcst': 2.0.3 3105 + parse-latin: 7.0.0 3106 + unified: 11.0.5 3107 + 3108 + retext-smartypants@6.2.0: 3109 + dependencies: 3110 + '@types/nlcst': 2.0.3 3111 + nlcst-to-string: 4.0.0 3112 + unist-util-visit: 5.0.0 3113 + 3114 + retext-stringify@4.0.0: 3115 + dependencies: 3116 + '@types/nlcst': 2.0.3 3117 + nlcst-to-string: 4.0.0 3118 + unified: 11.0.5 3119 + 3120 + retext@9.0.0: 3121 + dependencies: 3122 + '@types/nlcst': 2.0.3 3123 + retext-latin: 4.0.0 3124 + retext-stringify: 4.0.0 3125 + unified: 11.0.5 3126 + 3127 + reusify@1.0.4: {} 3128 + 3129 + rollup@4.29.1: 3130 + dependencies: 3131 + '@types/estree': 1.0.6 3132 + optionalDependencies: 3133 + '@rollup/rollup-android-arm-eabi': 4.29.1 3134 + '@rollup/rollup-android-arm64': 4.29.1 3135 + '@rollup/rollup-darwin-arm64': 4.29.1 3136 + '@rollup/rollup-darwin-x64': 4.29.1 3137 + '@rollup/rollup-freebsd-arm64': 4.29.1 3138 + '@rollup/rollup-freebsd-x64': 4.29.1 3139 + '@rollup/rollup-linux-arm-gnueabihf': 4.29.1 3140 + '@rollup/rollup-linux-arm-musleabihf': 4.29.1 3141 + '@rollup/rollup-linux-arm64-gnu': 4.29.1 3142 + '@rollup/rollup-linux-arm64-musl': 4.29.1 3143 + '@rollup/rollup-linux-loongarch64-gnu': 4.29.1 3144 + '@rollup/rollup-linux-powerpc64le-gnu': 4.29.1 3145 + '@rollup/rollup-linux-riscv64-gnu': 4.29.1 3146 + '@rollup/rollup-linux-s390x-gnu': 4.29.1 3147 + '@rollup/rollup-linux-x64-gnu': 4.29.1 3148 + '@rollup/rollup-linux-x64-musl': 4.29.1 3149 + '@rollup/rollup-win32-arm64-msvc': 4.29.1 3150 + '@rollup/rollup-win32-ia32-msvc': 4.29.1 3151 + '@rollup/rollup-win32-x64-msvc': 4.29.1 3152 + fsevents: 2.3.3 3153 + 3154 + run-parallel@1.2.0: 3155 + dependencies: 3156 + queue-microtask: 1.2.3 3157 + 3158 + semver@7.6.3: {} 3159 + 3160 + sharp@0.33.5: 3161 + dependencies: 3162 + color: 4.2.3 3163 + detect-libc: 2.0.3 3164 + semver: 7.6.3 3165 + optionalDependencies: 3166 + '@img/sharp-darwin-arm64': 0.33.5 3167 + '@img/sharp-darwin-x64': 0.33.5 3168 + '@img/sharp-libvips-darwin-arm64': 1.0.4 3169 + '@img/sharp-libvips-darwin-x64': 1.0.4 3170 + '@img/sharp-libvips-linux-arm': 1.0.5 3171 + '@img/sharp-libvips-linux-arm64': 1.0.4 3172 + '@img/sharp-libvips-linux-s390x': 1.0.4 3173 + '@img/sharp-libvips-linux-x64': 1.0.4 3174 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 3175 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 3176 + '@img/sharp-linux-arm': 0.33.5 3177 + '@img/sharp-linux-arm64': 0.33.5 3178 + '@img/sharp-linux-s390x': 0.33.5 3179 + '@img/sharp-linux-x64': 0.33.5 3180 + '@img/sharp-linuxmusl-arm64': 0.33.5 3181 + '@img/sharp-linuxmusl-x64': 0.33.5 3182 + '@img/sharp-wasm32': 0.33.5 3183 + '@img/sharp-win32-ia32': 0.33.5 3184 + '@img/sharp-win32-x64': 0.33.5 3185 + optional: true 3186 + 3187 + shiki@1.24.4: 3188 + dependencies: 3189 + '@shikijs/core': 1.24.4 3190 + '@shikijs/engine-javascript': 1.24.4 3191 + '@shikijs/engine-oniguruma': 1.24.4 3192 + '@shikijs/types': 1.24.4 3193 + '@shikijs/vscode-textmate': 9.3.1 3194 + '@types/hast': 3.0.4 3195 + 3196 + simple-swizzle@0.2.2: 3197 + dependencies: 3198 + is-arrayish: 0.3.2 3199 + optional: true 3200 + 3201 + sisteransi@1.0.5: {} 3202 + 3203 + source-map-js@1.2.1: {} 3204 + 3205 + space-separated-tokens@2.0.2: {} 3206 + 3207 + sprintf-js@1.0.3: {} 3208 + 3209 + string-width@4.2.3: 3210 + dependencies: 3211 + emoji-regex: 8.0.0 3212 + is-fullwidth-code-point: 3.0.0 3213 + strip-ansi: 6.0.1 3214 + 3215 + string-width@7.2.0: 3216 + dependencies: 3217 + emoji-regex: 10.4.0 3218 + get-east-asian-width: 1.3.0 3219 + strip-ansi: 7.1.0 3220 + 3221 + stringify-entities@4.0.4: 3222 + dependencies: 3223 + character-entities-html4: 2.1.0 3224 + character-entities-legacy: 3.0.0 3225 + 3226 + strip-ansi@6.0.1: 3227 + dependencies: 3228 + ansi-regex: 5.0.1 3229 + 3230 + strip-ansi@7.1.0: 3231 + dependencies: 3232 + ansi-regex: 6.1.0 3233 + 3234 + strip-bom@3.0.0: {} 3235 + 3236 + tinyexec@0.3.1: {} 3237 + 3238 + to-regex-range@5.0.1: 3239 + dependencies: 3240 + is-number: 7.0.0 3241 + 3242 + trim-lines@3.0.1: {} 3243 + 3244 + trough@2.2.0: {} 3245 + 3246 + tsconfck@3.1.4(typescript@5.7.2): 3247 + optionalDependencies: 3248 + typescript: 5.7.2 3249 + 3250 + tslib@2.8.1: 3251 + optional: true 3252 + 3253 + type-fest@4.31.0: {} 3254 + 3255 + typescript@5.7.2: {} 3256 + 3257 + ufo@1.5.4: {} 3258 + 3259 + ultrahtml@1.5.3: {} 3260 + 3261 + uncrypto@0.1.3: {} 3262 + 3263 + unenv@1.10.0: 3264 + dependencies: 3265 + consola: 3.3.3 3266 + defu: 6.1.4 3267 + mime: 3.0.0 3268 + node-fetch-native: 1.6.4 3269 + pathe: 1.1.2 3270 + 3271 + unified@11.0.5: 3272 + dependencies: 3273 + '@types/unist': 3.0.3 3274 + bail: 2.0.2 3275 + devlop: 1.1.0 3276 + extend: 3.0.2 3277 + is-plain-obj: 4.1.0 3278 + trough: 2.2.0 3279 + vfile: 6.0.3 3280 + 3281 + unist-util-find-after@5.0.0: 3282 + dependencies: 3283 + '@types/unist': 3.0.3 3284 + unist-util-is: 6.0.0 3285 + 3286 + unist-util-is@6.0.0: 3287 + dependencies: 3288 + '@types/unist': 3.0.3 3289 + 3290 + unist-util-modify-children@4.0.0: 3291 + dependencies: 3292 + '@types/unist': 3.0.3 3293 + array-iterate: 2.0.1 3294 + 3295 + unist-util-position@5.0.0: 3296 + dependencies: 3297 + '@types/unist': 3.0.3 3298 + 3299 + unist-util-remove-position@5.0.0: 3300 + dependencies: 3301 + '@types/unist': 3.0.3 3302 + unist-util-visit: 5.0.0 3303 + 3304 + unist-util-stringify-position@4.0.0: 3305 + dependencies: 3306 + '@types/unist': 3.0.3 3307 + 3308 + unist-util-visit-children@3.0.0: 3309 + dependencies: 3310 + '@types/unist': 3.0.3 3311 + 3312 + unist-util-visit-parents@6.0.1: 3313 + dependencies: 3314 + '@types/unist': 3.0.3 3315 + unist-util-is: 6.0.0 3316 + 3317 + unist-util-visit@5.0.0: 3318 + dependencies: 3319 + '@types/unist': 3.0.3 3320 + unist-util-is: 6.0.0 3321 + unist-util-visit-parents: 6.0.1 3322 + 3323 + unstorage@1.14.4: 3324 + dependencies: 3325 + anymatch: 3.1.3 3326 + chokidar: 3.6.0 3327 + destr: 2.0.3 3328 + h3: 1.13.0 3329 + lru-cache: 10.4.3 3330 + node-fetch-native: 1.6.4 3331 + ofetch: 1.4.1 3332 + ufo: 1.5.4 3333 + 3334 + vfile-location@5.0.3: 3335 + dependencies: 3336 + '@types/unist': 3.0.3 3337 + vfile: 6.0.3 3338 + 3339 + vfile-message@4.0.2: 3340 + dependencies: 3341 + '@types/unist': 3.0.3 3342 + unist-util-stringify-position: 4.0.0 3343 + 3344 + vfile@6.0.3: 3345 + dependencies: 3346 + '@types/unist': 3.0.3 3347 + vfile-message: 4.0.2 3348 + 3349 + vite@6.0.6: 3350 + dependencies: 3351 + esbuild: 0.24.2 3352 + postcss: 8.4.49 3353 + rollup: 4.29.1 3354 + optionalDependencies: 3355 + fsevents: 2.3.3 3356 + 3357 + vitefu@1.0.4(vite@6.0.6): 3358 + optionalDependencies: 3359 + vite: 6.0.6 3360 + 3361 + web-namespaces@2.0.1: {} 3362 + 3363 + which-pm-runs@1.1.0: {} 3364 + 3365 + which-pm@3.0.0: 3366 + dependencies: 3367 + load-yaml-file: 0.2.0 3368 + 3369 + widest-line@5.0.0: 3370 + dependencies: 3371 + string-width: 7.2.0 3372 + 3373 + wrap-ansi@9.0.0: 3374 + dependencies: 3375 + ansi-styles: 6.2.1 3376 + string-width: 7.2.0 3377 + strip-ansi: 7.1.0 3378 + 3379 + xxhash-wasm@1.1.0: {} 3380 + 3381 + yargs-parser@21.1.1: {} 3382 + 3383 + yocto-queue@1.1.1: {} 3384 + 3385 + yocto-spinner@0.1.2: 3386 + dependencies: 3387 + yoctocolors: 2.1.1 3388 + 3389 + yoctocolors@2.1.1: {} 3390 + 3391 + zod-to-json-schema@3.24.1(zod@3.24.1): 3392 + dependencies: 3393 + zod: 3.24.1 3394 + 3395 + zod-to-ts@1.2.0(typescript@5.7.2)(zod@3.24.1): 3396 + dependencies: 3397 + typescript: 5.7.2 3398 + zod: 3.24.1 3399 + 3400 + zod@3.24.1: {} 3401 + 3402 + zwitch@2.0.4: {}
+9
public/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"> 2 + <path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" /> 3 + <style> 4 + path { fill: #000; } 5 + @media (prefers-color-scheme: dark) { 6 + path { fill: #FFF; } 7 + } 8 + </style> 9 + </svg>
+1
src/assets/astro.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" fill="none" width="115" height="48"><path fill="#17191E" d="M7.77 36.35C6.4 35.11 6 32.51 6.57 30.62c.99 1.2 2.35 1.57 3.75 1.78 2.18.33 4.31.2 6.33-.78.23-.12.44-.27.7-.42.18.55.23 1.1.17 1.67a4.56 4.56 0 0 1-1.94 3.23c-.43.32-.9.61-1.34.91-1.38.94-1.76 2.03-1.24 3.62l.05.17a3.63 3.63 0 0 1-1.6-1.38 3.87 3.87 0 0 1-.63-2.1c0-.37 0-.74-.05-1.1-.13-.9-.55-1.3-1.33-1.32a1.56 1.56 0 0 0-1.63 1.26c0 .06-.03.12-.05.2Z"/><path fill="url(#a)" d="M7.77 36.35C6.4 35.11 6 32.51 6.57 30.62c.99 1.2 2.35 1.57 3.75 1.78 2.18.33 4.31.2 6.33-.78.23-.12.44-.27.7-.42.18.55.23 1.1.17 1.67a4.56 4.56 0 0 1-1.94 3.23c-.43.32-.9.61-1.34.91-1.38.94-1.76 2.03-1.24 3.62l.05.17a3.63 3.63 0 0 1-1.6-1.38 3.87 3.87 0 0 1-.63-2.1c0-.37 0-.74-.05-1.1-.13-.9-.55-1.3-1.33-1.32a1.56 1.56 0 0 0-1.63 1.26c0 .06-.03.12-.05.2Z"/><path fill="#17191E" d="M.02 30.31s4.02-1.95 8.05-1.95l3.04-9.4c.11-.45.44-.76.82-.76.37 0 .7.31.82.76l3.04 9.4c4.77 0 8.05 1.95 8.05 1.95L17 11.71c-.2-.56-.53-.91-.98-.91H7.83c-.44 0-.76.35-.97.9L.02 30.31Zm42.37-5.97c0 1.64-2.05 2.62-4.88 2.62-1.85 0-2.5-.45-2.5-1.41 0-1 .8-1.49 2.65-1.49 1.67 0 3.09.03 4.73.23v.05Zm.03-2.04a21.37 21.37 0 0 0-4.37-.36c-5.32 0-7.82 1.25-7.82 4.18 0 3.04 1.71 4.2 5.68 4.2 3.35 0 5.63-.84 6.46-2.92h.14c-.03.5-.05 1-.05 1.4 0 1.07.18 1.16 1.06 1.16h4.15a16.9 16.9 0 0 1-.36-4c0-1.67.06-2.93.06-4.62 0-3.45-2.07-5.64-8.56-5.64-2.8 0-5.9.48-8.26 1.19.22.93.54 2.83.7 4.06 2.04-.96 4.95-1.37 7.2-1.37 3.11 0 3.97.71 3.97 2.15v.57Zm11.37 3c-.56.07-1.33.07-2.12.07-.83 0-1.6-.03-2.12-.1l-.02.58c0 2.85 1.87 4.52 8.45 4.52 6.2 0 8.2-1.64 8.2-4.55 0-2.74-1.33-4.09-7.2-4.39-4.58-.2-4.99-.7-4.99-1.28 0-.66.59-1 3.65-1 3.18 0 4.03.43 4.03 1.35v.2a46.13 46.13 0 0 1 4.24.03l.02-.55c0-3.36-2.8-4.46-8.2-4.46-6.08 0-8.13 1.49-8.13 4.39 0 2.6 1.64 4.23 7.48 4.48 4.3.14 4.77.62 4.77 1.28 0 .7-.7 1.03-3.71 1.03-3.47 0-4.35-.48-4.35-1.47v-.13Zm19.82-12.05a17.5 17.5 0 0 1-6.24 3.48c.03.84.03 2.4.03 3.24l1.5.02c-.02 1.63-.04 3.6-.04 4.9 0 3.04 1.6 5.32 6.58 5.32 2.1 0 3.5-.23 5.23-.6a43.77 43.77 0 0 1-.46-4.13c-1.03.34-2.34.53-3.78.53-2 0-2.82-.55-2.82-2.13 0-1.37 0-2.65.03-3.84 2.57.02 5.13.07 6.64.11-.02-1.18.03-2.9.1-4.04-2.2.04-4.65.07-6.68.07l.07-2.93h-.16Zm13.46 6.04a767.33 767.33 0 0 1 .07-3.18H82.6c.07 1.96.07 3.98.07 6.92 0 2.95-.03 4.99-.07 6.93h5.18c-.09-1.37-.11-3.68-.11-5.65 0-3.1 1.26-4 4.12-4 1.33 0 2.28.16 3.1.46.03-1.16.26-3.43.4-4.43-.86-.25-1.81-.41-2.96-.41-2.46-.03-4.26.98-5.1 3.38l-.17-.02Zm22.55 3.65c0 2.5-1.8 3.66-4.64 3.66-2.81 0-4.61-1.1-4.61-3.66s1.82-3.52 4.61-3.52c2.82 0 4.64 1.03 4.64 3.52Zm4.71-.11c0-4.96-3.87-7.18-9.35-7.18-5.5 0-9.23 2.22-9.23 7.18 0 4.94 3.49 7.59 9.21 7.59 5.77 0 9.37-2.65 9.37-7.6Z"/><defs><linearGradient id="a" x1="6.33" x2="19.43" y1="40.8" y2="34.6" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient></defs></svg>
+1
src/assets/background.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" width="1440" height="1024" fill="none"><path fill="url(#a)" fill-rule="evenodd" d="M-217.58 475.75c91.82-72.02 225.52-29.38 341.2-44.74C240 415.56 372.33 315.14 466.77 384.9c102.9 76.02 44.74 246.76 90.31 366.31 29.83 78.24 90.48 136.14 129.48 210.23 57.92 109.99 169.67 208.23 155.9 331.77-13.52 121.26-103.42 264.33-224.23 281.37-141.96 20.03-232.72-220.96-374.06-196.99-151.7 25.73-172.68 330.24-325.85 315.72-128.6-12.2-110.9-230.73-128.15-358.76-12.16-90.14 65.87-176.25 44.1-264.57-26.42-107.2-167.12-163.46-176.72-273.45-10.15-116.29 33.01-248.75 124.87-320.79Z" clip-rule="evenodd" style="opacity:.154"/><path fill="url(#b)" fill-rule="evenodd" d="M1103.43 115.43c146.42-19.45 275.33-155.84 413.5-103.59 188.09 71.13 409 212.64 407.06 413.88-1.94 201.25-259.28 278.6-414.96 405.96-130 106.35-240.24 294.39-405.6 265.3-163.7-28.8-161.93-274.12-284.34-386.66-134.95-124.06-436-101.46-445.82-284.6-9.68-180.38 247.41-246.3 413.54-316.9 101.01-42.93 207.83 21.06 316.62 6.61Z" clip-rule="evenodd" style="opacity:.154"/><defs><linearGradient id="b" x1="373" x2="1995.44" y1="1100" y2="118.03" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient><linearGradient id="a" x1="107.37" x2="1130.66" y1="1993.35" y2="1026.31" gradientUnits="userSpaceOnUse"><stop stop-color="#3245FF"/><stop offset="1" stop-color="#BC52EE"/></linearGradient></defs></svg>
+209
src/components/Welcome.astro
··· 1 + --- 2 + import astroLogo from '../assets/astro.svg'; 3 + import background from '../assets/background.svg'; 4 + --- 5 + 6 + <div id="container"> 7 + <img id="background" src={background.src} alt="" fetchpriority="high" /> 8 + <main> 9 + <section id="hero"> 10 + <a href="https://astro.build" 11 + ><img src={astroLogo.src} width="115" height="48" alt="Astro Homepage" /></a 12 + > 13 + <h1> 14 + To get started, open the <code><pre>src/pages</pre></code> directory in your project. 15 + </h1> 16 + <section id="links"> 17 + <a class="button" href="https://docs.astro.build">Read our docs</a> 18 + <a href="https://astro.build/chat" 19 + >Join our Discord <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127.14 96.36" 20 + ><path 21 + fill="currentColor" 22 + d="M107.7 8.07A105.15 105.15 0 0 0 81.47 0a72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0A72.37 72.37 0 0 0 45.64 0a105.89 105.89 0 0 0-26.25 8.09C2.79 32.65-1.71 56.6.54 80.21a105.73 105.73 0 0 0 32.17 16.15 77.7 77.7 0 0 0 6.89-11.11 68.42 68.42 0 0 1-10.85-5.18c.91-.66 1.8-1.34 2.66-2a75.57 75.57 0 0 0 64.32 0c.87.71 1.76 1.39 2.66 2a68.68 68.68 0 0 1-10.87 5.19 77 77 0 0 0 6.89 11.1 105.25 105.25 0 0 0 32.19-16.14c2.64-27.38-4.51-51.11-18.9-72.15ZM42.45 65.69C36.18 65.69 31 60 31 53s5-12.74 11.43-12.74S54 46 53.89 53s-5.05 12.69-11.44 12.69Zm42.24 0C78.41 65.69 73.25 60 73.25 53s5-12.74 11.44-12.74S96.23 46 96.12 53s-5.04 12.69-11.43 12.69Z" 23 + ></path></svg 24 + > 25 + </a> 26 + </section> 27 + </section> 28 + </main> 29 + 30 + <a href="https://astro.build/blog/astro-5/" id="news" class="box"> 31 + <svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg" 32 + ><path 33 + d="M24.667 12c1.333 1.414 2 3.192 2 5.334 0 4.62-4.934 5.7-7.334 12C18.444 28.567 18 27.456 18 26c0-4.642 6.667-7.053 6.667-14Zm-5.334-5.333c1.6 1.65 2.4 3.43 2.4 5.333 0 6.602-8.06 7.59-6.4 17.334C13.111 27.787 12 25.564 12 22.666c0-4.434 7.333-8 7.333-16Zm-6-5.333C15.111 3.555 16 5.556 16 7.333c0 8.333-11.333 10.962-5.333 22-3.488-.774-6-4-6-8 0-8.667 8.666-10 8.666-20Z" 34 + fill="#111827"></path></svg 35 + > 36 + <h2>What's New in Astro 5.0?</h2> 37 + <p> 38 + From content layers to server islands, click to learn more about the new features and 39 + improvements in Astro 5.0 40 + </p> 41 + </a> 42 + </div> 43 + 44 + <style> 45 + #background { 46 + position: fixed; 47 + top: 0; 48 + left: 0; 49 + width: 100%; 50 + height: 100%; 51 + z-index: -1; 52 + filter: blur(100px); 53 + } 54 + 55 + #container { 56 + font-family: Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif; 57 + height: 100%; 58 + } 59 + 60 + main { 61 + height: 100%; 62 + display: flex; 63 + justify-content: center; 64 + } 65 + 66 + #hero { 67 + display: flex; 68 + align-items: start; 69 + flex-direction: column; 70 + justify-content: center; 71 + padding: 16px; 72 + } 73 + 74 + h1 { 75 + font-size: 22px; 76 + margin-top: 0.25em; 77 + } 78 + 79 + #links { 80 + display: flex; 81 + gap: 16px; 82 + } 83 + 84 + #links a { 85 + display: flex; 86 + align-items: center; 87 + padding: 10px 12px; 88 + color: #111827; 89 + text-decoration: none; 90 + transition: color 0.2s; 91 + } 92 + 93 + #links a:hover { 94 + color: rgb(78, 80, 86); 95 + } 96 + 97 + #links a svg { 98 + height: 1em; 99 + margin-left: 8px; 100 + } 101 + 102 + #links a.button { 103 + color: white; 104 + background: linear-gradient(83.21deg, #3245ff 0%, #bc52ee 100%); 105 + box-shadow: 106 + inset 0 0 0 1px rgba(255, 255, 255, 0.12), 107 + inset 0 -2px 0 rgba(0, 0, 0, 0.24); 108 + border-radius: 10px; 109 + } 110 + 111 + #links a.button:hover { 112 + color: rgb(230, 230, 230); 113 + box-shadow: none; 114 + } 115 + 116 + pre { 117 + font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 118 + 'DejaVu Sans Mono', monospace; 119 + font-weight: normal; 120 + background: linear-gradient(14deg, #d83333 0%, #f041ff 100%); 121 + -webkit-background-clip: text; 122 + -webkit-text-fill-color: transparent; 123 + background-clip: text; 124 + margin: 0; 125 + } 126 + 127 + h2 { 128 + margin: 0 0 1em; 129 + font-weight: normal; 130 + color: #111827; 131 + font-size: 20px; 132 + } 133 + 134 + p { 135 + color: #4b5563; 136 + font-size: 16px; 137 + line-height: 24px; 138 + letter-spacing: -0.006em; 139 + margin: 0; 140 + } 141 + 142 + code { 143 + display: inline-block; 144 + background: 145 + linear-gradient(66.77deg, #f3cddd 0%, #f5cee7 100%) padding-box, 146 + linear-gradient(155deg, #d83333 0%, #f041ff 18%, #f5cee7 45%) border-box; 147 + border-radius: 8px; 148 + border: 1px solid transparent; 149 + padding: 6px 8px; 150 + } 151 + 152 + .box { 153 + padding: 16px; 154 + background: rgba(255, 255, 255, 1); 155 + border-radius: 16px; 156 + border: 1px solid white; 157 + } 158 + 159 + #news { 160 + position: absolute; 161 + bottom: 16px; 162 + right: 16px; 163 + max-width: 300px; 164 + text-decoration: none; 165 + transition: background 0.2s; 166 + backdrop-filter: blur(50px); 167 + } 168 + 169 + #news:hover { 170 + background: rgba(255, 255, 255, 0.55); 171 + } 172 + 173 + @media screen and (max-height: 368px) { 174 + #news { 175 + display: none; 176 + } 177 + } 178 + 179 + @media screen and (max-width: 768px) { 180 + #container { 181 + display: flex; 182 + flex-direction: column; 183 + } 184 + 185 + #hero { 186 + display: block; 187 + padding-top: 10%; 188 + } 189 + 190 + #links { 191 + flex-wrap: wrap; 192 + } 193 + 194 + #links a.button { 195 + padding: 14px 18px; 196 + } 197 + 198 + #news { 199 + right: 16px; 200 + left: 16px; 201 + bottom: 2.5rem; 202 + max-width: 100%; 203 + } 204 + 205 + h1 { 206 + line-height: 1.5; 207 + } 208 + } 209 + </style>
+22
src/layouts/Layout.astro
··· 1 + <!doctype html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8" /> 5 + <meta name="viewport" content="width=device-width" /> 6 + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 7 + <meta name="generator" content={Astro.generator} /> 8 + <title>Astro Basics</title> 9 + </head> 10 + <body> 11 + <slot /> 12 + </body> 13 + </html> 14 + 15 + <style> 16 + html, 17 + body { 18 + margin: 0; 19 + width: 100%; 20 + height: 100%; 21 + } 22 + </style>
+11
src/pages/index.astro
··· 1 + --- 2 + import Welcome from '../components/Welcome.astro'; 3 + import Layout from '../layouts/Layout.astro'; 4 + 5 + // Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build 6 + // Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh. 7 + --- 8 + 9 + <Layout> 10 + <Welcome /> 11 + </Layout>
+5
tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strict", 3 + "include": [".astro/types.d.ts", "**/*"], 4 + "exclude": ["dist"] 5 + }