my personal website hosted with cloudfare pages
0
fork

Configure Feed

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

init

authored by

houston[bot] and committed by
Voxi0
d3cfa683

+6825
+11
.editorconfig
··· 1 + root = true 2 + 3 + [*] 4 + indent_style = tab 5 + indent_size = 4 6 + charset = utf-8 7 + trim_trailing_whitespaces = true 8 + insert_after_newline = false 9 + 10 + [*.nix] 11 + indent_size = 2
+22
.gitignore
··· 1 + # Build output and generated types 2 + dist/ 3 + .astro/ 4 + 5 + # Dependencies 6 + node_modules/ 7 + 8 + # Logs 9 + npm-debug.log* 10 + yarn-debug.log* 11 + yarn-error.log* 12 + pnpm-debug.log* 13 + 14 + # Environment variables 15 + .env 16 + .env.production 17 + 18 + # MacOS-specific files 19 + .DS_Store 20 + 21 + # JetBrains setting folder 22 + .idea/
+4
.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["astro-build.astro-vscode", "unifiedjs.vscode-mdx"], 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 + }
+62
README.md
··· 1 + # Astro Starter Kit: Blog 2 + 3 + ```sh 4 + npm create astro@latest -- --template blog 5 + ``` 6 + 7 + > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 8 + 9 + Features: 10 + 11 + - ✅ Minimal styling (make it your own!) 12 + - ✅ 100/100 Lighthouse performance 13 + - ✅ SEO-friendly with canonical URLs and Open Graph data 14 + - ✅ Sitemap support 15 + - ✅ RSS Feed support 16 + - ✅ Markdown & MDX support 17 + 18 + ## 🚀 Project Structure 19 + 20 + Inside of your Astro project, you'll see the following folders and files: 21 + 22 + ```text 23 + ├── public/ 24 + ├── src/ 25 + │   ├── components/ 26 + │   ├── content/ 27 + │   ├── layouts/ 28 + │   └── pages/ 29 + ├── astro.config.mjs 30 + ├── README.md 31 + ├── package.json 32 + └── tsconfig.json 33 + ``` 34 + 35 + Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. 36 + 37 + There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. 38 + 39 + The `src/content/` directory contains "collections" of related Markdown and MDX documents. Use `getCollection()` to retrieve posts from `src/content/blog/`, and type-check your frontmatter using an optional schema. See [Astro's Content Collections docs](https://docs.astro.build/en/guides/content-collections/) to learn more. 40 + 41 + Any static assets, like images, can be placed in the `public/` directory. 42 + 43 + ## 🧞 Commands 44 + 45 + All commands are run from the root of the project, from a terminal: 46 + 47 + | Command | Action | 48 + | :------------------------ | :----------------------------------------------- | 49 + | `npm install` | Installs dependencies | 50 + | `npm run dev` | Starts local dev server at `localhost:4321` | 51 + | `npm run build` | Build your production site to `./dist/` | 52 + | `npm run preview` | Preview your build locally, before deploying | 53 + | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | 54 + | `npm run astro -- --help` | Get help using the Astro CLI | 55 + 56 + ## 👀 Want to learn more? 57 + 58 + Check out [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). 59 + 60 + ## Credit 61 + 62 + This theme is based off of the lovely [Bear Blog](https://github.com/HermanMartinus/bearblog/).
+13
astro.config.mjs
··· 1 + // @ts-check 2 + import { defineConfig } from "astro/config"; 3 + import tailwindcss from "@tailwindcss/vite"; 4 + import sitemap from "@astrojs/sitemap"; 5 + import mdx from "@astrojs/mdx"; 6 + 7 + export default defineConfig({ 8 + site: "https://voxi0.pages.dev/", 9 + integrations: [mdx(), sitemap()], 10 + vite: { 11 + plugins: [tailwindcss()], 12 + }, 13 + });
+6532
package-lock.json
··· 1 + { 2 + "name": "voxi0.pages.dev", 3 + "version": "0.0.1", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "version": "0.0.1", 9 + "dependencies": { 10 + "@astrojs/mdx": "^5.0.3", 11 + "@astrojs/sitemap": "^3.7.2", 12 + "@tailwindcss/vite": "^4.2.2", 13 + "astro": "^6.1.0", 14 + "sharp": "^0.34.3", 15 + "tailwindcss": "^4.2.2" 16 + }, 17 + "engines": { 18 + "node": ">=22.12.0" 19 + } 20 + }, 21 + "node_modules/@astrojs/compiler": { 22 + "version": "3.0.1", 23 + "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-3.0.1.tgz", 24 + "integrity": "sha512-z97oYbdebO5aoWzuJ/8q5hLK232+17KcLZ7cJ8BCWk6+qNzVxn/gftC0KzMBUTD8WAaBkPpNSQK6PXLnNrZ0CA==", 25 + "license": "MIT" 26 + }, 27 + "node_modules/@astrojs/internal-helpers": { 28 + "version": "0.8.0", 29 + "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.8.0.tgz", 30 + "integrity": "sha512-J56GrhEiV+4dmrGLPNOl2pZjpHXAndWVyiVDYGDuw6MWKpBSEMLdFxHzeM/6sqaknw9M+HFfHZAcvi3OfT3D/w==", 31 + "license": "MIT", 32 + "dependencies": { 33 + "picomatch": "^4.0.3" 34 + } 35 + }, 36 + "node_modules/@astrojs/markdown-remark": { 37 + "version": "7.1.0", 38 + "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-7.1.0.tgz", 39 + "integrity": "sha512-P+HnCsu2js3BoTc8kFmu+E9gOcFeMdPris75g+Zl4sY8+bBRbSQV6xzcBDbZ27eE7yBGEGQoqjpChx+KJYIPYQ==", 40 + "license": "MIT", 41 + "dependencies": { 42 + "@astrojs/internal-helpers": "0.8.0", 43 + "@astrojs/prism": "4.0.1", 44 + "github-slugger": "^2.0.0", 45 + "hast-util-from-html": "^2.0.3", 46 + "hast-util-to-text": "^4.0.2", 47 + "js-yaml": "^4.1.1", 48 + "mdast-util-definitions": "^6.0.0", 49 + "rehype-raw": "^7.0.0", 50 + "rehype-stringify": "^10.0.1", 51 + "remark-gfm": "^4.0.1", 52 + "remark-parse": "^11.0.0", 53 + "remark-rehype": "^11.1.2", 54 + "remark-smartypants": "^3.0.2", 55 + "retext-smartypants": "^6.2.0", 56 + "shiki": "^4.0.0", 57 + "smol-toml": "^1.6.0", 58 + "unified": "^11.0.5", 59 + "unist-util-remove-position": "^5.0.0", 60 + "unist-util-visit": "^5.1.0", 61 + "unist-util-visit-parents": "^6.0.2", 62 + "vfile": "^6.0.3" 63 + } 64 + }, 65 + "node_modules/@astrojs/mdx": { 66 + "version": "5.0.3", 67 + "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-5.0.3.tgz", 68 + "integrity": "sha512-zv/OlM5sZZvyjHqJjR3FjJvoCgbxdqj3t4jO/gSEUNcck3BjdtMgNQw8UgPfAGe4yySdG4vjZ3OC5wUxhu7ckg==", 69 + "license": "MIT", 70 + "dependencies": { 71 + "@astrojs/markdown-remark": "7.1.0", 72 + "@mdx-js/mdx": "^3.1.1", 73 + "acorn": "^8.16.0", 74 + "es-module-lexer": "^2.0.0", 75 + "estree-util-visit": "^2.0.0", 76 + "hast-util-to-html": "^9.0.5", 77 + "piccolore": "^0.1.3", 78 + "rehype-raw": "^7.0.0", 79 + "remark-gfm": "^4.0.1", 80 + "remark-smartypants": "^3.0.2", 81 + "source-map": "^0.7.6", 82 + "unist-util-visit": "^5.1.0", 83 + "vfile": "^6.0.3" 84 + }, 85 + "engines": { 86 + "node": ">=22.12.0" 87 + }, 88 + "peerDependencies": { 89 + "astro": "^6.0.0" 90 + } 91 + }, 92 + "node_modules/@astrojs/prism": { 93 + "version": "4.0.1", 94 + "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-4.0.1.tgz", 95 + "integrity": "sha512-nksZQVjlferuWzhPsBpQ1JE5XuKAf1id1/9Hj4a9KG4+ofrlzxUUwX4YGQF/SuDiuiGKEnzopGOt38F3AnVWsQ==", 96 + "license": "MIT", 97 + "dependencies": { 98 + "prismjs": "^1.30.0" 99 + }, 100 + "engines": { 101 + "node": ">=22.12.0" 102 + } 103 + }, 104 + "node_modules/@astrojs/sitemap": { 105 + "version": "3.7.2", 106 + "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.7.2.tgz", 107 + "integrity": "sha512-PqkzkcZTb5ICiyIR8VoKbIAP/laNRXi5tw616N1Ckk+40oNB8Can1AzVV56lrbC5GKSZFCyJYUVYqVivMisvpA==", 108 + "license": "MIT", 109 + "dependencies": { 110 + "sitemap": "^9.0.0", 111 + "stream-replace-string": "^2.0.0", 112 + "zod": "^4.3.6" 113 + } 114 + }, 115 + "node_modules/@astrojs/telemetry": { 116 + "version": "3.3.0", 117 + "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz", 118 + "integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==", 119 + "license": "MIT", 120 + "dependencies": { 121 + "ci-info": "^4.2.0", 122 + "debug": "^4.4.0", 123 + "dlv": "^1.1.3", 124 + "dset": "^3.1.4", 125 + "is-docker": "^3.0.0", 126 + "is-wsl": "^3.1.0", 127 + "which-pm-runs": "^1.1.0" 128 + }, 129 + "engines": { 130 + "node": "18.20.8 || ^20.3.0 || >=22.0.0" 131 + } 132 + }, 133 + "node_modules/@babel/helper-string-parser": { 134 + "version": "7.27.1", 135 + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 136 + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 137 + "license": "MIT", 138 + "engines": { 139 + "node": ">=6.9.0" 140 + } 141 + }, 142 + "node_modules/@babel/helper-validator-identifier": { 143 + "version": "7.28.5", 144 + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", 145 + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", 146 + "license": "MIT", 147 + "engines": { 148 + "node": ">=6.9.0" 149 + } 150 + }, 151 + "node_modules/@babel/parser": { 152 + "version": "7.29.2", 153 + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", 154 + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", 155 + "license": "MIT", 156 + "dependencies": { 157 + "@babel/types": "^7.29.0" 158 + }, 159 + "bin": { 160 + "parser": "bin/babel-parser.js" 161 + }, 162 + "engines": { 163 + "node": ">=6.0.0" 164 + } 165 + }, 166 + "node_modules/@babel/types": { 167 + "version": "7.29.0", 168 + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", 169 + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", 170 + "license": "MIT", 171 + "dependencies": { 172 + "@babel/helper-string-parser": "^7.27.1", 173 + "@babel/helper-validator-identifier": "^7.28.5" 174 + }, 175 + "engines": { 176 + "node": ">=6.9.0" 177 + } 178 + }, 179 + "node_modules/@capsizecss/unpack": { 180 + "version": "4.0.0", 181 + "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-4.0.0.tgz", 182 + "integrity": "sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==", 183 + "license": "MIT", 184 + "dependencies": { 185 + "fontkitten": "^1.0.0" 186 + }, 187 + "engines": { 188 + "node": ">=18" 189 + } 190 + }, 191 + "node_modules/@clack/core": { 192 + "version": "1.1.0", 193 + "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.1.0.tgz", 194 + "integrity": "sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==", 195 + "license": "MIT", 196 + "dependencies": { 197 + "sisteransi": "^1.0.5" 198 + } 199 + }, 200 + "node_modules/@clack/prompts": { 201 + "version": "1.1.0", 202 + "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.1.0.tgz", 203 + "integrity": "sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==", 204 + "license": "MIT", 205 + "dependencies": { 206 + "@clack/core": "1.1.0", 207 + "sisteransi": "^1.0.5" 208 + } 209 + }, 210 + "node_modules/@emnapi/core": { 211 + "version": "1.9.1", 212 + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz", 213 + "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==", 214 + "license": "MIT", 215 + "optional": true, 216 + "dependencies": { 217 + "@emnapi/wasi-threads": "1.2.0", 218 + "tslib": "^2.4.0" 219 + } 220 + }, 221 + "node_modules/@emnapi/runtime": { 222 + "version": "1.9.1", 223 + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz", 224 + "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==", 225 + "license": "MIT", 226 + "optional": true, 227 + "dependencies": { 228 + "tslib": "^2.4.0" 229 + } 230 + }, 231 + "node_modules/@emnapi/wasi-threads": { 232 + "version": "1.2.0", 233 + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz", 234 + "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==", 235 + "license": "MIT", 236 + "optional": true, 237 + "dependencies": { 238 + "tslib": "^2.4.0" 239 + } 240 + }, 241 + "node_modules/@esbuild/aix-ppc64": { 242 + "version": "0.27.4", 243 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz", 244 + "integrity": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==", 245 + "cpu": [ 246 + "ppc64" 247 + ], 248 + "license": "MIT", 249 + "optional": true, 250 + "os": [ 251 + "aix" 252 + ], 253 + "engines": { 254 + "node": ">=18" 255 + } 256 + }, 257 + "node_modules/@esbuild/android-arm": { 258 + "version": "0.27.4", 259 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz", 260 + "integrity": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==", 261 + "cpu": [ 262 + "arm" 263 + ], 264 + "license": "MIT", 265 + "optional": true, 266 + "os": [ 267 + "android" 268 + ], 269 + "engines": { 270 + "node": ">=18" 271 + } 272 + }, 273 + "node_modules/@esbuild/android-arm64": { 274 + "version": "0.27.4", 275 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz", 276 + "integrity": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==", 277 + "cpu": [ 278 + "arm64" 279 + ], 280 + "license": "MIT", 281 + "optional": true, 282 + "os": [ 283 + "android" 284 + ], 285 + "engines": { 286 + "node": ">=18" 287 + } 288 + }, 289 + "node_modules/@esbuild/android-x64": { 290 + "version": "0.27.4", 291 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz", 292 + "integrity": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==", 293 + "cpu": [ 294 + "x64" 295 + ], 296 + "license": "MIT", 297 + "optional": true, 298 + "os": [ 299 + "android" 300 + ], 301 + "engines": { 302 + "node": ">=18" 303 + } 304 + }, 305 + "node_modules/@esbuild/darwin-arm64": { 306 + "version": "0.27.4", 307 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz", 308 + "integrity": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==", 309 + "cpu": [ 310 + "arm64" 311 + ], 312 + "license": "MIT", 313 + "optional": true, 314 + "os": [ 315 + "darwin" 316 + ], 317 + "engines": { 318 + "node": ">=18" 319 + } 320 + }, 321 + "node_modules/@esbuild/darwin-x64": { 322 + "version": "0.27.4", 323 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz", 324 + "integrity": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==", 325 + "cpu": [ 326 + "x64" 327 + ], 328 + "license": "MIT", 329 + "optional": true, 330 + "os": [ 331 + "darwin" 332 + ], 333 + "engines": { 334 + "node": ">=18" 335 + } 336 + }, 337 + "node_modules/@esbuild/freebsd-arm64": { 338 + "version": "0.27.4", 339 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz", 340 + "integrity": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==", 341 + "cpu": [ 342 + "arm64" 343 + ], 344 + "license": "MIT", 345 + "optional": true, 346 + "os": [ 347 + "freebsd" 348 + ], 349 + "engines": { 350 + "node": ">=18" 351 + } 352 + }, 353 + "node_modules/@esbuild/freebsd-x64": { 354 + "version": "0.27.4", 355 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz", 356 + "integrity": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==", 357 + "cpu": [ 358 + "x64" 359 + ], 360 + "license": "MIT", 361 + "optional": true, 362 + "os": [ 363 + "freebsd" 364 + ], 365 + "engines": { 366 + "node": ">=18" 367 + } 368 + }, 369 + "node_modules/@esbuild/linux-arm": { 370 + "version": "0.27.4", 371 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz", 372 + "integrity": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==", 373 + "cpu": [ 374 + "arm" 375 + ], 376 + "license": "MIT", 377 + "optional": true, 378 + "os": [ 379 + "linux" 380 + ], 381 + "engines": { 382 + "node": ">=18" 383 + } 384 + }, 385 + "node_modules/@esbuild/linux-arm64": { 386 + "version": "0.27.4", 387 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz", 388 + "integrity": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==", 389 + "cpu": [ 390 + "arm64" 391 + ], 392 + "license": "MIT", 393 + "optional": true, 394 + "os": [ 395 + "linux" 396 + ], 397 + "engines": { 398 + "node": ">=18" 399 + } 400 + }, 401 + "node_modules/@esbuild/linux-ia32": { 402 + "version": "0.27.4", 403 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz", 404 + "integrity": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==", 405 + "cpu": [ 406 + "ia32" 407 + ], 408 + "license": "MIT", 409 + "optional": true, 410 + "os": [ 411 + "linux" 412 + ], 413 + "engines": { 414 + "node": ">=18" 415 + } 416 + }, 417 + "node_modules/@esbuild/linux-loong64": { 418 + "version": "0.27.4", 419 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz", 420 + "integrity": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==", 421 + "cpu": [ 422 + "loong64" 423 + ], 424 + "license": "MIT", 425 + "optional": true, 426 + "os": [ 427 + "linux" 428 + ], 429 + "engines": { 430 + "node": ">=18" 431 + } 432 + }, 433 + "node_modules/@esbuild/linux-mips64el": { 434 + "version": "0.27.4", 435 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz", 436 + "integrity": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==", 437 + "cpu": [ 438 + "mips64el" 439 + ], 440 + "license": "MIT", 441 + "optional": true, 442 + "os": [ 443 + "linux" 444 + ], 445 + "engines": { 446 + "node": ">=18" 447 + } 448 + }, 449 + "node_modules/@esbuild/linux-ppc64": { 450 + "version": "0.27.4", 451 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz", 452 + "integrity": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==", 453 + "cpu": [ 454 + "ppc64" 455 + ], 456 + "license": "MIT", 457 + "optional": true, 458 + "os": [ 459 + "linux" 460 + ], 461 + "engines": { 462 + "node": ">=18" 463 + } 464 + }, 465 + "node_modules/@esbuild/linux-riscv64": { 466 + "version": "0.27.4", 467 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz", 468 + "integrity": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==", 469 + "cpu": [ 470 + "riscv64" 471 + ], 472 + "license": "MIT", 473 + "optional": true, 474 + "os": [ 475 + "linux" 476 + ], 477 + "engines": { 478 + "node": ">=18" 479 + } 480 + }, 481 + "node_modules/@esbuild/linux-s390x": { 482 + "version": "0.27.4", 483 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz", 484 + "integrity": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==", 485 + "cpu": [ 486 + "s390x" 487 + ], 488 + "license": "MIT", 489 + "optional": true, 490 + "os": [ 491 + "linux" 492 + ], 493 + "engines": { 494 + "node": ">=18" 495 + } 496 + }, 497 + "node_modules/@esbuild/linux-x64": { 498 + "version": "0.27.4", 499 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz", 500 + "integrity": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==", 501 + "cpu": [ 502 + "x64" 503 + ], 504 + "license": "MIT", 505 + "optional": true, 506 + "os": [ 507 + "linux" 508 + ], 509 + "engines": { 510 + "node": ">=18" 511 + } 512 + }, 513 + "node_modules/@esbuild/netbsd-arm64": { 514 + "version": "0.27.4", 515 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz", 516 + "integrity": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==", 517 + "cpu": [ 518 + "arm64" 519 + ], 520 + "license": "MIT", 521 + "optional": true, 522 + "os": [ 523 + "netbsd" 524 + ], 525 + "engines": { 526 + "node": ">=18" 527 + } 528 + }, 529 + "node_modules/@esbuild/netbsd-x64": { 530 + "version": "0.27.4", 531 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz", 532 + "integrity": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==", 533 + "cpu": [ 534 + "x64" 535 + ], 536 + "license": "MIT", 537 + "optional": true, 538 + "os": [ 539 + "netbsd" 540 + ], 541 + "engines": { 542 + "node": ">=18" 543 + } 544 + }, 545 + "node_modules/@esbuild/openbsd-arm64": { 546 + "version": "0.27.4", 547 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz", 548 + "integrity": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==", 549 + "cpu": [ 550 + "arm64" 551 + ], 552 + "license": "MIT", 553 + "optional": true, 554 + "os": [ 555 + "openbsd" 556 + ], 557 + "engines": { 558 + "node": ">=18" 559 + } 560 + }, 561 + "node_modules/@esbuild/openbsd-x64": { 562 + "version": "0.27.4", 563 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz", 564 + "integrity": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==", 565 + "cpu": [ 566 + "x64" 567 + ], 568 + "license": "MIT", 569 + "optional": true, 570 + "os": [ 571 + "openbsd" 572 + ], 573 + "engines": { 574 + "node": ">=18" 575 + } 576 + }, 577 + "node_modules/@esbuild/openharmony-arm64": { 578 + "version": "0.27.4", 579 + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz", 580 + "integrity": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==", 581 + "cpu": [ 582 + "arm64" 583 + ], 584 + "license": "MIT", 585 + "optional": true, 586 + "os": [ 587 + "openharmony" 588 + ], 589 + "engines": { 590 + "node": ">=18" 591 + } 592 + }, 593 + "node_modules/@esbuild/sunos-x64": { 594 + "version": "0.27.4", 595 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz", 596 + "integrity": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==", 597 + "cpu": [ 598 + "x64" 599 + ], 600 + "license": "MIT", 601 + "optional": true, 602 + "os": [ 603 + "sunos" 604 + ], 605 + "engines": { 606 + "node": ">=18" 607 + } 608 + }, 609 + "node_modules/@esbuild/win32-arm64": { 610 + "version": "0.27.4", 611 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz", 612 + "integrity": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==", 613 + "cpu": [ 614 + "arm64" 615 + ], 616 + "license": "MIT", 617 + "optional": true, 618 + "os": [ 619 + "win32" 620 + ], 621 + "engines": { 622 + "node": ">=18" 623 + } 624 + }, 625 + "node_modules/@esbuild/win32-ia32": { 626 + "version": "0.27.4", 627 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz", 628 + "integrity": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==", 629 + "cpu": [ 630 + "ia32" 631 + ], 632 + "license": "MIT", 633 + "optional": true, 634 + "os": [ 635 + "win32" 636 + ], 637 + "engines": { 638 + "node": ">=18" 639 + } 640 + }, 641 + "node_modules/@esbuild/win32-x64": { 642 + "version": "0.27.4", 643 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz", 644 + "integrity": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==", 645 + "cpu": [ 646 + "x64" 647 + ], 648 + "license": "MIT", 649 + "optional": true, 650 + "os": [ 651 + "win32" 652 + ], 653 + "engines": { 654 + "node": ">=18" 655 + } 656 + }, 657 + "node_modules/@img/colour": { 658 + "version": "1.1.0", 659 + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", 660 + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", 661 + "license": "MIT", 662 + "engines": { 663 + "node": ">=18" 664 + } 665 + }, 666 + "node_modules/@img/sharp-darwin-arm64": { 667 + "version": "0.34.5", 668 + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", 669 + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", 670 + "cpu": [ 671 + "arm64" 672 + ], 673 + "license": "Apache-2.0", 674 + "optional": true, 675 + "os": [ 676 + "darwin" 677 + ], 678 + "engines": { 679 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 680 + }, 681 + "funding": { 682 + "url": "https://opencollective.com/libvips" 683 + }, 684 + "optionalDependencies": { 685 + "@img/sharp-libvips-darwin-arm64": "1.2.4" 686 + } 687 + }, 688 + "node_modules/@img/sharp-darwin-x64": { 689 + "version": "0.34.5", 690 + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", 691 + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", 692 + "cpu": [ 693 + "x64" 694 + ], 695 + "license": "Apache-2.0", 696 + "optional": true, 697 + "os": [ 698 + "darwin" 699 + ], 700 + "engines": { 701 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 702 + }, 703 + "funding": { 704 + "url": "https://opencollective.com/libvips" 705 + }, 706 + "optionalDependencies": { 707 + "@img/sharp-libvips-darwin-x64": "1.2.4" 708 + } 709 + }, 710 + "node_modules/@img/sharp-libvips-darwin-arm64": { 711 + "version": "1.2.4", 712 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", 713 + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", 714 + "cpu": [ 715 + "arm64" 716 + ], 717 + "license": "LGPL-3.0-or-later", 718 + "optional": true, 719 + "os": [ 720 + "darwin" 721 + ], 722 + "funding": { 723 + "url": "https://opencollective.com/libvips" 724 + } 725 + }, 726 + "node_modules/@img/sharp-libvips-darwin-x64": { 727 + "version": "1.2.4", 728 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", 729 + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", 730 + "cpu": [ 731 + "x64" 732 + ], 733 + "license": "LGPL-3.0-or-later", 734 + "optional": true, 735 + "os": [ 736 + "darwin" 737 + ], 738 + "funding": { 739 + "url": "https://opencollective.com/libvips" 740 + } 741 + }, 742 + "node_modules/@img/sharp-libvips-linux-arm": { 743 + "version": "1.2.4", 744 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", 745 + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", 746 + "cpu": [ 747 + "arm" 748 + ], 749 + "license": "LGPL-3.0-or-later", 750 + "optional": true, 751 + "os": [ 752 + "linux" 753 + ], 754 + "funding": { 755 + "url": "https://opencollective.com/libvips" 756 + } 757 + }, 758 + "node_modules/@img/sharp-libvips-linux-arm64": { 759 + "version": "1.2.4", 760 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", 761 + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", 762 + "cpu": [ 763 + "arm64" 764 + ], 765 + "license": "LGPL-3.0-or-later", 766 + "optional": true, 767 + "os": [ 768 + "linux" 769 + ], 770 + "funding": { 771 + "url": "https://opencollective.com/libvips" 772 + } 773 + }, 774 + "node_modules/@img/sharp-libvips-linux-ppc64": { 775 + "version": "1.2.4", 776 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", 777 + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", 778 + "cpu": [ 779 + "ppc64" 780 + ], 781 + "license": "LGPL-3.0-or-later", 782 + "optional": true, 783 + "os": [ 784 + "linux" 785 + ], 786 + "funding": { 787 + "url": "https://opencollective.com/libvips" 788 + } 789 + }, 790 + "node_modules/@img/sharp-libvips-linux-riscv64": { 791 + "version": "1.2.4", 792 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", 793 + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", 794 + "cpu": [ 795 + "riscv64" 796 + ], 797 + "license": "LGPL-3.0-or-later", 798 + "optional": true, 799 + "os": [ 800 + "linux" 801 + ], 802 + "funding": { 803 + "url": "https://opencollective.com/libvips" 804 + } 805 + }, 806 + "node_modules/@img/sharp-libvips-linux-s390x": { 807 + "version": "1.2.4", 808 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", 809 + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", 810 + "cpu": [ 811 + "s390x" 812 + ], 813 + "license": "LGPL-3.0-or-later", 814 + "optional": true, 815 + "os": [ 816 + "linux" 817 + ], 818 + "funding": { 819 + "url": "https://opencollective.com/libvips" 820 + } 821 + }, 822 + "node_modules/@img/sharp-libvips-linux-x64": { 823 + "version": "1.2.4", 824 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", 825 + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", 826 + "cpu": [ 827 + "x64" 828 + ], 829 + "license": "LGPL-3.0-or-later", 830 + "optional": true, 831 + "os": [ 832 + "linux" 833 + ], 834 + "funding": { 835 + "url": "https://opencollective.com/libvips" 836 + } 837 + }, 838 + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 839 + "version": "1.2.4", 840 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", 841 + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", 842 + "cpu": [ 843 + "arm64" 844 + ], 845 + "license": "LGPL-3.0-or-later", 846 + "optional": true, 847 + "os": [ 848 + "linux" 849 + ], 850 + "funding": { 851 + "url": "https://opencollective.com/libvips" 852 + } 853 + }, 854 + "node_modules/@img/sharp-libvips-linuxmusl-x64": { 855 + "version": "1.2.4", 856 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", 857 + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", 858 + "cpu": [ 859 + "x64" 860 + ], 861 + "license": "LGPL-3.0-or-later", 862 + "optional": true, 863 + "os": [ 864 + "linux" 865 + ], 866 + "funding": { 867 + "url": "https://opencollective.com/libvips" 868 + } 869 + }, 870 + "node_modules/@img/sharp-linux-arm": { 871 + "version": "0.34.5", 872 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", 873 + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", 874 + "cpu": [ 875 + "arm" 876 + ], 877 + "license": "Apache-2.0", 878 + "optional": true, 879 + "os": [ 880 + "linux" 881 + ], 882 + "engines": { 883 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 884 + }, 885 + "funding": { 886 + "url": "https://opencollective.com/libvips" 887 + }, 888 + "optionalDependencies": { 889 + "@img/sharp-libvips-linux-arm": "1.2.4" 890 + } 891 + }, 892 + "node_modules/@img/sharp-linux-arm64": { 893 + "version": "0.34.5", 894 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", 895 + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", 896 + "cpu": [ 897 + "arm64" 898 + ], 899 + "license": "Apache-2.0", 900 + "optional": true, 901 + "os": [ 902 + "linux" 903 + ], 904 + "engines": { 905 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 906 + }, 907 + "funding": { 908 + "url": "https://opencollective.com/libvips" 909 + }, 910 + "optionalDependencies": { 911 + "@img/sharp-libvips-linux-arm64": "1.2.4" 912 + } 913 + }, 914 + "node_modules/@img/sharp-linux-ppc64": { 915 + "version": "0.34.5", 916 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", 917 + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", 918 + "cpu": [ 919 + "ppc64" 920 + ], 921 + "license": "Apache-2.0", 922 + "optional": true, 923 + "os": [ 924 + "linux" 925 + ], 926 + "engines": { 927 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 928 + }, 929 + "funding": { 930 + "url": "https://opencollective.com/libvips" 931 + }, 932 + "optionalDependencies": { 933 + "@img/sharp-libvips-linux-ppc64": "1.2.4" 934 + } 935 + }, 936 + "node_modules/@img/sharp-linux-riscv64": { 937 + "version": "0.34.5", 938 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", 939 + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", 940 + "cpu": [ 941 + "riscv64" 942 + ], 943 + "license": "Apache-2.0", 944 + "optional": true, 945 + "os": [ 946 + "linux" 947 + ], 948 + "engines": { 949 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 950 + }, 951 + "funding": { 952 + "url": "https://opencollective.com/libvips" 953 + }, 954 + "optionalDependencies": { 955 + "@img/sharp-libvips-linux-riscv64": "1.2.4" 956 + } 957 + }, 958 + "node_modules/@img/sharp-linux-s390x": { 959 + "version": "0.34.5", 960 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", 961 + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", 962 + "cpu": [ 963 + "s390x" 964 + ], 965 + "license": "Apache-2.0", 966 + "optional": true, 967 + "os": [ 968 + "linux" 969 + ], 970 + "engines": { 971 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 972 + }, 973 + "funding": { 974 + "url": "https://opencollective.com/libvips" 975 + }, 976 + "optionalDependencies": { 977 + "@img/sharp-libvips-linux-s390x": "1.2.4" 978 + } 979 + }, 980 + "node_modules/@img/sharp-linux-x64": { 981 + "version": "0.34.5", 982 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", 983 + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", 984 + "cpu": [ 985 + "x64" 986 + ], 987 + "license": "Apache-2.0", 988 + "optional": true, 989 + "os": [ 990 + "linux" 991 + ], 992 + "engines": { 993 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 994 + }, 995 + "funding": { 996 + "url": "https://opencollective.com/libvips" 997 + }, 998 + "optionalDependencies": { 999 + "@img/sharp-libvips-linux-x64": "1.2.4" 1000 + } 1001 + }, 1002 + "node_modules/@img/sharp-linuxmusl-arm64": { 1003 + "version": "0.34.5", 1004 + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", 1005 + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", 1006 + "cpu": [ 1007 + "arm64" 1008 + ], 1009 + "license": "Apache-2.0", 1010 + "optional": true, 1011 + "os": [ 1012 + "linux" 1013 + ], 1014 + "engines": { 1015 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1016 + }, 1017 + "funding": { 1018 + "url": "https://opencollective.com/libvips" 1019 + }, 1020 + "optionalDependencies": { 1021 + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" 1022 + } 1023 + }, 1024 + "node_modules/@img/sharp-linuxmusl-x64": { 1025 + "version": "0.34.5", 1026 + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", 1027 + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", 1028 + "cpu": [ 1029 + "x64" 1030 + ], 1031 + "license": "Apache-2.0", 1032 + "optional": true, 1033 + "os": [ 1034 + "linux" 1035 + ], 1036 + "engines": { 1037 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1038 + }, 1039 + "funding": { 1040 + "url": "https://opencollective.com/libvips" 1041 + }, 1042 + "optionalDependencies": { 1043 + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" 1044 + } 1045 + }, 1046 + "node_modules/@img/sharp-wasm32": { 1047 + "version": "0.34.5", 1048 + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", 1049 + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", 1050 + "cpu": [ 1051 + "wasm32" 1052 + ], 1053 + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", 1054 + "optional": true, 1055 + "dependencies": { 1056 + "@emnapi/runtime": "^1.7.0" 1057 + }, 1058 + "engines": { 1059 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1060 + }, 1061 + "funding": { 1062 + "url": "https://opencollective.com/libvips" 1063 + } 1064 + }, 1065 + "node_modules/@img/sharp-win32-arm64": { 1066 + "version": "0.34.5", 1067 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", 1068 + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", 1069 + "cpu": [ 1070 + "arm64" 1071 + ], 1072 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 1073 + "optional": true, 1074 + "os": [ 1075 + "win32" 1076 + ], 1077 + "engines": { 1078 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1079 + }, 1080 + "funding": { 1081 + "url": "https://opencollective.com/libvips" 1082 + } 1083 + }, 1084 + "node_modules/@img/sharp-win32-ia32": { 1085 + "version": "0.34.5", 1086 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", 1087 + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", 1088 + "cpu": [ 1089 + "ia32" 1090 + ], 1091 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 1092 + "optional": true, 1093 + "os": [ 1094 + "win32" 1095 + ], 1096 + "engines": { 1097 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1098 + }, 1099 + "funding": { 1100 + "url": "https://opencollective.com/libvips" 1101 + } 1102 + }, 1103 + "node_modules/@img/sharp-win32-x64": { 1104 + "version": "0.34.5", 1105 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", 1106 + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", 1107 + "cpu": [ 1108 + "x64" 1109 + ], 1110 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 1111 + "optional": true, 1112 + "os": [ 1113 + "win32" 1114 + ], 1115 + "engines": { 1116 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1117 + }, 1118 + "funding": { 1119 + "url": "https://opencollective.com/libvips" 1120 + } 1121 + }, 1122 + "node_modules/@jridgewell/gen-mapping": { 1123 + "version": "0.3.13", 1124 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 1125 + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 1126 + "license": "MIT", 1127 + "dependencies": { 1128 + "@jridgewell/sourcemap-codec": "^1.5.0", 1129 + "@jridgewell/trace-mapping": "^0.3.24" 1130 + } 1131 + }, 1132 + "node_modules/@jridgewell/remapping": { 1133 + "version": "2.3.5", 1134 + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", 1135 + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", 1136 + "license": "MIT", 1137 + "dependencies": { 1138 + "@jridgewell/gen-mapping": "^0.3.5", 1139 + "@jridgewell/trace-mapping": "^0.3.24" 1140 + } 1141 + }, 1142 + "node_modules/@jridgewell/resolve-uri": { 1143 + "version": "3.1.2", 1144 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1145 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1146 + "license": "MIT", 1147 + "engines": { 1148 + "node": ">=6.0.0" 1149 + } 1150 + }, 1151 + "node_modules/@jridgewell/sourcemap-codec": { 1152 + "version": "1.5.5", 1153 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 1154 + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 1155 + "license": "MIT" 1156 + }, 1157 + "node_modules/@jridgewell/trace-mapping": { 1158 + "version": "0.3.31", 1159 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", 1160 + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", 1161 + "license": "MIT", 1162 + "dependencies": { 1163 + "@jridgewell/resolve-uri": "^3.1.0", 1164 + "@jridgewell/sourcemap-codec": "^1.4.14" 1165 + } 1166 + }, 1167 + "node_modules/@mdx-js/mdx": { 1168 + "version": "3.1.1", 1169 + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz", 1170 + "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==", 1171 + "license": "MIT", 1172 + "dependencies": { 1173 + "@types/estree": "^1.0.0", 1174 + "@types/estree-jsx": "^1.0.0", 1175 + "@types/hast": "^3.0.0", 1176 + "@types/mdx": "^2.0.0", 1177 + "acorn": "^8.0.0", 1178 + "collapse-white-space": "^2.0.0", 1179 + "devlop": "^1.0.0", 1180 + "estree-util-is-identifier-name": "^3.0.0", 1181 + "estree-util-scope": "^1.0.0", 1182 + "estree-walker": "^3.0.0", 1183 + "hast-util-to-jsx-runtime": "^2.0.0", 1184 + "markdown-extensions": "^2.0.0", 1185 + "recma-build-jsx": "^1.0.0", 1186 + "recma-jsx": "^1.0.0", 1187 + "recma-stringify": "^1.0.0", 1188 + "rehype-recma": "^1.0.0", 1189 + "remark-mdx": "^3.0.0", 1190 + "remark-parse": "^11.0.0", 1191 + "remark-rehype": "^11.0.0", 1192 + "source-map": "^0.7.0", 1193 + "unified": "^11.0.0", 1194 + "unist-util-position-from-estree": "^2.0.0", 1195 + "unist-util-stringify-position": "^4.0.0", 1196 + "unist-util-visit": "^5.0.0", 1197 + "vfile": "^6.0.0" 1198 + }, 1199 + "funding": { 1200 + "type": "opencollective", 1201 + "url": "https://opencollective.com/unified" 1202 + } 1203 + }, 1204 + "node_modules/@napi-rs/wasm-runtime": { 1205 + "version": "1.1.1", 1206 + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz", 1207 + "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==", 1208 + "license": "MIT", 1209 + "optional": true, 1210 + "dependencies": { 1211 + "@emnapi/core": "^1.7.1", 1212 + "@emnapi/runtime": "^1.7.1", 1213 + "@tybys/wasm-util": "^0.10.1" 1214 + }, 1215 + "funding": { 1216 + "type": "github", 1217 + "url": "https://github.com/sponsors/Brooooooklyn" 1218 + } 1219 + }, 1220 + "node_modules/@oslojs/encoding": { 1221 + "version": "1.1.0", 1222 + "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz", 1223 + "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==", 1224 + "license": "MIT" 1225 + }, 1226 + "node_modules/@oxc-project/types": { 1227 + "version": "0.122.0", 1228 + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.122.0.tgz", 1229 + "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==", 1230 + "license": "MIT", 1231 + "funding": { 1232 + "url": "https://github.com/sponsors/Boshen" 1233 + } 1234 + }, 1235 + "node_modules/@rolldown/binding-android-arm64": { 1236 + "version": "1.0.0-rc.12", 1237 + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz", 1238 + "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==", 1239 + "cpu": [ 1240 + "arm64" 1241 + ], 1242 + "license": "MIT", 1243 + "optional": true, 1244 + "os": [ 1245 + "android" 1246 + ], 1247 + "engines": { 1248 + "node": "^20.19.0 || >=22.12.0" 1249 + } 1250 + }, 1251 + "node_modules/@rolldown/binding-darwin-arm64": { 1252 + "version": "1.0.0-rc.12", 1253 + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz", 1254 + "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==", 1255 + "cpu": [ 1256 + "arm64" 1257 + ], 1258 + "license": "MIT", 1259 + "optional": true, 1260 + "os": [ 1261 + "darwin" 1262 + ], 1263 + "engines": { 1264 + "node": "^20.19.0 || >=22.12.0" 1265 + } 1266 + }, 1267 + "node_modules/@rolldown/binding-darwin-x64": { 1268 + "version": "1.0.0-rc.12", 1269 + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz", 1270 + "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==", 1271 + "cpu": [ 1272 + "x64" 1273 + ], 1274 + "license": "MIT", 1275 + "optional": true, 1276 + "os": [ 1277 + "darwin" 1278 + ], 1279 + "engines": { 1280 + "node": "^20.19.0 || >=22.12.0" 1281 + } 1282 + }, 1283 + "node_modules/@rolldown/binding-freebsd-x64": { 1284 + "version": "1.0.0-rc.12", 1285 + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz", 1286 + "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==", 1287 + "cpu": [ 1288 + "x64" 1289 + ], 1290 + "license": "MIT", 1291 + "optional": true, 1292 + "os": [ 1293 + "freebsd" 1294 + ], 1295 + "engines": { 1296 + "node": "^20.19.0 || >=22.12.0" 1297 + } 1298 + }, 1299 + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { 1300 + "version": "1.0.0-rc.12", 1301 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz", 1302 + "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==", 1303 + "cpu": [ 1304 + "arm" 1305 + ], 1306 + "license": "MIT", 1307 + "optional": true, 1308 + "os": [ 1309 + "linux" 1310 + ], 1311 + "engines": { 1312 + "node": "^20.19.0 || >=22.12.0" 1313 + } 1314 + }, 1315 + "node_modules/@rolldown/binding-linux-arm64-gnu": { 1316 + "version": "1.0.0-rc.12", 1317 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz", 1318 + "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==", 1319 + "cpu": [ 1320 + "arm64" 1321 + ], 1322 + "license": "MIT", 1323 + "optional": true, 1324 + "os": [ 1325 + "linux" 1326 + ], 1327 + "engines": { 1328 + "node": "^20.19.0 || >=22.12.0" 1329 + } 1330 + }, 1331 + "node_modules/@rolldown/binding-linux-arm64-musl": { 1332 + "version": "1.0.0-rc.12", 1333 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz", 1334 + "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==", 1335 + "cpu": [ 1336 + "arm64" 1337 + ], 1338 + "license": "MIT", 1339 + "optional": true, 1340 + "os": [ 1341 + "linux" 1342 + ], 1343 + "engines": { 1344 + "node": "^20.19.0 || >=22.12.0" 1345 + } 1346 + }, 1347 + "node_modules/@rolldown/binding-linux-ppc64-gnu": { 1348 + "version": "1.0.0-rc.12", 1349 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz", 1350 + "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==", 1351 + "cpu": [ 1352 + "ppc64" 1353 + ], 1354 + "license": "MIT", 1355 + "optional": true, 1356 + "os": [ 1357 + "linux" 1358 + ], 1359 + "engines": { 1360 + "node": "^20.19.0 || >=22.12.0" 1361 + } 1362 + }, 1363 + "node_modules/@rolldown/binding-linux-s390x-gnu": { 1364 + "version": "1.0.0-rc.12", 1365 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz", 1366 + "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==", 1367 + "cpu": [ 1368 + "s390x" 1369 + ], 1370 + "license": "MIT", 1371 + "optional": true, 1372 + "os": [ 1373 + "linux" 1374 + ], 1375 + "engines": { 1376 + "node": "^20.19.0 || >=22.12.0" 1377 + } 1378 + }, 1379 + "node_modules/@rolldown/binding-linux-x64-gnu": { 1380 + "version": "1.0.0-rc.12", 1381 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz", 1382 + "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==", 1383 + "cpu": [ 1384 + "x64" 1385 + ], 1386 + "license": "MIT", 1387 + "optional": true, 1388 + "os": [ 1389 + "linux" 1390 + ], 1391 + "engines": { 1392 + "node": "^20.19.0 || >=22.12.0" 1393 + } 1394 + }, 1395 + "node_modules/@rolldown/binding-linux-x64-musl": { 1396 + "version": "1.0.0-rc.12", 1397 + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz", 1398 + "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==", 1399 + "cpu": [ 1400 + "x64" 1401 + ], 1402 + "license": "MIT", 1403 + "optional": true, 1404 + "os": [ 1405 + "linux" 1406 + ], 1407 + "engines": { 1408 + "node": "^20.19.0 || >=22.12.0" 1409 + } 1410 + }, 1411 + "node_modules/@rolldown/binding-openharmony-arm64": { 1412 + "version": "1.0.0-rc.12", 1413 + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz", 1414 + "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==", 1415 + "cpu": [ 1416 + "arm64" 1417 + ], 1418 + "license": "MIT", 1419 + "optional": true, 1420 + "os": [ 1421 + "openharmony" 1422 + ], 1423 + "engines": { 1424 + "node": "^20.19.0 || >=22.12.0" 1425 + } 1426 + }, 1427 + "node_modules/@rolldown/binding-wasm32-wasi": { 1428 + "version": "1.0.0-rc.12", 1429 + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz", 1430 + "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==", 1431 + "cpu": [ 1432 + "wasm32" 1433 + ], 1434 + "license": "MIT", 1435 + "optional": true, 1436 + "dependencies": { 1437 + "@napi-rs/wasm-runtime": "^1.1.1" 1438 + }, 1439 + "engines": { 1440 + "node": ">=14.0.0" 1441 + } 1442 + }, 1443 + "node_modules/@rolldown/binding-win32-arm64-msvc": { 1444 + "version": "1.0.0-rc.12", 1445 + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz", 1446 + "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==", 1447 + "cpu": [ 1448 + "arm64" 1449 + ], 1450 + "license": "MIT", 1451 + "optional": true, 1452 + "os": [ 1453 + "win32" 1454 + ], 1455 + "engines": { 1456 + "node": "^20.19.0 || >=22.12.0" 1457 + } 1458 + }, 1459 + "node_modules/@rolldown/binding-win32-x64-msvc": { 1460 + "version": "1.0.0-rc.12", 1461 + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz", 1462 + "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==", 1463 + "cpu": [ 1464 + "x64" 1465 + ], 1466 + "license": "MIT", 1467 + "optional": true, 1468 + "os": [ 1469 + "win32" 1470 + ], 1471 + "engines": { 1472 + "node": "^20.19.0 || >=22.12.0" 1473 + } 1474 + }, 1475 + "node_modules/@rolldown/pluginutils": { 1476 + "version": "1.0.0-rc.12", 1477 + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz", 1478 + "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==", 1479 + "license": "MIT" 1480 + }, 1481 + "node_modules/@rollup/pluginutils": { 1482 + "version": "5.3.0", 1483 + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", 1484 + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", 1485 + "license": "MIT", 1486 + "dependencies": { 1487 + "@types/estree": "^1.0.0", 1488 + "estree-walker": "^2.0.2", 1489 + "picomatch": "^4.0.2" 1490 + }, 1491 + "engines": { 1492 + "node": ">=14.0.0" 1493 + }, 1494 + "peerDependencies": { 1495 + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 1496 + }, 1497 + "peerDependenciesMeta": { 1498 + "rollup": { 1499 + "optional": true 1500 + } 1501 + } 1502 + }, 1503 + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { 1504 + "version": "2.0.2", 1505 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1506 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1507 + "license": "MIT" 1508 + }, 1509 + "node_modules/@rollup/rollup-android-arm-eabi": { 1510 + "version": "4.60.0", 1511 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.0.tgz", 1512 + "integrity": "sha512-WOhNW9K8bR3kf4zLxbfg6Pxu2ybOUbB2AjMDHSQx86LIF4rH4Ft7vmMwNt0loO0eonglSNy4cpD3MKXXKQu0/A==", 1513 + "cpu": [ 1514 + "arm" 1515 + ], 1516 + "license": "MIT", 1517 + "optional": true, 1518 + "os": [ 1519 + "android" 1520 + ] 1521 + }, 1522 + "node_modules/@rollup/rollup-android-arm64": { 1523 + "version": "4.60.0", 1524 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.0.tgz", 1525 + "integrity": "sha512-u6JHLll5QKRvjciE78bQXDmqRqNs5M/3GVqZeMwvmjaNODJih/WIrJlFVEihvV0MiYFmd+ZyPr9wxOVbPAG2Iw==", 1526 + "cpu": [ 1527 + "arm64" 1528 + ], 1529 + "license": "MIT", 1530 + "optional": true, 1531 + "os": [ 1532 + "android" 1533 + ] 1534 + }, 1535 + "node_modules/@rollup/rollup-darwin-arm64": { 1536 + "version": "4.60.0", 1537 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.0.tgz", 1538 + "integrity": "sha512-qEF7CsKKzSRc20Ciu2Zw1wRrBz4g56F7r/vRwY430UPp/nt1x21Q/fpJ9N5l47WWvJlkNCPJz3QRVw008fi7yA==", 1539 + "cpu": [ 1540 + "arm64" 1541 + ], 1542 + "license": "MIT", 1543 + "optional": true, 1544 + "os": [ 1545 + "darwin" 1546 + ] 1547 + }, 1548 + "node_modules/@rollup/rollup-darwin-x64": { 1549 + "version": "4.60.0", 1550 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.0.tgz", 1551 + "integrity": "sha512-WADYozJ4QCnXCH4wPB+3FuGmDPoFseVCUrANmA5LWwGmC6FL14BWC7pcq+FstOZv3baGX65tZ378uT6WG8ynTw==", 1552 + "cpu": [ 1553 + "x64" 1554 + ], 1555 + "license": "MIT", 1556 + "optional": true, 1557 + "os": [ 1558 + "darwin" 1559 + ] 1560 + }, 1561 + "node_modules/@rollup/rollup-freebsd-arm64": { 1562 + "version": "4.60.0", 1563 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.0.tgz", 1564 + "integrity": "sha512-6b8wGHJlDrGeSE3aH5mGNHBjA0TTkxdoNHik5EkvPHCt351XnigA4pS7Wsj/Eo9Y8RBU6f35cjN9SYmCFBtzxw==", 1565 + "cpu": [ 1566 + "arm64" 1567 + ], 1568 + "license": "MIT", 1569 + "optional": true, 1570 + "os": [ 1571 + "freebsd" 1572 + ] 1573 + }, 1574 + "node_modules/@rollup/rollup-freebsd-x64": { 1575 + "version": "4.60.0", 1576 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.0.tgz", 1577 + "integrity": "sha512-h25Ga0t4jaylMB8M/JKAyrvvfxGRjnPQIR8lnCayyzEjEOx2EJIlIiMbhpWxDRKGKF8jbNH01NnN663dH638mA==", 1578 + "cpu": [ 1579 + "x64" 1580 + ], 1581 + "license": "MIT", 1582 + "optional": true, 1583 + "os": [ 1584 + "freebsd" 1585 + ] 1586 + }, 1587 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1588 + "version": "4.60.0", 1589 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.0.tgz", 1590 + "integrity": "sha512-RzeBwv0B3qtVBWtcuABtSuCzToo2IEAIQrcyB/b2zMvBWVbjo8bZDjACUpnaafaxhTw2W+imQbP2BD1usasK4g==", 1591 + "cpu": [ 1592 + "arm" 1593 + ], 1594 + "license": "MIT", 1595 + "optional": true, 1596 + "os": [ 1597 + "linux" 1598 + ] 1599 + }, 1600 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1601 + "version": "4.60.0", 1602 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.0.tgz", 1603 + "integrity": "sha512-Sf7zusNI2CIU1HLzuu9Tc5YGAHEZs5Lu7N1ssJG4Tkw6e0MEsN7NdjUDDfGNHy2IU+ENyWT+L2obgWiguWibWQ==", 1604 + "cpu": [ 1605 + "arm" 1606 + ], 1607 + "license": "MIT", 1608 + "optional": true, 1609 + "os": [ 1610 + "linux" 1611 + ] 1612 + }, 1613 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 1614 + "version": "4.60.0", 1615 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.0.tgz", 1616 + "integrity": "sha512-DX2x7CMcrJzsE91q7/O02IJQ5/aLkVtYFryqCjduJhUfGKG6yJV8hxaw8pZa93lLEpPTP/ohdN4wFz7yp/ry9A==", 1617 + "cpu": [ 1618 + "arm64" 1619 + ], 1620 + "license": "MIT", 1621 + "optional": true, 1622 + "os": [ 1623 + "linux" 1624 + ] 1625 + }, 1626 + "node_modules/@rollup/rollup-linux-arm64-musl": { 1627 + "version": "4.60.0", 1628 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.0.tgz", 1629 + "integrity": "sha512-09EL+yFVbJZlhcQfShpswwRZ0Rg+z/CsSELFCnPt3iK+iqwGsI4zht3secj5vLEs957QvFFXnzAT0FFPIxSrkQ==", 1630 + "cpu": [ 1631 + "arm64" 1632 + ], 1633 + "license": "MIT", 1634 + "optional": true, 1635 + "os": [ 1636 + "linux" 1637 + ] 1638 + }, 1639 + "node_modules/@rollup/rollup-linux-loong64-gnu": { 1640 + "version": "4.60.0", 1641 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.0.tgz", 1642 + "integrity": "sha512-i9IcCMPr3EXm8EQg5jnja0Zyc1iFxJjZWlb4wr7U2Wx/GrddOuEafxRdMPRYVaXjgbhvqalp6np07hN1w9kAKw==", 1643 + "cpu": [ 1644 + "loong64" 1645 + ], 1646 + "license": "MIT", 1647 + "optional": true, 1648 + "os": [ 1649 + "linux" 1650 + ] 1651 + }, 1652 + "node_modules/@rollup/rollup-linux-loong64-musl": { 1653 + "version": "4.60.0", 1654 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.0.tgz", 1655 + "integrity": "sha512-DGzdJK9kyJ+B78MCkWeGnpXJ91tK/iKA6HwHxF4TAlPIY7GXEvMe8hBFRgdrR9Ly4qebR/7gfUs9y2IoaVEyog==", 1656 + "cpu": [ 1657 + "loong64" 1658 + ], 1659 + "license": "MIT", 1660 + "optional": true, 1661 + "os": [ 1662 + "linux" 1663 + ] 1664 + }, 1665 + "node_modules/@rollup/rollup-linux-ppc64-gnu": { 1666 + "version": "4.60.0", 1667 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.0.tgz", 1668 + "integrity": "sha512-RwpnLsqC8qbS8z1H1AxBA1H6qknR4YpPR9w2XX0vo2Sz10miu57PkNcnHVaZkbqyw/kUWfKMI73jhmfi9BRMUQ==", 1669 + "cpu": [ 1670 + "ppc64" 1671 + ], 1672 + "license": "MIT", 1673 + "optional": true, 1674 + "os": [ 1675 + "linux" 1676 + ] 1677 + }, 1678 + "node_modules/@rollup/rollup-linux-ppc64-musl": { 1679 + "version": "4.60.0", 1680 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.0.tgz", 1681 + "integrity": "sha512-Z8pPf54Ly3aqtdWC3G4rFigZgNvd+qJlOE52fmko3KST9SoGfAdSRCwyoyG05q1HrrAblLbk1/PSIV+80/pxLg==", 1682 + "cpu": [ 1683 + "ppc64" 1684 + ], 1685 + "license": "MIT", 1686 + "optional": true, 1687 + "os": [ 1688 + "linux" 1689 + ] 1690 + }, 1691 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1692 + "version": "4.60.0", 1693 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.0.tgz", 1694 + "integrity": "sha512-3a3qQustp3COCGvnP4SvrMHnPQ9d1vzCakQVRTliaz8cIp/wULGjiGpbcqrkv0WrHTEp8bQD/B3HBjzujVWLOA==", 1695 + "cpu": [ 1696 + "riscv64" 1697 + ], 1698 + "license": "MIT", 1699 + "optional": true, 1700 + "os": [ 1701 + "linux" 1702 + ] 1703 + }, 1704 + "node_modules/@rollup/rollup-linux-riscv64-musl": { 1705 + "version": "4.60.0", 1706 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.0.tgz", 1707 + "integrity": "sha512-pjZDsVH/1VsghMJ2/kAaxt6dL0psT6ZexQVrijczOf+PeP2BUqTHYejk3l6TlPRydggINOeNRhvpLa0AYpCWSQ==", 1708 + "cpu": [ 1709 + "riscv64" 1710 + ], 1711 + "license": "MIT", 1712 + "optional": true, 1713 + "os": [ 1714 + "linux" 1715 + ] 1716 + }, 1717 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 1718 + "version": "4.60.0", 1719 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.0.tgz", 1720 + "integrity": "sha512-3ObQs0BhvPgiUVZrN7gqCSvmFuMWvWvsjG5ayJ3Lraqv+2KhOsp+pUbigqbeWqueGIsnn+09HBw27rJ+gYK4VQ==", 1721 + "cpu": [ 1722 + "s390x" 1723 + ], 1724 + "license": "MIT", 1725 + "optional": true, 1726 + "os": [ 1727 + "linux" 1728 + ] 1729 + }, 1730 + "node_modules/@rollup/rollup-linux-x64-gnu": { 1731 + "version": "4.60.0", 1732 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.0.tgz", 1733 + "integrity": "sha512-EtylprDtQPdS5rXvAayrNDYoJhIz1/vzN2fEubo3yLE7tfAw+948dO0g4M0vkTVFhKojnF+n6C8bDNe+gDRdTg==", 1734 + "cpu": [ 1735 + "x64" 1736 + ], 1737 + "license": "MIT", 1738 + "optional": true, 1739 + "os": [ 1740 + "linux" 1741 + ] 1742 + }, 1743 + "node_modules/@rollup/rollup-linux-x64-musl": { 1744 + "version": "4.60.0", 1745 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.0.tgz", 1746 + "integrity": "sha512-k09oiRCi/bHU9UVFqD17r3eJR9bn03TyKraCrlz5ULFJGdJGi7VOmm9jl44vOJvRJ6P7WuBi/s2A97LxxHGIdw==", 1747 + "cpu": [ 1748 + "x64" 1749 + ], 1750 + "license": "MIT", 1751 + "optional": true, 1752 + "os": [ 1753 + "linux" 1754 + ] 1755 + }, 1756 + "node_modules/@rollup/rollup-openbsd-x64": { 1757 + "version": "4.60.0", 1758 + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.0.tgz", 1759 + "integrity": "sha512-1o/0/pIhozoSaDJoDcec+IVLbnRtQmHwPV730+AOD29lHEEo4F5BEUB24H0OBdhbBBDwIOSuf7vgg0Ywxdfiiw==", 1760 + "cpu": [ 1761 + "x64" 1762 + ], 1763 + "license": "MIT", 1764 + "optional": true, 1765 + "os": [ 1766 + "openbsd" 1767 + ] 1768 + }, 1769 + "node_modules/@rollup/rollup-openharmony-arm64": { 1770 + "version": "4.60.0", 1771 + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.0.tgz", 1772 + "integrity": "sha512-pESDkos/PDzYwtyzB5p/UoNU/8fJo68vcXM9ZW2V0kjYayj1KaaUfi1NmTUTUpMn4UhU4gTuK8gIaFO4UGuMbA==", 1773 + "cpu": [ 1774 + "arm64" 1775 + ], 1776 + "license": "MIT", 1777 + "optional": true, 1778 + "os": [ 1779 + "openharmony" 1780 + ] 1781 + }, 1782 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 1783 + "version": "4.60.0", 1784 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.0.tgz", 1785 + "integrity": "sha512-hj1wFStD7B1YBeYmvY+lWXZ7ey73YGPcViMShYikqKT1GtstIKQAtfUI6yrzPjAy/O7pO0VLXGmUVWXQMaYgTQ==", 1786 + "cpu": [ 1787 + "arm64" 1788 + ], 1789 + "license": "MIT", 1790 + "optional": true, 1791 + "os": [ 1792 + "win32" 1793 + ] 1794 + }, 1795 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 1796 + "version": "4.60.0", 1797 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.0.tgz", 1798 + "integrity": "sha512-SyaIPFoxmUPlNDq5EHkTbiKzmSEmq/gOYFI/3HHJ8iS/v1mbugVa7dXUzcJGQfoytp9DJFLhHH4U3/eTy2Bq4w==", 1799 + "cpu": [ 1800 + "ia32" 1801 + ], 1802 + "license": "MIT", 1803 + "optional": true, 1804 + "os": [ 1805 + "win32" 1806 + ] 1807 + }, 1808 + "node_modules/@rollup/rollup-win32-x64-gnu": { 1809 + "version": "4.60.0", 1810 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.0.tgz", 1811 + "integrity": "sha512-RdcryEfzZr+lAr5kRm2ucN9aVlCCa2QNq4hXelZxb8GG0NJSazq44Z3PCCc8wISRuCVnGs0lQJVX5Vp6fKA+IA==", 1812 + "cpu": [ 1813 + "x64" 1814 + ], 1815 + "license": "MIT", 1816 + "optional": true, 1817 + "os": [ 1818 + "win32" 1819 + ] 1820 + }, 1821 + "node_modules/@rollup/rollup-win32-x64-msvc": { 1822 + "version": "4.60.0", 1823 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.0.tgz", 1824 + "integrity": "sha512-PrsWNQ8BuE00O3Xsx3ALh2Df8fAj9+cvvX9AIA6o4KpATR98c9mud4XtDWVvsEuyia5U4tVSTKygawyJkjm60w==", 1825 + "cpu": [ 1826 + "x64" 1827 + ], 1828 + "license": "MIT", 1829 + "optional": true, 1830 + "os": [ 1831 + "win32" 1832 + ] 1833 + }, 1834 + "node_modules/@shikijs/core": { 1835 + "version": "4.0.2", 1836 + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-4.0.2.tgz", 1837 + "integrity": "sha512-hxT0YF4ExEqB8G/qFdtJvpmHXBYJ2lWW7qTHDarVkIudPFE6iCIrqdgWxGn5s+ppkGXI0aEGlibI0PAyzP3zlw==", 1838 + "license": "MIT", 1839 + "dependencies": { 1840 + "@shikijs/primitive": "4.0.2", 1841 + "@shikijs/types": "4.0.2", 1842 + "@shikijs/vscode-textmate": "^10.0.2", 1843 + "@types/hast": "^3.0.4", 1844 + "hast-util-to-html": "^9.0.5" 1845 + }, 1846 + "engines": { 1847 + "node": ">=20" 1848 + } 1849 + }, 1850 + "node_modules/@shikijs/engine-javascript": { 1851 + "version": "4.0.2", 1852 + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-4.0.2.tgz", 1853 + "integrity": "sha512-7PW0Nm49DcoUIQEXlJhNNBHyoGMjalRETTCcjMqEaMoJRLljy1Bi/EGV3/qLBgLKQejdspiiYuHGQW6dX94Nag==", 1854 + "license": "MIT", 1855 + "dependencies": { 1856 + "@shikijs/types": "4.0.2", 1857 + "@shikijs/vscode-textmate": "^10.0.2", 1858 + "oniguruma-to-es": "^4.3.4" 1859 + }, 1860 + "engines": { 1861 + "node": ">=20" 1862 + } 1863 + }, 1864 + "node_modules/@shikijs/engine-oniguruma": { 1865 + "version": "4.0.2", 1866 + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-4.0.2.tgz", 1867 + "integrity": "sha512-UpCB9Y2sUKlS9z8juFSKz7ZtysmeXCgnRF0dlhXBkmQnek7lAToPte8DkxmEYGNTMii72zU/lyXiCB6StuZeJg==", 1868 + "license": "MIT", 1869 + "dependencies": { 1870 + "@shikijs/types": "4.0.2", 1871 + "@shikijs/vscode-textmate": "^10.0.2" 1872 + }, 1873 + "engines": { 1874 + "node": ">=20" 1875 + } 1876 + }, 1877 + "node_modules/@shikijs/langs": { 1878 + "version": "4.0.2", 1879 + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-4.0.2.tgz", 1880 + "integrity": "sha512-KaXby5dvoeuZzN0rYQiPMjFoUrz4hgwIE+D6Du9owcHcl6/g16/yT5BQxSW5cGt2MZBz6Hl0YuRqf12omRfUUg==", 1881 + "license": "MIT", 1882 + "dependencies": { 1883 + "@shikijs/types": "4.0.2" 1884 + }, 1885 + "engines": { 1886 + "node": ">=20" 1887 + } 1888 + }, 1889 + "node_modules/@shikijs/primitive": { 1890 + "version": "4.0.2", 1891 + "resolved": "https://registry.npmjs.org/@shikijs/primitive/-/primitive-4.0.2.tgz", 1892 + "integrity": "sha512-M6UMPrSa3fN5ayeJwFVl9qWofl273wtK1VG8ySDZ1mQBfhCpdd8nEx7nPZ/tk7k+TYcpqBZzj/AnwxT9lO+HJw==", 1893 + "license": "MIT", 1894 + "dependencies": { 1895 + "@shikijs/types": "4.0.2", 1896 + "@shikijs/vscode-textmate": "^10.0.2", 1897 + "@types/hast": "^3.0.4" 1898 + }, 1899 + "engines": { 1900 + "node": ">=20" 1901 + } 1902 + }, 1903 + "node_modules/@shikijs/themes": { 1904 + "version": "4.0.2", 1905 + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-4.0.2.tgz", 1906 + "integrity": "sha512-mjCafwt8lJJaVSsQvNVrJumbnnj1RI8jbUKrPKgE6E3OvQKxnuRoBaYC51H4IGHePsGN/QtALglWBU7DoKDFnA==", 1907 + "license": "MIT", 1908 + "dependencies": { 1909 + "@shikijs/types": "4.0.2" 1910 + }, 1911 + "engines": { 1912 + "node": ">=20" 1913 + } 1914 + }, 1915 + "node_modules/@shikijs/types": { 1916 + "version": "4.0.2", 1917 + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-4.0.2.tgz", 1918 + "integrity": "sha512-qzbeRooUTPnLE+sHD/Z8DStmaDgnbbc/pMrU203950aRqjX/6AFHeDYT+j00y2lPdz0ywJKx7o/7qnqTivtlXg==", 1919 + "license": "MIT", 1920 + "dependencies": { 1921 + "@shikijs/vscode-textmate": "^10.0.2", 1922 + "@types/hast": "^3.0.4" 1923 + }, 1924 + "engines": { 1925 + "node": ">=20" 1926 + } 1927 + }, 1928 + "node_modules/@shikijs/vscode-textmate": { 1929 + "version": "10.0.2", 1930 + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", 1931 + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", 1932 + "license": "MIT" 1933 + }, 1934 + "node_modules/@tailwindcss/node": { 1935 + "version": "4.2.2", 1936 + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz", 1937 + "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==", 1938 + "license": "MIT", 1939 + "dependencies": { 1940 + "@jridgewell/remapping": "^2.3.5", 1941 + "enhanced-resolve": "^5.19.0", 1942 + "jiti": "^2.6.1", 1943 + "lightningcss": "1.32.0", 1944 + "magic-string": "^0.30.21", 1945 + "source-map-js": "^1.2.1", 1946 + "tailwindcss": "4.2.2" 1947 + } 1948 + }, 1949 + "node_modules/@tailwindcss/oxide": { 1950 + "version": "4.2.2", 1951 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz", 1952 + "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==", 1953 + "license": "MIT", 1954 + "engines": { 1955 + "node": ">= 20" 1956 + }, 1957 + "optionalDependencies": { 1958 + "@tailwindcss/oxide-android-arm64": "4.2.2", 1959 + "@tailwindcss/oxide-darwin-arm64": "4.2.2", 1960 + "@tailwindcss/oxide-darwin-x64": "4.2.2", 1961 + "@tailwindcss/oxide-freebsd-x64": "4.2.2", 1962 + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2", 1963 + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2", 1964 + "@tailwindcss/oxide-linux-arm64-musl": "4.2.2", 1965 + "@tailwindcss/oxide-linux-x64-gnu": "4.2.2", 1966 + "@tailwindcss/oxide-linux-x64-musl": "4.2.2", 1967 + "@tailwindcss/oxide-wasm32-wasi": "4.2.2", 1968 + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2", 1969 + "@tailwindcss/oxide-win32-x64-msvc": "4.2.2" 1970 + } 1971 + }, 1972 + "node_modules/@tailwindcss/oxide-android-arm64": { 1973 + "version": "4.2.2", 1974 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz", 1975 + "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==", 1976 + "cpu": [ 1977 + "arm64" 1978 + ], 1979 + "license": "MIT", 1980 + "optional": true, 1981 + "os": [ 1982 + "android" 1983 + ], 1984 + "engines": { 1985 + "node": ">= 20" 1986 + } 1987 + }, 1988 + "node_modules/@tailwindcss/oxide-darwin-arm64": { 1989 + "version": "4.2.2", 1990 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz", 1991 + "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==", 1992 + "cpu": [ 1993 + "arm64" 1994 + ], 1995 + "license": "MIT", 1996 + "optional": true, 1997 + "os": [ 1998 + "darwin" 1999 + ], 2000 + "engines": { 2001 + "node": ">= 20" 2002 + } 2003 + }, 2004 + "node_modules/@tailwindcss/oxide-darwin-x64": { 2005 + "version": "4.2.2", 2006 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz", 2007 + "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==", 2008 + "cpu": [ 2009 + "x64" 2010 + ], 2011 + "license": "MIT", 2012 + "optional": true, 2013 + "os": [ 2014 + "darwin" 2015 + ], 2016 + "engines": { 2017 + "node": ">= 20" 2018 + } 2019 + }, 2020 + "node_modules/@tailwindcss/oxide-freebsd-x64": { 2021 + "version": "4.2.2", 2022 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz", 2023 + "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==", 2024 + "cpu": [ 2025 + "x64" 2026 + ], 2027 + "license": "MIT", 2028 + "optional": true, 2029 + "os": [ 2030 + "freebsd" 2031 + ], 2032 + "engines": { 2033 + "node": ">= 20" 2034 + } 2035 + }, 2036 + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { 2037 + "version": "4.2.2", 2038 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz", 2039 + "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==", 2040 + "cpu": [ 2041 + "arm" 2042 + ], 2043 + "license": "MIT", 2044 + "optional": true, 2045 + "os": [ 2046 + "linux" 2047 + ], 2048 + "engines": { 2049 + "node": ">= 20" 2050 + } 2051 + }, 2052 + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { 2053 + "version": "4.2.2", 2054 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz", 2055 + "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==", 2056 + "cpu": [ 2057 + "arm64" 2058 + ], 2059 + "license": "MIT", 2060 + "optional": true, 2061 + "os": [ 2062 + "linux" 2063 + ], 2064 + "engines": { 2065 + "node": ">= 20" 2066 + } 2067 + }, 2068 + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { 2069 + "version": "4.2.2", 2070 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz", 2071 + "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==", 2072 + "cpu": [ 2073 + "arm64" 2074 + ], 2075 + "license": "MIT", 2076 + "optional": true, 2077 + "os": [ 2078 + "linux" 2079 + ], 2080 + "engines": { 2081 + "node": ">= 20" 2082 + } 2083 + }, 2084 + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { 2085 + "version": "4.2.2", 2086 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz", 2087 + "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==", 2088 + "cpu": [ 2089 + "x64" 2090 + ], 2091 + "license": "MIT", 2092 + "optional": true, 2093 + "os": [ 2094 + "linux" 2095 + ], 2096 + "engines": { 2097 + "node": ">= 20" 2098 + } 2099 + }, 2100 + "node_modules/@tailwindcss/oxide-linux-x64-musl": { 2101 + "version": "4.2.2", 2102 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz", 2103 + "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==", 2104 + "cpu": [ 2105 + "x64" 2106 + ], 2107 + "license": "MIT", 2108 + "optional": true, 2109 + "os": [ 2110 + "linux" 2111 + ], 2112 + "engines": { 2113 + "node": ">= 20" 2114 + } 2115 + }, 2116 + "node_modules/@tailwindcss/oxide-wasm32-wasi": { 2117 + "version": "4.2.2", 2118 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz", 2119 + "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==", 2120 + "bundleDependencies": [ 2121 + "@napi-rs/wasm-runtime", 2122 + "@emnapi/core", 2123 + "@emnapi/runtime", 2124 + "@tybys/wasm-util", 2125 + "@emnapi/wasi-threads", 2126 + "tslib" 2127 + ], 2128 + "cpu": [ 2129 + "wasm32" 2130 + ], 2131 + "license": "MIT", 2132 + "optional": true, 2133 + "dependencies": { 2134 + "@emnapi/core": "^1.8.1", 2135 + "@emnapi/runtime": "^1.8.1", 2136 + "@emnapi/wasi-threads": "^1.1.0", 2137 + "@napi-rs/wasm-runtime": "^1.1.1", 2138 + "@tybys/wasm-util": "^0.10.1", 2139 + "tslib": "^2.8.1" 2140 + }, 2141 + "engines": { 2142 + "node": ">=14.0.0" 2143 + } 2144 + }, 2145 + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { 2146 + "version": "4.2.2", 2147 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz", 2148 + "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==", 2149 + "cpu": [ 2150 + "arm64" 2151 + ], 2152 + "license": "MIT", 2153 + "optional": true, 2154 + "os": [ 2155 + "win32" 2156 + ], 2157 + "engines": { 2158 + "node": ">= 20" 2159 + } 2160 + }, 2161 + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { 2162 + "version": "4.2.2", 2163 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", 2164 + "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==", 2165 + "cpu": [ 2166 + "x64" 2167 + ], 2168 + "license": "MIT", 2169 + "optional": true, 2170 + "os": [ 2171 + "win32" 2172 + ], 2173 + "engines": { 2174 + "node": ">= 20" 2175 + } 2176 + }, 2177 + "node_modules/@tailwindcss/vite": { 2178 + "version": "4.2.2", 2179 + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz", 2180 + "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==", 2181 + "license": "MIT", 2182 + "dependencies": { 2183 + "@tailwindcss/node": "4.2.2", 2184 + "@tailwindcss/oxide": "4.2.2", 2185 + "tailwindcss": "4.2.2" 2186 + }, 2187 + "peerDependencies": { 2188 + "vite": "^5.2.0 || ^6 || ^7 || ^8" 2189 + } 2190 + }, 2191 + "node_modules/@tybys/wasm-util": { 2192 + "version": "0.10.1", 2193 + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", 2194 + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", 2195 + "license": "MIT", 2196 + "optional": true, 2197 + "dependencies": { 2198 + "tslib": "^2.4.0" 2199 + } 2200 + }, 2201 + "node_modules/@types/debug": { 2202 + "version": "4.1.13", 2203 + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", 2204 + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", 2205 + "license": "MIT", 2206 + "dependencies": { 2207 + "@types/ms": "*" 2208 + } 2209 + }, 2210 + "node_modules/@types/estree": { 2211 + "version": "1.0.8", 2212 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 2213 + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 2214 + "license": "MIT" 2215 + }, 2216 + "node_modules/@types/estree-jsx": { 2217 + "version": "1.0.5", 2218 + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", 2219 + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", 2220 + "license": "MIT", 2221 + "dependencies": { 2222 + "@types/estree": "*" 2223 + } 2224 + }, 2225 + "node_modules/@types/hast": { 2226 + "version": "3.0.4", 2227 + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", 2228 + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", 2229 + "license": "MIT", 2230 + "dependencies": { 2231 + "@types/unist": "*" 2232 + } 2233 + }, 2234 + "node_modules/@types/mdast": { 2235 + "version": "4.0.4", 2236 + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", 2237 + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", 2238 + "license": "MIT", 2239 + "dependencies": { 2240 + "@types/unist": "*" 2241 + } 2242 + }, 2243 + "node_modules/@types/mdx": { 2244 + "version": "2.0.13", 2245 + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", 2246 + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", 2247 + "license": "MIT" 2248 + }, 2249 + "node_modules/@types/ms": { 2250 + "version": "2.1.0", 2251 + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", 2252 + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", 2253 + "license": "MIT" 2254 + }, 2255 + "node_modules/@types/nlcst": { 2256 + "version": "2.0.3", 2257 + "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz", 2258 + "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==", 2259 + "license": "MIT", 2260 + "dependencies": { 2261 + "@types/unist": "*" 2262 + } 2263 + }, 2264 + "node_modules/@types/node": { 2265 + "version": "24.12.0", 2266 + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz", 2267 + "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==", 2268 + "license": "MIT", 2269 + "dependencies": { 2270 + "undici-types": "~7.16.0" 2271 + } 2272 + }, 2273 + "node_modules/@types/sax": { 2274 + "version": "1.2.7", 2275 + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", 2276 + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", 2277 + "license": "MIT", 2278 + "dependencies": { 2279 + "@types/node": "*" 2280 + } 2281 + }, 2282 + "node_modules/@types/unist": { 2283 + "version": "3.0.3", 2284 + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", 2285 + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", 2286 + "license": "MIT" 2287 + }, 2288 + "node_modules/@ungap/structured-clone": { 2289 + "version": "1.3.0", 2290 + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 2291 + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 2292 + "license": "ISC" 2293 + }, 2294 + "node_modules/acorn": { 2295 + "version": "8.16.0", 2296 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", 2297 + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", 2298 + "license": "MIT", 2299 + "peer": true, 2300 + "bin": { 2301 + "acorn": "bin/acorn" 2302 + }, 2303 + "engines": { 2304 + "node": ">=0.4.0" 2305 + } 2306 + }, 2307 + "node_modules/acorn-jsx": { 2308 + "version": "5.3.2", 2309 + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 2310 + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2311 + "license": "MIT", 2312 + "peerDependencies": { 2313 + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 2314 + } 2315 + }, 2316 + "node_modules/anymatch": { 2317 + "version": "3.1.3", 2318 + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 2319 + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 2320 + "license": "ISC", 2321 + "dependencies": { 2322 + "normalize-path": "^3.0.0", 2323 + "picomatch": "^2.0.4" 2324 + }, 2325 + "engines": { 2326 + "node": ">= 8" 2327 + } 2328 + }, 2329 + "node_modules/anymatch/node_modules/picomatch": { 2330 + "version": "2.3.2", 2331 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", 2332 + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", 2333 + "license": "MIT", 2334 + "engines": { 2335 + "node": ">=8.6" 2336 + }, 2337 + "funding": { 2338 + "url": "https://github.com/sponsors/jonschlinkert" 2339 + } 2340 + }, 2341 + "node_modules/arg": { 2342 + "version": "5.0.2", 2343 + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 2344 + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 2345 + "license": "MIT" 2346 + }, 2347 + "node_modules/argparse": { 2348 + "version": "2.0.1", 2349 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 2350 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 2351 + "license": "Python-2.0" 2352 + }, 2353 + "node_modules/aria-query": { 2354 + "version": "5.3.2", 2355 + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 2356 + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 2357 + "license": "Apache-2.0", 2358 + "engines": { 2359 + "node": ">= 0.4" 2360 + } 2361 + }, 2362 + "node_modules/array-iterate": { 2363 + "version": "2.0.1", 2364 + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", 2365 + "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", 2366 + "license": "MIT", 2367 + "funding": { 2368 + "type": "github", 2369 + "url": "https://github.com/sponsors/wooorm" 2370 + } 2371 + }, 2372 + "node_modules/astring": { 2373 + "version": "1.9.0", 2374 + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", 2375 + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", 2376 + "license": "MIT", 2377 + "bin": { 2378 + "astring": "bin/astring" 2379 + } 2380 + }, 2381 + "node_modules/astro": { 2382 + "version": "6.1.0", 2383 + "resolved": "https://registry.npmjs.org/astro/-/astro-6.1.0.tgz", 2384 + "integrity": "sha512-J8XGJQo5+W2wJLdUbQHVho4DHWDM6V4Dp8s+z0Fs3O/mcu3WjbTBELOv/MC7ueoqmQ/Jts6Bz7FJwbAopbFd+g==", 2385 + "license": "MIT", 2386 + "peer": true, 2387 + "dependencies": { 2388 + "@astrojs/compiler": "^3.0.1", 2389 + "@astrojs/internal-helpers": "0.8.0", 2390 + "@astrojs/markdown-remark": "7.1.0", 2391 + "@astrojs/telemetry": "3.3.0", 2392 + "@capsizecss/unpack": "^4.0.0", 2393 + "@clack/prompts": "^1.1.0", 2394 + "@oslojs/encoding": "^1.1.0", 2395 + "@rollup/pluginutils": "^5.3.0", 2396 + "aria-query": "^5.3.2", 2397 + "axobject-query": "^4.1.0", 2398 + "ci-info": "^4.4.0", 2399 + "clsx": "^2.1.1", 2400 + "common-ancestor-path": "^2.0.0", 2401 + "cookie": "^1.1.1", 2402 + "devalue": "^5.6.3", 2403 + "diff": "^8.0.3", 2404 + "dlv": "^1.1.3", 2405 + "dset": "^3.1.4", 2406 + "es-module-lexer": "^2.0.0", 2407 + "esbuild": "^0.27.3", 2408 + "flattie": "^1.1.1", 2409 + "fontace": "~0.4.1", 2410 + "github-slugger": "^2.0.0", 2411 + "html-escaper": "3.0.3", 2412 + "http-cache-semantics": "^4.2.0", 2413 + "js-yaml": "^4.1.1", 2414 + "magic-string": "^0.30.21", 2415 + "magicast": "^0.5.2", 2416 + "mrmime": "^2.0.1", 2417 + "neotraverse": "^0.6.18", 2418 + "obug": "^2.1.1", 2419 + "p-limit": "^7.3.0", 2420 + "p-queue": "^9.1.0", 2421 + "package-manager-detector": "^1.6.0", 2422 + "piccolore": "^0.1.3", 2423 + "picomatch": "^4.0.3", 2424 + "rehype": "^13.0.2", 2425 + "semver": "^7.7.4", 2426 + "shiki": "^4.0.2", 2427 + "smol-toml": "^1.6.0", 2428 + "svgo": "^4.0.1", 2429 + "tinyclip": "^0.1.12", 2430 + "tinyexec": "^1.0.4", 2431 + "tinyglobby": "^0.2.15", 2432 + "tsconfck": "^3.1.6", 2433 + "ultrahtml": "^1.6.0", 2434 + "unifont": "~0.7.4", 2435 + "unist-util-visit": "^5.1.0", 2436 + "unstorage": "^1.17.4", 2437 + "vfile": "^6.0.3", 2438 + "vite": "^7.3.1", 2439 + "vitefu": "^1.1.2", 2440 + "xxhash-wasm": "^1.1.0", 2441 + "yargs-parser": "^22.0.0", 2442 + "zod": "^4.3.6" 2443 + }, 2444 + "bin": { 2445 + "astro": "bin/astro.mjs" 2446 + }, 2447 + "engines": { 2448 + "node": ">=22.12.0", 2449 + "npm": ">=9.6.5", 2450 + "pnpm": ">=7.1.0" 2451 + }, 2452 + "funding": { 2453 + "type": "opencollective", 2454 + "url": "https://opencollective.com/astrodotbuild" 2455 + }, 2456 + "optionalDependencies": { 2457 + "sharp": "^0.34.0" 2458 + } 2459 + }, 2460 + "node_modules/astro/node_modules/vite": { 2461 + "version": "7.3.1", 2462 + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz", 2463 + "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==", 2464 + "license": "MIT", 2465 + "dependencies": { 2466 + "esbuild": "^0.27.0", 2467 + "fdir": "^6.5.0", 2468 + "picomatch": "^4.0.3", 2469 + "postcss": "^8.5.6", 2470 + "rollup": "^4.43.0", 2471 + "tinyglobby": "^0.2.15" 2472 + }, 2473 + "bin": { 2474 + "vite": "bin/vite.js" 2475 + }, 2476 + "engines": { 2477 + "node": "^20.19.0 || >=22.12.0" 2478 + }, 2479 + "funding": { 2480 + "url": "https://github.com/vitejs/vite?sponsor=1" 2481 + }, 2482 + "optionalDependencies": { 2483 + "fsevents": "~2.3.3" 2484 + }, 2485 + "peerDependencies": { 2486 + "@types/node": "^20.19.0 || >=22.12.0", 2487 + "jiti": ">=1.21.0", 2488 + "less": "^4.0.0", 2489 + "lightningcss": "^1.21.0", 2490 + "sass": "^1.70.0", 2491 + "sass-embedded": "^1.70.0", 2492 + "stylus": ">=0.54.8", 2493 + "sugarss": "^5.0.0", 2494 + "terser": "^5.16.0", 2495 + "tsx": "^4.8.1", 2496 + "yaml": "^2.4.2" 2497 + }, 2498 + "peerDependenciesMeta": { 2499 + "@types/node": { 2500 + "optional": true 2501 + }, 2502 + "jiti": { 2503 + "optional": true 2504 + }, 2505 + "less": { 2506 + "optional": true 2507 + }, 2508 + "lightningcss": { 2509 + "optional": true 2510 + }, 2511 + "sass": { 2512 + "optional": true 2513 + }, 2514 + "sass-embedded": { 2515 + "optional": true 2516 + }, 2517 + "stylus": { 2518 + "optional": true 2519 + }, 2520 + "sugarss": { 2521 + "optional": true 2522 + }, 2523 + "terser": { 2524 + "optional": true 2525 + }, 2526 + "tsx": { 2527 + "optional": true 2528 + }, 2529 + "yaml": { 2530 + "optional": true 2531 + } 2532 + } 2533 + }, 2534 + "node_modules/axobject-query": { 2535 + "version": "4.1.0", 2536 + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 2537 + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 2538 + "license": "Apache-2.0", 2539 + "engines": { 2540 + "node": ">= 0.4" 2541 + } 2542 + }, 2543 + "node_modules/bail": { 2544 + "version": "2.0.2", 2545 + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", 2546 + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", 2547 + "license": "MIT", 2548 + "funding": { 2549 + "type": "github", 2550 + "url": "https://github.com/sponsors/wooorm" 2551 + } 2552 + }, 2553 + "node_modules/boolbase": { 2554 + "version": "1.0.0", 2555 + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 2556 + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 2557 + "license": "ISC" 2558 + }, 2559 + "node_modules/ccount": { 2560 + "version": "2.0.1", 2561 + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", 2562 + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", 2563 + "license": "MIT", 2564 + "funding": { 2565 + "type": "github", 2566 + "url": "https://github.com/sponsors/wooorm" 2567 + } 2568 + }, 2569 + "node_modules/character-entities": { 2570 + "version": "2.0.2", 2571 + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", 2572 + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", 2573 + "license": "MIT", 2574 + "funding": { 2575 + "type": "github", 2576 + "url": "https://github.com/sponsors/wooorm" 2577 + } 2578 + }, 2579 + "node_modules/character-entities-html4": { 2580 + "version": "2.1.0", 2581 + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", 2582 + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", 2583 + "license": "MIT", 2584 + "funding": { 2585 + "type": "github", 2586 + "url": "https://github.com/sponsors/wooorm" 2587 + } 2588 + }, 2589 + "node_modules/character-entities-legacy": { 2590 + "version": "3.0.0", 2591 + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", 2592 + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", 2593 + "license": "MIT", 2594 + "funding": { 2595 + "type": "github", 2596 + "url": "https://github.com/sponsors/wooorm" 2597 + } 2598 + }, 2599 + "node_modules/character-reference-invalid": { 2600 + "version": "2.0.1", 2601 + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", 2602 + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", 2603 + "license": "MIT", 2604 + "funding": { 2605 + "type": "github", 2606 + "url": "https://github.com/sponsors/wooorm" 2607 + } 2608 + }, 2609 + "node_modules/chokidar": { 2610 + "version": "5.0.0", 2611 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz", 2612 + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", 2613 + "license": "MIT", 2614 + "dependencies": { 2615 + "readdirp": "^5.0.0" 2616 + }, 2617 + "engines": { 2618 + "node": ">= 20.19.0" 2619 + }, 2620 + "funding": { 2621 + "url": "https://paulmillr.com/funding/" 2622 + } 2623 + }, 2624 + "node_modules/ci-info": { 2625 + "version": "4.4.0", 2626 + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", 2627 + "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", 2628 + "funding": [ 2629 + { 2630 + "type": "github", 2631 + "url": "https://github.com/sponsors/sibiraj-s" 2632 + } 2633 + ], 2634 + "license": "MIT", 2635 + "engines": { 2636 + "node": ">=8" 2637 + } 2638 + }, 2639 + "node_modules/clsx": { 2640 + "version": "2.1.1", 2641 + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 2642 + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 2643 + "license": "MIT", 2644 + "engines": { 2645 + "node": ">=6" 2646 + } 2647 + }, 2648 + "node_modules/collapse-white-space": { 2649 + "version": "2.1.0", 2650 + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", 2651 + "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", 2652 + "license": "MIT", 2653 + "funding": { 2654 + "type": "github", 2655 + "url": "https://github.com/sponsors/wooorm" 2656 + } 2657 + }, 2658 + "node_modules/comma-separated-tokens": { 2659 + "version": "2.0.3", 2660 + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", 2661 + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", 2662 + "license": "MIT", 2663 + "funding": { 2664 + "type": "github", 2665 + "url": "https://github.com/sponsors/wooorm" 2666 + } 2667 + }, 2668 + "node_modules/commander": { 2669 + "version": "11.1.0", 2670 + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", 2671 + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", 2672 + "license": "MIT", 2673 + "engines": { 2674 + "node": ">=16" 2675 + } 2676 + }, 2677 + "node_modules/common-ancestor-path": { 2678 + "version": "2.0.0", 2679 + "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-2.0.0.tgz", 2680 + "integrity": "sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==", 2681 + "license": "BlueOak-1.0.0", 2682 + "engines": { 2683 + "node": ">= 18" 2684 + } 2685 + }, 2686 + "node_modules/cookie": { 2687 + "version": "1.1.1", 2688 + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", 2689 + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", 2690 + "license": "MIT", 2691 + "engines": { 2692 + "node": ">=18" 2693 + }, 2694 + "funding": { 2695 + "type": "opencollective", 2696 + "url": "https://opencollective.com/express" 2697 + } 2698 + }, 2699 + "node_modules/cookie-es": { 2700 + "version": "1.2.2", 2701 + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", 2702 + "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==", 2703 + "license": "MIT" 2704 + }, 2705 + "node_modules/crossws": { 2706 + "version": "0.3.5", 2707 + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz", 2708 + "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==", 2709 + "license": "MIT", 2710 + "dependencies": { 2711 + "uncrypto": "^0.1.3" 2712 + } 2713 + }, 2714 + "node_modules/css-select": { 2715 + "version": "5.2.2", 2716 + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", 2717 + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", 2718 + "license": "BSD-2-Clause", 2719 + "dependencies": { 2720 + "boolbase": "^1.0.0", 2721 + "css-what": "^6.1.0", 2722 + "domhandler": "^5.0.2", 2723 + "domutils": "^3.0.1", 2724 + "nth-check": "^2.0.1" 2725 + }, 2726 + "funding": { 2727 + "url": "https://github.com/sponsors/fb55" 2728 + } 2729 + }, 2730 + "node_modules/css-tree": { 2731 + "version": "3.2.1", 2732 + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", 2733 + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", 2734 + "license": "MIT", 2735 + "dependencies": { 2736 + "mdn-data": "2.27.1", 2737 + "source-map-js": "^1.2.1" 2738 + }, 2739 + "engines": { 2740 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 2741 + } 2742 + }, 2743 + "node_modules/css-what": { 2744 + "version": "6.2.2", 2745 + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", 2746 + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", 2747 + "license": "BSD-2-Clause", 2748 + "engines": { 2749 + "node": ">= 6" 2750 + }, 2751 + "funding": { 2752 + "url": "https://github.com/sponsors/fb55" 2753 + } 2754 + }, 2755 + "node_modules/csso": { 2756 + "version": "5.0.5", 2757 + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", 2758 + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", 2759 + "license": "MIT", 2760 + "dependencies": { 2761 + "css-tree": "~2.2.0" 2762 + }, 2763 + "engines": { 2764 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 2765 + "npm": ">=7.0.0" 2766 + } 2767 + }, 2768 + "node_modules/csso/node_modules/css-tree": { 2769 + "version": "2.2.1", 2770 + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", 2771 + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", 2772 + "license": "MIT", 2773 + "dependencies": { 2774 + "mdn-data": "2.0.28", 2775 + "source-map-js": "^1.0.1" 2776 + }, 2777 + "engines": { 2778 + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 2779 + "npm": ">=7.0.0" 2780 + } 2781 + }, 2782 + "node_modules/csso/node_modules/mdn-data": { 2783 + "version": "2.0.28", 2784 + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", 2785 + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", 2786 + "license": "CC0-1.0" 2787 + }, 2788 + "node_modules/debug": { 2789 + "version": "4.4.3", 2790 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 2791 + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 2792 + "license": "MIT", 2793 + "dependencies": { 2794 + "ms": "^2.1.3" 2795 + }, 2796 + "engines": { 2797 + "node": ">=6.0" 2798 + }, 2799 + "peerDependenciesMeta": { 2800 + "supports-color": { 2801 + "optional": true 2802 + } 2803 + } 2804 + }, 2805 + "node_modules/decode-named-character-reference": { 2806 + "version": "1.3.0", 2807 + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", 2808 + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", 2809 + "license": "MIT", 2810 + "dependencies": { 2811 + "character-entities": "^2.0.0" 2812 + }, 2813 + "funding": { 2814 + "type": "github", 2815 + "url": "https://github.com/sponsors/wooorm" 2816 + } 2817 + }, 2818 + "node_modules/defu": { 2819 + "version": "6.1.4", 2820 + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", 2821 + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", 2822 + "license": "MIT" 2823 + }, 2824 + "node_modules/dequal": { 2825 + "version": "2.0.3", 2826 + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 2827 + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 2828 + "license": "MIT", 2829 + "engines": { 2830 + "node": ">=6" 2831 + } 2832 + }, 2833 + "node_modules/destr": { 2834 + "version": "2.0.5", 2835 + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz", 2836 + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", 2837 + "license": "MIT" 2838 + }, 2839 + "node_modules/detect-libc": { 2840 + "version": "2.1.2", 2841 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", 2842 + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", 2843 + "license": "Apache-2.0", 2844 + "engines": { 2845 + "node": ">=8" 2846 + } 2847 + }, 2848 + "node_modules/devalue": { 2849 + "version": "5.6.4", 2850 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.6.4.tgz", 2851 + "integrity": "sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==", 2852 + "license": "MIT" 2853 + }, 2854 + "node_modules/devlop": { 2855 + "version": "1.1.0", 2856 + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", 2857 + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", 2858 + "license": "MIT", 2859 + "dependencies": { 2860 + "dequal": "^2.0.0" 2861 + }, 2862 + "funding": { 2863 + "type": "github", 2864 + "url": "https://github.com/sponsors/wooorm" 2865 + } 2866 + }, 2867 + "node_modules/diff": { 2868 + "version": "8.0.4", 2869 + "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz", 2870 + "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==", 2871 + "license": "BSD-3-Clause", 2872 + "engines": { 2873 + "node": ">=0.3.1" 2874 + } 2875 + }, 2876 + "node_modules/dlv": { 2877 + "version": "1.1.3", 2878 + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 2879 + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 2880 + "license": "MIT" 2881 + }, 2882 + "node_modules/dom-serializer": { 2883 + "version": "2.0.0", 2884 + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 2885 + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 2886 + "license": "MIT", 2887 + "dependencies": { 2888 + "domelementtype": "^2.3.0", 2889 + "domhandler": "^5.0.2", 2890 + "entities": "^4.2.0" 2891 + }, 2892 + "funding": { 2893 + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 2894 + } 2895 + }, 2896 + "node_modules/dom-serializer/node_modules/entities": { 2897 + "version": "4.5.0", 2898 + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 2899 + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 2900 + "license": "BSD-2-Clause", 2901 + "engines": { 2902 + "node": ">=0.12" 2903 + }, 2904 + "funding": { 2905 + "url": "https://github.com/fb55/entities?sponsor=1" 2906 + } 2907 + }, 2908 + "node_modules/domelementtype": { 2909 + "version": "2.3.0", 2910 + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 2911 + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 2912 + "funding": [ 2913 + { 2914 + "type": "github", 2915 + "url": "https://github.com/sponsors/fb55" 2916 + } 2917 + ], 2918 + "license": "BSD-2-Clause" 2919 + }, 2920 + "node_modules/domhandler": { 2921 + "version": "5.0.3", 2922 + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 2923 + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 2924 + "license": "BSD-2-Clause", 2925 + "dependencies": { 2926 + "domelementtype": "^2.3.0" 2927 + }, 2928 + "engines": { 2929 + "node": ">= 4" 2930 + }, 2931 + "funding": { 2932 + "url": "https://github.com/fb55/domhandler?sponsor=1" 2933 + } 2934 + }, 2935 + "node_modules/domutils": { 2936 + "version": "3.2.2", 2937 + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", 2938 + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", 2939 + "license": "BSD-2-Clause", 2940 + "dependencies": { 2941 + "dom-serializer": "^2.0.0", 2942 + "domelementtype": "^2.3.0", 2943 + "domhandler": "^5.0.3" 2944 + }, 2945 + "funding": { 2946 + "url": "https://github.com/fb55/domutils?sponsor=1" 2947 + } 2948 + }, 2949 + "node_modules/dset": { 2950 + "version": "3.1.4", 2951 + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", 2952 + "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", 2953 + "license": "MIT", 2954 + "engines": { 2955 + "node": ">=4" 2956 + } 2957 + }, 2958 + "node_modules/enhanced-resolve": { 2959 + "version": "5.20.1", 2960 + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", 2961 + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", 2962 + "license": "MIT", 2963 + "dependencies": { 2964 + "graceful-fs": "^4.2.4", 2965 + "tapable": "^2.3.0" 2966 + }, 2967 + "engines": { 2968 + "node": ">=10.13.0" 2969 + } 2970 + }, 2971 + "node_modules/entities": { 2972 + "version": "6.0.1", 2973 + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", 2974 + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", 2975 + "license": "BSD-2-Clause", 2976 + "engines": { 2977 + "node": ">=0.12" 2978 + }, 2979 + "funding": { 2980 + "url": "https://github.com/fb55/entities?sponsor=1" 2981 + } 2982 + }, 2983 + "node_modules/es-module-lexer": { 2984 + "version": "2.0.0", 2985 + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz", 2986 + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==", 2987 + "license": "MIT" 2988 + }, 2989 + "node_modules/esast-util-from-estree": { 2990 + "version": "2.0.0", 2991 + "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz", 2992 + "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==", 2993 + "license": "MIT", 2994 + "dependencies": { 2995 + "@types/estree-jsx": "^1.0.0", 2996 + "devlop": "^1.0.0", 2997 + "estree-util-visit": "^2.0.0", 2998 + "unist-util-position-from-estree": "^2.0.0" 2999 + }, 3000 + "funding": { 3001 + "type": "opencollective", 3002 + "url": "https://opencollective.com/unified" 3003 + } 3004 + }, 3005 + "node_modules/esast-util-from-js": { 3006 + "version": "2.0.1", 3007 + "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz", 3008 + "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==", 3009 + "license": "MIT", 3010 + "dependencies": { 3011 + "@types/estree-jsx": "^1.0.0", 3012 + "acorn": "^8.0.0", 3013 + "esast-util-from-estree": "^2.0.0", 3014 + "vfile-message": "^4.0.0" 3015 + }, 3016 + "funding": { 3017 + "type": "opencollective", 3018 + "url": "https://opencollective.com/unified" 3019 + } 3020 + }, 3021 + "node_modules/esbuild": { 3022 + "version": "0.27.4", 3023 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.4.tgz", 3024 + "integrity": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==", 3025 + "hasInstallScript": true, 3026 + "license": "MIT", 3027 + "bin": { 3028 + "esbuild": "bin/esbuild" 3029 + }, 3030 + "engines": { 3031 + "node": ">=18" 3032 + }, 3033 + "optionalDependencies": { 3034 + "@esbuild/aix-ppc64": "0.27.4", 3035 + "@esbuild/android-arm": "0.27.4", 3036 + "@esbuild/android-arm64": "0.27.4", 3037 + "@esbuild/android-x64": "0.27.4", 3038 + "@esbuild/darwin-arm64": "0.27.4", 3039 + "@esbuild/darwin-x64": "0.27.4", 3040 + "@esbuild/freebsd-arm64": "0.27.4", 3041 + "@esbuild/freebsd-x64": "0.27.4", 3042 + "@esbuild/linux-arm": "0.27.4", 3043 + "@esbuild/linux-arm64": "0.27.4", 3044 + "@esbuild/linux-ia32": "0.27.4", 3045 + "@esbuild/linux-loong64": "0.27.4", 3046 + "@esbuild/linux-mips64el": "0.27.4", 3047 + "@esbuild/linux-ppc64": "0.27.4", 3048 + "@esbuild/linux-riscv64": "0.27.4", 3049 + "@esbuild/linux-s390x": "0.27.4", 3050 + "@esbuild/linux-x64": "0.27.4", 3051 + "@esbuild/netbsd-arm64": "0.27.4", 3052 + "@esbuild/netbsd-x64": "0.27.4", 3053 + "@esbuild/openbsd-arm64": "0.27.4", 3054 + "@esbuild/openbsd-x64": "0.27.4", 3055 + "@esbuild/openharmony-arm64": "0.27.4", 3056 + "@esbuild/sunos-x64": "0.27.4", 3057 + "@esbuild/win32-arm64": "0.27.4", 3058 + "@esbuild/win32-ia32": "0.27.4", 3059 + "@esbuild/win32-x64": "0.27.4" 3060 + } 3061 + }, 3062 + "node_modules/escape-string-regexp": { 3063 + "version": "5.0.0", 3064 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 3065 + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 3066 + "license": "MIT", 3067 + "engines": { 3068 + "node": ">=12" 3069 + }, 3070 + "funding": { 3071 + "url": "https://github.com/sponsors/sindresorhus" 3072 + } 3073 + }, 3074 + "node_modules/estree-util-attach-comments": { 3075 + "version": "3.0.0", 3076 + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", 3077 + "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", 3078 + "license": "MIT", 3079 + "dependencies": { 3080 + "@types/estree": "^1.0.0" 3081 + }, 3082 + "funding": { 3083 + "type": "opencollective", 3084 + "url": "https://opencollective.com/unified" 3085 + } 3086 + }, 3087 + "node_modules/estree-util-build-jsx": { 3088 + "version": "3.0.1", 3089 + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", 3090 + "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", 3091 + "license": "MIT", 3092 + "dependencies": { 3093 + "@types/estree-jsx": "^1.0.0", 3094 + "devlop": "^1.0.0", 3095 + "estree-util-is-identifier-name": "^3.0.0", 3096 + "estree-walker": "^3.0.0" 3097 + }, 3098 + "funding": { 3099 + "type": "opencollective", 3100 + "url": "https://opencollective.com/unified" 3101 + } 3102 + }, 3103 + "node_modules/estree-util-is-identifier-name": { 3104 + "version": "3.0.0", 3105 + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", 3106 + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", 3107 + "license": "MIT", 3108 + "funding": { 3109 + "type": "opencollective", 3110 + "url": "https://opencollective.com/unified" 3111 + } 3112 + }, 3113 + "node_modules/estree-util-scope": { 3114 + "version": "1.0.0", 3115 + "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz", 3116 + "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==", 3117 + "license": "MIT", 3118 + "dependencies": { 3119 + "@types/estree": "^1.0.0", 3120 + "devlop": "^1.0.0" 3121 + }, 3122 + "funding": { 3123 + "type": "opencollective", 3124 + "url": "https://opencollective.com/unified" 3125 + } 3126 + }, 3127 + "node_modules/estree-util-to-js": { 3128 + "version": "2.0.0", 3129 + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", 3130 + "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", 3131 + "license": "MIT", 3132 + "dependencies": { 3133 + "@types/estree-jsx": "^1.0.0", 3134 + "astring": "^1.8.0", 3135 + "source-map": "^0.7.0" 3136 + }, 3137 + "funding": { 3138 + "type": "opencollective", 3139 + "url": "https://opencollective.com/unified" 3140 + } 3141 + }, 3142 + "node_modules/estree-util-visit": { 3143 + "version": "2.0.0", 3144 + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", 3145 + "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", 3146 + "license": "MIT", 3147 + "dependencies": { 3148 + "@types/estree-jsx": "^1.0.0", 3149 + "@types/unist": "^3.0.0" 3150 + }, 3151 + "funding": { 3152 + "type": "opencollective", 3153 + "url": "https://opencollective.com/unified" 3154 + } 3155 + }, 3156 + "node_modules/estree-walker": { 3157 + "version": "3.0.3", 3158 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 3159 + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 3160 + "license": "MIT", 3161 + "dependencies": { 3162 + "@types/estree": "^1.0.0" 3163 + } 3164 + }, 3165 + "node_modules/eventemitter3": { 3166 + "version": "5.0.4", 3167 + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", 3168 + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", 3169 + "license": "MIT" 3170 + }, 3171 + "node_modules/extend": { 3172 + "version": "3.0.2", 3173 + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 3174 + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 3175 + "license": "MIT" 3176 + }, 3177 + "node_modules/fdir": { 3178 + "version": "6.5.0", 3179 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 3180 + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 3181 + "license": "MIT", 3182 + "engines": { 3183 + "node": ">=12.0.0" 3184 + }, 3185 + "peerDependencies": { 3186 + "picomatch": "^3 || ^4" 3187 + }, 3188 + "peerDependenciesMeta": { 3189 + "picomatch": { 3190 + "optional": true 3191 + } 3192 + } 3193 + }, 3194 + "node_modules/flattie": { 3195 + "version": "1.1.1", 3196 + "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz", 3197 + "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==", 3198 + "license": "MIT", 3199 + "engines": { 3200 + "node": ">=8" 3201 + } 3202 + }, 3203 + "node_modules/fontace": { 3204 + "version": "0.4.1", 3205 + "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.4.1.tgz", 3206 + "integrity": "sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==", 3207 + "license": "MIT", 3208 + "dependencies": { 3209 + "fontkitten": "^1.0.2" 3210 + } 3211 + }, 3212 + "node_modules/fontkitten": { 3213 + "version": "1.0.3", 3214 + "resolved": "https://registry.npmjs.org/fontkitten/-/fontkitten-1.0.3.tgz", 3215 + "integrity": "sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==", 3216 + "license": "MIT", 3217 + "dependencies": { 3218 + "tiny-inflate": "^1.0.3" 3219 + }, 3220 + "engines": { 3221 + "node": ">=20" 3222 + } 3223 + }, 3224 + "node_modules/fsevents": { 3225 + "version": "2.3.3", 3226 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 3227 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 3228 + "hasInstallScript": true, 3229 + "license": "MIT", 3230 + "optional": true, 3231 + "os": [ 3232 + "darwin" 3233 + ], 3234 + "engines": { 3235 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 3236 + } 3237 + }, 3238 + "node_modules/github-slugger": { 3239 + "version": "2.0.0", 3240 + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", 3241 + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", 3242 + "license": "ISC" 3243 + }, 3244 + "node_modules/graceful-fs": { 3245 + "version": "4.2.11", 3246 + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 3247 + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 3248 + "license": "ISC" 3249 + }, 3250 + "node_modules/h3": { 3251 + "version": "1.15.10", 3252 + "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.10.tgz", 3253 + "integrity": "sha512-YzJeWSkDZxAhvmp8dexjRK5hxziRO7I9m0N53WhvYL5NiWfkUkzssVzY9jvGu0HBoLFW6+duYmNSn6MaZBCCtg==", 3254 + "license": "MIT", 3255 + "dependencies": { 3256 + "cookie-es": "^1.2.2", 3257 + "crossws": "^0.3.5", 3258 + "defu": "^6.1.4", 3259 + "destr": "^2.0.5", 3260 + "iron-webcrypto": "^1.2.1", 3261 + "node-mock-http": "^1.0.4", 3262 + "radix3": "^1.1.2", 3263 + "ufo": "^1.6.3", 3264 + "uncrypto": "^0.1.3" 3265 + } 3266 + }, 3267 + "node_modules/hast-util-from-html": { 3268 + "version": "2.0.3", 3269 + "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", 3270 + "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", 3271 + "license": "MIT", 3272 + "dependencies": { 3273 + "@types/hast": "^3.0.0", 3274 + "devlop": "^1.1.0", 3275 + "hast-util-from-parse5": "^8.0.0", 3276 + "parse5": "^7.0.0", 3277 + "vfile": "^6.0.0", 3278 + "vfile-message": "^4.0.0" 3279 + }, 3280 + "funding": { 3281 + "type": "opencollective", 3282 + "url": "https://opencollective.com/unified" 3283 + } 3284 + }, 3285 + "node_modules/hast-util-from-parse5": { 3286 + "version": "8.0.3", 3287 + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", 3288 + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", 3289 + "license": "MIT", 3290 + "dependencies": { 3291 + "@types/hast": "^3.0.0", 3292 + "@types/unist": "^3.0.0", 3293 + "devlop": "^1.0.0", 3294 + "hastscript": "^9.0.0", 3295 + "property-information": "^7.0.0", 3296 + "vfile": "^6.0.0", 3297 + "vfile-location": "^5.0.0", 3298 + "web-namespaces": "^2.0.0" 3299 + }, 3300 + "funding": { 3301 + "type": "opencollective", 3302 + "url": "https://opencollective.com/unified" 3303 + } 3304 + }, 3305 + "node_modules/hast-util-is-element": { 3306 + "version": "3.0.0", 3307 + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", 3308 + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", 3309 + "license": "MIT", 3310 + "dependencies": { 3311 + "@types/hast": "^3.0.0" 3312 + }, 3313 + "funding": { 3314 + "type": "opencollective", 3315 + "url": "https://opencollective.com/unified" 3316 + } 3317 + }, 3318 + "node_modules/hast-util-parse-selector": { 3319 + "version": "4.0.0", 3320 + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", 3321 + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", 3322 + "license": "MIT", 3323 + "dependencies": { 3324 + "@types/hast": "^3.0.0" 3325 + }, 3326 + "funding": { 3327 + "type": "opencollective", 3328 + "url": "https://opencollective.com/unified" 3329 + } 3330 + }, 3331 + "node_modules/hast-util-raw": { 3332 + "version": "9.1.0", 3333 + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", 3334 + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", 3335 + "license": "MIT", 3336 + "dependencies": { 3337 + "@types/hast": "^3.0.0", 3338 + "@types/unist": "^3.0.0", 3339 + "@ungap/structured-clone": "^1.0.0", 3340 + "hast-util-from-parse5": "^8.0.0", 3341 + "hast-util-to-parse5": "^8.0.0", 3342 + "html-void-elements": "^3.0.0", 3343 + "mdast-util-to-hast": "^13.0.0", 3344 + "parse5": "^7.0.0", 3345 + "unist-util-position": "^5.0.0", 3346 + "unist-util-visit": "^5.0.0", 3347 + "vfile": "^6.0.0", 3348 + "web-namespaces": "^2.0.0", 3349 + "zwitch": "^2.0.0" 3350 + }, 3351 + "funding": { 3352 + "type": "opencollective", 3353 + "url": "https://opencollective.com/unified" 3354 + } 3355 + }, 3356 + "node_modules/hast-util-to-estree": { 3357 + "version": "3.1.3", 3358 + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz", 3359 + "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==", 3360 + "license": "MIT", 3361 + "dependencies": { 3362 + "@types/estree": "^1.0.0", 3363 + "@types/estree-jsx": "^1.0.0", 3364 + "@types/hast": "^3.0.0", 3365 + "comma-separated-tokens": "^2.0.0", 3366 + "devlop": "^1.0.0", 3367 + "estree-util-attach-comments": "^3.0.0", 3368 + "estree-util-is-identifier-name": "^3.0.0", 3369 + "hast-util-whitespace": "^3.0.0", 3370 + "mdast-util-mdx-expression": "^2.0.0", 3371 + "mdast-util-mdx-jsx": "^3.0.0", 3372 + "mdast-util-mdxjs-esm": "^2.0.0", 3373 + "property-information": "^7.0.0", 3374 + "space-separated-tokens": "^2.0.0", 3375 + "style-to-js": "^1.0.0", 3376 + "unist-util-position": "^5.0.0", 3377 + "zwitch": "^2.0.0" 3378 + }, 3379 + "funding": { 3380 + "type": "opencollective", 3381 + "url": "https://opencollective.com/unified" 3382 + } 3383 + }, 3384 + "node_modules/hast-util-to-html": { 3385 + "version": "9.0.5", 3386 + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", 3387 + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", 3388 + "license": "MIT", 3389 + "dependencies": { 3390 + "@types/hast": "^3.0.0", 3391 + "@types/unist": "^3.0.0", 3392 + "ccount": "^2.0.0", 3393 + "comma-separated-tokens": "^2.0.0", 3394 + "hast-util-whitespace": "^3.0.0", 3395 + "html-void-elements": "^3.0.0", 3396 + "mdast-util-to-hast": "^13.0.0", 3397 + "property-information": "^7.0.0", 3398 + "space-separated-tokens": "^2.0.0", 3399 + "stringify-entities": "^4.0.0", 3400 + "zwitch": "^2.0.4" 3401 + }, 3402 + "funding": { 3403 + "type": "opencollective", 3404 + "url": "https://opencollective.com/unified" 3405 + } 3406 + }, 3407 + "node_modules/hast-util-to-jsx-runtime": { 3408 + "version": "2.3.6", 3409 + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", 3410 + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", 3411 + "license": "MIT", 3412 + "dependencies": { 3413 + "@types/estree": "^1.0.0", 3414 + "@types/hast": "^3.0.0", 3415 + "@types/unist": "^3.0.0", 3416 + "comma-separated-tokens": "^2.0.0", 3417 + "devlop": "^1.0.0", 3418 + "estree-util-is-identifier-name": "^3.0.0", 3419 + "hast-util-whitespace": "^3.0.0", 3420 + "mdast-util-mdx-expression": "^2.0.0", 3421 + "mdast-util-mdx-jsx": "^3.0.0", 3422 + "mdast-util-mdxjs-esm": "^2.0.0", 3423 + "property-information": "^7.0.0", 3424 + "space-separated-tokens": "^2.0.0", 3425 + "style-to-js": "^1.0.0", 3426 + "unist-util-position": "^5.0.0", 3427 + "vfile-message": "^4.0.0" 3428 + }, 3429 + "funding": { 3430 + "type": "opencollective", 3431 + "url": "https://opencollective.com/unified" 3432 + } 3433 + }, 3434 + "node_modules/hast-util-to-parse5": { 3435 + "version": "8.0.1", 3436 + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz", 3437 + "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==", 3438 + "license": "MIT", 3439 + "dependencies": { 3440 + "@types/hast": "^3.0.0", 3441 + "comma-separated-tokens": "^2.0.0", 3442 + "devlop": "^1.0.0", 3443 + "property-information": "^7.0.0", 3444 + "space-separated-tokens": "^2.0.0", 3445 + "web-namespaces": "^2.0.0", 3446 + "zwitch": "^2.0.0" 3447 + }, 3448 + "funding": { 3449 + "type": "opencollective", 3450 + "url": "https://opencollective.com/unified" 3451 + } 3452 + }, 3453 + "node_modules/hast-util-to-text": { 3454 + "version": "4.0.2", 3455 + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", 3456 + "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", 3457 + "license": "MIT", 3458 + "dependencies": { 3459 + "@types/hast": "^3.0.0", 3460 + "@types/unist": "^3.0.0", 3461 + "hast-util-is-element": "^3.0.0", 3462 + "unist-util-find-after": "^5.0.0" 3463 + }, 3464 + "funding": { 3465 + "type": "opencollective", 3466 + "url": "https://opencollective.com/unified" 3467 + } 3468 + }, 3469 + "node_modules/hast-util-whitespace": { 3470 + "version": "3.0.0", 3471 + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", 3472 + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", 3473 + "license": "MIT", 3474 + "dependencies": { 3475 + "@types/hast": "^3.0.0" 3476 + }, 3477 + "funding": { 3478 + "type": "opencollective", 3479 + "url": "https://opencollective.com/unified" 3480 + } 3481 + }, 3482 + "node_modules/hastscript": { 3483 + "version": "9.0.1", 3484 + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", 3485 + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", 3486 + "license": "MIT", 3487 + "dependencies": { 3488 + "@types/hast": "^3.0.0", 3489 + "comma-separated-tokens": "^2.0.0", 3490 + "hast-util-parse-selector": "^4.0.0", 3491 + "property-information": "^7.0.0", 3492 + "space-separated-tokens": "^2.0.0" 3493 + }, 3494 + "funding": { 3495 + "type": "opencollective", 3496 + "url": "https://opencollective.com/unified" 3497 + } 3498 + }, 3499 + "node_modules/html-escaper": { 3500 + "version": "3.0.3", 3501 + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", 3502 + "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", 3503 + "license": "MIT" 3504 + }, 3505 + "node_modules/html-void-elements": { 3506 + "version": "3.0.0", 3507 + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", 3508 + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", 3509 + "license": "MIT", 3510 + "funding": { 3511 + "type": "github", 3512 + "url": "https://github.com/sponsors/wooorm" 3513 + } 3514 + }, 3515 + "node_modules/http-cache-semantics": { 3516 + "version": "4.2.0", 3517 + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", 3518 + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", 3519 + "license": "BSD-2-Clause" 3520 + }, 3521 + "node_modules/inline-style-parser": { 3522 + "version": "0.2.7", 3523 + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", 3524 + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", 3525 + "license": "MIT" 3526 + }, 3527 + "node_modules/iron-webcrypto": { 3528 + "version": "1.2.1", 3529 + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", 3530 + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", 3531 + "license": "MIT", 3532 + "funding": { 3533 + "url": "https://github.com/sponsors/brc-dd" 3534 + } 3535 + }, 3536 + "node_modules/is-alphabetical": { 3537 + "version": "2.0.1", 3538 + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", 3539 + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", 3540 + "license": "MIT", 3541 + "funding": { 3542 + "type": "github", 3543 + "url": "https://github.com/sponsors/wooorm" 3544 + } 3545 + }, 3546 + "node_modules/is-alphanumerical": { 3547 + "version": "2.0.1", 3548 + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", 3549 + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", 3550 + "license": "MIT", 3551 + "dependencies": { 3552 + "is-alphabetical": "^2.0.0", 3553 + "is-decimal": "^2.0.0" 3554 + }, 3555 + "funding": { 3556 + "type": "github", 3557 + "url": "https://github.com/sponsors/wooorm" 3558 + } 3559 + }, 3560 + "node_modules/is-decimal": { 3561 + "version": "2.0.1", 3562 + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", 3563 + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", 3564 + "license": "MIT", 3565 + "funding": { 3566 + "type": "github", 3567 + "url": "https://github.com/sponsors/wooorm" 3568 + } 3569 + }, 3570 + "node_modules/is-docker": { 3571 + "version": "3.0.0", 3572 + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 3573 + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 3574 + "license": "MIT", 3575 + "bin": { 3576 + "is-docker": "cli.js" 3577 + }, 3578 + "engines": { 3579 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3580 + }, 3581 + "funding": { 3582 + "url": "https://github.com/sponsors/sindresorhus" 3583 + } 3584 + }, 3585 + "node_modules/is-hexadecimal": { 3586 + "version": "2.0.1", 3587 + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", 3588 + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", 3589 + "license": "MIT", 3590 + "funding": { 3591 + "type": "github", 3592 + "url": "https://github.com/sponsors/wooorm" 3593 + } 3594 + }, 3595 + "node_modules/is-inside-container": { 3596 + "version": "1.0.0", 3597 + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 3598 + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 3599 + "license": "MIT", 3600 + "dependencies": { 3601 + "is-docker": "^3.0.0" 3602 + }, 3603 + "bin": { 3604 + "is-inside-container": "cli.js" 3605 + }, 3606 + "engines": { 3607 + "node": ">=14.16" 3608 + }, 3609 + "funding": { 3610 + "url": "https://github.com/sponsors/sindresorhus" 3611 + } 3612 + }, 3613 + "node_modules/is-plain-obj": { 3614 + "version": "4.1.0", 3615 + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 3616 + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 3617 + "license": "MIT", 3618 + "engines": { 3619 + "node": ">=12" 3620 + }, 3621 + "funding": { 3622 + "url": "https://github.com/sponsors/sindresorhus" 3623 + } 3624 + }, 3625 + "node_modules/is-wsl": { 3626 + "version": "3.1.1", 3627 + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", 3628 + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", 3629 + "license": "MIT", 3630 + "dependencies": { 3631 + "is-inside-container": "^1.0.0" 3632 + }, 3633 + "engines": { 3634 + "node": ">=16" 3635 + }, 3636 + "funding": { 3637 + "url": "https://github.com/sponsors/sindresorhus" 3638 + } 3639 + }, 3640 + "node_modules/jiti": { 3641 + "version": "2.6.1", 3642 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", 3643 + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", 3644 + "license": "MIT", 3645 + "bin": { 3646 + "jiti": "lib/jiti-cli.mjs" 3647 + } 3648 + }, 3649 + "node_modules/js-yaml": { 3650 + "version": "4.1.1", 3651 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", 3652 + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", 3653 + "license": "MIT", 3654 + "dependencies": { 3655 + "argparse": "^2.0.1" 3656 + }, 3657 + "bin": { 3658 + "js-yaml": "bin/js-yaml.js" 3659 + } 3660 + }, 3661 + "node_modules/lightningcss": { 3662 + "version": "1.32.0", 3663 + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", 3664 + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", 3665 + "license": "MPL-2.0", 3666 + "dependencies": { 3667 + "detect-libc": "^2.0.3" 3668 + }, 3669 + "engines": { 3670 + "node": ">= 12.0.0" 3671 + }, 3672 + "funding": { 3673 + "type": "opencollective", 3674 + "url": "https://opencollective.com/parcel" 3675 + }, 3676 + "optionalDependencies": { 3677 + "lightningcss-android-arm64": "1.32.0", 3678 + "lightningcss-darwin-arm64": "1.32.0", 3679 + "lightningcss-darwin-x64": "1.32.0", 3680 + "lightningcss-freebsd-x64": "1.32.0", 3681 + "lightningcss-linux-arm-gnueabihf": "1.32.0", 3682 + "lightningcss-linux-arm64-gnu": "1.32.0", 3683 + "lightningcss-linux-arm64-musl": "1.32.0", 3684 + "lightningcss-linux-x64-gnu": "1.32.0", 3685 + "lightningcss-linux-x64-musl": "1.32.0", 3686 + "lightningcss-win32-arm64-msvc": "1.32.0", 3687 + "lightningcss-win32-x64-msvc": "1.32.0" 3688 + } 3689 + }, 3690 + "node_modules/lightningcss-android-arm64": { 3691 + "version": "1.32.0", 3692 + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", 3693 + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", 3694 + "cpu": [ 3695 + "arm64" 3696 + ], 3697 + "license": "MPL-2.0", 3698 + "optional": true, 3699 + "os": [ 3700 + "android" 3701 + ], 3702 + "engines": { 3703 + "node": ">= 12.0.0" 3704 + }, 3705 + "funding": { 3706 + "type": "opencollective", 3707 + "url": "https://opencollective.com/parcel" 3708 + } 3709 + }, 3710 + "node_modules/lightningcss-darwin-arm64": { 3711 + "version": "1.32.0", 3712 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", 3713 + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", 3714 + "cpu": [ 3715 + "arm64" 3716 + ], 3717 + "license": "MPL-2.0", 3718 + "optional": true, 3719 + "os": [ 3720 + "darwin" 3721 + ], 3722 + "engines": { 3723 + "node": ">= 12.0.0" 3724 + }, 3725 + "funding": { 3726 + "type": "opencollective", 3727 + "url": "https://opencollective.com/parcel" 3728 + } 3729 + }, 3730 + "node_modules/lightningcss-darwin-x64": { 3731 + "version": "1.32.0", 3732 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", 3733 + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", 3734 + "cpu": [ 3735 + "x64" 3736 + ], 3737 + "license": "MPL-2.0", 3738 + "optional": true, 3739 + "os": [ 3740 + "darwin" 3741 + ], 3742 + "engines": { 3743 + "node": ">= 12.0.0" 3744 + }, 3745 + "funding": { 3746 + "type": "opencollective", 3747 + "url": "https://opencollective.com/parcel" 3748 + } 3749 + }, 3750 + "node_modules/lightningcss-freebsd-x64": { 3751 + "version": "1.32.0", 3752 + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", 3753 + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", 3754 + "cpu": [ 3755 + "x64" 3756 + ], 3757 + "license": "MPL-2.0", 3758 + "optional": true, 3759 + "os": [ 3760 + "freebsd" 3761 + ], 3762 + "engines": { 3763 + "node": ">= 12.0.0" 3764 + }, 3765 + "funding": { 3766 + "type": "opencollective", 3767 + "url": "https://opencollective.com/parcel" 3768 + } 3769 + }, 3770 + "node_modules/lightningcss-linux-arm-gnueabihf": { 3771 + "version": "1.32.0", 3772 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", 3773 + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", 3774 + "cpu": [ 3775 + "arm" 3776 + ], 3777 + "license": "MPL-2.0", 3778 + "optional": true, 3779 + "os": [ 3780 + "linux" 3781 + ], 3782 + "engines": { 3783 + "node": ">= 12.0.0" 3784 + }, 3785 + "funding": { 3786 + "type": "opencollective", 3787 + "url": "https://opencollective.com/parcel" 3788 + } 3789 + }, 3790 + "node_modules/lightningcss-linux-arm64-gnu": { 3791 + "version": "1.32.0", 3792 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", 3793 + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", 3794 + "cpu": [ 3795 + "arm64" 3796 + ], 3797 + "license": "MPL-2.0", 3798 + "optional": true, 3799 + "os": [ 3800 + "linux" 3801 + ], 3802 + "engines": { 3803 + "node": ">= 12.0.0" 3804 + }, 3805 + "funding": { 3806 + "type": "opencollective", 3807 + "url": "https://opencollective.com/parcel" 3808 + } 3809 + }, 3810 + "node_modules/lightningcss-linux-arm64-musl": { 3811 + "version": "1.32.0", 3812 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", 3813 + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", 3814 + "cpu": [ 3815 + "arm64" 3816 + ], 3817 + "license": "MPL-2.0", 3818 + "optional": true, 3819 + "os": [ 3820 + "linux" 3821 + ], 3822 + "engines": { 3823 + "node": ">= 12.0.0" 3824 + }, 3825 + "funding": { 3826 + "type": "opencollective", 3827 + "url": "https://opencollective.com/parcel" 3828 + } 3829 + }, 3830 + "node_modules/lightningcss-linux-x64-gnu": { 3831 + "version": "1.32.0", 3832 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", 3833 + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", 3834 + "cpu": [ 3835 + "x64" 3836 + ], 3837 + "license": "MPL-2.0", 3838 + "optional": true, 3839 + "os": [ 3840 + "linux" 3841 + ], 3842 + "engines": { 3843 + "node": ">= 12.0.0" 3844 + }, 3845 + "funding": { 3846 + "type": "opencollective", 3847 + "url": "https://opencollective.com/parcel" 3848 + } 3849 + }, 3850 + "node_modules/lightningcss-linux-x64-musl": { 3851 + "version": "1.32.0", 3852 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", 3853 + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", 3854 + "cpu": [ 3855 + "x64" 3856 + ], 3857 + "license": "MPL-2.0", 3858 + "optional": true, 3859 + "os": [ 3860 + "linux" 3861 + ], 3862 + "engines": { 3863 + "node": ">= 12.0.0" 3864 + }, 3865 + "funding": { 3866 + "type": "opencollective", 3867 + "url": "https://opencollective.com/parcel" 3868 + } 3869 + }, 3870 + "node_modules/lightningcss-win32-arm64-msvc": { 3871 + "version": "1.32.0", 3872 + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", 3873 + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", 3874 + "cpu": [ 3875 + "arm64" 3876 + ], 3877 + "license": "MPL-2.0", 3878 + "optional": true, 3879 + "os": [ 3880 + "win32" 3881 + ], 3882 + "engines": { 3883 + "node": ">= 12.0.0" 3884 + }, 3885 + "funding": { 3886 + "type": "opencollective", 3887 + "url": "https://opencollective.com/parcel" 3888 + } 3889 + }, 3890 + "node_modules/lightningcss-win32-x64-msvc": { 3891 + "version": "1.32.0", 3892 + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", 3893 + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", 3894 + "cpu": [ 3895 + "x64" 3896 + ], 3897 + "license": "MPL-2.0", 3898 + "optional": true, 3899 + "os": [ 3900 + "win32" 3901 + ], 3902 + "engines": { 3903 + "node": ">= 12.0.0" 3904 + }, 3905 + "funding": { 3906 + "type": "opencollective", 3907 + "url": "https://opencollective.com/parcel" 3908 + } 3909 + }, 3910 + "node_modules/longest-streak": { 3911 + "version": "3.1.0", 3912 + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", 3913 + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", 3914 + "license": "MIT", 3915 + "funding": { 3916 + "type": "github", 3917 + "url": "https://github.com/sponsors/wooorm" 3918 + } 3919 + }, 3920 + "node_modules/lru-cache": { 3921 + "version": "11.2.7", 3922 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.7.tgz", 3923 + "integrity": "sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==", 3924 + "license": "BlueOak-1.0.0", 3925 + "engines": { 3926 + "node": "20 || >=22" 3927 + } 3928 + }, 3929 + "node_modules/magic-string": { 3930 + "version": "0.30.21", 3931 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", 3932 + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", 3933 + "license": "MIT", 3934 + "dependencies": { 3935 + "@jridgewell/sourcemap-codec": "^1.5.5" 3936 + } 3937 + }, 3938 + "node_modules/magicast": { 3939 + "version": "0.5.2", 3940 + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.2.tgz", 3941 + "integrity": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==", 3942 + "license": "MIT", 3943 + "dependencies": { 3944 + "@babel/parser": "^7.29.0", 3945 + "@babel/types": "^7.29.0", 3946 + "source-map-js": "^1.2.1" 3947 + } 3948 + }, 3949 + "node_modules/markdown-extensions": { 3950 + "version": "2.0.0", 3951 + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", 3952 + "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", 3953 + "license": "MIT", 3954 + "engines": { 3955 + "node": ">=16" 3956 + }, 3957 + "funding": { 3958 + "url": "https://github.com/sponsors/sindresorhus" 3959 + } 3960 + }, 3961 + "node_modules/markdown-table": { 3962 + "version": "3.0.4", 3963 + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", 3964 + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", 3965 + "license": "MIT", 3966 + "funding": { 3967 + "type": "github", 3968 + "url": "https://github.com/sponsors/wooorm" 3969 + } 3970 + }, 3971 + "node_modules/mdast-util-definitions": { 3972 + "version": "6.0.0", 3973 + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz", 3974 + "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==", 3975 + "license": "MIT", 3976 + "dependencies": { 3977 + "@types/mdast": "^4.0.0", 3978 + "@types/unist": "^3.0.0", 3979 + "unist-util-visit": "^5.0.0" 3980 + }, 3981 + "funding": { 3982 + "type": "opencollective", 3983 + "url": "https://opencollective.com/unified" 3984 + } 3985 + }, 3986 + "node_modules/mdast-util-find-and-replace": { 3987 + "version": "3.0.2", 3988 + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", 3989 + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", 3990 + "license": "MIT", 3991 + "dependencies": { 3992 + "@types/mdast": "^4.0.0", 3993 + "escape-string-regexp": "^5.0.0", 3994 + "unist-util-is": "^6.0.0", 3995 + "unist-util-visit-parents": "^6.0.0" 3996 + }, 3997 + "funding": { 3998 + "type": "opencollective", 3999 + "url": "https://opencollective.com/unified" 4000 + } 4001 + }, 4002 + "node_modules/mdast-util-from-markdown": { 4003 + "version": "2.0.3", 4004 + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", 4005 + "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", 4006 + "license": "MIT", 4007 + "dependencies": { 4008 + "@types/mdast": "^4.0.0", 4009 + "@types/unist": "^3.0.0", 4010 + "decode-named-character-reference": "^1.0.0", 4011 + "devlop": "^1.0.0", 4012 + "mdast-util-to-string": "^4.0.0", 4013 + "micromark": "^4.0.0", 4014 + "micromark-util-decode-numeric-character-reference": "^2.0.0", 4015 + "micromark-util-decode-string": "^2.0.0", 4016 + "micromark-util-normalize-identifier": "^2.0.0", 4017 + "micromark-util-symbol": "^2.0.0", 4018 + "micromark-util-types": "^2.0.0", 4019 + "unist-util-stringify-position": "^4.0.0" 4020 + }, 4021 + "funding": { 4022 + "type": "opencollective", 4023 + "url": "https://opencollective.com/unified" 4024 + } 4025 + }, 4026 + "node_modules/mdast-util-gfm": { 4027 + "version": "3.1.0", 4028 + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", 4029 + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", 4030 + "license": "MIT", 4031 + "dependencies": { 4032 + "mdast-util-from-markdown": "^2.0.0", 4033 + "mdast-util-gfm-autolink-literal": "^2.0.0", 4034 + "mdast-util-gfm-footnote": "^2.0.0", 4035 + "mdast-util-gfm-strikethrough": "^2.0.0", 4036 + "mdast-util-gfm-table": "^2.0.0", 4037 + "mdast-util-gfm-task-list-item": "^2.0.0", 4038 + "mdast-util-to-markdown": "^2.0.0" 4039 + }, 4040 + "funding": { 4041 + "type": "opencollective", 4042 + "url": "https://opencollective.com/unified" 4043 + } 4044 + }, 4045 + "node_modules/mdast-util-gfm-autolink-literal": { 4046 + "version": "2.0.1", 4047 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", 4048 + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", 4049 + "license": "MIT", 4050 + "dependencies": { 4051 + "@types/mdast": "^4.0.0", 4052 + "ccount": "^2.0.0", 4053 + "devlop": "^1.0.0", 4054 + "mdast-util-find-and-replace": "^3.0.0", 4055 + "micromark-util-character": "^2.0.0" 4056 + }, 4057 + "funding": { 4058 + "type": "opencollective", 4059 + "url": "https://opencollective.com/unified" 4060 + } 4061 + }, 4062 + "node_modules/mdast-util-gfm-footnote": { 4063 + "version": "2.1.0", 4064 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", 4065 + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", 4066 + "license": "MIT", 4067 + "dependencies": { 4068 + "@types/mdast": "^4.0.0", 4069 + "devlop": "^1.1.0", 4070 + "mdast-util-from-markdown": "^2.0.0", 4071 + "mdast-util-to-markdown": "^2.0.0", 4072 + "micromark-util-normalize-identifier": "^2.0.0" 4073 + }, 4074 + "funding": { 4075 + "type": "opencollective", 4076 + "url": "https://opencollective.com/unified" 4077 + } 4078 + }, 4079 + "node_modules/mdast-util-gfm-strikethrough": { 4080 + "version": "2.0.0", 4081 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", 4082 + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", 4083 + "license": "MIT", 4084 + "dependencies": { 4085 + "@types/mdast": "^4.0.0", 4086 + "mdast-util-from-markdown": "^2.0.0", 4087 + "mdast-util-to-markdown": "^2.0.0" 4088 + }, 4089 + "funding": { 4090 + "type": "opencollective", 4091 + "url": "https://opencollective.com/unified" 4092 + } 4093 + }, 4094 + "node_modules/mdast-util-gfm-table": { 4095 + "version": "2.0.0", 4096 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", 4097 + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", 4098 + "license": "MIT", 4099 + "dependencies": { 4100 + "@types/mdast": "^4.0.0", 4101 + "devlop": "^1.0.0", 4102 + "markdown-table": "^3.0.0", 4103 + "mdast-util-from-markdown": "^2.0.0", 4104 + "mdast-util-to-markdown": "^2.0.0" 4105 + }, 4106 + "funding": { 4107 + "type": "opencollective", 4108 + "url": "https://opencollective.com/unified" 4109 + } 4110 + }, 4111 + "node_modules/mdast-util-gfm-task-list-item": { 4112 + "version": "2.0.0", 4113 + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", 4114 + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", 4115 + "license": "MIT", 4116 + "dependencies": { 4117 + "@types/mdast": "^4.0.0", 4118 + "devlop": "^1.0.0", 4119 + "mdast-util-from-markdown": "^2.0.0", 4120 + "mdast-util-to-markdown": "^2.0.0" 4121 + }, 4122 + "funding": { 4123 + "type": "opencollective", 4124 + "url": "https://opencollective.com/unified" 4125 + } 4126 + }, 4127 + "node_modules/mdast-util-mdx": { 4128 + "version": "3.0.0", 4129 + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", 4130 + "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", 4131 + "license": "MIT", 4132 + "dependencies": { 4133 + "mdast-util-from-markdown": "^2.0.0", 4134 + "mdast-util-mdx-expression": "^2.0.0", 4135 + "mdast-util-mdx-jsx": "^3.0.0", 4136 + "mdast-util-mdxjs-esm": "^2.0.0", 4137 + "mdast-util-to-markdown": "^2.0.0" 4138 + }, 4139 + "funding": { 4140 + "type": "opencollective", 4141 + "url": "https://opencollective.com/unified" 4142 + } 4143 + }, 4144 + "node_modules/mdast-util-mdx-expression": { 4145 + "version": "2.0.1", 4146 + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", 4147 + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", 4148 + "license": "MIT", 4149 + "dependencies": { 4150 + "@types/estree-jsx": "^1.0.0", 4151 + "@types/hast": "^3.0.0", 4152 + "@types/mdast": "^4.0.0", 4153 + "devlop": "^1.0.0", 4154 + "mdast-util-from-markdown": "^2.0.0", 4155 + "mdast-util-to-markdown": "^2.0.0" 4156 + }, 4157 + "funding": { 4158 + "type": "opencollective", 4159 + "url": "https://opencollective.com/unified" 4160 + } 4161 + }, 4162 + "node_modules/mdast-util-mdx-jsx": { 4163 + "version": "3.2.0", 4164 + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", 4165 + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", 4166 + "license": "MIT", 4167 + "dependencies": { 4168 + "@types/estree-jsx": "^1.0.0", 4169 + "@types/hast": "^3.0.0", 4170 + "@types/mdast": "^4.0.0", 4171 + "@types/unist": "^3.0.0", 4172 + "ccount": "^2.0.0", 4173 + "devlop": "^1.1.0", 4174 + "mdast-util-from-markdown": "^2.0.0", 4175 + "mdast-util-to-markdown": "^2.0.0", 4176 + "parse-entities": "^4.0.0", 4177 + "stringify-entities": "^4.0.0", 4178 + "unist-util-stringify-position": "^4.0.0", 4179 + "vfile-message": "^4.0.0" 4180 + }, 4181 + "funding": { 4182 + "type": "opencollective", 4183 + "url": "https://opencollective.com/unified" 4184 + } 4185 + }, 4186 + "node_modules/mdast-util-mdxjs-esm": { 4187 + "version": "2.0.1", 4188 + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", 4189 + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", 4190 + "license": "MIT", 4191 + "dependencies": { 4192 + "@types/estree-jsx": "^1.0.0", 4193 + "@types/hast": "^3.0.0", 4194 + "@types/mdast": "^4.0.0", 4195 + "devlop": "^1.0.0", 4196 + "mdast-util-from-markdown": "^2.0.0", 4197 + "mdast-util-to-markdown": "^2.0.0" 4198 + }, 4199 + "funding": { 4200 + "type": "opencollective", 4201 + "url": "https://opencollective.com/unified" 4202 + } 4203 + }, 4204 + "node_modules/mdast-util-phrasing": { 4205 + "version": "4.1.0", 4206 + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", 4207 + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", 4208 + "license": "MIT", 4209 + "dependencies": { 4210 + "@types/mdast": "^4.0.0", 4211 + "unist-util-is": "^6.0.0" 4212 + }, 4213 + "funding": { 4214 + "type": "opencollective", 4215 + "url": "https://opencollective.com/unified" 4216 + } 4217 + }, 4218 + "node_modules/mdast-util-to-hast": { 4219 + "version": "13.2.1", 4220 + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", 4221 + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", 4222 + "license": "MIT", 4223 + "dependencies": { 4224 + "@types/hast": "^3.0.0", 4225 + "@types/mdast": "^4.0.0", 4226 + "@ungap/structured-clone": "^1.0.0", 4227 + "devlop": "^1.0.0", 4228 + "micromark-util-sanitize-uri": "^2.0.0", 4229 + "trim-lines": "^3.0.0", 4230 + "unist-util-position": "^5.0.0", 4231 + "unist-util-visit": "^5.0.0", 4232 + "vfile": "^6.0.0" 4233 + }, 4234 + "funding": { 4235 + "type": "opencollective", 4236 + "url": "https://opencollective.com/unified" 4237 + } 4238 + }, 4239 + "node_modules/mdast-util-to-markdown": { 4240 + "version": "2.1.2", 4241 + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", 4242 + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", 4243 + "license": "MIT", 4244 + "dependencies": { 4245 + "@types/mdast": "^4.0.0", 4246 + "@types/unist": "^3.0.0", 4247 + "longest-streak": "^3.0.0", 4248 + "mdast-util-phrasing": "^4.0.0", 4249 + "mdast-util-to-string": "^4.0.0", 4250 + "micromark-util-classify-character": "^2.0.0", 4251 + "micromark-util-decode-string": "^2.0.0", 4252 + "unist-util-visit": "^5.0.0", 4253 + "zwitch": "^2.0.0" 4254 + }, 4255 + "funding": { 4256 + "type": "opencollective", 4257 + "url": "https://opencollective.com/unified" 4258 + } 4259 + }, 4260 + "node_modules/mdast-util-to-string": { 4261 + "version": "4.0.0", 4262 + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", 4263 + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", 4264 + "license": "MIT", 4265 + "dependencies": { 4266 + "@types/mdast": "^4.0.0" 4267 + }, 4268 + "funding": { 4269 + "type": "opencollective", 4270 + "url": "https://opencollective.com/unified" 4271 + } 4272 + }, 4273 + "node_modules/mdn-data": { 4274 + "version": "2.27.1", 4275 + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", 4276 + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", 4277 + "license": "CC0-1.0" 4278 + }, 4279 + "node_modules/micromark": { 4280 + "version": "4.0.2", 4281 + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", 4282 + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", 4283 + "funding": [ 4284 + { 4285 + "type": "GitHub Sponsors", 4286 + "url": "https://github.com/sponsors/unifiedjs" 4287 + }, 4288 + { 4289 + "type": "OpenCollective", 4290 + "url": "https://opencollective.com/unified" 4291 + } 4292 + ], 4293 + "license": "MIT", 4294 + "dependencies": { 4295 + "@types/debug": "^4.0.0", 4296 + "debug": "^4.0.0", 4297 + "decode-named-character-reference": "^1.0.0", 4298 + "devlop": "^1.0.0", 4299 + "micromark-core-commonmark": "^2.0.0", 4300 + "micromark-factory-space": "^2.0.0", 4301 + "micromark-util-character": "^2.0.0", 4302 + "micromark-util-chunked": "^2.0.0", 4303 + "micromark-util-combine-extensions": "^2.0.0", 4304 + "micromark-util-decode-numeric-character-reference": "^2.0.0", 4305 + "micromark-util-encode": "^2.0.0", 4306 + "micromark-util-normalize-identifier": "^2.0.0", 4307 + "micromark-util-resolve-all": "^2.0.0", 4308 + "micromark-util-sanitize-uri": "^2.0.0", 4309 + "micromark-util-subtokenize": "^2.0.0", 4310 + "micromark-util-symbol": "^2.0.0", 4311 + "micromark-util-types": "^2.0.0" 4312 + } 4313 + }, 4314 + "node_modules/micromark-core-commonmark": { 4315 + "version": "2.0.3", 4316 + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", 4317 + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", 4318 + "funding": [ 4319 + { 4320 + "type": "GitHub Sponsors", 4321 + "url": "https://github.com/sponsors/unifiedjs" 4322 + }, 4323 + { 4324 + "type": "OpenCollective", 4325 + "url": "https://opencollective.com/unified" 4326 + } 4327 + ], 4328 + "license": "MIT", 4329 + "dependencies": { 4330 + "decode-named-character-reference": "^1.0.0", 4331 + "devlop": "^1.0.0", 4332 + "micromark-factory-destination": "^2.0.0", 4333 + "micromark-factory-label": "^2.0.0", 4334 + "micromark-factory-space": "^2.0.0", 4335 + "micromark-factory-title": "^2.0.0", 4336 + "micromark-factory-whitespace": "^2.0.0", 4337 + "micromark-util-character": "^2.0.0", 4338 + "micromark-util-chunked": "^2.0.0", 4339 + "micromark-util-classify-character": "^2.0.0", 4340 + "micromark-util-html-tag-name": "^2.0.0", 4341 + "micromark-util-normalize-identifier": "^2.0.0", 4342 + "micromark-util-resolve-all": "^2.0.0", 4343 + "micromark-util-subtokenize": "^2.0.0", 4344 + "micromark-util-symbol": "^2.0.0", 4345 + "micromark-util-types": "^2.0.0" 4346 + } 4347 + }, 4348 + "node_modules/micromark-extension-gfm": { 4349 + "version": "3.0.0", 4350 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", 4351 + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", 4352 + "license": "MIT", 4353 + "dependencies": { 4354 + "micromark-extension-gfm-autolink-literal": "^2.0.0", 4355 + "micromark-extension-gfm-footnote": "^2.0.0", 4356 + "micromark-extension-gfm-strikethrough": "^2.0.0", 4357 + "micromark-extension-gfm-table": "^2.0.0", 4358 + "micromark-extension-gfm-tagfilter": "^2.0.0", 4359 + "micromark-extension-gfm-task-list-item": "^2.0.0", 4360 + "micromark-util-combine-extensions": "^2.0.0", 4361 + "micromark-util-types": "^2.0.0" 4362 + }, 4363 + "funding": { 4364 + "type": "opencollective", 4365 + "url": "https://opencollective.com/unified" 4366 + } 4367 + }, 4368 + "node_modules/micromark-extension-gfm-autolink-literal": { 4369 + "version": "2.1.0", 4370 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", 4371 + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", 4372 + "license": "MIT", 4373 + "dependencies": { 4374 + "micromark-util-character": "^2.0.0", 4375 + "micromark-util-sanitize-uri": "^2.0.0", 4376 + "micromark-util-symbol": "^2.0.0", 4377 + "micromark-util-types": "^2.0.0" 4378 + }, 4379 + "funding": { 4380 + "type": "opencollective", 4381 + "url": "https://opencollective.com/unified" 4382 + } 4383 + }, 4384 + "node_modules/micromark-extension-gfm-footnote": { 4385 + "version": "2.1.0", 4386 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", 4387 + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", 4388 + "license": "MIT", 4389 + "dependencies": { 4390 + "devlop": "^1.0.0", 4391 + "micromark-core-commonmark": "^2.0.0", 4392 + "micromark-factory-space": "^2.0.0", 4393 + "micromark-util-character": "^2.0.0", 4394 + "micromark-util-normalize-identifier": "^2.0.0", 4395 + "micromark-util-sanitize-uri": "^2.0.0", 4396 + "micromark-util-symbol": "^2.0.0", 4397 + "micromark-util-types": "^2.0.0" 4398 + }, 4399 + "funding": { 4400 + "type": "opencollective", 4401 + "url": "https://opencollective.com/unified" 4402 + } 4403 + }, 4404 + "node_modules/micromark-extension-gfm-strikethrough": { 4405 + "version": "2.1.0", 4406 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", 4407 + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", 4408 + "license": "MIT", 4409 + "dependencies": { 4410 + "devlop": "^1.0.0", 4411 + "micromark-util-chunked": "^2.0.0", 4412 + "micromark-util-classify-character": "^2.0.0", 4413 + "micromark-util-resolve-all": "^2.0.0", 4414 + "micromark-util-symbol": "^2.0.0", 4415 + "micromark-util-types": "^2.0.0" 4416 + }, 4417 + "funding": { 4418 + "type": "opencollective", 4419 + "url": "https://opencollective.com/unified" 4420 + } 4421 + }, 4422 + "node_modules/micromark-extension-gfm-table": { 4423 + "version": "2.1.1", 4424 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", 4425 + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", 4426 + "license": "MIT", 4427 + "dependencies": { 4428 + "devlop": "^1.0.0", 4429 + "micromark-factory-space": "^2.0.0", 4430 + "micromark-util-character": "^2.0.0", 4431 + "micromark-util-symbol": "^2.0.0", 4432 + "micromark-util-types": "^2.0.0" 4433 + }, 4434 + "funding": { 4435 + "type": "opencollective", 4436 + "url": "https://opencollective.com/unified" 4437 + } 4438 + }, 4439 + "node_modules/micromark-extension-gfm-tagfilter": { 4440 + "version": "2.0.0", 4441 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", 4442 + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", 4443 + "license": "MIT", 4444 + "dependencies": { 4445 + "micromark-util-types": "^2.0.0" 4446 + }, 4447 + "funding": { 4448 + "type": "opencollective", 4449 + "url": "https://opencollective.com/unified" 4450 + } 4451 + }, 4452 + "node_modules/micromark-extension-gfm-task-list-item": { 4453 + "version": "2.1.0", 4454 + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", 4455 + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", 4456 + "license": "MIT", 4457 + "dependencies": { 4458 + "devlop": "^1.0.0", 4459 + "micromark-factory-space": "^2.0.0", 4460 + "micromark-util-character": "^2.0.0", 4461 + "micromark-util-symbol": "^2.0.0", 4462 + "micromark-util-types": "^2.0.0" 4463 + }, 4464 + "funding": { 4465 + "type": "opencollective", 4466 + "url": "https://opencollective.com/unified" 4467 + } 4468 + }, 4469 + "node_modules/micromark-extension-mdx-expression": { 4470 + "version": "3.0.1", 4471 + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz", 4472 + "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==", 4473 + "funding": [ 4474 + { 4475 + "type": "GitHub Sponsors", 4476 + "url": "https://github.com/sponsors/unifiedjs" 4477 + }, 4478 + { 4479 + "type": "OpenCollective", 4480 + "url": "https://opencollective.com/unified" 4481 + } 4482 + ], 4483 + "license": "MIT", 4484 + "dependencies": { 4485 + "@types/estree": "^1.0.0", 4486 + "devlop": "^1.0.0", 4487 + "micromark-factory-mdx-expression": "^2.0.0", 4488 + "micromark-factory-space": "^2.0.0", 4489 + "micromark-util-character": "^2.0.0", 4490 + "micromark-util-events-to-acorn": "^2.0.0", 4491 + "micromark-util-symbol": "^2.0.0", 4492 + "micromark-util-types": "^2.0.0" 4493 + } 4494 + }, 4495 + "node_modules/micromark-extension-mdx-jsx": { 4496 + "version": "3.0.2", 4497 + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz", 4498 + "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==", 4499 + "license": "MIT", 4500 + "dependencies": { 4501 + "@types/estree": "^1.0.0", 4502 + "devlop": "^1.0.0", 4503 + "estree-util-is-identifier-name": "^3.0.0", 4504 + "micromark-factory-mdx-expression": "^2.0.0", 4505 + "micromark-factory-space": "^2.0.0", 4506 + "micromark-util-character": "^2.0.0", 4507 + "micromark-util-events-to-acorn": "^2.0.0", 4508 + "micromark-util-symbol": "^2.0.0", 4509 + "micromark-util-types": "^2.0.0", 4510 + "vfile-message": "^4.0.0" 4511 + }, 4512 + "funding": { 4513 + "type": "opencollective", 4514 + "url": "https://opencollective.com/unified" 4515 + } 4516 + }, 4517 + "node_modules/micromark-extension-mdx-md": { 4518 + "version": "2.0.0", 4519 + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", 4520 + "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", 4521 + "license": "MIT", 4522 + "dependencies": { 4523 + "micromark-util-types": "^2.0.0" 4524 + }, 4525 + "funding": { 4526 + "type": "opencollective", 4527 + "url": "https://opencollective.com/unified" 4528 + } 4529 + }, 4530 + "node_modules/micromark-extension-mdxjs": { 4531 + "version": "3.0.0", 4532 + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", 4533 + "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", 4534 + "license": "MIT", 4535 + "dependencies": { 4536 + "acorn": "^8.0.0", 4537 + "acorn-jsx": "^5.0.0", 4538 + "micromark-extension-mdx-expression": "^3.0.0", 4539 + "micromark-extension-mdx-jsx": "^3.0.0", 4540 + "micromark-extension-mdx-md": "^2.0.0", 4541 + "micromark-extension-mdxjs-esm": "^3.0.0", 4542 + "micromark-util-combine-extensions": "^2.0.0", 4543 + "micromark-util-types": "^2.0.0" 4544 + }, 4545 + "funding": { 4546 + "type": "opencollective", 4547 + "url": "https://opencollective.com/unified" 4548 + } 4549 + }, 4550 + "node_modules/micromark-extension-mdxjs-esm": { 4551 + "version": "3.0.0", 4552 + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", 4553 + "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", 4554 + "license": "MIT", 4555 + "dependencies": { 4556 + "@types/estree": "^1.0.0", 4557 + "devlop": "^1.0.0", 4558 + "micromark-core-commonmark": "^2.0.0", 4559 + "micromark-util-character": "^2.0.0", 4560 + "micromark-util-events-to-acorn": "^2.0.0", 4561 + "micromark-util-symbol": "^2.0.0", 4562 + "micromark-util-types": "^2.0.0", 4563 + "unist-util-position-from-estree": "^2.0.0", 4564 + "vfile-message": "^4.0.0" 4565 + }, 4566 + "funding": { 4567 + "type": "opencollective", 4568 + "url": "https://opencollective.com/unified" 4569 + } 4570 + }, 4571 + "node_modules/micromark-factory-destination": { 4572 + "version": "2.0.1", 4573 + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", 4574 + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", 4575 + "funding": [ 4576 + { 4577 + "type": "GitHub Sponsors", 4578 + "url": "https://github.com/sponsors/unifiedjs" 4579 + }, 4580 + { 4581 + "type": "OpenCollective", 4582 + "url": "https://opencollective.com/unified" 4583 + } 4584 + ], 4585 + "license": "MIT", 4586 + "dependencies": { 4587 + "micromark-util-character": "^2.0.0", 4588 + "micromark-util-symbol": "^2.0.0", 4589 + "micromark-util-types": "^2.0.0" 4590 + } 4591 + }, 4592 + "node_modules/micromark-factory-label": { 4593 + "version": "2.0.1", 4594 + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", 4595 + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", 4596 + "funding": [ 4597 + { 4598 + "type": "GitHub Sponsors", 4599 + "url": "https://github.com/sponsors/unifiedjs" 4600 + }, 4601 + { 4602 + "type": "OpenCollective", 4603 + "url": "https://opencollective.com/unified" 4604 + } 4605 + ], 4606 + "license": "MIT", 4607 + "dependencies": { 4608 + "devlop": "^1.0.0", 4609 + "micromark-util-character": "^2.0.0", 4610 + "micromark-util-symbol": "^2.0.0", 4611 + "micromark-util-types": "^2.0.0" 4612 + } 4613 + }, 4614 + "node_modules/micromark-factory-mdx-expression": { 4615 + "version": "2.0.3", 4616 + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz", 4617 + "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==", 4618 + "funding": [ 4619 + { 4620 + "type": "GitHub Sponsors", 4621 + "url": "https://github.com/sponsors/unifiedjs" 4622 + }, 4623 + { 4624 + "type": "OpenCollective", 4625 + "url": "https://opencollective.com/unified" 4626 + } 4627 + ], 4628 + "license": "MIT", 4629 + "dependencies": { 4630 + "@types/estree": "^1.0.0", 4631 + "devlop": "^1.0.0", 4632 + "micromark-factory-space": "^2.0.0", 4633 + "micromark-util-character": "^2.0.0", 4634 + "micromark-util-events-to-acorn": "^2.0.0", 4635 + "micromark-util-symbol": "^2.0.0", 4636 + "micromark-util-types": "^2.0.0", 4637 + "unist-util-position-from-estree": "^2.0.0", 4638 + "vfile-message": "^4.0.0" 4639 + } 4640 + }, 4641 + "node_modules/micromark-factory-space": { 4642 + "version": "2.0.1", 4643 + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", 4644 + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", 4645 + "funding": [ 4646 + { 4647 + "type": "GitHub Sponsors", 4648 + "url": "https://github.com/sponsors/unifiedjs" 4649 + }, 4650 + { 4651 + "type": "OpenCollective", 4652 + "url": "https://opencollective.com/unified" 4653 + } 4654 + ], 4655 + "license": "MIT", 4656 + "dependencies": { 4657 + "micromark-util-character": "^2.0.0", 4658 + "micromark-util-types": "^2.0.0" 4659 + } 4660 + }, 4661 + "node_modules/micromark-factory-title": { 4662 + "version": "2.0.1", 4663 + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", 4664 + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", 4665 + "funding": [ 4666 + { 4667 + "type": "GitHub Sponsors", 4668 + "url": "https://github.com/sponsors/unifiedjs" 4669 + }, 4670 + { 4671 + "type": "OpenCollective", 4672 + "url": "https://opencollective.com/unified" 4673 + } 4674 + ], 4675 + "license": "MIT", 4676 + "dependencies": { 4677 + "micromark-factory-space": "^2.0.0", 4678 + "micromark-util-character": "^2.0.0", 4679 + "micromark-util-symbol": "^2.0.0", 4680 + "micromark-util-types": "^2.0.0" 4681 + } 4682 + }, 4683 + "node_modules/micromark-factory-whitespace": { 4684 + "version": "2.0.1", 4685 + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", 4686 + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", 4687 + "funding": [ 4688 + { 4689 + "type": "GitHub Sponsors", 4690 + "url": "https://github.com/sponsors/unifiedjs" 4691 + }, 4692 + { 4693 + "type": "OpenCollective", 4694 + "url": "https://opencollective.com/unified" 4695 + } 4696 + ], 4697 + "license": "MIT", 4698 + "dependencies": { 4699 + "micromark-factory-space": "^2.0.0", 4700 + "micromark-util-character": "^2.0.0", 4701 + "micromark-util-symbol": "^2.0.0", 4702 + "micromark-util-types": "^2.0.0" 4703 + } 4704 + }, 4705 + "node_modules/micromark-util-character": { 4706 + "version": "2.1.1", 4707 + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", 4708 + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", 4709 + "funding": [ 4710 + { 4711 + "type": "GitHub Sponsors", 4712 + "url": "https://github.com/sponsors/unifiedjs" 4713 + }, 4714 + { 4715 + "type": "OpenCollective", 4716 + "url": "https://opencollective.com/unified" 4717 + } 4718 + ], 4719 + "license": "MIT", 4720 + "dependencies": { 4721 + "micromark-util-symbol": "^2.0.0", 4722 + "micromark-util-types": "^2.0.0" 4723 + } 4724 + }, 4725 + "node_modules/micromark-util-chunked": { 4726 + "version": "2.0.1", 4727 + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", 4728 + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", 4729 + "funding": [ 4730 + { 4731 + "type": "GitHub Sponsors", 4732 + "url": "https://github.com/sponsors/unifiedjs" 4733 + }, 4734 + { 4735 + "type": "OpenCollective", 4736 + "url": "https://opencollective.com/unified" 4737 + } 4738 + ], 4739 + "license": "MIT", 4740 + "dependencies": { 4741 + "micromark-util-symbol": "^2.0.0" 4742 + } 4743 + }, 4744 + "node_modules/micromark-util-classify-character": { 4745 + "version": "2.0.1", 4746 + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", 4747 + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", 4748 + "funding": [ 4749 + { 4750 + "type": "GitHub Sponsors", 4751 + "url": "https://github.com/sponsors/unifiedjs" 4752 + }, 4753 + { 4754 + "type": "OpenCollective", 4755 + "url": "https://opencollective.com/unified" 4756 + } 4757 + ], 4758 + "license": "MIT", 4759 + "dependencies": { 4760 + "micromark-util-character": "^2.0.0", 4761 + "micromark-util-symbol": "^2.0.0", 4762 + "micromark-util-types": "^2.0.0" 4763 + } 4764 + }, 4765 + "node_modules/micromark-util-combine-extensions": { 4766 + "version": "2.0.1", 4767 + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", 4768 + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", 4769 + "funding": [ 4770 + { 4771 + "type": "GitHub Sponsors", 4772 + "url": "https://github.com/sponsors/unifiedjs" 4773 + }, 4774 + { 4775 + "type": "OpenCollective", 4776 + "url": "https://opencollective.com/unified" 4777 + } 4778 + ], 4779 + "license": "MIT", 4780 + "dependencies": { 4781 + "micromark-util-chunked": "^2.0.0", 4782 + "micromark-util-types": "^2.0.0" 4783 + } 4784 + }, 4785 + "node_modules/micromark-util-decode-numeric-character-reference": { 4786 + "version": "2.0.2", 4787 + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", 4788 + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", 4789 + "funding": [ 4790 + { 4791 + "type": "GitHub Sponsors", 4792 + "url": "https://github.com/sponsors/unifiedjs" 4793 + }, 4794 + { 4795 + "type": "OpenCollective", 4796 + "url": "https://opencollective.com/unified" 4797 + } 4798 + ], 4799 + "license": "MIT", 4800 + "dependencies": { 4801 + "micromark-util-symbol": "^2.0.0" 4802 + } 4803 + }, 4804 + "node_modules/micromark-util-decode-string": { 4805 + "version": "2.0.1", 4806 + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", 4807 + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", 4808 + "funding": [ 4809 + { 4810 + "type": "GitHub Sponsors", 4811 + "url": "https://github.com/sponsors/unifiedjs" 4812 + }, 4813 + { 4814 + "type": "OpenCollective", 4815 + "url": "https://opencollective.com/unified" 4816 + } 4817 + ], 4818 + "license": "MIT", 4819 + "dependencies": { 4820 + "decode-named-character-reference": "^1.0.0", 4821 + "micromark-util-character": "^2.0.0", 4822 + "micromark-util-decode-numeric-character-reference": "^2.0.0", 4823 + "micromark-util-symbol": "^2.0.0" 4824 + } 4825 + }, 4826 + "node_modules/micromark-util-encode": { 4827 + "version": "2.0.1", 4828 + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", 4829 + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", 4830 + "funding": [ 4831 + { 4832 + "type": "GitHub Sponsors", 4833 + "url": "https://github.com/sponsors/unifiedjs" 4834 + }, 4835 + { 4836 + "type": "OpenCollective", 4837 + "url": "https://opencollective.com/unified" 4838 + } 4839 + ], 4840 + "license": "MIT" 4841 + }, 4842 + "node_modules/micromark-util-events-to-acorn": { 4843 + "version": "2.0.3", 4844 + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz", 4845 + "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==", 4846 + "funding": [ 4847 + { 4848 + "type": "GitHub Sponsors", 4849 + "url": "https://github.com/sponsors/unifiedjs" 4850 + }, 4851 + { 4852 + "type": "OpenCollective", 4853 + "url": "https://opencollective.com/unified" 4854 + } 4855 + ], 4856 + "license": "MIT", 4857 + "dependencies": { 4858 + "@types/estree": "^1.0.0", 4859 + "@types/unist": "^3.0.0", 4860 + "devlop": "^1.0.0", 4861 + "estree-util-visit": "^2.0.0", 4862 + "micromark-util-symbol": "^2.0.0", 4863 + "micromark-util-types": "^2.0.0", 4864 + "vfile-message": "^4.0.0" 4865 + } 4866 + }, 4867 + "node_modules/micromark-util-html-tag-name": { 4868 + "version": "2.0.1", 4869 + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", 4870 + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", 4871 + "funding": [ 4872 + { 4873 + "type": "GitHub Sponsors", 4874 + "url": "https://github.com/sponsors/unifiedjs" 4875 + }, 4876 + { 4877 + "type": "OpenCollective", 4878 + "url": "https://opencollective.com/unified" 4879 + } 4880 + ], 4881 + "license": "MIT" 4882 + }, 4883 + "node_modules/micromark-util-normalize-identifier": { 4884 + "version": "2.0.1", 4885 + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", 4886 + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", 4887 + "funding": [ 4888 + { 4889 + "type": "GitHub Sponsors", 4890 + "url": "https://github.com/sponsors/unifiedjs" 4891 + }, 4892 + { 4893 + "type": "OpenCollective", 4894 + "url": "https://opencollective.com/unified" 4895 + } 4896 + ], 4897 + "license": "MIT", 4898 + "dependencies": { 4899 + "micromark-util-symbol": "^2.0.0" 4900 + } 4901 + }, 4902 + "node_modules/micromark-util-resolve-all": { 4903 + "version": "2.0.1", 4904 + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", 4905 + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", 4906 + "funding": [ 4907 + { 4908 + "type": "GitHub Sponsors", 4909 + "url": "https://github.com/sponsors/unifiedjs" 4910 + }, 4911 + { 4912 + "type": "OpenCollective", 4913 + "url": "https://opencollective.com/unified" 4914 + } 4915 + ], 4916 + "license": "MIT", 4917 + "dependencies": { 4918 + "micromark-util-types": "^2.0.0" 4919 + } 4920 + }, 4921 + "node_modules/micromark-util-sanitize-uri": { 4922 + "version": "2.0.1", 4923 + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", 4924 + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", 4925 + "funding": [ 4926 + { 4927 + "type": "GitHub Sponsors", 4928 + "url": "https://github.com/sponsors/unifiedjs" 4929 + }, 4930 + { 4931 + "type": "OpenCollective", 4932 + "url": "https://opencollective.com/unified" 4933 + } 4934 + ], 4935 + "license": "MIT", 4936 + "dependencies": { 4937 + "micromark-util-character": "^2.0.0", 4938 + "micromark-util-encode": "^2.0.0", 4939 + "micromark-util-symbol": "^2.0.0" 4940 + } 4941 + }, 4942 + "node_modules/micromark-util-subtokenize": { 4943 + "version": "2.1.0", 4944 + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", 4945 + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", 4946 + "funding": [ 4947 + { 4948 + "type": "GitHub Sponsors", 4949 + "url": "https://github.com/sponsors/unifiedjs" 4950 + }, 4951 + { 4952 + "type": "OpenCollective", 4953 + "url": "https://opencollective.com/unified" 4954 + } 4955 + ], 4956 + "license": "MIT", 4957 + "dependencies": { 4958 + "devlop": "^1.0.0", 4959 + "micromark-util-chunked": "^2.0.0", 4960 + "micromark-util-symbol": "^2.0.0", 4961 + "micromark-util-types": "^2.0.0" 4962 + } 4963 + }, 4964 + "node_modules/micromark-util-symbol": { 4965 + "version": "2.0.1", 4966 + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", 4967 + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", 4968 + "funding": [ 4969 + { 4970 + "type": "GitHub Sponsors", 4971 + "url": "https://github.com/sponsors/unifiedjs" 4972 + }, 4973 + { 4974 + "type": "OpenCollective", 4975 + "url": "https://opencollective.com/unified" 4976 + } 4977 + ], 4978 + "license": "MIT" 4979 + }, 4980 + "node_modules/micromark-util-types": { 4981 + "version": "2.0.2", 4982 + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", 4983 + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", 4984 + "funding": [ 4985 + { 4986 + "type": "GitHub Sponsors", 4987 + "url": "https://github.com/sponsors/unifiedjs" 4988 + }, 4989 + { 4990 + "type": "OpenCollective", 4991 + "url": "https://opencollective.com/unified" 4992 + } 4993 + ], 4994 + "license": "MIT" 4995 + }, 4996 + "node_modules/mrmime": { 4997 + "version": "2.0.1", 4998 + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 4999 + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 5000 + "license": "MIT", 5001 + "engines": { 5002 + "node": ">=10" 5003 + } 5004 + }, 5005 + "node_modules/ms": { 5006 + "version": "2.1.3", 5007 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 5008 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 5009 + "license": "MIT" 5010 + }, 5011 + "node_modules/nanoid": { 5012 + "version": "3.3.11", 5013 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 5014 + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 5015 + "funding": [ 5016 + { 5017 + "type": "github", 5018 + "url": "https://github.com/sponsors/ai" 5019 + } 5020 + ], 5021 + "license": "MIT", 5022 + "bin": { 5023 + "nanoid": "bin/nanoid.cjs" 5024 + }, 5025 + "engines": { 5026 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 5027 + } 5028 + }, 5029 + "node_modules/neotraverse": { 5030 + "version": "0.6.18", 5031 + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", 5032 + "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", 5033 + "license": "MIT", 5034 + "engines": { 5035 + "node": ">= 10" 5036 + } 5037 + }, 5038 + "node_modules/nlcst-to-string": { 5039 + "version": "4.0.0", 5040 + "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz", 5041 + "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==", 5042 + "license": "MIT", 5043 + "dependencies": { 5044 + "@types/nlcst": "^2.0.0" 5045 + }, 5046 + "funding": { 5047 + "type": "opencollective", 5048 + "url": "https://opencollective.com/unified" 5049 + } 5050 + }, 5051 + "node_modules/node-fetch-native": { 5052 + "version": "1.6.7", 5053 + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz", 5054 + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", 5055 + "license": "MIT" 5056 + }, 5057 + "node_modules/node-mock-http": { 5058 + "version": "1.0.4", 5059 + "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.4.tgz", 5060 + "integrity": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==", 5061 + "license": "MIT" 5062 + }, 5063 + "node_modules/normalize-path": { 5064 + "version": "3.0.0", 5065 + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 5066 + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 5067 + "license": "MIT", 5068 + "engines": { 5069 + "node": ">=0.10.0" 5070 + } 5071 + }, 5072 + "node_modules/nth-check": { 5073 + "version": "2.1.1", 5074 + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 5075 + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 5076 + "license": "BSD-2-Clause", 5077 + "dependencies": { 5078 + "boolbase": "^1.0.0" 5079 + }, 5080 + "funding": { 5081 + "url": "https://github.com/fb55/nth-check?sponsor=1" 5082 + } 5083 + }, 5084 + "node_modules/obug": { 5085 + "version": "2.1.1", 5086 + "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz", 5087 + "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==", 5088 + "funding": [ 5089 + "https://github.com/sponsors/sxzz", 5090 + "https://opencollective.com/debug" 5091 + ], 5092 + "license": "MIT" 5093 + }, 5094 + "node_modules/ofetch": { 5095 + "version": "1.5.1", 5096 + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.5.1.tgz", 5097 + "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", 5098 + "license": "MIT", 5099 + "dependencies": { 5100 + "destr": "^2.0.5", 5101 + "node-fetch-native": "^1.6.7", 5102 + "ufo": "^1.6.1" 5103 + } 5104 + }, 5105 + "node_modules/ohash": { 5106 + "version": "2.0.11", 5107 + "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", 5108 + "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", 5109 + "license": "MIT" 5110 + }, 5111 + "node_modules/oniguruma-parser": { 5112 + "version": "0.12.1", 5113 + "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz", 5114 + "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==", 5115 + "license": "MIT" 5116 + }, 5117 + "node_modules/oniguruma-to-es": { 5118 + "version": "4.3.5", 5119 + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.5.tgz", 5120 + "integrity": "sha512-Zjygswjpsewa0NLTsiizVuMQZbp0MDyM6lIt66OxsF21npUDlzpHi1Mgb/qhQdkb+dWFTzJmFbEWdvZgRho8eQ==", 5121 + "license": "MIT", 5122 + "dependencies": { 5123 + "oniguruma-parser": "^0.12.1", 5124 + "regex": "^6.1.0", 5125 + "regex-recursion": "^6.0.2" 5126 + } 5127 + }, 5128 + "node_modules/p-limit": { 5129 + "version": "7.3.0", 5130 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz", 5131 + "integrity": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==", 5132 + "license": "MIT", 5133 + "dependencies": { 5134 + "yocto-queue": "^1.2.1" 5135 + }, 5136 + "engines": { 5137 + "node": ">=20" 5138 + }, 5139 + "funding": { 5140 + "url": "https://github.com/sponsors/sindresorhus" 5141 + } 5142 + }, 5143 + "node_modules/p-queue": { 5144 + "version": "9.1.0", 5145 + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.1.0.tgz", 5146 + "integrity": "sha512-O/ZPaXuQV29uSLbxWBGGZO1mCQXV2BLIwUr59JUU9SoH76mnYvtms7aafH/isNSNGwuEfP6W/4xD0/TJXxrizw==", 5147 + "license": "MIT", 5148 + "dependencies": { 5149 + "eventemitter3": "^5.0.1", 5150 + "p-timeout": "^7.0.0" 5151 + }, 5152 + "engines": { 5153 + "node": ">=20" 5154 + }, 5155 + "funding": { 5156 + "url": "https://github.com/sponsors/sindresorhus" 5157 + } 5158 + }, 5159 + "node_modules/p-timeout": { 5160 + "version": "7.0.1", 5161 + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz", 5162 + "integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==", 5163 + "license": "MIT", 5164 + "engines": { 5165 + "node": ">=20" 5166 + }, 5167 + "funding": { 5168 + "url": "https://github.com/sponsors/sindresorhus" 5169 + } 5170 + }, 5171 + "node_modules/package-manager-detector": { 5172 + "version": "1.6.0", 5173 + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz", 5174 + "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", 5175 + "license": "MIT" 5176 + }, 5177 + "node_modules/parse-entities": { 5178 + "version": "4.0.2", 5179 + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", 5180 + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", 5181 + "license": "MIT", 5182 + "dependencies": { 5183 + "@types/unist": "^2.0.0", 5184 + "character-entities-legacy": "^3.0.0", 5185 + "character-reference-invalid": "^2.0.0", 5186 + "decode-named-character-reference": "^1.0.0", 5187 + "is-alphanumerical": "^2.0.0", 5188 + "is-decimal": "^2.0.0", 5189 + "is-hexadecimal": "^2.0.0" 5190 + }, 5191 + "funding": { 5192 + "type": "github", 5193 + "url": "https://github.com/sponsors/wooorm" 5194 + } 5195 + }, 5196 + "node_modules/parse-entities/node_modules/@types/unist": { 5197 + "version": "2.0.11", 5198 + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", 5199 + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", 5200 + "license": "MIT" 5201 + }, 5202 + "node_modules/parse-latin": { 5203 + "version": "7.0.0", 5204 + "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", 5205 + "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==", 5206 + "license": "MIT", 5207 + "dependencies": { 5208 + "@types/nlcst": "^2.0.0", 5209 + "@types/unist": "^3.0.0", 5210 + "nlcst-to-string": "^4.0.0", 5211 + "unist-util-modify-children": "^4.0.0", 5212 + "unist-util-visit-children": "^3.0.0", 5213 + "vfile": "^6.0.0" 5214 + }, 5215 + "funding": { 5216 + "type": "github", 5217 + "url": "https://github.com/sponsors/wooorm" 5218 + } 5219 + }, 5220 + "node_modules/parse5": { 5221 + "version": "7.3.0", 5222 + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", 5223 + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", 5224 + "license": "MIT", 5225 + "dependencies": { 5226 + "entities": "^6.0.0" 5227 + }, 5228 + "funding": { 5229 + "url": "https://github.com/inikulin/parse5?sponsor=1" 5230 + } 5231 + }, 5232 + "node_modules/piccolore": { 5233 + "version": "0.1.3", 5234 + "resolved": "https://registry.npmjs.org/piccolore/-/piccolore-0.1.3.tgz", 5235 + "integrity": "sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==", 5236 + "license": "ISC" 5237 + }, 5238 + "node_modules/picocolors": { 5239 + "version": "1.1.1", 5240 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 5241 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 5242 + "license": "ISC" 5243 + }, 5244 + "node_modules/picomatch": { 5245 + "version": "4.0.4", 5246 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", 5247 + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", 5248 + "license": "MIT", 5249 + "engines": { 5250 + "node": ">=12" 5251 + }, 5252 + "funding": { 5253 + "url": "https://github.com/sponsors/jonschlinkert" 5254 + } 5255 + }, 5256 + "node_modules/postcss": { 5257 + "version": "8.5.8", 5258 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", 5259 + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", 5260 + "funding": [ 5261 + { 5262 + "type": "opencollective", 5263 + "url": "https://opencollective.com/postcss/" 5264 + }, 5265 + { 5266 + "type": "tidelift", 5267 + "url": "https://tidelift.com/funding/github/npm/postcss" 5268 + }, 5269 + { 5270 + "type": "github", 5271 + "url": "https://github.com/sponsors/ai" 5272 + } 5273 + ], 5274 + "license": "MIT", 5275 + "dependencies": { 5276 + "nanoid": "^3.3.11", 5277 + "picocolors": "^1.1.1", 5278 + "source-map-js": "^1.2.1" 5279 + }, 5280 + "engines": { 5281 + "node": "^10 || ^12 || >=14" 5282 + } 5283 + }, 5284 + "node_modules/prismjs": { 5285 + "version": "1.30.0", 5286 + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", 5287 + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", 5288 + "license": "MIT", 5289 + "engines": { 5290 + "node": ">=6" 5291 + } 5292 + }, 5293 + "node_modules/property-information": { 5294 + "version": "7.1.0", 5295 + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", 5296 + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", 5297 + "license": "MIT", 5298 + "funding": { 5299 + "type": "github", 5300 + "url": "https://github.com/sponsors/wooorm" 5301 + } 5302 + }, 5303 + "node_modules/radix3": { 5304 + "version": "1.1.2", 5305 + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", 5306 + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", 5307 + "license": "MIT" 5308 + }, 5309 + "node_modules/readdirp": { 5310 + "version": "5.0.0", 5311 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz", 5312 + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", 5313 + "license": "MIT", 5314 + "engines": { 5315 + "node": ">= 20.19.0" 5316 + }, 5317 + "funding": { 5318 + "type": "individual", 5319 + "url": "https://paulmillr.com/funding/" 5320 + } 5321 + }, 5322 + "node_modules/recma-build-jsx": { 5323 + "version": "1.0.0", 5324 + "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz", 5325 + "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==", 5326 + "license": "MIT", 5327 + "dependencies": { 5328 + "@types/estree": "^1.0.0", 5329 + "estree-util-build-jsx": "^3.0.0", 5330 + "vfile": "^6.0.0" 5331 + }, 5332 + "funding": { 5333 + "type": "opencollective", 5334 + "url": "https://opencollective.com/unified" 5335 + } 5336 + }, 5337 + "node_modules/recma-jsx": { 5338 + "version": "1.0.1", 5339 + "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz", 5340 + "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==", 5341 + "license": "MIT", 5342 + "dependencies": { 5343 + "acorn-jsx": "^5.0.0", 5344 + "estree-util-to-js": "^2.0.0", 5345 + "recma-parse": "^1.0.0", 5346 + "recma-stringify": "^1.0.0", 5347 + "unified": "^11.0.0" 5348 + }, 5349 + "funding": { 5350 + "type": "opencollective", 5351 + "url": "https://opencollective.com/unified" 5352 + }, 5353 + "peerDependencies": { 5354 + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 5355 + } 5356 + }, 5357 + "node_modules/recma-parse": { 5358 + "version": "1.0.0", 5359 + "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz", 5360 + "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==", 5361 + "license": "MIT", 5362 + "dependencies": { 5363 + "@types/estree": "^1.0.0", 5364 + "esast-util-from-js": "^2.0.0", 5365 + "unified": "^11.0.0", 5366 + "vfile": "^6.0.0" 5367 + }, 5368 + "funding": { 5369 + "type": "opencollective", 5370 + "url": "https://opencollective.com/unified" 5371 + } 5372 + }, 5373 + "node_modules/recma-stringify": { 5374 + "version": "1.0.0", 5375 + "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz", 5376 + "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==", 5377 + "license": "MIT", 5378 + "dependencies": { 5379 + "@types/estree": "^1.0.0", 5380 + "estree-util-to-js": "^2.0.0", 5381 + "unified": "^11.0.0", 5382 + "vfile": "^6.0.0" 5383 + }, 5384 + "funding": { 5385 + "type": "opencollective", 5386 + "url": "https://opencollective.com/unified" 5387 + } 5388 + }, 5389 + "node_modules/regex": { 5390 + "version": "6.1.0", 5391 + "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", 5392 + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", 5393 + "license": "MIT", 5394 + "dependencies": { 5395 + "regex-utilities": "^2.3.0" 5396 + } 5397 + }, 5398 + "node_modules/regex-recursion": { 5399 + "version": "6.0.2", 5400 + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", 5401 + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", 5402 + "license": "MIT", 5403 + "dependencies": { 5404 + "regex-utilities": "^2.3.0" 5405 + } 5406 + }, 5407 + "node_modules/regex-utilities": { 5408 + "version": "2.3.0", 5409 + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", 5410 + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", 5411 + "license": "MIT" 5412 + }, 5413 + "node_modules/rehype": { 5414 + "version": "13.0.2", 5415 + "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz", 5416 + "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==", 5417 + "license": "MIT", 5418 + "dependencies": { 5419 + "@types/hast": "^3.0.0", 5420 + "rehype-parse": "^9.0.0", 5421 + "rehype-stringify": "^10.0.0", 5422 + "unified": "^11.0.0" 5423 + }, 5424 + "funding": { 5425 + "type": "opencollective", 5426 + "url": "https://opencollective.com/unified" 5427 + } 5428 + }, 5429 + "node_modules/rehype-parse": { 5430 + "version": "9.0.1", 5431 + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz", 5432 + "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", 5433 + "license": "MIT", 5434 + "dependencies": { 5435 + "@types/hast": "^3.0.0", 5436 + "hast-util-from-html": "^2.0.0", 5437 + "unified": "^11.0.0" 5438 + }, 5439 + "funding": { 5440 + "type": "opencollective", 5441 + "url": "https://opencollective.com/unified" 5442 + } 5443 + }, 5444 + "node_modules/rehype-raw": { 5445 + "version": "7.0.0", 5446 + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", 5447 + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", 5448 + "license": "MIT", 5449 + "dependencies": { 5450 + "@types/hast": "^3.0.0", 5451 + "hast-util-raw": "^9.0.0", 5452 + "vfile": "^6.0.0" 5453 + }, 5454 + "funding": { 5455 + "type": "opencollective", 5456 + "url": "https://opencollective.com/unified" 5457 + } 5458 + }, 5459 + "node_modules/rehype-recma": { 5460 + "version": "1.0.0", 5461 + "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz", 5462 + "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==", 5463 + "license": "MIT", 5464 + "dependencies": { 5465 + "@types/estree": "^1.0.0", 5466 + "@types/hast": "^3.0.0", 5467 + "hast-util-to-estree": "^3.0.0" 5468 + }, 5469 + "funding": { 5470 + "type": "opencollective", 5471 + "url": "https://opencollective.com/unified" 5472 + } 5473 + }, 5474 + "node_modules/rehype-stringify": { 5475 + "version": "10.0.1", 5476 + "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", 5477 + "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", 5478 + "license": "MIT", 5479 + "dependencies": { 5480 + "@types/hast": "^3.0.0", 5481 + "hast-util-to-html": "^9.0.0", 5482 + "unified": "^11.0.0" 5483 + }, 5484 + "funding": { 5485 + "type": "opencollective", 5486 + "url": "https://opencollective.com/unified" 5487 + } 5488 + }, 5489 + "node_modules/remark-gfm": { 5490 + "version": "4.0.1", 5491 + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", 5492 + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", 5493 + "license": "MIT", 5494 + "dependencies": { 5495 + "@types/mdast": "^4.0.0", 5496 + "mdast-util-gfm": "^3.0.0", 5497 + "micromark-extension-gfm": "^3.0.0", 5498 + "remark-parse": "^11.0.0", 5499 + "remark-stringify": "^11.0.0", 5500 + "unified": "^11.0.0" 5501 + }, 5502 + "funding": { 5503 + "type": "opencollective", 5504 + "url": "https://opencollective.com/unified" 5505 + } 5506 + }, 5507 + "node_modules/remark-mdx": { 5508 + "version": "3.1.1", 5509 + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz", 5510 + "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==", 5511 + "license": "MIT", 5512 + "dependencies": { 5513 + "mdast-util-mdx": "^3.0.0", 5514 + "micromark-extension-mdxjs": "^3.0.0" 5515 + }, 5516 + "funding": { 5517 + "type": "opencollective", 5518 + "url": "https://opencollective.com/unified" 5519 + } 5520 + }, 5521 + "node_modules/remark-parse": { 5522 + "version": "11.0.0", 5523 + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", 5524 + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", 5525 + "license": "MIT", 5526 + "dependencies": { 5527 + "@types/mdast": "^4.0.0", 5528 + "mdast-util-from-markdown": "^2.0.0", 5529 + "micromark-util-types": "^2.0.0", 5530 + "unified": "^11.0.0" 5531 + }, 5532 + "funding": { 5533 + "type": "opencollective", 5534 + "url": "https://opencollective.com/unified" 5535 + } 5536 + }, 5537 + "node_modules/remark-rehype": { 5538 + "version": "11.1.2", 5539 + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", 5540 + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", 5541 + "license": "MIT", 5542 + "dependencies": { 5543 + "@types/hast": "^3.0.0", 5544 + "@types/mdast": "^4.0.0", 5545 + "mdast-util-to-hast": "^13.0.0", 5546 + "unified": "^11.0.0", 5547 + "vfile": "^6.0.0" 5548 + }, 5549 + "funding": { 5550 + "type": "opencollective", 5551 + "url": "https://opencollective.com/unified" 5552 + } 5553 + }, 5554 + "node_modules/remark-smartypants": { 5555 + "version": "3.0.2", 5556 + "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz", 5557 + "integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==", 5558 + "license": "MIT", 5559 + "dependencies": { 5560 + "retext": "^9.0.0", 5561 + "retext-smartypants": "^6.0.0", 5562 + "unified": "^11.0.4", 5563 + "unist-util-visit": "^5.0.0" 5564 + }, 5565 + "engines": { 5566 + "node": ">=16.0.0" 5567 + } 5568 + }, 5569 + "node_modules/remark-stringify": { 5570 + "version": "11.0.0", 5571 + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", 5572 + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", 5573 + "license": "MIT", 5574 + "dependencies": { 5575 + "@types/mdast": "^4.0.0", 5576 + "mdast-util-to-markdown": "^2.0.0", 5577 + "unified": "^11.0.0" 5578 + }, 5579 + "funding": { 5580 + "type": "opencollective", 5581 + "url": "https://opencollective.com/unified" 5582 + } 5583 + }, 5584 + "node_modules/retext": { 5585 + "version": "9.0.0", 5586 + "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", 5587 + "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", 5588 + "license": "MIT", 5589 + "dependencies": { 5590 + "@types/nlcst": "^2.0.0", 5591 + "retext-latin": "^4.0.0", 5592 + "retext-stringify": "^4.0.0", 5593 + "unified": "^11.0.0" 5594 + }, 5595 + "funding": { 5596 + "type": "opencollective", 5597 + "url": "https://opencollective.com/unified" 5598 + } 5599 + }, 5600 + "node_modules/retext-latin": { 5601 + "version": "4.0.0", 5602 + "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz", 5603 + "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==", 5604 + "license": "MIT", 5605 + "dependencies": { 5606 + "@types/nlcst": "^2.0.0", 5607 + "parse-latin": "^7.0.0", 5608 + "unified": "^11.0.0" 5609 + }, 5610 + "funding": { 5611 + "type": "opencollective", 5612 + "url": "https://opencollective.com/unified" 5613 + } 5614 + }, 5615 + "node_modules/retext-smartypants": { 5616 + "version": "6.2.0", 5617 + "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz", 5618 + "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==", 5619 + "license": "MIT", 5620 + "dependencies": { 5621 + "@types/nlcst": "^2.0.0", 5622 + "nlcst-to-string": "^4.0.0", 5623 + "unist-util-visit": "^5.0.0" 5624 + }, 5625 + "funding": { 5626 + "type": "opencollective", 5627 + "url": "https://opencollective.com/unified" 5628 + } 5629 + }, 5630 + "node_modules/retext-stringify": { 5631 + "version": "4.0.0", 5632 + "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz", 5633 + "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==", 5634 + "license": "MIT", 5635 + "dependencies": { 5636 + "@types/nlcst": "^2.0.0", 5637 + "nlcst-to-string": "^4.0.0", 5638 + "unified": "^11.0.0" 5639 + }, 5640 + "funding": { 5641 + "type": "opencollective", 5642 + "url": "https://opencollective.com/unified" 5643 + } 5644 + }, 5645 + "node_modules/rolldown": { 5646 + "version": "1.0.0-rc.12", 5647 + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.12.tgz", 5648 + "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==", 5649 + "license": "MIT", 5650 + "dependencies": { 5651 + "@oxc-project/types": "=0.122.0", 5652 + "@rolldown/pluginutils": "1.0.0-rc.12" 5653 + }, 5654 + "bin": { 5655 + "rolldown": "bin/cli.mjs" 5656 + }, 5657 + "engines": { 5658 + "node": "^20.19.0 || >=22.12.0" 5659 + }, 5660 + "optionalDependencies": { 5661 + "@rolldown/binding-android-arm64": "1.0.0-rc.12", 5662 + "@rolldown/binding-darwin-arm64": "1.0.0-rc.12", 5663 + "@rolldown/binding-darwin-x64": "1.0.0-rc.12", 5664 + "@rolldown/binding-freebsd-x64": "1.0.0-rc.12", 5665 + "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12", 5666 + "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12", 5667 + "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12", 5668 + "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12", 5669 + "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12", 5670 + "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12", 5671 + "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12", 5672 + "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12", 5673 + "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12", 5674 + "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12", 5675 + "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12" 5676 + } 5677 + }, 5678 + "node_modules/rollup": { 5679 + "version": "4.60.0", 5680 + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.0.tgz", 5681 + "integrity": "sha512-yqjxruMGBQJ2gG4HtjZtAfXArHomazDHoFwFFmZZl0r7Pdo7qCIXKqKHZc8yeoMgzJJ+pO6pEEHa+V7uzWlrAQ==", 5682 + "license": "MIT", 5683 + "peer": true, 5684 + "dependencies": { 5685 + "@types/estree": "1.0.8" 5686 + }, 5687 + "bin": { 5688 + "rollup": "dist/bin/rollup" 5689 + }, 5690 + "engines": { 5691 + "node": ">=18.0.0", 5692 + "npm": ">=8.0.0" 5693 + }, 5694 + "optionalDependencies": { 5695 + "@rollup/rollup-android-arm-eabi": "4.60.0", 5696 + "@rollup/rollup-android-arm64": "4.60.0", 5697 + "@rollup/rollup-darwin-arm64": "4.60.0", 5698 + "@rollup/rollup-darwin-x64": "4.60.0", 5699 + "@rollup/rollup-freebsd-arm64": "4.60.0", 5700 + "@rollup/rollup-freebsd-x64": "4.60.0", 5701 + "@rollup/rollup-linux-arm-gnueabihf": "4.60.0", 5702 + "@rollup/rollup-linux-arm-musleabihf": "4.60.0", 5703 + "@rollup/rollup-linux-arm64-gnu": "4.60.0", 5704 + "@rollup/rollup-linux-arm64-musl": "4.60.0", 5705 + "@rollup/rollup-linux-loong64-gnu": "4.60.0", 5706 + "@rollup/rollup-linux-loong64-musl": "4.60.0", 5707 + "@rollup/rollup-linux-ppc64-gnu": "4.60.0", 5708 + "@rollup/rollup-linux-ppc64-musl": "4.60.0", 5709 + "@rollup/rollup-linux-riscv64-gnu": "4.60.0", 5710 + "@rollup/rollup-linux-riscv64-musl": "4.60.0", 5711 + "@rollup/rollup-linux-s390x-gnu": "4.60.0", 5712 + "@rollup/rollup-linux-x64-gnu": "4.60.0", 5713 + "@rollup/rollup-linux-x64-musl": "4.60.0", 5714 + "@rollup/rollup-openbsd-x64": "4.60.0", 5715 + "@rollup/rollup-openharmony-arm64": "4.60.0", 5716 + "@rollup/rollup-win32-arm64-msvc": "4.60.0", 5717 + "@rollup/rollup-win32-ia32-msvc": "4.60.0", 5718 + "@rollup/rollup-win32-x64-gnu": "4.60.0", 5719 + "@rollup/rollup-win32-x64-msvc": "4.60.0", 5720 + "fsevents": "~2.3.2" 5721 + } 5722 + }, 5723 + "node_modules/sax": { 5724 + "version": "1.6.0", 5725 + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", 5726 + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", 5727 + "license": "BlueOak-1.0.0", 5728 + "engines": { 5729 + "node": ">=11.0.0" 5730 + } 5731 + }, 5732 + "node_modules/semver": { 5733 + "version": "7.7.4", 5734 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", 5735 + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", 5736 + "license": "ISC", 5737 + "bin": { 5738 + "semver": "bin/semver.js" 5739 + }, 5740 + "engines": { 5741 + "node": ">=10" 5742 + } 5743 + }, 5744 + "node_modules/sharp": { 5745 + "version": "0.34.5", 5746 + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", 5747 + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", 5748 + "hasInstallScript": true, 5749 + "license": "Apache-2.0", 5750 + "dependencies": { 5751 + "@img/colour": "^1.0.0", 5752 + "detect-libc": "^2.1.2", 5753 + "semver": "^7.7.3" 5754 + }, 5755 + "engines": { 5756 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 5757 + }, 5758 + "funding": { 5759 + "url": "https://opencollective.com/libvips" 5760 + }, 5761 + "optionalDependencies": { 5762 + "@img/sharp-darwin-arm64": "0.34.5", 5763 + "@img/sharp-darwin-x64": "0.34.5", 5764 + "@img/sharp-libvips-darwin-arm64": "1.2.4", 5765 + "@img/sharp-libvips-darwin-x64": "1.2.4", 5766 + "@img/sharp-libvips-linux-arm": "1.2.4", 5767 + "@img/sharp-libvips-linux-arm64": "1.2.4", 5768 + "@img/sharp-libvips-linux-ppc64": "1.2.4", 5769 + "@img/sharp-libvips-linux-riscv64": "1.2.4", 5770 + "@img/sharp-libvips-linux-s390x": "1.2.4", 5771 + "@img/sharp-libvips-linux-x64": "1.2.4", 5772 + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", 5773 + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", 5774 + "@img/sharp-linux-arm": "0.34.5", 5775 + "@img/sharp-linux-arm64": "0.34.5", 5776 + "@img/sharp-linux-ppc64": "0.34.5", 5777 + "@img/sharp-linux-riscv64": "0.34.5", 5778 + "@img/sharp-linux-s390x": "0.34.5", 5779 + "@img/sharp-linux-x64": "0.34.5", 5780 + "@img/sharp-linuxmusl-arm64": "0.34.5", 5781 + "@img/sharp-linuxmusl-x64": "0.34.5", 5782 + "@img/sharp-wasm32": "0.34.5", 5783 + "@img/sharp-win32-arm64": "0.34.5", 5784 + "@img/sharp-win32-ia32": "0.34.5", 5785 + "@img/sharp-win32-x64": "0.34.5" 5786 + } 5787 + }, 5788 + "node_modules/shiki": { 5789 + "version": "4.0.2", 5790 + "resolved": "https://registry.npmjs.org/shiki/-/shiki-4.0.2.tgz", 5791 + "integrity": "sha512-eAVKTMedR5ckPo4xne/PjYQYrU3qx78gtJZ+sHlXEg5IHhhoQhMfZVzetTYuaJS0L2Ef3AcCRzCHV8T0WI6nIQ==", 5792 + "license": "MIT", 5793 + "dependencies": { 5794 + "@shikijs/core": "4.0.2", 5795 + "@shikijs/engine-javascript": "4.0.2", 5796 + "@shikijs/engine-oniguruma": "4.0.2", 5797 + "@shikijs/langs": "4.0.2", 5798 + "@shikijs/themes": "4.0.2", 5799 + "@shikijs/types": "4.0.2", 5800 + "@shikijs/vscode-textmate": "^10.0.2", 5801 + "@types/hast": "^3.0.4" 5802 + }, 5803 + "engines": { 5804 + "node": ">=20" 5805 + } 5806 + }, 5807 + "node_modules/sisteransi": { 5808 + "version": "1.0.5", 5809 + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 5810 + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 5811 + "license": "MIT" 5812 + }, 5813 + "node_modules/sitemap": { 5814 + "version": "9.0.1", 5815 + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-9.0.1.tgz", 5816 + "integrity": "sha512-S6hzjGJSG3d6if0YoF5kTyeRJvia6FSTBroE5fQ0bu1QNxyJqhhinfUsXi9fH3MgtXODWvwo2BDyQSnhPQ88uQ==", 5817 + "license": "MIT", 5818 + "dependencies": { 5819 + "@types/node": "^24.9.2", 5820 + "@types/sax": "^1.2.1", 5821 + "arg": "^5.0.0", 5822 + "sax": "^1.4.1" 5823 + }, 5824 + "bin": { 5825 + "sitemap": "dist/esm/cli.js" 5826 + }, 5827 + "engines": { 5828 + "node": ">=20.19.5", 5829 + "npm": ">=10.8.2" 5830 + } 5831 + }, 5832 + "node_modules/smol-toml": { 5833 + "version": "1.6.1", 5834 + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.6.1.tgz", 5835 + "integrity": "sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==", 5836 + "license": "BSD-3-Clause", 5837 + "engines": { 5838 + "node": ">= 18" 5839 + }, 5840 + "funding": { 5841 + "url": "https://github.com/sponsors/cyyynthia" 5842 + } 5843 + }, 5844 + "node_modules/source-map": { 5845 + "version": "0.7.6", 5846 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", 5847 + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", 5848 + "license": "BSD-3-Clause", 5849 + "engines": { 5850 + "node": ">= 12" 5851 + } 5852 + }, 5853 + "node_modules/source-map-js": { 5854 + "version": "1.2.1", 5855 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 5856 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 5857 + "license": "BSD-3-Clause", 5858 + "engines": { 5859 + "node": ">=0.10.0" 5860 + } 5861 + }, 5862 + "node_modules/space-separated-tokens": { 5863 + "version": "2.0.2", 5864 + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", 5865 + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", 5866 + "license": "MIT", 5867 + "funding": { 5868 + "type": "github", 5869 + "url": "https://github.com/sponsors/wooorm" 5870 + } 5871 + }, 5872 + "node_modules/stream-replace-string": { 5873 + "version": "2.0.0", 5874 + "resolved": "https://registry.npmjs.org/stream-replace-string/-/stream-replace-string-2.0.0.tgz", 5875 + "integrity": "sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==", 5876 + "license": "MIT" 5877 + }, 5878 + "node_modules/stringify-entities": { 5879 + "version": "4.0.4", 5880 + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", 5881 + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", 5882 + "license": "MIT", 5883 + "dependencies": { 5884 + "character-entities-html4": "^2.0.0", 5885 + "character-entities-legacy": "^3.0.0" 5886 + }, 5887 + "funding": { 5888 + "type": "github", 5889 + "url": "https://github.com/sponsors/wooorm" 5890 + } 5891 + }, 5892 + "node_modules/style-to-js": { 5893 + "version": "1.1.21", 5894 + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", 5895 + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", 5896 + "license": "MIT", 5897 + "dependencies": { 5898 + "style-to-object": "1.0.14" 5899 + } 5900 + }, 5901 + "node_modules/style-to-object": { 5902 + "version": "1.0.14", 5903 + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", 5904 + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", 5905 + "license": "MIT", 5906 + "dependencies": { 5907 + "inline-style-parser": "0.2.7" 5908 + } 5909 + }, 5910 + "node_modules/svgo": { 5911 + "version": "4.0.1", 5912 + "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz", 5913 + "integrity": "sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==", 5914 + "license": "MIT", 5915 + "dependencies": { 5916 + "commander": "^11.1.0", 5917 + "css-select": "^5.1.0", 5918 + "css-tree": "^3.0.1", 5919 + "css-what": "^6.1.0", 5920 + "csso": "^5.0.5", 5921 + "picocolors": "^1.1.1", 5922 + "sax": "^1.5.0" 5923 + }, 5924 + "bin": { 5925 + "svgo": "bin/svgo.js" 5926 + }, 5927 + "engines": { 5928 + "node": ">=16" 5929 + }, 5930 + "funding": { 5931 + "type": "opencollective", 5932 + "url": "https://opencollective.com/svgo" 5933 + } 5934 + }, 5935 + "node_modules/tailwindcss": { 5936 + "version": "4.2.2", 5937 + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz", 5938 + "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==", 5939 + "license": "MIT" 5940 + }, 5941 + "node_modules/tapable": { 5942 + "version": "2.3.2", 5943 + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz", 5944 + "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==", 5945 + "license": "MIT", 5946 + "engines": { 5947 + "node": ">=6" 5948 + }, 5949 + "funding": { 5950 + "type": "opencollective", 5951 + "url": "https://opencollective.com/webpack" 5952 + } 5953 + }, 5954 + "node_modules/tiny-inflate": { 5955 + "version": "1.0.3", 5956 + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", 5957 + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", 5958 + "license": "MIT" 5959 + }, 5960 + "node_modules/tinyclip": { 5961 + "version": "0.1.12", 5962 + "resolved": "https://registry.npmjs.org/tinyclip/-/tinyclip-0.1.12.tgz", 5963 + "integrity": "sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==", 5964 + "license": "MIT", 5965 + "engines": { 5966 + "node": "^16.14.0 || >= 17.3.0" 5967 + } 5968 + }, 5969 + "node_modules/tinyexec": { 5970 + "version": "1.0.4", 5971 + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.4.tgz", 5972 + "integrity": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==", 5973 + "license": "MIT", 5974 + "engines": { 5975 + "node": ">=18" 5976 + } 5977 + }, 5978 + "node_modules/tinyglobby": { 5979 + "version": "0.2.15", 5980 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", 5981 + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", 5982 + "license": "MIT", 5983 + "dependencies": { 5984 + "fdir": "^6.5.0", 5985 + "picomatch": "^4.0.3" 5986 + }, 5987 + "engines": { 5988 + "node": ">=12.0.0" 5989 + }, 5990 + "funding": { 5991 + "url": "https://github.com/sponsors/SuperchupuDev" 5992 + } 5993 + }, 5994 + "node_modules/trim-lines": { 5995 + "version": "3.0.1", 5996 + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", 5997 + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", 5998 + "license": "MIT", 5999 + "funding": { 6000 + "type": "github", 6001 + "url": "https://github.com/sponsors/wooorm" 6002 + } 6003 + }, 6004 + "node_modules/trough": { 6005 + "version": "2.2.0", 6006 + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", 6007 + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", 6008 + "license": "MIT", 6009 + "funding": { 6010 + "type": "github", 6011 + "url": "https://github.com/sponsors/wooorm" 6012 + } 6013 + }, 6014 + "node_modules/tsconfck": { 6015 + "version": "3.1.6", 6016 + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", 6017 + "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", 6018 + "license": "MIT", 6019 + "bin": { 6020 + "tsconfck": "bin/tsconfck.js" 6021 + }, 6022 + "engines": { 6023 + "node": "^18 || >=20" 6024 + }, 6025 + "peerDependencies": { 6026 + "typescript": "^5.0.0" 6027 + }, 6028 + "peerDependenciesMeta": { 6029 + "typescript": { 6030 + "optional": true 6031 + } 6032 + } 6033 + }, 6034 + "node_modules/tslib": { 6035 + "version": "2.8.1", 6036 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 6037 + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 6038 + "license": "0BSD", 6039 + "optional": true 6040 + }, 6041 + "node_modules/ufo": { 6042 + "version": "1.6.3", 6043 + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.3.tgz", 6044 + "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==", 6045 + "license": "MIT" 6046 + }, 6047 + "node_modules/ultrahtml": { 6048 + "version": "1.6.0", 6049 + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz", 6050 + "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==", 6051 + "license": "MIT" 6052 + }, 6053 + "node_modules/uncrypto": { 6054 + "version": "0.1.3", 6055 + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", 6056 + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", 6057 + "license": "MIT" 6058 + }, 6059 + "node_modules/undici-types": { 6060 + "version": "7.16.0", 6061 + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", 6062 + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", 6063 + "license": "MIT" 6064 + }, 6065 + "node_modules/unified": { 6066 + "version": "11.0.5", 6067 + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", 6068 + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", 6069 + "license": "MIT", 6070 + "dependencies": { 6071 + "@types/unist": "^3.0.0", 6072 + "bail": "^2.0.0", 6073 + "devlop": "^1.0.0", 6074 + "extend": "^3.0.0", 6075 + "is-plain-obj": "^4.0.0", 6076 + "trough": "^2.0.0", 6077 + "vfile": "^6.0.0" 6078 + }, 6079 + "funding": { 6080 + "type": "opencollective", 6081 + "url": "https://opencollective.com/unified" 6082 + } 6083 + }, 6084 + "node_modules/unifont": { 6085 + "version": "0.7.4", 6086 + "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.7.4.tgz", 6087 + "integrity": "sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==", 6088 + "license": "MIT", 6089 + "dependencies": { 6090 + "css-tree": "^3.1.0", 6091 + "ofetch": "^1.5.1", 6092 + "ohash": "^2.0.11" 6093 + } 6094 + }, 6095 + "node_modules/unist-util-find-after": { 6096 + "version": "5.0.0", 6097 + "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", 6098 + "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", 6099 + "license": "MIT", 6100 + "dependencies": { 6101 + "@types/unist": "^3.0.0", 6102 + "unist-util-is": "^6.0.0" 6103 + }, 6104 + "funding": { 6105 + "type": "opencollective", 6106 + "url": "https://opencollective.com/unified" 6107 + } 6108 + }, 6109 + "node_modules/unist-util-is": { 6110 + "version": "6.0.1", 6111 + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", 6112 + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", 6113 + "license": "MIT", 6114 + "dependencies": { 6115 + "@types/unist": "^3.0.0" 6116 + }, 6117 + "funding": { 6118 + "type": "opencollective", 6119 + "url": "https://opencollective.com/unified" 6120 + } 6121 + }, 6122 + "node_modules/unist-util-modify-children": { 6123 + "version": "4.0.0", 6124 + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz", 6125 + "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==", 6126 + "license": "MIT", 6127 + "dependencies": { 6128 + "@types/unist": "^3.0.0", 6129 + "array-iterate": "^2.0.0" 6130 + }, 6131 + "funding": { 6132 + "type": "opencollective", 6133 + "url": "https://opencollective.com/unified" 6134 + } 6135 + }, 6136 + "node_modules/unist-util-position": { 6137 + "version": "5.0.0", 6138 + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", 6139 + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", 6140 + "license": "MIT", 6141 + "dependencies": { 6142 + "@types/unist": "^3.0.0" 6143 + }, 6144 + "funding": { 6145 + "type": "opencollective", 6146 + "url": "https://opencollective.com/unified" 6147 + } 6148 + }, 6149 + "node_modules/unist-util-position-from-estree": { 6150 + "version": "2.0.0", 6151 + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", 6152 + "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", 6153 + "license": "MIT", 6154 + "dependencies": { 6155 + "@types/unist": "^3.0.0" 6156 + }, 6157 + "funding": { 6158 + "type": "opencollective", 6159 + "url": "https://opencollective.com/unified" 6160 + } 6161 + }, 6162 + "node_modules/unist-util-remove-position": { 6163 + "version": "5.0.0", 6164 + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", 6165 + "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", 6166 + "license": "MIT", 6167 + "dependencies": { 6168 + "@types/unist": "^3.0.0", 6169 + "unist-util-visit": "^5.0.0" 6170 + }, 6171 + "funding": { 6172 + "type": "opencollective", 6173 + "url": "https://opencollective.com/unified" 6174 + } 6175 + }, 6176 + "node_modules/unist-util-stringify-position": { 6177 + "version": "4.0.0", 6178 + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", 6179 + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", 6180 + "license": "MIT", 6181 + "dependencies": { 6182 + "@types/unist": "^3.0.0" 6183 + }, 6184 + "funding": { 6185 + "type": "opencollective", 6186 + "url": "https://opencollective.com/unified" 6187 + } 6188 + }, 6189 + "node_modules/unist-util-visit": { 6190 + "version": "5.1.0", 6191 + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", 6192 + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", 6193 + "license": "MIT", 6194 + "dependencies": { 6195 + "@types/unist": "^3.0.0", 6196 + "unist-util-is": "^6.0.0", 6197 + "unist-util-visit-parents": "^6.0.0" 6198 + }, 6199 + "funding": { 6200 + "type": "opencollective", 6201 + "url": "https://opencollective.com/unified" 6202 + } 6203 + }, 6204 + "node_modules/unist-util-visit-children": { 6205 + "version": "3.0.0", 6206 + "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz", 6207 + "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==", 6208 + "license": "MIT", 6209 + "dependencies": { 6210 + "@types/unist": "^3.0.0" 6211 + }, 6212 + "funding": { 6213 + "type": "opencollective", 6214 + "url": "https://opencollective.com/unified" 6215 + } 6216 + }, 6217 + "node_modules/unist-util-visit-parents": { 6218 + "version": "6.0.2", 6219 + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", 6220 + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", 6221 + "license": "MIT", 6222 + "dependencies": { 6223 + "@types/unist": "^3.0.0", 6224 + "unist-util-is": "^6.0.0" 6225 + }, 6226 + "funding": { 6227 + "type": "opencollective", 6228 + "url": "https://opencollective.com/unified" 6229 + } 6230 + }, 6231 + "node_modules/unstorage": { 6232 + "version": "1.17.4", 6233 + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.4.tgz", 6234 + "integrity": "sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==", 6235 + "license": "MIT", 6236 + "dependencies": { 6237 + "anymatch": "^3.1.3", 6238 + "chokidar": "^5.0.0", 6239 + "destr": "^2.0.5", 6240 + "h3": "^1.15.5", 6241 + "lru-cache": "^11.2.0", 6242 + "node-fetch-native": "^1.6.7", 6243 + "ofetch": "^1.5.1", 6244 + "ufo": "^1.6.3" 6245 + }, 6246 + "peerDependencies": { 6247 + "@azure/app-configuration": "^1.8.0", 6248 + "@azure/cosmos": "^4.2.0", 6249 + "@azure/data-tables": "^13.3.0", 6250 + "@azure/identity": "^4.6.0", 6251 + "@azure/keyvault-secrets": "^4.9.0", 6252 + "@azure/storage-blob": "^12.26.0", 6253 + "@capacitor/preferences": "^6 || ^7 || ^8", 6254 + "@deno/kv": ">=0.9.0", 6255 + "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0", 6256 + "@planetscale/database": "^1.19.0", 6257 + "@upstash/redis": "^1.34.3", 6258 + "@vercel/blob": ">=0.27.1", 6259 + "@vercel/functions": "^2.2.12 || ^3.0.0", 6260 + "@vercel/kv": "^1 || ^2 || ^3", 6261 + "aws4fetch": "^1.0.20", 6262 + "db0": ">=0.2.1", 6263 + "idb-keyval": "^6.2.1", 6264 + "ioredis": "^5.4.2", 6265 + "uploadthing": "^7.4.4" 6266 + }, 6267 + "peerDependenciesMeta": { 6268 + "@azure/app-configuration": { 6269 + "optional": true 6270 + }, 6271 + "@azure/cosmos": { 6272 + "optional": true 6273 + }, 6274 + "@azure/data-tables": { 6275 + "optional": true 6276 + }, 6277 + "@azure/identity": { 6278 + "optional": true 6279 + }, 6280 + "@azure/keyvault-secrets": { 6281 + "optional": true 6282 + }, 6283 + "@azure/storage-blob": { 6284 + "optional": true 6285 + }, 6286 + "@capacitor/preferences": { 6287 + "optional": true 6288 + }, 6289 + "@deno/kv": { 6290 + "optional": true 6291 + }, 6292 + "@netlify/blobs": { 6293 + "optional": true 6294 + }, 6295 + "@planetscale/database": { 6296 + "optional": true 6297 + }, 6298 + "@upstash/redis": { 6299 + "optional": true 6300 + }, 6301 + "@vercel/blob": { 6302 + "optional": true 6303 + }, 6304 + "@vercel/functions": { 6305 + "optional": true 6306 + }, 6307 + "@vercel/kv": { 6308 + "optional": true 6309 + }, 6310 + "aws4fetch": { 6311 + "optional": true 6312 + }, 6313 + "db0": { 6314 + "optional": true 6315 + }, 6316 + "idb-keyval": { 6317 + "optional": true 6318 + }, 6319 + "ioredis": { 6320 + "optional": true 6321 + }, 6322 + "uploadthing": { 6323 + "optional": true 6324 + } 6325 + } 6326 + }, 6327 + "node_modules/vfile": { 6328 + "version": "6.0.3", 6329 + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", 6330 + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", 6331 + "license": "MIT", 6332 + "dependencies": { 6333 + "@types/unist": "^3.0.0", 6334 + "vfile-message": "^4.0.0" 6335 + }, 6336 + "funding": { 6337 + "type": "opencollective", 6338 + "url": "https://opencollective.com/unified" 6339 + } 6340 + }, 6341 + "node_modules/vfile-location": { 6342 + "version": "5.0.3", 6343 + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", 6344 + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", 6345 + "license": "MIT", 6346 + "dependencies": { 6347 + "@types/unist": "^3.0.0", 6348 + "vfile": "^6.0.0" 6349 + }, 6350 + "funding": { 6351 + "type": "opencollective", 6352 + "url": "https://opencollective.com/unified" 6353 + } 6354 + }, 6355 + "node_modules/vfile-message": { 6356 + "version": "4.0.3", 6357 + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", 6358 + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", 6359 + "license": "MIT", 6360 + "dependencies": { 6361 + "@types/unist": "^3.0.0", 6362 + "unist-util-stringify-position": "^4.0.0" 6363 + }, 6364 + "funding": { 6365 + "type": "opencollective", 6366 + "url": "https://opencollective.com/unified" 6367 + } 6368 + }, 6369 + "node_modules/vite": { 6370 + "version": "8.0.3", 6371 + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.3.tgz", 6372 + "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==", 6373 + "license": "MIT", 6374 + "peer": true, 6375 + "dependencies": { 6376 + "lightningcss": "^1.32.0", 6377 + "picomatch": "^4.0.4", 6378 + "postcss": "^8.5.8", 6379 + "rolldown": "1.0.0-rc.12", 6380 + "tinyglobby": "^0.2.15" 6381 + }, 6382 + "bin": { 6383 + "vite": "bin/vite.js" 6384 + }, 6385 + "engines": { 6386 + "node": "^20.19.0 || >=22.12.0" 6387 + }, 6388 + "funding": { 6389 + "url": "https://github.com/vitejs/vite?sponsor=1" 6390 + }, 6391 + "optionalDependencies": { 6392 + "fsevents": "~2.3.3" 6393 + }, 6394 + "peerDependencies": { 6395 + "@types/node": "^20.19.0 || >=22.12.0", 6396 + "@vitejs/devtools": "^0.1.0", 6397 + "esbuild": "^0.27.0", 6398 + "jiti": ">=1.21.0", 6399 + "less": "^4.0.0", 6400 + "sass": "^1.70.0", 6401 + "sass-embedded": "^1.70.0", 6402 + "stylus": ">=0.54.8", 6403 + "sugarss": "^5.0.0", 6404 + "terser": "^5.16.0", 6405 + "tsx": "^4.8.1", 6406 + "yaml": "^2.4.2" 6407 + }, 6408 + "peerDependenciesMeta": { 6409 + "@types/node": { 6410 + "optional": true 6411 + }, 6412 + "@vitejs/devtools": { 6413 + "optional": true 6414 + }, 6415 + "esbuild": { 6416 + "optional": true 6417 + }, 6418 + "jiti": { 6419 + "optional": true 6420 + }, 6421 + "less": { 6422 + "optional": true 6423 + }, 6424 + "sass": { 6425 + "optional": true 6426 + }, 6427 + "sass-embedded": { 6428 + "optional": true 6429 + }, 6430 + "stylus": { 6431 + "optional": true 6432 + }, 6433 + "sugarss": { 6434 + "optional": true 6435 + }, 6436 + "terser": { 6437 + "optional": true 6438 + }, 6439 + "tsx": { 6440 + "optional": true 6441 + }, 6442 + "yaml": { 6443 + "optional": true 6444 + } 6445 + } 6446 + }, 6447 + "node_modules/vitefu": { 6448 + "version": "1.1.2", 6449 + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.2.tgz", 6450 + "integrity": "sha512-zpKATdUbzbsycPFBN71nS2uzBUQiVnFoOrr2rvqv34S1lcAgMKKkjWleLGeiJlZ8lwCXvtWaRn7R3ZC16SYRuw==", 6451 + "license": "MIT", 6452 + "workspaces": [ 6453 + "tests/deps/*", 6454 + "tests/projects/*", 6455 + "tests/projects/workspace/packages/*" 6456 + ], 6457 + "peerDependencies": { 6458 + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta.0" 6459 + }, 6460 + "peerDependenciesMeta": { 6461 + "vite": { 6462 + "optional": true 6463 + } 6464 + } 6465 + }, 6466 + "node_modules/web-namespaces": { 6467 + "version": "2.0.1", 6468 + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", 6469 + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", 6470 + "license": "MIT", 6471 + "funding": { 6472 + "type": "github", 6473 + "url": "https://github.com/sponsors/wooorm" 6474 + } 6475 + }, 6476 + "node_modules/which-pm-runs": { 6477 + "version": "1.1.0", 6478 + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", 6479 + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", 6480 + "license": "MIT", 6481 + "engines": { 6482 + "node": ">=4" 6483 + } 6484 + }, 6485 + "node_modules/xxhash-wasm": { 6486 + "version": "1.1.0", 6487 + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz", 6488 + "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==", 6489 + "license": "MIT" 6490 + }, 6491 + "node_modules/yargs-parser": { 6492 + "version": "22.0.0", 6493 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz", 6494 + "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==", 6495 + "license": "ISC", 6496 + "engines": { 6497 + "node": "^20.19.0 || ^22.12.0 || >=23" 6498 + } 6499 + }, 6500 + "node_modules/yocto-queue": { 6501 + "version": "1.2.2", 6502 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", 6503 + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", 6504 + "license": "MIT", 6505 + "engines": { 6506 + "node": ">=12.20" 6507 + }, 6508 + "funding": { 6509 + "url": "https://github.com/sponsors/sindresorhus" 6510 + } 6511 + }, 6512 + "node_modules/zod": { 6513 + "version": "4.3.6", 6514 + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", 6515 + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", 6516 + "license": "MIT", 6517 + "funding": { 6518 + "url": "https://github.com/sponsors/colinhacks" 6519 + } 6520 + }, 6521 + "node_modules/zwitch": { 6522 + "version": "2.0.4", 6523 + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", 6524 + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", 6525 + "license": "MIT", 6526 + "funding": { 6527 + "type": "github", 6528 + "url": "https://github.com/sponsors/wooorm" 6529 + } 6530 + } 6531 + } 6532 + }
+22
package.json
··· 1 + { 2 + "name": "", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "engines": { 6 + "node": ">=22.12.0" 7 + }, 8 + "scripts": { 9 + "dev": "astro dev", 10 + "build": "astro build", 11 + "preview": "astro preview", 12 + "astro": "astro" 13 + }, 14 + "dependencies": { 15 + "@astrojs/mdx": "^5.0.3", 16 + "@astrojs/sitemap": "^3.7.2", 17 + "@tailwindcss/vite": "^4.2.2", 18 + "astro": "^6.1.0", 19 + "sharp": "^0.34.3", 20 + "tailwindcss": "^4.2.2" 21 + } 22 + }
public/favicon.ico

This is a binary file and will not be displayed.

+9
public/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"> 2 + <path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" /> 3 + <style> 4 + path { fill: #000; } 5 + @media (prefers-color-scheme: dark) { 6 + path { fill: #FFF; } 7 + } 8 + </style> 9 + </svg>
public/fonts/atkinson-bold.woff

This is a binary file and will not be displayed.

public/fonts/atkinson-regular.woff

This is a binary file and will not be displayed.

+7
public/menu-icon.svg
··· 1 + <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --> 2 + <?xml version="1.0" encoding="utf-8"?> 3 + <svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> 4 + <path d="M4 18L20 18" stroke="#000000" stroke-width="2" stroke-linecap="round"/> 5 + <path d="M4 12L20 12" stroke="#000000" stroke-width="2" stroke-linecap="round"/> 6 + <path d="M4 6L20 6" stroke="#000000" stroke-width="2" stroke-linecap="round"/> 7 + </svg>
src/assets/pfp.avif

This is a binary file and will not be displayed.

+3
src/components/footer.astro
··· 1 + <footer class="text-center mt-5"> 2 + <p>Voxi0</p> 3 + </footer>
+43
src/components/head.astro
··· 1 + --- 2 + import "../styles/global.css"; 3 + 4 + const canonicalURL = new URL(Astro.url.pathname, Astro.site); 5 + 6 + // Component tag parameters 7 + const {title, desc} = Astro.props; 8 + interface Props { 9 + title: string; 10 + desc: string; 11 + } 12 + --- 13 + <!-- Global metadata --> 14 + <meta charset="utf-8"/> 15 + <meta name="generator" content={Astro.generator}/> 16 + <meta name="viewport" content="width=device-width,initial-scale=1"/> 17 + <link rel="sitemap" href="/sitemap-index.xml"/> 18 + <link rel="icon" type="image/svg+xml" href="/favicon.svg"/> 19 + <link rel="icon" href="/favicon.ico"/> 20 + 21 + <!-- Font preloads --> 22 + <link rel="preload" href="/fonts/atkinson-regular.woff" as="font" type="font/woff" crossorigin/> 23 + <link rel="preload" href="/fonts/atkinson-bold.woff" as="font" type="font/woff" crossorigin/> 24 + 25 + <!-- Canonical URL --> 26 + <link rel="canonical" href={canonicalURL}/> 27 + 28 + <!-- Primary meta tags --> 29 + <title>{title}</title> 30 + <meta name="title" content={title}/> 31 + <meta name="description" content={desc}/> 32 + 33 + <!-- Open Graph / Facebook --> 34 + <meta property="og:type" content="website"/> 35 + <meta property="og:url" content={Astro.url}/> 36 + <meta property="og:title" content={title}/> 37 + <meta property="og:description" content={desc}/> 38 + 39 + <!-- Twitter --> 40 + <meta property="twitter:card" content="summary_large_image"/> 41 + <meta property="twitter:url" content={Astro.url}/> 42 + <meta property="twitter:title" content={title}/> 43 + <meta property="twitter:description" content={desc}/>
+31
src/components/header.astro
··· 1 + --- 2 + import {Image} from "astro:assets"; 3 + import pfp from "../assets/pfp.avif"; 4 + import MenuIcon from "../../public/menu-icon.svg"; 5 + --- 6 + <header class="sm:mt-4 flex justify-around items-center"> 7 + <nav> 8 + <details class="relative hover:cursor-pointer"> 9 + <summary class="list-none"> 10 + <MenuIcon width={16} height={16} fill="currentColor" class="text-text"/> 11 + </summary> 12 + <div class="absolute mt-2 left-[50%] transform-[translateX(-50%)]"> 13 + <button><a href="/">Home</a></button> 14 + </div> 15 + </details> 16 + </nav> 17 + 18 + <div class="flex items-center gap-2"> 19 + <Image 20 + src={pfp} 21 + alt="My profile" 22 + loading="eager" 23 + width=64 24 + class="rounded-full" 25 + /> 26 + <div class="flex flex-col text-center"> 27 + <h2 class="font-bold">Voxi0</h2> 28 + <p>he/him</p> 29 + </div> 30 + </div> 31 + </header>
+2
src/consts.ts
··· 1 + export const SITE_TITLE = "Voxi0"; 2 + export const SITE_DESCRIPTION = "my personal website";
+22
src/layouts/default.astro
··· 1 + --- 2 + import Head from "../components/head.astro"; 3 + import Header from "../components/header.astro"; 4 + import Footer from "../components/footer.astro"; 5 + 6 + const {title, desc} = Astro.props; 7 + interface Props { 8 + title: string, 9 + desc: string, 10 + }; 11 + --- 12 + <!DOCTYPE html> 13 + <html lang="en"> 14 + <head> 15 + <Head title={title} description={desc}/> 16 + </head> 17 + <body class="bg-black text-text"> 18 + <Header/> 19 + <slot/> 20 + <Footer/> 21 + </body> 22 + </html>
+8
src/pages/index.astro
··· 1 + --- 2 + import Default from "../layouts/default.astro"; 3 + import {SITE_TITLE, SITE_DESCRIPTION} from "../consts"; 4 + --- 5 + <Default title={SITE_TITLE} desc={SITE_DESCRIPTION}> 6 + <main> 7 + </main> 8 + </Default>
+15
src/styles/global.css
··· 1 + @import "tailwindcss"; 2 + 3 + @theme { 4 + --color-*: initial; 5 + --color-black: #000; 6 + --color-text: #fff; 7 + } 8 + 9 + @layer components { 10 + button { 11 + @apply px-2; 12 + @apply border border-solid rounded-sm; 13 + @apply hover:bg-text hover:text-black; 14 + } 15 + }
+8
tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strict", 3 + "include": [".astro/types.d.ts", "**/*"], 4 + "exclude": ["dist"], 5 + "compilerOptions": { 6 + "strictNullChecks": true 7 + } 8 + }