version 2 of my website
0
fork

Configure Feed

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

Initial commit from Astro

authored by

houston[bot] and committed by
Dustin Thurston
58fbc064

+4955
+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 + }
+47
README.md
··· 1 + # Astro Starter Kit: Minimal 2 + 3 + ```sh 4 + npm create astro@latest -- --template minimal 5 + ``` 6 + 7 + [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal) 8 + [![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal) 9 + [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json) 10 + 11 + > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 12 + 13 + ## 🚀 Project Structure 14 + 15 + Inside of your Astro project, you'll see the following folders and files: 16 + 17 + ```text 18 + / 19 + ├── public/ 20 + ├── src/ 21 + │ └── pages/ 22 + │ └── index.astro 23 + └── package.json 24 + ``` 25 + 26 + Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. 27 + 28 + There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. 29 + 30 + Any static assets, like images, can be placed in the `public/` directory. 31 + 32 + ## 🧞 Commands 33 + 34 + All commands are run from the root of the project, from a terminal: 35 + 36 + | Command | Action | 37 + | :------------------------ | :----------------------------------------------- | 38 + | `npm install` | Installs dependencies | 39 + | `npm run dev` | Starts local dev server at `localhost:4321` | 40 + | `npm run build` | Build your production site to `./dist/` | 41 + | `npm run preview` | Preview your build locally, before deploying | 42 + | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | 43 + | `npm run astro -- --help` | Get help using the Astro CLI | 44 + 45 + ## 👀 Want to learn more? 46 + 47 + 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({});
+4820
package-lock.json
··· 1 + { 2 + "name": "dustycode-web-v2", 3 + "version": "0.0.1", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "dustycode-web-v2", 9 + "version": "0.0.1", 10 + "dependencies": { 11 + "astro": "^5.7.10" 12 + } 13 + }, 14 + "node_modules/@astrojs/compiler": { 15 + "version": "2.12.0", 16 + "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.12.0.tgz", 17 + "integrity": "sha512-7bCjW6tVDpUurQLeKBUN9tZ5kSv5qYrGmcn0sG0IwacL7isR2ZbyyA3AdZ4uxsuUFOS2SlgReTH7wkxO6zpqWA==", 18 + "license": "MIT" 19 + }, 20 + "node_modules/@astrojs/internal-helpers": { 21 + "version": "0.6.1", 22 + "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.6.1.tgz", 23 + "integrity": "sha512-l5Pqf6uZu31aG+3Lv8nl/3s4DbUzdlxTWDof4pEpto6GUJNhhCbelVi9dEyurOVyqaelwmS9oSyOWOENSfgo9A==", 24 + "license": "MIT" 25 + }, 26 + "node_modules/@astrojs/markdown-remark": { 27 + "version": "6.3.1", 28 + "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.1.tgz", 29 + "integrity": "sha512-c5F5gGrkczUaTVgmMW9g1YMJGzOtRvjjhw6IfGuxarM6ct09MpwysP10US729dy07gg8y+ofVifezvP3BNsWZg==", 30 + "license": "MIT", 31 + "dependencies": { 32 + "@astrojs/internal-helpers": "0.6.1", 33 + "@astrojs/prism": "3.2.0", 34 + "github-slugger": "^2.0.0", 35 + "hast-util-from-html": "^2.0.3", 36 + "hast-util-to-text": "^4.0.2", 37 + "import-meta-resolve": "^4.1.0", 38 + "js-yaml": "^4.1.0", 39 + "mdast-util-definitions": "^6.0.0", 40 + "rehype-raw": "^7.0.0", 41 + "rehype-stringify": "^10.0.1", 42 + "remark-gfm": "^4.0.1", 43 + "remark-parse": "^11.0.0", 44 + "remark-rehype": "^11.1.1", 45 + "remark-smartypants": "^3.0.2", 46 + "shiki": "^3.0.0", 47 + "smol-toml": "^1.3.1", 48 + "unified": "^11.0.5", 49 + "unist-util-remove-position": "^5.0.0", 50 + "unist-util-visit": "^5.0.0", 51 + "unist-util-visit-parents": "^6.0.1", 52 + "vfile": "^6.0.3" 53 + } 54 + }, 55 + "node_modules/@astrojs/prism": { 56 + "version": "3.2.0", 57 + "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz", 58 + "integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==", 59 + "license": "MIT", 60 + "dependencies": { 61 + "prismjs": "^1.29.0" 62 + }, 63 + "engines": { 64 + "node": "^18.17.1 || ^20.3.0 || >=22.0.0" 65 + } 66 + }, 67 + "node_modules/@astrojs/telemetry": { 68 + "version": "3.2.1", 69 + "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.1.tgz", 70 + "integrity": "sha512-SSVM820Jqc6wjsn7qYfV9qfeQvePtVc1nSofhyap7l0/iakUKywj3hfy3UJAOV4sGV4Q/u450RD4AaCaFvNPlg==", 71 + "license": "MIT", 72 + "dependencies": { 73 + "ci-info": "^4.2.0", 74 + "debug": "^4.4.0", 75 + "dlv": "^1.1.3", 76 + "dset": "^3.1.4", 77 + "is-docker": "^3.0.0", 78 + "is-wsl": "^3.1.0", 79 + "which-pm-runs": "^1.1.0" 80 + }, 81 + "engines": { 82 + "node": "^18.17.1 || ^20.3.0 || >=22.0.0" 83 + } 84 + }, 85 + "node_modules/@babel/helper-string-parser": { 86 + "version": "7.27.1", 87 + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 88 + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 89 + "license": "MIT", 90 + "engines": { 91 + "node": ">=6.9.0" 92 + } 93 + }, 94 + "node_modules/@babel/helper-validator-identifier": { 95 + "version": "7.27.1", 96 + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", 97 + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", 98 + "license": "MIT", 99 + "engines": { 100 + "node": ">=6.9.0" 101 + } 102 + }, 103 + "node_modules/@babel/parser": { 104 + "version": "7.27.1", 105 + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.1.tgz", 106 + "integrity": "sha512-I0dZ3ZpCrJ1c04OqlNsQcKiZlsrXf/kkE4FXzID9rIOYICsAbA8mMDzhW/luRNAHdCNt7os/u8wenklZDlUVUQ==", 107 + "license": "MIT", 108 + "dependencies": { 109 + "@babel/types": "^7.27.1" 110 + }, 111 + "bin": { 112 + "parser": "bin/babel-parser.js" 113 + }, 114 + "engines": { 115 + "node": ">=6.0.0" 116 + } 117 + }, 118 + "node_modules/@babel/types": { 119 + "version": "7.27.1", 120 + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz", 121 + "integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==", 122 + "license": "MIT", 123 + "dependencies": { 124 + "@babel/helper-string-parser": "^7.27.1", 125 + "@babel/helper-validator-identifier": "^7.27.1" 126 + }, 127 + "engines": { 128 + "node": ">=6.9.0" 129 + } 130 + }, 131 + "node_modules/@capsizecss/unpack": { 132 + "version": "2.4.0", 133 + "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-2.4.0.tgz", 134 + "integrity": "sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==", 135 + "license": "MIT", 136 + "dependencies": { 137 + "blob-to-buffer": "^1.2.8", 138 + "cross-fetch": "^3.0.4", 139 + "fontkit": "^2.0.2" 140 + } 141 + }, 142 + "node_modules/@emnapi/runtime": { 143 + "version": "1.4.3", 144 + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz", 145 + "integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==", 146 + "license": "MIT", 147 + "optional": true, 148 + "dependencies": { 149 + "tslib": "^2.4.0" 150 + } 151 + }, 152 + "node_modules/@esbuild/aix-ppc64": { 153 + "version": "0.25.3", 154 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.3.tgz", 155 + "integrity": "sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==", 156 + "cpu": [ 157 + "ppc64" 158 + ], 159 + "license": "MIT", 160 + "optional": true, 161 + "os": [ 162 + "aix" 163 + ], 164 + "engines": { 165 + "node": ">=18" 166 + } 167 + }, 168 + "node_modules/@esbuild/android-arm": { 169 + "version": "0.25.3", 170 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.3.tgz", 171 + "integrity": "sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==", 172 + "cpu": [ 173 + "arm" 174 + ], 175 + "license": "MIT", 176 + "optional": true, 177 + "os": [ 178 + "android" 179 + ], 180 + "engines": { 181 + "node": ">=18" 182 + } 183 + }, 184 + "node_modules/@esbuild/android-arm64": { 185 + "version": "0.25.3", 186 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.3.tgz", 187 + "integrity": "sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==", 188 + "cpu": [ 189 + "arm64" 190 + ], 191 + "license": "MIT", 192 + "optional": true, 193 + "os": [ 194 + "android" 195 + ], 196 + "engines": { 197 + "node": ">=18" 198 + } 199 + }, 200 + "node_modules/@esbuild/android-x64": { 201 + "version": "0.25.3", 202 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.3.tgz", 203 + "integrity": "sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==", 204 + "cpu": [ 205 + "x64" 206 + ], 207 + "license": "MIT", 208 + "optional": true, 209 + "os": [ 210 + "android" 211 + ], 212 + "engines": { 213 + "node": ">=18" 214 + } 215 + }, 216 + "node_modules/@esbuild/darwin-arm64": { 217 + "version": "0.25.3", 218 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.3.tgz", 219 + "integrity": "sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==", 220 + "cpu": [ 221 + "arm64" 222 + ], 223 + "license": "MIT", 224 + "optional": true, 225 + "os": [ 226 + "darwin" 227 + ], 228 + "engines": { 229 + "node": ">=18" 230 + } 231 + }, 232 + "node_modules/@esbuild/darwin-x64": { 233 + "version": "0.25.3", 234 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.3.tgz", 235 + "integrity": "sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==", 236 + "cpu": [ 237 + "x64" 238 + ], 239 + "license": "MIT", 240 + "optional": true, 241 + "os": [ 242 + "darwin" 243 + ], 244 + "engines": { 245 + "node": ">=18" 246 + } 247 + }, 248 + "node_modules/@esbuild/freebsd-arm64": { 249 + "version": "0.25.3", 250 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.3.tgz", 251 + "integrity": "sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==", 252 + "cpu": [ 253 + "arm64" 254 + ], 255 + "license": "MIT", 256 + "optional": true, 257 + "os": [ 258 + "freebsd" 259 + ], 260 + "engines": { 261 + "node": ">=18" 262 + } 263 + }, 264 + "node_modules/@esbuild/freebsd-x64": { 265 + "version": "0.25.3", 266 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.3.tgz", 267 + "integrity": "sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==", 268 + "cpu": [ 269 + "x64" 270 + ], 271 + "license": "MIT", 272 + "optional": true, 273 + "os": [ 274 + "freebsd" 275 + ], 276 + "engines": { 277 + "node": ">=18" 278 + } 279 + }, 280 + "node_modules/@esbuild/linux-arm": { 281 + "version": "0.25.3", 282 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.3.tgz", 283 + "integrity": "sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==", 284 + "cpu": [ 285 + "arm" 286 + ], 287 + "license": "MIT", 288 + "optional": true, 289 + "os": [ 290 + "linux" 291 + ], 292 + "engines": { 293 + "node": ">=18" 294 + } 295 + }, 296 + "node_modules/@esbuild/linux-arm64": { 297 + "version": "0.25.3", 298 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.3.tgz", 299 + "integrity": "sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==", 300 + "cpu": [ 301 + "arm64" 302 + ], 303 + "license": "MIT", 304 + "optional": true, 305 + "os": [ 306 + "linux" 307 + ], 308 + "engines": { 309 + "node": ">=18" 310 + } 311 + }, 312 + "node_modules/@esbuild/linux-ia32": { 313 + "version": "0.25.3", 314 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.3.tgz", 315 + "integrity": "sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==", 316 + "cpu": [ 317 + "ia32" 318 + ], 319 + "license": "MIT", 320 + "optional": true, 321 + "os": [ 322 + "linux" 323 + ], 324 + "engines": { 325 + "node": ">=18" 326 + } 327 + }, 328 + "node_modules/@esbuild/linux-loong64": { 329 + "version": "0.25.3", 330 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.3.tgz", 331 + "integrity": "sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==", 332 + "cpu": [ 333 + "loong64" 334 + ], 335 + "license": "MIT", 336 + "optional": true, 337 + "os": [ 338 + "linux" 339 + ], 340 + "engines": { 341 + "node": ">=18" 342 + } 343 + }, 344 + "node_modules/@esbuild/linux-mips64el": { 345 + "version": "0.25.3", 346 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.3.tgz", 347 + "integrity": "sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==", 348 + "cpu": [ 349 + "mips64el" 350 + ], 351 + "license": "MIT", 352 + "optional": true, 353 + "os": [ 354 + "linux" 355 + ], 356 + "engines": { 357 + "node": ">=18" 358 + } 359 + }, 360 + "node_modules/@esbuild/linux-ppc64": { 361 + "version": "0.25.3", 362 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.3.tgz", 363 + "integrity": "sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==", 364 + "cpu": [ 365 + "ppc64" 366 + ], 367 + "license": "MIT", 368 + "optional": true, 369 + "os": [ 370 + "linux" 371 + ], 372 + "engines": { 373 + "node": ">=18" 374 + } 375 + }, 376 + "node_modules/@esbuild/linux-riscv64": { 377 + "version": "0.25.3", 378 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.3.tgz", 379 + "integrity": "sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==", 380 + "cpu": [ 381 + "riscv64" 382 + ], 383 + "license": "MIT", 384 + "optional": true, 385 + "os": [ 386 + "linux" 387 + ], 388 + "engines": { 389 + "node": ">=18" 390 + } 391 + }, 392 + "node_modules/@esbuild/linux-s390x": { 393 + "version": "0.25.3", 394 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.3.tgz", 395 + "integrity": "sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==", 396 + "cpu": [ 397 + "s390x" 398 + ], 399 + "license": "MIT", 400 + "optional": true, 401 + "os": [ 402 + "linux" 403 + ], 404 + "engines": { 405 + "node": ">=18" 406 + } 407 + }, 408 + "node_modules/@esbuild/linux-x64": { 409 + "version": "0.25.3", 410 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.3.tgz", 411 + "integrity": "sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==", 412 + "cpu": [ 413 + "x64" 414 + ], 415 + "license": "MIT", 416 + "optional": true, 417 + "os": [ 418 + "linux" 419 + ], 420 + "engines": { 421 + "node": ">=18" 422 + } 423 + }, 424 + "node_modules/@esbuild/netbsd-arm64": { 425 + "version": "0.25.3", 426 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.3.tgz", 427 + "integrity": "sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==", 428 + "cpu": [ 429 + "arm64" 430 + ], 431 + "license": "MIT", 432 + "optional": true, 433 + "os": [ 434 + "netbsd" 435 + ], 436 + "engines": { 437 + "node": ">=18" 438 + } 439 + }, 440 + "node_modules/@esbuild/netbsd-x64": { 441 + "version": "0.25.3", 442 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.3.tgz", 443 + "integrity": "sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==", 444 + "cpu": [ 445 + "x64" 446 + ], 447 + "license": "MIT", 448 + "optional": true, 449 + "os": [ 450 + "netbsd" 451 + ], 452 + "engines": { 453 + "node": ">=18" 454 + } 455 + }, 456 + "node_modules/@esbuild/openbsd-arm64": { 457 + "version": "0.25.3", 458 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.3.tgz", 459 + "integrity": "sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==", 460 + "cpu": [ 461 + "arm64" 462 + ], 463 + "license": "MIT", 464 + "optional": true, 465 + "os": [ 466 + "openbsd" 467 + ], 468 + "engines": { 469 + "node": ">=18" 470 + } 471 + }, 472 + "node_modules/@esbuild/openbsd-x64": { 473 + "version": "0.25.3", 474 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.3.tgz", 475 + "integrity": "sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==", 476 + "cpu": [ 477 + "x64" 478 + ], 479 + "license": "MIT", 480 + "optional": true, 481 + "os": [ 482 + "openbsd" 483 + ], 484 + "engines": { 485 + "node": ">=18" 486 + } 487 + }, 488 + "node_modules/@esbuild/sunos-x64": { 489 + "version": "0.25.3", 490 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.3.tgz", 491 + "integrity": "sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==", 492 + "cpu": [ 493 + "x64" 494 + ], 495 + "license": "MIT", 496 + "optional": true, 497 + "os": [ 498 + "sunos" 499 + ], 500 + "engines": { 501 + "node": ">=18" 502 + } 503 + }, 504 + "node_modules/@esbuild/win32-arm64": { 505 + "version": "0.25.3", 506 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.3.tgz", 507 + "integrity": "sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==", 508 + "cpu": [ 509 + "arm64" 510 + ], 511 + "license": "MIT", 512 + "optional": true, 513 + "os": [ 514 + "win32" 515 + ], 516 + "engines": { 517 + "node": ">=18" 518 + } 519 + }, 520 + "node_modules/@esbuild/win32-ia32": { 521 + "version": "0.25.3", 522 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.3.tgz", 523 + "integrity": "sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==", 524 + "cpu": [ 525 + "ia32" 526 + ], 527 + "license": "MIT", 528 + "optional": true, 529 + "os": [ 530 + "win32" 531 + ], 532 + "engines": { 533 + "node": ">=18" 534 + } 535 + }, 536 + "node_modules/@esbuild/win32-x64": { 537 + "version": "0.25.3", 538 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.3.tgz", 539 + "integrity": "sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==", 540 + "cpu": [ 541 + "x64" 542 + ], 543 + "license": "MIT", 544 + "optional": true, 545 + "os": [ 546 + "win32" 547 + ], 548 + "engines": { 549 + "node": ">=18" 550 + } 551 + }, 552 + "node_modules/@img/sharp-darwin-arm64": { 553 + "version": "0.33.5", 554 + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", 555 + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", 556 + "cpu": [ 557 + "arm64" 558 + ], 559 + "license": "Apache-2.0", 560 + "optional": true, 561 + "os": [ 562 + "darwin" 563 + ], 564 + "engines": { 565 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 566 + }, 567 + "funding": { 568 + "url": "https://opencollective.com/libvips" 569 + }, 570 + "optionalDependencies": { 571 + "@img/sharp-libvips-darwin-arm64": "1.0.4" 572 + } 573 + }, 574 + "node_modules/@img/sharp-darwin-x64": { 575 + "version": "0.33.5", 576 + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", 577 + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", 578 + "cpu": [ 579 + "x64" 580 + ], 581 + "license": "Apache-2.0", 582 + "optional": true, 583 + "os": [ 584 + "darwin" 585 + ], 586 + "engines": { 587 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 588 + }, 589 + "funding": { 590 + "url": "https://opencollective.com/libvips" 591 + }, 592 + "optionalDependencies": { 593 + "@img/sharp-libvips-darwin-x64": "1.0.4" 594 + } 595 + }, 596 + "node_modules/@img/sharp-libvips-darwin-arm64": { 597 + "version": "1.0.4", 598 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", 599 + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", 600 + "cpu": [ 601 + "arm64" 602 + ], 603 + "license": "LGPL-3.0-or-later", 604 + "optional": true, 605 + "os": [ 606 + "darwin" 607 + ], 608 + "funding": { 609 + "url": "https://opencollective.com/libvips" 610 + } 611 + }, 612 + "node_modules/@img/sharp-libvips-darwin-x64": { 613 + "version": "1.0.4", 614 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", 615 + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", 616 + "cpu": [ 617 + "x64" 618 + ], 619 + "license": "LGPL-3.0-or-later", 620 + "optional": true, 621 + "os": [ 622 + "darwin" 623 + ], 624 + "funding": { 625 + "url": "https://opencollective.com/libvips" 626 + } 627 + }, 628 + "node_modules/@img/sharp-libvips-linux-arm": { 629 + "version": "1.0.5", 630 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", 631 + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", 632 + "cpu": [ 633 + "arm" 634 + ], 635 + "license": "LGPL-3.0-or-later", 636 + "optional": true, 637 + "os": [ 638 + "linux" 639 + ], 640 + "funding": { 641 + "url": "https://opencollective.com/libvips" 642 + } 643 + }, 644 + "node_modules/@img/sharp-libvips-linux-arm64": { 645 + "version": "1.0.4", 646 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", 647 + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", 648 + "cpu": [ 649 + "arm64" 650 + ], 651 + "license": "LGPL-3.0-or-later", 652 + "optional": true, 653 + "os": [ 654 + "linux" 655 + ], 656 + "funding": { 657 + "url": "https://opencollective.com/libvips" 658 + } 659 + }, 660 + "node_modules/@img/sharp-libvips-linux-s390x": { 661 + "version": "1.0.4", 662 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", 663 + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", 664 + "cpu": [ 665 + "s390x" 666 + ], 667 + "license": "LGPL-3.0-or-later", 668 + "optional": true, 669 + "os": [ 670 + "linux" 671 + ], 672 + "funding": { 673 + "url": "https://opencollective.com/libvips" 674 + } 675 + }, 676 + "node_modules/@img/sharp-libvips-linux-x64": { 677 + "version": "1.0.4", 678 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", 679 + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", 680 + "cpu": [ 681 + "x64" 682 + ], 683 + "license": "LGPL-3.0-or-later", 684 + "optional": true, 685 + "os": [ 686 + "linux" 687 + ], 688 + "funding": { 689 + "url": "https://opencollective.com/libvips" 690 + } 691 + }, 692 + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 693 + "version": "1.0.4", 694 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", 695 + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", 696 + "cpu": [ 697 + "arm64" 698 + ], 699 + "license": "LGPL-3.0-or-later", 700 + "optional": true, 701 + "os": [ 702 + "linux" 703 + ], 704 + "funding": { 705 + "url": "https://opencollective.com/libvips" 706 + } 707 + }, 708 + "node_modules/@img/sharp-libvips-linuxmusl-x64": { 709 + "version": "1.0.4", 710 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", 711 + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", 712 + "cpu": [ 713 + "x64" 714 + ], 715 + "license": "LGPL-3.0-or-later", 716 + "optional": true, 717 + "os": [ 718 + "linux" 719 + ], 720 + "funding": { 721 + "url": "https://opencollective.com/libvips" 722 + } 723 + }, 724 + "node_modules/@img/sharp-linux-arm": { 725 + "version": "0.33.5", 726 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", 727 + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", 728 + "cpu": [ 729 + "arm" 730 + ], 731 + "license": "Apache-2.0", 732 + "optional": true, 733 + "os": [ 734 + "linux" 735 + ], 736 + "engines": { 737 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 738 + }, 739 + "funding": { 740 + "url": "https://opencollective.com/libvips" 741 + }, 742 + "optionalDependencies": { 743 + "@img/sharp-libvips-linux-arm": "1.0.5" 744 + } 745 + }, 746 + "node_modules/@img/sharp-linux-arm64": { 747 + "version": "0.33.5", 748 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", 749 + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", 750 + "cpu": [ 751 + "arm64" 752 + ], 753 + "license": "Apache-2.0", 754 + "optional": true, 755 + "os": [ 756 + "linux" 757 + ], 758 + "engines": { 759 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 760 + }, 761 + "funding": { 762 + "url": "https://opencollective.com/libvips" 763 + }, 764 + "optionalDependencies": { 765 + "@img/sharp-libvips-linux-arm64": "1.0.4" 766 + } 767 + }, 768 + "node_modules/@img/sharp-linux-s390x": { 769 + "version": "0.33.5", 770 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", 771 + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", 772 + "cpu": [ 773 + "s390x" 774 + ], 775 + "license": "Apache-2.0", 776 + "optional": true, 777 + "os": [ 778 + "linux" 779 + ], 780 + "engines": { 781 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 782 + }, 783 + "funding": { 784 + "url": "https://opencollective.com/libvips" 785 + }, 786 + "optionalDependencies": { 787 + "@img/sharp-libvips-linux-s390x": "1.0.4" 788 + } 789 + }, 790 + "node_modules/@img/sharp-linux-x64": { 791 + "version": "0.33.5", 792 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", 793 + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", 794 + "cpu": [ 795 + "x64" 796 + ], 797 + "license": "Apache-2.0", 798 + "optional": true, 799 + "os": [ 800 + "linux" 801 + ], 802 + "engines": { 803 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 804 + }, 805 + "funding": { 806 + "url": "https://opencollective.com/libvips" 807 + }, 808 + "optionalDependencies": { 809 + "@img/sharp-libvips-linux-x64": "1.0.4" 810 + } 811 + }, 812 + "node_modules/@img/sharp-linuxmusl-arm64": { 813 + "version": "0.33.5", 814 + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", 815 + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", 816 + "cpu": [ 817 + "arm64" 818 + ], 819 + "license": "Apache-2.0", 820 + "optional": true, 821 + "os": [ 822 + "linux" 823 + ], 824 + "engines": { 825 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 826 + }, 827 + "funding": { 828 + "url": "https://opencollective.com/libvips" 829 + }, 830 + "optionalDependencies": { 831 + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" 832 + } 833 + }, 834 + "node_modules/@img/sharp-linuxmusl-x64": { 835 + "version": "0.33.5", 836 + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", 837 + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", 838 + "cpu": [ 839 + "x64" 840 + ], 841 + "license": "Apache-2.0", 842 + "optional": true, 843 + "os": [ 844 + "linux" 845 + ], 846 + "engines": { 847 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 848 + }, 849 + "funding": { 850 + "url": "https://opencollective.com/libvips" 851 + }, 852 + "optionalDependencies": { 853 + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" 854 + } 855 + }, 856 + "node_modules/@img/sharp-wasm32": { 857 + "version": "0.33.5", 858 + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", 859 + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", 860 + "cpu": [ 861 + "wasm32" 862 + ], 863 + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", 864 + "optional": true, 865 + "dependencies": { 866 + "@emnapi/runtime": "^1.2.0" 867 + }, 868 + "engines": { 869 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 870 + }, 871 + "funding": { 872 + "url": "https://opencollective.com/libvips" 873 + } 874 + }, 875 + "node_modules/@img/sharp-win32-ia32": { 876 + "version": "0.33.5", 877 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", 878 + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", 879 + "cpu": [ 880 + "ia32" 881 + ], 882 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 883 + "optional": true, 884 + "os": [ 885 + "win32" 886 + ], 887 + "engines": { 888 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 889 + }, 890 + "funding": { 891 + "url": "https://opencollective.com/libvips" 892 + } 893 + }, 894 + "node_modules/@img/sharp-win32-x64": { 895 + "version": "0.33.5", 896 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", 897 + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", 898 + "cpu": [ 899 + "x64" 900 + ], 901 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 902 + "optional": true, 903 + "os": [ 904 + "win32" 905 + ], 906 + "engines": { 907 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 908 + }, 909 + "funding": { 910 + "url": "https://opencollective.com/libvips" 911 + } 912 + }, 913 + "node_modules/@jridgewell/sourcemap-codec": { 914 + "version": "1.5.0", 915 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 916 + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 917 + "license": "MIT" 918 + }, 919 + "node_modules/@oslojs/encoding": { 920 + "version": "1.1.0", 921 + "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz", 922 + "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==", 923 + "license": "MIT" 924 + }, 925 + "node_modules/@rollup/pluginutils": { 926 + "version": "5.1.4", 927 + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", 928 + "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", 929 + "license": "MIT", 930 + "dependencies": { 931 + "@types/estree": "^1.0.0", 932 + "estree-walker": "^2.0.2", 933 + "picomatch": "^4.0.2" 934 + }, 935 + "engines": { 936 + "node": ">=14.0.0" 937 + }, 938 + "peerDependencies": { 939 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 940 + }, 941 + "peerDependenciesMeta": { 942 + "rollup": { 943 + "optional": true 944 + } 945 + } 946 + }, 947 + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { 948 + "version": "2.0.2", 949 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 950 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 951 + "license": "MIT" 952 + }, 953 + "node_modules/@rollup/rollup-android-arm-eabi": { 954 + "version": "4.40.1", 955 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.1.tgz", 956 + "integrity": "sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==", 957 + "cpu": [ 958 + "arm" 959 + ], 960 + "license": "MIT", 961 + "optional": true, 962 + "os": [ 963 + "android" 964 + ] 965 + }, 966 + "node_modules/@rollup/rollup-android-arm64": { 967 + "version": "4.40.1", 968 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.1.tgz", 969 + "integrity": "sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==", 970 + "cpu": [ 971 + "arm64" 972 + ], 973 + "license": "MIT", 974 + "optional": true, 975 + "os": [ 976 + "android" 977 + ] 978 + }, 979 + "node_modules/@rollup/rollup-darwin-arm64": { 980 + "version": "4.40.1", 981 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.1.tgz", 982 + "integrity": "sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==", 983 + "cpu": [ 984 + "arm64" 985 + ], 986 + "license": "MIT", 987 + "optional": true, 988 + "os": [ 989 + "darwin" 990 + ] 991 + }, 992 + "node_modules/@rollup/rollup-darwin-x64": { 993 + "version": "4.40.1", 994 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.1.tgz", 995 + "integrity": "sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==", 996 + "cpu": [ 997 + "x64" 998 + ], 999 + "license": "MIT", 1000 + "optional": true, 1001 + "os": [ 1002 + "darwin" 1003 + ] 1004 + }, 1005 + "node_modules/@rollup/rollup-freebsd-arm64": { 1006 + "version": "4.40.1", 1007 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.1.tgz", 1008 + "integrity": "sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==", 1009 + "cpu": [ 1010 + "arm64" 1011 + ], 1012 + "license": "MIT", 1013 + "optional": true, 1014 + "os": [ 1015 + "freebsd" 1016 + ] 1017 + }, 1018 + "node_modules/@rollup/rollup-freebsd-x64": { 1019 + "version": "4.40.1", 1020 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.1.tgz", 1021 + "integrity": "sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==", 1022 + "cpu": [ 1023 + "x64" 1024 + ], 1025 + "license": "MIT", 1026 + "optional": true, 1027 + "os": [ 1028 + "freebsd" 1029 + ] 1030 + }, 1031 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1032 + "version": "4.40.1", 1033 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.1.tgz", 1034 + "integrity": "sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==", 1035 + "cpu": [ 1036 + "arm" 1037 + ], 1038 + "license": "MIT", 1039 + "optional": true, 1040 + "os": [ 1041 + "linux" 1042 + ] 1043 + }, 1044 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1045 + "version": "4.40.1", 1046 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.1.tgz", 1047 + "integrity": "sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==", 1048 + "cpu": [ 1049 + "arm" 1050 + ], 1051 + "license": "MIT", 1052 + "optional": true, 1053 + "os": [ 1054 + "linux" 1055 + ] 1056 + }, 1057 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 1058 + "version": "4.40.1", 1059 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.1.tgz", 1060 + "integrity": "sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==", 1061 + "cpu": [ 1062 + "arm64" 1063 + ], 1064 + "license": "MIT", 1065 + "optional": true, 1066 + "os": [ 1067 + "linux" 1068 + ] 1069 + }, 1070 + "node_modules/@rollup/rollup-linux-arm64-musl": { 1071 + "version": "4.40.1", 1072 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.1.tgz", 1073 + "integrity": "sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==", 1074 + "cpu": [ 1075 + "arm64" 1076 + ], 1077 + "license": "MIT", 1078 + "optional": true, 1079 + "os": [ 1080 + "linux" 1081 + ] 1082 + }, 1083 + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 1084 + "version": "4.40.1", 1085 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.1.tgz", 1086 + "integrity": "sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==", 1087 + "cpu": [ 1088 + "loong64" 1089 + ], 1090 + "license": "MIT", 1091 + "optional": true, 1092 + "os": [ 1093 + "linux" 1094 + ] 1095 + }, 1096 + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1097 + "version": "4.40.1", 1098 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.1.tgz", 1099 + "integrity": "sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==", 1100 + "cpu": [ 1101 + "ppc64" 1102 + ], 1103 + "license": "MIT", 1104 + "optional": true, 1105 + "os": [ 1106 + "linux" 1107 + ] 1108 + }, 1109 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1110 + "version": "4.40.1", 1111 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.1.tgz", 1112 + "integrity": "sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==", 1113 + "cpu": [ 1114 + "riscv64" 1115 + ], 1116 + "license": "MIT", 1117 + "optional": true, 1118 + "os": [ 1119 + "linux" 1120 + ] 1121 + }, 1122 + "node_modules/@rollup/rollup-linux-riscv64-musl": { 1123 + "version": "4.40.1", 1124 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.1.tgz", 1125 + "integrity": "sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==", 1126 + "cpu": [ 1127 + "riscv64" 1128 + ], 1129 + "license": "MIT", 1130 + "optional": true, 1131 + "os": [ 1132 + "linux" 1133 + ] 1134 + }, 1135 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 1136 + "version": "4.40.1", 1137 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.1.tgz", 1138 + "integrity": "sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==", 1139 + "cpu": [ 1140 + "s390x" 1141 + ], 1142 + "license": "MIT", 1143 + "optional": true, 1144 + "os": [ 1145 + "linux" 1146 + ] 1147 + }, 1148 + "node_modules/@rollup/rollup-linux-x64-gnu": { 1149 + "version": "4.40.1", 1150 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.1.tgz", 1151 + "integrity": "sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==", 1152 + "cpu": [ 1153 + "x64" 1154 + ], 1155 + "license": "MIT", 1156 + "optional": true, 1157 + "os": [ 1158 + "linux" 1159 + ] 1160 + }, 1161 + "node_modules/@rollup/rollup-linux-x64-musl": { 1162 + "version": "4.40.1", 1163 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.1.tgz", 1164 + "integrity": "sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==", 1165 + "cpu": [ 1166 + "x64" 1167 + ], 1168 + "license": "MIT", 1169 + "optional": true, 1170 + "os": [ 1171 + "linux" 1172 + ] 1173 + }, 1174 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 1175 + "version": "4.40.1", 1176 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.1.tgz", 1177 + "integrity": "sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==", 1178 + "cpu": [ 1179 + "arm64" 1180 + ], 1181 + "license": "MIT", 1182 + "optional": true, 1183 + "os": [ 1184 + "win32" 1185 + ] 1186 + }, 1187 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 1188 + "version": "4.40.1", 1189 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.1.tgz", 1190 + "integrity": "sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==", 1191 + "cpu": [ 1192 + "ia32" 1193 + ], 1194 + "license": "MIT", 1195 + "optional": true, 1196 + "os": [ 1197 + "win32" 1198 + ] 1199 + }, 1200 + "node_modules/@rollup/rollup-win32-x64-msvc": { 1201 + "version": "4.40.1", 1202 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.1.tgz", 1203 + "integrity": "sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==", 1204 + "cpu": [ 1205 + "x64" 1206 + ], 1207 + "license": "MIT", 1208 + "optional": true, 1209 + "os": [ 1210 + "win32" 1211 + ] 1212 + }, 1213 + "node_modules/@shikijs/core": { 1214 + "version": "3.3.0", 1215 + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.3.0.tgz", 1216 + "integrity": "sha512-CovkFL2WVaHk6PCrwv6ctlmD4SS1qtIfN8yEyDXDYWh4ONvomdM9MaFw20qHuqJOcb8/xrkqoWQRJ//X10phOQ==", 1217 + "license": "MIT", 1218 + "dependencies": { 1219 + "@shikijs/types": "3.3.0", 1220 + "@shikijs/vscode-textmate": "^10.0.2", 1221 + "@types/hast": "^3.0.4", 1222 + "hast-util-to-html": "^9.0.5" 1223 + } 1224 + }, 1225 + "node_modules/@shikijs/engine-javascript": { 1226 + "version": "3.3.0", 1227 + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.3.0.tgz", 1228 + "integrity": "sha512-XlhnFGv0glq7pfsoN0KyBCz9FJU678LZdQ2LqlIdAj6JKsg5xpYKay3DkazXWExp3DTJJK9rMOuGzU2911pg7Q==", 1229 + "license": "MIT", 1230 + "dependencies": { 1231 + "@shikijs/types": "3.3.0", 1232 + "@shikijs/vscode-textmate": "^10.0.2", 1233 + "oniguruma-to-es": "^4.2.0" 1234 + } 1235 + }, 1236 + "node_modules/@shikijs/engine-oniguruma": { 1237 + "version": "3.3.0", 1238 + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.3.0.tgz", 1239 + "integrity": "sha512-l0vIw+GxeNU7uGnsu6B+Crpeqf+WTQ2Va71cHb5ZYWEVEPdfYwY5kXwYqRJwHrxz9WH+pjSpXQz+TJgAsrkA5A==", 1240 + "license": "MIT", 1241 + "dependencies": { 1242 + "@shikijs/types": "3.3.0", 1243 + "@shikijs/vscode-textmate": "^10.0.2" 1244 + } 1245 + }, 1246 + "node_modules/@shikijs/langs": { 1247 + "version": "3.3.0", 1248 + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.3.0.tgz", 1249 + "integrity": "sha512-zt6Kf/7XpBQKSI9eqku+arLkAcDQ3NHJO6zFjiChI8w0Oz6Jjjay7pToottjQGjSDCFk++R85643WbyINcuL+g==", 1250 + "license": "MIT", 1251 + "dependencies": { 1252 + "@shikijs/types": "3.3.0" 1253 + } 1254 + }, 1255 + "node_modules/@shikijs/themes": { 1256 + "version": "3.3.0", 1257 + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.3.0.tgz", 1258 + "integrity": "sha512-tXeCvLXBnqq34B0YZUEaAD1lD4lmN6TOHAhnHacj4Owh7Ptb/rf5XCDeROZt2rEOk5yuka3OOW2zLqClV7/SOg==", 1259 + "license": "MIT", 1260 + "dependencies": { 1261 + "@shikijs/types": "3.3.0" 1262 + } 1263 + }, 1264 + "node_modules/@shikijs/types": { 1265 + "version": "3.3.0", 1266 + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.3.0.tgz", 1267 + "integrity": "sha512-KPCGnHG6k06QG/2pnYGbFtFvpVJmC3uIpXrAiPrawETifujPBv0Se2oUxm5qYgjCvGJS9InKvjytOdN+bGuX+Q==", 1268 + "license": "MIT", 1269 + "dependencies": { 1270 + "@shikijs/vscode-textmate": "^10.0.2", 1271 + "@types/hast": "^3.0.4" 1272 + } 1273 + }, 1274 + "node_modules/@shikijs/vscode-textmate": { 1275 + "version": "10.0.2", 1276 + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", 1277 + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", 1278 + "license": "MIT" 1279 + }, 1280 + "node_modules/@swc/helpers": { 1281 + "version": "0.5.17", 1282 + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz", 1283 + "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==", 1284 + "license": "Apache-2.0", 1285 + "dependencies": { 1286 + "tslib": "^2.8.0" 1287 + } 1288 + }, 1289 + "node_modules/@types/debug": { 1290 + "version": "4.1.12", 1291 + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", 1292 + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", 1293 + "license": "MIT", 1294 + "dependencies": { 1295 + "@types/ms": "*" 1296 + } 1297 + }, 1298 + "node_modules/@types/estree": { 1299 + "version": "1.0.7", 1300 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", 1301 + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", 1302 + "license": "MIT" 1303 + }, 1304 + "node_modules/@types/hast": { 1305 + "version": "3.0.4", 1306 + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", 1307 + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", 1308 + "license": "MIT", 1309 + "dependencies": { 1310 + "@types/unist": "*" 1311 + } 1312 + }, 1313 + "node_modules/@types/mdast": { 1314 + "version": "4.0.4", 1315 + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", 1316 + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", 1317 + "license": "MIT", 1318 + "dependencies": { 1319 + "@types/unist": "*" 1320 + } 1321 + }, 1322 + "node_modules/@types/ms": { 1323 + "version": "2.1.0", 1324 + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", 1325 + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", 1326 + "license": "MIT" 1327 + }, 1328 + "node_modules/@types/nlcst": { 1329 + "version": "2.0.3", 1330 + "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz", 1331 + "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==", 1332 + "license": "MIT", 1333 + "dependencies": { 1334 + "@types/unist": "*" 1335 + } 1336 + }, 1337 + "node_modules/@types/unist": { 1338 + "version": "3.0.3", 1339 + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", 1340 + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", 1341 + "license": "MIT" 1342 + }, 1343 + "node_modules/@ungap/structured-clone": { 1344 + "version": "1.3.0", 1345 + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 1346 + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 1347 + "license": "ISC" 1348 + }, 1349 + "node_modules/acorn": { 1350 + "version": "8.14.1", 1351 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 1352 + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 1353 + "license": "MIT", 1354 + "bin": { 1355 + "acorn": "bin/acorn" 1356 + }, 1357 + "engines": { 1358 + "node": ">=0.4.0" 1359 + } 1360 + }, 1361 + "node_modules/ansi-align": { 1362 + "version": "3.0.1", 1363 + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", 1364 + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", 1365 + "license": "ISC", 1366 + "dependencies": { 1367 + "string-width": "^4.1.0" 1368 + } 1369 + }, 1370 + "node_modules/ansi-align/node_modules/ansi-regex": { 1371 + "version": "5.0.1", 1372 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1373 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1374 + "license": "MIT", 1375 + "engines": { 1376 + "node": ">=8" 1377 + } 1378 + }, 1379 + "node_modules/ansi-align/node_modules/emoji-regex": { 1380 + "version": "8.0.0", 1381 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1382 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1383 + "license": "MIT" 1384 + }, 1385 + "node_modules/ansi-align/node_modules/string-width": { 1386 + "version": "4.2.3", 1387 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1388 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1389 + "license": "MIT", 1390 + "dependencies": { 1391 + "emoji-regex": "^8.0.0", 1392 + "is-fullwidth-code-point": "^3.0.0", 1393 + "strip-ansi": "^6.0.1" 1394 + }, 1395 + "engines": { 1396 + "node": ">=8" 1397 + } 1398 + }, 1399 + "node_modules/ansi-align/node_modules/strip-ansi": { 1400 + "version": "6.0.1", 1401 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1402 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1403 + "license": "MIT", 1404 + "dependencies": { 1405 + "ansi-regex": "^5.0.1" 1406 + }, 1407 + "engines": { 1408 + "node": ">=8" 1409 + } 1410 + }, 1411 + "node_modules/ansi-regex": { 1412 + "version": "6.1.0", 1413 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 1414 + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 1415 + "license": "MIT", 1416 + "engines": { 1417 + "node": ">=12" 1418 + }, 1419 + "funding": { 1420 + "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1421 + } 1422 + }, 1423 + "node_modules/ansi-styles": { 1424 + "version": "6.2.1", 1425 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 1426 + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 1427 + "license": "MIT", 1428 + "engines": { 1429 + "node": ">=12" 1430 + }, 1431 + "funding": { 1432 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1433 + } 1434 + }, 1435 + "node_modules/anymatch": { 1436 + "version": "3.1.3", 1437 + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1438 + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1439 + "license": "ISC", 1440 + "dependencies": { 1441 + "normalize-path": "^3.0.0", 1442 + "picomatch": "^2.0.4" 1443 + }, 1444 + "engines": { 1445 + "node": ">= 8" 1446 + } 1447 + }, 1448 + "node_modules/anymatch/node_modules/picomatch": { 1449 + "version": "2.3.1", 1450 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1451 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1452 + "license": "MIT", 1453 + "engines": { 1454 + "node": ">=8.6" 1455 + }, 1456 + "funding": { 1457 + "url": "https://github.com/sponsors/jonschlinkert" 1458 + } 1459 + }, 1460 + "node_modules/argparse": { 1461 + "version": "2.0.1", 1462 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1463 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1464 + "license": "Python-2.0" 1465 + }, 1466 + "node_modules/aria-query": { 1467 + "version": "5.3.2", 1468 + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 1469 + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 1470 + "license": "Apache-2.0", 1471 + "engines": { 1472 + "node": ">= 0.4" 1473 + } 1474 + }, 1475 + "node_modules/array-iterate": { 1476 + "version": "2.0.1", 1477 + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", 1478 + "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", 1479 + "license": "MIT", 1480 + "funding": { 1481 + "type": "github", 1482 + "url": "https://github.com/sponsors/wooorm" 1483 + } 1484 + }, 1485 + "node_modules/astro": { 1486 + "version": "5.7.10", 1487 + "resolved": "https://registry.npmjs.org/astro/-/astro-5.7.10.tgz", 1488 + "integrity": "sha512-9TQcFZqP2w6//JXXUHfw8/5PX7KUx9EkG5O3m+hISuyeUztvjY1q5+p7+C5HiXyg24Zs3KkpieoL5BGRXGCAGA==", 1489 + "license": "MIT", 1490 + "dependencies": { 1491 + "@astrojs/compiler": "^2.11.0", 1492 + "@astrojs/internal-helpers": "0.6.1", 1493 + "@astrojs/markdown-remark": "6.3.1", 1494 + "@astrojs/telemetry": "3.2.1", 1495 + "@capsizecss/unpack": "^2.4.0", 1496 + "@oslojs/encoding": "^1.1.0", 1497 + "@rollup/pluginutils": "^5.1.4", 1498 + "acorn": "^8.14.1", 1499 + "aria-query": "^5.3.2", 1500 + "axobject-query": "^4.1.0", 1501 + "boxen": "8.0.1", 1502 + "ci-info": "^4.2.0", 1503 + "clsx": "^2.1.1", 1504 + "common-ancestor-path": "^1.0.1", 1505 + "cookie": "^1.0.2", 1506 + "cssesc": "^3.0.0", 1507 + "debug": "^4.4.0", 1508 + "deterministic-object-hash": "^2.0.2", 1509 + "devalue": "^5.1.1", 1510 + "diff": "^5.2.0", 1511 + "dlv": "^1.1.3", 1512 + "dset": "^3.1.4", 1513 + "es-module-lexer": "^1.6.0", 1514 + "esbuild": "^0.25.0", 1515 + "estree-walker": "^3.0.3", 1516 + "flattie": "^1.1.1", 1517 + "github-slugger": "^2.0.0", 1518 + "html-escaper": "3.0.3", 1519 + "http-cache-semantics": "^4.1.1", 1520 + "js-yaml": "^4.1.0", 1521 + "kleur": "^4.1.5", 1522 + "magic-string": "^0.30.17", 1523 + "magicast": "^0.3.5", 1524 + "mrmime": "^2.0.1", 1525 + "neotraverse": "^0.6.18", 1526 + "p-limit": "^6.2.0", 1527 + "p-queue": "^8.1.0", 1528 + "package-manager-detector": "^1.1.0", 1529 + "picomatch": "^4.0.2", 1530 + "prompts": "^2.4.2", 1531 + "rehype": "^13.0.2", 1532 + "semver": "^7.7.1", 1533 + "shiki": "^3.2.1", 1534 + "tinyexec": "^0.3.2", 1535 + "tinyglobby": "^0.2.12", 1536 + "tsconfck": "^3.1.5", 1537 + "ultrahtml": "^1.6.0", 1538 + "unifont": "~0.4.1", 1539 + "unist-util-visit": "^5.0.0", 1540 + "unstorage": "^1.15.0", 1541 + "vfile": "^6.0.3", 1542 + "vite": "^6.3.4", 1543 + "vitefu": "^1.0.6", 1544 + "xxhash-wasm": "^1.1.0", 1545 + "yargs-parser": "^21.1.1", 1546 + "yocto-spinner": "^0.2.1", 1547 + "zod": "^3.24.2", 1548 + "zod-to-json-schema": "^3.24.5", 1549 + "zod-to-ts": "^1.2.0" 1550 + }, 1551 + "bin": { 1552 + "astro": "astro.js" 1553 + }, 1554 + "engines": { 1555 + "node": "^18.17.1 || ^20.3.0 || >=22.0.0", 1556 + "npm": ">=9.6.5", 1557 + "pnpm": ">=7.1.0" 1558 + }, 1559 + "funding": { 1560 + "type": "opencollective", 1561 + "url": "https://opencollective.com/astrodotbuild" 1562 + }, 1563 + "optionalDependencies": { 1564 + "sharp": "^0.33.3" 1565 + } 1566 + }, 1567 + "node_modules/axobject-query": { 1568 + "version": "4.1.0", 1569 + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 1570 + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 1571 + "license": "Apache-2.0", 1572 + "engines": { 1573 + "node": ">= 0.4" 1574 + } 1575 + }, 1576 + "node_modules/bail": { 1577 + "version": "2.0.2", 1578 + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", 1579 + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", 1580 + "license": "MIT", 1581 + "funding": { 1582 + "type": "github", 1583 + "url": "https://github.com/sponsors/wooorm" 1584 + } 1585 + }, 1586 + "node_modules/base-64": { 1587 + "version": "1.0.0", 1588 + "resolved": "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz", 1589 + "integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==", 1590 + "license": "MIT" 1591 + }, 1592 + "node_modules/base64-js": { 1593 + "version": "1.5.1", 1594 + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 1595 + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 1596 + "funding": [ 1597 + { 1598 + "type": "github", 1599 + "url": "https://github.com/sponsors/feross" 1600 + }, 1601 + { 1602 + "type": "patreon", 1603 + "url": "https://www.patreon.com/feross" 1604 + }, 1605 + { 1606 + "type": "consulting", 1607 + "url": "https://feross.org/support" 1608 + } 1609 + ], 1610 + "license": "MIT" 1611 + }, 1612 + "node_modules/blob-to-buffer": { 1613 + "version": "1.2.9", 1614 + "resolved": "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz", 1615 + "integrity": "sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==", 1616 + "funding": [ 1617 + { 1618 + "type": "github", 1619 + "url": "https://github.com/sponsors/feross" 1620 + }, 1621 + { 1622 + "type": "patreon", 1623 + "url": "https://www.patreon.com/feross" 1624 + }, 1625 + { 1626 + "type": "consulting", 1627 + "url": "https://feross.org/support" 1628 + } 1629 + ], 1630 + "license": "MIT" 1631 + }, 1632 + "node_modules/boxen": { 1633 + "version": "8.0.1", 1634 + "resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz", 1635 + "integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==", 1636 + "license": "MIT", 1637 + "dependencies": { 1638 + "ansi-align": "^3.0.1", 1639 + "camelcase": "^8.0.0", 1640 + "chalk": "^5.3.0", 1641 + "cli-boxes": "^3.0.0", 1642 + "string-width": "^7.2.0", 1643 + "type-fest": "^4.21.0", 1644 + "widest-line": "^5.0.0", 1645 + "wrap-ansi": "^9.0.0" 1646 + }, 1647 + "engines": { 1648 + "node": ">=18" 1649 + }, 1650 + "funding": { 1651 + "url": "https://github.com/sponsors/sindresorhus" 1652 + } 1653 + }, 1654 + "node_modules/brotli": { 1655 + "version": "1.3.3", 1656 + "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", 1657 + "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==", 1658 + "license": "MIT", 1659 + "dependencies": { 1660 + "base64-js": "^1.1.2" 1661 + } 1662 + }, 1663 + "node_modules/camelcase": { 1664 + "version": "8.0.0", 1665 + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz", 1666 + "integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==", 1667 + "license": "MIT", 1668 + "engines": { 1669 + "node": ">=16" 1670 + }, 1671 + "funding": { 1672 + "url": "https://github.com/sponsors/sindresorhus" 1673 + } 1674 + }, 1675 + "node_modules/ccount": { 1676 + "version": "2.0.1", 1677 + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", 1678 + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", 1679 + "license": "MIT", 1680 + "funding": { 1681 + "type": "github", 1682 + "url": "https://github.com/sponsors/wooorm" 1683 + } 1684 + }, 1685 + "node_modules/chalk": { 1686 + "version": "5.4.1", 1687 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", 1688 + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", 1689 + "license": "MIT", 1690 + "engines": { 1691 + "node": "^12.17.0 || ^14.13 || >=16.0.0" 1692 + }, 1693 + "funding": { 1694 + "url": "https://github.com/chalk/chalk?sponsor=1" 1695 + } 1696 + }, 1697 + "node_modules/character-entities": { 1698 + "version": "2.0.2", 1699 + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", 1700 + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", 1701 + "license": "MIT", 1702 + "funding": { 1703 + "type": "github", 1704 + "url": "https://github.com/sponsors/wooorm" 1705 + } 1706 + }, 1707 + "node_modules/character-entities-html4": { 1708 + "version": "2.1.0", 1709 + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", 1710 + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", 1711 + "license": "MIT", 1712 + "funding": { 1713 + "type": "github", 1714 + "url": "https://github.com/sponsors/wooorm" 1715 + } 1716 + }, 1717 + "node_modules/character-entities-legacy": { 1718 + "version": "3.0.0", 1719 + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", 1720 + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", 1721 + "license": "MIT", 1722 + "funding": { 1723 + "type": "github", 1724 + "url": "https://github.com/sponsors/wooorm" 1725 + } 1726 + }, 1727 + "node_modules/chokidar": { 1728 + "version": "4.0.3", 1729 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", 1730 + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", 1731 + "license": "MIT", 1732 + "dependencies": { 1733 + "readdirp": "^4.0.1" 1734 + }, 1735 + "engines": { 1736 + "node": ">= 14.16.0" 1737 + }, 1738 + "funding": { 1739 + "url": "https://paulmillr.com/funding/" 1740 + } 1741 + }, 1742 + "node_modules/ci-info": { 1743 + "version": "4.2.0", 1744 + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.2.0.tgz", 1745 + "integrity": "sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==", 1746 + "funding": [ 1747 + { 1748 + "type": "github", 1749 + "url": "https://github.com/sponsors/sibiraj-s" 1750 + } 1751 + ], 1752 + "license": "MIT", 1753 + "engines": { 1754 + "node": ">=8" 1755 + } 1756 + }, 1757 + "node_modules/cli-boxes": { 1758 + "version": "3.0.0", 1759 + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", 1760 + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", 1761 + "license": "MIT", 1762 + "engines": { 1763 + "node": ">=10" 1764 + }, 1765 + "funding": { 1766 + "url": "https://github.com/sponsors/sindresorhus" 1767 + } 1768 + }, 1769 + "node_modules/clone": { 1770 + "version": "2.1.2", 1771 + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", 1772 + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", 1773 + "license": "MIT", 1774 + "engines": { 1775 + "node": ">=0.8" 1776 + } 1777 + }, 1778 + "node_modules/clsx": { 1779 + "version": "2.1.1", 1780 + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 1781 + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1782 + "license": "MIT", 1783 + "engines": { 1784 + "node": ">=6" 1785 + } 1786 + }, 1787 + "node_modules/color": { 1788 + "version": "4.2.3", 1789 + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 1790 + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 1791 + "license": "MIT", 1792 + "optional": true, 1793 + "dependencies": { 1794 + "color-convert": "^2.0.1", 1795 + "color-string": "^1.9.0" 1796 + }, 1797 + "engines": { 1798 + "node": ">=12.5.0" 1799 + } 1800 + }, 1801 + "node_modules/color-convert": { 1802 + "version": "2.0.1", 1803 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1804 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1805 + "license": "MIT", 1806 + "optional": true, 1807 + "dependencies": { 1808 + "color-name": "~1.1.4" 1809 + }, 1810 + "engines": { 1811 + "node": ">=7.0.0" 1812 + } 1813 + }, 1814 + "node_modules/color-name": { 1815 + "version": "1.1.4", 1816 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1817 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1818 + "license": "MIT", 1819 + "optional": true 1820 + }, 1821 + "node_modules/color-string": { 1822 + "version": "1.9.1", 1823 + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 1824 + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 1825 + "license": "MIT", 1826 + "optional": true, 1827 + "dependencies": { 1828 + "color-name": "^1.0.0", 1829 + "simple-swizzle": "^0.2.2" 1830 + } 1831 + }, 1832 + "node_modules/comma-separated-tokens": { 1833 + "version": "2.0.3", 1834 + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", 1835 + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", 1836 + "license": "MIT", 1837 + "funding": { 1838 + "type": "github", 1839 + "url": "https://github.com/sponsors/wooorm" 1840 + } 1841 + }, 1842 + "node_modules/common-ancestor-path": { 1843 + "version": "1.0.1", 1844 + "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", 1845 + "integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==", 1846 + "license": "ISC" 1847 + }, 1848 + "node_modules/cookie": { 1849 + "version": "1.0.2", 1850 + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", 1851 + "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", 1852 + "license": "MIT", 1853 + "engines": { 1854 + "node": ">=18" 1855 + } 1856 + }, 1857 + "node_modules/cookie-es": { 1858 + "version": "1.2.2", 1859 + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", 1860 + "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==", 1861 + "license": "MIT" 1862 + }, 1863 + "node_modules/cross-fetch": { 1864 + "version": "3.2.0", 1865 + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", 1866 + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", 1867 + "license": "MIT", 1868 + "dependencies": { 1869 + "node-fetch": "^2.7.0" 1870 + } 1871 + }, 1872 + "node_modules/crossws": { 1873 + "version": "0.3.4", 1874 + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.4.tgz", 1875 + "integrity": "sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==", 1876 + "license": "MIT", 1877 + "dependencies": { 1878 + "uncrypto": "^0.1.3" 1879 + } 1880 + }, 1881 + "node_modules/css-tree": { 1882 + "version": "3.1.0", 1883 + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", 1884 + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", 1885 + "license": "MIT", 1886 + "dependencies": { 1887 + "mdn-data": "2.12.2", 1888 + "source-map-js": "^1.0.1" 1889 + }, 1890 + "engines": { 1891 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 1892 + } 1893 + }, 1894 + "node_modules/cssesc": { 1895 + "version": "3.0.0", 1896 + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1897 + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1898 + "license": "MIT", 1899 + "bin": { 1900 + "cssesc": "bin/cssesc" 1901 + }, 1902 + "engines": { 1903 + "node": ">=4" 1904 + } 1905 + }, 1906 + "node_modules/debug": { 1907 + "version": "4.4.0", 1908 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1909 + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1910 + "license": "MIT", 1911 + "dependencies": { 1912 + "ms": "^2.1.3" 1913 + }, 1914 + "engines": { 1915 + "node": ">=6.0" 1916 + }, 1917 + "peerDependenciesMeta": { 1918 + "supports-color": { 1919 + "optional": true 1920 + } 1921 + } 1922 + }, 1923 + "node_modules/decode-named-character-reference": { 1924 + "version": "1.1.0", 1925 + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz", 1926 + "integrity": "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==", 1927 + "license": "MIT", 1928 + "dependencies": { 1929 + "character-entities": "^2.0.0" 1930 + }, 1931 + "funding": { 1932 + "type": "github", 1933 + "url": "https://github.com/sponsors/wooorm" 1934 + } 1935 + }, 1936 + "node_modules/defu": { 1937 + "version": "6.1.4", 1938 + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", 1939 + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", 1940 + "license": "MIT" 1941 + }, 1942 + "node_modules/dequal": { 1943 + "version": "2.0.3", 1944 + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1945 + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1946 + "license": "MIT", 1947 + "engines": { 1948 + "node": ">=6" 1949 + } 1950 + }, 1951 + "node_modules/destr": { 1952 + "version": "2.0.5", 1953 + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz", 1954 + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", 1955 + "license": "MIT" 1956 + }, 1957 + "node_modules/detect-libc": { 1958 + "version": "2.0.4", 1959 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", 1960 + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", 1961 + "license": "Apache-2.0", 1962 + "optional": true, 1963 + "engines": { 1964 + "node": ">=8" 1965 + } 1966 + }, 1967 + "node_modules/deterministic-object-hash": { 1968 + "version": "2.0.2", 1969 + "resolved": "https://registry.npmjs.org/deterministic-object-hash/-/deterministic-object-hash-2.0.2.tgz", 1970 + "integrity": "sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==", 1971 + "license": "MIT", 1972 + "dependencies": { 1973 + "base-64": "^1.0.0" 1974 + }, 1975 + "engines": { 1976 + "node": ">=18" 1977 + } 1978 + }, 1979 + "node_modules/devalue": { 1980 + "version": "5.1.1", 1981 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz", 1982 + "integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==", 1983 + "license": "MIT" 1984 + }, 1985 + "node_modules/devlop": { 1986 + "version": "1.1.0", 1987 + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", 1988 + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", 1989 + "license": "MIT", 1990 + "dependencies": { 1991 + "dequal": "^2.0.0" 1992 + }, 1993 + "funding": { 1994 + "type": "github", 1995 + "url": "https://github.com/sponsors/wooorm" 1996 + } 1997 + }, 1998 + "node_modules/dfa": { 1999 + "version": "1.2.0", 2000 + "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", 2001 + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", 2002 + "license": "MIT" 2003 + }, 2004 + "node_modules/diff": { 2005 + "version": "5.2.0", 2006 + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", 2007 + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", 2008 + "license": "BSD-3-Clause", 2009 + "engines": { 2010 + "node": ">=0.3.1" 2011 + } 2012 + }, 2013 + "node_modules/dlv": { 2014 + "version": "1.1.3", 2015 + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 2016 + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 2017 + "license": "MIT" 2018 + }, 2019 + "node_modules/dset": { 2020 + "version": "3.1.4", 2021 + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", 2022 + "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", 2023 + "license": "MIT", 2024 + "engines": { 2025 + "node": ">=4" 2026 + } 2027 + }, 2028 + "node_modules/emoji-regex": { 2029 + "version": "10.4.0", 2030 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", 2031 + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", 2032 + "license": "MIT" 2033 + }, 2034 + "node_modules/entities": { 2035 + "version": "6.0.0", 2036 + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", 2037 + "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", 2038 + "license": "BSD-2-Clause", 2039 + "engines": { 2040 + "node": ">=0.12" 2041 + }, 2042 + "funding": { 2043 + "url": "https://github.com/fb55/entities?sponsor=1" 2044 + } 2045 + }, 2046 + "node_modules/es-module-lexer": { 2047 + "version": "1.7.0", 2048 + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", 2049 + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", 2050 + "license": "MIT" 2051 + }, 2052 + "node_modules/esbuild": { 2053 + "version": "0.25.3", 2054 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.3.tgz", 2055 + "integrity": "sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==", 2056 + "hasInstallScript": true, 2057 + "license": "MIT", 2058 + "bin": { 2059 + "esbuild": "bin/esbuild" 2060 + }, 2061 + "engines": { 2062 + "node": ">=18" 2063 + }, 2064 + "optionalDependencies": { 2065 + "@esbuild/aix-ppc64": "0.25.3", 2066 + "@esbuild/android-arm": "0.25.3", 2067 + "@esbuild/android-arm64": "0.25.3", 2068 + "@esbuild/android-x64": "0.25.3", 2069 + "@esbuild/darwin-arm64": "0.25.3", 2070 + "@esbuild/darwin-x64": "0.25.3", 2071 + "@esbuild/freebsd-arm64": "0.25.3", 2072 + "@esbuild/freebsd-x64": "0.25.3", 2073 + "@esbuild/linux-arm": "0.25.3", 2074 + "@esbuild/linux-arm64": "0.25.3", 2075 + "@esbuild/linux-ia32": "0.25.3", 2076 + "@esbuild/linux-loong64": "0.25.3", 2077 + "@esbuild/linux-mips64el": "0.25.3", 2078 + "@esbuild/linux-ppc64": "0.25.3", 2079 + "@esbuild/linux-riscv64": "0.25.3", 2080 + "@esbuild/linux-s390x": "0.25.3", 2081 + "@esbuild/linux-x64": "0.25.3", 2082 + "@esbuild/netbsd-arm64": "0.25.3", 2083 + "@esbuild/netbsd-x64": "0.25.3", 2084 + "@esbuild/openbsd-arm64": "0.25.3", 2085 + "@esbuild/openbsd-x64": "0.25.3", 2086 + "@esbuild/sunos-x64": "0.25.3", 2087 + "@esbuild/win32-arm64": "0.25.3", 2088 + "@esbuild/win32-ia32": "0.25.3", 2089 + "@esbuild/win32-x64": "0.25.3" 2090 + } 2091 + }, 2092 + "node_modules/escape-string-regexp": { 2093 + "version": "5.0.0", 2094 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 2095 + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 2096 + "license": "MIT", 2097 + "engines": { 2098 + "node": ">=12" 2099 + }, 2100 + "funding": { 2101 + "url": "https://github.com/sponsors/sindresorhus" 2102 + } 2103 + }, 2104 + "node_modules/estree-walker": { 2105 + "version": "3.0.3", 2106 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 2107 + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 2108 + "license": "MIT", 2109 + "dependencies": { 2110 + "@types/estree": "^1.0.0" 2111 + } 2112 + }, 2113 + "node_modules/eventemitter3": { 2114 + "version": "5.0.1", 2115 + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", 2116 + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", 2117 + "license": "MIT" 2118 + }, 2119 + "node_modules/extend": { 2120 + "version": "3.0.2", 2121 + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 2122 + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 2123 + "license": "MIT" 2124 + }, 2125 + "node_modules/fast-deep-equal": { 2126 + "version": "3.1.3", 2127 + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2128 + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2129 + "license": "MIT" 2130 + }, 2131 + "node_modules/fdir": { 2132 + "version": "6.4.4", 2133 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz", 2134 + "integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==", 2135 + "license": "MIT", 2136 + "peerDependencies": { 2137 + "picomatch": "^3 || ^4" 2138 + }, 2139 + "peerDependenciesMeta": { 2140 + "picomatch": { 2141 + "optional": true 2142 + } 2143 + } 2144 + }, 2145 + "node_modules/flattie": { 2146 + "version": "1.1.1", 2147 + "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz", 2148 + "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==", 2149 + "license": "MIT", 2150 + "engines": { 2151 + "node": ">=8" 2152 + } 2153 + }, 2154 + "node_modules/fontkit": { 2155 + "version": "2.0.4", 2156 + "resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz", 2157 + "integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==", 2158 + "license": "MIT", 2159 + "dependencies": { 2160 + "@swc/helpers": "^0.5.12", 2161 + "brotli": "^1.3.2", 2162 + "clone": "^2.1.2", 2163 + "dfa": "^1.2.0", 2164 + "fast-deep-equal": "^3.1.3", 2165 + "restructure": "^3.0.0", 2166 + "tiny-inflate": "^1.0.3", 2167 + "unicode-properties": "^1.4.0", 2168 + "unicode-trie": "^2.0.0" 2169 + } 2170 + }, 2171 + "node_modules/fsevents": { 2172 + "version": "2.3.3", 2173 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2174 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2175 + "hasInstallScript": true, 2176 + "license": "MIT", 2177 + "optional": true, 2178 + "os": [ 2179 + "darwin" 2180 + ], 2181 + "engines": { 2182 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2183 + } 2184 + }, 2185 + "node_modules/get-east-asian-width": { 2186 + "version": "1.3.0", 2187 + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", 2188 + "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", 2189 + "license": "MIT", 2190 + "engines": { 2191 + "node": ">=18" 2192 + }, 2193 + "funding": { 2194 + "url": "https://github.com/sponsors/sindresorhus" 2195 + } 2196 + }, 2197 + "node_modules/github-slugger": { 2198 + "version": "2.0.0", 2199 + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", 2200 + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", 2201 + "license": "ISC" 2202 + }, 2203 + "node_modules/h3": { 2204 + "version": "1.15.3", 2205 + "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.3.tgz", 2206 + "integrity": "sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==", 2207 + "license": "MIT", 2208 + "dependencies": { 2209 + "cookie-es": "^1.2.2", 2210 + "crossws": "^0.3.4", 2211 + "defu": "^6.1.4", 2212 + "destr": "^2.0.5", 2213 + "iron-webcrypto": "^1.2.1", 2214 + "node-mock-http": "^1.0.0", 2215 + "radix3": "^1.1.2", 2216 + "ufo": "^1.6.1", 2217 + "uncrypto": "^0.1.3" 2218 + } 2219 + }, 2220 + "node_modules/hast-util-from-html": { 2221 + "version": "2.0.3", 2222 + "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", 2223 + "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", 2224 + "license": "MIT", 2225 + "dependencies": { 2226 + "@types/hast": "^3.0.0", 2227 + "devlop": "^1.1.0", 2228 + "hast-util-from-parse5": "^8.0.0", 2229 + "parse5": "^7.0.0", 2230 + "vfile": "^6.0.0", 2231 + "vfile-message": "^4.0.0" 2232 + }, 2233 + "funding": { 2234 + "type": "opencollective", 2235 + "url": "https://opencollective.com/unified" 2236 + } 2237 + }, 2238 + "node_modules/hast-util-from-parse5": { 2239 + "version": "8.0.3", 2240 + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", 2241 + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", 2242 + "license": "MIT", 2243 + "dependencies": { 2244 + "@types/hast": "^3.0.0", 2245 + "@types/unist": "^3.0.0", 2246 + "devlop": "^1.0.0", 2247 + "hastscript": "^9.0.0", 2248 + "property-information": "^7.0.0", 2249 + "vfile": "^6.0.0", 2250 + "vfile-location": "^5.0.0", 2251 + "web-namespaces": "^2.0.0" 2252 + }, 2253 + "funding": { 2254 + "type": "opencollective", 2255 + "url": "https://opencollective.com/unified" 2256 + } 2257 + }, 2258 + "node_modules/hast-util-is-element": { 2259 + "version": "3.0.0", 2260 + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", 2261 + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", 2262 + "license": "MIT", 2263 + "dependencies": { 2264 + "@types/hast": "^3.0.0" 2265 + }, 2266 + "funding": { 2267 + "type": "opencollective", 2268 + "url": "https://opencollective.com/unified" 2269 + } 2270 + }, 2271 + "node_modules/hast-util-parse-selector": { 2272 + "version": "4.0.0", 2273 + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", 2274 + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", 2275 + "license": "MIT", 2276 + "dependencies": { 2277 + "@types/hast": "^3.0.0" 2278 + }, 2279 + "funding": { 2280 + "type": "opencollective", 2281 + "url": "https://opencollective.com/unified" 2282 + } 2283 + }, 2284 + "node_modules/hast-util-raw": { 2285 + "version": "9.1.0", 2286 + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", 2287 + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", 2288 + "license": "MIT", 2289 + "dependencies": { 2290 + "@types/hast": "^3.0.0", 2291 + "@types/unist": "^3.0.0", 2292 + "@ungap/structured-clone": "^1.0.0", 2293 + "hast-util-from-parse5": "^8.0.0", 2294 + "hast-util-to-parse5": "^8.0.0", 2295 + "html-void-elements": "^3.0.0", 2296 + "mdast-util-to-hast": "^13.0.0", 2297 + "parse5": "^7.0.0", 2298 + "unist-util-position": "^5.0.0", 2299 + "unist-util-visit": "^5.0.0", 2300 + "vfile": "^6.0.0", 2301 + "web-namespaces": "^2.0.0", 2302 + "zwitch": "^2.0.0" 2303 + }, 2304 + "funding": { 2305 + "type": "opencollective", 2306 + "url": "https://opencollective.com/unified" 2307 + } 2308 + }, 2309 + "node_modules/hast-util-to-html": { 2310 + "version": "9.0.5", 2311 + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", 2312 + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", 2313 + "license": "MIT", 2314 + "dependencies": { 2315 + "@types/hast": "^3.0.0", 2316 + "@types/unist": "^3.0.0", 2317 + "ccount": "^2.0.0", 2318 + "comma-separated-tokens": "^2.0.0", 2319 + "hast-util-whitespace": "^3.0.0", 2320 + "html-void-elements": "^3.0.0", 2321 + "mdast-util-to-hast": "^13.0.0", 2322 + "property-information": "^7.0.0", 2323 + "space-separated-tokens": "^2.0.0", 2324 + "stringify-entities": "^4.0.0", 2325 + "zwitch": "^2.0.4" 2326 + }, 2327 + "funding": { 2328 + "type": "opencollective", 2329 + "url": "https://opencollective.com/unified" 2330 + } 2331 + }, 2332 + "node_modules/hast-util-to-parse5": { 2333 + "version": "8.0.0", 2334 + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", 2335 + "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", 2336 + "license": "MIT", 2337 + "dependencies": { 2338 + "@types/hast": "^3.0.0", 2339 + "comma-separated-tokens": "^2.0.0", 2340 + "devlop": "^1.0.0", 2341 + "property-information": "^6.0.0", 2342 + "space-separated-tokens": "^2.0.0", 2343 + "web-namespaces": "^2.0.0", 2344 + "zwitch": "^2.0.0" 2345 + }, 2346 + "funding": { 2347 + "type": "opencollective", 2348 + "url": "https://opencollective.com/unified" 2349 + } 2350 + }, 2351 + "node_modules/hast-util-to-parse5/node_modules/property-information": { 2352 + "version": "6.5.0", 2353 + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", 2354 + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", 2355 + "license": "MIT", 2356 + "funding": { 2357 + "type": "github", 2358 + "url": "https://github.com/sponsors/wooorm" 2359 + } 2360 + }, 2361 + "node_modules/hast-util-to-text": { 2362 + "version": "4.0.2", 2363 + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", 2364 + "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", 2365 + "license": "MIT", 2366 + "dependencies": { 2367 + "@types/hast": "^3.0.0", 2368 + "@types/unist": "^3.0.0", 2369 + "hast-util-is-element": "^3.0.0", 2370 + "unist-util-find-after": "^5.0.0" 2371 + }, 2372 + "funding": { 2373 + "type": "opencollective", 2374 + "url": "https://opencollective.com/unified" 2375 + } 2376 + }, 2377 + "node_modules/hast-util-whitespace": { 2378 + "version": "3.0.0", 2379 + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", 2380 + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", 2381 + "license": "MIT", 2382 + "dependencies": { 2383 + "@types/hast": "^3.0.0" 2384 + }, 2385 + "funding": { 2386 + "type": "opencollective", 2387 + "url": "https://opencollective.com/unified" 2388 + } 2389 + }, 2390 + "node_modules/hastscript": { 2391 + "version": "9.0.1", 2392 + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", 2393 + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", 2394 + "license": "MIT", 2395 + "dependencies": { 2396 + "@types/hast": "^3.0.0", 2397 + "comma-separated-tokens": "^2.0.0", 2398 + "hast-util-parse-selector": "^4.0.0", 2399 + "property-information": "^7.0.0", 2400 + "space-separated-tokens": "^2.0.0" 2401 + }, 2402 + "funding": { 2403 + "type": "opencollective", 2404 + "url": "https://opencollective.com/unified" 2405 + } 2406 + }, 2407 + "node_modules/html-escaper": { 2408 + "version": "3.0.3", 2409 + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", 2410 + "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", 2411 + "license": "MIT" 2412 + }, 2413 + "node_modules/html-void-elements": { 2414 + "version": "3.0.0", 2415 + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", 2416 + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", 2417 + "license": "MIT", 2418 + "funding": { 2419 + "type": "github", 2420 + "url": "https://github.com/sponsors/wooorm" 2421 + } 2422 + }, 2423 + "node_modules/http-cache-semantics": { 2424 + "version": "4.1.1", 2425 + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", 2426 + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", 2427 + "license": "BSD-2-Clause" 2428 + }, 2429 + "node_modules/import-meta-resolve": { 2430 + "version": "4.1.0", 2431 + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", 2432 + "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", 2433 + "license": "MIT", 2434 + "funding": { 2435 + "type": "github", 2436 + "url": "https://github.com/sponsors/wooorm" 2437 + } 2438 + }, 2439 + "node_modules/iron-webcrypto": { 2440 + "version": "1.2.1", 2441 + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", 2442 + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", 2443 + "license": "MIT", 2444 + "funding": { 2445 + "url": "https://github.com/sponsors/brc-dd" 2446 + } 2447 + }, 2448 + "node_modules/is-arrayish": { 2449 + "version": "0.3.2", 2450 + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 2451 + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 2452 + "license": "MIT", 2453 + "optional": true 2454 + }, 2455 + "node_modules/is-docker": { 2456 + "version": "3.0.0", 2457 + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2458 + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2459 + "license": "MIT", 2460 + "bin": { 2461 + "is-docker": "cli.js" 2462 + }, 2463 + "engines": { 2464 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2465 + }, 2466 + "funding": { 2467 + "url": "https://github.com/sponsors/sindresorhus" 2468 + } 2469 + }, 2470 + "node_modules/is-fullwidth-code-point": { 2471 + "version": "3.0.0", 2472 + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2473 + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2474 + "license": "MIT", 2475 + "engines": { 2476 + "node": ">=8" 2477 + } 2478 + }, 2479 + "node_modules/is-inside-container": { 2480 + "version": "1.0.0", 2481 + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2482 + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2483 + "license": "MIT", 2484 + "dependencies": { 2485 + "is-docker": "^3.0.0" 2486 + }, 2487 + "bin": { 2488 + "is-inside-container": "cli.js" 2489 + }, 2490 + "engines": { 2491 + "node": ">=14.16" 2492 + }, 2493 + "funding": { 2494 + "url": "https://github.com/sponsors/sindresorhus" 2495 + } 2496 + }, 2497 + "node_modules/is-plain-obj": { 2498 + "version": "4.1.0", 2499 + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 2500 + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 2501 + "license": "MIT", 2502 + "engines": { 2503 + "node": ">=12" 2504 + }, 2505 + "funding": { 2506 + "url": "https://github.com/sponsors/sindresorhus" 2507 + } 2508 + }, 2509 + "node_modules/is-wsl": { 2510 + "version": "3.1.0", 2511 + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", 2512 + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", 2513 + "license": "MIT", 2514 + "dependencies": { 2515 + "is-inside-container": "^1.0.0" 2516 + }, 2517 + "engines": { 2518 + "node": ">=16" 2519 + }, 2520 + "funding": { 2521 + "url": "https://github.com/sponsors/sindresorhus" 2522 + } 2523 + }, 2524 + "node_modules/js-yaml": { 2525 + "version": "4.1.0", 2526 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2527 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2528 + "license": "MIT", 2529 + "dependencies": { 2530 + "argparse": "^2.0.1" 2531 + }, 2532 + "bin": { 2533 + "js-yaml": "bin/js-yaml.js" 2534 + } 2535 + }, 2536 + "node_modules/kleur": { 2537 + "version": "4.1.5", 2538 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 2539 + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 2540 + "license": "MIT", 2541 + "engines": { 2542 + "node": ">=6" 2543 + } 2544 + }, 2545 + "node_modules/longest-streak": { 2546 + "version": "3.1.0", 2547 + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", 2548 + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", 2549 + "license": "MIT", 2550 + "funding": { 2551 + "type": "github", 2552 + "url": "https://github.com/sponsors/wooorm" 2553 + } 2554 + }, 2555 + "node_modules/lru-cache": { 2556 + "version": "10.4.3", 2557 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 2558 + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 2559 + "license": "ISC" 2560 + }, 2561 + "node_modules/magic-string": { 2562 + "version": "0.30.17", 2563 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", 2564 + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", 2565 + "license": "MIT", 2566 + "dependencies": { 2567 + "@jridgewell/sourcemap-codec": "^1.5.0" 2568 + } 2569 + }, 2570 + "node_modules/magicast": { 2571 + "version": "0.3.5", 2572 + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz", 2573 + "integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==", 2574 + "license": "MIT", 2575 + "dependencies": { 2576 + "@babel/parser": "^7.25.4", 2577 + "@babel/types": "^7.25.4", 2578 + "source-map-js": "^1.2.0" 2579 + } 2580 + }, 2581 + "node_modules/markdown-table": { 2582 + "version": "3.0.4", 2583 + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", 2584 + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", 2585 + "license": "MIT", 2586 + "funding": { 2587 + "type": "github", 2588 + "url": "https://github.com/sponsors/wooorm" 2589 + } 2590 + }, 2591 + "node_modules/mdast-util-definitions": { 2592 + "version": "6.0.0", 2593 + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz", 2594 + "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==", 2595 + "license": "MIT", 2596 + "dependencies": { 2597 + "@types/mdast": "^4.0.0", 2598 + "@types/unist": "^3.0.0", 2599 + "unist-util-visit": "^5.0.0" 2600 + }, 2601 + "funding": { 2602 + "type": "opencollective", 2603 + "url": "https://opencollective.com/unified" 2604 + } 2605 + }, 2606 + "node_modules/mdast-util-find-and-replace": { 2607 + "version": "3.0.2", 2608 + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", 2609 + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", 2610 + "license": "MIT", 2611 + "dependencies": { 2612 + "@types/mdast": "^4.0.0", 2613 + "escape-string-regexp": "^5.0.0", 2614 + "unist-util-is": "^6.0.0", 2615 + "unist-util-visit-parents": "^6.0.0" 2616 + }, 2617 + "funding": { 2618 + "type": "opencollective", 2619 + "url": "https://opencollective.com/unified" 2620 + } 2621 + }, 2622 + "node_modules/mdast-util-from-markdown": { 2623 + "version": "2.0.2", 2624 + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", 2625 + "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", 2626 + "license": "MIT", 2627 + "dependencies": { 2628 + "@types/mdast": "^4.0.0", 2629 + "@types/unist": "^3.0.0", 2630 + "decode-named-character-reference": "^1.0.0", 2631 + "devlop": "^1.0.0", 2632 + "mdast-util-to-string": "^4.0.0", 2633 + "micromark": "^4.0.0", 2634 + "micromark-util-decode-numeric-character-reference": "^2.0.0", 2635 + "micromark-util-decode-string": "^2.0.0", 2636 + "micromark-util-normalize-identifier": "^2.0.0", 2637 + "micromark-util-symbol": "^2.0.0", 2638 + "micromark-util-types": "^2.0.0", 2639 + "unist-util-stringify-position": "^4.0.0" 2640 + }, 2641 + "funding": { 2642 + "type": "opencollective", 2643 + "url": "https://opencollective.com/unified" 2644 + } 2645 + }, 2646 + "node_modules/mdast-util-gfm": { 2647 + "version": "3.1.0", 2648 + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", 2649 + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", 2650 + "license": "MIT", 2651 + "dependencies": { 2652 + "mdast-util-from-markdown": "^2.0.0", 2653 + "mdast-util-gfm-autolink-literal": "^2.0.0", 2654 + "mdast-util-gfm-footnote": "^2.0.0", 2655 + "mdast-util-gfm-strikethrough": "^2.0.0", 2656 + "mdast-util-gfm-table": "^2.0.0", 2657 + "mdast-util-gfm-task-list-item": "^2.0.0", 2658 + "mdast-util-to-markdown": "^2.0.0" 2659 + }, 2660 + "funding": { 2661 + "type": "opencollective", 2662 + "url": "https://opencollective.com/unified" 2663 + } 2664 + }, 2665 + "node_modules/mdast-util-gfm-autolink-literal": { 2666 + "version": "2.0.1", 2667 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", 2668 + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", 2669 + "license": "MIT", 2670 + "dependencies": { 2671 + "@types/mdast": "^4.0.0", 2672 + "ccount": "^2.0.0", 2673 + "devlop": "^1.0.0", 2674 + "mdast-util-find-and-replace": "^3.0.0", 2675 + "micromark-util-character": "^2.0.0" 2676 + }, 2677 + "funding": { 2678 + "type": "opencollective", 2679 + "url": "https://opencollective.com/unified" 2680 + } 2681 + }, 2682 + "node_modules/mdast-util-gfm-footnote": { 2683 + "version": "2.1.0", 2684 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", 2685 + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", 2686 + "license": "MIT", 2687 + "dependencies": { 2688 + "@types/mdast": "^4.0.0", 2689 + "devlop": "^1.1.0", 2690 + "mdast-util-from-markdown": "^2.0.0", 2691 + "mdast-util-to-markdown": "^2.0.0", 2692 + "micromark-util-normalize-identifier": "^2.0.0" 2693 + }, 2694 + "funding": { 2695 + "type": "opencollective", 2696 + "url": "https://opencollective.com/unified" 2697 + } 2698 + }, 2699 + "node_modules/mdast-util-gfm-strikethrough": { 2700 + "version": "2.0.0", 2701 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", 2702 + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", 2703 + "license": "MIT", 2704 + "dependencies": { 2705 + "@types/mdast": "^4.0.0", 2706 + "mdast-util-from-markdown": "^2.0.0", 2707 + "mdast-util-to-markdown": "^2.0.0" 2708 + }, 2709 + "funding": { 2710 + "type": "opencollective", 2711 + "url": "https://opencollective.com/unified" 2712 + } 2713 + }, 2714 + "node_modules/mdast-util-gfm-table": { 2715 + "version": "2.0.0", 2716 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", 2717 + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", 2718 + "license": "MIT", 2719 + "dependencies": { 2720 + "@types/mdast": "^4.0.0", 2721 + "devlop": "^1.0.0", 2722 + "markdown-table": "^3.0.0", 2723 + "mdast-util-from-markdown": "^2.0.0", 2724 + "mdast-util-to-markdown": "^2.0.0" 2725 + }, 2726 + "funding": { 2727 + "type": "opencollective", 2728 + "url": "https://opencollective.com/unified" 2729 + } 2730 + }, 2731 + "node_modules/mdast-util-gfm-task-list-item": { 2732 + "version": "2.0.0", 2733 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", 2734 + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", 2735 + "license": "MIT", 2736 + "dependencies": { 2737 + "@types/mdast": "^4.0.0", 2738 + "devlop": "^1.0.0", 2739 + "mdast-util-from-markdown": "^2.0.0", 2740 + "mdast-util-to-markdown": "^2.0.0" 2741 + }, 2742 + "funding": { 2743 + "type": "opencollective", 2744 + "url": "https://opencollective.com/unified" 2745 + } 2746 + }, 2747 + "node_modules/mdast-util-phrasing": { 2748 + "version": "4.1.0", 2749 + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", 2750 + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", 2751 + "license": "MIT", 2752 + "dependencies": { 2753 + "@types/mdast": "^4.0.0", 2754 + "unist-util-is": "^6.0.0" 2755 + }, 2756 + "funding": { 2757 + "type": "opencollective", 2758 + "url": "https://opencollective.com/unified" 2759 + } 2760 + }, 2761 + "node_modules/mdast-util-to-hast": { 2762 + "version": "13.2.0", 2763 + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", 2764 + "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", 2765 + "license": "MIT", 2766 + "dependencies": { 2767 + "@types/hast": "^3.0.0", 2768 + "@types/mdast": "^4.0.0", 2769 + "@ungap/structured-clone": "^1.0.0", 2770 + "devlop": "^1.0.0", 2771 + "micromark-util-sanitize-uri": "^2.0.0", 2772 + "trim-lines": "^3.0.0", 2773 + "unist-util-position": "^5.0.0", 2774 + "unist-util-visit": "^5.0.0", 2775 + "vfile": "^6.0.0" 2776 + }, 2777 + "funding": { 2778 + "type": "opencollective", 2779 + "url": "https://opencollective.com/unified" 2780 + } 2781 + }, 2782 + "node_modules/mdast-util-to-markdown": { 2783 + "version": "2.1.2", 2784 + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", 2785 + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", 2786 + "license": "MIT", 2787 + "dependencies": { 2788 + "@types/mdast": "^4.0.0", 2789 + "@types/unist": "^3.0.0", 2790 + "longest-streak": "^3.0.0", 2791 + "mdast-util-phrasing": "^4.0.0", 2792 + "mdast-util-to-string": "^4.0.0", 2793 + "micromark-util-classify-character": "^2.0.0", 2794 + "micromark-util-decode-string": "^2.0.0", 2795 + "unist-util-visit": "^5.0.0", 2796 + "zwitch": "^2.0.0" 2797 + }, 2798 + "funding": { 2799 + "type": "opencollective", 2800 + "url": "https://opencollective.com/unified" 2801 + } 2802 + }, 2803 + "node_modules/mdast-util-to-string": { 2804 + "version": "4.0.0", 2805 + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", 2806 + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", 2807 + "license": "MIT", 2808 + "dependencies": { 2809 + "@types/mdast": "^4.0.0" 2810 + }, 2811 + "funding": { 2812 + "type": "opencollective", 2813 + "url": "https://opencollective.com/unified" 2814 + } 2815 + }, 2816 + "node_modules/mdn-data": { 2817 + "version": "2.12.2", 2818 + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", 2819 + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", 2820 + "license": "CC0-1.0" 2821 + }, 2822 + "node_modules/micromark": { 2823 + "version": "4.0.2", 2824 + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", 2825 + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", 2826 + "funding": [ 2827 + { 2828 + "type": "GitHub Sponsors", 2829 + "url": "https://github.com/sponsors/unifiedjs" 2830 + }, 2831 + { 2832 + "type": "OpenCollective", 2833 + "url": "https://opencollective.com/unified" 2834 + } 2835 + ], 2836 + "license": "MIT", 2837 + "dependencies": { 2838 + "@types/debug": "^4.0.0", 2839 + "debug": "^4.0.0", 2840 + "decode-named-character-reference": "^1.0.0", 2841 + "devlop": "^1.0.0", 2842 + "micromark-core-commonmark": "^2.0.0", 2843 + "micromark-factory-space": "^2.0.0", 2844 + "micromark-util-character": "^2.0.0", 2845 + "micromark-util-chunked": "^2.0.0", 2846 + "micromark-util-combine-extensions": "^2.0.0", 2847 + "micromark-util-decode-numeric-character-reference": "^2.0.0", 2848 + "micromark-util-encode": "^2.0.0", 2849 + "micromark-util-normalize-identifier": "^2.0.0", 2850 + "micromark-util-resolve-all": "^2.0.0", 2851 + "micromark-util-sanitize-uri": "^2.0.0", 2852 + "micromark-util-subtokenize": "^2.0.0", 2853 + "micromark-util-symbol": "^2.0.0", 2854 + "micromark-util-types": "^2.0.0" 2855 + } 2856 + }, 2857 + "node_modules/micromark-core-commonmark": { 2858 + "version": "2.0.3", 2859 + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", 2860 + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", 2861 + "funding": [ 2862 + { 2863 + "type": "GitHub Sponsors", 2864 + "url": "https://github.com/sponsors/unifiedjs" 2865 + }, 2866 + { 2867 + "type": "OpenCollective", 2868 + "url": "https://opencollective.com/unified" 2869 + } 2870 + ], 2871 + "license": "MIT", 2872 + "dependencies": { 2873 + "decode-named-character-reference": "^1.0.0", 2874 + "devlop": "^1.0.0", 2875 + "micromark-factory-destination": "^2.0.0", 2876 + "micromark-factory-label": "^2.0.0", 2877 + "micromark-factory-space": "^2.0.0", 2878 + "micromark-factory-title": "^2.0.0", 2879 + "micromark-factory-whitespace": "^2.0.0", 2880 + "micromark-util-character": "^2.0.0", 2881 + "micromark-util-chunked": "^2.0.0", 2882 + "micromark-util-classify-character": "^2.0.0", 2883 + "micromark-util-html-tag-name": "^2.0.0", 2884 + "micromark-util-normalize-identifier": "^2.0.0", 2885 + "micromark-util-resolve-all": "^2.0.0", 2886 + "micromark-util-subtokenize": "^2.0.0", 2887 + "micromark-util-symbol": "^2.0.0", 2888 + "micromark-util-types": "^2.0.0" 2889 + } 2890 + }, 2891 + "node_modules/micromark-extension-gfm": { 2892 + "version": "3.0.0", 2893 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", 2894 + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", 2895 + "license": "MIT", 2896 + "dependencies": { 2897 + "micromark-extension-gfm-autolink-literal": "^2.0.0", 2898 + "micromark-extension-gfm-footnote": "^2.0.0", 2899 + "micromark-extension-gfm-strikethrough": "^2.0.0", 2900 + "micromark-extension-gfm-table": "^2.0.0", 2901 + "micromark-extension-gfm-tagfilter": "^2.0.0", 2902 + "micromark-extension-gfm-task-list-item": "^2.0.0", 2903 + "micromark-util-combine-extensions": "^2.0.0", 2904 + "micromark-util-types": "^2.0.0" 2905 + }, 2906 + "funding": { 2907 + "type": "opencollective", 2908 + "url": "https://opencollective.com/unified" 2909 + } 2910 + }, 2911 + "node_modules/micromark-extension-gfm-autolink-literal": { 2912 + "version": "2.1.0", 2913 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", 2914 + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", 2915 + "license": "MIT", 2916 + "dependencies": { 2917 + "micromark-util-character": "^2.0.0", 2918 + "micromark-util-sanitize-uri": "^2.0.0", 2919 + "micromark-util-symbol": "^2.0.0", 2920 + "micromark-util-types": "^2.0.0" 2921 + }, 2922 + "funding": { 2923 + "type": "opencollective", 2924 + "url": "https://opencollective.com/unified" 2925 + } 2926 + }, 2927 + "node_modules/micromark-extension-gfm-footnote": { 2928 + "version": "2.1.0", 2929 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", 2930 + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", 2931 + "license": "MIT", 2932 + "dependencies": { 2933 + "devlop": "^1.0.0", 2934 + "micromark-core-commonmark": "^2.0.0", 2935 + "micromark-factory-space": "^2.0.0", 2936 + "micromark-util-character": "^2.0.0", 2937 + "micromark-util-normalize-identifier": "^2.0.0", 2938 + "micromark-util-sanitize-uri": "^2.0.0", 2939 + "micromark-util-symbol": "^2.0.0", 2940 + "micromark-util-types": "^2.0.0" 2941 + }, 2942 + "funding": { 2943 + "type": "opencollective", 2944 + "url": "https://opencollective.com/unified" 2945 + } 2946 + }, 2947 + "node_modules/micromark-extension-gfm-strikethrough": { 2948 + "version": "2.1.0", 2949 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", 2950 + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", 2951 + "license": "MIT", 2952 + "dependencies": { 2953 + "devlop": "^1.0.0", 2954 + "micromark-util-chunked": "^2.0.0", 2955 + "micromark-util-classify-character": "^2.0.0", 2956 + "micromark-util-resolve-all": "^2.0.0", 2957 + "micromark-util-symbol": "^2.0.0", 2958 + "micromark-util-types": "^2.0.0" 2959 + }, 2960 + "funding": { 2961 + "type": "opencollective", 2962 + "url": "https://opencollective.com/unified" 2963 + } 2964 + }, 2965 + "node_modules/micromark-extension-gfm-table": { 2966 + "version": "2.1.1", 2967 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", 2968 + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", 2969 + "license": "MIT", 2970 + "dependencies": { 2971 + "devlop": "^1.0.0", 2972 + "micromark-factory-space": "^2.0.0", 2973 + "micromark-util-character": "^2.0.0", 2974 + "micromark-util-symbol": "^2.0.0", 2975 + "micromark-util-types": "^2.0.0" 2976 + }, 2977 + "funding": { 2978 + "type": "opencollective", 2979 + "url": "https://opencollective.com/unified" 2980 + } 2981 + }, 2982 + "node_modules/micromark-extension-gfm-tagfilter": { 2983 + "version": "2.0.0", 2984 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", 2985 + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", 2986 + "license": "MIT", 2987 + "dependencies": { 2988 + "micromark-util-types": "^2.0.0" 2989 + }, 2990 + "funding": { 2991 + "type": "opencollective", 2992 + "url": "https://opencollective.com/unified" 2993 + } 2994 + }, 2995 + "node_modules/micromark-extension-gfm-task-list-item": { 2996 + "version": "2.1.0", 2997 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", 2998 + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", 2999 + "license": "MIT", 3000 + "dependencies": { 3001 + "devlop": "^1.0.0", 3002 + "micromark-factory-space": "^2.0.0", 3003 + "micromark-util-character": "^2.0.0", 3004 + "micromark-util-symbol": "^2.0.0", 3005 + "micromark-util-types": "^2.0.0" 3006 + }, 3007 + "funding": { 3008 + "type": "opencollective", 3009 + "url": "https://opencollective.com/unified" 3010 + } 3011 + }, 3012 + "node_modules/micromark-factory-destination": { 3013 + "version": "2.0.1", 3014 + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", 3015 + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", 3016 + "funding": [ 3017 + { 3018 + "type": "GitHub Sponsors", 3019 + "url": "https://github.com/sponsors/unifiedjs" 3020 + }, 3021 + { 3022 + "type": "OpenCollective", 3023 + "url": "https://opencollective.com/unified" 3024 + } 3025 + ], 3026 + "license": "MIT", 3027 + "dependencies": { 3028 + "micromark-util-character": "^2.0.0", 3029 + "micromark-util-symbol": "^2.0.0", 3030 + "micromark-util-types": "^2.0.0" 3031 + } 3032 + }, 3033 + "node_modules/micromark-factory-label": { 3034 + "version": "2.0.1", 3035 + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", 3036 + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", 3037 + "funding": [ 3038 + { 3039 + "type": "GitHub Sponsors", 3040 + "url": "https://github.com/sponsors/unifiedjs" 3041 + }, 3042 + { 3043 + "type": "OpenCollective", 3044 + "url": "https://opencollective.com/unified" 3045 + } 3046 + ], 3047 + "license": "MIT", 3048 + "dependencies": { 3049 + "devlop": "^1.0.0", 3050 + "micromark-util-character": "^2.0.0", 3051 + "micromark-util-symbol": "^2.0.0", 3052 + "micromark-util-types": "^2.0.0" 3053 + } 3054 + }, 3055 + "node_modules/micromark-factory-space": { 3056 + "version": "2.0.1", 3057 + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", 3058 + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", 3059 + "funding": [ 3060 + { 3061 + "type": "GitHub Sponsors", 3062 + "url": "https://github.com/sponsors/unifiedjs" 3063 + }, 3064 + { 3065 + "type": "OpenCollective", 3066 + "url": "https://opencollective.com/unified" 3067 + } 3068 + ], 3069 + "license": "MIT", 3070 + "dependencies": { 3071 + "micromark-util-character": "^2.0.0", 3072 + "micromark-util-types": "^2.0.0" 3073 + } 3074 + }, 3075 + "node_modules/micromark-factory-title": { 3076 + "version": "2.0.1", 3077 + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", 3078 + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", 3079 + "funding": [ 3080 + { 3081 + "type": "GitHub Sponsors", 3082 + "url": "https://github.com/sponsors/unifiedjs" 3083 + }, 3084 + { 3085 + "type": "OpenCollective", 3086 + "url": "https://opencollective.com/unified" 3087 + } 3088 + ], 3089 + "license": "MIT", 3090 + "dependencies": { 3091 + "micromark-factory-space": "^2.0.0", 3092 + "micromark-util-character": "^2.0.0", 3093 + "micromark-util-symbol": "^2.0.0", 3094 + "micromark-util-types": "^2.0.0" 3095 + } 3096 + }, 3097 + "node_modules/micromark-factory-whitespace": { 3098 + "version": "2.0.1", 3099 + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", 3100 + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", 3101 + "funding": [ 3102 + { 3103 + "type": "GitHub Sponsors", 3104 + "url": "https://github.com/sponsors/unifiedjs" 3105 + }, 3106 + { 3107 + "type": "OpenCollective", 3108 + "url": "https://opencollective.com/unified" 3109 + } 3110 + ], 3111 + "license": "MIT", 3112 + "dependencies": { 3113 + "micromark-factory-space": "^2.0.0", 3114 + "micromark-util-character": "^2.0.0", 3115 + "micromark-util-symbol": "^2.0.0", 3116 + "micromark-util-types": "^2.0.0" 3117 + } 3118 + }, 3119 + "node_modules/micromark-util-character": { 3120 + "version": "2.1.1", 3121 + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", 3122 + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", 3123 + "funding": [ 3124 + { 3125 + "type": "GitHub Sponsors", 3126 + "url": "https://github.com/sponsors/unifiedjs" 3127 + }, 3128 + { 3129 + "type": "OpenCollective", 3130 + "url": "https://opencollective.com/unified" 3131 + } 3132 + ], 3133 + "license": "MIT", 3134 + "dependencies": { 3135 + "micromark-util-symbol": "^2.0.0", 3136 + "micromark-util-types": "^2.0.0" 3137 + } 3138 + }, 3139 + "node_modules/micromark-util-chunked": { 3140 + "version": "2.0.1", 3141 + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", 3142 + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", 3143 + "funding": [ 3144 + { 3145 + "type": "GitHub Sponsors", 3146 + "url": "https://github.com/sponsors/unifiedjs" 3147 + }, 3148 + { 3149 + "type": "OpenCollective", 3150 + "url": "https://opencollective.com/unified" 3151 + } 3152 + ], 3153 + "license": "MIT", 3154 + "dependencies": { 3155 + "micromark-util-symbol": "^2.0.0" 3156 + } 3157 + }, 3158 + "node_modules/micromark-util-classify-character": { 3159 + "version": "2.0.1", 3160 + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", 3161 + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", 3162 + "funding": [ 3163 + { 3164 + "type": "GitHub Sponsors", 3165 + "url": "https://github.com/sponsors/unifiedjs" 3166 + }, 3167 + { 3168 + "type": "OpenCollective", 3169 + "url": "https://opencollective.com/unified" 3170 + } 3171 + ], 3172 + "license": "MIT", 3173 + "dependencies": { 3174 + "micromark-util-character": "^2.0.0", 3175 + "micromark-util-symbol": "^2.0.0", 3176 + "micromark-util-types": "^2.0.0" 3177 + } 3178 + }, 3179 + "node_modules/micromark-util-combine-extensions": { 3180 + "version": "2.0.1", 3181 + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", 3182 + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", 3183 + "funding": [ 3184 + { 3185 + "type": "GitHub Sponsors", 3186 + "url": "https://github.com/sponsors/unifiedjs" 3187 + }, 3188 + { 3189 + "type": "OpenCollective", 3190 + "url": "https://opencollective.com/unified" 3191 + } 3192 + ], 3193 + "license": "MIT", 3194 + "dependencies": { 3195 + "micromark-util-chunked": "^2.0.0", 3196 + "micromark-util-types": "^2.0.0" 3197 + } 3198 + }, 3199 + "node_modules/micromark-util-decode-numeric-character-reference": { 3200 + "version": "2.0.2", 3201 + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", 3202 + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", 3203 + "funding": [ 3204 + { 3205 + "type": "GitHub Sponsors", 3206 + "url": "https://github.com/sponsors/unifiedjs" 3207 + }, 3208 + { 3209 + "type": "OpenCollective", 3210 + "url": "https://opencollective.com/unified" 3211 + } 3212 + ], 3213 + "license": "MIT", 3214 + "dependencies": { 3215 + "micromark-util-symbol": "^2.0.0" 3216 + } 3217 + }, 3218 + "node_modules/micromark-util-decode-string": { 3219 + "version": "2.0.1", 3220 + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", 3221 + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", 3222 + "funding": [ 3223 + { 3224 + "type": "GitHub Sponsors", 3225 + "url": "https://github.com/sponsors/unifiedjs" 3226 + }, 3227 + { 3228 + "type": "OpenCollective", 3229 + "url": "https://opencollective.com/unified" 3230 + } 3231 + ], 3232 + "license": "MIT", 3233 + "dependencies": { 3234 + "decode-named-character-reference": "^1.0.0", 3235 + "micromark-util-character": "^2.0.0", 3236 + "micromark-util-decode-numeric-character-reference": "^2.0.0", 3237 + "micromark-util-symbol": "^2.0.0" 3238 + } 3239 + }, 3240 + "node_modules/micromark-util-encode": { 3241 + "version": "2.0.1", 3242 + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", 3243 + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", 3244 + "funding": [ 3245 + { 3246 + "type": "GitHub Sponsors", 3247 + "url": "https://github.com/sponsors/unifiedjs" 3248 + }, 3249 + { 3250 + "type": "OpenCollective", 3251 + "url": "https://opencollective.com/unified" 3252 + } 3253 + ], 3254 + "license": "MIT" 3255 + }, 3256 + "node_modules/micromark-util-html-tag-name": { 3257 + "version": "2.0.1", 3258 + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", 3259 + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", 3260 + "funding": [ 3261 + { 3262 + "type": "GitHub Sponsors", 3263 + "url": "https://github.com/sponsors/unifiedjs" 3264 + }, 3265 + { 3266 + "type": "OpenCollective", 3267 + "url": "https://opencollective.com/unified" 3268 + } 3269 + ], 3270 + "license": "MIT" 3271 + }, 3272 + "node_modules/micromark-util-normalize-identifier": { 3273 + "version": "2.0.1", 3274 + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", 3275 + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", 3276 + "funding": [ 3277 + { 3278 + "type": "GitHub Sponsors", 3279 + "url": "https://github.com/sponsors/unifiedjs" 3280 + }, 3281 + { 3282 + "type": "OpenCollective", 3283 + "url": "https://opencollective.com/unified" 3284 + } 3285 + ], 3286 + "license": "MIT", 3287 + "dependencies": { 3288 + "micromark-util-symbol": "^2.0.0" 3289 + } 3290 + }, 3291 + "node_modules/micromark-util-resolve-all": { 3292 + "version": "2.0.1", 3293 + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", 3294 + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", 3295 + "funding": [ 3296 + { 3297 + "type": "GitHub Sponsors", 3298 + "url": "https://github.com/sponsors/unifiedjs" 3299 + }, 3300 + { 3301 + "type": "OpenCollective", 3302 + "url": "https://opencollective.com/unified" 3303 + } 3304 + ], 3305 + "license": "MIT", 3306 + "dependencies": { 3307 + "micromark-util-types": "^2.0.0" 3308 + } 3309 + }, 3310 + "node_modules/micromark-util-sanitize-uri": { 3311 + "version": "2.0.1", 3312 + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", 3313 + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", 3314 + "funding": [ 3315 + { 3316 + "type": "GitHub Sponsors", 3317 + "url": "https://github.com/sponsors/unifiedjs" 3318 + }, 3319 + { 3320 + "type": "OpenCollective", 3321 + "url": "https://opencollective.com/unified" 3322 + } 3323 + ], 3324 + "license": "MIT", 3325 + "dependencies": { 3326 + "micromark-util-character": "^2.0.0", 3327 + "micromark-util-encode": "^2.0.0", 3328 + "micromark-util-symbol": "^2.0.0" 3329 + } 3330 + }, 3331 + "node_modules/micromark-util-subtokenize": { 3332 + "version": "2.1.0", 3333 + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", 3334 + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", 3335 + "funding": [ 3336 + { 3337 + "type": "GitHub Sponsors", 3338 + "url": "https://github.com/sponsors/unifiedjs" 3339 + }, 3340 + { 3341 + "type": "OpenCollective", 3342 + "url": "https://opencollective.com/unified" 3343 + } 3344 + ], 3345 + "license": "MIT", 3346 + "dependencies": { 3347 + "devlop": "^1.0.0", 3348 + "micromark-util-chunked": "^2.0.0", 3349 + "micromark-util-symbol": "^2.0.0", 3350 + "micromark-util-types": "^2.0.0" 3351 + } 3352 + }, 3353 + "node_modules/micromark-util-symbol": { 3354 + "version": "2.0.1", 3355 + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", 3356 + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", 3357 + "funding": [ 3358 + { 3359 + "type": "GitHub Sponsors", 3360 + "url": "https://github.com/sponsors/unifiedjs" 3361 + }, 3362 + { 3363 + "type": "OpenCollective", 3364 + "url": "https://opencollective.com/unified" 3365 + } 3366 + ], 3367 + "license": "MIT" 3368 + }, 3369 + "node_modules/micromark-util-types": { 3370 + "version": "2.0.2", 3371 + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", 3372 + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", 3373 + "funding": [ 3374 + { 3375 + "type": "GitHub Sponsors", 3376 + "url": "https://github.com/sponsors/unifiedjs" 3377 + }, 3378 + { 3379 + "type": "OpenCollective", 3380 + "url": "https://opencollective.com/unified" 3381 + } 3382 + ], 3383 + "license": "MIT" 3384 + }, 3385 + "node_modules/mrmime": { 3386 + "version": "2.0.1", 3387 + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 3388 + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 3389 + "license": "MIT", 3390 + "engines": { 3391 + "node": ">=10" 3392 + } 3393 + }, 3394 + "node_modules/ms": { 3395 + "version": "2.1.3", 3396 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 3397 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3398 + "license": "MIT" 3399 + }, 3400 + "node_modules/nanoid": { 3401 + "version": "3.3.11", 3402 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 3403 + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 3404 + "funding": [ 3405 + { 3406 + "type": "github", 3407 + "url": "https://github.com/sponsors/ai" 3408 + } 3409 + ], 3410 + "license": "MIT", 3411 + "bin": { 3412 + "nanoid": "bin/nanoid.cjs" 3413 + }, 3414 + "engines": { 3415 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3416 + } 3417 + }, 3418 + "node_modules/neotraverse": { 3419 + "version": "0.6.18", 3420 + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", 3421 + "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", 3422 + "license": "MIT", 3423 + "engines": { 3424 + "node": ">= 10" 3425 + } 3426 + }, 3427 + "node_modules/nlcst-to-string": { 3428 + "version": "4.0.0", 3429 + "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz", 3430 + "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==", 3431 + "license": "MIT", 3432 + "dependencies": { 3433 + "@types/nlcst": "^2.0.0" 3434 + }, 3435 + "funding": { 3436 + "type": "opencollective", 3437 + "url": "https://opencollective.com/unified" 3438 + } 3439 + }, 3440 + "node_modules/node-fetch": { 3441 + "version": "2.7.0", 3442 + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 3443 + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 3444 + "license": "MIT", 3445 + "dependencies": { 3446 + "whatwg-url": "^5.0.0" 3447 + }, 3448 + "engines": { 3449 + "node": "4.x || >=6.0.0" 3450 + }, 3451 + "peerDependencies": { 3452 + "encoding": "^0.1.0" 3453 + }, 3454 + "peerDependenciesMeta": { 3455 + "encoding": { 3456 + "optional": true 3457 + } 3458 + } 3459 + }, 3460 + "node_modules/node-fetch-native": { 3461 + "version": "1.6.6", 3462 + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.6.tgz", 3463 + "integrity": "sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==", 3464 + "license": "MIT" 3465 + }, 3466 + "node_modules/node-mock-http": { 3467 + "version": "1.0.0", 3468 + "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.0.tgz", 3469 + "integrity": "sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==", 3470 + "license": "MIT" 3471 + }, 3472 + "node_modules/normalize-path": { 3473 + "version": "3.0.0", 3474 + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3475 + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3476 + "license": "MIT", 3477 + "engines": { 3478 + "node": ">=0.10.0" 3479 + } 3480 + }, 3481 + "node_modules/ofetch": { 3482 + "version": "1.4.1", 3483 + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.4.1.tgz", 3484 + "integrity": "sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==", 3485 + "license": "MIT", 3486 + "dependencies": { 3487 + "destr": "^2.0.3", 3488 + "node-fetch-native": "^1.6.4", 3489 + "ufo": "^1.5.4" 3490 + } 3491 + }, 3492 + "node_modules/ohash": { 3493 + "version": "2.0.11", 3494 + "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", 3495 + "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", 3496 + "license": "MIT" 3497 + }, 3498 + "node_modules/oniguruma-parser": { 3499 + "version": "0.12.1", 3500 + "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz", 3501 + "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==", 3502 + "license": "MIT" 3503 + }, 3504 + "node_modules/oniguruma-to-es": { 3505 + "version": "4.3.3", 3506 + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz", 3507 + "integrity": "sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==", 3508 + "license": "MIT", 3509 + "dependencies": { 3510 + "oniguruma-parser": "^0.12.1", 3511 + "regex": "^6.0.1", 3512 + "regex-recursion": "^6.0.2" 3513 + } 3514 + }, 3515 + "node_modules/p-limit": { 3516 + "version": "6.2.0", 3517 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-6.2.0.tgz", 3518 + "integrity": "sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==", 3519 + "license": "MIT", 3520 + "dependencies": { 3521 + "yocto-queue": "^1.1.1" 3522 + }, 3523 + "engines": { 3524 + "node": ">=18" 3525 + }, 3526 + "funding": { 3527 + "url": "https://github.com/sponsors/sindresorhus" 3528 + } 3529 + }, 3530 + "node_modules/p-queue": { 3531 + "version": "8.1.0", 3532 + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.0.tgz", 3533 + "integrity": "sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==", 3534 + "license": "MIT", 3535 + "dependencies": { 3536 + "eventemitter3": "^5.0.1", 3537 + "p-timeout": "^6.1.2" 3538 + }, 3539 + "engines": { 3540 + "node": ">=18" 3541 + }, 3542 + "funding": { 3543 + "url": "https://github.com/sponsors/sindresorhus" 3544 + } 3545 + }, 3546 + "node_modules/p-timeout": { 3547 + "version": "6.1.4", 3548 + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", 3549 + "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", 3550 + "license": "MIT", 3551 + "engines": { 3552 + "node": ">=14.16" 3553 + }, 3554 + "funding": { 3555 + "url": "https://github.com/sponsors/sindresorhus" 3556 + } 3557 + }, 3558 + "node_modules/package-manager-detector": { 3559 + "version": "1.2.0", 3560 + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.2.0.tgz", 3561 + "integrity": "sha512-PutJepsOtsqVfUsxCzgTTpyXmiAgvKptIgY4th5eq5UXXFhj5PxfQ9hnGkypMeovpAvVshFRItoFHYO18TCOqA==", 3562 + "license": "MIT" 3563 + }, 3564 + "node_modules/pako": { 3565 + "version": "0.2.9", 3566 + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", 3567 + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", 3568 + "license": "MIT" 3569 + }, 3570 + "node_modules/parse-latin": { 3571 + "version": "7.0.0", 3572 + "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", 3573 + "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==", 3574 + "license": "MIT", 3575 + "dependencies": { 3576 + "@types/nlcst": "^2.0.0", 3577 + "@types/unist": "^3.0.0", 3578 + "nlcst-to-string": "^4.0.0", 3579 + "unist-util-modify-children": "^4.0.0", 3580 + "unist-util-visit-children": "^3.0.0", 3581 + "vfile": "^6.0.0" 3582 + }, 3583 + "funding": { 3584 + "type": "github", 3585 + "url": "https://github.com/sponsors/wooorm" 3586 + } 3587 + }, 3588 + "node_modules/parse5": { 3589 + "version": "7.3.0", 3590 + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", 3591 + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", 3592 + "license": "MIT", 3593 + "dependencies": { 3594 + "entities": "^6.0.0" 3595 + }, 3596 + "funding": { 3597 + "url": "https://github.com/inikulin/parse5?sponsor=1" 3598 + } 3599 + }, 3600 + "node_modules/picocolors": { 3601 + "version": "1.1.1", 3602 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3603 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3604 + "license": "ISC" 3605 + }, 3606 + "node_modules/picomatch": { 3607 + "version": "4.0.2", 3608 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3609 + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 3610 + "license": "MIT", 3611 + "engines": { 3612 + "node": ">=12" 3613 + }, 3614 + "funding": { 3615 + "url": "https://github.com/sponsors/jonschlinkert" 3616 + } 3617 + }, 3618 + "node_modules/postcss": { 3619 + "version": "8.5.3", 3620 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 3621 + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 3622 + "funding": [ 3623 + { 3624 + "type": "opencollective", 3625 + "url": "https://opencollective.com/postcss/" 3626 + }, 3627 + { 3628 + "type": "tidelift", 3629 + "url": "https://tidelift.com/funding/github/npm/postcss" 3630 + }, 3631 + { 3632 + "type": "github", 3633 + "url": "https://github.com/sponsors/ai" 3634 + } 3635 + ], 3636 + "license": "MIT", 3637 + "dependencies": { 3638 + "nanoid": "^3.3.8", 3639 + "picocolors": "^1.1.1", 3640 + "source-map-js": "^1.2.1" 3641 + }, 3642 + "engines": { 3643 + "node": "^10 || ^12 || >=14" 3644 + } 3645 + }, 3646 + "node_modules/prismjs": { 3647 + "version": "1.30.0", 3648 + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", 3649 + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", 3650 + "license": "MIT", 3651 + "engines": { 3652 + "node": ">=6" 3653 + } 3654 + }, 3655 + "node_modules/prompts": { 3656 + "version": "2.4.2", 3657 + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3658 + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3659 + "license": "MIT", 3660 + "dependencies": { 3661 + "kleur": "^3.0.3", 3662 + "sisteransi": "^1.0.5" 3663 + }, 3664 + "engines": { 3665 + "node": ">= 6" 3666 + } 3667 + }, 3668 + "node_modules/prompts/node_modules/kleur": { 3669 + "version": "3.0.3", 3670 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 3671 + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 3672 + "license": "MIT", 3673 + "engines": { 3674 + "node": ">=6" 3675 + } 3676 + }, 3677 + "node_modules/property-information": { 3678 + "version": "7.0.0", 3679 + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.0.0.tgz", 3680 + "integrity": "sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==", 3681 + "license": "MIT", 3682 + "funding": { 3683 + "type": "github", 3684 + "url": "https://github.com/sponsors/wooorm" 3685 + } 3686 + }, 3687 + "node_modules/radix3": { 3688 + "version": "1.1.2", 3689 + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", 3690 + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", 3691 + "license": "MIT" 3692 + }, 3693 + "node_modules/readdirp": { 3694 + "version": "4.1.2", 3695 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 3696 + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 3697 + "license": "MIT", 3698 + "engines": { 3699 + "node": ">= 14.18.0" 3700 + }, 3701 + "funding": { 3702 + "type": "individual", 3703 + "url": "https://paulmillr.com/funding/" 3704 + } 3705 + }, 3706 + "node_modules/regex": { 3707 + "version": "6.0.1", 3708 + "resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz", 3709 + "integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==", 3710 + "license": "MIT", 3711 + "dependencies": { 3712 + "regex-utilities": "^2.3.0" 3713 + } 3714 + }, 3715 + "node_modules/regex-recursion": { 3716 + "version": "6.0.2", 3717 + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", 3718 + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", 3719 + "license": "MIT", 3720 + "dependencies": { 3721 + "regex-utilities": "^2.3.0" 3722 + } 3723 + }, 3724 + "node_modules/regex-utilities": { 3725 + "version": "2.3.0", 3726 + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", 3727 + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", 3728 + "license": "MIT" 3729 + }, 3730 + "node_modules/rehype": { 3731 + "version": "13.0.2", 3732 + "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz", 3733 + "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==", 3734 + "license": "MIT", 3735 + "dependencies": { 3736 + "@types/hast": "^3.0.0", 3737 + "rehype-parse": "^9.0.0", 3738 + "rehype-stringify": "^10.0.0", 3739 + "unified": "^11.0.0" 3740 + }, 3741 + "funding": { 3742 + "type": "opencollective", 3743 + "url": "https://opencollective.com/unified" 3744 + } 3745 + }, 3746 + "node_modules/rehype-parse": { 3747 + "version": "9.0.1", 3748 + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz", 3749 + "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", 3750 + "license": "MIT", 3751 + "dependencies": { 3752 + "@types/hast": "^3.0.0", 3753 + "hast-util-from-html": "^2.0.0", 3754 + "unified": "^11.0.0" 3755 + }, 3756 + "funding": { 3757 + "type": "opencollective", 3758 + "url": "https://opencollective.com/unified" 3759 + } 3760 + }, 3761 + "node_modules/rehype-raw": { 3762 + "version": "7.0.0", 3763 + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", 3764 + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", 3765 + "license": "MIT", 3766 + "dependencies": { 3767 + "@types/hast": "^3.0.0", 3768 + "hast-util-raw": "^9.0.0", 3769 + "vfile": "^6.0.0" 3770 + }, 3771 + "funding": { 3772 + "type": "opencollective", 3773 + "url": "https://opencollective.com/unified" 3774 + } 3775 + }, 3776 + "node_modules/rehype-stringify": { 3777 + "version": "10.0.1", 3778 + "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", 3779 + "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", 3780 + "license": "MIT", 3781 + "dependencies": { 3782 + "@types/hast": "^3.0.0", 3783 + "hast-util-to-html": "^9.0.0", 3784 + "unified": "^11.0.0" 3785 + }, 3786 + "funding": { 3787 + "type": "opencollective", 3788 + "url": "https://opencollective.com/unified" 3789 + } 3790 + }, 3791 + "node_modules/remark-gfm": { 3792 + "version": "4.0.1", 3793 + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", 3794 + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", 3795 + "license": "MIT", 3796 + "dependencies": { 3797 + "@types/mdast": "^4.0.0", 3798 + "mdast-util-gfm": "^3.0.0", 3799 + "micromark-extension-gfm": "^3.0.0", 3800 + "remark-parse": "^11.0.0", 3801 + "remark-stringify": "^11.0.0", 3802 + "unified": "^11.0.0" 3803 + }, 3804 + "funding": { 3805 + "type": "opencollective", 3806 + "url": "https://opencollective.com/unified" 3807 + } 3808 + }, 3809 + "node_modules/remark-parse": { 3810 + "version": "11.0.0", 3811 + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", 3812 + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", 3813 + "license": "MIT", 3814 + "dependencies": { 3815 + "@types/mdast": "^4.0.0", 3816 + "mdast-util-from-markdown": "^2.0.0", 3817 + "micromark-util-types": "^2.0.0", 3818 + "unified": "^11.0.0" 3819 + }, 3820 + "funding": { 3821 + "type": "opencollective", 3822 + "url": "https://opencollective.com/unified" 3823 + } 3824 + }, 3825 + "node_modules/remark-rehype": { 3826 + "version": "11.1.2", 3827 + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", 3828 + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", 3829 + "license": "MIT", 3830 + "dependencies": { 3831 + "@types/hast": "^3.0.0", 3832 + "@types/mdast": "^4.0.0", 3833 + "mdast-util-to-hast": "^13.0.0", 3834 + "unified": "^11.0.0", 3835 + "vfile": "^6.0.0" 3836 + }, 3837 + "funding": { 3838 + "type": "opencollective", 3839 + "url": "https://opencollective.com/unified" 3840 + } 3841 + }, 3842 + "node_modules/remark-smartypants": { 3843 + "version": "3.0.2", 3844 + "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz", 3845 + "integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==", 3846 + "license": "MIT", 3847 + "dependencies": { 3848 + "retext": "^9.0.0", 3849 + "retext-smartypants": "^6.0.0", 3850 + "unified": "^11.0.4", 3851 + "unist-util-visit": "^5.0.0" 3852 + }, 3853 + "engines": { 3854 + "node": ">=16.0.0" 3855 + } 3856 + }, 3857 + "node_modules/remark-stringify": { 3858 + "version": "11.0.0", 3859 + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", 3860 + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", 3861 + "license": "MIT", 3862 + "dependencies": { 3863 + "@types/mdast": "^4.0.0", 3864 + "mdast-util-to-markdown": "^2.0.0", 3865 + "unified": "^11.0.0" 3866 + }, 3867 + "funding": { 3868 + "type": "opencollective", 3869 + "url": "https://opencollective.com/unified" 3870 + } 3871 + }, 3872 + "node_modules/restructure": { 3873 + "version": "3.0.2", 3874 + "resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz", 3875 + "integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==", 3876 + "license": "MIT" 3877 + }, 3878 + "node_modules/retext": { 3879 + "version": "9.0.0", 3880 + "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", 3881 + "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", 3882 + "license": "MIT", 3883 + "dependencies": { 3884 + "@types/nlcst": "^2.0.0", 3885 + "retext-latin": "^4.0.0", 3886 + "retext-stringify": "^4.0.0", 3887 + "unified": "^11.0.0" 3888 + }, 3889 + "funding": { 3890 + "type": "opencollective", 3891 + "url": "https://opencollective.com/unified" 3892 + } 3893 + }, 3894 + "node_modules/retext-latin": { 3895 + "version": "4.0.0", 3896 + "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz", 3897 + "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==", 3898 + "license": "MIT", 3899 + "dependencies": { 3900 + "@types/nlcst": "^2.0.0", 3901 + "parse-latin": "^7.0.0", 3902 + "unified": "^11.0.0" 3903 + }, 3904 + "funding": { 3905 + "type": "opencollective", 3906 + "url": "https://opencollective.com/unified" 3907 + } 3908 + }, 3909 + "node_modules/retext-smartypants": { 3910 + "version": "6.2.0", 3911 + "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz", 3912 + "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==", 3913 + "license": "MIT", 3914 + "dependencies": { 3915 + "@types/nlcst": "^2.0.0", 3916 + "nlcst-to-string": "^4.0.0", 3917 + "unist-util-visit": "^5.0.0" 3918 + }, 3919 + "funding": { 3920 + "type": "opencollective", 3921 + "url": "https://opencollective.com/unified" 3922 + } 3923 + }, 3924 + "node_modules/retext-stringify": { 3925 + "version": "4.0.0", 3926 + "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz", 3927 + "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==", 3928 + "license": "MIT", 3929 + "dependencies": { 3930 + "@types/nlcst": "^2.0.0", 3931 + "nlcst-to-string": "^4.0.0", 3932 + "unified": "^11.0.0" 3933 + }, 3934 + "funding": { 3935 + "type": "opencollective", 3936 + "url": "https://opencollective.com/unified" 3937 + } 3938 + }, 3939 + "node_modules/rollup": { 3940 + "version": "4.40.1", 3941 + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.1.tgz", 3942 + "integrity": "sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==", 3943 + "license": "MIT", 3944 + "dependencies": { 3945 + "@types/estree": "1.0.7" 3946 + }, 3947 + "bin": { 3948 + "rollup": "dist/bin/rollup" 3949 + }, 3950 + "engines": { 3951 + "node": ">=18.0.0", 3952 + "npm": ">=8.0.0" 3953 + }, 3954 + "optionalDependencies": { 3955 + "@rollup/rollup-android-arm-eabi": "4.40.1", 3956 + "@rollup/rollup-android-arm64": "4.40.1", 3957 + "@rollup/rollup-darwin-arm64": "4.40.1", 3958 + "@rollup/rollup-darwin-x64": "4.40.1", 3959 + "@rollup/rollup-freebsd-arm64": "4.40.1", 3960 + "@rollup/rollup-freebsd-x64": "4.40.1", 3961 + "@rollup/rollup-linux-arm-gnueabihf": "4.40.1", 3962 + "@rollup/rollup-linux-arm-musleabihf": "4.40.1", 3963 + "@rollup/rollup-linux-arm64-gnu": "4.40.1", 3964 + "@rollup/rollup-linux-arm64-musl": "4.40.1", 3965 + "@rollup/rollup-linux-loongarch64-gnu": "4.40.1", 3966 + "@rollup/rollup-linux-powerpc64le-gnu": "4.40.1", 3967 + "@rollup/rollup-linux-riscv64-gnu": "4.40.1", 3968 + "@rollup/rollup-linux-riscv64-musl": "4.40.1", 3969 + "@rollup/rollup-linux-s390x-gnu": "4.40.1", 3970 + "@rollup/rollup-linux-x64-gnu": "4.40.1", 3971 + "@rollup/rollup-linux-x64-musl": "4.40.1", 3972 + "@rollup/rollup-win32-arm64-msvc": "4.40.1", 3973 + "@rollup/rollup-win32-ia32-msvc": "4.40.1", 3974 + "@rollup/rollup-win32-x64-msvc": "4.40.1", 3975 + "fsevents": "~2.3.2" 3976 + } 3977 + }, 3978 + "node_modules/semver": { 3979 + "version": "7.7.1", 3980 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 3981 + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 3982 + "license": "ISC", 3983 + "bin": { 3984 + "semver": "bin/semver.js" 3985 + }, 3986 + "engines": { 3987 + "node": ">=10" 3988 + } 3989 + }, 3990 + "node_modules/sharp": { 3991 + "version": "0.33.5", 3992 + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", 3993 + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", 3994 + "hasInstallScript": true, 3995 + "license": "Apache-2.0", 3996 + "optional": true, 3997 + "dependencies": { 3998 + "color": "^4.2.3", 3999 + "detect-libc": "^2.0.3", 4000 + "semver": "^7.6.3" 4001 + }, 4002 + "engines": { 4003 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 4004 + }, 4005 + "funding": { 4006 + "url": "https://opencollective.com/libvips" 4007 + }, 4008 + "optionalDependencies": { 4009 + "@img/sharp-darwin-arm64": "0.33.5", 4010 + "@img/sharp-darwin-x64": "0.33.5", 4011 + "@img/sharp-libvips-darwin-arm64": "1.0.4", 4012 + "@img/sharp-libvips-darwin-x64": "1.0.4", 4013 + "@img/sharp-libvips-linux-arm": "1.0.5", 4014 + "@img/sharp-libvips-linux-arm64": "1.0.4", 4015 + "@img/sharp-libvips-linux-s390x": "1.0.4", 4016 + "@img/sharp-libvips-linux-x64": "1.0.4", 4017 + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", 4018 + "@img/sharp-libvips-linuxmusl-x64": "1.0.4", 4019 + "@img/sharp-linux-arm": "0.33.5", 4020 + "@img/sharp-linux-arm64": "0.33.5", 4021 + "@img/sharp-linux-s390x": "0.33.5", 4022 + "@img/sharp-linux-x64": "0.33.5", 4023 + "@img/sharp-linuxmusl-arm64": "0.33.5", 4024 + "@img/sharp-linuxmusl-x64": "0.33.5", 4025 + "@img/sharp-wasm32": "0.33.5", 4026 + "@img/sharp-win32-ia32": "0.33.5", 4027 + "@img/sharp-win32-x64": "0.33.5" 4028 + } 4029 + }, 4030 + "node_modules/shiki": { 4031 + "version": "3.3.0", 4032 + "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.3.0.tgz", 4033 + "integrity": "sha512-j0Z1tG5vlOFGW8JVj0Cpuatzvshes7VJy5ncDmmMaYcmnGW0Js1N81TOW98ivTFNZfKRn9uwEg/aIm638o368g==", 4034 + "license": "MIT", 4035 + "dependencies": { 4036 + "@shikijs/core": "3.3.0", 4037 + "@shikijs/engine-javascript": "3.3.0", 4038 + "@shikijs/engine-oniguruma": "3.3.0", 4039 + "@shikijs/langs": "3.3.0", 4040 + "@shikijs/themes": "3.3.0", 4041 + "@shikijs/types": "3.3.0", 4042 + "@shikijs/vscode-textmate": "^10.0.2", 4043 + "@types/hast": "^3.0.4" 4044 + } 4045 + }, 4046 + "node_modules/simple-swizzle": { 4047 + "version": "0.2.2", 4048 + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 4049 + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 4050 + "license": "MIT", 4051 + "optional": true, 4052 + "dependencies": { 4053 + "is-arrayish": "^0.3.1" 4054 + } 4055 + }, 4056 + "node_modules/sisteransi": { 4057 + "version": "1.0.5", 4058 + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 4059 + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 4060 + "license": "MIT" 4061 + }, 4062 + "node_modules/smol-toml": { 4063 + "version": "1.3.4", 4064 + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.3.4.tgz", 4065 + "integrity": "sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA==", 4066 + "license": "BSD-3-Clause", 4067 + "engines": { 4068 + "node": ">= 18" 4069 + }, 4070 + "funding": { 4071 + "url": "https://github.com/sponsors/cyyynthia" 4072 + } 4073 + }, 4074 + "node_modules/source-map-js": { 4075 + "version": "1.2.1", 4076 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 4077 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 4078 + "license": "BSD-3-Clause", 4079 + "engines": { 4080 + "node": ">=0.10.0" 4081 + } 4082 + }, 4083 + "node_modules/space-separated-tokens": { 4084 + "version": "2.0.2", 4085 + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", 4086 + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", 4087 + "license": "MIT", 4088 + "funding": { 4089 + "type": "github", 4090 + "url": "https://github.com/sponsors/wooorm" 4091 + } 4092 + }, 4093 + "node_modules/string-width": { 4094 + "version": "7.2.0", 4095 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", 4096 + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", 4097 + "license": "MIT", 4098 + "dependencies": { 4099 + "emoji-regex": "^10.3.0", 4100 + "get-east-asian-width": "^1.0.0", 4101 + "strip-ansi": "^7.1.0" 4102 + }, 4103 + "engines": { 4104 + "node": ">=18" 4105 + }, 4106 + "funding": { 4107 + "url": "https://github.com/sponsors/sindresorhus" 4108 + } 4109 + }, 4110 + "node_modules/stringify-entities": { 4111 + "version": "4.0.4", 4112 + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", 4113 + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", 4114 + "license": "MIT", 4115 + "dependencies": { 4116 + "character-entities-html4": "^2.0.0", 4117 + "character-entities-legacy": "^3.0.0" 4118 + }, 4119 + "funding": { 4120 + "type": "github", 4121 + "url": "https://github.com/sponsors/wooorm" 4122 + } 4123 + }, 4124 + "node_modules/strip-ansi": { 4125 + "version": "7.1.0", 4126 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 4127 + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 4128 + "license": "MIT", 4129 + "dependencies": { 4130 + "ansi-regex": "^6.0.1" 4131 + }, 4132 + "engines": { 4133 + "node": ">=12" 4134 + }, 4135 + "funding": { 4136 + "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4137 + } 4138 + }, 4139 + "node_modules/tiny-inflate": { 4140 + "version": "1.0.3", 4141 + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", 4142 + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", 4143 + "license": "MIT" 4144 + }, 4145 + "node_modules/tinyexec": { 4146 + "version": "0.3.2", 4147 + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", 4148 + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", 4149 + "license": "MIT" 4150 + }, 4151 + "node_modules/tinyglobby": { 4152 + "version": "0.2.13", 4153 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz", 4154 + "integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==", 4155 + "license": "MIT", 4156 + "dependencies": { 4157 + "fdir": "^6.4.4", 4158 + "picomatch": "^4.0.2" 4159 + }, 4160 + "engines": { 4161 + "node": ">=12.0.0" 4162 + }, 4163 + "funding": { 4164 + "url": "https://github.com/sponsors/SuperchupuDev" 4165 + } 4166 + }, 4167 + "node_modules/tr46": { 4168 + "version": "0.0.3", 4169 + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 4170 + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 4171 + "license": "MIT" 4172 + }, 4173 + "node_modules/trim-lines": { 4174 + "version": "3.0.1", 4175 + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", 4176 + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", 4177 + "license": "MIT", 4178 + "funding": { 4179 + "type": "github", 4180 + "url": "https://github.com/sponsors/wooorm" 4181 + } 4182 + }, 4183 + "node_modules/trough": { 4184 + "version": "2.2.0", 4185 + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", 4186 + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", 4187 + "license": "MIT", 4188 + "funding": { 4189 + "type": "github", 4190 + "url": "https://github.com/sponsors/wooorm" 4191 + } 4192 + }, 4193 + "node_modules/tsconfck": { 4194 + "version": "3.1.5", 4195 + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.5.tgz", 4196 + "integrity": "sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==", 4197 + "license": "MIT", 4198 + "bin": { 4199 + "tsconfck": "bin/tsconfck.js" 4200 + }, 4201 + "engines": { 4202 + "node": "^18 || >=20" 4203 + }, 4204 + "peerDependencies": { 4205 + "typescript": "^5.0.0" 4206 + }, 4207 + "peerDependenciesMeta": { 4208 + "typescript": { 4209 + "optional": true 4210 + } 4211 + } 4212 + }, 4213 + "node_modules/tslib": { 4214 + "version": "2.8.1", 4215 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 4216 + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 4217 + "license": "0BSD" 4218 + }, 4219 + "node_modules/type-fest": { 4220 + "version": "4.40.1", 4221 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.1.tgz", 4222 + "integrity": "sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==", 4223 + "license": "(MIT OR CC0-1.0)", 4224 + "engines": { 4225 + "node": ">=16" 4226 + }, 4227 + "funding": { 4228 + "url": "https://github.com/sponsors/sindresorhus" 4229 + } 4230 + }, 4231 + "node_modules/typescript": { 4232 + "version": "5.8.3", 4233 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", 4234 + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", 4235 + "license": "Apache-2.0", 4236 + "peer": true, 4237 + "bin": { 4238 + "tsc": "bin/tsc", 4239 + "tsserver": "bin/tsserver" 4240 + }, 4241 + "engines": { 4242 + "node": ">=14.17" 4243 + } 4244 + }, 4245 + "node_modules/ufo": { 4246 + "version": "1.6.1", 4247 + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.1.tgz", 4248 + "integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==", 4249 + "license": "MIT" 4250 + }, 4251 + "node_modules/ultrahtml": { 4252 + "version": "1.6.0", 4253 + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz", 4254 + "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==", 4255 + "license": "MIT" 4256 + }, 4257 + "node_modules/uncrypto": { 4258 + "version": "0.1.3", 4259 + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", 4260 + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", 4261 + "license": "MIT" 4262 + }, 4263 + "node_modules/unicode-properties": { 4264 + "version": "1.4.1", 4265 + "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz", 4266 + "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==", 4267 + "license": "MIT", 4268 + "dependencies": { 4269 + "base64-js": "^1.3.0", 4270 + "unicode-trie": "^2.0.0" 4271 + } 4272 + }, 4273 + "node_modules/unicode-trie": { 4274 + "version": "2.0.0", 4275 + "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", 4276 + "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", 4277 + "license": "MIT", 4278 + "dependencies": { 4279 + "pako": "^0.2.5", 4280 + "tiny-inflate": "^1.0.0" 4281 + } 4282 + }, 4283 + "node_modules/unified": { 4284 + "version": "11.0.5", 4285 + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", 4286 + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", 4287 + "license": "MIT", 4288 + "dependencies": { 4289 + "@types/unist": "^3.0.0", 4290 + "bail": "^2.0.0", 4291 + "devlop": "^1.0.0", 4292 + "extend": "^3.0.0", 4293 + "is-plain-obj": "^4.0.0", 4294 + "trough": "^2.0.0", 4295 + "vfile": "^6.0.0" 4296 + }, 4297 + "funding": { 4298 + "type": "opencollective", 4299 + "url": "https://opencollective.com/unified" 4300 + } 4301 + }, 4302 + "node_modules/unifont": { 4303 + "version": "0.4.1", 4304 + "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.4.1.tgz", 4305 + "integrity": "sha512-zKSY9qO8svWYns+FGKjyVdLvpGPwqmsCjeJLN1xndMiqxHWBAhoWDMYMG960MxeV48clBmG+fDP59dHY1VoZvg==", 4306 + "license": "MIT", 4307 + "dependencies": { 4308 + "css-tree": "^3.0.0", 4309 + "ohash": "^2.0.0" 4310 + } 4311 + }, 4312 + "node_modules/unist-util-find-after": { 4313 + "version": "5.0.0", 4314 + "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", 4315 + "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", 4316 + "license": "MIT", 4317 + "dependencies": { 4318 + "@types/unist": "^3.0.0", 4319 + "unist-util-is": "^6.0.0" 4320 + }, 4321 + "funding": { 4322 + "type": "opencollective", 4323 + "url": "https://opencollective.com/unified" 4324 + } 4325 + }, 4326 + "node_modules/unist-util-is": { 4327 + "version": "6.0.0", 4328 + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", 4329 + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", 4330 + "license": "MIT", 4331 + "dependencies": { 4332 + "@types/unist": "^3.0.0" 4333 + }, 4334 + "funding": { 4335 + "type": "opencollective", 4336 + "url": "https://opencollective.com/unified" 4337 + } 4338 + }, 4339 + "node_modules/unist-util-modify-children": { 4340 + "version": "4.0.0", 4341 + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz", 4342 + "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==", 4343 + "license": "MIT", 4344 + "dependencies": { 4345 + "@types/unist": "^3.0.0", 4346 + "array-iterate": "^2.0.0" 4347 + }, 4348 + "funding": { 4349 + "type": "opencollective", 4350 + "url": "https://opencollective.com/unified" 4351 + } 4352 + }, 4353 + "node_modules/unist-util-position": { 4354 + "version": "5.0.0", 4355 + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", 4356 + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", 4357 + "license": "MIT", 4358 + "dependencies": { 4359 + "@types/unist": "^3.0.0" 4360 + }, 4361 + "funding": { 4362 + "type": "opencollective", 4363 + "url": "https://opencollective.com/unified" 4364 + } 4365 + }, 4366 + "node_modules/unist-util-remove-position": { 4367 + "version": "5.0.0", 4368 + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", 4369 + "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", 4370 + "license": "MIT", 4371 + "dependencies": { 4372 + "@types/unist": "^3.0.0", 4373 + "unist-util-visit": "^5.0.0" 4374 + }, 4375 + "funding": { 4376 + "type": "opencollective", 4377 + "url": "https://opencollective.com/unified" 4378 + } 4379 + }, 4380 + "node_modules/unist-util-stringify-position": { 4381 + "version": "4.0.0", 4382 + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", 4383 + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", 4384 + "license": "MIT", 4385 + "dependencies": { 4386 + "@types/unist": "^3.0.0" 4387 + }, 4388 + "funding": { 4389 + "type": "opencollective", 4390 + "url": "https://opencollective.com/unified" 4391 + } 4392 + }, 4393 + "node_modules/unist-util-visit": { 4394 + "version": "5.0.0", 4395 + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", 4396 + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", 4397 + "license": "MIT", 4398 + "dependencies": { 4399 + "@types/unist": "^3.0.0", 4400 + "unist-util-is": "^6.0.0", 4401 + "unist-util-visit-parents": "^6.0.0" 4402 + }, 4403 + "funding": { 4404 + "type": "opencollective", 4405 + "url": "https://opencollective.com/unified" 4406 + } 4407 + }, 4408 + "node_modules/unist-util-visit-children": { 4409 + "version": "3.0.0", 4410 + "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz", 4411 + "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==", 4412 + "license": "MIT", 4413 + "dependencies": { 4414 + "@types/unist": "^3.0.0" 4415 + }, 4416 + "funding": { 4417 + "type": "opencollective", 4418 + "url": "https://opencollective.com/unified" 4419 + } 4420 + }, 4421 + "node_modules/unist-util-visit-parents": { 4422 + "version": "6.0.1", 4423 + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", 4424 + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", 4425 + "license": "MIT", 4426 + "dependencies": { 4427 + "@types/unist": "^3.0.0", 4428 + "unist-util-is": "^6.0.0" 4429 + }, 4430 + "funding": { 4431 + "type": "opencollective", 4432 + "url": "https://opencollective.com/unified" 4433 + } 4434 + }, 4435 + "node_modules/unstorage": { 4436 + "version": "1.16.0", 4437 + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.16.0.tgz", 4438 + "integrity": "sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==", 4439 + "license": "MIT", 4440 + "dependencies": { 4441 + "anymatch": "^3.1.3", 4442 + "chokidar": "^4.0.3", 4443 + "destr": "^2.0.5", 4444 + "h3": "^1.15.2", 4445 + "lru-cache": "^10.4.3", 4446 + "node-fetch-native": "^1.6.6", 4447 + "ofetch": "^1.4.1", 4448 + "ufo": "^1.6.1" 4449 + }, 4450 + "peerDependencies": { 4451 + "@azure/app-configuration": "^1.8.0", 4452 + "@azure/cosmos": "^4.2.0", 4453 + "@azure/data-tables": "^13.3.0", 4454 + "@azure/identity": "^4.6.0", 4455 + "@azure/keyvault-secrets": "^4.9.0", 4456 + "@azure/storage-blob": "^12.26.0", 4457 + "@capacitor/preferences": "^6.0.3 || ^7.0.0", 4458 + "@deno/kv": ">=0.9.0", 4459 + "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0", 4460 + "@planetscale/database": "^1.19.0", 4461 + "@upstash/redis": "^1.34.3", 4462 + "@vercel/blob": ">=0.27.1", 4463 + "@vercel/kv": "^1.0.1", 4464 + "aws4fetch": "^1.0.20", 4465 + "db0": ">=0.2.1", 4466 + "idb-keyval": "^6.2.1", 4467 + "ioredis": "^5.4.2", 4468 + "uploadthing": "^7.4.4" 4469 + }, 4470 + "peerDependenciesMeta": { 4471 + "@azure/app-configuration": { 4472 + "optional": true 4473 + }, 4474 + "@azure/cosmos": { 4475 + "optional": true 4476 + }, 4477 + "@azure/data-tables": { 4478 + "optional": true 4479 + }, 4480 + "@azure/identity": { 4481 + "optional": true 4482 + }, 4483 + "@azure/keyvault-secrets": { 4484 + "optional": true 4485 + }, 4486 + "@azure/storage-blob": { 4487 + "optional": true 4488 + }, 4489 + "@capacitor/preferences": { 4490 + "optional": true 4491 + }, 4492 + "@deno/kv": { 4493 + "optional": true 4494 + }, 4495 + "@netlify/blobs": { 4496 + "optional": true 4497 + }, 4498 + "@planetscale/database": { 4499 + "optional": true 4500 + }, 4501 + "@upstash/redis": { 4502 + "optional": true 4503 + }, 4504 + "@vercel/blob": { 4505 + "optional": true 4506 + }, 4507 + "@vercel/kv": { 4508 + "optional": true 4509 + }, 4510 + "aws4fetch": { 4511 + "optional": true 4512 + }, 4513 + "db0": { 4514 + "optional": true 4515 + }, 4516 + "idb-keyval": { 4517 + "optional": true 4518 + }, 4519 + "ioredis": { 4520 + "optional": true 4521 + }, 4522 + "uploadthing": { 4523 + "optional": true 4524 + } 4525 + } 4526 + }, 4527 + "node_modules/vfile": { 4528 + "version": "6.0.3", 4529 + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", 4530 + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", 4531 + "license": "MIT", 4532 + "dependencies": { 4533 + "@types/unist": "^3.0.0", 4534 + "vfile-message": "^4.0.0" 4535 + }, 4536 + "funding": { 4537 + "type": "opencollective", 4538 + "url": "https://opencollective.com/unified" 4539 + } 4540 + }, 4541 + "node_modules/vfile-location": { 4542 + "version": "5.0.3", 4543 + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", 4544 + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", 4545 + "license": "MIT", 4546 + "dependencies": { 4547 + "@types/unist": "^3.0.0", 4548 + "vfile": "^6.0.0" 4549 + }, 4550 + "funding": { 4551 + "type": "opencollective", 4552 + "url": "https://opencollective.com/unified" 4553 + } 4554 + }, 4555 + "node_modules/vfile-message": { 4556 + "version": "4.0.2", 4557 + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", 4558 + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", 4559 + "license": "MIT", 4560 + "dependencies": { 4561 + "@types/unist": "^3.0.0", 4562 + "unist-util-stringify-position": "^4.0.0" 4563 + }, 4564 + "funding": { 4565 + "type": "opencollective", 4566 + "url": "https://opencollective.com/unified" 4567 + } 4568 + }, 4569 + "node_modules/vite": { 4570 + "version": "6.3.4", 4571 + "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.4.tgz", 4572 + "integrity": "sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==", 4573 + "license": "MIT", 4574 + "dependencies": { 4575 + "esbuild": "^0.25.0", 4576 + "fdir": "^6.4.4", 4577 + "picomatch": "^4.0.2", 4578 + "postcss": "^8.5.3", 4579 + "rollup": "^4.34.9", 4580 + "tinyglobby": "^0.2.13" 4581 + }, 4582 + "bin": { 4583 + "vite": "bin/vite.js" 4584 + }, 4585 + "engines": { 4586 + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 4587 + }, 4588 + "funding": { 4589 + "url": "https://github.com/vitejs/vite?sponsor=1" 4590 + }, 4591 + "optionalDependencies": { 4592 + "fsevents": "~2.3.3" 4593 + }, 4594 + "peerDependencies": { 4595 + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 4596 + "jiti": ">=1.21.0", 4597 + "less": "*", 4598 + "lightningcss": "^1.21.0", 4599 + "sass": "*", 4600 + "sass-embedded": "*", 4601 + "stylus": "*", 4602 + "sugarss": "*", 4603 + "terser": "^5.16.0", 4604 + "tsx": "^4.8.1", 4605 + "yaml": "^2.4.2" 4606 + }, 4607 + "peerDependenciesMeta": { 4608 + "@types/node": { 4609 + "optional": true 4610 + }, 4611 + "jiti": { 4612 + "optional": true 4613 + }, 4614 + "less": { 4615 + "optional": true 4616 + }, 4617 + "lightningcss": { 4618 + "optional": true 4619 + }, 4620 + "sass": { 4621 + "optional": true 4622 + }, 4623 + "sass-embedded": { 4624 + "optional": true 4625 + }, 4626 + "stylus": { 4627 + "optional": true 4628 + }, 4629 + "sugarss": { 4630 + "optional": true 4631 + }, 4632 + "terser": { 4633 + "optional": true 4634 + }, 4635 + "tsx": { 4636 + "optional": true 4637 + }, 4638 + "yaml": { 4639 + "optional": true 4640 + } 4641 + } 4642 + }, 4643 + "node_modules/vitefu": { 4644 + "version": "1.0.6", 4645 + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.6.tgz", 4646 + "integrity": "sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==", 4647 + "license": "MIT", 4648 + "workspaces": [ 4649 + "tests/deps/*", 4650 + "tests/projects/*" 4651 + ], 4652 + "peerDependencies": { 4653 + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" 4654 + }, 4655 + "peerDependenciesMeta": { 4656 + "vite": { 4657 + "optional": true 4658 + } 4659 + } 4660 + }, 4661 + "node_modules/web-namespaces": { 4662 + "version": "2.0.1", 4663 + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", 4664 + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", 4665 + "license": "MIT", 4666 + "funding": { 4667 + "type": "github", 4668 + "url": "https://github.com/sponsors/wooorm" 4669 + } 4670 + }, 4671 + "node_modules/webidl-conversions": { 4672 + "version": "3.0.1", 4673 + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 4674 + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 4675 + "license": "BSD-2-Clause" 4676 + }, 4677 + "node_modules/whatwg-url": { 4678 + "version": "5.0.0", 4679 + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 4680 + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 4681 + "license": "MIT", 4682 + "dependencies": { 4683 + "tr46": "~0.0.3", 4684 + "webidl-conversions": "^3.0.0" 4685 + } 4686 + }, 4687 + "node_modules/which-pm-runs": { 4688 + "version": "1.1.0", 4689 + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", 4690 + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", 4691 + "license": "MIT", 4692 + "engines": { 4693 + "node": ">=4" 4694 + } 4695 + }, 4696 + "node_modules/widest-line": { 4697 + "version": "5.0.0", 4698 + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz", 4699 + "integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==", 4700 + "license": "MIT", 4701 + "dependencies": { 4702 + "string-width": "^7.0.0" 4703 + }, 4704 + "engines": { 4705 + "node": ">=18" 4706 + }, 4707 + "funding": { 4708 + "url": "https://github.com/sponsors/sindresorhus" 4709 + } 4710 + }, 4711 + "node_modules/wrap-ansi": { 4712 + "version": "9.0.0", 4713 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", 4714 + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", 4715 + "license": "MIT", 4716 + "dependencies": { 4717 + "ansi-styles": "^6.2.1", 4718 + "string-width": "^7.0.0", 4719 + "strip-ansi": "^7.1.0" 4720 + }, 4721 + "engines": { 4722 + "node": ">=18" 4723 + }, 4724 + "funding": { 4725 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4726 + } 4727 + }, 4728 + "node_modules/xxhash-wasm": { 4729 + "version": "1.1.0", 4730 + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz", 4731 + "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==", 4732 + "license": "MIT" 4733 + }, 4734 + "node_modules/yargs-parser": { 4735 + "version": "21.1.1", 4736 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 4737 + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 4738 + "license": "ISC", 4739 + "engines": { 4740 + "node": ">=12" 4741 + } 4742 + }, 4743 + "node_modules/yocto-queue": { 4744 + "version": "1.2.1", 4745 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz", 4746 + "integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==", 4747 + "license": "MIT", 4748 + "engines": { 4749 + "node": ">=12.20" 4750 + }, 4751 + "funding": { 4752 + "url": "https://github.com/sponsors/sindresorhus" 4753 + } 4754 + }, 4755 + "node_modules/yocto-spinner": { 4756 + "version": "0.2.2", 4757 + "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.2.tgz", 4758 + "integrity": "sha512-21rPcM3e4vCpOXThiFRByX8amU5By1R0wNS8Oex+DP3YgC8xdU0vEJ/K8cbPLiIJVosSSysgcFof6s6MSD5/Vw==", 4759 + "license": "MIT", 4760 + "dependencies": { 4761 + "yoctocolors": "^2.1.1" 4762 + }, 4763 + "engines": { 4764 + "node": ">=18.19" 4765 + }, 4766 + "funding": { 4767 + "url": "https://github.com/sponsors/sindresorhus" 4768 + } 4769 + }, 4770 + "node_modules/yoctocolors": { 4771 + "version": "2.1.1", 4772 + "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", 4773 + "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", 4774 + "license": "MIT", 4775 + "engines": { 4776 + "node": ">=18" 4777 + }, 4778 + "funding": { 4779 + "url": "https://github.com/sponsors/sindresorhus" 4780 + } 4781 + }, 4782 + "node_modules/zod": { 4783 + "version": "3.24.3", 4784 + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.3.tgz", 4785 + "integrity": "sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==", 4786 + "license": "MIT", 4787 + "funding": { 4788 + "url": "https://github.com/sponsors/colinhacks" 4789 + } 4790 + }, 4791 + "node_modules/zod-to-json-schema": { 4792 + "version": "3.24.5", 4793 + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.5.tgz", 4794 + "integrity": "sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==", 4795 + "license": "ISC", 4796 + "peerDependencies": { 4797 + "zod": "^3.24.1" 4798 + } 4799 + }, 4800 + "node_modules/zod-to-ts": { 4801 + "version": "1.2.0", 4802 + "resolved": "https://registry.npmjs.org/zod-to-ts/-/zod-to-ts-1.2.0.tgz", 4803 + "integrity": "sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==", 4804 + "peerDependencies": { 4805 + "typescript": "^4.9.4 || ^5.0.2", 4806 + "zod": "^3" 4807 + } 4808 + }, 4809 + "node_modules/zwitch": { 4810 + "version": "2.0.4", 4811 + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", 4812 + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", 4813 + "license": "MIT", 4814 + "funding": { 4815 + "type": "github", 4816 + "url": "https://github.com/sponsors/wooorm" 4817 + } 4818 + } 4819 + } 4820 + }
+14
package.json
··· 1 + { 2 + "name": "dustycode-web-v2", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "scripts": { 6 + "dev": "astro dev", 7 + "build": "astro build", 8 + "preview": "astro preview", 9 + "astro": "astro" 10 + }, 11 + "dependencies": { 12 + "astro": "^5.7.10" 13 + } 14 + }
+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>
+16
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 + <meta name="viewport" content="width=device-width" /> 10 + <meta name="generator" content={Astro.generator} /> 11 + <title>Astro</title> 12 + </head> 13 + <body> 14 + <h1>Astro</h1> 15 + </body> 16 + </html>
+5
tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strict", 3 + "include": [".astro/types.d.ts", "**/*"], 4 + "exclude": ["dist"] 5 + }