[READ-ONLY] Mirror of https://github.com/trueberryless/ai-disclosure. A practical guide for transparent AI usage disclosure across software ai-disclosure.trueberryless.org/
0

Configure Feed

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

"Initial commit from Astro"

author
houston[bot]
committer
Felix Schneider
date (Apr 19, 2026, 10:18 AM +0200) commit fc0a10a0
+3133
+24
.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 22 + 23 + # jetbrains setting folder 24 + .idea/
+4
.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["astro-build.astro-vscode"], 3 + "unwantedRecommendations": [] 4 + }
+11
.vscode/launch.json
··· 1 + { 2 + "version": "0.2.0", 3 + "configurations": [ 4 + { 5 + "command": "./node_modules/.bin/astro dev", 6 + "name": "Development server", 7 + "request": "launch", 8 + "type": "node-terminal" 9 + } 10 + ] 11 + }
+43
README.md
··· 1 + # Astro Starter Kit: Minimal 2 + 3 + ```sh 4 + pnpm create astro@latest -- --template minimal 5 + ``` 6 + 7 + > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 8 + 9 + ## 🚀 Project Structure 10 + 11 + Inside of your Astro project, you'll see the following folders and files: 12 + 13 + ```text 14 + / 15 + ├── public/ 16 + ├── src/ 17 + │ └── pages/ 18 + │ └── index.astro 19 + └── package.json 20 + ``` 21 + 22 + Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. 23 + 24 + There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. 25 + 26 + Any static assets, like images, can be placed in the `public/` directory. 27 + 28 + ## 🧞 Commands 29 + 30 + All commands are run from the root of the project, from a terminal: 31 + 32 + | Command | Action | 33 + | :------------------------ | :----------------------------------------------- | 34 + | `pnpm install` | Installs dependencies | 35 + | `pnpm dev` | Starts local dev server at `localhost:4321` | 36 + | `pnpm build` | Build your production site to `./dist/` | 37 + | `pnpm preview` | Preview your build locally, before deploying | 38 + | `pnpm astro ...` | Run CLI commands like `astro add`, `astro check` | 39 + | `pnpm astro -- --help` | Get help using the Astro CLI | 40 + 41 + ## 👀 Want to learn more? 42 + 43 + Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
+5
astro.config.mjs
··· 1 + // @ts-check 2 + import { defineConfig } from 'astro/config'; 3 + 4 + // https://astro.build/config 5 + export default defineConfig({});
+17
package.json
··· 1 + { 2 + "name": "ai-disclosure", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "engines": { 6 + "node": ">=22.12.0" 7 + }, 8 + "scripts": { 9 + "dev": "astro dev", 10 + "build": "astro build", 11 + "preview": "astro preview", 12 + "astro": "astro" 13 + }, 14 + "dependencies": { 15 + "astro": "^6.1.8" 16 + } 17 + }
+2998
pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: 10 + dependencies: 11 + astro: 12 + specifier: ^6.1.8 13 + version: 6.1.8(rollup@4.60.2) 14 + 15 + packages: 16 + 17 + '@astrojs/compiler@3.0.1': 18 + resolution: {integrity: sha512-z97oYbdebO5aoWzuJ/8q5hLK232+17KcLZ7cJ8BCWk6+qNzVxn/gftC0KzMBUTD8WAaBkPpNSQK6PXLnNrZ0CA==} 19 + 20 + '@astrojs/internal-helpers@0.8.0': 21 + resolution: {integrity: sha512-J56GrhEiV+4dmrGLPNOl2pZjpHXAndWVyiVDYGDuw6MWKpBSEMLdFxHzeM/6sqaknw9M+HFfHZAcvi3OfT3D/w==} 22 + 23 + '@astrojs/markdown-remark@7.1.0': 24 + resolution: {integrity: sha512-P+HnCsu2js3BoTc8kFmu+E9gOcFeMdPris75g+Zl4sY8+bBRbSQV6xzcBDbZ27eE7yBGEGQoqjpChx+KJYIPYQ==} 25 + 26 + '@astrojs/prism@4.0.1': 27 + resolution: {integrity: sha512-nksZQVjlferuWzhPsBpQ1JE5XuKAf1id1/9Hj4a9KG4+ofrlzxUUwX4YGQF/SuDiuiGKEnzopGOt38F3AnVWsQ==} 28 + engines: {node: '>=22.12.0'} 29 + 30 + '@astrojs/telemetry@3.3.1': 31 + resolution: {integrity: sha512-7fcIxXS9J4ls5tr8b3ww9rbAIz2+HrhNJYZdkAhhB4za/I5IZ/60g+Bs8q7zwG0tOIZfNB4JWhVJ1Qkl/OrNCw==} 32 + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 33 + 34 + '@babel/helper-string-parser@7.27.1': 35 + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 36 + engines: {node: '>=6.9.0'} 37 + 38 + '@babel/helper-validator-identifier@7.28.5': 39 + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} 40 + engines: {node: '>=6.9.0'} 41 + 42 + '@babel/parser@7.29.2': 43 + resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} 44 + engines: {node: '>=6.0.0'} 45 + hasBin: true 46 + 47 + '@babel/types@7.29.0': 48 + resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} 49 + engines: {node: '>=6.9.0'} 50 + 51 + '@capsizecss/unpack@4.0.0': 52 + resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==} 53 + engines: {node: '>=18'} 54 + 55 + '@clack/core@1.2.0': 56 + resolution: {integrity: sha512-qfxof/3T3t9DPU/Rj3OmcFyZInceqj/NVtO9rwIuJqCUgh32gwPjpFQQp/ben07qKlhpwq7GzfWpST4qdJ5Drg==} 57 + 58 + '@clack/prompts@1.2.0': 59 + resolution: {integrity: sha512-4jmztR9fMqPMjz6H/UZXj0zEmE43ha1euENwkckKKel4XpSfokExPo5AiVStdHSAlHekz4d0CA/r45Ok1E4D3w==} 60 + 61 + '@emnapi/runtime@1.10.0': 62 + resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==} 63 + 64 + '@esbuild/aix-ppc64@0.27.7': 65 + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} 66 + engines: {node: '>=18'} 67 + cpu: [ppc64] 68 + os: [aix] 69 + 70 + '@esbuild/android-arm64@0.27.7': 71 + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} 72 + engines: {node: '>=18'} 73 + cpu: [arm64] 74 + os: [android] 75 + 76 + '@esbuild/android-arm@0.27.7': 77 + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} 78 + engines: {node: '>=18'} 79 + cpu: [arm] 80 + os: [android] 81 + 82 + '@esbuild/android-x64@0.27.7': 83 + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} 84 + engines: {node: '>=18'} 85 + cpu: [x64] 86 + os: [android] 87 + 88 + '@esbuild/darwin-arm64@0.27.7': 89 + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} 90 + engines: {node: '>=18'} 91 + cpu: [arm64] 92 + os: [darwin] 93 + 94 + '@esbuild/darwin-x64@0.27.7': 95 + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} 96 + engines: {node: '>=18'} 97 + cpu: [x64] 98 + os: [darwin] 99 + 100 + '@esbuild/freebsd-arm64@0.27.7': 101 + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} 102 + engines: {node: '>=18'} 103 + cpu: [arm64] 104 + os: [freebsd] 105 + 106 + '@esbuild/freebsd-x64@0.27.7': 107 + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} 108 + engines: {node: '>=18'} 109 + cpu: [x64] 110 + os: [freebsd] 111 + 112 + '@esbuild/linux-arm64@0.27.7': 113 + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} 114 + engines: {node: '>=18'} 115 + cpu: [arm64] 116 + os: [linux] 117 + 118 + '@esbuild/linux-arm@0.27.7': 119 + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} 120 + engines: {node: '>=18'} 121 + cpu: [arm] 122 + os: [linux] 123 + 124 + '@esbuild/linux-ia32@0.27.7': 125 + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} 126 + engines: {node: '>=18'} 127 + cpu: [ia32] 128 + os: [linux] 129 + 130 + '@esbuild/linux-loong64@0.27.7': 131 + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} 132 + engines: {node: '>=18'} 133 + cpu: [loong64] 134 + os: [linux] 135 + 136 + '@esbuild/linux-mips64el@0.27.7': 137 + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} 138 + engines: {node: '>=18'} 139 + cpu: [mips64el] 140 + os: [linux] 141 + 142 + '@esbuild/linux-ppc64@0.27.7': 143 + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} 144 + engines: {node: '>=18'} 145 + cpu: [ppc64] 146 + os: [linux] 147 + 148 + '@esbuild/linux-riscv64@0.27.7': 149 + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} 150 + engines: {node: '>=18'} 151 + cpu: [riscv64] 152 + os: [linux] 153 + 154 + '@esbuild/linux-s390x@0.27.7': 155 + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} 156 + engines: {node: '>=18'} 157 + cpu: [s390x] 158 + os: [linux] 159 + 160 + '@esbuild/linux-x64@0.27.7': 161 + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} 162 + engines: {node: '>=18'} 163 + cpu: [x64] 164 + os: [linux] 165 + 166 + '@esbuild/netbsd-arm64@0.27.7': 167 + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} 168 + engines: {node: '>=18'} 169 + cpu: [arm64] 170 + os: [netbsd] 171 + 172 + '@esbuild/netbsd-x64@0.27.7': 173 + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} 174 + engines: {node: '>=18'} 175 + cpu: [x64] 176 + os: [netbsd] 177 + 178 + '@esbuild/openbsd-arm64@0.27.7': 179 + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} 180 + engines: {node: '>=18'} 181 + cpu: [arm64] 182 + os: [openbsd] 183 + 184 + '@esbuild/openbsd-x64@0.27.7': 185 + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} 186 + engines: {node: '>=18'} 187 + cpu: [x64] 188 + os: [openbsd] 189 + 190 + '@esbuild/openharmony-arm64@0.27.7': 191 + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} 192 + engines: {node: '>=18'} 193 + cpu: [arm64] 194 + os: [openharmony] 195 + 196 + '@esbuild/sunos-x64@0.27.7': 197 + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} 198 + engines: {node: '>=18'} 199 + cpu: [x64] 200 + os: [sunos] 201 + 202 + '@esbuild/win32-arm64@0.27.7': 203 + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} 204 + engines: {node: '>=18'} 205 + cpu: [arm64] 206 + os: [win32] 207 + 208 + '@esbuild/win32-ia32@0.27.7': 209 + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} 210 + engines: {node: '>=18'} 211 + cpu: [ia32] 212 + os: [win32] 213 + 214 + '@esbuild/win32-x64@0.27.7': 215 + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} 216 + engines: {node: '>=18'} 217 + cpu: [x64] 218 + os: [win32] 219 + 220 + '@img/colour@1.1.0': 221 + resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} 222 + engines: {node: '>=18'} 223 + 224 + '@img/sharp-darwin-arm64@0.34.5': 225 + resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} 226 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 227 + cpu: [arm64] 228 + os: [darwin] 229 + 230 + '@img/sharp-darwin-x64@0.34.5': 231 + resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} 232 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 233 + cpu: [x64] 234 + os: [darwin] 235 + 236 + '@img/sharp-libvips-darwin-arm64@1.2.4': 237 + resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} 238 + cpu: [arm64] 239 + os: [darwin] 240 + 241 + '@img/sharp-libvips-darwin-x64@1.2.4': 242 + resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} 243 + cpu: [x64] 244 + os: [darwin] 245 + 246 + '@img/sharp-libvips-linux-arm64@1.2.4': 247 + resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} 248 + cpu: [arm64] 249 + os: [linux] 250 + libc: [glibc] 251 + 252 + '@img/sharp-libvips-linux-arm@1.2.4': 253 + resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} 254 + cpu: [arm] 255 + os: [linux] 256 + libc: [glibc] 257 + 258 + '@img/sharp-libvips-linux-ppc64@1.2.4': 259 + resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} 260 + cpu: [ppc64] 261 + os: [linux] 262 + libc: [glibc] 263 + 264 + '@img/sharp-libvips-linux-riscv64@1.2.4': 265 + resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} 266 + cpu: [riscv64] 267 + os: [linux] 268 + libc: [glibc] 269 + 270 + '@img/sharp-libvips-linux-s390x@1.2.4': 271 + resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} 272 + cpu: [s390x] 273 + os: [linux] 274 + libc: [glibc] 275 + 276 + '@img/sharp-libvips-linux-x64@1.2.4': 277 + resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} 278 + cpu: [x64] 279 + os: [linux] 280 + libc: [glibc] 281 + 282 + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': 283 + resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} 284 + cpu: [arm64] 285 + os: [linux] 286 + libc: [musl] 287 + 288 + '@img/sharp-libvips-linuxmusl-x64@1.2.4': 289 + resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} 290 + cpu: [x64] 291 + os: [linux] 292 + libc: [musl] 293 + 294 + '@img/sharp-linux-arm64@0.34.5': 295 + resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} 296 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 297 + cpu: [arm64] 298 + os: [linux] 299 + libc: [glibc] 300 + 301 + '@img/sharp-linux-arm@0.34.5': 302 + resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} 303 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 304 + cpu: [arm] 305 + os: [linux] 306 + libc: [glibc] 307 + 308 + '@img/sharp-linux-ppc64@0.34.5': 309 + resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} 310 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 311 + cpu: [ppc64] 312 + os: [linux] 313 + libc: [glibc] 314 + 315 + '@img/sharp-linux-riscv64@0.34.5': 316 + resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} 317 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 318 + cpu: [riscv64] 319 + os: [linux] 320 + libc: [glibc] 321 + 322 + '@img/sharp-linux-s390x@0.34.5': 323 + resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} 324 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 325 + cpu: [s390x] 326 + os: [linux] 327 + libc: [glibc] 328 + 329 + '@img/sharp-linux-x64@0.34.5': 330 + resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} 331 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 332 + cpu: [x64] 333 + os: [linux] 334 + libc: [glibc] 335 + 336 + '@img/sharp-linuxmusl-arm64@0.34.5': 337 + resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} 338 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 339 + cpu: [arm64] 340 + os: [linux] 341 + libc: [musl] 342 + 343 + '@img/sharp-linuxmusl-x64@0.34.5': 344 + resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} 345 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 346 + cpu: [x64] 347 + os: [linux] 348 + libc: [musl] 349 + 350 + '@img/sharp-wasm32@0.34.5': 351 + resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} 352 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 353 + cpu: [wasm32] 354 + 355 + '@img/sharp-win32-arm64@0.34.5': 356 + resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} 357 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 358 + cpu: [arm64] 359 + os: [win32] 360 + 361 + '@img/sharp-win32-ia32@0.34.5': 362 + resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} 363 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 364 + cpu: [ia32] 365 + os: [win32] 366 + 367 + '@img/sharp-win32-x64@0.34.5': 368 + resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} 369 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 370 + cpu: [x64] 371 + os: [win32] 372 + 373 + '@jridgewell/sourcemap-codec@1.5.5': 374 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 375 + 376 + '@oslojs/encoding@1.1.0': 377 + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 378 + 379 + '@rollup/pluginutils@5.3.0': 380 + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 381 + engines: {node: '>=14.0.0'} 382 + peerDependencies: 383 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 384 + peerDependenciesMeta: 385 + rollup: 386 + optional: true 387 + 388 + '@rollup/rollup-android-arm-eabi@4.60.2': 389 + resolution: {integrity: sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==} 390 + cpu: [arm] 391 + os: [android] 392 + 393 + '@rollup/rollup-android-arm64@4.60.2': 394 + resolution: {integrity: sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==} 395 + cpu: [arm64] 396 + os: [android] 397 + 398 + '@rollup/rollup-darwin-arm64@4.60.2': 399 + resolution: {integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==} 400 + cpu: [arm64] 401 + os: [darwin] 402 + 403 + '@rollup/rollup-darwin-x64@4.60.2': 404 + resolution: {integrity: sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==} 405 + cpu: [x64] 406 + os: [darwin] 407 + 408 + '@rollup/rollup-freebsd-arm64@4.60.2': 409 + resolution: {integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==} 410 + cpu: [arm64] 411 + os: [freebsd] 412 + 413 + '@rollup/rollup-freebsd-x64@4.60.2': 414 + resolution: {integrity: sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==} 415 + cpu: [x64] 416 + os: [freebsd] 417 + 418 + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': 419 + resolution: {integrity: sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==} 420 + cpu: [arm] 421 + os: [linux] 422 + libc: [glibc] 423 + 424 + '@rollup/rollup-linux-arm-musleabihf@4.60.2': 425 + resolution: {integrity: sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==} 426 + cpu: [arm] 427 + os: [linux] 428 + libc: [musl] 429 + 430 + '@rollup/rollup-linux-arm64-gnu@4.60.2': 431 + resolution: {integrity: sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==} 432 + cpu: [arm64] 433 + os: [linux] 434 + libc: [glibc] 435 + 436 + '@rollup/rollup-linux-arm64-musl@4.60.2': 437 + resolution: {integrity: sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==} 438 + cpu: [arm64] 439 + os: [linux] 440 + libc: [musl] 441 + 442 + '@rollup/rollup-linux-loong64-gnu@4.60.2': 443 + resolution: {integrity: sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==} 444 + cpu: [loong64] 445 + os: [linux] 446 + libc: [glibc] 447 + 448 + '@rollup/rollup-linux-loong64-musl@4.60.2': 449 + resolution: {integrity: sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==} 450 + cpu: [loong64] 451 + os: [linux] 452 + libc: [musl] 453 + 454 + '@rollup/rollup-linux-ppc64-gnu@4.60.2': 455 + resolution: {integrity: sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==} 456 + cpu: [ppc64] 457 + os: [linux] 458 + libc: [glibc] 459 + 460 + '@rollup/rollup-linux-ppc64-musl@4.60.2': 461 + resolution: {integrity: sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==} 462 + cpu: [ppc64] 463 + os: [linux] 464 + libc: [musl] 465 + 466 + '@rollup/rollup-linux-riscv64-gnu@4.60.2': 467 + resolution: {integrity: sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==} 468 + cpu: [riscv64] 469 + os: [linux] 470 + libc: [glibc] 471 + 472 + '@rollup/rollup-linux-riscv64-musl@4.60.2': 473 + resolution: {integrity: sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==} 474 + cpu: [riscv64] 475 + os: [linux] 476 + libc: [musl] 477 + 478 + '@rollup/rollup-linux-s390x-gnu@4.60.2': 479 + resolution: {integrity: sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==} 480 + cpu: [s390x] 481 + os: [linux] 482 + libc: [glibc] 483 + 484 + '@rollup/rollup-linux-x64-gnu@4.60.2': 485 + resolution: {integrity: sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==} 486 + cpu: [x64] 487 + os: [linux] 488 + libc: [glibc] 489 + 490 + '@rollup/rollup-linux-x64-musl@4.60.2': 491 + resolution: {integrity: sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==} 492 + cpu: [x64] 493 + os: [linux] 494 + libc: [musl] 495 + 496 + '@rollup/rollup-openbsd-x64@4.60.2': 497 + resolution: {integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==} 498 + cpu: [x64] 499 + os: [openbsd] 500 + 501 + '@rollup/rollup-openharmony-arm64@4.60.2': 502 + resolution: {integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==} 503 + cpu: [arm64] 504 + os: [openharmony] 505 + 506 + '@rollup/rollup-win32-arm64-msvc@4.60.2': 507 + resolution: {integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==} 508 + cpu: [arm64] 509 + os: [win32] 510 + 511 + '@rollup/rollup-win32-ia32-msvc@4.60.2': 512 + resolution: {integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==} 513 + cpu: [ia32] 514 + os: [win32] 515 + 516 + '@rollup/rollup-win32-x64-gnu@4.60.2': 517 + resolution: {integrity: sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==} 518 + cpu: [x64] 519 + os: [win32] 520 + 521 + '@rollup/rollup-win32-x64-msvc@4.60.2': 522 + resolution: {integrity: sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==} 523 + cpu: [x64] 524 + os: [win32] 525 + 526 + '@shikijs/core@4.0.2': 527 + resolution: {integrity: sha512-hxT0YF4ExEqB8G/qFdtJvpmHXBYJ2lWW7qTHDarVkIudPFE6iCIrqdgWxGn5s+ppkGXI0aEGlibI0PAyzP3zlw==} 528 + engines: {node: '>=20'} 529 + 530 + '@shikijs/engine-javascript@4.0.2': 531 + resolution: {integrity: sha512-7PW0Nm49DcoUIQEXlJhNNBHyoGMjalRETTCcjMqEaMoJRLljy1Bi/EGV3/qLBgLKQejdspiiYuHGQW6dX94Nag==} 532 + engines: {node: '>=20'} 533 + 534 + '@shikijs/engine-oniguruma@4.0.2': 535 + resolution: {integrity: sha512-UpCB9Y2sUKlS9z8juFSKz7ZtysmeXCgnRF0dlhXBkmQnek7lAToPte8DkxmEYGNTMii72zU/lyXiCB6StuZeJg==} 536 + engines: {node: '>=20'} 537 + 538 + '@shikijs/langs@4.0.2': 539 + resolution: {integrity: sha512-KaXby5dvoeuZzN0rYQiPMjFoUrz4hgwIE+D6Du9owcHcl6/g16/yT5BQxSW5cGt2MZBz6Hl0YuRqf12omRfUUg==} 540 + engines: {node: '>=20'} 541 + 542 + '@shikijs/primitive@4.0.2': 543 + resolution: {integrity: sha512-M6UMPrSa3fN5ayeJwFVl9qWofl273wtK1VG8ySDZ1mQBfhCpdd8nEx7nPZ/tk7k+TYcpqBZzj/AnwxT9lO+HJw==} 544 + engines: {node: '>=20'} 545 + 546 + '@shikijs/themes@4.0.2': 547 + resolution: {integrity: sha512-mjCafwt8lJJaVSsQvNVrJumbnnj1RI8jbUKrPKgE6E3OvQKxnuRoBaYC51H4IGHePsGN/QtALglWBU7DoKDFnA==} 548 + engines: {node: '>=20'} 549 + 550 + '@shikijs/types@4.0.2': 551 + resolution: {integrity: sha512-qzbeRooUTPnLE+sHD/Z8DStmaDgnbbc/pMrU203950aRqjX/6AFHeDYT+j00y2lPdz0ywJKx7o/7qnqTivtlXg==} 552 + engines: {node: '>=20'} 553 + 554 + '@shikijs/vscode-textmate@10.0.2': 555 + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 556 + 557 + '@types/debug@4.1.13': 558 + resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==} 559 + 560 + '@types/estree@1.0.8': 561 + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 562 + 563 + '@types/hast@3.0.4': 564 + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 565 + 566 + '@types/mdast@4.0.4': 567 + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 568 + 569 + '@types/ms@2.1.0': 570 + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 571 + 572 + '@types/nlcst@2.0.3': 573 + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 574 + 575 + '@types/unist@3.0.3': 576 + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 577 + 578 + '@ungap/structured-clone@1.3.0': 579 + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 580 + 581 + anymatch@3.1.3: 582 + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 583 + engines: {node: '>= 8'} 584 + 585 + argparse@2.0.1: 586 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 587 + 588 + aria-query@5.3.2: 589 + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 590 + engines: {node: '>= 0.4'} 591 + 592 + array-iterate@2.0.1: 593 + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 594 + 595 + astro@6.1.8: 596 + resolution: {integrity: sha512-6fT9M12U3fpi13DiPavNKDIoBflASTSxmKTEe+zXhWtlebQuOqfOnIrMWyRmlXp+mgDsojmw+fVFG9LUTzKSog==} 597 + engines: {node: '>=22.12.0', npm: '>=9.6.5', pnpm: '>=7.1.0'} 598 + hasBin: true 599 + 600 + axobject-query@4.1.0: 601 + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 602 + engines: {node: '>= 0.4'} 603 + 604 + bail@2.0.2: 605 + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 606 + 607 + boolbase@1.0.0: 608 + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 609 + 610 + ccount@2.0.1: 611 + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 612 + 613 + character-entities-html4@2.1.0: 614 + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 615 + 616 + character-entities-legacy@3.0.0: 617 + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 618 + 619 + character-entities@2.0.2: 620 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 621 + 622 + chokidar@5.0.0: 623 + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} 624 + engines: {node: '>= 20.19.0'} 625 + 626 + ci-info@4.4.0: 627 + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} 628 + engines: {node: '>=8'} 629 + 630 + clsx@2.1.1: 631 + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 632 + engines: {node: '>=6'} 633 + 634 + comma-separated-tokens@2.0.3: 635 + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 636 + 637 + commander@11.1.0: 638 + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} 639 + engines: {node: '>=16'} 640 + 641 + common-ancestor-path@2.0.0: 642 + resolution: {integrity: sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==} 643 + engines: {node: '>= 18'} 644 + 645 + cookie-es@1.2.3: 646 + resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==} 647 + 648 + cookie@1.1.1: 649 + resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==} 650 + engines: {node: '>=18'} 651 + 652 + crossws@0.3.5: 653 + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 654 + 655 + css-select@5.2.2: 656 + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} 657 + 658 + css-tree@2.2.1: 659 + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} 660 + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} 661 + 662 + css-tree@3.2.1: 663 + resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} 664 + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 665 + 666 + css-what@6.2.2: 667 + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} 668 + engines: {node: '>= 6'} 669 + 670 + csso@5.0.5: 671 + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} 672 + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} 673 + 674 + debug@4.4.3: 675 + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 676 + engines: {node: '>=6.0'} 677 + peerDependencies: 678 + supports-color: '*' 679 + peerDependenciesMeta: 680 + supports-color: 681 + optional: true 682 + 683 + decode-named-character-reference@1.3.0: 684 + resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==} 685 + 686 + defu@6.1.7: 687 + resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} 688 + 689 + dequal@2.0.3: 690 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 691 + engines: {node: '>=6'} 692 + 693 + destr@2.0.5: 694 + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 695 + 696 + detect-libc@2.1.2: 697 + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 698 + engines: {node: '>=8'} 699 + 700 + devalue@5.7.1: 701 + resolution: {integrity: sha512-MUbZ586EgQqdRnC4yDrlod3BEdyvE4TapGYHMW2CiaW+KkkFmWEFqBUaLltEZCGi0iFXCEjRF0OjF0DV2QHjOA==} 702 + 703 + devlop@1.1.0: 704 + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 705 + 706 + diff@8.0.4: 707 + resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==} 708 + engines: {node: '>=0.3.1'} 709 + 710 + dlv@1.1.3: 711 + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 712 + 713 + dom-serializer@2.0.0: 714 + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 715 + 716 + domelementtype@2.3.0: 717 + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 718 + 719 + domhandler@5.0.3: 720 + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 721 + engines: {node: '>= 4'} 722 + 723 + domutils@3.2.2: 724 + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} 725 + 726 + dset@3.1.4: 727 + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 728 + engines: {node: '>=4'} 729 + 730 + entities@4.5.0: 731 + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 732 + engines: {node: '>=0.12'} 733 + 734 + entities@6.0.1: 735 + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 736 + engines: {node: '>=0.12'} 737 + 738 + es-module-lexer@2.0.0: 739 + resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==} 740 + 741 + esbuild@0.27.7: 742 + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} 743 + engines: {node: '>=18'} 744 + hasBin: true 745 + 746 + escape-string-regexp@5.0.0: 747 + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 748 + engines: {node: '>=12'} 749 + 750 + estree-walker@2.0.2: 751 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 752 + 753 + eventemitter3@5.0.4: 754 + resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} 755 + 756 + extend@3.0.2: 757 + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 758 + 759 + fast-string-truncated-width@1.2.1: 760 + resolution: {integrity: sha512-Q9acT/+Uu3GwGj+5w/zsGuQjh9O1TyywhIwAxHudtWrgF09nHOPrvTLhQevPbttcxjr/SNN7mJmfOw/B1bXgow==} 761 + 762 + fast-string-width@1.1.0: 763 + resolution: {integrity: sha512-O3fwIVIH5gKB38QNbdg+3760ZmGz0SZMgvwJbA1b2TGXceKE6A2cOlfogh1iw8lr049zPyd7YADHy+B7U4W9bQ==} 764 + 765 + fast-wrap-ansi@0.1.6: 766 + resolution: {integrity: sha512-HlUwET7a5gqjURj70D5jl7aC3Zmy4weA1SHUfM0JFI0Ptq987NH2TwbBFLoERhfwk+E+eaq4EK3jXoT+R3yp3w==} 767 + 768 + fdir@6.5.0: 769 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 770 + engines: {node: '>=12.0.0'} 771 + peerDependencies: 772 + picomatch: ^3 || ^4 773 + peerDependenciesMeta: 774 + picomatch: 775 + optional: true 776 + 777 + flattie@1.1.1: 778 + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 779 + engines: {node: '>=8'} 780 + 781 + fontace@0.4.1: 782 + resolution: {integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==} 783 + 784 + fontkitten@1.0.3: 785 + resolution: {integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==} 786 + engines: {node: '>=20'} 787 + 788 + fsevents@2.3.3: 789 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 790 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 791 + os: [darwin] 792 + 793 + github-slugger@2.0.0: 794 + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 795 + 796 + h3@1.15.11: 797 + resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==} 798 + 799 + hast-util-from-html@2.0.3: 800 + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 801 + 802 + hast-util-from-parse5@8.0.3: 803 + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} 804 + 805 + hast-util-is-element@3.0.0: 806 + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 807 + 808 + hast-util-parse-selector@4.0.0: 809 + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 810 + 811 + hast-util-raw@9.1.0: 812 + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 813 + 814 + hast-util-to-html@9.0.5: 815 + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 816 + 817 + hast-util-to-parse5@8.0.1: 818 + resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==} 819 + 820 + hast-util-to-text@4.0.2: 821 + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 822 + 823 + hast-util-whitespace@3.0.0: 824 + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 825 + 826 + hastscript@9.0.1: 827 + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} 828 + 829 + html-escaper@3.0.3: 830 + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 831 + 832 + html-void-elements@3.0.0: 833 + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 834 + 835 + http-cache-semantics@4.2.0: 836 + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} 837 + 838 + iron-webcrypto@1.2.1: 839 + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 840 + 841 + is-docker@3.0.0: 842 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 843 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 844 + hasBin: true 845 + 846 + is-docker@4.0.0: 847 + resolution: {integrity: sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==} 848 + engines: {node: '>=20'} 849 + hasBin: true 850 + 851 + is-inside-container@1.0.0: 852 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 853 + engines: {node: '>=14.16'} 854 + hasBin: true 855 + 856 + is-plain-obj@4.1.0: 857 + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 858 + engines: {node: '>=12'} 859 + 860 + is-wsl@3.1.1: 861 + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} 862 + engines: {node: '>=16'} 863 + 864 + js-yaml@4.1.1: 865 + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} 866 + hasBin: true 867 + 868 + longest-streak@3.1.0: 869 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 870 + 871 + lru-cache@11.3.5: 872 + resolution: {integrity: sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==} 873 + engines: {node: 20 || >=22} 874 + 875 + magic-string@0.30.21: 876 + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} 877 + 878 + magicast@0.5.2: 879 + resolution: {integrity: sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==} 880 + 881 + markdown-table@3.0.4: 882 + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 883 + 884 + mdast-util-definitions@6.0.0: 885 + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 886 + 887 + mdast-util-find-and-replace@3.0.2: 888 + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 889 + 890 + mdast-util-from-markdown@2.0.3: 891 + resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==} 892 + 893 + mdast-util-gfm-autolink-literal@2.0.1: 894 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 895 + 896 + mdast-util-gfm-footnote@2.1.0: 897 + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 898 + 899 + mdast-util-gfm-strikethrough@2.0.0: 900 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 901 + 902 + mdast-util-gfm-table@2.0.0: 903 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 904 + 905 + mdast-util-gfm-task-list-item@2.0.0: 906 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 907 + 908 + mdast-util-gfm@3.1.0: 909 + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 910 + 911 + mdast-util-phrasing@4.1.0: 912 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 913 + 914 + mdast-util-to-hast@13.2.1: 915 + resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} 916 + 917 + mdast-util-to-markdown@2.1.2: 918 + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 919 + 920 + mdast-util-to-string@4.0.0: 921 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 922 + 923 + mdn-data@2.0.28: 924 + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} 925 + 926 + mdn-data@2.27.1: 927 + resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} 928 + 929 + micromark-core-commonmark@2.0.3: 930 + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 931 + 932 + micromark-extension-gfm-autolink-literal@2.1.0: 933 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 934 + 935 + micromark-extension-gfm-footnote@2.1.0: 936 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 937 + 938 + micromark-extension-gfm-strikethrough@2.1.0: 939 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 940 + 941 + micromark-extension-gfm-table@2.1.1: 942 + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 943 + 944 + micromark-extension-gfm-tagfilter@2.0.0: 945 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 946 + 947 + micromark-extension-gfm-task-list-item@2.1.0: 948 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 949 + 950 + micromark-extension-gfm@3.0.0: 951 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 952 + 953 + micromark-factory-destination@2.0.1: 954 + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 955 + 956 + micromark-factory-label@2.0.1: 957 + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 958 + 959 + micromark-factory-space@2.0.1: 960 + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 961 + 962 + micromark-factory-title@2.0.1: 963 + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 964 + 965 + micromark-factory-whitespace@2.0.1: 966 + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 967 + 968 + micromark-util-character@2.1.1: 969 + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 970 + 971 + micromark-util-chunked@2.0.1: 972 + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 973 + 974 + micromark-util-classify-character@2.0.1: 975 + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 976 + 977 + micromark-util-combine-extensions@2.0.1: 978 + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 979 + 980 + micromark-util-decode-numeric-character-reference@2.0.2: 981 + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 982 + 983 + micromark-util-decode-string@2.0.1: 984 + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 985 + 986 + micromark-util-encode@2.0.1: 987 + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 988 + 989 + micromark-util-html-tag-name@2.0.1: 990 + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 991 + 992 + micromark-util-normalize-identifier@2.0.1: 993 + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 994 + 995 + micromark-util-resolve-all@2.0.1: 996 + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 997 + 998 + micromark-util-sanitize-uri@2.0.1: 999 + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 1000 + 1001 + micromark-util-subtokenize@2.1.0: 1002 + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 1003 + 1004 + micromark-util-symbol@2.0.1: 1005 + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 1006 + 1007 + micromark-util-types@2.0.2: 1008 + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 1009 + 1010 + micromark@4.0.2: 1011 + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 1012 + 1013 + mrmime@2.0.1: 1014 + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 1015 + engines: {node: '>=10'} 1016 + 1017 + ms@2.1.3: 1018 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1019 + 1020 + nanoid@3.3.11: 1021 + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1022 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1023 + hasBin: true 1024 + 1025 + neotraverse@0.6.18: 1026 + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 1027 + engines: {node: '>= 10'} 1028 + 1029 + nlcst-to-string@4.0.0: 1030 + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 1031 + 1032 + node-fetch-native@1.6.7: 1033 + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 1034 + 1035 + node-mock-http@1.0.4: 1036 + resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==} 1037 + 1038 + normalize-path@3.0.0: 1039 + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1040 + engines: {node: '>=0.10.0'} 1041 + 1042 + nth-check@2.1.1: 1043 + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1044 + 1045 + obug@2.1.1: 1046 + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} 1047 + 1048 + ofetch@1.5.1: 1049 + resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} 1050 + 1051 + ohash@2.0.11: 1052 + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 1053 + 1054 + oniguruma-parser@0.12.1: 1055 + resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 1056 + 1057 + oniguruma-to-es@4.3.5: 1058 + resolution: {integrity: sha512-Zjygswjpsewa0NLTsiizVuMQZbp0MDyM6lIt66OxsF21npUDlzpHi1Mgb/qhQdkb+dWFTzJmFbEWdvZgRho8eQ==} 1059 + 1060 + p-limit@7.3.0: 1061 + resolution: {integrity: sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==} 1062 + engines: {node: '>=20'} 1063 + 1064 + p-queue@9.1.2: 1065 + resolution: {integrity: sha512-ktsDOALzTYTWWF1PbkNVg2rOt+HaOaMWJMUnt7T3qf5tvZ1L8dBW3tObzprBcXNMKkwj+yFSLqHso0x+UFcJXw==} 1066 + engines: {node: '>=20'} 1067 + 1068 + p-timeout@7.0.1: 1069 + resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==} 1070 + engines: {node: '>=20'} 1071 + 1072 + package-manager-detector@1.6.0: 1073 + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 1074 + 1075 + parse-latin@7.0.0: 1076 + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 1077 + 1078 + parse5@7.3.0: 1079 + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 1080 + 1081 + piccolore@0.1.3: 1082 + resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==} 1083 + 1084 + picocolors@1.1.1: 1085 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1086 + 1087 + picomatch@2.3.2: 1088 + resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} 1089 + engines: {node: '>=8.6'} 1090 + 1091 + picomatch@4.0.4: 1092 + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} 1093 + engines: {node: '>=12'} 1094 + 1095 + postcss@8.5.10: 1096 + resolution: {integrity: sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==} 1097 + engines: {node: ^10 || ^12 || >=14} 1098 + 1099 + prismjs@1.30.0: 1100 + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 1101 + engines: {node: '>=6'} 1102 + 1103 + property-information@7.1.0: 1104 + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 1105 + 1106 + radix3@1.1.2: 1107 + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 1108 + 1109 + readdirp@5.0.0: 1110 + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} 1111 + engines: {node: '>= 20.19.0'} 1112 + 1113 + regex-recursion@6.0.2: 1114 + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 1115 + 1116 + regex-utilities@2.3.0: 1117 + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 1118 + 1119 + regex@6.1.0: 1120 + resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==} 1121 + 1122 + rehype-parse@9.0.1: 1123 + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 1124 + 1125 + rehype-raw@7.0.0: 1126 + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 1127 + 1128 + rehype-stringify@10.0.1: 1129 + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 1130 + 1131 + rehype@13.0.2: 1132 + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 1133 + 1134 + remark-gfm@4.0.1: 1135 + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} 1136 + 1137 + remark-parse@11.0.0: 1138 + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 1139 + 1140 + remark-rehype@11.1.2: 1141 + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} 1142 + 1143 + remark-smartypants@3.0.2: 1144 + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 1145 + engines: {node: '>=16.0.0'} 1146 + 1147 + remark-stringify@11.0.0: 1148 + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 1149 + 1150 + retext-latin@4.0.0: 1151 + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 1152 + 1153 + retext-smartypants@6.2.0: 1154 + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 1155 + 1156 + retext-stringify@4.0.0: 1157 + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 1158 + 1159 + retext@9.0.0: 1160 + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 1161 + 1162 + rollup@4.60.2: 1163 + resolution: {integrity: sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==} 1164 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1165 + hasBin: true 1166 + 1167 + sax@1.6.0: 1168 + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} 1169 + engines: {node: '>=11.0.0'} 1170 + 1171 + semver@7.7.4: 1172 + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} 1173 + engines: {node: '>=10'} 1174 + hasBin: true 1175 + 1176 + sharp@0.34.5: 1177 + resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} 1178 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1179 + 1180 + shiki@4.0.2: 1181 + resolution: {integrity: sha512-eAVKTMedR5ckPo4xne/PjYQYrU3qx78gtJZ+sHlXEg5IHhhoQhMfZVzetTYuaJS0L2Ef3AcCRzCHV8T0WI6nIQ==} 1182 + engines: {node: '>=20'} 1183 + 1184 + sisteransi@1.0.5: 1185 + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1186 + 1187 + smol-toml@1.6.1: 1188 + resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} 1189 + engines: {node: '>= 18'} 1190 + 1191 + source-map-js@1.2.1: 1192 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1193 + engines: {node: '>=0.10.0'} 1194 + 1195 + space-separated-tokens@2.0.2: 1196 + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 1197 + 1198 + stringify-entities@4.0.4: 1199 + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1200 + 1201 + svgo@4.0.1: 1202 + resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==} 1203 + engines: {node: '>=16'} 1204 + hasBin: true 1205 + 1206 + tiny-inflate@1.0.3: 1207 + resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} 1208 + 1209 + tinyclip@0.1.12: 1210 + resolution: {integrity: sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==} 1211 + engines: {node: ^16.14.0 || >= 17.3.0} 1212 + 1213 + tinyexec@1.1.1: 1214 + resolution: {integrity: sha512-VKS/ZaQhhkKFMANmAOhhXVoIfBXblQxGX1myCQ2faQrfmobMftXeJPcZGp0gS07ocvGJWDLZGyOZDadDBqYIJg==} 1215 + engines: {node: '>=18'} 1216 + 1217 + tinyglobby@0.2.16: 1218 + resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} 1219 + engines: {node: '>=12.0.0'} 1220 + 1221 + trim-lines@3.0.1: 1222 + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1223 + 1224 + trough@2.2.0: 1225 + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 1226 + 1227 + tsconfck@3.1.6: 1228 + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} 1229 + engines: {node: ^18 || >=20} 1230 + hasBin: true 1231 + peerDependencies: 1232 + typescript: ^5.0.0 1233 + peerDependenciesMeta: 1234 + typescript: 1235 + optional: true 1236 + 1237 + tslib@2.8.1: 1238 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1239 + 1240 + ufo@1.6.3: 1241 + resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==} 1242 + 1243 + ultrahtml@1.6.0: 1244 + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 1245 + 1246 + uncrypto@0.1.3: 1247 + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 1248 + 1249 + unified@11.0.5: 1250 + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 1251 + 1252 + unifont@0.7.4: 1253 + resolution: {integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==} 1254 + 1255 + unist-util-find-after@5.0.0: 1256 + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 1257 + 1258 + unist-util-is@6.0.1: 1259 + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 1260 + 1261 + unist-util-modify-children@4.0.0: 1262 + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 1263 + 1264 + unist-util-position@5.0.0: 1265 + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 1266 + 1267 + unist-util-remove-position@5.0.0: 1268 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 1269 + 1270 + unist-util-stringify-position@4.0.0: 1271 + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1272 + 1273 + unist-util-visit-children@3.0.0: 1274 + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 1275 + 1276 + unist-util-visit-parents@6.0.2: 1277 + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} 1278 + 1279 + unist-util-visit@5.1.0: 1280 + resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} 1281 + 1282 + unstorage@1.17.5: 1283 + resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==} 1284 + peerDependencies: 1285 + '@azure/app-configuration': ^1.8.0 1286 + '@azure/cosmos': ^4.2.0 1287 + '@azure/data-tables': ^13.3.0 1288 + '@azure/identity': ^4.6.0 1289 + '@azure/keyvault-secrets': ^4.9.0 1290 + '@azure/storage-blob': ^12.26.0 1291 + '@capacitor/preferences': ^6 || ^7 || ^8 1292 + '@deno/kv': '>=0.9.0' 1293 + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 1294 + '@planetscale/database': ^1.19.0 1295 + '@upstash/redis': ^1.34.3 1296 + '@vercel/blob': '>=0.27.1' 1297 + '@vercel/functions': ^2.2.12 || ^3.0.0 1298 + '@vercel/kv': ^1 || ^2 || ^3 1299 + aws4fetch: ^1.0.20 1300 + db0: '>=0.2.1' 1301 + idb-keyval: ^6.2.1 1302 + ioredis: ^5.4.2 1303 + uploadthing: ^7.4.4 1304 + peerDependenciesMeta: 1305 + '@azure/app-configuration': 1306 + optional: true 1307 + '@azure/cosmos': 1308 + optional: true 1309 + '@azure/data-tables': 1310 + optional: true 1311 + '@azure/identity': 1312 + optional: true 1313 + '@azure/keyvault-secrets': 1314 + optional: true 1315 + '@azure/storage-blob': 1316 + optional: true 1317 + '@capacitor/preferences': 1318 + optional: true 1319 + '@deno/kv': 1320 + optional: true 1321 + '@netlify/blobs': 1322 + optional: true 1323 + '@planetscale/database': 1324 + optional: true 1325 + '@upstash/redis': 1326 + optional: true 1327 + '@vercel/blob': 1328 + optional: true 1329 + '@vercel/functions': 1330 + optional: true 1331 + '@vercel/kv': 1332 + optional: true 1333 + aws4fetch: 1334 + optional: true 1335 + db0: 1336 + optional: true 1337 + idb-keyval: 1338 + optional: true 1339 + ioredis: 1340 + optional: true 1341 + uploadthing: 1342 + optional: true 1343 + 1344 + vfile-location@5.0.3: 1345 + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 1346 + 1347 + vfile-message@4.0.3: 1348 + resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 1349 + 1350 + vfile@6.0.3: 1351 + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 1352 + 1353 + vite@7.3.2: 1354 + resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==} 1355 + engines: {node: ^20.19.0 || >=22.12.0} 1356 + hasBin: true 1357 + peerDependencies: 1358 + '@types/node': ^20.19.0 || >=22.12.0 1359 + jiti: '>=1.21.0' 1360 + less: ^4.0.0 1361 + lightningcss: ^1.21.0 1362 + sass: ^1.70.0 1363 + sass-embedded: ^1.70.0 1364 + stylus: '>=0.54.8' 1365 + sugarss: ^5.0.0 1366 + terser: ^5.16.0 1367 + tsx: ^4.8.1 1368 + yaml: ^2.4.2 1369 + peerDependenciesMeta: 1370 + '@types/node': 1371 + optional: true 1372 + jiti: 1373 + optional: true 1374 + less: 1375 + optional: true 1376 + lightningcss: 1377 + optional: true 1378 + sass: 1379 + optional: true 1380 + sass-embedded: 1381 + optional: true 1382 + stylus: 1383 + optional: true 1384 + sugarss: 1385 + optional: true 1386 + terser: 1387 + optional: true 1388 + tsx: 1389 + optional: true 1390 + yaml: 1391 + optional: true 1392 + 1393 + vitefu@1.1.3: 1394 + resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==} 1395 + peerDependencies: 1396 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 1397 + peerDependenciesMeta: 1398 + vite: 1399 + optional: true 1400 + 1401 + web-namespaces@2.0.1: 1402 + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 1403 + 1404 + which-pm-runs@1.1.0: 1405 + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 1406 + engines: {node: '>=4'} 1407 + 1408 + xxhash-wasm@1.1.0: 1409 + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 1410 + 1411 + yargs-parser@22.0.0: 1412 + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} 1413 + engines: {node: ^20.19.0 || ^22.12.0 || >=23} 1414 + 1415 + yocto-queue@1.2.2: 1416 + resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==} 1417 + engines: {node: '>=12.20'} 1418 + 1419 + zod@4.3.6: 1420 + resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} 1421 + 1422 + zwitch@2.0.4: 1423 + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 1424 + 1425 + snapshots: 1426 + 1427 + '@astrojs/compiler@3.0.1': {} 1428 + 1429 + '@astrojs/internal-helpers@0.8.0': 1430 + dependencies: 1431 + picomatch: 4.0.4 1432 + 1433 + '@astrojs/markdown-remark@7.1.0': 1434 + dependencies: 1435 + '@astrojs/internal-helpers': 0.8.0 1436 + '@astrojs/prism': 4.0.1 1437 + github-slugger: 2.0.0 1438 + hast-util-from-html: 2.0.3 1439 + hast-util-to-text: 4.0.2 1440 + js-yaml: 4.1.1 1441 + mdast-util-definitions: 6.0.0 1442 + rehype-raw: 7.0.0 1443 + rehype-stringify: 10.0.1 1444 + remark-gfm: 4.0.1 1445 + remark-parse: 11.0.0 1446 + remark-rehype: 11.1.2 1447 + remark-smartypants: 3.0.2 1448 + retext-smartypants: 6.2.0 1449 + shiki: 4.0.2 1450 + smol-toml: 1.6.1 1451 + unified: 11.0.5 1452 + unist-util-remove-position: 5.0.0 1453 + unist-util-visit: 5.1.0 1454 + unist-util-visit-parents: 6.0.2 1455 + vfile: 6.0.3 1456 + transitivePeerDependencies: 1457 + - supports-color 1458 + 1459 + '@astrojs/prism@4.0.1': 1460 + dependencies: 1461 + prismjs: 1.30.0 1462 + 1463 + '@astrojs/telemetry@3.3.1': 1464 + dependencies: 1465 + ci-info: 4.4.0 1466 + dlv: 1.1.3 1467 + dset: 3.1.4 1468 + is-docker: 4.0.0 1469 + is-wsl: 3.1.1 1470 + which-pm-runs: 1.1.0 1471 + 1472 + '@babel/helper-string-parser@7.27.1': {} 1473 + 1474 + '@babel/helper-validator-identifier@7.28.5': {} 1475 + 1476 + '@babel/parser@7.29.2': 1477 + dependencies: 1478 + '@babel/types': 7.29.0 1479 + 1480 + '@babel/types@7.29.0': 1481 + dependencies: 1482 + '@babel/helper-string-parser': 7.27.1 1483 + '@babel/helper-validator-identifier': 7.28.5 1484 + 1485 + '@capsizecss/unpack@4.0.0': 1486 + dependencies: 1487 + fontkitten: 1.0.3 1488 + 1489 + '@clack/core@1.2.0': 1490 + dependencies: 1491 + fast-wrap-ansi: 0.1.6 1492 + sisteransi: 1.0.5 1493 + 1494 + '@clack/prompts@1.2.0': 1495 + dependencies: 1496 + '@clack/core': 1.2.0 1497 + fast-string-width: 1.1.0 1498 + fast-wrap-ansi: 0.1.6 1499 + sisteransi: 1.0.5 1500 + 1501 + '@emnapi/runtime@1.10.0': 1502 + dependencies: 1503 + tslib: 2.8.1 1504 + optional: true 1505 + 1506 + '@esbuild/aix-ppc64@0.27.7': 1507 + optional: true 1508 + 1509 + '@esbuild/android-arm64@0.27.7': 1510 + optional: true 1511 + 1512 + '@esbuild/android-arm@0.27.7': 1513 + optional: true 1514 + 1515 + '@esbuild/android-x64@0.27.7': 1516 + optional: true 1517 + 1518 + '@esbuild/darwin-arm64@0.27.7': 1519 + optional: true 1520 + 1521 + '@esbuild/darwin-x64@0.27.7': 1522 + optional: true 1523 + 1524 + '@esbuild/freebsd-arm64@0.27.7': 1525 + optional: true 1526 + 1527 + '@esbuild/freebsd-x64@0.27.7': 1528 + optional: true 1529 + 1530 + '@esbuild/linux-arm64@0.27.7': 1531 + optional: true 1532 + 1533 + '@esbuild/linux-arm@0.27.7': 1534 + optional: true 1535 + 1536 + '@esbuild/linux-ia32@0.27.7': 1537 + optional: true 1538 + 1539 + '@esbuild/linux-loong64@0.27.7': 1540 + optional: true 1541 + 1542 + '@esbuild/linux-mips64el@0.27.7': 1543 + optional: true 1544 + 1545 + '@esbuild/linux-ppc64@0.27.7': 1546 + optional: true 1547 + 1548 + '@esbuild/linux-riscv64@0.27.7': 1549 + optional: true 1550 + 1551 + '@esbuild/linux-s390x@0.27.7': 1552 + optional: true 1553 + 1554 + '@esbuild/linux-x64@0.27.7': 1555 + optional: true 1556 + 1557 + '@esbuild/netbsd-arm64@0.27.7': 1558 + optional: true 1559 + 1560 + '@esbuild/netbsd-x64@0.27.7': 1561 + optional: true 1562 + 1563 + '@esbuild/openbsd-arm64@0.27.7': 1564 + optional: true 1565 + 1566 + '@esbuild/openbsd-x64@0.27.7': 1567 + optional: true 1568 + 1569 + '@esbuild/openharmony-arm64@0.27.7': 1570 + optional: true 1571 + 1572 + '@esbuild/sunos-x64@0.27.7': 1573 + optional: true 1574 + 1575 + '@esbuild/win32-arm64@0.27.7': 1576 + optional: true 1577 + 1578 + '@esbuild/win32-ia32@0.27.7': 1579 + optional: true 1580 + 1581 + '@esbuild/win32-x64@0.27.7': 1582 + optional: true 1583 + 1584 + '@img/colour@1.1.0': 1585 + optional: true 1586 + 1587 + '@img/sharp-darwin-arm64@0.34.5': 1588 + optionalDependencies: 1589 + '@img/sharp-libvips-darwin-arm64': 1.2.4 1590 + optional: true 1591 + 1592 + '@img/sharp-darwin-x64@0.34.5': 1593 + optionalDependencies: 1594 + '@img/sharp-libvips-darwin-x64': 1.2.4 1595 + optional: true 1596 + 1597 + '@img/sharp-libvips-darwin-arm64@1.2.4': 1598 + optional: true 1599 + 1600 + '@img/sharp-libvips-darwin-x64@1.2.4': 1601 + optional: true 1602 + 1603 + '@img/sharp-libvips-linux-arm64@1.2.4': 1604 + optional: true 1605 + 1606 + '@img/sharp-libvips-linux-arm@1.2.4': 1607 + optional: true 1608 + 1609 + '@img/sharp-libvips-linux-ppc64@1.2.4': 1610 + optional: true 1611 + 1612 + '@img/sharp-libvips-linux-riscv64@1.2.4': 1613 + optional: true 1614 + 1615 + '@img/sharp-libvips-linux-s390x@1.2.4': 1616 + optional: true 1617 + 1618 + '@img/sharp-libvips-linux-x64@1.2.4': 1619 + optional: true 1620 + 1621 + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': 1622 + optional: true 1623 + 1624 + '@img/sharp-libvips-linuxmusl-x64@1.2.4': 1625 + optional: true 1626 + 1627 + '@img/sharp-linux-arm64@0.34.5': 1628 + optionalDependencies: 1629 + '@img/sharp-libvips-linux-arm64': 1.2.4 1630 + optional: true 1631 + 1632 + '@img/sharp-linux-arm@0.34.5': 1633 + optionalDependencies: 1634 + '@img/sharp-libvips-linux-arm': 1.2.4 1635 + optional: true 1636 + 1637 + '@img/sharp-linux-ppc64@0.34.5': 1638 + optionalDependencies: 1639 + '@img/sharp-libvips-linux-ppc64': 1.2.4 1640 + optional: true 1641 + 1642 + '@img/sharp-linux-riscv64@0.34.5': 1643 + optionalDependencies: 1644 + '@img/sharp-libvips-linux-riscv64': 1.2.4 1645 + optional: true 1646 + 1647 + '@img/sharp-linux-s390x@0.34.5': 1648 + optionalDependencies: 1649 + '@img/sharp-libvips-linux-s390x': 1.2.4 1650 + optional: true 1651 + 1652 + '@img/sharp-linux-x64@0.34.5': 1653 + optionalDependencies: 1654 + '@img/sharp-libvips-linux-x64': 1.2.4 1655 + optional: true 1656 + 1657 + '@img/sharp-linuxmusl-arm64@0.34.5': 1658 + optionalDependencies: 1659 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 1660 + optional: true 1661 + 1662 + '@img/sharp-linuxmusl-x64@0.34.5': 1663 + optionalDependencies: 1664 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 1665 + optional: true 1666 + 1667 + '@img/sharp-wasm32@0.34.5': 1668 + dependencies: 1669 + '@emnapi/runtime': 1.10.0 1670 + optional: true 1671 + 1672 + '@img/sharp-win32-arm64@0.34.5': 1673 + optional: true 1674 + 1675 + '@img/sharp-win32-ia32@0.34.5': 1676 + optional: true 1677 + 1678 + '@img/sharp-win32-x64@0.34.5': 1679 + optional: true 1680 + 1681 + '@jridgewell/sourcemap-codec@1.5.5': {} 1682 + 1683 + '@oslojs/encoding@1.1.0': {} 1684 + 1685 + '@rollup/pluginutils@5.3.0(rollup@4.60.2)': 1686 + dependencies: 1687 + '@types/estree': 1.0.8 1688 + estree-walker: 2.0.2 1689 + picomatch: 4.0.4 1690 + optionalDependencies: 1691 + rollup: 4.60.2 1692 + 1693 + '@rollup/rollup-android-arm-eabi@4.60.2': 1694 + optional: true 1695 + 1696 + '@rollup/rollup-android-arm64@4.60.2': 1697 + optional: true 1698 + 1699 + '@rollup/rollup-darwin-arm64@4.60.2': 1700 + optional: true 1701 + 1702 + '@rollup/rollup-darwin-x64@4.60.2': 1703 + optional: true 1704 + 1705 + '@rollup/rollup-freebsd-arm64@4.60.2': 1706 + optional: true 1707 + 1708 + '@rollup/rollup-freebsd-x64@4.60.2': 1709 + optional: true 1710 + 1711 + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': 1712 + optional: true 1713 + 1714 + '@rollup/rollup-linux-arm-musleabihf@4.60.2': 1715 + optional: true 1716 + 1717 + '@rollup/rollup-linux-arm64-gnu@4.60.2': 1718 + optional: true 1719 + 1720 + '@rollup/rollup-linux-arm64-musl@4.60.2': 1721 + optional: true 1722 + 1723 + '@rollup/rollup-linux-loong64-gnu@4.60.2': 1724 + optional: true 1725 + 1726 + '@rollup/rollup-linux-loong64-musl@4.60.2': 1727 + optional: true 1728 + 1729 + '@rollup/rollup-linux-ppc64-gnu@4.60.2': 1730 + optional: true 1731 + 1732 + '@rollup/rollup-linux-ppc64-musl@4.60.2': 1733 + optional: true 1734 + 1735 + '@rollup/rollup-linux-riscv64-gnu@4.60.2': 1736 + optional: true 1737 + 1738 + '@rollup/rollup-linux-riscv64-musl@4.60.2': 1739 + optional: true 1740 + 1741 + '@rollup/rollup-linux-s390x-gnu@4.60.2': 1742 + optional: true 1743 + 1744 + '@rollup/rollup-linux-x64-gnu@4.60.2': 1745 + optional: true 1746 + 1747 + '@rollup/rollup-linux-x64-musl@4.60.2': 1748 + optional: true 1749 + 1750 + '@rollup/rollup-openbsd-x64@4.60.2': 1751 + optional: true 1752 + 1753 + '@rollup/rollup-openharmony-arm64@4.60.2': 1754 + optional: true 1755 + 1756 + '@rollup/rollup-win32-arm64-msvc@4.60.2': 1757 + optional: true 1758 + 1759 + '@rollup/rollup-win32-ia32-msvc@4.60.2': 1760 + optional: true 1761 + 1762 + '@rollup/rollup-win32-x64-gnu@4.60.2': 1763 + optional: true 1764 + 1765 + '@rollup/rollup-win32-x64-msvc@4.60.2': 1766 + optional: true 1767 + 1768 + '@shikijs/core@4.0.2': 1769 + dependencies: 1770 + '@shikijs/primitive': 4.0.2 1771 + '@shikijs/types': 4.0.2 1772 + '@shikijs/vscode-textmate': 10.0.2 1773 + '@types/hast': 3.0.4 1774 + hast-util-to-html: 9.0.5 1775 + 1776 + '@shikijs/engine-javascript@4.0.2': 1777 + dependencies: 1778 + '@shikijs/types': 4.0.2 1779 + '@shikijs/vscode-textmate': 10.0.2 1780 + oniguruma-to-es: 4.3.5 1781 + 1782 + '@shikijs/engine-oniguruma@4.0.2': 1783 + dependencies: 1784 + '@shikijs/types': 4.0.2 1785 + '@shikijs/vscode-textmate': 10.0.2 1786 + 1787 + '@shikijs/langs@4.0.2': 1788 + dependencies: 1789 + '@shikijs/types': 4.0.2 1790 + 1791 + '@shikijs/primitive@4.0.2': 1792 + dependencies: 1793 + '@shikijs/types': 4.0.2 1794 + '@shikijs/vscode-textmate': 10.0.2 1795 + '@types/hast': 3.0.4 1796 + 1797 + '@shikijs/themes@4.0.2': 1798 + dependencies: 1799 + '@shikijs/types': 4.0.2 1800 + 1801 + '@shikijs/types@4.0.2': 1802 + dependencies: 1803 + '@shikijs/vscode-textmate': 10.0.2 1804 + '@types/hast': 3.0.4 1805 + 1806 + '@shikijs/vscode-textmate@10.0.2': {} 1807 + 1808 + '@types/debug@4.1.13': 1809 + dependencies: 1810 + '@types/ms': 2.1.0 1811 + 1812 + '@types/estree@1.0.8': {} 1813 + 1814 + '@types/hast@3.0.4': 1815 + dependencies: 1816 + '@types/unist': 3.0.3 1817 + 1818 + '@types/mdast@4.0.4': 1819 + dependencies: 1820 + '@types/unist': 3.0.3 1821 + 1822 + '@types/ms@2.1.0': {} 1823 + 1824 + '@types/nlcst@2.0.3': 1825 + dependencies: 1826 + '@types/unist': 3.0.3 1827 + 1828 + '@types/unist@3.0.3': {} 1829 + 1830 + '@ungap/structured-clone@1.3.0': {} 1831 + 1832 + anymatch@3.1.3: 1833 + dependencies: 1834 + normalize-path: 3.0.0 1835 + picomatch: 2.3.2 1836 + 1837 + argparse@2.0.1: {} 1838 + 1839 + aria-query@5.3.2: {} 1840 + 1841 + array-iterate@2.0.1: {} 1842 + 1843 + astro@6.1.8(rollup@4.60.2): 1844 + dependencies: 1845 + '@astrojs/compiler': 3.0.1 1846 + '@astrojs/internal-helpers': 0.8.0 1847 + '@astrojs/markdown-remark': 7.1.0 1848 + '@astrojs/telemetry': 3.3.1 1849 + '@capsizecss/unpack': 4.0.0 1850 + '@clack/prompts': 1.2.0 1851 + '@oslojs/encoding': 1.1.0 1852 + '@rollup/pluginutils': 5.3.0(rollup@4.60.2) 1853 + aria-query: 5.3.2 1854 + axobject-query: 4.1.0 1855 + ci-info: 4.4.0 1856 + clsx: 2.1.1 1857 + common-ancestor-path: 2.0.0 1858 + cookie: 1.1.1 1859 + devalue: 5.7.1 1860 + diff: 8.0.4 1861 + dset: 3.1.4 1862 + es-module-lexer: 2.0.0 1863 + esbuild: 0.27.7 1864 + flattie: 1.1.1 1865 + fontace: 0.4.1 1866 + github-slugger: 2.0.0 1867 + html-escaper: 3.0.3 1868 + http-cache-semantics: 4.2.0 1869 + js-yaml: 4.1.1 1870 + magic-string: 0.30.21 1871 + magicast: 0.5.2 1872 + mrmime: 2.0.1 1873 + neotraverse: 0.6.18 1874 + obug: 2.1.1 1875 + p-limit: 7.3.0 1876 + p-queue: 9.1.2 1877 + package-manager-detector: 1.6.0 1878 + piccolore: 0.1.3 1879 + picomatch: 4.0.4 1880 + rehype: 13.0.2 1881 + semver: 7.7.4 1882 + shiki: 4.0.2 1883 + smol-toml: 1.6.1 1884 + svgo: 4.0.1 1885 + tinyclip: 0.1.12 1886 + tinyexec: 1.1.1 1887 + tinyglobby: 0.2.16 1888 + tsconfck: 3.1.6 1889 + ultrahtml: 1.6.0 1890 + unifont: 0.7.4 1891 + unist-util-visit: 5.1.0 1892 + unstorage: 1.17.5 1893 + vfile: 6.0.3 1894 + vite: 7.3.2 1895 + vitefu: 1.1.3(vite@7.3.2) 1896 + xxhash-wasm: 1.1.0 1897 + yargs-parser: 22.0.0 1898 + zod: 4.3.6 1899 + optionalDependencies: 1900 + sharp: 0.34.5 1901 + transitivePeerDependencies: 1902 + - '@azure/app-configuration' 1903 + - '@azure/cosmos' 1904 + - '@azure/data-tables' 1905 + - '@azure/identity' 1906 + - '@azure/keyvault-secrets' 1907 + - '@azure/storage-blob' 1908 + - '@capacitor/preferences' 1909 + - '@deno/kv' 1910 + - '@netlify/blobs' 1911 + - '@planetscale/database' 1912 + - '@types/node' 1913 + - '@upstash/redis' 1914 + - '@vercel/blob' 1915 + - '@vercel/functions' 1916 + - '@vercel/kv' 1917 + - aws4fetch 1918 + - db0 1919 + - idb-keyval 1920 + - ioredis 1921 + - jiti 1922 + - less 1923 + - lightningcss 1924 + - rollup 1925 + - sass 1926 + - sass-embedded 1927 + - stylus 1928 + - sugarss 1929 + - supports-color 1930 + - terser 1931 + - tsx 1932 + - typescript 1933 + - uploadthing 1934 + - yaml 1935 + 1936 + axobject-query@4.1.0: {} 1937 + 1938 + bail@2.0.2: {} 1939 + 1940 + boolbase@1.0.0: {} 1941 + 1942 + ccount@2.0.1: {} 1943 + 1944 + character-entities-html4@2.1.0: {} 1945 + 1946 + character-entities-legacy@3.0.0: {} 1947 + 1948 + character-entities@2.0.2: {} 1949 + 1950 + chokidar@5.0.0: 1951 + dependencies: 1952 + readdirp: 5.0.0 1953 + 1954 + ci-info@4.4.0: {} 1955 + 1956 + clsx@2.1.1: {} 1957 + 1958 + comma-separated-tokens@2.0.3: {} 1959 + 1960 + commander@11.1.0: {} 1961 + 1962 + common-ancestor-path@2.0.0: {} 1963 + 1964 + cookie-es@1.2.3: {} 1965 + 1966 + cookie@1.1.1: {} 1967 + 1968 + crossws@0.3.5: 1969 + dependencies: 1970 + uncrypto: 0.1.3 1971 + 1972 + css-select@5.2.2: 1973 + dependencies: 1974 + boolbase: 1.0.0 1975 + css-what: 6.2.2 1976 + domhandler: 5.0.3 1977 + domutils: 3.2.2 1978 + nth-check: 2.1.1 1979 + 1980 + css-tree@2.2.1: 1981 + dependencies: 1982 + mdn-data: 2.0.28 1983 + source-map-js: 1.2.1 1984 + 1985 + css-tree@3.2.1: 1986 + dependencies: 1987 + mdn-data: 2.27.1 1988 + source-map-js: 1.2.1 1989 + 1990 + css-what@6.2.2: {} 1991 + 1992 + csso@5.0.5: 1993 + dependencies: 1994 + css-tree: 2.2.1 1995 + 1996 + debug@4.4.3: 1997 + dependencies: 1998 + ms: 2.1.3 1999 + 2000 + decode-named-character-reference@1.3.0: 2001 + dependencies: 2002 + character-entities: 2.0.2 2003 + 2004 + defu@6.1.7: {} 2005 + 2006 + dequal@2.0.3: {} 2007 + 2008 + destr@2.0.5: {} 2009 + 2010 + detect-libc@2.1.2: 2011 + optional: true 2012 + 2013 + devalue@5.7.1: {} 2014 + 2015 + devlop@1.1.0: 2016 + dependencies: 2017 + dequal: 2.0.3 2018 + 2019 + diff@8.0.4: {} 2020 + 2021 + dlv@1.1.3: {} 2022 + 2023 + dom-serializer@2.0.0: 2024 + dependencies: 2025 + domelementtype: 2.3.0 2026 + domhandler: 5.0.3 2027 + entities: 4.5.0 2028 + 2029 + domelementtype@2.3.0: {} 2030 + 2031 + domhandler@5.0.3: 2032 + dependencies: 2033 + domelementtype: 2.3.0 2034 + 2035 + domutils@3.2.2: 2036 + dependencies: 2037 + dom-serializer: 2.0.0 2038 + domelementtype: 2.3.0 2039 + domhandler: 5.0.3 2040 + 2041 + dset@3.1.4: {} 2042 + 2043 + entities@4.5.0: {} 2044 + 2045 + entities@6.0.1: {} 2046 + 2047 + es-module-lexer@2.0.0: {} 2048 + 2049 + esbuild@0.27.7: 2050 + optionalDependencies: 2051 + '@esbuild/aix-ppc64': 0.27.7 2052 + '@esbuild/android-arm': 0.27.7 2053 + '@esbuild/android-arm64': 0.27.7 2054 + '@esbuild/android-x64': 0.27.7 2055 + '@esbuild/darwin-arm64': 0.27.7 2056 + '@esbuild/darwin-x64': 0.27.7 2057 + '@esbuild/freebsd-arm64': 0.27.7 2058 + '@esbuild/freebsd-x64': 0.27.7 2059 + '@esbuild/linux-arm': 0.27.7 2060 + '@esbuild/linux-arm64': 0.27.7 2061 + '@esbuild/linux-ia32': 0.27.7 2062 + '@esbuild/linux-loong64': 0.27.7 2063 + '@esbuild/linux-mips64el': 0.27.7 2064 + '@esbuild/linux-ppc64': 0.27.7 2065 + '@esbuild/linux-riscv64': 0.27.7 2066 + '@esbuild/linux-s390x': 0.27.7 2067 + '@esbuild/linux-x64': 0.27.7 2068 + '@esbuild/netbsd-arm64': 0.27.7 2069 + '@esbuild/netbsd-x64': 0.27.7 2070 + '@esbuild/openbsd-arm64': 0.27.7 2071 + '@esbuild/openbsd-x64': 0.27.7 2072 + '@esbuild/openharmony-arm64': 0.27.7 2073 + '@esbuild/sunos-x64': 0.27.7 2074 + '@esbuild/win32-arm64': 0.27.7 2075 + '@esbuild/win32-ia32': 0.27.7 2076 + '@esbuild/win32-x64': 0.27.7 2077 + 2078 + escape-string-regexp@5.0.0: {} 2079 + 2080 + estree-walker@2.0.2: {} 2081 + 2082 + eventemitter3@5.0.4: {} 2083 + 2084 + extend@3.0.2: {} 2085 + 2086 + fast-string-truncated-width@1.2.1: {} 2087 + 2088 + fast-string-width@1.1.0: 2089 + dependencies: 2090 + fast-string-truncated-width: 1.2.1 2091 + 2092 + fast-wrap-ansi@0.1.6: 2093 + dependencies: 2094 + fast-string-width: 1.1.0 2095 + 2096 + fdir@6.5.0(picomatch@4.0.4): 2097 + optionalDependencies: 2098 + picomatch: 4.0.4 2099 + 2100 + flattie@1.1.1: {} 2101 + 2102 + fontace@0.4.1: 2103 + dependencies: 2104 + fontkitten: 1.0.3 2105 + 2106 + fontkitten@1.0.3: 2107 + dependencies: 2108 + tiny-inflate: 1.0.3 2109 + 2110 + fsevents@2.3.3: 2111 + optional: true 2112 + 2113 + github-slugger@2.0.0: {} 2114 + 2115 + h3@1.15.11: 2116 + dependencies: 2117 + cookie-es: 1.2.3 2118 + crossws: 0.3.5 2119 + defu: 6.1.7 2120 + destr: 2.0.5 2121 + iron-webcrypto: 1.2.1 2122 + node-mock-http: 1.0.4 2123 + radix3: 1.1.2 2124 + ufo: 1.6.3 2125 + uncrypto: 0.1.3 2126 + 2127 + hast-util-from-html@2.0.3: 2128 + dependencies: 2129 + '@types/hast': 3.0.4 2130 + devlop: 1.1.0 2131 + hast-util-from-parse5: 8.0.3 2132 + parse5: 7.3.0 2133 + vfile: 6.0.3 2134 + vfile-message: 4.0.3 2135 + 2136 + hast-util-from-parse5@8.0.3: 2137 + dependencies: 2138 + '@types/hast': 3.0.4 2139 + '@types/unist': 3.0.3 2140 + devlop: 1.1.0 2141 + hastscript: 9.0.1 2142 + property-information: 7.1.0 2143 + vfile: 6.0.3 2144 + vfile-location: 5.0.3 2145 + web-namespaces: 2.0.1 2146 + 2147 + hast-util-is-element@3.0.0: 2148 + dependencies: 2149 + '@types/hast': 3.0.4 2150 + 2151 + hast-util-parse-selector@4.0.0: 2152 + dependencies: 2153 + '@types/hast': 3.0.4 2154 + 2155 + hast-util-raw@9.1.0: 2156 + dependencies: 2157 + '@types/hast': 3.0.4 2158 + '@types/unist': 3.0.3 2159 + '@ungap/structured-clone': 1.3.0 2160 + hast-util-from-parse5: 8.0.3 2161 + hast-util-to-parse5: 8.0.1 2162 + html-void-elements: 3.0.0 2163 + mdast-util-to-hast: 13.2.1 2164 + parse5: 7.3.0 2165 + unist-util-position: 5.0.0 2166 + unist-util-visit: 5.1.0 2167 + vfile: 6.0.3 2168 + web-namespaces: 2.0.1 2169 + zwitch: 2.0.4 2170 + 2171 + hast-util-to-html@9.0.5: 2172 + dependencies: 2173 + '@types/hast': 3.0.4 2174 + '@types/unist': 3.0.3 2175 + ccount: 2.0.1 2176 + comma-separated-tokens: 2.0.3 2177 + hast-util-whitespace: 3.0.0 2178 + html-void-elements: 3.0.0 2179 + mdast-util-to-hast: 13.2.1 2180 + property-information: 7.1.0 2181 + space-separated-tokens: 2.0.2 2182 + stringify-entities: 4.0.4 2183 + zwitch: 2.0.4 2184 + 2185 + hast-util-to-parse5@8.0.1: 2186 + dependencies: 2187 + '@types/hast': 3.0.4 2188 + comma-separated-tokens: 2.0.3 2189 + devlop: 1.1.0 2190 + property-information: 7.1.0 2191 + space-separated-tokens: 2.0.2 2192 + web-namespaces: 2.0.1 2193 + zwitch: 2.0.4 2194 + 2195 + hast-util-to-text@4.0.2: 2196 + dependencies: 2197 + '@types/hast': 3.0.4 2198 + '@types/unist': 3.0.3 2199 + hast-util-is-element: 3.0.0 2200 + unist-util-find-after: 5.0.0 2201 + 2202 + hast-util-whitespace@3.0.0: 2203 + dependencies: 2204 + '@types/hast': 3.0.4 2205 + 2206 + hastscript@9.0.1: 2207 + dependencies: 2208 + '@types/hast': 3.0.4 2209 + comma-separated-tokens: 2.0.3 2210 + hast-util-parse-selector: 4.0.0 2211 + property-information: 7.1.0 2212 + space-separated-tokens: 2.0.2 2213 + 2214 + html-escaper@3.0.3: {} 2215 + 2216 + html-void-elements@3.0.0: {} 2217 + 2218 + http-cache-semantics@4.2.0: {} 2219 + 2220 + iron-webcrypto@1.2.1: {} 2221 + 2222 + is-docker@3.0.0: {} 2223 + 2224 + is-docker@4.0.0: {} 2225 + 2226 + is-inside-container@1.0.0: 2227 + dependencies: 2228 + is-docker: 3.0.0 2229 + 2230 + is-plain-obj@4.1.0: {} 2231 + 2232 + is-wsl@3.1.1: 2233 + dependencies: 2234 + is-inside-container: 1.0.0 2235 + 2236 + js-yaml@4.1.1: 2237 + dependencies: 2238 + argparse: 2.0.1 2239 + 2240 + longest-streak@3.1.0: {} 2241 + 2242 + lru-cache@11.3.5: {} 2243 + 2244 + magic-string@0.30.21: 2245 + dependencies: 2246 + '@jridgewell/sourcemap-codec': 1.5.5 2247 + 2248 + magicast@0.5.2: 2249 + dependencies: 2250 + '@babel/parser': 7.29.2 2251 + '@babel/types': 7.29.0 2252 + source-map-js: 1.2.1 2253 + 2254 + markdown-table@3.0.4: {} 2255 + 2256 + mdast-util-definitions@6.0.0: 2257 + dependencies: 2258 + '@types/mdast': 4.0.4 2259 + '@types/unist': 3.0.3 2260 + unist-util-visit: 5.1.0 2261 + 2262 + mdast-util-find-and-replace@3.0.2: 2263 + dependencies: 2264 + '@types/mdast': 4.0.4 2265 + escape-string-regexp: 5.0.0 2266 + unist-util-is: 6.0.1 2267 + unist-util-visit-parents: 6.0.2 2268 + 2269 + mdast-util-from-markdown@2.0.3: 2270 + dependencies: 2271 + '@types/mdast': 4.0.4 2272 + '@types/unist': 3.0.3 2273 + decode-named-character-reference: 1.3.0 2274 + devlop: 1.1.0 2275 + mdast-util-to-string: 4.0.0 2276 + micromark: 4.0.2 2277 + micromark-util-decode-numeric-character-reference: 2.0.2 2278 + micromark-util-decode-string: 2.0.1 2279 + micromark-util-normalize-identifier: 2.0.1 2280 + micromark-util-symbol: 2.0.1 2281 + micromark-util-types: 2.0.2 2282 + unist-util-stringify-position: 4.0.0 2283 + transitivePeerDependencies: 2284 + - supports-color 2285 + 2286 + mdast-util-gfm-autolink-literal@2.0.1: 2287 + dependencies: 2288 + '@types/mdast': 4.0.4 2289 + ccount: 2.0.1 2290 + devlop: 1.1.0 2291 + mdast-util-find-and-replace: 3.0.2 2292 + micromark-util-character: 2.1.1 2293 + 2294 + mdast-util-gfm-footnote@2.1.0: 2295 + dependencies: 2296 + '@types/mdast': 4.0.4 2297 + devlop: 1.1.0 2298 + mdast-util-from-markdown: 2.0.3 2299 + mdast-util-to-markdown: 2.1.2 2300 + micromark-util-normalize-identifier: 2.0.1 2301 + transitivePeerDependencies: 2302 + - supports-color 2303 + 2304 + mdast-util-gfm-strikethrough@2.0.0: 2305 + dependencies: 2306 + '@types/mdast': 4.0.4 2307 + mdast-util-from-markdown: 2.0.3 2308 + mdast-util-to-markdown: 2.1.2 2309 + transitivePeerDependencies: 2310 + - supports-color 2311 + 2312 + mdast-util-gfm-table@2.0.0: 2313 + dependencies: 2314 + '@types/mdast': 4.0.4 2315 + devlop: 1.1.0 2316 + markdown-table: 3.0.4 2317 + mdast-util-from-markdown: 2.0.3 2318 + mdast-util-to-markdown: 2.1.2 2319 + transitivePeerDependencies: 2320 + - supports-color 2321 + 2322 + mdast-util-gfm-task-list-item@2.0.0: 2323 + dependencies: 2324 + '@types/mdast': 4.0.4 2325 + devlop: 1.1.0 2326 + mdast-util-from-markdown: 2.0.3 2327 + mdast-util-to-markdown: 2.1.2 2328 + transitivePeerDependencies: 2329 + - supports-color 2330 + 2331 + mdast-util-gfm@3.1.0: 2332 + dependencies: 2333 + mdast-util-from-markdown: 2.0.3 2334 + mdast-util-gfm-autolink-literal: 2.0.1 2335 + mdast-util-gfm-footnote: 2.1.0 2336 + mdast-util-gfm-strikethrough: 2.0.0 2337 + mdast-util-gfm-table: 2.0.0 2338 + mdast-util-gfm-task-list-item: 2.0.0 2339 + mdast-util-to-markdown: 2.1.2 2340 + transitivePeerDependencies: 2341 + - supports-color 2342 + 2343 + mdast-util-phrasing@4.1.0: 2344 + dependencies: 2345 + '@types/mdast': 4.0.4 2346 + unist-util-is: 6.0.1 2347 + 2348 + mdast-util-to-hast@13.2.1: 2349 + dependencies: 2350 + '@types/hast': 3.0.4 2351 + '@types/mdast': 4.0.4 2352 + '@ungap/structured-clone': 1.3.0 2353 + devlop: 1.1.0 2354 + micromark-util-sanitize-uri: 2.0.1 2355 + trim-lines: 3.0.1 2356 + unist-util-position: 5.0.0 2357 + unist-util-visit: 5.1.0 2358 + vfile: 6.0.3 2359 + 2360 + mdast-util-to-markdown@2.1.2: 2361 + dependencies: 2362 + '@types/mdast': 4.0.4 2363 + '@types/unist': 3.0.3 2364 + longest-streak: 3.1.0 2365 + mdast-util-phrasing: 4.1.0 2366 + mdast-util-to-string: 4.0.0 2367 + micromark-util-classify-character: 2.0.1 2368 + micromark-util-decode-string: 2.0.1 2369 + unist-util-visit: 5.1.0 2370 + zwitch: 2.0.4 2371 + 2372 + mdast-util-to-string@4.0.0: 2373 + dependencies: 2374 + '@types/mdast': 4.0.4 2375 + 2376 + mdn-data@2.0.28: {} 2377 + 2378 + mdn-data@2.27.1: {} 2379 + 2380 + micromark-core-commonmark@2.0.3: 2381 + dependencies: 2382 + decode-named-character-reference: 1.3.0 2383 + devlop: 1.1.0 2384 + micromark-factory-destination: 2.0.1 2385 + micromark-factory-label: 2.0.1 2386 + micromark-factory-space: 2.0.1 2387 + micromark-factory-title: 2.0.1 2388 + micromark-factory-whitespace: 2.0.1 2389 + micromark-util-character: 2.1.1 2390 + micromark-util-chunked: 2.0.1 2391 + micromark-util-classify-character: 2.0.1 2392 + micromark-util-html-tag-name: 2.0.1 2393 + micromark-util-normalize-identifier: 2.0.1 2394 + micromark-util-resolve-all: 2.0.1 2395 + micromark-util-subtokenize: 2.1.0 2396 + micromark-util-symbol: 2.0.1 2397 + micromark-util-types: 2.0.2 2398 + 2399 + micromark-extension-gfm-autolink-literal@2.1.0: 2400 + dependencies: 2401 + micromark-util-character: 2.1.1 2402 + micromark-util-sanitize-uri: 2.0.1 2403 + micromark-util-symbol: 2.0.1 2404 + micromark-util-types: 2.0.2 2405 + 2406 + micromark-extension-gfm-footnote@2.1.0: 2407 + dependencies: 2408 + devlop: 1.1.0 2409 + micromark-core-commonmark: 2.0.3 2410 + micromark-factory-space: 2.0.1 2411 + micromark-util-character: 2.1.1 2412 + micromark-util-normalize-identifier: 2.0.1 2413 + micromark-util-sanitize-uri: 2.0.1 2414 + micromark-util-symbol: 2.0.1 2415 + micromark-util-types: 2.0.2 2416 + 2417 + micromark-extension-gfm-strikethrough@2.1.0: 2418 + dependencies: 2419 + devlop: 1.1.0 2420 + micromark-util-chunked: 2.0.1 2421 + micromark-util-classify-character: 2.0.1 2422 + micromark-util-resolve-all: 2.0.1 2423 + micromark-util-symbol: 2.0.1 2424 + micromark-util-types: 2.0.2 2425 + 2426 + micromark-extension-gfm-table@2.1.1: 2427 + dependencies: 2428 + devlop: 1.1.0 2429 + micromark-factory-space: 2.0.1 2430 + micromark-util-character: 2.1.1 2431 + micromark-util-symbol: 2.0.1 2432 + micromark-util-types: 2.0.2 2433 + 2434 + micromark-extension-gfm-tagfilter@2.0.0: 2435 + dependencies: 2436 + micromark-util-types: 2.0.2 2437 + 2438 + micromark-extension-gfm-task-list-item@2.1.0: 2439 + dependencies: 2440 + devlop: 1.1.0 2441 + micromark-factory-space: 2.0.1 2442 + micromark-util-character: 2.1.1 2443 + micromark-util-symbol: 2.0.1 2444 + micromark-util-types: 2.0.2 2445 + 2446 + micromark-extension-gfm@3.0.0: 2447 + dependencies: 2448 + micromark-extension-gfm-autolink-literal: 2.1.0 2449 + micromark-extension-gfm-footnote: 2.1.0 2450 + micromark-extension-gfm-strikethrough: 2.1.0 2451 + micromark-extension-gfm-table: 2.1.1 2452 + micromark-extension-gfm-tagfilter: 2.0.0 2453 + micromark-extension-gfm-task-list-item: 2.1.0 2454 + micromark-util-combine-extensions: 2.0.1 2455 + micromark-util-types: 2.0.2 2456 + 2457 + micromark-factory-destination@2.0.1: 2458 + dependencies: 2459 + micromark-util-character: 2.1.1 2460 + micromark-util-symbol: 2.0.1 2461 + micromark-util-types: 2.0.2 2462 + 2463 + micromark-factory-label@2.0.1: 2464 + dependencies: 2465 + devlop: 1.1.0 2466 + micromark-util-character: 2.1.1 2467 + micromark-util-symbol: 2.0.1 2468 + micromark-util-types: 2.0.2 2469 + 2470 + micromark-factory-space@2.0.1: 2471 + dependencies: 2472 + micromark-util-character: 2.1.1 2473 + micromark-util-types: 2.0.2 2474 + 2475 + micromark-factory-title@2.0.1: 2476 + dependencies: 2477 + micromark-factory-space: 2.0.1 2478 + micromark-util-character: 2.1.1 2479 + micromark-util-symbol: 2.0.1 2480 + micromark-util-types: 2.0.2 2481 + 2482 + micromark-factory-whitespace@2.0.1: 2483 + dependencies: 2484 + micromark-factory-space: 2.0.1 2485 + micromark-util-character: 2.1.1 2486 + micromark-util-symbol: 2.0.1 2487 + micromark-util-types: 2.0.2 2488 + 2489 + micromark-util-character@2.1.1: 2490 + dependencies: 2491 + micromark-util-symbol: 2.0.1 2492 + micromark-util-types: 2.0.2 2493 + 2494 + micromark-util-chunked@2.0.1: 2495 + dependencies: 2496 + micromark-util-symbol: 2.0.1 2497 + 2498 + micromark-util-classify-character@2.0.1: 2499 + dependencies: 2500 + micromark-util-character: 2.1.1 2501 + micromark-util-symbol: 2.0.1 2502 + micromark-util-types: 2.0.2 2503 + 2504 + micromark-util-combine-extensions@2.0.1: 2505 + dependencies: 2506 + micromark-util-chunked: 2.0.1 2507 + micromark-util-types: 2.0.2 2508 + 2509 + micromark-util-decode-numeric-character-reference@2.0.2: 2510 + dependencies: 2511 + micromark-util-symbol: 2.0.1 2512 + 2513 + micromark-util-decode-string@2.0.1: 2514 + dependencies: 2515 + decode-named-character-reference: 1.3.0 2516 + micromark-util-character: 2.1.1 2517 + micromark-util-decode-numeric-character-reference: 2.0.2 2518 + micromark-util-symbol: 2.0.1 2519 + 2520 + micromark-util-encode@2.0.1: {} 2521 + 2522 + micromark-util-html-tag-name@2.0.1: {} 2523 + 2524 + micromark-util-normalize-identifier@2.0.1: 2525 + dependencies: 2526 + micromark-util-symbol: 2.0.1 2527 + 2528 + micromark-util-resolve-all@2.0.1: 2529 + dependencies: 2530 + micromark-util-types: 2.0.2 2531 + 2532 + micromark-util-sanitize-uri@2.0.1: 2533 + dependencies: 2534 + micromark-util-character: 2.1.1 2535 + micromark-util-encode: 2.0.1 2536 + micromark-util-symbol: 2.0.1 2537 + 2538 + micromark-util-subtokenize@2.1.0: 2539 + dependencies: 2540 + devlop: 1.1.0 2541 + micromark-util-chunked: 2.0.1 2542 + micromark-util-symbol: 2.0.1 2543 + micromark-util-types: 2.0.2 2544 + 2545 + micromark-util-symbol@2.0.1: {} 2546 + 2547 + micromark-util-types@2.0.2: {} 2548 + 2549 + micromark@4.0.2: 2550 + dependencies: 2551 + '@types/debug': 4.1.13 2552 + debug: 4.4.3 2553 + decode-named-character-reference: 1.3.0 2554 + devlop: 1.1.0 2555 + micromark-core-commonmark: 2.0.3 2556 + micromark-factory-space: 2.0.1 2557 + micromark-util-character: 2.1.1 2558 + micromark-util-chunked: 2.0.1 2559 + micromark-util-combine-extensions: 2.0.1 2560 + micromark-util-decode-numeric-character-reference: 2.0.2 2561 + micromark-util-encode: 2.0.1 2562 + micromark-util-normalize-identifier: 2.0.1 2563 + micromark-util-resolve-all: 2.0.1 2564 + micromark-util-sanitize-uri: 2.0.1 2565 + micromark-util-subtokenize: 2.1.0 2566 + micromark-util-symbol: 2.0.1 2567 + micromark-util-types: 2.0.2 2568 + transitivePeerDependencies: 2569 + - supports-color 2570 + 2571 + mrmime@2.0.1: {} 2572 + 2573 + ms@2.1.3: {} 2574 + 2575 + nanoid@3.3.11: {} 2576 + 2577 + neotraverse@0.6.18: {} 2578 + 2579 + nlcst-to-string@4.0.0: 2580 + dependencies: 2581 + '@types/nlcst': 2.0.3 2582 + 2583 + node-fetch-native@1.6.7: {} 2584 + 2585 + node-mock-http@1.0.4: {} 2586 + 2587 + normalize-path@3.0.0: {} 2588 + 2589 + nth-check@2.1.1: 2590 + dependencies: 2591 + boolbase: 1.0.0 2592 + 2593 + obug@2.1.1: {} 2594 + 2595 + ofetch@1.5.1: 2596 + dependencies: 2597 + destr: 2.0.5 2598 + node-fetch-native: 1.6.7 2599 + ufo: 1.6.3 2600 + 2601 + ohash@2.0.11: {} 2602 + 2603 + oniguruma-parser@0.12.1: {} 2604 + 2605 + oniguruma-to-es@4.3.5: 2606 + dependencies: 2607 + oniguruma-parser: 0.12.1 2608 + regex: 6.1.0 2609 + regex-recursion: 6.0.2 2610 + 2611 + p-limit@7.3.0: 2612 + dependencies: 2613 + yocto-queue: 1.2.2 2614 + 2615 + p-queue@9.1.2: 2616 + dependencies: 2617 + eventemitter3: 5.0.4 2618 + p-timeout: 7.0.1 2619 + 2620 + p-timeout@7.0.1: {} 2621 + 2622 + package-manager-detector@1.6.0: {} 2623 + 2624 + parse-latin@7.0.0: 2625 + dependencies: 2626 + '@types/nlcst': 2.0.3 2627 + '@types/unist': 3.0.3 2628 + nlcst-to-string: 4.0.0 2629 + unist-util-modify-children: 4.0.0 2630 + unist-util-visit-children: 3.0.0 2631 + vfile: 6.0.3 2632 + 2633 + parse5@7.3.0: 2634 + dependencies: 2635 + entities: 6.0.1 2636 + 2637 + piccolore@0.1.3: {} 2638 + 2639 + picocolors@1.1.1: {} 2640 + 2641 + picomatch@2.3.2: {} 2642 + 2643 + picomatch@4.0.4: {} 2644 + 2645 + postcss@8.5.10: 2646 + dependencies: 2647 + nanoid: 3.3.11 2648 + picocolors: 1.1.1 2649 + source-map-js: 1.2.1 2650 + 2651 + prismjs@1.30.0: {} 2652 + 2653 + property-information@7.1.0: {} 2654 + 2655 + radix3@1.1.2: {} 2656 + 2657 + readdirp@5.0.0: {} 2658 + 2659 + regex-recursion@6.0.2: 2660 + dependencies: 2661 + regex-utilities: 2.3.0 2662 + 2663 + regex-utilities@2.3.0: {} 2664 + 2665 + regex@6.1.0: 2666 + dependencies: 2667 + regex-utilities: 2.3.0 2668 + 2669 + rehype-parse@9.0.1: 2670 + dependencies: 2671 + '@types/hast': 3.0.4 2672 + hast-util-from-html: 2.0.3 2673 + unified: 11.0.5 2674 + 2675 + rehype-raw@7.0.0: 2676 + dependencies: 2677 + '@types/hast': 3.0.4 2678 + hast-util-raw: 9.1.0 2679 + vfile: 6.0.3 2680 + 2681 + rehype-stringify@10.0.1: 2682 + dependencies: 2683 + '@types/hast': 3.0.4 2684 + hast-util-to-html: 9.0.5 2685 + unified: 11.0.5 2686 + 2687 + rehype@13.0.2: 2688 + dependencies: 2689 + '@types/hast': 3.0.4 2690 + rehype-parse: 9.0.1 2691 + rehype-stringify: 10.0.1 2692 + unified: 11.0.5 2693 + 2694 + remark-gfm@4.0.1: 2695 + dependencies: 2696 + '@types/mdast': 4.0.4 2697 + mdast-util-gfm: 3.1.0 2698 + micromark-extension-gfm: 3.0.0 2699 + remark-parse: 11.0.0 2700 + remark-stringify: 11.0.0 2701 + unified: 11.0.5 2702 + transitivePeerDependencies: 2703 + - supports-color 2704 + 2705 + remark-parse@11.0.0: 2706 + dependencies: 2707 + '@types/mdast': 4.0.4 2708 + mdast-util-from-markdown: 2.0.3 2709 + micromark-util-types: 2.0.2 2710 + unified: 11.0.5 2711 + transitivePeerDependencies: 2712 + - supports-color 2713 + 2714 + remark-rehype@11.1.2: 2715 + dependencies: 2716 + '@types/hast': 3.0.4 2717 + '@types/mdast': 4.0.4 2718 + mdast-util-to-hast: 13.2.1 2719 + unified: 11.0.5 2720 + vfile: 6.0.3 2721 + 2722 + remark-smartypants@3.0.2: 2723 + dependencies: 2724 + retext: 9.0.0 2725 + retext-smartypants: 6.2.0 2726 + unified: 11.0.5 2727 + unist-util-visit: 5.1.0 2728 + 2729 + remark-stringify@11.0.0: 2730 + dependencies: 2731 + '@types/mdast': 4.0.4 2732 + mdast-util-to-markdown: 2.1.2 2733 + unified: 11.0.5 2734 + 2735 + retext-latin@4.0.0: 2736 + dependencies: 2737 + '@types/nlcst': 2.0.3 2738 + parse-latin: 7.0.0 2739 + unified: 11.0.5 2740 + 2741 + retext-smartypants@6.2.0: 2742 + dependencies: 2743 + '@types/nlcst': 2.0.3 2744 + nlcst-to-string: 4.0.0 2745 + unist-util-visit: 5.1.0 2746 + 2747 + retext-stringify@4.0.0: 2748 + dependencies: 2749 + '@types/nlcst': 2.0.3 2750 + nlcst-to-string: 4.0.0 2751 + unified: 11.0.5 2752 + 2753 + retext@9.0.0: 2754 + dependencies: 2755 + '@types/nlcst': 2.0.3 2756 + retext-latin: 4.0.0 2757 + retext-stringify: 4.0.0 2758 + unified: 11.0.5 2759 + 2760 + rollup@4.60.2: 2761 + dependencies: 2762 + '@types/estree': 1.0.8 2763 + optionalDependencies: 2764 + '@rollup/rollup-android-arm-eabi': 4.60.2 2765 + '@rollup/rollup-android-arm64': 4.60.2 2766 + '@rollup/rollup-darwin-arm64': 4.60.2 2767 + '@rollup/rollup-darwin-x64': 4.60.2 2768 + '@rollup/rollup-freebsd-arm64': 4.60.2 2769 + '@rollup/rollup-freebsd-x64': 4.60.2 2770 + '@rollup/rollup-linux-arm-gnueabihf': 4.60.2 2771 + '@rollup/rollup-linux-arm-musleabihf': 4.60.2 2772 + '@rollup/rollup-linux-arm64-gnu': 4.60.2 2773 + '@rollup/rollup-linux-arm64-musl': 4.60.2 2774 + '@rollup/rollup-linux-loong64-gnu': 4.60.2 2775 + '@rollup/rollup-linux-loong64-musl': 4.60.2 2776 + '@rollup/rollup-linux-ppc64-gnu': 4.60.2 2777 + '@rollup/rollup-linux-ppc64-musl': 4.60.2 2778 + '@rollup/rollup-linux-riscv64-gnu': 4.60.2 2779 + '@rollup/rollup-linux-riscv64-musl': 4.60.2 2780 + '@rollup/rollup-linux-s390x-gnu': 4.60.2 2781 + '@rollup/rollup-linux-x64-gnu': 4.60.2 2782 + '@rollup/rollup-linux-x64-musl': 4.60.2 2783 + '@rollup/rollup-openbsd-x64': 4.60.2 2784 + '@rollup/rollup-openharmony-arm64': 4.60.2 2785 + '@rollup/rollup-win32-arm64-msvc': 4.60.2 2786 + '@rollup/rollup-win32-ia32-msvc': 4.60.2 2787 + '@rollup/rollup-win32-x64-gnu': 4.60.2 2788 + '@rollup/rollup-win32-x64-msvc': 4.60.2 2789 + fsevents: 2.3.3 2790 + 2791 + sax@1.6.0: {} 2792 + 2793 + semver@7.7.4: {} 2794 + 2795 + sharp@0.34.5: 2796 + dependencies: 2797 + '@img/colour': 1.1.0 2798 + detect-libc: 2.1.2 2799 + semver: 7.7.4 2800 + optionalDependencies: 2801 + '@img/sharp-darwin-arm64': 0.34.5 2802 + '@img/sharp-darwin-x64': 0.34.5 2803 + '@img/sharp-libvips-darwin-arm64': 1.2.4 2804 + '@img/sharp-libvips-darwin-x64': 1.2.4 2805 + '@img/sharp-libvips-linux-arm': 1.2.4 2806 + '@img/sharp-libvips-linux-arm64': 1.2.4 2807 + '@img/sharp-libvips-linux-ppc64': 1.2.4 2808 + '@img/sharp-libvips-linux-riscv64': 1.2.4 2809 + '@img/sharp-libvips-linux-s390x': 1.2.4 2810 + '@img/sharp-libvips-linux-x64': 1.2.4 2811 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 2812 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 2813 + '@img/sharp-linux-arm': 0.34.5 2814 + '@img/sharp-linux-arm64': 0.34.5 2815 + '@img/sharp-linux-ppc64': 0.34.5 2816 + '@img/sharp-linux-riscv64': 0.34.5 2817 + '@img/sharp-linux-s390x': 0.34.5 2818 + '@img/sharp-linux-x64': 0.34.5 2819 + '@img/sharp-linuxmusl-arm64': 0.34.5 2820 + '@img/sharp-linuxmusl-x64': 0.34.5 2821 + '@img/sharp-wasm32': 0.34.5 2822 + '@img/sharp-win32-arm64': 0.34.5 2823 + '@img/sharp-win32-ia32': 0.34.5 2824 + '@img/sharp-win32-x64': 0.34.5 2825 + optional: true 2826 + 2827 + shiki@4.0.2: 2828 + dependencies: 2829 + '@shikijs/core': 4.0.2 2830 + '@shikijs/engine-javascript': 4.0.2 2831 + '@shikijs/engine-oniguruma': 4.0.2 2832 + '@shikijs/langs': 4.0.2 2833 + '@shikijs/themes': 4.0.2 2834 + '@shikijs/types': 4.0.2 2835 + '@shikijs/vscode-textmate': 10.0.2 2836 + '@types/hast': 3.0.4 2837 + 2838 + sisteransi@1.0.5: {} 2839 + 2840 + smol-toml@1.6.1: {} 2841 + 2842 + source-map-js@1.2.1: {} 2843 + 2844 + space-separated-tokens@2.0.2: {} 2845 + 2846 + stringify-entities@4.0.4: 2847 + dependencies: 2848 + character-entities-html4: 2.1.0 2849 + character-entities-legacy: 3.0.0 2850 + 2851 + svgo@4.0.1: 2852 + dependencies: 2853 + commander: 11.1.0 2854 + css-select: 5.2.2 2855 + css-tree: 3.2.1 2856 + css-what: 6.2.2 2857 + csso: 5.0.5 2858 + picocolors: 1.1.1 2859 + sax: 1.6.0 2860 + 2861 + tiny-inflate@1.0.3: {} 2862 + 2863 + tinyclip@0.1.12: {} 2864 + 2865 + tinyexec@1.1.1: {} 2866 + 2867 + tinyglobby@0.2.16: 2868 + dependencies: 2869 + fdir: 6.5.0(picomatch@4.0.4) 2870 + picomatch: 4.0.4 2871 + 2872 + trim-lines@3.0.1: {} 2873 + 2874 + trough@2.2.0: {} 2875 + 2876 + tsconfck@3.1.6: {} 2877 + 2878 + tslib@2.8.1: 2879 + optional: true 2880 + 2881 + ufo@1.6.3: {} 2882 + 2883 + ultrahtml@1.6.0: {} 2884 + 2885 + uncrypto@0.1.3: {} 2886 + 2887 + unified@11.0.5: 2888 + dependencies: 2889 + '@types/unist': 3.0.3 2890 + bail: 2.0.2 2891 + devlop: 1.1.0 2892 + extend: 3.0.2 2893 + is-plain-obj: 4.1.0 2894 + trough: 2.2.0 2895 + vfile: 6.0.3 2896 + 2897 + unifont@0.7.4: 2898 + dependencies: 2899 + css-tree: 3.2.1 2900 + ofetch: 1.5.1 2901 + ohash: 2.0.11 2902 + 2903 + unist-util-find-after@5.0.0: 2904 + dependencies: 2905 + '@types/unist': 3.0.3 2906 + unist-util-is: 6.0.1 2907 + 2908 + unist-util-is@6.0.1: 2909 + dependencies: 2910 + '@types/unist': 3.0.3 2911 + 2912 + unist-util-modify-children@4.0.0: 2913 + dependencies: 2914 + '@types/unist': 3.0.3 2915 + array-iterate: 2.0.1 2916 + 2917 + unist-util-position@5.0.0: 2918 + dependencies: 2919 + '@types/unist': 3.0.3 2920 + 2921 + unist-util-remove-position@5.0.0: 2922 + dependencies: 2923 + '@types/unist': 3.0.3 2924 + unist-util-visit: 5.1.0 2925 + 2926 + unist-util-stringify-position@4.0.0: 2927 + dependencies: 2928 + '@types/unist': 3.0.3 2929 + 2930 + unist-util-visit-children@3.0.0: 2931 + dependencies: 2932 + '@types/unist': 3.0.3 2933 + 2934 + unist-util-visit-parents@6.0.2: 2935 + dependencies: 2936 + '@types/unist': 3.0.3 2937 + unist-util-is: 6.0.1 2938 + 2939 + unist-util-visit@5.1.0: 2940 + dependencies: 2941 + '@types/unist': 3.0.3 2942 + unist-util-is: 6.0.1 2943 + unist-util-visit-parents: 6.0.2 2944 + 2945 + unstorage@1.17.5: 2946 + dependencies: 2947 + anymatch: 3.1.3 2948 + chokidar: 5.0.0 2949 + destr: 2.0.5 2950 + h3: 1.15.11 2951 + lru-cache: 11.3.5 2952 + node-fetch-native: 1.6.7 2953 + ofetch: 1.5.1 2954 + ufo: 1.6.3 2955 + 2956 + vfile-location@5.0.3: 2957 + dependencies: 2958 + '@types/unist': 3.0.3 2959 + vfile: 6.0.3 2960 + 2961 + vfile-message@4.0.3: 2962 + dependencies: 2963 + '@types/unist': 3.0.3 2964 + unist-util-stringify-position: 4.0.0 2965 + 2966 + vfile@6.0.3: 2967 + dependencies: 2968 + '@types/unist': 3.0.3 2969 + vfile-message: 4.0.3 2970 + 2971 + vite@7.3.2: 2972 + dependencies: 2973 + esbuild: 0.27.7 2974 + fdir: 6.5.0(picomatch@4.0.4) 2975 + picomatch: 4.0.4 2976 + postcss: 8.5.10 2977 + rollup: 4.60.2 2978 + tinyglobby: 0.2.16 2979 + optionalDependencies: 2980 + fsevents: 2.3.3 2981 + 2982 + vitefu@1.1.3(vite@7.3.2): 2983 + optionalDependencies: 2984 + vite: 7.3.2 2985 + 2986 + web-namespaces@2.0.1: {} 2987 + 2988 + which-pm-runs@1.1.0: {} 2989 + 2990 + xxhash-wasm@1.1.0: {} 2991 + 2992 + yargs-parser@22.0.0: {} 2993 + 2994 + yocto-queue@1.2.2: {} 2995 + 2996 + zod@4.3.6: {} 2997 + 2998 + zwitch@2.0.4: {}
public/favicon.ico

This is a binary file and will not be displayed.

+9
public/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"> 2 + <path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" /> 3 + <style> 4 + path { fill: #000; } 5 + @media (prefers-color-scheme: dark) { 6 + path { fill: #FFF; } 7 + } 8 + </style> 9 + </svg>
+17
src/pages/index.astro
··· 1 + --- 2 + 3 + --- 4 + 5 + <html lang="en"> 6 + <head> 7 + <meta charset="utf-8" /> 8 + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 9 + <link rel="icon" href="/favicon.ico" /> 10 + <meta name="viewport" content="width=device-width" /> 11 + <meta name="generator" content={Astro.generator} /> 12 + <title>Astro</title> 13 + </head> 14 + <body> 15 + <h1>Astro</h1> 16 + </body> 17 + </html>
+5
tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strict", 3 + "include": [".astro/types.d.ts", "**/*"], 4 + "exclude": ["dist"] 5 + }