Mirror of
0
fork

Configure Feed

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

Initial setup

trueberryless 0618d600

+5088
+21
starlight/.gitignore
··· 1 + # build output 2 + dist/ 3 + # generated types 4 + .astro/ 5 + 6 + # dependencies 7 + node_modules/ 8 + 9 + # logs 10 + npm-debug.log* 11 + yarn-debug.log* 12 + yarn-error.log* 13 + pnpm-debug.log* 14 + 15 + 16 + # environment variables 17 + .env 18 + .env.production 19 + 20 + # macOS-specific files 21 + .DS_Store
+4
starlight/.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["astro-build.astro-vscode"], 3 + "unwantedRecommendations": [] 4 + }
+11
starlight/.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 + }
+54
starlight/README.md
··· 1 + # Starlight Starter Kit: Basics 2 + 3 + [![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) 4 + 5 + ``` 6 + npm create astro@latest -- --template starlight 7 + ``` 8 + 9 + [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) 10 + [![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/basics) 11 + [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/withastro/starlight&create_from_path=examples/basics) 12 + [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fbasics&project-name=my-starlight-docs&repository-name=my-starlight-docs) 13 + 14 + > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 15 + 16 + ## 🚀 Project Structure 17 + 18 + Inside of your Astro + Starlight project, you'll see the following folders and files: 19 + 20 + ``` 21 + . 22 + ├── public/ 23 + ├── src/ 24 + │ ├── assets/ 25 + │ ├── content/ 26 + │ │ ├── docs/ 27 + │ └── content.config.ts 28 + ├── astro.config.mjs 29 + ├── package.json 30 + └── tsconfig.json 31 + ``` 32 + 33 + Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. 34 + 35 + Images can be added to `src/assets/` and embedded in Markdown with a relative link. 36 + 37 + Static assets, like favicons, can be placed in the `public/` directory. 38 + 39 + ## 🧞 Commands 40 + 41 + All commands are run from the root of the project, from a terminal: 42 + 43 + | Command | Action | 44 + | :------------------------ | :----------------------------------------------- | 45 + | `npm install` | Installs dependencies | 46 + | `npm run dev` | Starts local dev server at `localhost:4321` | 47 + | `npm run build` | Build your production site to `./dist/` | 48 + | `npm run preview` | Preview your build locally, before deploying | 49 + | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | 50 + | `npm run astro -- --help` | Get help using the Astro CLI | 51 + 52 + ## 👀 Want to learn more? 53 + 54 + Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).
+23
starlight/astro.config.mjs
··· 1 + // @ts-check 2 + import { defineConfig } from "astro/config"; 3 + import starlight from "@astrojs/starlight"; 4 + import starlightVideos from "starlight-videos"; 5 + 6 + // https://astro.build/config 7 + export default defineConfig({ 8 + integrations: [ 9 + starlight({ 10 + title: "Videos", 11 + social: { 12 + github: "https://github.com/withastro/starlight", 13 + }, 14 + sidebar: [ 15 + { 16 + label: "Videos", 17 + autogenerate: { directory: "videos" }, 18 + }, 19 + ], 20 + plugins: [starlightVideos()], 21 + }), 22 + ], 23 + });
+18
starlight/package.json
··· 1 + { 2 + "name": "starlight", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "scripts": { 6 + "dev": "astro dev", 7 + "start": "astro dev", 8 + "build": "astro build", 9 + "preview": "astro preview", 10 + "astro": "astro" 11 + }, 12 + "dependencies": { 13 + "@astrojs/starlight": "^0.30.5", 14 + "astro": "^5.0.2", 15 + "sharp": "^0.32.5", 16 + "starlight-videos": "^0.1.0" 17 + } 18 + }
+4748
starlight/pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: 10 + dependencies: 11 + '@astrojs/starlight': 12 + specifier: ^0.30.5 13 + version: 0.30.5(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)) 14 + astro: 15 + specifier: ^5.0.2 16 + version: 5.1.3(rollup@4.30.1)(typescript@5.7.3) 17 + sharp: 18 + specifier: ^0.32.5 19 + version: 0.32.6 20 + starlight-videos: 21 + specifier: ^0.1.0 22 + version: 0.1.0(@astrojs/starlight@0.30.5(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)))(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)) 23 + 24 + packages: 25 + 26 + '@astro-community/astro-embed-youtube@0.5.6': 27 + resolution: {integrity: sha512-/mRfCl/eTBUz0kmjD1psOy0qoDDBorVp0QumUacjFcIkBullYtbeFQ2ZGZ+3N/tA6cR/OIyzr2QA4dQXlY6USg==} 28 + peerDependencies: 29 + astro: ^2.0.0 || ^3.0.0-beta || ^4.0.0-beta || ^5.0.0-beta 30 + 31 + '@astrojs/compiler@2.10.3': 32 + resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} 33 + 34 + '@astrojs/internal-helpers@0.4.2': 35 + resolution: {integrity: sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==} 36 + 37 + '@astrojs/markdown-remark@6.0.1': 38 + resolution: {integrity: sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==} 39 + 40 + '@astrojs/mdx@4.0.3': 41 + resolution: {integrity: sha512-8HcuyNG/KgYUAQWVzKFkboXcTOBCW6aQ0WK0Er/iSmVSF0y3yimg4/3QSt+Twv9dogpwIHL+E8iBJKqieFv4+g==} 42 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 43 + peerDependencies: 44 + astro: ^5.0.0 45 + 46 + '@astrojs/prism@3.2.0': 47 + resolution: {integrity: sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==} 48 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 49 + 50 + '@astrojs/sitemap@3.2.1': 51 + resolution: {integrity: sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==} 52 + 53 + '@astrojs/starlight@0.30.5': 54 + resolution: {integrity: sha512-enQISKa2K3DtFqU55PT8zskCT7180DJwOT9yFVh9MYT4csolvCBu2RVjQeXu7z+3hoLHvCcofN8FshCLA+iQQQ==} 55 + peerDependencies: 56 + astro: ^5.0.0 57 + 58 + '@astrojs/telemetry@3.2.0': 59 + resolution: {integrity: sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==} 60 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 61 + 62 + '@babel/helper-string-parser@7.25.9': 63 + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 64 + engines: {node: '>=6.9.0'} 65 + 66 + '@babel/helper-validator-identifier@7.25.9': 67 + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 68 + engines: {node: '>=6.9.0'} 69 + 70 + '@babel/parser@7.26.3': 71 + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} 72 + engines: {node: '>=6.0.0'} 73 + hasBin: true 74 + 75 + '@babel/runtime@7.26.0': 76 + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} 77 + engines: {node: '>=6.9.0'} 78 + 79 + '@babel/types@7.26.3': 80 + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 81 + engines: {node: '>=6.9.0'} 82 + 83 + '@ctrl/tinycolor@4.1.0': 84 + resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==} 85 + engines: {node: '>=14'} 86 + 87 + '@emnapi/runtime@1.3.1': 88 + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 89 + 90 + '@esbuild/aix-ppc64@0.21.5': 91 + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 92 + engines: {node: '>=12'} 93 + cpu: [ppc64] 94 + os: [aix] 95 + 96 + '@esbuild/aix-ppc64@0.24.2': 97 + resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} 98 + engines: {node: '>=18'} 99 + cpu: [ppc64] 100 + os: [aix] 101 + 102 + '@esbuild/android-arm64@0.21.5': 103 + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 104 + engines: {node: '>=12'} 105 + cpu: [arm64] 106 + os: [android] 107 + 108 + '@esbuild/android-arm64@0.24.2': 109 + resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} 110 + engines: {node: '>=18'} 111 + cpu: [arm64] 112 + os: [android] 113 + 114 + '@esbuild/android-arm@0.21.5': 115 + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 116 + engines: {node: '>=12'} 117 + cpu: [arm] 118 + os: [android] 119 + 120 + '@esbuild/android-arm@0.24.2': 121 + resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} 122 + engines: {node: '>=18'} 123 + cpu: [arm] 124 + os: [android] 125 + 126 + '@esbuild/android-x64@0.21.5': 127 + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 128 + engines: {node: '>=12'} 129 + cpu: [x64] 130 + os: [android] 131 + 132 + '@esbuild/android-x64@0.24.2': 133 + resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} 134 + engines: {node: '>=18'} 135 + cpu: [x64] 136 + os: [android] 137 + 138 + '@esbuild/darwin-arm64@0.21.5': 139 + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 140 + engines: {node: '>=12'} 141 + cpu: [arm64] 142 + os: [darwin] 143 + 144 + '@esbuild/darwin-arm64@0.24.2': 145 + resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} 146 + engines: {node: '>=18'} 147 + cpu: [arm64] 148 + os: [darwin] 149 + 150 + '@esbuild/darwin-x64@0.21.5': 151 + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 152 + engines: {node: '>=12'} 153 + cpu: [x64] 154 + os: [darwin] 155 + 156 + '@esbuild/darwin-x64@0.24.2': 157 + resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} 158 + engines: {node: '>=18'} 159 + cpu: [x64] 160 + os: [darwin] 161 + 162 + '@esbuild/freebsd-arm64@0.21.5': 163 + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 164 + engines: {node: '>=12'} 165 + cpu: [arm64] 166 + os: [freebsd] 167 + 168 + '@esbuild/freebsd-arm64@0.24.2': 169 + resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} 170 + engines: {node: '>=18'} 171 + cpu: [arm64] 172 + os: [freebsd] 173 + 174 + '@esbuild/freebsd-x64@0.21.5': 175 + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 176 + engines: {node: '>=12'} 177 + cpu: [x64] 178 + os: [freebsd] 179 + 180 + '@esbuild/freebsd-x64@0.24.2': 181 + resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} 182 + engines: {node: '>=18'} 183 + cpu: [x64] 184 + os: [freebsd] 185 + 186 + '@esbuild/linux-arm64@0.21.5': 187 + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 188 + engines: {node: '>=12'} 189 + cpu: [arm64] 190 + os: [linux] 191 + 192 + '@esbuild/linux-arm64@0.24.2': 193 + resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} 194 + engines: {node: '>=18'} 195 + cpu: [arm64] 196 + os: [linux] 197 + 198 + '@esbuild/linux-arm@0.21.5': 199 + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 200 + engines: {node: '>=12'} 201 + cpu: [arm] 202 + os: [linux] 203 + 204 + '@esbuild/linux-arm@0.24.2': 205 + resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} 206 + engines: {node: '>=18'} 207 + cpu: [arm] 208 + os: [linux] 209 + 210 + '@esbuild/linux-ia32@0.21.5': 211 + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 212 + engines: {node: '>=12'} 213 + cpu: [ia32] 214 + os: [linux] 215 + 216 + '@esbuild/linux-ia32@0.24.2': 217 + resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} 218 + engines: {node: '>=18'} 219 + cpu: [ia32] 220 + os: [linux] 221 + 222 + '@esbuild/linux-loong64@0.21.5': 223 + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 224 + engines: {node: '>=12'} 225 + cpu: [loong64] 226 + os: [linux] 227 + 228 + '@esbuild/linux-loong64@0.24.2': 229 + resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} 230 + engines: {node: '>=18'} 231 + cpu: [loong64] 232 + os: [linux] 233 + 234 + '@esbuild/linux-mips64el@0.21.5': 235 + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 236 + engines: {node: '>=12'} 237 + cpu: [mips64el] 238 + os: [linux] 239 + 240 + '@esbuild/linux-mips64el@0.24.2': 241 + resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} 242 + engines: {node: '>=18'} 243 + cpu: [mips64el] 244 + os: [linux] 245 + 246 + '@esbuild/linux-ppc64@0.21.5': 247 + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 248 + engines: {node: '>=12'} 249 + cpu: [ppc64] 250 + os: [linux] 251 + 252 + '@esbuild/linux-ppc64@0.24.2': 253 + resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} 254 + engines: {node: '>=18'} 255 + cpu: [ppc64] 256 + os: [linux] 257 + 258 + '@esbuild/linux-riscv64@0.21.5': 259 + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 260 + engines: {node: '>=12'} 261 + cpu: [riscv64] 262 + os: [linux] 263 + 264 + '@esbuild/linux-riscv64@0.24.2': 265 + resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} 266 + engines: {node: '>=18'} 267 + cpu: [riscv64] 268 + os: [linux] 269 + 270 + '@esbuild/linux-s390x@0.21.5': 271 + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 272 + engines: {node: '>=12'} 273 + cpu: [s390x] 274 + os: [linux] 275 + 276 + '@esbuild/linux-s390x@0.24.2': 277 + resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} 278 + engines: {node: '>=18'} 279 + cpu: [s390x] 280 + os: [linux] 281 + 282 + '@esbuild/linux-x64@0.21.5': 283 + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 284 + engines: {node: '>=12'} 285 + cpu: [x64] 286 + os: [linux] 287 + 288 + '@esbuild/linux-x64@0.24.2': 289 + resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} 290 + engines: {node: '>=18'} 291 + cpu: [x64] 292 + os: [linux] 293 + 294 + '@esbuild/netbsd-arm64@0.24.2': 295 + resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} 296 + engines: {node: '>=18'} 297 + cpu: [arm64] 298 + os: [netbsd] 299 + 300 + '@esbuild/netbsd-x64@0.21.5': 301 + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 302 + engines: {node: '>=12'} 303 + cpu: [x64] 304 + os: [netbsd] 305 + 306 + '@esbuild/netbsd-x64@0.24.2': 307 + resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} 308 + engines: {node: '>=18'} 309 + cpu: [x64] 310 + os: [netbsd] 311 + 312 + '@esbuild/openbsd-arm64@0.24.2': 313 + resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} 314 + engines: {node: '>=18'} 315 + cpu: [arm64] 316 + os: [openbsd] 317 + 318 + '@esbuild/openbsd-x64@0.21.5': 319 + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 320 + engines: {node: '>=12'} 321 + cpu: [x64] 322 + os: [openbsd] 323 + 324 + '@esbuild/openbsd-x64@0.24.2': 325 + resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} 326 + engines: {node: '>=18'} 327 + cpu: [x64] 328 + os: [openbsd] 329 + 330 + '@esbuild/sunos-x64@0.21.5': 331 + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 332 + engines: {node: '>=12'} 333 + cpu: [x64] 334 + os: [sunos] 335 + 336 + '@esbuild/sunos-x64@0.24.2': 337 + resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} 338 + engines: {node: '>=18'} 339 + cpu: [x64] 340 + os: [sunos] 341 + 342 + '@esbuild/win32-arm64@0.21.5': 343 + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 344 + engines: {node: '>=12'} 345 + cpu: [arm64] 346 + os: [win32] 347 + 348 + '@esbuild/win32-arm64@0.24.2': 349 + resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} 350 + engines: {node: '>=18'} 351 + cpu: [arm64] 352 + os: [win32] 353 + 354 + '@esbuild/win32-ia32@0.21.5': 355 + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 356 + engines: {node: '>=12'} 357 + cpu: [ia32] 358 + os: [win32] 359 + 360 + '@esbuild/win32-ia32@0.24.2': 361 + resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} 362 + engines: {node: '>=18'} 363 + cpu: [ia32] 364 + os: [win32] 365 + 366 + '@esbuild/win32-x64@0.21.5': 367 + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 368 + engines: {node: '>=12'} 369 + cpu: [x64] 370 + os: [win32] 371 + 372 + '@esbuild/win32-x64@0.24.2': 373 + resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} 374 + engines: {node: '>=18'} 375 + cpu: [x64] 376 + os: [win32] 377 + 378 + '@expressive-code/core@0.38.3': 379 + resolution: {integrity: sha512-s0/OtdRpBONwcn23O8nVwDNQqpBGKscysejkeBkwlIeHRLZWgiTVrusT5Idrdz1d8cW5wRk9iGsAIQmwDPXgJg==} 380 + 381 + '@expressive-code/plugin-frames@0.38.3': 382 + resolution: {integrity: sha512-qL2oC6FplmHNQfZ8ZkTR64/wKo9x0c8uP2WDftR/ydwN/yhe1ed7ZWYb8r3dezxsls+tDokCnN4zYR594jbpvg==} 383 + 384 + '@expressive-code/plugin-shiki@0.38.3': 385 + resolution: {integrity: sha512-kqHnglZeesqG3UKrb6e9Fq5W36AZ05Y9tCREmSN2lw8LVTqENIeCIkLDdWtQ5VoHlKqwUEQFTVlRehdwoY7Gmw==} 386 + 387 + '@expressive-code/plugin-text-markers@0.38.3': 388 + resolution: {integrity: sha512-dPK3+BVGTbTmGQGU3Fkj3jZ3OltWUAlxetMHI6limUGCWBCucZiwoZeFM/WmqQa71GyKRzhBT+iEov6kkz2xVA==} 389 + 390 + '@img/sharp-darwin-arm64@0.33.5': 391 + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 392 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 393 + cpu: [arm64] 394 + os: [darwin] 395 + 396 + '@img/sharp-darwin-x64@0.33.5': 397 + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 398 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 399 + cpu: [x64] 400 + os: [darwin] 401 + 402 + '@img/sharp-libvips-darwin-arm64@1.0.4': 403 + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 404 + cpu: [arm64] 405 + os: [darwin] 406 + 407 + '@img/sharp-libvips-darwin-x64@1.0.4': 408 + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 409 + cpu: [x64] 410 + os: [darwin] 411 + 412 + '@img/sharp-libvips-linux-arm64@1.0.4': 413 + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 414 + cpu: [arm64] 415 + os: [linux] 416 + 417 + '@img/sharp-libvips-linux-arm@1.0.5': 418 + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 419 + cpu: [arm] 420 + os: [linux] 421 + 422 + '@img/sharp-libvips-linux-s390x@1.0.4': 423 + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 424 + cpu: [s390x] 425 + os: [linux] 426 + 427 + '@img/sharp-libvips-linux-x64@1.0.4': 428 + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 429 + cpu: [x64] 430 + os: [linux] 431 + 432 + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 433 + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 434 + cpu: [arm64] 435 + os: [linux] 436 + 437 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': 438 + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 439 + cpu: [x64] 440 + os: [linux] 441 + 442 + '@img/sharp-linux-arm64@0.33.5': 443 + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 444 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 445 + cpu: [arm64] 446 + os: [linux] 447 + 448 + '@img/sharp-linux-arm@0.33.5': 449 + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 450 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 451 + cpu: [arm] 452 + os: [linux] 453 + 454 + '@img/sharp-linux-s390x@0.33.5': 455 + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 456 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 457 + cpu: [s390x] 458 + os: [linux] 459 + 460 + '@img/sharp-linux-x64@0.33.5': 461 + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 462 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 463 + cpu: [x64] 464 + os: [linux] 465 + 466 + '@img/sharp-linuxmusl-arm64@0.33.5': 467 + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 468 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 469 + cpu: [arm64] 470 + os: [linux] 471 + 472 + '@img/sharp-linuxmusl-x64@0.33.5': 473 + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 474 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 475 + cpu: [x64] 476 + os: [linux] 477 + 478 + '@img/sharp-wasm32@0.33.5': 479 + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 480 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 481 + cpu: [wasm32] 482 + 483 + '@img/sharp-win32-ia32@0.33.5': 484 + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 485 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 486 + cpu: [ia32] 487 + os: [win32] 488 + 489 + '@img/sharp-win32-x64@0.33.5': 490 + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 491 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 492 + cpu: [x64] 493 + os: [win32] 494 + 495 + '@jridgewell/sourcemap-codec@1.5.0': 496 + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 497 + 498 + '@mdx-js/mdx@3.1.0': 499 + resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==} 500 + 501 + '@nodelib/fs.scandir@2.1.5': 502 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 503 + engines: {node: '>= 8'} 504 + 505 + '@nodelib/fs.stat@2.0.5': 506 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 507 + engines: {node: '>= 8'} 508 + 509 + '@nodelib/fs.walk@1.2.8': 510 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 511 + engines: {node: '>= 8'} 512 + 513 + '@oslojs/encoding@1.1.0': 514 + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 515 + 516 + '@pagefind/darwin-arm64@1.3.0': 517 + resolution: {integrity: sha512-365BEGl6ChOsauRjyVpBjXybflXAOvoMROw3TucAROHIcdBvXk9/2AmEvGFU0r75+vdQI4LJdJdpH4Y6Yqaj4A==} 518 + cpu: [arm64] 519 + os: [darwin] 520 + 521 + '@pagefind/darwin-x64@1.3.0': 522 + resolution: {integrity: sha512-zlGHA23uuXmS8z3XxEGmbHpWDxXfPZ47QS06tGUq0HDcZjXjXHeLG+cboOy828QIV5FXsm9MjfkP5e4ZNbOkow==} 523 + cpu: [x64] 524 + os: [darwin] 525 + 526 + '@pagefind/default-ui@1.3.0': 527 + resolution: {integrity: sha512-CGKT9ccd3+oRK6STXGgfH+m0DbOKayX6QGlq38TfE1ZfUcPc5+ulTuzDbZUnMo+bubsEOIypm4Pl2iEyzZ1cNg==} 528 + 529 + '@pagefind/linux-arm64@1.3.0': 530 + resolution: {integrity: sha512-8lsxNAiBRUk72JvetSBXs4WRpYrQrVJXjlRRnOL6UCdBN9Nlsz0t7hWstRk36+JqHpGWOKYiuHLzGYqYAqoOnQ==} 531 + cpu: [arm64] 532 + os: [linux] 533 + 534 + '@pagefind/linux-x64@1.3.0': 535 + resolution: {integrity: sha512-hAvqdPJv7A20Ucb6FQGE6jhjqy+vZ6pf+s2tFMNtMBG+fzcdc91uTw7aP/1Vo5plD0dAOHwdxfkyw0ugal4kcQ==} 536 + cpu: [x64] 537 + os: [linux] 538 + 539 + '@pagefind/windows-x64@1.3.0': 540 + resolution: {integrity: sha512-BR1bIRWOMqkf8IoU576YDhij1Wd/Zf2kX/kCI0b2qzCKC8wcc2GQJaaRMCpzvCCrmliO4vtJ6RITp/AnoYUUmQ==} 541 + cpu: [x64] 542 + os: [win32] 543 + 544 + '@rollup/pluginutils@5.1.4': 545 + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} 546 + engines: {node: '>=14.0.0'} 547 + peerDependencies: 548 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 549 + peerDependenciesMeta: 550 + rollup: 551 + optional: true 552 + 553 + '@rollup/rollup-android-arm-eabi@4.30.1': 554 + resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} 555 + cpu: [arm] 556 + os: [android] 557 + 558 + '@rollup/rollup-android-arm64@4.30.1': 559 + resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} 560 + cpu: [arm64] 561 + os: [android] 562 + 563 + '@rollup/rollup-darwin-arm64@4.30.1': 564 + resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} 565 + cpu: [arm64] 566 + os: [darwin] 567 + 568 + '@rollup/rollup-darwin-x64@4.30.1': 569 + resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} 570 + cpu: [x64] 571 + os: [darwin] 572 + 573 + '@rollup/rollup-freebsd-arm64@4.30.1': 574 + resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} 575 + cpu: [arm64] 576 + os: [freebsd] 577 + 578 + '@rollup/rollup-freebsd-x64@4.30.1': 579 + resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} 580 + cpu: [x64] 581 + os: [freebsd] 582 + 583 + '@rollup/rollup-linux-arm-gnueabihf@4.30.1': 584 + resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} 585 + cpu: [arm] 586 + os: [linux] 587 + 588 + '@rollup/rollup-linux-arm-musleabihf@4.30.1': 589 + resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} 590 + cpu: [arm] 591 + os: [linux] 592 + 593 + '@rollup/rollup-linux-arm64-gnu@4.30.1': 594 + resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} 595 + cpu: [arm64] 596 + os: [linux] 597 + 598 + '@rollup/rollup-linux-arm64-musl@4.30.1': 599 + resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} 600 + cpu: [arm64] 601 + os: [linux] 602 + 603 + '@rollup/rollup-linux-loongarch64-gnu@4.30.1': 604 + resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} 605 + cpu: [loong64] 606 + os: [linux] 607 + 608 + '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': 609 + resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} 610 + cpu: [ppc64] 611 + os: [linux] 612 + 613 + '@rollup/rollup-linux-riscv64-gnu@4.30.1': 614 + resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} 615 + cpu: [riscv64] 616 + os: [linux] 617 + 618 + '@rollup/rollup-linux-s390x-gnu@4.30.1': 619 + resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} 620 + cpu: [s390x] 621 + os: [linux] 622 + 623 + '@rollup/rollup-linux-x64-gnu@4.30.1': 624 + resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} 625 + cpu: [x64] 626 + os: [linux] 627 + 628 + '@rollup/rollup-linux-x64-musl@4.30.1': 629 + resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} 630 + cpu: [x64] 631 + os: [linux] 632 + 633 + '@rollup/rollup-win32-arm64-msvc@4.30.1': 634 + resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} 635 + cpu: [arm64] 636 + os: [win32] 637 + 638 + '@rollup/rollup-win32-ia32-msvc@4.30.1': 639 + resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} 640 + cpu: [ia32] 641 + os: [win32] 642 + 643 + '@rollup/rollup-win32-x64-msvc@4.30.1': 644 + resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} 645 + cpu: [x64] 646 + os: [win32] 647 + 648 + '@shikijs/core@1.26.1': 649 + resolution: {integrity: sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==} 650 + 651 + '@shikijs/engine-javascript@1.26.1': 652 + resolution: {integrity: sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==} 653 + 654 + '@shikijs/engine-oniguruma@1.26.1': 655 + resolution: {integrity: sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==} 656 + 657 + '@shikijs/langs@1.26.1': 658 + resolution: {integrity: sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==} 659 + 660 + '@shikijs/themes@1.26.1': 661 + resolution: {integrity: sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==} 662 + 663 + '@shikijs/types@1.26.1': 664 + resolution: {integrity: sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==} 665 + 666 + '@shikijs/vscode-textmate@10.0.1': 667 + resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} 668 + 669 + '@types/acorn@4.0.6': 670 + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} 671 + 672 + '@types/cookie@0.6.0': 673 + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 674 + 675 + '@types/debug@4.1.12': 676 + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 677 + 678 + '@types/estree-jsx@1.0.5': 679 + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} 680 + 681 + '@types/estree@1.0.6': 682 + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 683 + 684 + '@types/hast@3.0.4': 685 + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 686 + 687 + '@types/js-yaml@4.0.9': 688 + resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} 689 + 690 + '@types/mdast@4.0.4': 691 + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 692 + 693 + '@types/mdx@2.0.13': 694 + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} 695 + 696 + '@types/ms@0.7.34': 697 + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 698 + 699 + '@types/nlcst@2.0.3': 700 + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 701 + 702 + '@types/node@17.0.45': 703 + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} 704 + 705 + '@types/sax@1.2.7': 706 + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} 707 + 708 + '@types/unist@2.0.11': 709 + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} 710 + 711 + '@types/unist@3.0.3': 712 + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 713 + 714 + '@ungap/structured-clone@1.2.1': 715 + resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} 716 + 717 + acorn-jsx@5.3.2: 718 + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 719 + peerDependencies: 720 + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 721 + 722 + acorn@8.14.0: 723 + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 724 + engines: {node: '>=0.4.0'} 725 + hasBin: true 726 + 727 + ansi-align@3.0.1: 728 + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 729 + 730 + ansi-regex@5.0.1: 731 + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 732 + engines: {node: '>=8'} 733 + 734 + ansi-regex@6.1.0: 735 + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 736 + engines: {node: '>=12'} 737 + 738 + ansi-styles@6.2.1: 739 + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 740 + engines: {node: '>=12'} 741 + 742 + anymatch@3.1.3: 743 + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 744 + engines: {node: '>= 8'} 745 + 746 + arg@5.0.2: 747 + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 748 + 749 + argparse@1.0.10: 750 + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 751 + 752 + argparse@2.0.1: 753 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 754 + 755 + aria-query@5.3.2: 756 + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 757 + engines: {node: '>= 0.4'} 758 + 759 + array-iterate@2.0.1: 760 + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 761 + 762 + astring@1.9.0: 763 + resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} 764 + hasBin: true 765 + 766 + astro-expressive-code@0.38.3: 767 + resolution: {integrity: sha512-Tvdc7RV0G92BbtyEOsfJtXU35w41CkM94fOAzxbQP67Wj5jArfserJ321FO4XA7WG9QMV0GIBmQq77NBIRDzpQ==} 768 + peerDependencies: 769 + astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0 770 + 771 + astro@5.1.3: 772 + resolution: {integrity: sha512-Zl/B4hmueJmlI5FJQcwbBRhHbRvbTWaTJzimkbH+jYczR5blt4uSh0DheyAt/+NwcnGfiC11z/XXJYIBR4LPUw==} 773 + engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 774 + hasBin: true 775 + 776 + axobject-query@4.1.0: 777 + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 778 + engines: {node: '>= 0.4'} 779 + 780 + b4a@1.6.7: 781 + resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} 782 + 783 + bail@2.0.2: 784 + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 785 + 786 + bare-events@2.5.3: 787 + resolution: {integrity: sha512-pCO3aoRJ0MBiRMu8B7vUga0qL3L7gO1+SW7ku6qlSsMLwuhaawnuvZDyzJY/kyC63Un0XAB0OPUcfF1eTO/V+Q==} 788 + 789 + bare-fs@2.3.5: 790 + resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==} 791 + 792 + bare-os@2.4.4: 793 + resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==} 794 + 795 + bare-path@2.1.3: 796 + resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==} 797 + 798 + bare-stream@2.6.1: 799 + resolution: {integrity: sha512-eVZbtKM+4uehzrsj49KtCy3Pbg7kO1pJ3SKZ1SFrIH/0pnj9scuGGgUlNDf/7qS8WKtGdiJY5Kyhs/ivYPTB/g==} 800 + 801 + base-64@1.0.0: 802 + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 803 + 804 + base64-js@1.5.1: 805 + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 806 + 807 + bcp-47-match@2.0.3: 808 + resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} 809 + 810 + bcp-47@2.1.0: 811 + resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} 812 + 813 + binary-extensions@2.3.0: 814 + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 815 + engines: {node: '>=8'} 816 + 817 + bl@4.1.0: 818 + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 819 + 820 + boolbase@1.0.0: 821 + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 822 + 823 + boxen@8.0.1: 824 + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 825 + engines: {node: '>=18'} 826 + 827 + braces@3.0.3: 828 + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 829 + engines: {node: '>=8'} 830 + 831 + buffer@5.7.1: 832 + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 833 + 834 + camelcase@8.0.0: 835 + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 836 + engines: {node: '>=16'} 837 + 838 + ccount@2.0.1: 839 + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 840 + 841 + chalk@5.4.1: 842 + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 843 + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 844 + 845 + character-entities-html4@2.1.0: 846 + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 847 + 848 + character-entities-legacy@3.0.0: 849 + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 850 + 851 + character-entities@2.0.2: 852 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 853 + 854 + character-reference-invalid@2.0.1: 855 + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} 856 + 857 + chokidar@3.6.0: 858 + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 859 + engines: {node: '>= 8.10.0'} 860 + 861 + chownr@1.1.4: 862 + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 863 + 864 + ci-info@4.1.0: 865 + resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} 866 + engines: {node: '>=8'} 867 + 868 + cli-boxes@3.0.0: 869 + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 870 + engines: {node: '>=10'} 871 + 872 + clsx@2.1.1: 873 + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 874 + engines: {node: '>=6'} 875 + 876 + collapse-white-space@2.1.0: 877 + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} 878 + 879 + color-convert@2.0.1: 880 + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 881 + engines: {node: '>=7.0.0'} 882 + 883 + color-name@1.1.4: 884 + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 885 + 886 + color-string@1.9.1: 887 + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 888 + 889 + color@4.2.3: 890 + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 891 + engines: {node: '>=12.5.0'} 892 + 893 + comma-separated-tokens@2.0.3: 894 + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 895 + 896 + common-ancestor-path@1.0.1: 897 + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 898 + 899 + consola@3.3.3: 900 + resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} 901 + engines: {node: ^14.18.0 || >=16.10.0} 902 + 903 + cookie-es@1.2.2: 904 + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 905 + 906 + cookie@0.7.2: 907 + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 908 + engines: {node: '>= 0.6'} 909 + 910 + crossws@0.3.1: 911 + resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==} 912 + 913 + css-selector-parser@3.0.5: 914 + resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} 915 + 916 + cssesc@3.0.0: 917 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 918 + engines: {node: '>=4'} 919 + hasBin: true 920 + 921 + debug@4.4.0: 922 + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 923 + engines: {node: '>=6.0'} 924 + peerDependencies: 925 + supports-color: '*' 926 + peerDependenciesMeta: 927 + supports-color: 928 + optional: true 929 + 930 + decode-named-character-reference@1.0.2: 931 + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 932 + 933 + decompress-response@6.0.0: 934 + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 935 + engines: {node: '>=10'} 936 + 937 + deep-extend@0.6.0: 938 + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 939 + engines: {node: '>=4.0.0'} 940 + 941 + defu@6.1.4: 942 + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 943 + 944 + dequal@2.0.3: 945 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 946 + engines: {node: '>=6'} 947 + 948 + destr@2.0.3: 949 + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 950 + 951 + detect-libc@2.0.3: 952 + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 953 + engines: {node: '>=8'} 954 + 955 + deterministic-object-hash@2.0.2: 956 + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 957 + engines: {node: '>=18'} 958 + 959 + devalue@5.1.1: 960 + resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} 961 + 962 + devlop@1.1.0: 963 + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 964 + 965 + diff@5.2.0: 966 + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 967 + engines: {node: '>=0.3.1'} 968 + 969 + direction@2.0.1: 970 + resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} 971 + hasBin: true 972 + 973 + dlv@1.1.3: 974 + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 975 + 976 + dset@3.1.4: 977 + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 978 + engines: {node: '>=4'} 979 + 980 + emoji-regex-xs@1.0.0: 981 + resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} 982 + 983 + emoji-regex@10.4.0: 984 + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} 985 + 986 + emoji-regex@8.0.0: 987 + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 988 + 989 + end-of-stream@1.4.4: 990 + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 991 + 992 + entities@4.5.0: 993 + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 994 + engines: {node: '>=0.12'} 995 + 996 + es-module-lexer@1.6.0: 997 + resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} 998 + 999 + esast-util-from-estree@2.0.0: 1000 + resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} 1001 + 1002 + esast-util-from-js@2.0.1: 1003 + resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} 1004 + 1005 + esbuild@0.21.5: 1006 + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 1007 + engines: {node: '>=12'} 1008 + hasBin: true 1009 + 1010 + esbuild@0.24.2: 1011 + resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} 1012 + engines: {node: '>=18'} 1013 + hasBin: true 1014 + 1015 + escape-string-regexp@5.0.0: 1016 + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1017 + engines: {node: '>=12'} 1018 + 1019 + esprima@4.0.1: 1020 + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1021 + engines: {node: '>=4'} 1022 + hasBin: true 1023 + 1024 + estree-util-attach-comments@3.0.0: 1025 + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} 1026 + 1027 + estree-util-build-jsx@3.0.1: 1028 + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} 1029 + 1030 + estree-util-is-identifier-name@3.0.0: 1031 + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} 1032 + 1033 + estree-util-scope@1.0.0: 1034 + resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} 1035 + 1036 + estree-util-to-js@2.0.0: 1037 + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} 1038 + 1039 + estree-util-visit@2.0.0: 1040 + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} 1041 + 1042 + estree-walker@2.0.2: 1043 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1044 + 1045 + estree-walker@3.0.3: 1046 + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1047 + 1048 + eventemitter3@5.0.1: 1049 + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 1050 + 1051 + expand-template@2.0.3: 1052 + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 1053 + engines: {node: '>=6'} 1054 + 1055 + expressive-code@0.38.3: 1056 + resolution: {integrity: sha512-COM04AiUotHCKJgWdn7NtW2lqu8OW8owAidMpkXt1qxrZ9Q2iC7+tok/1qIn2ocGnczvr9paIySgGnEwFeEQ8Q==} 1057 + 1058 + extend@3.0.2: 1059 + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 1060 + 1061 + fast-fifo@1.3.2: 1062 + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} 1063 + 1064 + fast-glob@3.3.3: 1065 + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 1066 + engines: {node: '>=8.6.0'} 1067 + 1068 + fastq@1.18.0: 1069 + resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} 1070 + 1071 + fill-range@7.1.1: 1072 + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1073 + engines: {node: '>=8'} 1074 + 1075 + find-up-simple@1.0.0: 1076 + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 1077 + engines: {node: '>=18'} 1078 + 1079 + find-up@4.1.0: 1080 + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1081 + engines: {node: '>=8'} 1082 + 1083 + find-yarn-workspace-root2@1.2.16: 1084 + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} 1085 + 1086 + flattie@1.1.1: 1087 + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 1088 + engines: {node: '>=8'} 1089 + 1090 + fs-constants@1.0.0: 1091 + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 1092 + 1093 + fsevents@2.3.3: 1094 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1095 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1096 + os: [darwin] 1097 + 1098 + get-east-asian-width@1.3.0: 1099 + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} 1100 + engines: {node: '>=18'} 1101 + 1102 + github-from-package@0.0.0: 1103 + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 1104 + 1105 + github-slugger@2.0.0: 1106 + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 1107 + 1108 + glob-parent@5.1.2: 1109 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1110 + engines: {node: '>= 6'} 1111 + 1112 + graceful-fs@4.2.11: 1113 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1114 + 1115 + h3@1.13.0: 1116 + resolution: {integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==} 1117 + 1118 + hast-util-embedded@3.0.0: 1119 + resolution: {integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==} 1120 + 1121 + hast-util-format@1.1.0: 1122 + resolution: {integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==} 1123 + 1124 + hast-util-from-html@2.0.3: 1125 + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 1126 + 1127 + hast-util-from-parse5@8.0.2: 1128 + resolution: {integrity: sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==} 1129 + 1130 + hast-util-has-property@3.0.0: 1131 + resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} 1132 + 1133 + hast-util-is-body-ok-link@3.0.1: 1134 + resolution: {integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==} 1135 + 1136 + hast-util-is-element@3.0.0: 1137 + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 1138 + 1139 + hast-util-minify-whitespace@1.0.1: 1140 + resolution: {integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==} 1141 + 1142 + hast-util-parse-selector@4.0.0: 1143 + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 1144 + 1145 + hast-util-phrasing@3.0.1: 1146 + resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==} 1147 + 1148 + hast-util-raw@9.1.0: 1149 + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 1150 + 1151 + hast-util-select@6.0.3: 1152 + resolution: {integrity: sha512-OVRQlQ1XuuLP8aFVLYmC2atrfWHS5UD3shonxpnyrjcCkwtvmt/+N6kYJdcY4mkMJhxp4kj2EFIxQ9kvkkt/eQ==} 1153 + 1154 + hast-util-to-estree@3.1.1: 1155 + resolution: {integrity: sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ==} 1156 + 1157 + hast-util-to-html@9.0.4: 1158 + resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==} 1159 + 1160 + hast-util-to-jsx-runtime@2.3.2: 1161 + resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} 1162 + 1163 + hast-util-to-parse5@8.0.0: 1164 + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 1165 + 1166 + hast-util-to-string@3.0.1: 1167 + resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} 1168 + 1169 + hast-util-to-text@4.0.2: 1170 + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 1171 + 1172 + hast-util-whitespace@3.0.0: 1173 + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 1174 + 1175 + hastscript@9.0.0: 1176 + resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==} 1177 + 1178 + html-escaper@3.0.3: 1179 + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 1180 + 1181 + html-void-elements@3.0.0: 1182 + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 1183 + 1184 + html-whitespace-sensitive-tag-names@3.0.1: 1185 + resolution: {integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==} 1186 + 1187 + http-cache-semantics@4.1.1: 1188 + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 1189 + 1190 + i18next@23.16.8: 1191 + resolution: {integrity: sha512-06r/TitrM88Mg5FdUXAKL96dJMzgqLE5dv3ryBAra4KCwD9mJ4ndOTS95ZuymIGoE+2hzfdaMak2X11/es7ZWg==} 1192 + 1193 + ieee754@1.2.1: 1194 + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1195 + 1196 + import-meta-resolve@4.1.0: 1197 + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 1198 + 1199 + inherits@2.0.4: 1200 + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1201 + 1202 + ini@1.3.8: 1203 + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1204 + 1205 + inline-style-parser@0.2.4: 1206 + resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} 1207 + 1208 + iron-webcrypto@1.2.1: 1209 + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 1210 + 1211 + is-alphabetical@2.0.1: 1212 + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} 1213 + 1214 + is-alphanumerical@2.0.1: 1215 + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} 1216 + 1217 + is-arrayish@0.3.2: 1218 + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1219 + 1220 + is-binary-path@2.1.0: 1221 + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1222 + engines: {node: '>=8'} 1223 + 1224 + is-decimal@2.0.1: 1225 + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} 1226 + 1227 + is-docker@3.0.0: 1228 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 1229 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1230 + hasBin: true 1231 + 1232 + is-extglob@2.1.1: 1233 + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1234 + engines: {node: '>=0.10.0'} 1235 + 1236 + is-fullwidth-code-point@3.0.0: 1237 + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1238 + engines: {node: '>=8'} 1239 + 1240 + is-glob@4.0.3: 1241 + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1242 + engines: {node: '>=0.10.0'} 1243 + 1244 + is-hexadecimal@2.0.1: 1245 + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} 1246 + 1247 + is-inside-container@1.0.0: 1248 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 1249 + engines: {node: '>=14.16'} 1250 + hasBin: true 1251 + 1252 + is-number@7.0.0: 1253 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1254 + engines: {node: '>=0.12.0'} 1255 + 1256 + is-plain-obj@4.1.0: 1257 + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 1258 + engines: {node: '>=12'} 1259 + 1260 + is-wsl@3.1.0: 1261 + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 1262 + engines: {node: '>=16'} 1263 + 1264 + iso8601-duration@2.1.2: 1265 + resolution: {integrity: sha512-yXteYUiKv6x8seaDzyBwnZtPpmx766KfvQuaVNyPifYOjmPdOo3ajd4phDNa7Y5mTQGnXsNEcXFtVun1FjYXxQ==} 1266 + 1267 + js-yaml@3.14.1: 1268 + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 1269 + hasBin: true 1270 + 1271 + js-yaml@4.1.0: 1272 + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1273 + hasBin: true 1274 + 1275 + kleur@3.0.3: 1276 + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 1277 + engines: {node: '>=6'} 1278 + 1279 + kleur@4.1.5: 1280 + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 1281 + engines: {node: '>=6'} 1282 + 1283 + lite-youtube-embed@0.3.3: 1284 + resolution: {integrity: sha512-gFfVVnj6NRjxVfJKo3qoLtpi0v5mn3AcR4eKD45wrxQuxzveFJUb+7Cr6uV6n+DjO8X3p0UzPPquhGt0H/y+NA==} 1285 + 1286 + load-yaml-file@0.2.0: 1287 + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} 1288 + engines: {node: '>=6'} 1289 + 1290 + locate-path@5.0.0: 1291 + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1292 + engines: {node: '>=8'} 1293 + 1294 + longest-streak@3.1.0: 1295 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1296 + 1297 + lru-cache@10.4.3: 1298 + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1299 + 1300 + magic-string@0.30.17: 1301 + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1302 + 1303 + magicast@0.3.5: 1304 + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 1305 + 1306 + markdown-extensions@2.0.0: 1307 + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} 1308 + engines: {node: '>=16'} 1309 + 1310 + markdown-table@3.0.4: 1311 + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 1312 + 1313 + mdast-util-definitions@6.0.0: 1314 + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 1315 + 1316 + mdast-util-directive@3.0.0: 1317 + resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} 1318 + 1319 + mdast-util-find-and-replace@3.0.2: 1320 + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 1321 + 1322 + mdast-util-from-markdown@2.0.2: 1323 + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 1324 + 1325 + mdast-util-gfm-autolink-literal@2.0.1: 1326 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1327 + 1328 + mdast-util-gfm-footnote@2.0.0: 1329 + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} 1330 + 1331 + mdast-util-gfm-strikethrough@2.0.0: 1332 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1333 + 1334 + mdast-util-gfm-table@2.0.0: 1335 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1336 + 1337 + mdast-util-gfm-task-list-item@2.0.0: 1338 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1339 + 1340 + mdast-util-gfm@3.0.0: 1341 + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} 1342 + 1343 + mdast-util-mdx-expression@2.0.1: 1344 + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} 1345 + 1346 + mdast-util-mdx-jsx@3.1.3: 1347 + resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} 1348 + 1349 + mdast-util-mdx@3.0.0: 1350 + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} 1351 + 1352 + mdast-util-mdxjs-esm@2.0.1: 1353 + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} 1354 + 1355 + mdast-util-phrasing@4.1.0: 1356 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1357 + 1358 + mdast-util-to-hast@13.2.0: 1359 + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 1360 + 1361 + mdast-util-to-markdown@2.1.2: 1362 + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 1363 + 1364 + mdast-util-to-string@4.0.0: 1365 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 1366 + 1367 + merge2@1.4.1: 1368 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1369 + engines: {node: '>= 8'} 1370 + 1371 + micromark-core-commonmark@2.0.2: 1372 + resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} 1373 + 1374 + micromark-extension-directive@3.0.2: 1375 + resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==} 1376 + 1377 + micromark-extension-gfm-autolink-literal@2.1.0: 1378 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 1379 + 1380 + micromark-extension-gfm-footnote@2.1.0: 1381 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 1382 + 1383 + micromark-extension-gfm-strikethrough@2.1.0: 1384 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 1385 + 1386 + micromark-extension-gfm-table@2.1.0: 1387 + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} 1388 + 1389 + micromark-extension-gfm-tagfilter@2.0.0: 1390 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 1391 + 1392 + micromark-extension-gfm-task-list-item@2.1.0: 1393 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 1394 + 1395 + micromark-extension-gfm@3.0.0: 1396 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 1397 + 1398 + micromark-extension-mdx-expression@3.0.0: 1399 + resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} 1400 + 1401 + micromark-extension-mdx-jsx@3.0.1: 1402 + resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==} 1403 + 1404 + micromark-extension-mdx-md@2.0.0: 1405 + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} 1406 + 1407 + micromark-extension-mdxjs-esm@3.0.0: 1408 + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} 1409 + 1410 + micromark-extension-mdxjs@3.0.0: 1411 + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} 1412 + 1413 + micromark-factory-destination@2.0.1: 1414 + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 1415 + 1416 + micromark-factory-label@2.0.1: 1417 + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 1418 + 1419 + micromark-factory-mdx-expression@2.0.2: 1420 + resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==} 1421 + 1422 + micromark-factory-space@2.0.1: 1423 + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 1424 + 1425 + micromark-factory-title@2.0.1: 1426 + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 1427 + 1428 + micromark-factory-whitespace@2.0.1: 1429 + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 1430 + 1431 + micromark-util-character@2.1.1: 1432 + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 1433 + 1434 + micromark-util-chunked@2.0.1: 1435 + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 1436 + 1437 + micromark-util-classify-character@2.0.1: 1438 + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 1439 + 1440 + micromark-util-combine-extensions@2.0.1: 1441 + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 1442 + 1443 + micromark-util-decode-numeric-character-reference@2.0.2: 1444 + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 1445 + 1446 + micromark-util-decode-string@2.0.1: 1447 + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 1448 + 1449 + micromark-util-encode@2.0.1: 1450 + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 1451 + 1452 + micromark-util-events-to-acorn@2.0.2: 1453 + resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} 1454 + 1455 + micromark-util-html-tag-name@2.0.1: 1456 + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 1457 + 1458 + micromark-util-normalize-identifier@2.0.1: 1459 + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 1460 + 1461 + micromark-util-resolve-all@2.0.1: 1462 + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 1463 + 1464 + micromark-util-sanitize-uri@2.0.1: 1465 + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 1466 + 1467 + micromark-util-subtokenize@2.0.3: 1468 + resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} 1469 + 1470 + micromark-util-symbol@2.0.1: 1471 + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 1472 + 1473 + micromark-util-types@2.0.1: 1474 + resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} 1475 + 1476 + micromark@4.0.1: 1477 + resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} 1478 + 1479 + micromatch@4.0.8: 1480 + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1481 + engines: {node: '>=8.6'} 1482 + 1483 + mime@3.0.0: 1484 + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 1485 + engines: {node: '>=10.0.0'} 1486 + hasBin: true 1487 + 1488 + mimic-response@3.1.0: 1489 + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 1490 + engines: {node: '>=10'} 1491 + 1492 + minimist@1.2.8: 1493 + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1494 + 1495 + mkdirp-classic@0.5.3: 1496 + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 1497 + 1498 + mrmime@2.0.0: 1499 + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 1500 + engines: {node: '>=10'} 1501 + 1502 + ms@2.1.3: 1503 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1504 + 1505 + nanoid@3.3.8: 1506 + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1507 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1508 + hasBin: true 1509 + 1510 + napi-build-utils@1.0.2: 1511 + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} 1512 + 1513 + neotraverse@0.6.18: 1514 + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 1515 + engines: {node: '>= 10'} 1516 + 1517 + nlcst-to-string@4.0.0: 1518 + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 1519 + 1520 + node-abi@3.71.0: 1521 + resolution: {integrity: sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==} 1522 + engines: {node: '>=10'} 1523 + 1524 + node-addon-api@6.1.0: 1525 + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} 1526 + 1527 + node-fetch-native@1.6.4: 1528 + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} 1529 + 1530 + normalize-path@3.0.0: 1531 + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1532 + engines: {node: '>=0.10.0'} 1533 + 1534 + nth-check@2.1.1: 1535 + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1536 + 1537 + ofetch@1.4.1: 1538 + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 1539 + 1540 + ohash@1.1.4: 1541 + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} 1542 + 1543 + once@1.4.0: 1544 + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1545 + 1546 + oniguruma-to-es@0.10.0: 1547 + resolution: {integrity: sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==} 1548 + 1549 + p-limit@2.3.0: 1550 + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1551 + engines: {node: '>=6'} 1552 + 1553 + p-limit@6.2.0: 1554 + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 1555 + engines: {node: '>=18'} 1556 + 1557 + p-locate@4.1.0: 1558 + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1559 + engines: {node: '>=8'} 1560 + 1561 + p-queue@8.0.1: 1562 + resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} 1563 + engines: {node: '>=18'} 1564 + 1565 + p-timeout@6.1.4: 1566 + resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} 1567 + engines: {node: '>=14.16'} 1568 + 1569 + p-try@2.2.0: 1570 + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1571 + engines: {node: '>=6'} 1572 + 1573 + pagefind@1.3.0: 1574 + resolution: {integrity: sha512-8KPLGT5g9s+olKMRTU9LFekLizkVIu9tes90O1/aigJ0T5LmyPqTzGJrETnSw3meSYg58YH7JTzhTTW/3z6VAw==} 1575 + hasBin: true 1576 + 1577 + parse-entities@4.0.2: 1578 + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} 1579 + 1580 + parse-latin@7.0.0: 1581 + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 1582 + 1583 + parse5@7.2.1: 1584 + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} 1585 + 1586 + path-exists@4.0.0: 1587 + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1588 + engines: {node: '>=8'} 1589 + 1590 + pathe@1.1.2: 1591 + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 1592 + 1593 + picocolors@1.1.1: 1594 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1595 + 1596 + picomatch@2.3.1: 1597 + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1598 + engines: {node: '>=8.6'} 1599 + 1600 + picomatch@4.0.2: 1601 + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1602 + engines: {node: '>=12'} 1603 + 1604 + pify@4.0.1: 1605 + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 1606 + engines: {node: '>=6'} 1607 + 1608 + pkg-dir@4.2.0: 1609 + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 1610 + engines: {node: '>=8'} 1611 + 1612 + postcss-nested@6.2.0: 1613 + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 1614 + engines: {node: '>=12.0'} 1615 + peerDependencies: 1616 + postcss: ^8.2.14 1617 + 1618 + postcss-selector-parser@6.1.2: 1619 + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1620 + engines: {node: '>=4'} 1621 + 1622 + postcss@8.4.49: 1623 + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} 1624 + engines: {node: ^10 || ^12 || >=14} 1625 + 1626 + prebuild-install@7.1.2: 1627 + resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} 1628 + engines: {node: '>=10'} 1629 + hasBin: true 1630 + 1631 + preferred-pm@4.0.0: 1632 + resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} 1633 + engines: {node: '>=18.12'} 1634 + 1635 + prismjs@1.29.0: 1636 + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} 1637 + engines: {node: '>=6'} 1638 + 1639 + prompts@2.4.2: 1640 + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 1641 + engines: {node: '>= 6'} 1642 + 1643 + property-information@6.5.0: 1644 + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 1645 + 1646 + pump@3.0.2: 1647 + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} 1648 + 1649 + queue-microtask@1.2.3: 1650 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1651 + 1652 + queue-tick@1.0.1: 1653 + resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} 1654 + 1655 + radix3@1.1.2: 1656 + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 1657 + 1658 + rc@1.2.8: 1659 + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 1660 + hasBin: true 1661 + 1662 + readable-stream@3.6.2: 1663 + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 1664 + engines: {node: '>= 6'} 1665 + 1666 + readdirp@3.6.0: 1667 + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1668 + engines: {node: '>=8.10.0'} 1669 + 1670 + recma-build-jsx@1.0.0: 1671 + resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} 1672 + 1673 + recma-jsx@1.0.0: 1674 + resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==} 1675 + 1676 + recma-parse@1.0.0: 1677 + resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} 1678 + 1679 + recma-stringify@1.0.0: 1680 + resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} 1681 + 1682 + regenerator-runtime@0.14.1: 1683 + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1684 + 1685 + regex-recursion@5.1.1: 1686 + resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==} 1687 + 1688 + regex-utilities@2.3.0: 1689 + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 1690 + 1691 + regex@5.1.1: 1692 + resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==} 1693 + 1694 + rehype-expressive-code@0.38.3: 1695 + resolution: {integrity: sha512-RYSSDkMBikoTbycZPkcWp6ELneANT4eTpND1DSRJ6nI2eVFUwTBDCvE2vO6jOOTaavwnPiydi4i/87NRyjpdOA==} 1696 + 1697 + rehype-format@5.0.1: 1698 + resolution: {integrity: sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==} 1699 + 1700 + rehype-parse@9.0.1: 1701 + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 1702 + 1703 + rehype-raw@7.0.0: 1704 + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 1705 + 1706 + rehype-recma@1.0.0: 1707 + resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} 1708 + 1709 + rehype-stringify@10.0.1: 1710 + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 1711 + 1712 + rehype@13.0.2: 1713 + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 1714 + 1715 + remark-directive@3.0.0: 1716 + resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} 1717 + 1718 + remark-gfm@4.0.0: 1719 + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} 1720 + 1721 + remark-mdx@3.1.0: 1722 + resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} 1723 + 1724 + remark-parse@11.0.0: 1725 + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 1726 + 1727 + remark-rehype@11.1.1: 1728 + resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} 1729 + 1730 + remark-smartypants@3.0.2: 1731 + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 1732 + engines: {node: '>=16.0.0'} 1733 + 1734 + remark-stringify@11.0.0: 1735 + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 1736 + 1737 + retext-latin@4.0.0: 1738 + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 1739 + 1740 + retext-smartypants@6.2.0: 1741 + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 1742 + 1743 + retext-stringify@4.0.0: 1744 + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 1745 + 1746 + retext@9.0.0: 1747 + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 1748 + 1749 + reusify@1.0.4: 1750 + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1751 + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1752 + 1753 + rollup@4.30.1: 1754 + resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} 1755 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1756 + hasBin: true 1757 + 1758 + run-parallel@1.2.0: 1759 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1760 + 1761 + safe-buffer@5.2.1: 1762 + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1763 + 1764 + sax@1.4.1: 1765 + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 1766 + 1767 + semver@7.6.3: 1768 + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1769 + engines: {node: '>=10'} 1770 + hasBin: true 1771 + 1772 + sharp@0.32.6: 1773 + resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==} 1774 + engines: {node: '>=14.15.0'} 1775 + 1776 + sharp@0.33.5: 1777 + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1778 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1779 + 1780 + shiki@1.26.1: 1781 + resolution: {integrity: sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==} 1782 + 1783 + simple-concat@1.0.1: 1784 + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 1785 + 1786 + simple-get@4.0.1: 1787 + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 1788 + 1789 + simple-swizzle@0.2.2: 1790 + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1791 + 1792 + sisteransi@1.0.5: 1793 + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1794 + 1795 + sitemap@8.0.0: 1796 + resolution: {integrity: sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==} 1797 + engines: {node: '>=14.0.0', npm: '>=6.0.0'} 1798 + hasBin: true 1799 + 1800 + source-map-js@1.2.1: 1801 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1802 + engines: {node: '>=0.10.0'} 1803 + 1804 + source-map@0.7.4: 1805 + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 1806 + engines: {node: '>= 8'} 1807 + 1808 + space-separated-tokens@2.0.2: 1809 + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 1810 + 1811 + sprintf-js@1.0.3: 1812 + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 1813 + 1814 + srt-parser-2@1.2.3: 1815 + resolution: {integrity: sha512-dANP1AyJTI503H0/kXwRza+7QxDB3BqeFvEKTF4MI9lQcBe8JbRUQTKVIGzGABJCwBovEYavZ2Qsdm/s8XKz8A==} 1816 + hasBin: true 1817 + 1818 + starlight-videos@0.1.0: 1819 + resolution: {integrity: sha512-DGxUTJTA4NExWwwa/E9C9e89SRc+w6ZSVl6lQYLvYAf37yfVylvWtthvpHgx6PZUISG3RXwWMjoDXGkCpG3JBw==} 1820 + engines: {node: '>=18'} 1821 + peerDependencies: 1822 + '@astrojs/starlight': '>=0.30.0' 1823 + 1824 + stream-replace-string@2.0.0: 1825 + resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} 1826 + 1827 + streamx@2.21.1: 1828 + resolution: {integrity: sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==} 1829 + 1830 + string-width@4.2.3: 1831 + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1832 + engines: {node: '>=8'} 1833 + 1834 + string-width@7.2.0: 1835 + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 1836 + engines: {node: '>=18'} 1837 + 1838 + string_decoder@1.3.0: 1839 + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1840 + 1841 + stringify-entities@4.0.4: 1842 + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1843 + 1844 + strip-ansi@6.0.1: 1845 + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1846 + engines: {node: '>=8'} 1847 + 1848 + strip-ansi@7.1.0: 1849 + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1850 + engines: {node: '>=12'} 1851 + 1852 + strip-bom@3.0.0: 1853 + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1854 + engines: {node: '>=4'} 1855 + 1856 + strip-json-comments@2.0.1: 1857 + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 1858 + engines: {node: '>=0.10.0'} 1859 + 1860 + style-to-object@1.0.8: 1861 + resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} 1862 + 1863 + tar-fs@2.1.1: 1864 + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 1865 + 1866 + tar-fs@3.0.6: 1867 + resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==} 1868 + 1869 + tar-stream@2.2.0: 1870 + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 1871 + engines: {node: '>=6'} 1872 + 1873 + tar-stream@3.1.7: 1874 + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} 1875 + 1876 + text-decoder@1.2.3: 1877 + resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} 1878 + 1879 + tinyexec@0.3.2: 1880 + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1881 + 1882 + to-regex-range@5.0.1: 1883 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1884 + engines: {node: '>=8.0'} 1885 + 1886 + trim-lines@3.0.1: 1887 + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1888 + 1889 + trough@2.2.0: 1890 + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 1891 + 1892 + tsconfck@3.1.4: 1893 + resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} 1894 + engines: {node: ^18 || >=20} 1895 + hasBin: true 1896 + peerDependencies: 1897 + typescript: ^5.0.0 1898 + peerDependenciesMeta: 1899 + typescript: 1900 + optional: true 1901 + 1902 + tslib@2.8.1: 1903 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1904 + 1905 + tunnel-agent@0.6.0: 1906 + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 1907 + 1908 + type-fest@4.32.0: 1909 + resolution: {integrity: sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==} 1910 + engines: {node: '>=16'} 1911 + 1912 + typescript@5.7.3: 1913 + resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} 1914 + engines: {node: '>=14.17'} 1915 + hasBin: true 1916 + 1917 + ufo@1.5.4: 1918 + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 1919 + 1920 + ultrahtml@1.5.3: 1921 + resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} 1922 + 1923 + uncrypto@0.1.3: 1924 + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 1925 + 1926 + unenv@1.10.0: 1927 + resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} 1928 + 1929 + unified@11.0.5: 1930 + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 1931 + 1932 + unist-util-find-after@5.0.0: 1933 + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 1934 + 1935 + unist-util-is@6.0.0: 1936 + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 1937 + 1938 + unist-util-modify-children@4.0.0: 1939 + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 1940 + 1941 + unist-util-position-from-estree@2.0.0: 1942 + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} 1943 + 1944 + unist-util-position@5.0.0: 1945 + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 1946 + 1947 + unist-util-remove-position@5.0.0: 1948 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 1949 + 1950 + unist-util-stringify-position@4.0.0: 1951 + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1952 + 1953 + unist-util-visit-children@3.0.0: 1954 + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 1955 + 1956 + unist-util-visit-parents@6.0.1: 1957 + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 1958 + 1959 + unist-util-visit@5.0.0: 1960 + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1961 + 1962 + unstorage@1.14.4: 1963 + resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==} 1964 + peerDependencies: 1965 + '@azure/app-configuration': ^1.8.0 1966 + '@azure/cosmos': ^4.2.0 1967 + '@azure/data-tables': ^13.3.0 1968 + '@azure/identity': ^4.5.0 1969 + '@azure/keyvault-secrets': ^4.9.0 1970 + '@azure/storage-blob': ^12.26.0 1971 + '@capacitor/preferences': ^6.0.3 1972 + '@deno/kv': '>=0.8.4' 1973 + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 1974 + '@planetscale/database': ^1.19.0 1975 + '@upstash/redis': ^1.34.3 1976 + '@vercel/blob': '>=0.27.0' 1977 + '@vercel/kv': ^1.0.1 1978 + aws4fetch: ^1.0.20 1979 + db0: '>=0.2.1' 1980 + idb-keyval: ^6.2.1 1981 + ioredis: ^5.4.2 1982 + uploadthing: ^7.4.1 1983 + peerDependenciesMeta: 1984 + '@azure/app-configuration': 1985 + optional: true 1986 + '@azure/cosmos': 1987 + optional: true 1988 + '@azure/data-tables': 1989 + optional: true 1990 + '@azure/identity': 1991 + optional: true 1992 + '@azure/keyvault-secrets': 1993 + optional: true 1994 + '@azure/storage-blob': 1995 + optional: true 1996 + '@capacitor/preferences': 1997 + optional: true 1998 + '@deno/kv': 1999 + optional: true 2000 + '@netlify/blobs': 2001 + optional: true 2002 + '@planetscale/database': 2003 + optional: true 2004 + '@upstash/redis': 2005 + optional: true 2006 + '@vercel/blob': 2007 + optional: true 2008 + '@vercel/kv': 2009 + optional: true 2010 + aws4fetch: 2011 + optional: true 2012 + db0: 2013 + optional: true 2014 + idb-keyval: 2015 + optional: true 2016 + ioredis: 2017 + optional: true 2018 + uploadthing: 2019 + optional: true 2020 + 2021 + util-deprecate@1.0.2: 2022 + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2023 + 2024 + vfile-location@5.0.3: 2025 + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 2026 + 2027 + vfile-message@4.0.2: 2028 + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} 2029 + 2030 + vfile@6.0.3: 2031 + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 2032 + 2033 + vite@6.0.7: 2034 + resolution: {integrity: sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==} 2035 + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2036 + hasBin: true 2037 + peerDependencies: 2038 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 2039 + jiti: '>=1.21.0' 2040 + less: '*' 2041 + lightningcss: ^1.21.0 2042 + sass: '*' 2043 + sass-embedded: '*' 2044 + stylus: '*' 2045 + sugarss: '*' 2046 + terser: ^5.16.0 2047 + tsx: ^4.8.1 2048 + yaml: ^2.4.2 2049 + peerDependenciesMeta: 2050 + '@types/node': 2051 + optional: true 2052 + jiti: 2053 + optional: true 2054 + less: 2055 + optional: true 2056 + lightningcss: 2057 + optional: true 2058 + sass: 2059 + optional: true 2060 + sass-embedded: 2061 + optional: true 2062 + stylus: 2063 + optional: true 2064 + sugarss: 2065 + optional: true 2066 + terser: 2067 + optional: true 2068 + tsx: 2069 + optional: true 2070 + yaml: 2071 + optional: true 2072 + 2073 + vitefu@1.0.5: 2074 + resolution: {integrity: sha512-h4Vflt9gxODPFNGPwp4zAMZRpZR7eslzwH2c5hn5kNZ5rhnKyRJ50U+yGCdc2IRaBs8O4haIgLNGrV5CrpMsCA==} 2075 + peerDependencies: 2076 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 2077 + peerDependenciesMeta: 2078 + vite: 2079 + optional: true 2080 + 2081 + web-namespaces@2.0.1: 2082 + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 2083 + 2084 + which-pm-runs@1.1.0: 2085 + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 2086 + engines: {node: '>=4'} 2087 + 2088 + which-pm@3.0.0: 2089 + resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} 2090 + engines: {node: '>=18.12'} 2091 + 2092 + widest-line@5.0.0: 2093 + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 2094 + engines: {node: '>=18'} 2095 + 2096 + wrap-ansi@9.0.0: 2097 + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 2098 + engines: {node: '>=18'} 2099 + 2100 + wrappy@1.0.2: 2101 + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2102 + 2103 + xxhash-wasm@1.1.0: 2104 + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 2105 + 2106 + yargs-parser@21.1.1: 2107 + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2108 + engines: {node: '>=12'} 2109 + 2110 + yocto-queue@1.1.1: 2111 + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} 2112 + engines: {node: '>=12.20'} 2113 + 2114 + yocto-spinner@0.1.2: 2115 + resolution: {integrity: sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==} 2116 + engines: {node: '>=18.19'} 2117 + 2118 + yoctocolors@2.1.1: 2119 + resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==} 2120 + engines: {node: '>=18'} 2121 + 2122 + zod-to-json-schema@3.24.1: 2123 + resolution: {integrity: sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==} 2124 + peerDependencies: 2125 + zod: ^3.24.1 2126 + 2127 + zod-to-ts@1.2.0: 2128 + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 2129 + peerDependencies: 2130 + typescript: ^4.9.4 || ^5.0.2 2131 + zod: ^3 2132 + 2133 + zod@3.24.1: 2134 + resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} 2135 + 2136 + zwitch@2.0.4: 2137 + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 2138 + 2139 + snapshots: 2140 + 2141 + '@astro-community/astro-embed-youtube@0.5.6(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3))': 2142 + dependencies: 2143 + astro: 5.1.3(rollup@4.30.1)(typescript@5.7.3) 2144 + lite-youtube-embed: 0.3.3 2145 + 2146 + '@astrojs/compiler@2.10.3': {} 2147 + 2148 + '@astrojs/internal-helpers@0.4.2': {} 2149 + 2150 + '@astrojs/markdown-remark@6.0.1': 2151 + dependencies: 2152 + '@astrojs/prism': 3.2.0 2153 + github-slugger: 2.0.0 2154 + hast-util-from-html: 2.0.3 2155 + hast-util-to-text: 4.0.2 2156 + import-meta-resolve: 4.1.0 2157 + js-yaml: 4.1.0 2158 + mdast-util-definitions: 6.0.0 2159 + rehype-raw: 7.0.0 2160 + rehype-stringify: 10.0.1 2161 + remark-gfm: 4.0.0 2162 + remark-parse: 11.0.0 2163 + remark-rehype: 11.1.1 2164 + remark-smartypants: 3.0.2 2165 + shiki: 1.26.1 2166 + unified: 11.0.5 2167 + unist-util-remove-position: 5.0.0 2168 + unist-util-visit: 5.0.0 2169 + unist-util-visit-parents: 6.0.1 2170 + vfile: 6.0.3 2171 + transitivePeerDependencies: 2172 + - supports-color 2173 + 2174 + '@astrojs/mdx@4.0.3(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3))': 2175 + dependencies: 2176 + '@astrojs/markdown-remark': 6.0.1 2177 + '@mdx-js/mdx': 3.1.0(acorn@8.14.0) 2178 + acorn: 8.14.0 2179 + astro: 5.1.3(rollup@4.30.1)(typescript@5.7.3) 2180 + es-module-lexer: 1.6.0 2181 + estree-util-visit: 2.0.0 2182 + hast-util-to-html: 9.0.4 2183 + kleur: 4.1.5 2184 + rehype-raw: 7.0.0 2185 + remark-gfm: 4.0.0 2186 + remark-smartypants: 3.0.2 2187 + source-map: 0.7.4 2188 + unist-util-visit: 5.0.0 2189 + vfile: 6.0.3 2190 + transitivePeerDependencies: 2191 + - supports-color 2192 + 2193 + '@astrojs/prism@3.2.0': 2194 + dependencies: 2195 + prismjs: 1.29.0 2196 + 2197 + '@astrojs/sitemap@3.2.1': 2198 + dependencies: 2199 + sitemap: 8.0.0 2200 + stream-replace-string: 2.0.0 2201 + zod: 3.24.1 2202 + 2203 + '@astrojs/starlight@0.30.5(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3))': 2204 + dependencies: 2205 + '@astrojs/mdx': 4.0.3(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)) 2206 + '@astrojs/sitemap': 3.2.1 2207 + '@pagefind/default-ui': 1.3.0 2208 + '@types/hast': 3.0.4 2209 + '@types/js-yaml': 4.0.9 2210 + '@types/mdast': 4.0.4 2211 + astro: 5.1.3(rollup@4.30.1)(typescript@5.7.3) 2212 + astro-expressive-code: 0.38.3(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)) 2213 + bcp-47: 2.1.0 2214 + hast-util-from-html: 2.0.3 2215 + hast-util-select: 6.0.3 2216 + hast-util-to-string: 3.0.1 2217 + hastscript: 9.0.0 2218 + i18next: 23.16.8 2219 + js-yaml: 4.1.0 2220 + mdast-util-directive: 3.0.0 2221 + mdast-util-to-markdown: 2.1.2 2222 + mdast-util-to-string: 4.0.0 2223 + pagefind: 1.3.0 2224 + rehype: 13.0.2 2225 + rehype-format: 5.0.1 2226 + remark-directive: 3.0.0 2227 + unified: 11.0.5 2228 + unist-util-visit: 5.0.0 2229 + vfile: 6.0.3 2230 + transitivePeerDependencies: 2231 + - supports-color 2232 + 2233 + '@astrojs/telemetry@3.2.0': 2234 + dependencies: 2235 + ci-info: 4.1.0 2236 + debug: 4.4.0 2237 + dlv: 1.1.3 2238 + dset: 3.1.4 2239 + is-docker: 3.0.0 2240 + is-wsl: 3.1.0 2241 + which-pm-runs: 1.1.0 2242 + transitivePeerDependencies: 2243 + - supports-color 2244 + 2245 + '@babel/helper-string-parser@7.25.9': {} 2246 + 2247 + '@babel/helper-validator-identifier@7.25.9': {} 2248 + 2249 + '@babel/parser@7.26.3': 2250 + dependencies: 2251 + '@babel/types': 7.26.3 2252 + 2253 + '@babel/runtime@7.26.0': 2254 + dependencies: 2255 + regenerator-runtime: 0.14.1 2256 + 2257 + '@babel/types@7.26.3': 2258 + dependencies: 2259 + '@babel/helper-string-parser': 7.25.9 2260 + '@babel/helper-validator-identifier': 7.25.9 2261 + 2262 + '@ctrl/tinycolor@4.1.0': {} 2263 + 2264 + '@emnapi/runtime@1.3.1': 2265 + dependencies: 2266 + tslib: 2.8.1 2267 + optional: true 2268 + 2269 + '@esbuild/aix-ppc64@0.21.5': 2270 + optional: true 2271 + 2272 + '@esbuild/aix-ppc64@0.24.2': 2273 + optional: true 2274 + 2275 + '@esbuild/android-arm64@0.21.5': 2276 + optional: true 2277 + 2278 + '@esbuild/android-arm64@0.24.2': 2279 + optional: true 2280 + 2281 + '@esbuild/android-arm@0.21.5': 2282 + optional: true 2283 + 2284 + '@esbuild/android-arm@0.24.2': 2285 + optional: true 2286 + 2287 + '@esbuild/android-x64@0.21.5': 2288 + optional: true 2289 + 2290 + '@esbuild/android-x64@0.24.2': 2291 + optional: true 2292 + 2293 + '@esbuild/darwin-arm64@0.21.5': 2294 + optional: true 2295 + 2296 + '@esbuild/darwin-arm64@0.24.2': 2297 + optional: true 2298 + 2299 + '@esbuild/darwin-x64@0.21.5': 2300 + optional: true 2301 + 2302 + '@esbuild/darwin-x64@0.24.2': 2303 + optional: true 2304 + 2305 + '@esbuild/freebsd-arm64@0.21.5': 2306 + optional: true 2307 + 2308 + '@esbuild/freebsd-arm64@0.24.2': 2309 + optional: true 2310 + 2311 + '@esbuild/freebsd-x64@0.21.5': 2312 + optional: true 2313 + 2314 + '@esbuild/freebsd-x64@0.24.2': 2315 + optional: true 2316 + 2317 + '@esbuild/linux-arm64@0.21.5': 2318 + optional: true 2319 + 2320 + '@esbuild/linux-arm64@0.24.2': 2321 + optional: true 2322 + 2323 + '@esbuild/linux-arm@0.21.5': 2324 + optional: true 2325 + 2326 + '@esbuild/linux-arm@0.24.2': 2327 + optional: true 2328 + 2329 + '@esbuild/linux-ia32@0.21.5': 2330 + optional: true 2331 + 2332 + '@esbuild/linux-ia32@0.24.2': 2333 + optional: true 2334 + 2335 + '@esbuild/linux-loong64@0.21.5': 2336 + optional: true 2337 + 2338 + '@esbuild/linux-loong64@0.24.2': 2339 + optional: true 2340 + 2341 + '@esbuild/linux-mips64el@0.21.5': 2342 + optional: true 2343 + 2344 + '@esbuild/linux-mips64el@0.24.2': 2345 + optional: true 2346 + 2347 + '@esbuild/linux-ppc64@0.21.5': 2348 + optional: true 2349 + 2350 + '@esbuild/linux-ppc64@0.24.2': 2351 + optional: true 2352 + 2353 + '@esbuild/linux-riscv64@0.21.5': 2354 + optional: true 2355 + 2356 + '@esbuild/linux-riscv64@0.24.2': 2357 + optional: true 2358 + 2359 + '@esbuild/linux-s390x@0.21.5': 2360 + optional: true 2361 + 2362 + '@esbuild/linux-s390x@0.24.2': 2363 + optional: true 2364 + 2365 + '@esbuild/linux-x64@0.21.5': 2366 + optional: true 2367 + 2368 + '@esbuild/linux-x64@0.24.2': 2369 + optional: true 2370 + 2371 + '@esbuild/netbsd-arm64@0.24.2': 2372 + optional: true 2373 + 2374 + '@esbuild/netbsd-x64@0.21.5': 2375 + optional: true 2376 + 2377 + '@esbuild/netbsd-x64@0.24.2': 2378 + optional: true 2379 + 2380 + '@esbuild/openbsd-arm64@0.24.2': 2381 + optional: true 2382 + 2383 + '@esbuild/openbsd-x64@0.21.5': 2384 + optional: true 2385 + 2386 + '@esbuild/openbsd-x64@0.24.2': 2387 + optional: true 2388 + 2389 + '@esbuild/sunos-x64@0.21.5': 2390 + optional: true 2391 + 2392 + '@esbuild/sunos-x64@0.24.2': 2393 + optional: true 2394 + 2395 + '@esbuild/win32-arm64@0.21.5': 2396 + optional: true 2397 + 2398 + '@esbuild/win32-arm64@0.24.2': 2399 + optional: true 2400 + 2401 + '@esbuild/win32-ia32@0.21.5': 2402 + optional: true 2403 + 2404 + '@esbuild/win32-ia32@0.24.2': 2405 + optional: true 2406 + 2407 + '@esbuild/win32-x64@0.21.5': 2408 + optional: true 2409 + 2410 + '@esbuild/win32-x64@0.24.2': 2411 + optional: true 2412 + 2413 + '@expressive-code/core@0.38.3': 2414 + dependencies: 2415 + '@ctrl/tinycolor': 4.1.0 2416 + hast-util-select: 6.0.3 2417 + hast-util-to-html: 9.0.4 2418 + hast-util-to-text: 4.0.2 2419 + hastscript: 9.0.0 2420 + postcss: 8.4.49 2421 + postcss-nested: 6.2.0(postcss@8.4.49) 2422 + unist-util-visit: 5.0.0 2423 + unist-util-visit-parents: 6.0.1 2424 + 2425 + '@expressive-code/plugin-frames@0.38.3': 2426 + dependencies: 2427 + '@expressive-code/core': 0.38.3 2428 + 2429 + '@expressive-code/plugin-shiki@0.38.3': 2430 + dependencies: 2431 + '@expressive-code/core': 0.38.3 2432 + shiki: 1.26.1 2433 + 2434 + '@expressive-code/plugin-text-markers@0.38.3': 2435 + dependencies: 2436 + '@expressive-code/core': 0.38.3 2437 + 2438 + '@img/sharp-darwin-arm64@0.33.5': 2439 + optionalDependencies: 2440 + '@img/sharp-libvips-darwin-arm64': 1.0.4 2441 + optional: true 2442 + 2443 + '@img/sharp-darwin-x64@0.33.5': 2444 + optionalDependencies: 2445 + '@img/sharp-libvips-darwin-x64': 1.0.4 2446 + optional: true 2447 + 2448 + '@img/sharp-libvips-darwin-arm64@1.0.4': 2449 + optional: true 2450 + 2451 + '@img/sharp-libvips-darwin-x64@1.0.4': 2452 + optional: true 2453 + 2454 + '@img/sharp-libvips-linux-arm64@1.0.4': 2455 + optional: true 2456 + 2457 + '@img/sharp-libvips-linux-arm@1.0.5': 2458 + optional: true 2459 + 2460 + '@img/sharp-libvips-linux-s390x@1.0.4': 2461 + optional: true 2462 + 2463 + '@img/sharp-libvips-linux-x64@1.0.4': 2464 + optional: true 2465 + 2466 + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 2467 + optional: true 2468 + 2469 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': 2470 + optional: true 2471 + 2472 + '@img/sharp-linux-arm64@0.33.5': 2473 + optionalDependencies: 2474 + '@img/sharp-libvips-linux-arm64': 1.0.4 2475 + optional: true 2476 + 2477 + '@img/sharp-linux-arm@0.33.5': 2478 + optionalDependencies: 2479 + '@img/sharp-libvips-linux-arm': 1.0.5 2480 + optional: true 2481 + 2482 + '@img/sharp-linux-s390x@0.33.5': 2483 + optionalDependencies: 2484 + '@img/sharp-libvips-linux-s390x': 1.0.4 2485 + optional: true 2486 + 2487 + '@img/sharp-linux-x64@0.33.5': 2488 + optionalDependencies: 2489 + '@img/sharp-libvips-linux-x64': 1.0.4 2490 + optional: true 2491 + 2492 + '@img/sharp-linuxmusl-arm64@0.33.5': 2493 + optionalDependencies: 2494 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 2495 + optional: true 2496 + 2497 + '@img/sharp-linuxmusl-x64@0.33.5': 2498 + optionalDependencies: 2499 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 2500 + optional: true 2501 + 2502 + '@img/sharp-wasm32@0.33.5': 2503 + dependencies: 2504 + '@emnapi/runtime': 1.3.1 2505 + optional: true 2506 + 2507 + '@img/sharp-win32-ia32@0.33.5': 2508 + optional: true 2509 + 2510 + '@img/sharp-win32-x64@0.33.5': 2511 + optional: true 2512 + 2513 + '@jridgewell/sourcemap-codec@1.5.0': {} 2514 + 2515 + '@mdx-js/mdx@3.1.0(acorn@8.14.0)': 2516 + dependencies: 2517 + '@types/estree': 1.0.6 2518 + '@types/estree-jsx': 1.0.5 2519 + '@types/hast': 3.0.4 2520 + '@types/mdx': 2.0.13 2521 + collapse-white-space: 2.1.0 2522 + devlop: 1.1.0 2523 + estree-util-is-identifier-name: 3.0.0 2524 + estree-util-scope: 1.0.0 2525 + estree-walker: 3.0.3 2526 + hast-util-to-jsx-runtime: 2.3.2 2527 + markdown-extensions: 2.0.0 2528 + recma-build-jsx: 1.0.0 2529 + recma-jsx: 1.0.0(acorn@8.14.0) 2530 + recma-stringify: 1.0.0 2531 + rehype-recma: 1.0.0 2532 + remark-mdx: 3.1.0 2533 + remark-parse: 11.0.0 2534 + remark-rehype: 11.1.1 2535 + source-map: 0.7.4 2536 + unified: 11.0.5 2537 + unist-util-position-from-estree: 2.0.0 2538 + unist-util-stringify-position: 4.0.0 2539 + unist-util-visit: 5.0.0 2540 + vfile: 6.0.3 2541 + transitivePeerDependencies: 2542 + - acorn 2543 + - supports-color 2544 + 2545 + '@nodelib/fs.scandir@2.1.5': 2546 + dependencies: 2547 + '@nodelib/fs.stat': 2.0.5 2548 + run-parallel: 1.2.0 2549 + 2550 + '@nodelib/fs.stat@2.0.5': {} 2551 + 2552 + '@nodelib/fs.walk@1.2.8': 2553 + dependencies: 2554 + '@nodelib/fs.scandir': 2.1.5 2555 + fastq: 1.18.0 2556 + 2557 + '@oslojs/encoding@1.1.0': {} 2558 + 2559 + '@pagefind/darwin-arm64@1.3.0': 2560 + optional: true 2561 + 2562 + '@pagefind/darwin-x64@1.3.0': 2563 + optional: true 2564 + 2565 + '@pagefind/default-ui@1.3.0': {} 2566 + 2567 + '@pagefind/linux-arm64@1.3.0': 2568 + optional: true 2569 + 2570 + '@pagefind/linux-x64@1.3.0': 2571 + optional: true 2572 + 2573 + '@pagefind/windows-x64@1.3.0': 2574 + optional: true 2575 + 2576 + '@rollup/pluginutils@5.1.4(rollup@4.30.1)': 2577 + dependencies: 2578 + '@types/estree': 1.0.6 2579 + estree-walker: 2.0.2 2580 + picomatch: 4.0.2 2581 + optionalDependencies: 2582 + rollup: 4.30.1 2583 + 2584 + '@rollup/rollup-android-arm-eabi@4.30.1': 2585 + optional: true 2586 + 2587 + '@rollup/rollup-android-arm64@4.30.1': 2588 + optional: true 2589 + 2590 + '@rollup/rollup-darwin-arm64@4.30.1': 2591 + optional: true 2592 + 2593 + '@rollup/rollup-darwin-x64@4.30.1': 2594 + optional: true 2595 + 2596 + '@rollup/rollup-freebsd-arm64@4.30.1': 2597 + optional: true 2598 + 2599 + '@rollup/rollup-freebsd-x64@4.30.1': 2600 + optional: true 2601 + 2602 + '@rollup/rollup-linux-arm-gnueabihf@4.30.1': 2603 + optional: true 2604 + 2605 + '@rollup/rollup-linux-arm-musleabihf@4.30.1': 2606 + optional: true 2607 + 2608 + '@rollup/rollup-linux-arm64-gnu@4.30.1': 2609 + optional: true 2610 + 2611 + '@rollup/rollup-linux-arm64-musl@4.30.1': 2612 + optional: true 2613 + 2614 + '@rollup/rollup-linux-loongarch64-gnu@4.30.1': 2615 + optional: true 2616 + 2617 + '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': 2618 + optional: true 2619 + 2620 + '@rollup/rollup-linux-riscv64-gnu@4.30.1': 2621 + optional: true 2622 + 2623 + '@rollup/rollup-linux-s390x-gnu@4.30.1': 2624 + optional: true 2625 + 2626 + '@rollup/rollup-linux-x64-gnu@4.30.1': 2627 + optional: true 2628 + 2629 + '@rollup/rollup-linux-x64-musl@4.30.1': 2630 + optional: true 2631 + 2632 + '@rollup/rollup-win32-arm64-msvc@4.30.1': 2633 + optional: true 2634 + 2635 + '@rollup/rollup-win32-ia32-msvc@4.30.1': 2636 + optional: true 2637 + 2638 + '@rollup/rollup-win32-x64-msvc@4.30.1': 2639 + optional: true 2640 + 2641 + '@shikijs/core@1.26.1': 2642 + dependencies: 2643 + '@shikijs/engine-javascript': 1.26.1 2644 + '@shikijs/engine-oniguruma': 1.26.1 2645 + '@shikijs/types': 1.26.1 2646 + '@shikijs/vscode-textmate': 10.0.1 2647 + '@types/hast': 3.0.4 2648 + hast-util-to-html: 9.0.4 2649 + 2650 + '@shikijs/engine-javascript@1.26.1': 2651 + dependencies: 2652 + '@shikijs/types': 1.26.1 2653 + '@shikijs/vscode-textmate': 10.0.1 2654 + oniguruma-to-es: 0.10.0 2655 + 2656 + '@shikijs/engine-oniguruma@1.26.1': 2657 + dependencies: 2658 + '@shikijs/types': 1.26.1 2659 + '@shikijs/vscode-textmate': 10.0.1 2660 + 2661 + '@shikijs/langs@1.26.1': 2662 + dependencies: 2663 + '@shikijs/types': 1.26.1 2664 + 2665 + '@shikijs/themes@1.26.1': 2666 + dependencies: 2667 + '@shikijs/types': 1.26.1 2668 + 2669 + '@shikijs/types@1.26.1': 2670 + dependencies: 2671 + '@shikijs/vscode-textmate': 10.0.1 2672 + '@types/hast': 3.0.4 2673 + 2674 + '@shikijs/vscode-textmate@10.0.1': {} 2675 + 2676 + '@types/acorn@4.0.6': 2677 + dependencies: 2678 + '@types/estree': 1.0.6 2679 + 2680 + '@types/cookie@0.6.0': {} 2681 + 2682 + '@types/debug@4.1.12': 2683 + dependencies: 2684 + '@types/ms': 0.7.34 2685 + 2686 + '@types/estree-jsx@1.0.5': 2687 + dependencies: 2688 + '@types/estree': 1.0.6 2689 + 2690 + '@types/estree@1.0.6': {} 2691 + 2692 + '@types/hast@3.0.4': 2693 + dependencies: 2694 + '@types/unist': 3.0.3 2695 + 2696 + '@types/js-yaml@4.0.9': {} 2697 + 2698 + '@types/mdast@4.0.4': 2699 + dependencies: 2700 + '@types/unist': 3.0.3 2701 + 2702 + '@types/mdx@2.0.13': {} 2703 + 2704 + '@types/ms@0.7.34': {} 2705 + 2706 + '@types/nlcst@2.0.3': 2707 + dependencies: 2708 + '@types/unist': 3.0.3 2709 + 2710 + '@types/node@17.0.45': {} 2711 + 2712 + '@types/sax@1.2.7': 2713 + dependencies: 2714 + '@types/node': 17.0.45 2715 + 2716 + '@types/unist@2.0.11': {} 2717 + 2718 + '@types/unist@3.0.3': {} 2719 + 2720 + '@ungap/structured-clone@1.2.1': {} 2721 + 2722 + acorn-jsx@5.3.2(acorn@8.14.0): 2723 + dependencies: 2724 + acorn: 8.14.0 2725 + 2726 + acorn@8.14.0: {} 2727 + 2728 + ansi-align@3.0.1: 2729 + dependencies: 2730 + string-width: 4.2.3 2731 + 2732 + ansi-regex@5.0.1: {} 2733 + 2734 + ansi-regex@6.1.0: {} 2735 + 2736 + ansi-styles@6.2.1: {} 2737 + 2738 + anymatch@3.1.3: 2739 + dependencies: 2740 + normalize-path: 3.0.0 2741 + picomatch: 2.3.1 2742 + 2743 + arg@5.0.2: {} 2744 + 2745 + argparse@1.0.10: 2746 + dependencies: 2747 + sprintf-js: 1.0.3 2748 + 2749 + argparse@2.0.1: {} 2750 + 2751 + aria-query@5.3.2: {} 2752 + 2753 + array-iterate@2.0.1: {} 2754 + 2755 + astring@1.9.0: {} 2756 + 2757 + astro-expressive-code@0.38.3(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)): 2758 + dependencies: 2759 + astro: 5.1.3(rollup@4.30.1)(typescript@5.7.3) 2760 + rehype-expressive-code: 0.38.3 2761 + 2762 + astro@5.1.3(rollup@4.30.1)(typescript@5.7.3): 2763 + dependencies: 2764 + '@astrojs/compiler': 2.10.3 2765 + '@astrojs/internal-helpers': 0.4.2 2766 + '@astrojs/markdown-remark': 6.0.1 2767 + '@astrojs/telemetry': 3.2.0 2768 + '@oslojs/encoding': 1.1.0 2769 + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) 2770 + '@types/cookie': 0.6.0 2771 + acorn: 8.14.0 2772 + aria-query: 5.3.2 2773 + axobject-query: 4.1.0 2774 + boxen: 8.0.1 2775 + ci-info: 4.1.0 2776 + clsx: 2.1.1 2777 + common-ancestor-path: 1.0.1 2778 + cookie: 0.7.2 2779 + cssesc: 3.0.0 2780 + debug: 4.4.0 2781 + deterministic-object-hash: 2.0.2 2782 + devalue: 5.1.1 2783 + diff: 5.2.0 2784 + dlv: 1.1.3 2785 + dset: 3.1.4 2786 + es-module-lexer: 1.6.0 2787 + esbuild: 0.21.5 2788 + estree-walker: 3.0.3 2789 + fast-glob: 3.3.3 2790 + flattie: 1.1.1 2791 + github-slugger: 2.0.0 2792 + html-escaper: 3.0.3 2793 + http-cache-semantics: 4.1.1 2794 + js-yaml: 4.1.0 2795 + kleur: 4.1.5 2796 + magic-string: 0.30.17 2797 + magicast: 0.3.5 2798 + micromatch: 4.0.8 2799 + mrmime: 2.0.0 2800 + neotraverse: 0.6.18 2801 + p-limit: 6.2.0 2802 + p-queue: 8.0.1 2803 + preferred-pm: 4.0.0 2804 + prompts: 2.4.2 2805 + rehype: 13.0.2 2806 + semver: 7.6.3 2807 + shiki: 1.26.1 2808 + tinyexec: 0.3.2 2809 + tsconfck: 3.1.4(typescript@5.7.3) 2810 + ultrahtml: 1.5.3 2811 + unist-util-visit: 5.0.0 2812 + unstorage: 1.14.4 2813 + vfile: 6.0.3 2814 + vite: 6.0.7 2815 + vitefu: 1.0.5(vite@6.0.7) 2816 + which-pm: 3.0.0 2817 + xxhash-wasm: 1.1.0 2818 + yargs-parser: 21.1.1 2819 + yocto-spinner: 0.1.2 2820 + zod: 3.24.1 2821 + zod-to-json-schema: 3.24.1(zod@3.24.1) 2822 + zod-to-ts: 1.2.0(typescript@5.7.3)(zod@3.24.1) 2823 + optionalDependencies: 2824 + sharp: 0.33.5 2825 + transitivePeerDependencies: 2826 + - '@azure/app-configuration' 2827 + - '@azure/cosmos' 2828 + - '@azure/data-tables' 2829 + - '@azure/identity' 2830 + - '@azure/keyvault-secrets' 2831 + - '@azure/storage-blob' 2832 + - '@capacitor/preferences' 2833 + - '@deno/kv' 2834 + - '@netlify/blobs' 2835 + - '@planetscale/database' 2836 + - '@types/node' 2837 + - '@upstash/redis' 2838 + - '@vercel/blob' 2839 + - '@vercel/kv' 2840 + - aws4fetch 2841 + - db0 2842 + - idb-keyval 2843 + - ioredis 2844 + - jiti 2845 + - less 2846 + - lightningcss 2847 + - rollup 2848 + - sass 2849 + - sass-embedded 2850 + - stylus 2851 + - sugarss 2852 + - supports-color 2853 + - terser 2854 + - tsx 2855 + - typescript 2856 + - uploadthing 2857 + - yaml 2858 + 2859 + axobject-query@4.1.0: {} 2860 + 2861 + b4a@1.6.7: {} 2862 + 2863 + bail@2.0.2: {} 2864 + 2865 + bare-events@2.5.3: 2866 + optional: true 2867 + 2868 + bare-fs@2.3.5: 2869 + dependencies: 2870 + bare-events: 2.5.3 2871 + bare-path: 2.1.3 2872 + bare-stream: 2.6.1 2873 + optional: true 2874 + 2875 + bare-os@2.4.4: 2876 + optional: true 2877 + 2878 + bare-path@2.1.3: 2879 + dependencies: 2880 + bare-os: 2.4.4 2881 + optional: true 2882 + 2883 + bare-stream@2.6.1: 2884 + dependencies: 2885 + streamx: 2.21.1 2886 + optional: true 2887 + 2888 + base-64@1.0.0: {} 2889 + 2890 + base64-js@1.5.1: {} 2891 + 2892 + bcp-47-match@2.0.3: {} 2893 + 2894 + bcp-47@2.1.0: 2895 + dependencies: 2896 + is-alphabetical: 2.0.1 2897 + is-alphanumerical: 2.0.1 2898 + is-decimal: 2.0.1 2899 + 2900 + binary-extensions@2.3.0: {} 2901 + 2902 + bl@4.1.0: 2903 + dependencies: 2904 + buffer: 5.7.1 2905 + inherits: 2.0.4 2906 + readable-stream: 3.6.2 2907 + 2908 + boolbase@1.0.0: {} 2909 + 2910 + boxen@8.0.1: 2911 + dependencies: 2912 + ansi-align: 3.0.1 2913 + camelcase: 8.0.0 2914 + chalk: 5.4.1 2915 + cli-boxes: 3.0.0 2916 + string-width: 7.2.0 2917 + type-fest: 4.32.0 2918 + widest-line: 5.0.0 2919 + wrap-ansi: 9.0.0 2920 + 2921 + braces@3.0.3: 2922 + dependencies: 2923 + fill-range: 7.1.1 2924 + 2925 + buffer@5.7.1: 2926 + dependencies: 2927 + base64-js: 1.5.1 2928 + ieee754: 1.2.1 2929 + 2930 + camelcase@8.0.0: {} 2931 + 2932 + ccount@2.0.1: {} 2933 + 2934 + chalk@5.4.1: {} 2935 + 2936 + character-entities-html4@2.1.0: {} 2937 + 2938 + character-entities-legacy@3.0.0: {} 2939 + 2940 + character-entities@2.0.2: {} 2941 + 2942 + character-reference-invalid@2.0.1: {} 2943 + 2944 + chokidar@3.6.0: 2945 + dependencies: 2946 + anymatch: 3.1.3 2947 + braces: 3.0.3 2948 + glob-parent: 5.1.2 2949 + is-binary-path: 2.1.0 2950 + is-glob: 4.0.3 2951 + normalize-path: 3.0.0 2952 + readdirp: 3.6.0 2953 + optionalDependencies: 2954 + fsevents: 2.3.3 2955 + 2956 + chownr@1.1.4: {} 2957 + 2958 + ci-info@4.1.0: {} 2959 + 2960 + cli-boxes@3.0.0: {} 2961 + 2962 + clsx@2.1.1: {} 2963 + 2964 + collapse-white-space@2.1.0: {} 2965 + 2966 + color-convert@2.0.1: 2967 + dependencies: 2968 + color-name: 1.1.4 2969 + 2970 + color-name@1.1.4: {} 2971 + 2972 + color-string@1.9.1: 2973 + dependencies: 2974 + color-name: 1.1.4 2975 + simple-swizzle: 0.2.2 2976 + 2977 + color@4.2.3: 2978 + dependencies: 2979 + color-convert: 2.0.1 2980 + color-string: 1.9.1 2981 + 2982 + comma-separated-tokens@2.0.3: {} 2983 + 2984 + common-ancestor-path@1.0.1: {} 2985 + 2986 + consola@3.3.3: {} 2987 + 2988 + cookie-es@1.2.2: {} 2989 + 2990 + cookie@0.7.2: {} 2991 + 2992 + crossws@0.3.1: 2993 + dependencies: 2994 + uncrypto: 0.1.3 2995 + 2996 + css-selector-parser@3.0.5: {} 2997 + 2998 + cssesc@3.0.0: {} 2999 + 3000 + debug@4.4.0: 3001 + dependencies: 3002 + ms: 2.1.3 3003 + 3004 + decode-named-character-reference@1.0.2: 3005 + dependencies: 3006 + character-entities: 2.0.2 3007 + 3008 + decompress-response@6.0.0: 3009 + dependencies: 3010 + mimic-response: 3.1.0 3011 + 3012 + deep-extend@0.6.0: {} 3013 + 3014 + defu@6.1.4: {} 3015 + 3016 + dequal@2.0.3: {} 3017 + 3018 + destr@2.0.3: {} 3019 + 3020 + detect-libc@2.0.3: {} 3021 + 3022 + deterministic-object-hash@2.0.2: 3023 + dependencies: 3024 + base-64: 1.0.0 3025 + 3026 + devalue@5.1.1: {} 3027 + 3028 + devlop@1.1.0: 3029 + dependencies: 3030 + dequal: 2.0.3 3031 + 3032 + diff@5.2.0: {} 3033 + 3034 + direction@2.0.1: {} 3035 + 3036 + dlv@1.1.3: {} 3037 + 3038 + dset@3.1.4: {} 3039 + 3040 + emoji-regex-xs@1.0.0: {} 3041 + 3042 + emoji-regex@10.4.0: {} 3043 + 3044 + emoji-regex@8.0.0: {} 3045 + 3046 + end-of-stream@1.4.4: 3047 + dependencies: 3048 + once: 1.4.0 3049 + 3050 + entities@4.5.0: {} 3051 + 3052 + es-module-lexer@1.6.0: {} 3053 + 3054 + esast-util-from-estree@2.0.0: 3055 + dependencies: 3056 + '@types/estree-jsx': 1.0.5 3057 + devlop: 1.1.0 3058 + estree-util-visit: 2.0.0 3059 + unist-util-position-from-estree: 2.0.0 3060 + 3061 + esast-util-from-js@2.0.1: 3062 + dependencies: 3063 + '@types/estree-jsx': 1.0.5 3064 + acorn: 8.14.0 3065 + esast-util-from-estree: 2.0.0 3066 + vfile-message: 4.0.2 3067 + 3068 + esbuild@0.21.5: 3069 + optionalDependencies: 3070 + '@esbuild/aix-ppc64': 0.21.5 3071 + '@esbuild/android-arm': 0.21.5 3072 + '@esbuild/android-arm64': 0.21.5 3073 + '@esbuild/android-x64': 0.21.5 3074 + '@esbuild/darwin-arm64': 0.21.5 3075 + '@esbuild/darwin-x64': 0.21.5 3076 + '@esbuild/freebsd-arm64': 0.21.5 3077 + '@esbuild/freebsd-x64': 0.21.5 3078 + '@esbuild/linux-arm': 0.21.5 3079 + '@esbuild/linux-arm64': 0.21.5 3080 + '@esbuild/linux-ia32': 0.21.5 3081 + '@esbuild/linux-loong64': 0.21.5 3082 + '@esbuild/linux-mips64el': 0.21.5 3083 + '@esbuild/linux-ppc64': 0.21.5 3084 + '@esbuild/linux-riscv64': 0.21.5 3085 + '@esbuild/linux-s390x': 0.21.5 3086 + '@esbuild/linux-x64': 0.21.5 3087 + '@esbuild/netbsd-x64': 0.21.5 3088 + '@esbuild/openbsd-x64': 0.21.5 3089 + '@esbuild/sunos-x64': 0.21.5 3090 + '@esbuild/win32-arm64': 0.21.5 3091 + '@esbuild/win32-ia32': 0.21.5 3092 + '@esbuild/win32-x64': 0.21.5 3093 + 3094 + esbuild@0.24.2: 3095 + optionalDependencies: 3096 + '@esbuild/aix-ppc64': 0.24.2 3097 + '@esbuild/android-arm': 0.24.2 3098 + '@esbuild/android-arm64': 0.24.2 3099 + '@esbuild/android-x64': 0.24.2 3100 + '@esbuild/darwin-arm64': 0.24.2 3101 + '@esbuild/darwin-x64': 0.24.2 3102 + '@esbuild/freebsd-arm64': 0.24.2 3103 + '@esbuild/freebsd-x64': 0.24.2 3104 + '@esbuild/linux-arm': 0.24.2 3105 + '@esbuild/linux-arm64': 0.24.2 3106 + '@esbuild/linux-ia32': 0.24.2 3107 + '@esbuild/linux-loong64': 0.24.2 3108 + '@esbuild/linux-mips64el': 0.24.2 3109 + '@esbuild/linux-ppc64': 0.24.2 3110 + '@esbuild/linux-riscv64': 0.24.2 3111 + '@esbuild/linux-s390x': 0.24.2 3112 + '@esbuild/linux-x64': 0.24.2 3113 + '@esbuild/netbsd-arm64': 0.24.2 3114 + '@esbuild/netbsd-x64': 0.24.2 3115 + '@esbuild/openbsd-arm64': 0.24.2 3116 + '@esbuild/openbsd-x64': 0.24.2 3117 + '@esbuild/sunos-x64': 0.24.2 3118 + '@esbuild/win32-arm64': 0.24.2 3119 + '@esbuild/win32-ia32': 0.24.2 3120 + '@esbuild/win32-x64': 0.24.2 3121 + 3122 + escape-string-regexp@5.0.0: {} 3123 + 3124 + esprima@4.0.1: {} 3125 + 3126 + estree-util-attach-comments@3.0.0: 3127 + dependencies: 3128 + '@types/estree': 1.0.6 3129 + 3130 + estree-util-build-jsx@3.0.1: 3131 + dependencies: 3132 + '@types/estree-jsx': 1.0.5 3133 + devlop: 1.1.0 3134 + estree-util-is-identifier-name: 3.0.0 3135 + estree-walker: 3.0.3 3136 + 3137 + estree-util-is-identifier-name@3.0.0: {} 3138 + 3139 + estree-util-scope@1.0.0: 3140 + dependencies: 3141 + '@types/estree': 1.0.6 3142 + devlop: 1.1.0 3143 + 3144 + estree-util-to-js@2.0.0: 3145 + dependencies: 3146 + '@types/estree-jsx': 1.0.5 3147 + astring: 1.9.0 3148 + source-map: 0.7.4 3149 + 3150 + estree-util-visit@2.0.0: 3151 + dependencies: 3152 + '@types/estree-jsx': 1.0.5 3153 + '@types/unist': 3.0.3 3154 + 3155 + estree-walker@2.0.2: {} 3156 + 3157 + estree-walker@3.0.3: 3158 + dependencies: 3159 + '@types/estree': 1.0.6 3160 + 3161 + eventemitter3@5.0.1: {} 3162 + 3163 + expand-template@2.0.3: {} 3164 + 3165 + expressive-code@0.38.3: 3166 + dependencies: 3167 + '@expressive-code/core': 0.38.3 3168 + '@expressive-code/plugin-frames': 0.38.3 3169 + '@expressive-code/plugin-shiki': 0.38.3 3170 + '@expressive-code/plugin-text-markers': 0.38.3 3171 + 3172 + extend@3.0.2: {} 3173 + 3174 + fast-fifo@1.3.2: {} 3175 + 3176 + fast-glob@3.3.3: 3177 + dependencies: 3178 + '@nodelib/fs.stat': 2.0.5 3179 + '@nodelib/fs.walk': 1.2.8 3180 + glob-parent: 5.1.2 3181 + merge2: 1.4.1 3182 + micromatch: 4.0.8 3183 + 3184 + fastq@1.18.0: 3185 + dependencies: 3186 + reusify: 1.0.4 3187 + 3188 + fill-range@7.1.1: 3189 + dependencies: 3190 + to-regex-range: 5.0.1 3191 + 3192 + find-up-simple@1.0.0: {} 3193 + 3194 + find-up@4.1.0: 3195 + dependencies: 3196 + locate-path: 5.0.0 3197 + path-exists: 4.0.0 3198 + 3199 + find-yarn-workspace-root2@1.2.16: 3200 + dependencies: 3201 + micromatch: 4.0.8 3202 + pkg-dir: 4.2.0 3203 + 3204 + flattie@1.1.1: {} 3205 + 3206 + fs-constants@1.0.0: {} 3207 + 3208 + fsevents@2.3.3: 3209 + optional: true 3210 + 3211 + get-east-asian-width@1.3.0: {} 3212 + 3213 + github-from-package@0.0.0: {} 3214 + 3215 + github-slugger@2.0.0: {} 3216 + 3217 + glob-parent@5.1.2: 3218 + dependencies: 3219 + is-glob: 4.0.3 3220 + 3221 + graceful-fs@4.2.11: {} 3222 + 3223 + h3@1.13.0: 3224 + dependencies: 3225 + cookie-es: 1.2.2 3226 + crossws: 0.3.1 3227 + defu: 6.1.4 3228 + destr: 2.0.3 3229 + iron-webcrypto: 1.2.1 3230 + ohash: 1.1.4 3231 + radix3: 1.1.2 3232 + ufo: 1.5.4 3233 + uncrypto: 0.1.3 3234 + unenv: 1.10.0 3235 + 3236 + hast-util-embedded@3.0.0: 3237 + dependencies: 3238 + '@types/hast': 3.0.4 3239 + hast-util-is-element: 3.0.0 3240 + 3241 + hast-util-format@1.1.0: 3242 + dependencies: 3243 + '@types/hast': 3.0.4 3244 + hast-util-embedded: 3.0.0 3245 + hast-util-minify-whitespace: 1.0.1 3246 + hast-util-phrasing: 3.0.1 3247 + hast-util-whitespace: 3.0.0 3248 + html-whitespace-sensitive-tag-names: 3.0.1 3249 + unist-util-visit-parents: 6.0.1 3250 + 3251 + hast-util-from-html@2.0.3: 3252 + dependencies: 3253 + '@types/hast': 3.0.4 3254 + devlop: 1.1.0 3255 + hast-util-from-parse5: 8.0.2 3256 + parse5: 7.2.1 3257 + vfile: 6.0.3 3258 + vfile-message: 4.0.2 3259 + 3260 + hast-util-from-parse5@8.0.2: 3261 + dependencies: 3262 + '@types/hast': 3.0.4 3263 + '@types/unist': 3.0.3 3264 + devlop: 1.1.0 3265 + hastscript: 9.0.0 3266 + property-information: 6.5.0 3267 + vfile: 6.0.3 3268 + vfile-location: 5.0.3 3269 + web-namespaces: 2.0.1 3270 + 3271 + hast-util-has-property@3.0.0: 3272 + dependencies: 3273 + '@types/hast': 3.0.4 3274 + 3275 + hast-util-is-body-ok-link@3.0.1: 3276 + dependencies: 3277 + '@types/hast': 3.0.4 3278 + 3279 + hast-util-is-element@3.0.0: 3280 + dependencies: 3281 + '@types/hast': 3.0.4 3282 + 3283 + hast-util-minify-whitespace@1.0.1: 3284 + dependencies: 3285 + '@types/hast': 3.0.4 3286 + hast-util-embedded: 3.0.0 3287 + hast-util-is-element: 3.0.0 3288 + hast-util-whitespace: 3.0.0 3289 + unist-util-is: 6.0.0 3290 + 3291 + hast-util-parse-selector@4.0.0: 3292 + dependencies: 3293 + '@types/hast': 3.0.4 3294 + 3295 + hast-util-phrasing@3.0.1: 3296 + dependencies: 3297 + '@types/hast': 3.0.4 3298 + hast-util-embedded: 3.0.0 3299 + hast-util-has-property: 3.0.0 3300 + hast-util-is-body-ok-link: 3.0.1 3301 + hast-util-is-element: 3.0.0 3302 + 3303 + hast-util-raw@9.1.0: 3304 + dependencies: 3305 + '@types/hast': 3.0.4 3306 + '@types/unist': 3.0.3 3307 + '@ungap/structured-clone': 1.2.1 3308 + hast-util-from-parse5: 8.0.2 3309 + hast-util-to-parse5: 8.0.0 3310 + html-void-elements: 3.0.0 3311 + mdast-util-to-hast: 13.2.0 3312 + parse5: 7.2.1 3313 + unist-util-position: 5.0.0 3314 + unist-util-visit: 5.0.0 3315 + vfile: 6.0.3 3316 + web-namespaces: 2.0.1 3317 + zwitch: 2.0.4 3318 + 3319 + hast-util-select@6.0.3: 3320 + dependencies: 3321 + '@types/hast': 3.0.4 3322 + '@types/unist': 3.0.3 3323 + bcp-47-match: 2.0.3 3324 + comma-separated-tokens: 2.0.3 3325 + css-selector-parser: 3.0.5 3326 + devlop: 1.1.0 3327 + direction: 2.0.1 3328 + hast-util-has-property: 3.0.0 3329 + hast-util-to-string: 3.0.1 3330 + hast-util-whitespace: 3.0.0 3331 + nth-check: 2.1.1 3332 + property-information: 6.5.0 3333 + space-separated-tokens: 2.0.2 3334 + unist-util-visit: 5.0.0 3335 + zwitch: 2.0.4 3336 + 3337 + hast-util-to-estree@3.1.1: 3338 + dependencies: 3339 + '@types/estree': 1.0.6 3340 + '@types/estree-jsx': 1.0.5 3341 + '@types/hast': 3.0.4 3342 + comma-separated-tokens: 2.0.3 3343 + devlop: 1.1.0 3344 + estree-util-attach-comments: 3.0.0 3345 + estree-util-is-identifier-name: 3.0.0 3346 + hast-util-whitespace: 3.0.0 3347 + mdast-util-mdx-expression: 2.0.1 3348 + mdast-util-mdx-jsx: 3.1.3 3349 + mdast-util-mdxjs-esm: 2.0.1 3350 + property-information: 6.5.0 3351 + space-separated-tokens: 2.0.2 3352 + style-to-object: 1.0.8 3353 + unist-util-position: 5.0.0 3354 + zwitch: 2.0.4 3355 + transitivePeerDependencies: 3356 + - supports-color 3357 + 3358 + hast-util-to-html@9.0.4: 3359 + dependencies: 3360 + '@types/hast': 3.0.4 3361 + '@types/unist': 3.0.3 3362 + ccount: 2.0.1 3363 + comma-separated-tokens: 2.0.3 3364 + hast-util-whitespace: 3.0.0 3365 + html-void-elements: 3.0.0 3366 + mdast-util-to-hast: 13.2.0 3367 + property-information: 6.5.0 3368 + space-separated-tokens: 2.0.2 3369 + stringify-entities: 4.0.4 3370 + zwitch: 2.0.4 3371 + 3372 + hast-util-to-jsx-runtime@2.3.2: 3373 + dependencies: 3374 + '@types/estree': 1.0.6 3375 + '@types/hast': 3.0.4 3376 + '@types/unist': 3.0.3 3377 + comma-separated-tokens: 2.0.3 3378 + devlop: 1.1.0 3379 + estree-util-is-identifier-name: 3.0.0 3380 + hast-util-whitespace: 3.0.0 3381 + mdast-util-mdx-expression: 2.0.1 3382 + mdast-util-mdx-jsx: 3.1.3 3383 + mdast-util-mdxjs-esm: 2.0.1 3384 + property-information: 6.5.0 3385 + space-separated-tokens: 2.0.2 3386 + style-to-object: 1.0.8 3387 + unist-util-position: 5.0.0 3388 + vfile-message: 4.0.2 3389 + transitivePeerDependencies: 3390 + - supports-color 3391 + 3392 + hast-util-to-parse5@8.0.0: 3393 + dependencies: 3394 + '@types/hast': 3.0.4 3395 + comma-separated-tokens: 2.0.3 3396 + devlop: 1.1.0 3397 + property-information: 6.5.0 3398 + space-separated-tokens: 2.0.2 3399 + web-namespaces: 2.0.1 3400 + zwitch: 2.0.4 3401 + 3402 + hast-util-to-string@3.0.1: 3403 + dependencies: 3404 + '@types/hast': 3.0.4 3405 + 3406 + hast-util-to-text@4.0.2: 3407 + dependencies: 3408 + '@types/hast': 3.0.4 3409 + '@types/unist': 3.0.3 3410 + hast-util-is-element: 3.0.0 3411 + unist-util-find-after: 5.0.0 3412 + 3413 + hast-util-whitespace@3.0.0: 3414 + dependencies: 3415 + '@types/hast': 3.0.4 3416 + 3417 + hastscript@9.0.0: 3418 + dependencies: 3419 + '@types/hast': 3.0.4 3420 + comma-separated-tokens: 2.0.3 3421 + hast-util-parse-selector: 4.0.0 3422 + property-information: 6.5.0 3423 + space-separated-tokens: 2.0.2 3424 + 3425 + html-escaper@3.0.3: {} 3426 + 3427 + html-void-elements@3.0.0: {} 3428 + 3429 + html-whitespace-sensitive-tag-names@3.0.1: {} 3430 + 3431 + http-cache-semantics@4.1.1: {} 3432 + 3433 + i18next@23.16.8: 3434 + dependencies: 3435 + '@babel/runtime': 7.26.0 3436 + 3437 + ieee754@1.2.1: {} 3438 + 3439 + import-meta-resolve@4.1.0: {} 3440 + 3441 + inherits@2.0.4: {} 3442 + 3443 + ini@1.3.8: {} 3444 + 3445 + inline-style-parser@0.2.4: {} 3446 + 3447 + iron-webcrypto@1.2.1: {} 3448 + 3449 + is-alphabetical@2.0.1: {} 3450 + 3451 + is-alphanumerical@2.0.1: 3452 + dependencies: 3453 + is-alphabetical: 2.0.1 3454 + is-decimal: 2.0.1 3455 + 3456 + is-arrayish@0.3.2: {} 3457 + 3458 + is-binary-path@2.1.0: 3459 + dependencies: 3460 + binary-extensions: 2.3.0 3461 + 3462 + is-decimal@2.0.1: {} 3463 + 3464 + is-docker@3.0.0: {} 3465 + 3466 + is-extglob@2.1.1: {} 3467 + 3468 + is-fullwidth-code-point@3.0.0: {} 3469 + 3470 + is-glob@4.0.3: 3471 + dependencies: 3472 + is-extglob: 2.1.1 3473 + 3474 + is-hexadecimal@2.0.1: {} 3475 + 3476 + is-inside-container@1.0.0: 3477 + dependencies: 3478 + is-docker: 3.0.0 3479 + 3480 + is-number@7.0.0: {} 3481 + 3482 + is-plain-obj@4.1.0: {} 3483 + 3484 + is-wsl@3.1.0: 3485 + dependencies: 3486 + is-inside-container: 1.0.0 3487 + 3488 + iso8601-duration@2.1.2: {} 3489 + 3490 + js-yaml@3.14.1: 3491 + dependencies: 3492 + argparse: 1.0.10 3493 + esprima: 4.0.1 3494 + 3495 + js-yaml@4.1.0: 3496 + dependencies: 3497 + argparse: 2.0.1 3498 + 3499 + kleur@3.0.3: {} 3500 + 3501 + kleur@4.1.5: {} 3502 + 3503 + lite-youtube-embed@0.3.3: {} 3504 + 3505 + load-yaml-file@0.2.0: 3506 + dependencies: 3507 + graceful-fs: 4.2.11 3508 + js-yaml: 3.14.1 3509 + pify: 4.0.1 3510 + strip-bom: 3.0.0 3511 + 3512 + locate-path@5.0.0: 3513 + dependencies: 3514 + p-locate: 4.1.0 3515 + 3516 + longest-streak@3.1.0: {} 3517 + 3518 + lru-cache@10.4.3: {} 3519 + 3520 + magic-string@0.30.17: 3521 + dependencies: 3522 + '@jridgewell/sourcemap-codec': 1.5.0 3523 + 3524 + magicast@0.3.5: 3525 + dependencies: 3526 + '@babel/parser': 7.26.3 3527 + '@babel/types': 7.26.3 3528 + source-map-js: 1.2.1 3529 + 3530 + markdown-extensions@2.0.0: {} 3531 + 3532 + markdown-table@3.0.4: {} 3533 + 3534 + mdast-util-definitions@6.0.0: 3535 + dependencies: 3536 + '@types/mdast': 4.0.4 3537 + '@types/unist': 3.0.3 3538 + unist-util-visit: 5.0.0 3539 + 3540 + mdast-util-directive@3.0.0: 3541 + dependencies: 3542 + '@types/mdast': 4.0.4 3543 + '@types/unist': 3.0.3 3544 + devlop: 1.1.0 3545 + mdast-util-from-markdown: 2.0.2 3546 + mdast-util-to-markdown: 2.1.2 3547 + parse-entities: 4.0.2 3548 + stringify-entities: 4.0.4 3549 + unist-util-visit-parents: 6.0.1 3550 + transitivePeerDependencies: 3551 + - supports-color 3552 + 3553 + mdast-util-find-and-replace@3.0.2: 3554 + dependencies: 3555 + '@types/mdast': 4.0.4 3556 + escape-string-regexp: 5.0.0 3557 + unist-util-is: 6.0.0 3558 + unist-util-visit-parents: 6.0.1 3559 + 3560 + mdast-util-from-markdown@2.0.2: 3561 + dependencies: 3562 + '@types/mdast': 4.0.4 3563 + '@types/unist': 3.0.3 3564 + decode-named-character-reference: 1.0.2 3565 + devlop: 1.1.0 3566 + mdast-util-to-string: 4.0.0 3567 + micromark: 4.0.1 3568 + micromark-util-decode-numeric-character-reference: 2.0.2 3569 + micromark-util-decode-string: 2.0.1 3570 + micromark-util-normalize-identifier: 2.0.1 3571 + micromark-util-symbol: 2.0.1 3572 + micromark-util-types: 2.0.1 3573 + unist-util-stringify-position: 4.0.0 3574 + transitivePeerDependencies: 3575 + - supports-color 3576 + 3577 + mdast-util-gfm-autolink-literal@2.0.1: 3578 + dependencies: 3579 + '@types/mdast': 4.0.4 3580 + ccount: 2.0.1 3581 + devlop: 1.1.0 3582 + mdast-util-find-and-replace: 3.0.2 3583 + micromark-util-character: 2.1.1 3584 + 3585 + mdast-util-gfm-footnote@2.0.0: 3586 + dependencies: 3587 + '@types/mdast': 4.0.4 3588 + devlop: 1.1.0 3589 + mdast-util-from-markdown: 2.0.2 3590 + mdast-util-to-markdown: 2.1.2 3591 + micromark-util-normalize-identifier: 2.0.1 3592 + transitivePeerDependencies: 3593 + - supports-color 3594 + 3595 + mdast-util-gfm-strikethrough@2.0.0: 3596 + dependencies: 3597 + '@types/mdast': 4.0.4 3598 + mdast-util-from-markdown: 2.0.2 3599 + mdast-util-to-markdown: 2.1.2 3600 + transitivePeerDependencies: 3601 + - supports-color 3602 + 3603 + mdast-util-gfm-table@2.0.0: 3604 + dependencies: 3605 + '@types/mdast': 4.0.4 3606 + devlop: 1.1.0 3607 + markdown-table: 3.0.4 3608 + mdast-util-from-markdown: 2.0.2 3609 + mdast-util-to-markdown: 2.1.2 3610 + transitivePeerDependencies: 3611 + - supports-color 3612 + 3613 + mdast-util-gfm-task-list-item@2.0.0: 3614 + dependencies: 3615 + '@types/mdast': 4.0.4 3616 + devlop: 1.1.0 3617 + mdast-util-from-markdown: 2.0.2 3618 + mdast-util-to-markdown: 2.1.2 3619 + transitivePeerDependencies: 3620 + - supports-color 3621 + 3622 + mdast-util-gfm@3.0.0: 3623 + dependencies: 3624 + mdast-util-from-markdown: 2.0.2 3625 + mdast-util-gfm-autolink-literal: 2.0.1 3626 + mdast-util-gfm-footnote: 2.0.0 3627 + mdast-util-gfm-strikethrough: 2.0.0 3628 + mdast-util-gfm-table: 2.0.0 3629 + mdast-util-gfm-task-list-item: 2.0.0 3630 + mdast-util-to-markdown: 2.1.2 3631 + transitivePeerDependencies: 3632 + - supports-color 3633 + 3634 + mdast-util-mdx-expression@2.0.1: 3635 + dependencies: 3636 + '@types/estree-jsx': 1.0.5 3637 + '@types/hast': 3.0.4 3638 + '@types/mdast': 4.0.4 3639 + devlop: 1.1.0 3640 + mdast-util-from-markdown: 2.0.2 3641 + mdast-util-to-markdown: 2.1.2 3642 + transitivePeerDependencies: 3643 + - supports-color 3644 + 3645 + mdast-util-mdx-jsx@3.1.3: 3646 + dependencies: 3647 + '@types/estree-jsx': 1.0.5 3648 + '@types/hast': 3.0.4 3649 + '@types/mdast': 4.0.4 3650 + '@types/unist': 3.0.3 3651 + ccount: 2.0.1 3652 + devlop: 1.1.0 3653 + mdast-util-from-markdown: 2.0.2 3654 + mdast-util-to-markdown: 2.1.2 3655 + parse-entities: 4.0.2 3656 + stringify-entities: 4.0.4 3657 + unist-util-stringify-position: 4.0.0 3658 + vfile-message: 4.0.2 3659 + transitivePeerDependencies: 3660 + - supports-color 3661 + 3662 + mdast-util-mdx@3.0.0: 3663 + dependencies: 3664 + mdast-util-from-markdown: 2.0.2 3665 + mdast-util-mdx-expression: 2.0.1 3666 + mdast-util-mdx-jsx: 3.1.3 3667 + mdast-util-mdxjs-esm: 2.0.1 3668 + mdast-util-to-markdown: 2.1.2 3669 + transitivePeerDependencies: 3670 + - supports-color 3671 + 3672 + mdast-util-mdxjs-esm@2.0.1: 3673 + dependencies: 3674 + '@types/estree-jsx': 1.0.5 3675 + '@types/hast': 3.0.4 3676 + '@types/mdast': 4.0.4 3677 + devlop: 1.1.0 3678 + mdast-util-from-markdown: 2.0.2 3679 + mdast-util-to-markdown: 2.1.2 3680 + transitivePeerDependencies: 3681 + - supports-color 3682 + 3683 + mdast-util-phrasing@4.1.0: 3684 + dependencies: 3685 + '@types/mdast': 4.0.4 3686 + unist-util-is: 6.0.0 3687 + 3688 + mdast-util-to-hast@13.2.0: 3689 + dependencies: 3690 + '@types/hast': 3.0.4 3691 + '@types/mdast': 4.0.4 3692 + '@ungap/structured-clone': 1.2.1 3693 + devlop: 1.1.0 3694 + micromark-util-sanitize-uri: 2.0.1 3695 + trim-lines: 3.0.1 3696 + unist-util-position: 5.0.0 3697 + unist-util-visit: 5.0.0 3698 + vfile: 6.0.3 3699 + 3700 + mdast-util-to-markdown@2.1.2: 3701 + dependencies: 3702 + '@types/mdast': 4.0.4 3703 + '@types/unist': 3.0.3 3704 + longest-streak: 3.1.0 3705 + mdast-util-phrasing: 4.1.0 3706 + mdast-util-to-string: 4.0.0 3707 + micromark-util-classify-character: 2.0.1 3708 + micromark-util-decode-string: 2.0.1 3709 + unist-util-visit: 5.0.0 3710 + zwitch: 2.0.4 3711 + 3712 + mdast-util-to-string@4.0.0: 3713 + dependencies: 3714 + '@types/mdast': 4.0.4 3715 + 3716 + merge2@1.4.1: {} 3717 + 3718 + micromark-core-commonmark@2.0.2: 3719 + dependencies: 3720 + decode-named-character-reference: 1.0.2 3721 + devlop: 1.1.0 3722 + micromark-factory-destination: 2.0.1 3723 + micromark-factory-label: 2.0.1 3724 + micromark-factory-space: 2.0.1 3725 + micromark-factory-title: 2.0.1 3726 + micromark-factory-whitespace: 2.0.1 3727 + micromark-util-character: 2.1.1 3728 + micromark-util-chunked: 2.0.1 3729 + micromark-util-classify-character: 2.0.1 3730 + micromark-util-html-tag-name: 2.0.1 3731 + micromark-util-normalize-identifier: 2.0.1 3732 + micromark-util-resolve-all: 2.0.1 3733 + micromark-util-subtokenize: 2.0.3 3734 + micromark-util-symbol: 2.0.1 3735 + micromark-util-types: 2.0.1 3736 + 3737 + micromark-extension-directive@3.0.2: 3738 + dependencies: 3739 + devlop: 1.1.0 3740 + micromark-factory-space: 2.0.1 3741 + micromark-factory-whitespace: 2.0.1 3742 + micromark-util-character: 2.1.1 3743 + micromark-util-symbol: 2.0.1 3744 + micromark-util-types: 2.0.1 3745 + parse-entities: 4.0.2 3746 + 3747 + micromark-extension-gfm-autolink-literal@2.1.0: 3748 + dependencies: 3749 + micromark-util-character: 2.1.1 3750 + micromark-util-sanitize-uri: 2.0.1 3751 + micromark-util-symbol: 2.0.1 3752 + micromark-util-types: 2.0.1 3753 + 3754 + micromark-extension-gfm-footnote@2.1.0: 3755 + dependencies: 3756 + devlop: 1.1.0 3757 + micromark-core-commonmark: 2.0.2 3758 + micromark-factory-space: 2.0.1 3759 + micromark-util-character: 2.1.1 3760 + micromark-util-normalize-identifier: 2.0.1 3761 + micromark-util-sanitize-uri: 2.0.1 3762 + micromark-util-symbol: 2.0.1 3763 + micromark-util-types: 2.0.1 3764 + 3765 + micromark-extension-gfm-strikethrough@2.1.0: 3766 + dependencies: 3767 + devlop: 1.1.0 3768 + micromark-util-chunked: 2.0.1 3769 + micromark-util-classify-character: 2.0.1 3770 + micromark-util-resolve-all: 2.0.1 3771 + micromark-util-symbol: 2.0.1 3772 + micromark-util-types: 2.0.1 3773 + 3774 + micromark-extension-gfm-table@2.1.0: 3775 + dependencies: 3776 + devlop: 1.1.0 3777 + micromark-factory-space: 2.0.1 3778 + micromark-util-character: 2.1.1 3779 + micromark-util-symbol: 2.0.1 3780 + micromark-util-types: 2.0.1 3781 + 3782 + micromark-extension-gfm-tagfilter@2.0.0: 3783 + dependencies: 3784 + micromark-util-types: 2.0.1 3785 + 3786 + micromark-extension-gfm-task-list-item@2.1.0: 3787 + dependencies: 3788 + devlop: 1.1.0 3789 + micromark-factory-space: 2.0.1 3790 + micromark-util-character: 2.1.1 3791 + micromark-util-symbol: 2.0.1 3792 + micromark-util-types: 2.0.1 3793 + 3794 + micromark-extension-gfm@3.0.0: 3795 + dependencies: 3796 + micromark-extension-gfm-autolink-literal: 2.1.0 3797 + micromark-extension-gfm-footnote: 2.1.0 3798 + micromark-extension-gfm-strikethrough: 2.1.0 3799 + micromark-extension-gfm-table: 2.1.0 3800 + micromark-extension-gfm-tagfilter: 2.0.0 3801 + micromark-extension-gfm-task-list-item: 2.1.0 3802 + micromark-util-combine-extensions: 2.0.1 3803 + micromark-util-types: 2.0.1 3804 + 3805 + micromark-extension-mdx-expression@3.0.0: 3806 + dependencies: 3807 + '@types/estree': 1.0.6 3808 + devlop: 1.1.0 3809 + micromark-factory-mdx-expression: 2.0.2 3810 + micromark-factory-space: 2.0.1 3811 + micromark-util-character: 2.1.1 3812 + micromark-util-events-to-acorn: 2.0.2 3813 + micromark-util-symbol: 2.0.1 3814 + micromark-util-types: 2.0.1 3815 + 3816 + micromark-extension-mdx-jsx@3.0.1: 3817 + dependencies: 3818 + '@types/acorn': 4.0.6 3819 + '@types/estree': 1.0.6 3820 + devlop: 1.1.0 3821 + estree-util-is-identifier-name: 3.0.0 3822 + micromark-factory-mdx-expression: 2.0.2 3823 + micromark-factory-space: 2.0.1 3824 + micromark-util-character: 2.1.1 3825 + micromark-util-events-to-acorn: 2.0.2 3826 + micromark-util-symbol: 2.0.1 3827 + micromark-util-types: 2.0.1 3828 + vfile-message: 4.0.2 3829 + 3830 + micromark-extension-mdx-md@2.0.0: 3831 + dependencies: 3832 + micromark-util-types: 2.0.1 3833 + 3834 + micromark-extension-mdxjs-esm@3.0.0: 3835 + dependencies: 3836 + '@types/estree': 1.0.6 3837 + devlop: 1.1.0 3838 + micromark-core-commonmark: 2.0.2 3839 + micromark-util-character: 2.1.1 3840 + micromark-util-events-to-acorn: 2.0.2 3841 + micromark-util-symbol: 2.0.1 3842 + micromark-util-types: 2.0.1 3843 + unist-util-position-from-estree: 2.0.0 3844 + vfile-message: 4.0.2 3845 + 3846 + micromark-extension-mdxjs@3.0.0: 3847 + dependencies: 3848 + acorn: 8.14.0 3849 + acorn-jsx: 5.3.2(acorn@8.14.0) 3850 + micromark-extension-mdx-expression: 3.0.0 3851 + micromark-extension-mdx-jsx: 3.0.1 3852 + micromark-extension-mdx-md: 2.0.0 3853 + micromark-extension-mdxjs-esm: 3.0.0 3854 + micromark-util-combine-extensions: 2.0.1 3855 + micromark-util-types: 2.0.1 3856 + 3857 + micromark-factory-destination@2.0.1: 3858 + dependencies: 3859 + micromark-util-character: 2.1.1 3860 + micromark-util-symbol: 2.0.1 3861 + micromark-util-types: 2.0.1 3862 + 3863 + micromark-factory-label@2.0.1: 3864 + dependencies: 3865 + devlop: 1.1.0 3866 + micromark-util-character: 2.1.1 3867 + micromark-util-symbol: 2.0.1 3868 + micromark-util-types: 2.0.1 3869 + 3870 + micromark-factory-mdx-expression@2.0.2: 3871 + dependencies: 3872 + '@types/estree': 1.0.6 3873 + devlop: 1.1.0 3874 + micromark-factory-space: 2.0.1 3875 + micromark-util-character: 2.1.1 3876 + micromark-util-events-to-acorn: 2.0.2 3877 + micromark-util-symbol: 2.0.1 3878 + micromark-util-types: 2.0.1 3879 + unist-util-position-from-estree: 2.0.0 3880 + vfile-message: 4.0.2 3881 + 3882 + micromark-factory-space@2.0.1: 3883 + dependencies: 3884 + micromark-util-character: 2.1.1 3885 + micromark-util-types: 2.0.1 3886 + 3887 + micromark-factory-title@2.0.1: 3888 + dependencies: 3889 + micromark-factory-space: 2.0.1 3890 + micromark-util-character: 2.1.1 3891 + micromark-util-symbol: 2.0.1 3892 + micromark-util-types: 2.0.1 3893 + 3894 + micromark-factory-whitespace@2.0.1: 3895 + dependencies: 3896 + micromark-factory-space: 2.0.1 3897 + micromark-util-character: 2.1.1 3898 + micromark-util-symbol: 2.0.1 3899 + micromark-util-types: 2.0.1 3900 + 3901 + micromark-util-character@2.1.1: 3902 + dependencies: 3903 + micromark-util-symbol: 2.0.1 3904 + micromark-util-types: 2.0.1 3905 + 3906 + micromark-util-chunked@2.0.1: 3907 + dependencies: 3908 + micromark-util-symbol: 2.0.1 3909 + 3910 + micromark-util-classify-character@2.0.1: 3911 + dependencies: 3912 + micromark-util-character: 2.1.1 3913 + micromark-util-symbol: 2.0.1 3914 + micromark-util-types: 2.0.1 3915 + 3916 + micromark-util-combine-extensions@2.0.1: 3917 + dependencies: 3918 + micromark-util-chunked: 2.0.1 3919 + micromark-util-types: 2.0.1 3920 + 3921 + micromark-util-decode-numeric-character-reference@2.0.2: 3922 + dependencies: 3923 + micromark-util-symbol: 2.0.1 3924 + 3925 + micromark-util-decode-string@2.0.1: 3926 + dependencies: 3927 + decode-named-character-reference: 1.0.2 3928 + micromark-util-character: 2.1.1 3929 + micromark-util-decode-numeric-character-reference: 2.0.2 3930 + micromark-util-symbol: 2.0.1 3931 + 3932 + micromark-util-encode@2.0.1: {} 3933 + 3934 + micromark-util-events-to-acorn@2.0.2: 3935 + dependencies: 3936 + '@types/acorn': 4.0.6 3937 + '@types/estree': 1.0.6 3938 + '@types/unist': 3.0.3 3939 + devlop: 1.1.0 3940 + estree-util-visit: 2.0.0 3941 + micromark-util-symbol: 2.0.1 3942 + micromark-util-types: 2.0.1 3943 + vfile-message: 4.0.2 3944 + 3945 + micromark-util-html-tag-name@2.0.1: {} 3946 + 3947 + micromark-util-normalize-identifier@2.0.1: 3948 + dependencies: 3949 + micromark-util-symbol: 2.0.1 3950 + 3951 + micromark-util-resolve-all@2.0.1: 3952 + dependencies: 3953 + micromark-util-types: 2.0.1 3954 + 3955 + micromark-util-sanitize-uri@2.0.1: 3956 + dependencies: 3957 + micromark-util-character: 2.1.1 3958 + micromark-util-encode: 2.0.1 3959 + micromark-util-symbol: 2.0.1 3960 + 3961 + micromark-util-subtokenize@2.0.3: 3962 + dependencies: 3963 + devlop: 1.1.0 3964 + micromark-util-chunked: 2.0.1 3965 + micromark-util-symbol: 2.0.1 3966 + micromark-util-types: 2.0.1 3967 + 3968 + micromark-util-symbol@2.0.1: {} 3969 + 3970 + micromark-util-types@2.0.1: {} 3971 + 3972 + micromark@4.0.1: 3973 + dependencies: 3974 + '@types/debug': 4.1.12 3975 + debug: 4.4.0 3976 + decode-named-character-reference: 1.0.2 3977 + devlop: 1.1.0 3978 + micromark-core-commonmark: 2.0.2 3979 + micromark-factory-space: 2.0.1 3980 + micromark-util-character: 2.1.1 3981 + micromark-util-chunked: 2.0.1 3982 + micromark-util-combine-extensions: 2.0.1 3983 + micromark-util-decode-numeric-character-reference: 2.0.2 3984 + micromark-util-encode: 2.0.1 3985 + micromark-util-normalize-identifier: 2.0.1 3986 + micromark-util-resolve-all: 2.0.1 3987 + micromark-util-sanitize-uri: 2.0.1 3988 + micromark-util-subtokenize: 2.0.3 3989 + micromark-util-symbol: 2.0.1 3990 + micromark-util-types: 2.0.1 3991 + transitivePeerDependencies: 3992 + - supports-color 3993 + 3994 + micromatch@4.0.8: 3995 + dependencies: 3996 + braces: 3.0.3 3997 + picomatch: 2.3.1 3998 + 3999 + mime@3.0.0: {} 4000 + 4001 + mimic-response@3.1.0: {} 4002 + 4003 + minimist@1.2.8: {} 4004 + 4005 + mkdirp-classic@0.5.3: {} 4006 + 4007 + mrmime@2.0.0: {} 4008 + 4009 + ms@2.1.3: {} 4010 + 4011 + nanoid@3.3.8: {} 4012 + 4013 + napi-build-utils@1.0.2: {} 4014 + 4015 + neotraverse@0.6.18: {} 4016 + 4017 + nlcst-to-string@4.0.0: 4018 + dependencies: 4019 + '@types/nlcst': 2.0.3 4020 + 4021 + node-abi@3.71.0: 4022 + dependencies: 4023 + semver: 7.6.3 4024 + 4025 + node-addon-api@6.1.0: {} 4026 + 4027 + node-fetch-native@1.6.4: {} 4028 + 4029 + normalize-path@3.0.0: {} 4030 + 4031 + nth-check@2.1.1: 4032 + dependencies: 4033 + boolbase: 1.0.0 4034 + 4035 + ofetch@1.4.1: 4036 + dependencies: 4037 + destr: 2.0.3 4038 + node-fetch-native: 1.6.4 4039 + ufo: 1.5.4 4040 + 4041 + ohash@1.1.4: {} 4042 + 4043 + once@1.4.0: 4044 + dependencies: 4045 + wrappy: 1.0.2 4046 + 4047 + oniguruma-to-es@0.10.0: 4048 + dependencies: 4049 + emoji-regex-xs: 1.0.0 4050 + regex: 5.1.1 4051 + regex-recursion: 5.1.1 4052 + 4053 + p-limit@2.3.0: 4054 + dependencies: 4055 + p-try: 2.2.0 4056 + 4057 + p-limit@6.2.0: 4058 + dependencies: 4059 + yocto-queue: 1.1.1 4060 + 4061 + p-locate@4.1.0: 4062 + dependencies: 4063 + p-limit: 2.3.0 4064 + 4065 + p-queue@8.0.1: 4066 + dependencies: 4067 + eventemitter3: 5.0.1 4068 + p-timeout: 6.1.4 4069 + 4070 + p-timeout@6.1.4: {} 4071 + 4072 + p-try@2.2.0: {} 4073 + 4074 + pagefind@1.3.0: 4075 + optionalDependencies: 4076 + '@pagefind/darwin-arm64': 1.3.0 4077 + '@pagefind/darwin-x64': 1.3.0 4078 + '@pagefind/linux-arm64': 1.3.0 4079 + '@pagefind/linux-x64': 1.3.0 4080 + '@pagefind/windows-x64': 1.3.0 4081 + 4082 + parse-entities@4.0.2: 4083 + dependencies: 4084 + '@types/unist': 2.0.11 4085 + character-entities-legacy: 3.0.0 4086 + character-reference-invalid: 2.0.1 4087 + decode-named-character-reference: 1.0.2 4088 + is-alphanumerical: 2.0.1 4089 + is-decimal: 2.0.1 4090 + is-hexadecimal: 2.0.1 4091 + 4092 + parse-latin@7.0.0: 4093 + dependencies: 4094 + '@types/nlcst': 2.0.3 4095 + '@types/unist': 3.0.3 4096 + nlcst-to-string: 4.0.0 4097 + unist-util-modify-children: 4.0.0 4098 + unist-util-visit-children: 3.0.0 4099 + vfile: 6.0.3 4100 + 4101 + parse5@7.2.1: 4102 + dependencies: 4103 + entities: 4.5.0 4104 + 4105 + path-exists@4.0.0: {} 4106 + 4107 + pathe@1.1.2: {} 4108 + 4109 + picocolors@1.1.1: {} 4110 + 4111 + picomatch@2.3.1: {} 4112 + 4113 + picomatch@4.0.2: {} 4114 + 4115 + pify@4.0.1: {} 4116 + 4117 + pkg-dir@4.2.0: 4118 + dependencies: 4119 + find-up: 4.1.0 4120 + 4121 + postcss-nested@6.2.0(postcss@8.4.49): 4122 + dependencies: 4123 + postcss: 8.4.49 4124 + postcss-selector-parser: 6.1.2 4125 + 4126 + postcss-selector-parser@6.1.2: 4127 + dependencies: 4128 + cssesc: 3.0.0 4129 + util-deprecate: 1.0.2 4130 + 4131 + postcss@8.4.49: 4132 + dependencies: 4133 + nanoid: 3.3.8 4134 + picocolors: 1.1.1 4135 + source-map-js: 1.2.1 4136 + 4137 + prebuild-install@7.1.2: 4138 + dependencies: 4139 + detect-libc: 2.0.3 4140 + expand-template: 2.0.3 4141 + github-from-package: 0.0.0 4142 + minimist: 1.2.8 4143 + mkdirp-classic: 0.5.3 4144 + napi-build-utils: 1.0.2 4145 + node-abi: 3.71.0 4146 + pump: 3.0.2 4147 + rc: 1.2.8 4148 + simple-get: 4.0.1 4149 + tar-fs: 2.1.1 4150 + tunnel-agent: 0.6.0 4151 + 4152 + preferred-pm@4.0.0: 4153 + dependencies: 4154 + find-up-simple: 1.0.0 4155 + find-yarn-workspace-root2: 1.2.16 4156 + which-pm: 3.0.0 4157 + 4158 + prismjs@1.29.0: {} 4159 + 4160 + prompts@2.4.2: 4161 + dependencies: 4162 + kleur: 3.0.3 4163 + sisteransi: 1.0.5 4164 + 4165 + property-information@6.5.0: {} 4166 + 4167 + pump@3.0.2: 4168 + dependencies: 4169 + end-of-stream: 1.4.4 4170 + once: 1.4.0 4171 + 4172 + queue-microtask@1.2.3: {} 4173 + 4174 + queue-tick@1.0.1: {} 4175 + 4176 + radix3@1.1.2: {} 4177 + 4178 + rc@1.2.8: 4179 + dependencies: 4180 + deep-extend: 0.6.0 4181 + ini: 1.3.8 4182 + minimist: 1.2.8 4183 + strip-json-comments: 2.0.1 4184 + 4185 + readable-stream@3.6.2: 4186 + dependencies: 4187 + inherits: 2.0.4 4188 + string_decoder: 1.3.0 4189 + util-deprecate: 1.0.2 4190 + 4191 + readdirp@3.6.0: 4192 + dependencies: 4193 + picomatch: 2.3.1 4194 + 4195 + recma-build-jsx@1.0.0: 4196 + dependencies: 4197 + '@types/estree': 1.0.6 4198 + estree-util-build-jsx: 3.0.1 4199 + vfile: 6.0.3 4200 + 4201 + recma-jsx@1.0.0(acorn@8.14.0): 4202 + dependencies: 4203 + acorn-jsx: 5.3.2(acorn@8.14.0) 4204 + estree-util-to-js: 2.0.0 4205 + recma-parse: 1.0.0 4206 + recma-stringify: 1.0.0 4207 + unified: 11.0.5 4208 + transitivePeerDependencies: 4209 + - acorn 4210 + 4211 + recma-parse@1.0.0: 4212 + dependencies: 4213 + '@types/estree': 1.0.6 4214 + esast-util-from-js: 2.0.1 4215 + unified: 11.0.5 4216 + vfile: 6.0.3 4217 + 4218 + recma-stringify@1.0.0: 4219 + dependencies: 4220 + '@types/estree': 1.0.6 4221 + estree-util-to-js: 2.0.0 4222 + unified: 11.0.5 4223 + vfile: 6.0.3 4224 + 4225 + regenerator-runtime@0.14.1: {} 4226 + 4227 + regex-recursion@5.1.1: 4228 + dependencies: 4229 + regex: 5.1.1 4230 + regex-utilities: 2.3.0 4231 + 4232 + regex-utilities@2.3.0: {} 4233 + 4234 + regex@5.1.1: 4235 + dependencies: 4236 + regex-utilities: 2.3.0 4237 + 4238 + rehype-expressive-code@0.38.3: 4239 + dependencies: 4240 + expressive-code: 0.38.3 4241 + 4242 + rehype-format@5.0.1: 4243 + dependencies: 4244 + '@types/hast': 3.0.4 4245 + hast-util-format: 1.1.0 4246 + 4247 + rehype-parse@9.0.1: 4248 + dependencies: 4249 + '@types/hast': 3.0.4 4250 + hast-util-from-html: 2.0.3 4251 + unified: 11.0.5 4252 + 4253 + rehype-raw@7.0.0: 4254 + dependencies: 4255 + '@types/hast': 3.0.4 4256 + hast-util-raw: 9.1.0 4257 + vfile: 6.0.3 4258 + 4259 + rehype-recma@1.0.0: 4260 + dependencies: 4261 + '@types/estree': 1.0.6 4262 + '@types/hast': 3.0.4 4263 + hast-util-to-estree: 3.1.1 4264 + transitivePeerDependencies: 4265 + - supports-color 4266 + 4267 + rehype-stringify@10.0.1: 4268 + dependencies: 4269 + '@types/hast': 3.0.4 4270 + hast-util-to-html: 9.0.4 4271 + unified: 11.0.5 4272 + 4273 + rehype@13.0.2: 4274 + dependencies: 4275 + '@types/hast': 3.0.4 4276 + rehype-parse: 9.0.1 4277 + rehype-stringify: 10.0.1 4278 + unified: 11.0.5 4279 + 4280 + remark-directive@3.0.0: 4281 + dependencies: 4282 + '@types/mdast': 4.0.4 4283 + mdast-util-directive: 3.0.0 4284 + micromark-extension-directive: 3.0.2 4285 + unified: 11.0.5 4286 + transitivePeerDependencies: 4287 + - supports-color 4288 + 4289 + remark-gfm@4.0.0: 4290 + dependencies: 4291 + '@types/mdast': 4.0.4 4292 + mdast-util-gfm: 3.0.0 4293 + micromark-extension-gfm: 3.0.0 4294 + remark-parse: 11.0.0 4295 + remark-stringify: 11.0.0 4296 + unified: 11.0.5 4297 + transitivePeerDependencies: 4298 + - supports-color 4299 + 4300 + remark-mdx@3.1.0: 4301 + dependencies: 4302 + mdast-util-mdx: 3.0.0 4303 + micromark-extension-mdxjs: 3.0.0 4304 + transitivePeerDependencies: 4305 + - supports-color 4306 + 4307 + remark-parse@11.0.0: 4308 + dependencies: 4309 + '@types/mdast': 4.0.4 4310 + mdast-util-from-markdown: 2.0.2 4311 + micromark-util-types: 2.0.1 4312 + unified: 11.0.5 4313 + transitivePeerDependencies: 4314 + - supports-color 4315 + 4316 + remark-rehype@11.1.1: 4317 + dependencies: 4318 + '@types/hast': 3.0.4 4319 + '@types/mdast': 4.0.4 4320 + mdast-util-to-hast: 13.2.0 4321 + unified: 11.0.5 4322 + vfile: 6.0.3 4323 + 4324 + remark-smartypants@3.0.2: 4325 + dependencies: 4326 + retext: 9.0.0 4327 + retext-smartypants: 6.2.0 4328 + unified: 11.0.5 4329 + unist-util-visit: 5.0.0 4330 + 4331 + remark-stringify@11.0.0: 4332 + dependencies: 4333 + '@types/mdast': 4.0.4 4334 + mdast-util-to-markdown: 2.1.2 4335 + unified: 11.0.5 4336 + 4337 + retext-latin@4.0.0: 4338 + dependencies: 4339 + '@types/nlcst': 2.0.3 4340 + parse-latin: 7.0.0 4341 + unified: 11.0.5 4342 + 4343 + retext-smartypants@6.2.0: 4344 + dependencies: 4345 + '@types/nlcst': 2.0.3 4346 + nlcst-to-string: 4.0.0 4347 + unist-util-visit: 5.0.0 4348 + 4349 + retext-stringify@4.0.0: 4350 + dependencies: 4351 + '@types/nlcst': 2.0.3 4352 + nlcst-to-string: 4.0.0 4353 + unified: 11.0.5 4354 + 4355 + retext@9.0.0: 4356 + dependencies: 4357 + '@types/nlcst': 2.0.3 4358 + retext-latin: 4.0.0 4359 + retext-stringify: 4.0.0 4360 + unified: 11.0.5 4361 + 4362 + reusify@1.0.4: {} 4363 + 4364 + rollup@4.30.1: 4365 + dependencies: 4366 + '@types/estree': 1.0.6 4367 + optionalDependencies: 4368 + '@rollup/rollup-android-arm-eabi': 4.30.1 4369 + '@rollup/rollup-android-arm64': 4.30.1 4370 + '@rollup/rollup-darwin-arm64': 4.30.1 4371 + '@rollup/rollup-darwin-x64': 4.30.1 4372 + '@rollup/rollup-freebsd-arm64': 4.30.1 4373 + '@rollup/rollup-freebsd-x64': 4.30.1 4374 + '@rollup/rollup-linux-arm-gnueabihf': 4.30.1 4375 + '@rollup/rollup-linux-arm-musleabihf': 4.30.1 4376 + '@rollup/rollup-linux-arm64-gnu': 4.30.1 4377 + '@rollup/rollup-linux-arm64-musl': 4.30.1 4378 + '@rollup/rollup-linux-loongarch64-gnu': 4.30.1 4379 + '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 4380 + '@rollup/rollup-linux-riscv64-gnu': 4.30.1 4381 + '@rollup/rollup-linux-s390x-gnu': 4.30.1 4382 + '@rollup/rollup-linux-x64-gnu': 4.30.1 4383 + '@rollup/rollup-linux-x64-musl': 4.30.1 4384 + '@rollup/rollup-win32-arm64-msvc': 4.30.1 4385 + '@rollup/rollup-win32-ia32-msvc': 4.30.1 4386 + '@rollup/rollup-win32-x64-msvc': 4.30.1 4387 + fsevents: 2.3.3 4388 + 4389 + run-parallel@1.2.0: 4390 + dependencies: 4391 + queue-microtask: 1.2.3 4392 + 4393 + safe-buffer@5.2.1: {} 4394 + 4395 + sax@1.4.1: {} 4396 + 4397 + semver@7.6.3: {} 4398 + 4399 + sharp@0.32.6: 4400 + dependencies: 4401 + color: 4.2.3 4402 + detect-libc: 2.0.3 4403 + node-addon-api: 6.1.0 4404 + prebuild-install: 7.1.2 4405 + semver: 7.6.3 4406 + simple-get: 4.0.1 4407 + tar-fs: 3.0.6 4408 + tunnel-agent: 0.6.0 4409 + 4410 + sharp@0.33.5: 4411 + dependencies: 4412 + color: 4.2.3 4413 + detect-libc: 2.0.3 4414 + semver: 7.6.3 4415 + optionalDependencies: 4416 + '@img/sharp-darwin-arm64': 0.33.5 4417 + '@img/sharp-darwin-x64': 0.33.5 4418 + '@img/sharp-libvips-darwin-arm64': 1.0.4 4419 + '@img/sharp-libvips-darwin-x64': 1.0.4 4420 + '@img/sharp-libvips-linux-arm': 1.0.5 4421 + '@img/sharp-libvips-linux-arm64': 1.0.4 4422 + '@img/sharp-libvips-linux-s390x': 1.0.4 4423 + '@img/sharp-libvips-linux-x64': 1.0.4 4424 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 4425 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 4426 + '@img/sharp-linux-arm': 0.33.5 4427 + '@img/sharp-linux-arm64': 0.33.5 4428 + '@img/sharp-linux-s390x': 0.33.5 4429 + '@img/sharp-linux-x64': 0.33.5 4430 + '@img/sharp-linuxmusl-arm64': 0.33.5 4431 + '@img/sharp-linuxmusl-x64': 0.33.5 4432 + '@img/sharp-wasm32': 0.33.5 4433 + '@img/sharp-win32-ia32': 0.33.5 4434 + '@img/sharp-win32-x64': 0.33.5 4435 + optional: true 4436 + 4437 + shiki@1.26.1: 4438 + dependencies: 4439 + '@shikijs/core': 1.26.1 4440 + '@shikijs/engine-javascript': 1.26.1 4441 + '@shikijs/engine-oniguruma': 1.26.1 4442 + '@shikijs/langs': 1.26.1 4443 + '@shikijs/themes': 1.26.1 4444 + '@shikijs/types': 1.26.1 4445 + '@shikijs/vscode-textmate': 10.0.1 4446 + '@types/hast': 3.0.4 4447 + 4448 + simple-concat@1.0.1: {} 4449 + 4450 + simple-get@4.0.1: 4451 + dependencies: 4452 + decompress-response: 6.0.0 4453 + once: 1.4.0 4454 + simple-concat: 1.0.1 4455 + 4456 + simple-swizzle@0.2.2: 4457 + dependencies: 4458 + is-arrayish: 0.3.2 4459 + 4460 + sisteransi@1.0.5: {} 4461 + 4462 + sitemap@8.0.0: 4463 + dependencies: 4464 + '@types/node': 17.0.45 4465 + '@types/sax': 1.2.7 4466 + arg: 5.0.2 4467 + sax: 1.4.1 4468 + 4469 + source-map-js@1.2.1: {} 4470 + 4471 + source-map@0.7.4: {} 4472 + 4473 + space-separated-tokens@2.0.2: {} 4474 + 4475 + sprintf-js@1.0.3: {} 4476 + 4477 + srt-parser-2@1.2.3: {} 4478 + 4479 + starlight-videos@0.1.0(@astrojs/starlight@0.30.5(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)))(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)): 4480 + dependencies: 4481 + '@astro-community/astro-embed-youtube': 0.5.6(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)) 4482 + '@astrojs/starlight': 0.30.5(astro@5.1.3(rollup@4.30.1)(typescript@5.7.3)) 4483 + hastscript: 9.0.0 4484 + iso8601-duration: 2.1.2 4485 + srt-parser-2: 1.2.3 4486 + unist-util-visit: 5.0.0 4487 + transitivePeerDependencies: 4488 + - astro 4489 + 4490 + stream-replace-string@2.0.0: {} 4491 + 4492 + streamx@2.21.1: 4493 + dependencies: 4494 + fast-fifo: 1.3.2 4495 + queue-tick: 1.0.1 4496 + text-decoder: 1.2.3 4497 + optionalDependencies: 4498 + bare-events: 2.5.3 4499 + 4500 + string-width@4.2.3: 4501 + dependencies: 4502 + emoji-regex: 8.0.0 4503 + is-fullwidth-code-point: 3.0.0 4504 + strip-ansi: 6.0.1 4505 + 4506 + string-width@7.2.0: 4507 + dependencies: 4508 + emoji-regex: 10.4.0 4509 + get-east-asian-width: 1.3.0 4510 + strip-ansi: 7.1.0 4511 + 4512 + string_decoder@1.3.0: 4513 + dependencies: 4514 + safe-buffer: 5.2.1 4515 + 4516 + stringify-entities@4.0.4: 4517 + dependencies: 4518 + character-entities-html4: 2.1.0 4519 + character-entities-legacy: 3.0.0 4520 + 4521 + strip-ansi@6.0.1: 4522 + dependencies: 4523 + ansi-regex: 5.0.1 4524 + 4525 + strip-ansi@7.1.0: 4526 + dependencies: 4527 + ansi-regex: 6.1.0 4528 + 4529 + strip-bom@3.0.0: {} 4530 + 4531 + strip-json-comments@2.0.1: {} 4532 + 4533 + style-to-object@1.0.8: 4534 + dependencies: 4535 + inline-style-parser: 0.2.4 4536 + 4537 + tar-fs@2.1.1: 4538 + dependencies: 4539 + chownr: 1.1.4 4540 + mkdirp-classic: 0.5.3 4541 + pump: 3.0.2 4542 + tar-stream: 2.2.0 4543 + 4544 + tar-fs@3.0.6: 4545 + dependencies: 4546 + pump: 3.0.2 4547 + tar-stream: 3.1.7 4548 + optionalDependencies: 4549 + bare-fs: 2.3.5 4550 + bare-path: 2.1.3 4551 + 4552 + tar-stream@2.2.0: 4553 + dependencies: 4554 + bl: 4.1.0 4555 + end-of-stream: 1.4.4 4556 + fs-constants: 1.0.0 4557 + inherits: 2.0.4 4558 + readable-stream: 3.6.2 4559 + 4560 + tar-stream@3.1.7: 4561 + dependencies: 4562 + b4a: 1.6.7 4563 + fast-fifo: 1.3.2 4564 + streamx: 2.21.1 4565 + 4566 + text-decoder@1.2.3: 4567 + dependencies: 4568 + b4a: 1.6.7 4569 + 4570 + tinyexec@0.3.2: {} 4571 + 4572 + to-regex-range@5.0.1: 4573 + dependencies: 4574 + is-number: 7.0.0 4575 + 4576 + trim-lines@3.0.1: {} 4577 + 4578 + trough@2.2.0: {} 4579 + 4580 + tsconfck@3.1.4(typescript@5.7.3): 4581 + optionalDependencies: 4582 + typescript: 5.7.3 4583 + 4584 + tslib@2.8.1: 4585 + optional: true 4586 + 4587 + tunnel-agent@0.6.0: 4588 + dependencies: 4589 + safe-buffer: 5.2.1 4590 + 4591 + type-fest@4.32.0: {} 4592 + 4593 + typescript@5.7.3: {} 4594 + 4595 + ufo@1.5.4: {} 4596 + 4597 + ultrahtml@1.5.3: {} 4598 + 4599 + uncrypto@0.1.3: {} 4600 + 4601 + unenv@1.10.0: 4602 + dependencies: 4603 + consola: 3.3.3 4604 + defu: 6.1.4 4605 + mime: 3.0.0 4606 + node-fetch-native: 1.6.4 4607 + pathe: 1.1.2 4608 + 4609 + unified@11.0.5: 4610 + dependencies: 4611 + '@types/unist': 3.0.3 4612 + bail: 2.0.2 4613 + devlop: 1.1.0 4614 + extend: 3.0.2 4615 + is-plain-obj: 4.1.0 4616 + trough: 2.2.0 4617 + vfile: 6.0.3 4618 + 4619 + unist-util-find-after@5.0.0: 4620 + dependencies: 4621 + '@types/unist': 3.0.3 4622 + unist-util-is: 6.0.0 4623 + 4624 + unist-util-is@6.0.0: 4625 + dependencies: 4626 + '@types/unist': 3.0.3 4627 + 4628 + unist-util-modify-children@4.0.0: 4629 + dependencies: 4630 + '@types/unist': 3.0.3 4631 + array-iterate: 2.0.1 4632 + 4633 + unist-util-position-from-estree@2.0.0: 4634 + dependencies: 4635 + '@types/unist': 3.0.3 4636 + 4637 + unist-util-position@5.0.0: 4638 + dependencies: 4639 + '@types/unist': 3.0.3 4640 + 4641 + unist-util-remove-position@5.0.0: 4642 + dependencies: 4643 + '@types/unist': 3.0.3 4644 + unist-util-visit: 5.0.0 4645 + 4646 + unist-util-stringify-position@4.0.0: 4647 + dependencies: 4648 + '@types/unist': 3.0.3 4649 + 4650 + unist-util-visit-children@3.0.0: 4651 + dependencies: 4652 + '@types/unist': 3.0.3 4653 + 4654 + unist-util-visit-parents@6.0.1: 4655 + dependencies: 4656 + '@types/unist': 3.0.3 4657 + unist-util-is: 6.0.0 4658 + 4659 + unist-util-visit@5.0.0: 4660 + dependencies: 4661 + '@types/unist': 3.0.3 4662 + unist-util-is: 6.0.0 4663 + unist-util-visit-parents: 6.0.1 4664 + 4665 + unstorage@1.14.4: 4666 + dependencies: 4667 + anymatch: 3.1.3 4668 + chokidar: 3.6.0 4669 + destr: 2.0.3 4670 + h3: 1.13.0 4671 + lru-cache: 10.4.3 4672 + node-fetch-native: 1.6.4 4673 + ofetch: 1.4.1 4674 + ufo: 1.5.4 4675 + 4676 + util-deprecate@1.0.2: {} 4677 + 4678 + vfile-location@5.0.3: 4679 + dependencies: 4680 + '@types/unist': 3.0.3 4681 + vfile: 6.0.3 4682 + 4683 + vfile-message@4.0.2: 4684 + dependencies: 4685 + '@types/unist': 3.0.3 4686 + unist-util-stringify-position: 4.0.0 4687 + 4688 + vfile@6.0.3: 4689 + dependencies: 4690 + '@types/unist': 3.0.3 4691 + vfile-message: 4.0.2 4692 + 4693 + vite@6.0.7: 4694 + dependencies: 4695 + esbuild: 0.24.2 4696 + postcss: 8.4.49 4697 + rollup: 4.30.1 4698 + optionalDependencies: 4699 + fsevents: 2.3.3 4700 + 4701 + vitefu@1.0.5(vite@6.0.7): 4702 + optionalDependencies: 4703 + vite: 6.0.7 4704 + 4705 + web-namespaces@2.0.1: {} 4706 + 4707 + which-pm-runs@1.1.0: {} 4708 + 4709 + which-pm@3.0.0: 4710 + dependencies: 4711 + load-yaml-file: 0.2.0 4712 + 4713 + widest-line@5.0.0: 4714 + dependencies: 4715 + string-width: 7.2.0 4716 + 4717 + wrap-ansi@9.0.0: 4718 + dependencies: 4719 + ansi-styles: 6.2.1 4720 + string-width: 7.2.0 4721 + strip-ansi: 7.1.0 4722 + 4723 + wrappy@1.0.2: {} 4724 + 4725 + xxhash-wasm@1.1.0: {} 4726 + 4727 + yargs-parser@21.1.1: {} 4728 + 4729 + yocto-queue@1.1.1: {} 4730 + 4731 + yocto-spinner@0.1.2: 4732 + dependencies: 4733 + yoctocolors: 2.1.1 4734 + 4735 + yoctocolors@2.1.1: {} 4736 + 4737 + zod-to-json-schema@3.24.1(zod@3.24.1): 4738 + dependencies: 4739 + zod: 3.24.1 4740 + 4741 + zod-to-ts@1.2.0(typescript@5.7.3)(zod@3.24.1): 4742 + dependencies: 4743 + typescript: 5.7.3 4744 + zod: 3.24.1 4745 + 4746 + zod@3.24.1: {} 4747 + 4748 + zwitch@2.0.4: {}
+1
starlight/public/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M81 36 64 0 47 36l-1 2-9-10a6 6 0 0 0-9 9l10 10h-2L0 64l36 17h2L28 91a6 6 0 1 0 9 9l9-10 1 2 17 36 17-36v-2l9 10a6 6 0 1 0 9-9l-9-9 2-1 36-17-36-17-2-1 9-9a6 6 0 1 0-9-9l-9 10v-2Zm-17 2-2 5c-4 8-11 15-19 19l-5 2 5 2c8 4 15 11 19 19l2 5 2-5c4-8 11-15 19-19l5-2-5-2c-8-4-15-11-19-19l-2-5Z" clip-rule="evenodd"/><path d="M118 19a6 6 0 0 0-9-9l-3 3a6 6 0 1 0 9 9l3-3Zm-96 4c-2 2-6 2-9 0l-3-3a6 6 0 1 1 9-9l3 3c3 2 3 6 0 9Zm0 82c-2-2-6-2-9 0l-3 3a6 6 0 1 0 9 9l3-3c3-2 3-6 0-9Zm96 4a6 6 0 0 1-9 9l-3-3a6 6 0 1 1 9-9l3 3Z"/><style>path{fill:#000}@media (prefers-color-scheme:dark){path{fill:#fff}}</style></svg>
starlight/src/assets/houston.webp

This is a binary file and will not be displayed.

+139
starlight/src/assets/transcripts/thesis.srt
··· 1 + 1 2 + 00:00:01,340 --> 00:00:05,240 3 + Visualisierung der Ergebnisse des Stromnetzmodells 4 + 5 + 2 6 + 00:00:05,240 --> 00:00:07,240 7 + Was bedeutet das denn eigentlich? 8 + 9 + 3 10 + 00:00:07,240 --> 00:00:10,360 11 + Fangen wir am besten mit der Ausgangssituation an. 12 + 13 + 4 14 + 00:00:10,360 --> 00:00:16,010 15 + Siemens entwickelt ein Programm, welches die 16 + Fehler im Stromnetzmodell berechnet und aktuell 17 + 18 + 5 19 + 00:00:16,010 --> 00:00:18,070 20 + in Log Files speichert. 21 + 22 + 6 23 + 00:00:18,070 --> 00:00:23,109 24 + Diese Log Files sind äußerst unübersichtlich 25 + und es kann lange dauern, bis ein Ingenieur 26 + 27 + 7 28 + 00:00:23,109 --> 00:00:26,980 29 + von Siemens den Ursprung des Fehlers gefunden hat. 30 + 31 + 8 32 + 00:00:26,980 --> 00:00:30,449 33 + Genau hier wird unsere Applikation relevant. 34 + 35 + 9 36 + 00:00:30,449 --> 00:00:35,450 37 + Wir haben ein System entwickelt, welches die 38 + Fehlerdaten von Siemens über das Apache Kafka 39 + 40 + 10 41 + 00:00:35,450 --> 00:00:40,930 42 + System - das ist ein Message Bus - an das 43 + Backend übergibt und dort persistiert. 44 + 45 + 11 46 + 00:00:40,930 --> 00:00:47,480 47 + Das Backend ist mittels Java Spring Framework 48 + und PostgreSQL Datenbank implementiert. 49 + 50 + 12 51 + 00:00:47,480 --> 00:00:55,620 52 + Über eine GraphQL Schnittstelle kann das 53 + Angular Frontend die Daten visualisieren. 54 + 55 + 13 56 + 00:00:55,620 --> 00:00:58,899 57 + Kommen wir nun zu den Besonderheiten unserer Applikation. 58 + 59 + 14 60 + 00:00:58,899 --> 00:01:05,010 61 + Aufgrund des Message Busses ist unsere Applikation 62 + optimal von dem Service von Siemens entkoppelt. 63 + 64 + 15 65 + 00:01:05,010 --> 00:01:09,110 66 + Dies ermöglicht eine einfache Integration 67 + in die Production bei Siemens. 68 + 69 + 16 70 + 00:01:09,110 --> 00:01:14,100 71 + Das Frontend bietet ideale Möglichkeiten, 72 + um die Daten zu analysieren. 73 + 74 + 17 75 + 00:01:14,100 --> 00:01:18,810 76 + Wie Sie hier sehen können, verfügt es über 77 + ein Dashboard, welches die vier Eigenschaften, 78 + 79 + 18 80 + 00:01:18,810 --> 00:01:22,950 81 + Klasse, Kategorie, Schweregrad und Spannungslevel, darstellt. 82 + 83 + 19 84 + 00:01:22,950 --> 00:01:27,810 85 + Das Herzstück der Applikation ist jedoch 86 + die Tabelle, welcher jegliche Art von Such- 87 + 88 + 20 89 + 00:01:27,810 --> 00:01:30,460 90 + und Filtermöglichkeiten implementiert. 91 + 92 + 21 93 + 00:01:30,460 --> 00:01:35,140 94 + Man kann die Daten nicht nur Sortieren, sondern 95 + eben auch nach gewissen Begriffen, und den 96 + 97 + 22 98 + 00:01:35,140 --> 00:01:37,500 99 + vier vorhin genannten Eigenschaften filtern. 100 + 101 + 23 102 + 00:01:37,500 --> 00:01:42,530 103 + Ein wichtiger Bestandteil ist auch der Button 104 + zum Zurücksetzen aller Filter. 105 + 106 + 24 107 + 00:01:43,860 --> 00:01:46,000 108 + Kommen wir nun zum Graph. 109 + 110 + 25 111 + 00:01:46,000 --> 00:01:49,100 112 + Dieser zeigt einen Teil des Stromnetzwerkes an. 113 + 114 + 26 115 + 00:01:49,100 --> 00:01:54,790 116 + Hierbei ist das Objekt mit dem aktuellen Fehler 117 + in blau dargestellt, sodass die Ingenieure von Siemens 118 + 119 + 27 120 + 00:01:54,790 --> 00:01:58,140 121 + die nähere Umgebung des Fehlers analysieren können. 122 + 123 + 28 124 + 00:01:58,140 --> 00:02:03,750 125 + Dadurch ist das Ausfindigmachen des Ursprungs 126 + sehr effizient, sodass das Netzmodell schnellstmöglich 127 + 128 + 29 129 + 00:02:03,750 --> 00:02:05,659 130 + wieder funktionieren kann. 131 + 132 + 30 133 + 00:02:05,659 --> 00:02:10,919 134 + Das ist auch schon wieder das Ende unseres kurzen Videos. 135 + 136 + 31 137 + 00:02:10,919 --> 00:02:13,181 138 + Wir hoffen es hat euch gefallen. 139 +
+8
starlight/src/content.config.ts
··· 1 + import { defineCollection } from "astro:content"; 2 + import { docsLoader } from "@astrojs/starlight/loaders"; 3 + import { docsSchema } from "@astrojs/starlight/schema"; 4 + import { videosSchema } from "starlight-videos/schemas"; 5 + 6 + export const collections = { 7 + docs: defineCollection({ loader: docsLoader(), schema: docsSchema({ extend: videosSchema }) }), 8 + };
+36
starlight/src/content/docs/index.mdx
··· 1 + --- 2 + title: Videos 3 + description: trueberryless is also active on YouTube 4 + template: splash 5 + hero: 6 + tagline: trueberryless is also active on YouTube 7 + image: 8 + file: ../../assets/houston.webp 9 + actions: 10 + - text: List of all videos 11 + link: /videos 12 + icon: right-arrow 13 + - text: Visit the channel 14 + link: https://www.youtube.com/@trueberryless 15 + icon: external 16 + variant: minimal 17 + --- 18 + 19 + import { Card, CardGrid } from "@astrojs/starlight/components"; 20 + 21 + ## Next steps 22 + 23 + <CardGrid stagger> 24 + <Card title="Update content" icon="pencil"> 25 + Edit `src/content/docs/index.mdx` to see this page change. 26 + </Card> 27 + <Card title="Add new content" icon="add-document"> 28 + Add Markdown or MDX files to `src/content/docs` to create new pages. 29 + </Card> 30 + <Card title="Configure your site" icon="setting"> 31 + Edit your `sidebar` and other config in `astro.config.mjs`. 32 + </Card> 33 + <Card title="Read the docs" icon="open-book"> 34 + Learn more in [the Starlight Docs](https://starlight.astro.build/). 35 + </Card> 36 + </CardGrid>
+5
starlight/src/content/docs/videos/index.md
··· 1 + --- 2 + title: All videos 3 + video: 4 + type: videos 5 + ---
+15
starlight/src/content/docs/videos/thesis.mdx
··· 1 + --- 2 + title: Diploma Thesis 3 + description: A SOA solution with Siemens AG to analyze power grid anomalies, featuring a Kafka pipeline, PostgreSQL, GraphQL API, and an Angular dashboard for visualisation. 4 + video: 5 + type: video 6 + link: https://www.youtube.com/watch?v=p5xtVAwQdmE 7 + duration: 146 8 + date: 2024-03-27 9 + transcript: ./src/assets/transcripts/thesis.srt 10 + difficulty: Intermediate 11 + actions: 12 + - text: Read more 13 + link: https://www.trueberryless.org/work/thesis/ 14 + icon: external 15 + ---
+5
starlight/tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strict", 3 + "include": [".astro/types.d.ts", "**/*"], 4 + "exclude": ["dist"] 5 + }