My personal site hosted @ https://indexx.dev

Initial commit from Astro

houston[bot] e24aa049

+24
.gitignore
···
+
# build output
+
dist/
+
+
# generated types
+
.astro/
+
+
# dependencies
+
node_modules/
+
+
# logs
+
npm-debug.log*
+
yarn-debug.log*
+
yarn-error.log*
+
pnpm-debug.log*
+
+
# environment variables
+
.env
+
.env.production
+
+
# macOS-specific files
+
.DS_Store
+
+
# jetbrains setting folder
+
.idea/
+4
.vscode/extensions.json
···
+
{
+
"recommendations": ["astro-build.astro-vscode"],
+
"unwantedRecommendations": []
+
}
+11
.vscode/launch.json
···
+
{
+
"version": "0.2.0",
+
"configurations": [
+
{
+
"command": "./node_modules/.bin/astro dev",
+
"name": "Development server",
+
"request": "launch",
+
"type": "node-terminal"
+
}
+
]
+
}
+48
README.md
···
+
# Astro Starter Kit: Basics
+
+
```sh
+
npm create astro@latest -- --template basics
+
```
+
+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
+
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
+
+
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
+
+
![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554)
+
+
## 🚀 Project Structure
+
+
Inside of your Astro project, you'll see the following folders and files:
+
+
```text
+
/
+
├── public/
+
│ └── favicon.svg
+
├── src/
+
│ ├── layouts/
+
│ │ └── Layout.astro
+
│ └── pages/
+
│ └── index.astro
+
└── package.json
+
```
+
+
To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
+
+
## 🧞 Commands
+
+
All commands are run from the root of the project, from a terminal:
+
+
| Command | Action |
+
| :------------------------ | :----------------------------------------------- |
+
| `npm install` | Installs dependencies |
+
| `npm run dev` | Starts local dev server at `localhost:4321` |
+
| `npm run build` | Build your production site to `./dist/` |
+
| `npm run preview` | Preview your build locally, before deploying |
+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
+
| `npm run astro -- --help` | Get help using the Astro CLI |
+
+
## 👀 Want to learn more?
+
+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
+5
astro.config.mjs
···
+
// @ts-check
+
import { defineConfig } from 'astro/config';
+
+
// https://astro.build/config
+
export default defineConfig({});
+4473
package-lock.json
···
+
{
+
"name": "static",
+
"version": "0.0.1",
+
"lockfileVersion": 3,
+
"requires": true,
+
"packages": {
+
"": {
+
"name": "static",
+
"version": "0.0.1",
+
"dependencies": {
+
"astro": "^5.7.11"
+
}
+
},
+
"node_modules/@astrojs/compiler": {
+
"version": "2.12.0",
+
"resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.12.0.tgz",
+
"integrity": "sha512-7bCjW6tVDpUurQLeKBUN9tZ5kSv5qYrGmcn0sG0IwacL7isR2ZbyyA3AdZ4uxsuUFOS2SlgReTH7wkxO6zpqWA=="
+
},
+
"node_modules/@astrojs/internal-helpers": {
+
"version": "0.6.1",
+
"resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.6.1.tgz",
+
"integrity": "sha512-l5Pqf6uZu31aG+3Lv8nl/3s4DbUzdlxTWDof4pEpto6GUJNhhCbelVi9dEyurOVyqaelwmS9oSyOWOENSfgo9A=="
+
},
+
"node_modules/@astrojs/markdown-remark": {
+
"version": "6.3.1",
+
"resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.1.tgz",
+
"integrity": "sha512-c5F5gGrkczUaTVgmMW9g1YMJGzOtRvjjhw6IfGuxarM6ct09MpwysP10US729dy07gg8y+ofVifezvP3BNsWZg==",
+
"dependencies": {
+
"@astrojs/internal-helpers": "0.6.1",
+
"@astrojs/prism": "3.2.0",
+
"github-slugger": "^2.0.0",
+
"hast-util-from-html": "^2.0.3",
+
"hast-util-to-text": "^4.0.2",
+
"import-meta-resolve": "^4.1.0",
+
"js-yaml": "^4.1.0",
+
"mdast-util-definitions": "^6.0.0",
+
"rehype-raw": "^7.0.0",
+
"rehype-stringify": "^10.0.1",
+
"remark-gfm": "^4.0.1",
+
"remark-parse": "^11.0.0",
+
"remark-rehype": "^11.1.1",
+
"remark-smartypants": "^3.0.2",
+
"shiki": "^3.0.0",
+
"smol-toml": "^1.3.1",
+
"unified": "^11.0.5",
+
"unist-util-remove-position": "^5.0.0",
+
"unist-util-visit": "^5.0.0",
+
"unist-util-visit-parents": "^6.0.1",
+
"vfile": "^6.0.3"
+
}
+
},
+
"node_modules/@astrojs/prism": {
+
"version": "3.2.0",
+
"resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
+
"integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
+
"dependencies": {
+
"prismjs": "^1.29.0"
+
},
+
"engines": {
+
"node": "^18.17.1 || ^20.3.0 || >=22.0.0"
+
}
+
},
+
"node_modules/@astrojs/telemetry": {
+
"version": "3.2.1",
+
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.1.tgz",
+
"integrity": "sha512-SSVM820Jqc6wjsn7qYfV9qfeQvePtVc1nSofhyap7l0/iakUKywj3hfy3UJAOV4sGV4Q/u450RD4AaCaFvNPlg==",
+
"dependencies": {
+
"ci-info": "^4.2.0",
+
"debug": "^4.4.0",
+
"dlv": "^1.1.3",
+
"dset": "^3.1.4",
+
"is-docker": "^3.0.0",
+
"is-wsl": "^3.1.0",
+
"which-pm-runs": "^1.1.0"
+
},
+
"engines": {
+
"node": "^18.17.1 || ^20.3.0 || >=22.0.0"
+
}
+
},
+
"node_modules/@babel/helper-string-parser": {
+
"version": "7.27.1",
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+
"engines": {
+
"node": ">=6.9.0"
+
}
+
},
+
"node_modules/@babel/helper-validator-identifier": {
+
"version": "7.27.1",
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
+
"engines": {
+
"node": ">=6.9.0"
+
}
+
},
+
"node_modules/@babel/parser": {
+
"version": "7.27.2",
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.2.tgz",
+
"integrity": "sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==",
+
"dependencies": {
+
"@babel/types": "^7.27.1"
+
},
+
"bin": {
+
"parser": "bin/babel-parser.js"
+
},
+
"engines": {
+
"node": ">=6.0.0"
+
}
+
},
+
"node_modules/@babel/types": {
+
"version": "7.27.1",
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz",
+
"integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==",
+
"dependencies": {
+
"@babel/helper-string-parser": "^7.27.1",
+
"@babel/helper-validator-identifier": "^7.27.1"
+
},
+
"engines": {
+
"node": ">=6.9.0"
+
}
+
},
+
"node_modules/@capsizecss/unpack": {
+
"version": "2.4.0",
+
"resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-2.4.0.tgz",
+
"integrity": "sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==",
+
"dependencies": {
+
"blob-to-buffer": "^1.2.8",
+
"cross-fetch": "^3.0.4",
+
"fontkit": "^2.0.2"
+
}
+
},
+
"node_modules/@emnapi/runtime": {
+
"version": "1.4.3",
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz",
+
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
+
"optional": true,
+
"dependencies": {
+
"tslib": "^2.4.0"
+
}
+
},
+
"node_modules/@esbuild/aix-ppc64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz",
+
"integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==",
+
"cpu": [
+
"ppc64"
+
],
+
"optional": true,
+
"os": [
+
"aix"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/android-arm": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.4.tgz",
+
"integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"android"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/android-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz",
+
"integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"android"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/android-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.4.tgz",
+
"integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"android"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/darwin-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz",
+
"integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/darwin-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz",
+
"integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/freebsd-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz",
+
"integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"freebsd"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/freebsd-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz",
+
"integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"freebsd"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-arm": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz",
+
"integrity": "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz",
+
"integrity": "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-ia32": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz",
+
"integrity": "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==",
+
"cpu": [
+
"ia32"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-loong64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz",
+
"integrity": "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==",
+
"cpu": [
+
"loong64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-mips64el": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz",
+
"integrity": "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==",
+
"cpu": [
+
"mips64el"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-ppc64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz",
+
"integrity": "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==",
+
"cpu": [
+
"ppc64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-riscv64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz",
+
"integrity": "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==",
+
"cpu": [
+
"riscv64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-s390x": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz",
+
"integrity": "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==",
+
"cpu": [
+
"s390x"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/linux-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz",
+
"integrity": "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/netbsd-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz",
+
"integrity": "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"netbsd"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/netbsd-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz",
+
"integrity": "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"netbsd"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/openbsd-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz",
+
"integrity": "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"openbsd"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/openbsd-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz",
+
"integrity": "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"openbsd"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/sunos-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz",
+
"integrity": "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"sunos"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/win32-arm64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz",
+
"integrity": "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/win32-ia32": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz",
+
"integrity": "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==",
+
"cpu": [
+
"ia32"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@esbuild/win32-x64": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz",
+
"integrity": "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
],
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/@img/sharp-darwin-arm64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
+
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-darwin-arm64": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-darwin-x64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
+
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-darwin-x64": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
+
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-darwin-x64": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
+
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-linux-arm": {
+
"version": "1.0.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
+
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-linux-arm64": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
+
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-linux-s390x": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
+
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
+
"cpu": [
+
"s390x"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-linux-x64": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
+
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
+
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
+
"version": "1.0.4",
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
+
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-linux-arm": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
+
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-linux-arm": "1.0.5"
+
}
+
},
+
"node_modules/@img/sharp-linux-arm64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
+
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-linux-arm64": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-linux-s390x": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
+
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
+
"cpu": [
+
"s390x"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-linux-s390x": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-linux-x64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
+
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-linux-x64": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-linuxmusl-arm64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
+
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-linuxmusl-x64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
+
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.4"
+
}
+
},
+
"node_modules/@img/sharp-wasm32": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
+
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
+
"cpu": [
+
"wasm32"
+
],
+
"optional": true,
+
"dependencies": {
+
"@emnapi/runtime": "^1.2.0"
+
},
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-win32-ia32": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
+
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
+
"cpu": [
+
"ia32"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@img/sharp-win32-x64": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
+
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
],
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
}
+
},
+
"node_modules/@jridgewell/sourcemap-codec": {
+
"version": "1.5.0",
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
+
},
+
"node_modules/@oslojs/encoding": {
+
"version": "1.1.0",
+
"resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz",
+
"integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ=="
+
},
+
"node_modules/@rollup/pluginutils": {
+
"version": "5.1.4",
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
+
"integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
+
"dependencies": {
+
"@types/estree": "^1.0.0",
+
"estree-walker": "^2.0.2",
+
"picomatch": "^4.0.2"
+
},
+
"engines": {
+
"node": ">=14.0.0"
+
},
+
"peerDependencies": {
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+
},
+
"peerDependenciesMeta": {
+
"rollup": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/@rollup/pluginutils/node_modules/estree-walker": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
+
},
+
"node_modules/@rollup/rollup-android-arm-eabi": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.2.tgz",
+
"integrity": "sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"android"
+
]
+
},
+
"node_modules/@rollup/rollup-android-arm64": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.2.tgz",
+
"integrity": "sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"android"
+
]
+
},
+
"node_modules/@rollup/rollup-darwin-arm64": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.2.tgz",
+
"integrity": "sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
]
+
},
+
"node_modules/@rollup/rollup-darwin-x64": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.2.tgz",
+
"integrity": "sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"darwin"
+
]
+
},
+
"node_modules/@rollup/rollup-freebsd-arm64": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.2.tgz",
+
"integrity": "sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"freebsd"
+
]
+
},
+
"node_modules/@rollup/rollup-freebsd-x64": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.2.tgz",
+
"integrity": "sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"freebsd"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.2.tgz",
+
"integrity": "sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.2.tgz",
+
"integrity": "sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==",
+
"cpu": [
+
"arm"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.2.tgz",
+
"integrity": "sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.2.tgz",
+
"integrity": "sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.2.tgz",
+
"integrity": "sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==",
+
"cpu": [
+
"loong64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.2.tgz",
+
"integrity": "sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==",
+
"cpu": [
+
"ppc64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.2.tgz",
+
"integrity": "sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==",
+
"cpu": [
+
"riscv64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.2.tgz",
+
"integrity": "sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==",
+
"cpu": [
+
"riscv64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.2.tgz",
+
"integrity": "sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==",
+
"cpu": [
+
"s390x"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.2.tgz",
+
"integrity": "sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-linux-x64-musl": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.2.tgz",
+
"integrity": "sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"linux"
+
]
+
},
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.2.tgz",
+
"integrity": "sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==",
+
"cpu": [
+
"arm64"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
]
+
},
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.2.tgz",
+
"integrity": "sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==",
+
"cpu": [
+
"ia32"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
]
+
},
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.2.tgz",
+
"integrity": "sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==",
+
"cpu": [
+
"x64"
+
],
+
"optional": true,
+
"os": [
+
"win32"
+
]
+
},
+
"node_modules/@shikijs/core": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.4.0.tgz",
+
"integrity": "sha512-0YOzTSRDn/IAfQWtK791gs1u8v87HNGToU6IwcA3K7nPoVOrS2Dh6X6A6YfXgPTSkTwR5y6myk0MnI0htjnwrA==",
+
"dependencies": {
+
"@shikijs/types": "3.4.0",
+
"@shikijs/vscode-textmate": "^10.0.2",
+
"@types/hast": "^3.0.4",
+
"hast-util-to-html": "^9.0.5"
+
}
+
},
+
"node_modules/@shikijs/engine-javascript": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.4.0.tgz",
+
"integrity": "sha512-1ywDoe+z/TPQKj9Jw0eU61B003J9DqUFRfH+DVSzdwPUFhR7yOmfyLzUrFz0yw8JxFg/NgzXoQyyykXgO21n5Q==",
+
"dependencies": {
+
"@shikijs/types": "3.4.0",
+
"@shikijs/vscode-textmate": "^10.0.2",
+
"oniguruma-to-es": "^4.3.3"
+
}
+
},
+
"node_modules/@shikijs/engine-oniguruma": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.4.0.tgz",
+
"integrity": "sha512-zwcWlZ4OQuJ/+1t32ClTtyTU1AiDkK1lhtviRWoq/hFqPjCNyLj22bIg9rB7BfoZKOEOfrsGz7No33BPCf+WlQ==",
+
"dependencies": {
+
"@shikijs/types": "3.4.0",
+
"@shikijs/vscode-textmate": "^10.0.2"
+
}
+
},
+
"node_modules/@shikijs/langs": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.4.0.tgz",
+
"integrity": "sha512-bQkR+8LllaM2duU9BBRQU0GqFTx7TuF5kKlw/7uiGKoK140n1xlLAwCgXwSxAjJ7Htk9tXTFwnnsJTCU5nDPXQ==",
+
"dependencies": {
+
"@shikijs/types": "3.4.0"
+
}
+
},
+
"node_modules/@shikijs/themes": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.4.0.tgz",
+
"integrity": "sha512-YPP4PKNFcFGLxItpbU0ZW1Osyuk8AyZ24YEFaq04CFsuCbcqydMvMUTi40V2dkc0qs1U2uZFrnU6s5zI6IH+uA==",
+
"dependencies": {
+
"@shikijs/types": "3.4.0"
+
}
+
},
+
"node_modules/@shikijs/types": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.4.0.tgz",
+
"integrity": "sha512-EUT/0lGiE//7j5N/yTMNMT3eCWNcHJLrRKxT0NDXWIfdfSmFJKfPX7nMmRBrQnWboAzIsUziCThrYMMhjbMS1A==",
+
"dependencies": {
+
"@shikijs/vscode-textmate": "^10.0.2",
+
"@types/hast": "^3.0.4"
+
}
+
},
+
"node_modules/@shikijs/vscode-textmate": {
+
"version": "10.0.2",
+
"resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz",
+
"integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg=="
+
},
+
"node_modules/@swc/helpers": {
+
"version": "0.5.17",
+
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
+
"integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==",
+
"dependencies": {
+
"tslib": "^2.8.0"
+
}
+
},
+
"node_modules/@types/debug": {
+
"version": "4.1.12",
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
+
"dependencies": {
+
"@types/ms": "*"
+
}
+
},
+
"node_modules/@types/estree": {
+
"version": "1.0.7",
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
+
"integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="
+
},
+
"node_modules/@types/hast": {
+
"version": "3.0.4",
+
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
+
"integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
+
"dependencies": {
+
"@types/unist": "*"
+
}
+
},
+
"node_modules/@types/mdast": {
+
"version": "4.0.4",
+
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
+
"integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
+
"dependencies": {
+
"@types/unist": "*"
+
}
+
},
+
"node_modules/@types/ms": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA=="
+
},
+
"node_modules/@types/nlcst": {
+
"version": "2.0.3",
+
"resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz",
+
"integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==",
+
"dependencies": {
+
"@types/unist": "*"
+
}
+
},
+
"node_modules/@types/unist": {
+
"version": "3.0.3",
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
+
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="
+
},
+
"node_modules/@ungap/structured-clone": {
+
"version": "1.3.0",
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
+
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="
+
},
+
"node_modules/acorn": {
+
"version": "8.14.1",
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
+
"integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
+
"bin": {
+
"acorn": "bin/acorn"
+
},
+
"engines": {
+
"node": ">=0.4.0"
+
}
+
},
+
"node_modules/ansi-align": {
+
"version": "3.0.1",
+
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
+
"integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
+
"dependencies": {
+
"string-width": "^4.1.0"
+
}
+
},
+
"node_modules/ansi-align/node_modules/ansi-regex": {
+
"version": "5.0.1",
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/ansi-align/node_modules/emoji-regex": {
+
"version": "8.0.0",
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+
},
+
"node_modules/ansi-align/node_modules/string-width": {
+
"version": "4.2.3",
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+
"dependencies": {
+
"emoji-regex": "^8.0.0",
+
"is-fullwidth-code-point": "^3.0.0",
+
"strip-ansi": "^6.0.1"
+
},
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/ansi-align/node_modules/strip-ansi": {
+
"version": "6.0.1",
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+
"dependencies": {
+
"ansi-regex": "^5.0.1"
+
},
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/ansi-regex": {
+
"version": "6.1.0",
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+
"engines": {
+
"node": ">=12"
+
},
+
"funding": {
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
+
}
+
},
+
"node_modules/ansi-styles": {
+
"version": "6.2.1",
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+
"engines": {
+
"node": ">=12"
+
},
+
"funding": {
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
+
}
+
},
+
"node_modules/anymatch": {
+
"version": "3.1.3",
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+
"dependencies": {
+
"normalize-path": "^3.0.0",
+
"picomatch": "^2.0.4"
+
},
+
"engines": {
+
"node": ">= 8"
+
}
+
},
+
"node_modules/anymatch/node_modules/picomatch": {
+
"version": "2.3.1",
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+
"engines": {
+
"node": ">=8.6"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/jonschlinkert"
+
}
+
},
+
"node_modules/argparse": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
+
},
+
"node_modules/aria-query": {
+
"version": "5.3.2",
+
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
+
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
+
"engines": {
+
"node": ">= 0.4"
+
}
+
},
+
"node_modules/array-iterate": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz",
+
"integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/astro": {
+
"version": "5.7.11",
+
"resolved": "https://registry.npmjs.org/astro/-/astro-5.7.11.tgz",
+
"integrity": "sha512-9qRVwp8pue3isddLBnTexJsmKFpmms9Fo7Ss+3yrC0aINvbHKpD7q6qf52BtfQEk2xJgyx3SQy3dUsuD90sEqQ==",
+
"dependencies": {
+
"@astrojs/compiler": "^2.11.0",
+
"@astrojs/internal-helpers": "0.6.1",
+
"@astrojs/markdown-remark": "6.3.1",
+
"@astrojs/telemetry": "3.2.1",
+
"@capsizecss/unpack": "^2.4.0",
+
"@oslojs/encoding": "^1.1.0",
+
"@rollup/pluginutils": "^5.1.4",
+
"acorn": "^8.14.1",
+
"aria-query": "^5.3.2",
+
"axobject-query": "^4.1.0",
+
"boxen": "8.0.1",
+
"ci-info": "^4.2.0",
+
"clsx": "^2.1.1",
+
"common-ancestor-path": "^1.0.1",
+
"cookie": "^1.0.2",
+
"cssesc": "^3.0.0",
+
"debug": "^4.4.0",
+
"deterministic-object-hash": "^2.0.2",
+
"devalue": "^5.1.1",
+
"diff": "^5.2.0",
+
"dlv": "^1.1.3",
+
"dset": "^3.1.4",
+
"es-module-lexer": "^1.6.0",
+
"esbuild": "^0.25.0",
+
"estree-walker": "^3.0.3",
+
"flattie": "^1.1.1",
+
"github-slugger": "^2.0.0",
+
"html-escaper": "3.0.3",
+
"http-cache-semantics": "^4.1.1",
+
"js-yaml": "^4.1.0",
+
"kleur": "^4.1.5",
+
"magic-string": "^0.30.17",
+
"magicast": "^0.3.5",
+
"mrmime": "^2.0.1",
+
"neotraverse": "^0.6.18",
+
"p-limit": "^6.2.0",
+
"p-queue": "^8.1.0",
+
"package-manager-detector": "^1.1.0",
+
"picomatch": "^4.0.2",
+
"prompts": "^2.4.2",
+
"rehype": "^13.0.2",
+
"semver": "^7.7.1",
+
"shiki": "^3.2.1",
+
"tinyexec": "^0.3.2",
+
"tinyglobby": "^0.2.12",
+
"tsconfck": "^3.1.5",
+
"ultrahtml": "^1.6.0",
+
"unifont": "~0.5.0",
+
"unist-util-visit": "^5.0.0",
+
"unstorage": "^1.15.0",
+
"vfile": "^6.0.3",
+
"vite": "^6.3.4",
+
"vitefu": "^1.0.6",
+
"xxhash-wasm": "^1.1.0",
+
"yargs-parser": "^21.1.1",
+
"yocto-spinner": "^0.2.1",
+
"zod": "^3.24.2",
+
"zod-to-json-schema": "^3.24.5",
+
"zod-to-ts": "^1.2.0"
+
},
+
"bin": {
+
"astro": "astro.js"
+
},
+
"engines": {
+
"node": "^18.17.1 || ^20.3.0 || >=22.0.0",
+
"npm": ">=9.6.5",
+
"pnpm": ">=7.1.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/astrodotbuild"
+
},
+
"optionalDependencies": {
+
"sharp": "^0.33.3"
+
}
+
},
+
"node_modules/axobject-query": {
+
"version": "4.1.0",
+
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
+
"integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
+
"engines": {
+
"node": ">= 0.4"
+
}
+
},
+
"node_modules/bail": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/base-64": {
+
"version": "1.0.0",
+
"resolved": "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz",
+
"integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg=="
+
},
+
"node_modules/base64-js": {
+
"version": "1.5.1",
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+
"funding": [
+
{
+
"type": "github",
+
"url": "https://github.com/sponsors/feross"
+
},
+
{
+
"type": "patreon",
+
"url": "https://www.patreon.com/feross"
+
},
+
{
+
"type": "consulting",
+
"url": "https://feross.org/support"
+
}
+
]
+
},
+
"node_modules/blob-to-buffer": {
+
"version": "1.2.9",
+
"resolved": "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz",
+
"integrity": "sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==",
+
"funding": [
+
{
+
"type": "github",
+
"url": "https://github.com/sponsors/feross"
+
},
+
{
+
"type": "patreon",
+
"url": "https://www.patreon.com/feross"
+
},
+
{
+
"type": "consulting",
+
"url": "https://feross.org/support"
+
}
+
]
+
},
+
"node_modules/boxen": {
+
"version": "8.0.1",
+
"resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz",
+
"integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==",
+
"dependencies": {
+
"ansi-align": "^3.0.1",
+
"camelcase": "^8.0.0",
+
"chalk": "^5.3.0",
+
"cli-boxes": "^3.0.0",
+
"string-width": "^7.2.0",
+
"type-fest": "^4.21.0",
+
"widest-line": "^5.0.0",
+
"wrap-ansi": "^9.0.0"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/brotli": {
+
"version": "1.3.3",
+
"resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz",
+
"integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==",
+
"dependencies": {
+
"base64-js": "^1.1.2"
+
}
+
},
+
"node_modules/camelcase": {
+
"version": "8.0.0",
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz",
+
"integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==",
+
"engines": {
+
"node": ">=16"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/ccount": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
+
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/chalk": {
+
"version": "5.4.1",
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
+
"integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
+
"engines": {
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
+
},
+
"funding": {
+
"url": "https://github.com/chalk/chalk?sponsor=1"
+
}
+
},
+
"node_modules/character-entities": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/character-entities-html4": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
+
"integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/character-entities-legacy": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
+
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/chokidar": {
+
"version": "4.0.3",
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
+
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
+
"dependencies": {
+
"readdirp": "^4.0.1"
+
},
+
"engines": {
+
"node": ">= 14.16.0"
+
},
+
"funding": {
+
"url": "https://paulmillr.com/funding/"
+
}
+
},
+
"node_modules/ci-info": {
+
"version": "4.2.0",
+
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.2.0.tgz",
+
"integrity": "sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==",
+
"funding": [
+
{
+
"type": "github",
+
"url": "https://github.com/sponsors/sibiraj-s"
+
}
+
],
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/cli-boxes": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
+
"integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==",
+
"engines": {
+
"node": ">=10"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/clone": {
+
"version": "2.1.2",
+
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
+
"integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==",
+
"engines": {
+
"node": ">=0.8"
+
}
+
},
+
"node_modules/clsx": {
+
"version": "2.1.1",
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+
"engines": {
+
"node": ">=6"
+
}
+
},
+
"node_modules/color": {
+
"version": "4.2.3",
+
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
+
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
+
"optional": true,
+
"dependencies": {
+
"color-convert": "^2.0.1",
+
"color-string": "^1.9.0"
+
},
+
"engines": {
+
"node": ">=12.5.0"
+
}
+
},
+
"node_modules/color-convert": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+
"optional": true,
+
"dependencies": {
+
"color-name": "~1.1.4"
+
},
+
"engines": {
+
"node": ">=7.0.0"
+
}
+
},
+
"node_modules/color-name": {
+
"version": "1.1.4",
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+
"optional": true
+
},
+
"node_modules/color-string": {
+
"version": "1.9.1",
+
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
+
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
+
"optional": true,
+
"dependencies": {
+
"color-name": "^1.0.0",
+
"simple-swizzle": "^0.2.2"
+
}
+
},
+
"node_modules/comma-separated-tokens": {
+
"version": "2.0.3",
+
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
+
"integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/common-ancestor-path": {
+
"version": "1.0.1",
+
"resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz",
+
"integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w=="
+
},
+
"node_modules/cookie": {
+
"version": "1.0.2",
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
+
"integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/cookie-es": {
+
"version": "1.2.2",
+
"resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz",
+
"integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg=="
+
},
+
"node_modules/cross-fetch": {
+
"version": "3.2.0",
+
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz",
+
"integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==",
+
"dependencies": {
+
"node-fetch": "^2.7.0"
+
}
+
},
+
"node_modules/crossws": {
+
"version": "0.3.4",
+
"resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.4.tgz",
+
"integrity": "sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==",
+
"dependencies": {
+
"uncrypto": "^0.1.3"
+
}
+
},
+
"node_modules/css-tree": {
+
"version": "3.1.0",
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
+
"dependencies": {
+
"mdn-data": "2.12.2",
+
"source-map-js": "^1.0.1"
+
},
+
"engines": {
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
+
}
+
},
+
"node_modules/cssesc": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+
"bin": {
+
"cssesc": "bin/cssesc"
+
},
+
"engines": {
+
"node": ">=4"
+
}
+
},
+
"node_modules/debug": {
+
"version": "4.4.0",
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+
"dependencies": {
+
"ms": "^2.1.3"
+
},
+
"engines": {
+
"node": ">=6.0"
+
},
+
"peerDependenciesMeta": {
+
"supports-color": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/decode-named-character-reference": {
+
"version": "1.1.0",
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz",
+
"integrity": "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==",
+
"dependencies": {
+
"character-entities": "^2.0.0"
+
},
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/defu": {
+
"version": "6.1.4",
+
"resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz",
+
"integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg=="
+
},
+
"node_modules/dequal": {
+
"version": "2.0.3",
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+
"engines": {
+
"node": ">=6"
+
}
+
},
+
"node_modules/destr": {
+
"version": "2.0.5",
+
"resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz",
+
"integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA=="
+
},
+
"node_modules/detect-libc": {
+
"version": "2.0.4",
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
+
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
+
"optional": true,
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/deterministic-object-hash": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/deterministic-object-hash/-/deterministic-object-hash-2.0.2.tgz",
+
"integrity": "sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==",
+
"dependencies": {
+
"base-64": "^1.0.0"
+
},
+
"engines": {
+
"node": ">=18"
+
}
+
},
+
"node_modules/devalue": {
+
"version": "5.1.1",
+
"resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz",
+
"integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw=="
+
},
+
"node_modules/devlop": {
+
"version": "1.1.0",
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
+
"dependencies": {
+
"dequal": "^2.0.0"
+
},
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/dfa": {
+
"version": "1.2.0",
+
"resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz",
+
"integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q=="
+
},
+
"node_modules/diff": {
+
"version": "5.2.0",
+
"resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz",
+
"integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==",
+
"engines": {
+
"node": ">=0.3.1"
+
}
+
},
+
"node_modules/dlv": {
+
"version": "1.1.3",
+
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
+
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
+
},
+
"node_modules/dset": {
+
"version": "3.1.4",
+
"resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz",
+
"integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==",
+
"engines": {
+
"node": ">=4"
+
}
+
},
+
"node_modules/emoji-regex": {
+
"version": "10.4.0",
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
+
"integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="
+
},
+
"node_modules/entities": {
+
"version": "6.0.0",
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz",
+
"integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==",
+
"engines": {
+
"node": ">=0.12"
+
},
+
"funding": {
+
"url": "https://github.com/fb55/entities?sponsor=1"
+
}
+
},
+
"node_modules/es-module-lexer": {
+
"version": "1.7.0",
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
+
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="
+
},
+
"node_modules/esbuild": {
+
"version": "0.25.4",
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.4.tgz",
+
"integrity": "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==",
+
"hasInstallScript": true,
+
"bin": {
+
"esbuild": "bin/esbuild"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"optionalDependencies": {
+
"@esbuild/aix-ppc64": "0.25.4",
+
"@esbuild/android-arm": "0.25.4",
+
"@esbuild/android-arm64": "0.25.4",
+
"@esbuild/android-x64": "0.25.4",
+
"@esbuild/darwin-arm64": "0.25.4",
+
"@esbuild/darwin-x64": "0.25.4",
+
"@esbuild/freebsd-arm64": "0.25.4",
+
"@esbuild/freebsd-x64": "0.25.4",
+
"@esbuild/linux-arm": "0.25.4",
+
"@esbuild/linux-arm64": "0.25.4",
+
"@esbuild/linux-ia32": "0.25.4",
+
"@esbuild/linux-loong64": "0.25.4",
+
"@esbuild/linux-mips64el": "0.25.4",
+
"@esbuild/linux-ppc64": "0.25.4",
+
"@esbuild/linux-riscv64": "0.25.4",
+
"@esbuild/linux-s390x": "0.25.4",
+
"@esbuild/linux-x64": "0.25.4",
+
"@esbuild/netbsd-arm64": "0.25.4",
+
"@esbuild/netbsd-x64": "0.25.4",
+
"@esbuild/openbsd-arm64": "0.25.4",
+
"@esbuild/openbsd-x64": "0.25.4",
+
"@esbuild/sunos-x64": "0.25.4",
+
"@esbuild/win32-arm64": "0.25.4",
+
"@esbuild/win32-ia32": "0.25.4",
+
"@esbuild/win32-x64": "0.25.4"
+
}
+
},
+
"node_modules/escape-string-regexp": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+
"engines": {
+
"node": ">=12"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/estree-walker": {
+
"version": "3.0.3",
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
+
"dependencies": {
+
"@types/estree": "^1.0.0"
+
}
+
},
+
"node_modules/eventemitter3": {
+
"version": "5.0.1",
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
+
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA=="
+
},
+
"node_modules/extend": {
+
"version": "3.0.2",
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
+
},
+
"node_modules/fast-deep-equal": {
+
"version": "3.1.3",
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+
},
+
"node_modules/fdir": {
+
"version": "6.4.4",
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz",
+
"integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==",
+
"peerDependencies": {
+
"picomatch": "^3 || ^4"
+
},
+
"peerDependenciesMeta": {
+
"picomatch": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/flattie": {
+
"version": "1.1.1",
+
"resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz",
+
"integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==",
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/fontkit": {
+
"version": "2.0.4",
+
"resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz",
+
"integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==",
+
"dependencies": {
+
"@swc/helpers": "^0.5.12",
+
"brotli": "^1.3.2",
+
"clone": "^2.1.2",
+
"dfa": "^1.2.0",
+
"fast-deep-equal": "^3.1.3",
+
"restructure": "^3.0.0",
+
"tiny-inflate": "^1.0.3",
+
"unicode-properties": "^1.4.0",
+
"unicode-trie": "^2.0.0"
+
}
+
},
+
"node_modules/fsevents": {
+
"version": "2.3.3",
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+
"hasInstallScript": true,
+
"optional": true,
+
"os": [
+
"darwin"
+
],
+
"engines": {
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+
}
+
},
+
"node_modules/get-east-asian-width": {
+
"version": "1.3.0",
+
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
+
"integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/github-slugger": {
+
"version": "2.0.0",
+
"resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
+
"integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw=="
+
},
+
"node_modules/h3": {
+
"version": "1.15.3",
+
"resolved": "https://registry.npmjs.org/h3/-/h3-1.15.3.tgz",
+
"integrity": "sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==",
+
"dependencies": {
+
"cookie-es": "^1.2.2",
+
"crossws": "^0.3.4",
+
"defu": "^6.1.4",
+
"destr": "^2.0.5",
+
"iron-webcrypto": "^1.2.1",
+
"node-mock-http": "^1.0.0",
+
"radix3": "^1.1.2",
+
"ufo": "^1.6.1",
+
"uncrypto": "^0.1.3"
+
}
+
},
+
"node_modules/hast-util-from-html": {
+
"version": "2.0.3",
+
"resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
+
"integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"devlop": "^1.1.0",
+
"hast-util-from-parse5": "^8.0.0",
+
"parse5": "^7.0.0",
+
"vfile": "^6.0.0",
+
"vfile-message": "^4.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-from-parse5": {
+
"version": "8.0.3",
+
"resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
+
"integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"@types/unist": "^3.0.0",
+
"devlop": "^1.0.0",
+
"hastscript": "^9.0.0",
+
"property-information": "^7.0.0",
+
"vfile": "^6.0.0",
+
"vfile-location": "^5.0.0",
+
"web-namespaces": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-is-element": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
+
"integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
+
"dependencies": {
+
"@types/hast": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-parse-selector": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
+
"integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
+
"dependencies": {
+
"@types/hast": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-raw": {
+
"version": "9.1.0",
+
"resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz",
+
"integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"@types/unist": "^3.0.0",
+
"@ungap/structured-clone": "^1.0.0",
+
"hast-util-from-parse5": "^8.0.0",
+
"hast-util-to-parse5": "^8.0.0",
+
"html-void-elements": "^3.0.0",
+
"mdast-util-to-hast": "^13.0.0",
+
"parse5": "^7.0.0",
+
"unist-util-position": "^5.0.0",
+
"unist-util-visit": "^5.0.0",
+
"vfile": "^6.0.0",
+
"web-namespaces": "^2.0.0",
+
"zwitch": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-to-html": {
+
"version": "9.0.5",
+
"resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
+
"integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"@types/unist": "^3.0.0",
+
"ccount": "^2.0.0",
+
"comma-separated-tokens": "^2.0.0",
+
"hast-util-whitespace": "^3.0.0",
+
"html-void-elements": "^3.0.0",
+
"mdast-util-to-hast": "^13.0.0",
+
"property-information": "^7.0.0",
+
"space-separated-tokens": "^2.0.0",
+
"stringify-entities": "^4.0.0",
+
"zwitch": "^2.0.4"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-to-parse5": {
+
"version": "8.0.0",
+
"resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz",
+
"integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"comma-separated-tokens": "^2.0.0",
+
"devlop": "^1.0.0",
+
"property-information": "^6.0.0",
+
"space-separated-tokens": "^2.0.0",
+
"web-namespaces": "^2.0.0",
+
"zwitch": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-to-parse5/node_modules/property-information": {
+
"version": "6.5.0",
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz",
+
"integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/hast-util-to-text": {
+
"version": "4.0.2",
+
"resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
+
"integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"@types/unist": "^3.0.0",
+
"hast-util-is-element": "^3.0.0",
+
"unist-util-find-after": "^5.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hast-util-whitespace": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
+
"integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
+
"dependencies": {
+
"@types/hast": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/hastscript": {
+
"version": "9.0.1",
+
"resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
+
"integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"comma-separated-tokens": "^2.0.0",
+
"hast-util-parse-selector": "^4.0.0",
+
"property-information": "^7.0.0",
+
"space-separated-tokens": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/html-escaper": {
+
"version": "3.0.3",
+
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz",
+
"integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ=="
+
},
+
"node_modules/html-void-elements": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz",
+
"integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/http-cache-semantics": {
+
"version": "4.1.1",
+
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
+
"integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="
+
},
+
"node_modules/import-meta-resolve": {
+
"version": "4.1.0",
+
"resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz",
+
"integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/iron-webcrypto": {
+
"version": "1.2.1",
+
"resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
+
"integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
+
"funding": {
+
"url": "https://github.com/sponsors/brc-dd"
+
}
+
},
+
"node_modules/is-arrayish": {
+
"version": "0.3.2",
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
+
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+
"optional": true
+
},
+
"node_modules/is-docker": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
+
"integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
+
"bin": {
+
"is-docker": "cli.js"
+
},
+
"engines": {
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/is-fullwidth-code-point": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+
"engines": {
+
"node": ">=8"
+
}
+
},
+
"node_modules/is-inside-container": {
+
"version": "1.0.0",
+
"resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
+
"integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
+
"dependencies": {
+
"is-docker": "^3.0.0"
+
},
+
"bin": {
+
"is-inside-container": "cli.js"
+
},
+
"engines": {
+
"node": ">=14.16"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/is-plain-obj": {
+
"version": "4.1.0",
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
+
"engines": {
+
"node": ">=12"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/is-wsl": {
+
"version": "3.1.0",
+
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
+
"integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
+
"dependencies": {
+
"is-inside-container": "^1.0.0"
+
},
+
"engines": {
+
"node": ">=16"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/js-yaml": {
+
"version": "4.1.0",
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+
"dependencies": {
+
"argparse": "^2.0.1"
+
},
+
"bin": {
+
"js-yaml": "bin/js-yaml.js"
+
}
+
},
+
"node_modules/kleur": {
+
"version": "4.1.5",
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
+
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
+
"engines": {
+
"node": ">=6"
+
}
+
},
+
"node_modules/longest-streak": {
+
"version": "3.1.0",
+
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
+
"integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/lru-cache": {
+
"version": "10.4.3",
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
+
},
+
"node_modules/magic-string": {
+
"version": "0.30.17",
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
+
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+
"dependencies": {
+
"@jridgewell/sourcemap-codec": "^1.5.0"
+
}
+
},
+
"node_modules/magicast": {
+
"version": "0.3.5",
+
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
+
"integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
+
"dependencies": {
+
"@babel/parser": "^7.25.4",
+
"@babel/types": "^7.25.4",
+
"source-map-js": "^1.2.0"
+
}
+
},
+
"node_modules/markdown-table": {
+
"version": "3.0.4",
+
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
+
"integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/mdast-util-definitions": {
+
"version": "6.0.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz",
+
"integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"@types/unist": "^3.0.0",
+
"unist-util-visit": "^5.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-find-and-replace": {
+
"version": "3.0.2",
+
"resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
+
"integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"escape-string-regexp": "^5.0.0",
+
"unist-util-is": "^6.0.0",
+
"unist-util-visit-parents": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-from-markdown": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
+
"integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"@types/unist": "^3.0.0",
+
"decode-named-character-reference": "^1.0.0",
+
"devlop": "^1.0.0",
+
"mdast-util-to-string": "^4.0.0",
+
"micromark": "^4.0.0",
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
+
"micromark-util-decode-string": "^2.0.0",
+
"micromark-util-normalize-identifier": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0",
+
"unist-util-stringify-position": "^4.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-gfm": {
+
"version": "3.1.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
+
"integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
+
"dependencies": {
+
"mdast-util-from-markdown": "^2.0.0",
+
"mdast-util-gfm-autolink-literal": "^2.0.0",
+
"mdast-util-gfm-footnote": "^2.0.0",
+
"mdast-util-gfm-strikethrough": "^2.0.0",
+
"mdast-util-gfm-table": "^2.0.0",
+
"mdast-util-gfm-task-list-item": "^2.0.0",
+
"mdast-util-to-markdown": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-gfm-autolink-literal": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
+
"integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"ccount": "^2.0.0",
+
"devlop": "^1.0.0",
+
"mdast-util-find-and-replace": "^3.0.0",
+
"micromark-util-character": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-gfm-footnote": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
+
"integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"devlop": "^1.1.0",
+
"mdast-util-from-markdown": "^2.0.0",
+
"mdast-util-to-markdown": "^2.0.0",
+
"micromark-util-normalize-identifier": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-gfm-strikethrough": {
+
"version": "2.0.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
+
"integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"mdast-util-from-markdown": "^2.0.0",
+
"mdast-util-to-markdown": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-gfm-table": {
+
"version": "2.0.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
+
"integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"devlop": "^1.0.0",
+
"markdown-table": "^3.0.0",
+
"mdast-util-from-markdown": "^2.0.0",
+
"mdast-util-to-markdown": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-gfm-task-list-item": {
+
"version": "2.0.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
+
"integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"devlop": "^1.0.0",
+
"mdast-util-from-markdown": "^2.0.0",
+
"mdast-util-to-markdown": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-phrasing": {
+
"version": "4.1.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
+
"integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"unist-util-is": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-to-hast": {
+
"version": "13.2.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz",
+
"integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"@types/mdast": "^4.0.0",
+
"@ungap/structured-clone": "^1.0.0",
+
"devlop": "^1.0.0",
+
"micromark-util-sanitize-uri": "^2.0.0",
+
"trim-lines": "^3.0.0",
+
"unist-util-position": "^5.0.0",
+
"unist-util-visit": "^5.0.0",
+
"vfile": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-to-markdown": {
+
"version": "2.1.2",
+
"resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
+
"integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"@types/unist": "^3.0.0",
+
"longest-streak": "^3.0.0",
+
"mdast-util-phrasing": "^4.0.0",
+
"mdast-util-to-string": "^4.0.0",
+
"micromark-util-classify-character": "^2.0.0",
+
"micromark-util-decode-string": "^2.0.0",
+
"unist-util-visit": "^5.0.0",
+
"zwitch": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdast-util-to-string": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
+
"integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/mdn-data": {
+
"version": "2.12.2",
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="
+
},
+
"node_modules/micromark": {
+
"version": "4.0.2",
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
+
"integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"@types/debug": "^4.0.0",
+
"debug": "^4.0.0",
+
"decode-named-character-reference": "^1.0.0",
+
"devlop": "^1.0.0",
+
"micromark-core-commonmark": "^2.0.0",
+
"micromark-factory-space": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-chunked": "^2.0.0",
+
"micromark-util-combine-extensions": "^2.0.0",
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
+
"micromark-util-encode": "^2.0.0",
+
"micromark-util-normalize-identifier": "^2.0.0",
+
"micromark-util-resolve-all": "^2.0.0",
+
"micromark-util-sanitize-uri": "^2.0.0",
+
"micromark-util-subtokenize": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-core-commonmark": {
+
"version": "2.0.3",
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
+
"integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"decode-named-character-reference": "^1.0.0",
+
"devlop": "^1.0.0",
+
"micromark-factory-destination": "^2.0.0",
+
"micromark-factory-label": "^2.0.0",
+
"micromark-factory-space": "^2.0.0",
+
"micromark-factory-title": "^2.0.0",
+
"micromark-factory-whitespace": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-chunked": "^2.0.0",
+
"micromark-util-classify-character": "^2.0.0",
+
"micromark-util-html-tag-name": "^2.0.0",
+
"micromark-util-normalize-identifier": "^2.0.0",
+
"micromark-util-resolve-all": "^2.0.0",
+
"micromark-util-subtokenize": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-extension-gfm": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
+
"integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
+
"dependencies": {
+
"micromark-extension-gfm-autolink-literal": "^2.0.0",
+
"micromark-extension-gfm-footnote": "^2.0.0",
+
"micromark-extension-gfm-strikethrough": "^2.0.0",
+
"micromark-extension-gfm-table": "^2.0.0",
+
"micromark-extension-gfm-tagfilter": "^2.0.0",
+
"micromark-extension-gfm-task-list-item": "^2.0.0",
+
"micromark-util-combine-extensions": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-extension-gfm-autolink-literal": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
+
"dependencies": {
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-sanitize-uri": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-extension-gfm-footnote": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
+
"dependencies": {
+
"devlop": "^1.0.0",
+
"micromark-core-commonmark": "^2.0.0",
+
"micromark-factory-space": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-normalize-identifier": "^2.0.0",
+
"micromark-util-sanitize-uri": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-extension-gfm-strikethrough": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
+
"integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
+
"dependencies": {
+
"devlop": "^1.0.0",
+
"micromark-util-chunked": "^2.0.0",
+
"micromark-util-classify-character": "^2.0.0",
+
"micromark-util-resolve-all": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-extension-gfm-table": {
+
"version": "2.1.1",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
+
"integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
+
"dependencies": {
+
"devlop": "^1.0.0",
+
"micromark-factory-space": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-extension-gfm-tagfilter": {
+
"version": "2.0.0",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
+
"integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
+
"dependencies": {
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-extension-gfm-task-list-item": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
+
"integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
+
"dependencies": {
+
"devlop": "^1.0.0",
+
"micromark-factory-space": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/micromark-factory-destination": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-factory-label": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"devlop": "^1.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-factory-space": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-factory-title": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-factory-space": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-factory-whitespace": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-factory-space": "^2.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-character": {
+
"version": "2.1.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-chunked": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-symbol": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-classify-character": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-combine-extensions": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-chunked": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-decode-numeric-character-reference": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-symbol": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-decode-string": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
+
"integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"decode-named-character-reference": "^1.0.0",
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-encode": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
]
+
},
+
"node_modules/micromark-util-html-tag-name": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
]
+
},
+
"node_modules/micromark-util-normalize-identifier": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-symbol": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-resolve-all": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-sanitize-uri": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"micromark-util-character": "^2.0.0",
+
"micromark-util-encode": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-subtokenize": {
+
"version": "2.1.0",
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
+
"integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
],
+
"dependencies": {
+
"devlop": "^1.0.0",
+
"micromark-util-chunked": "^2.0.0",
+
"micromark-util-symbol": "^2.0.0",
+
"micromark-util-types": "^2.0.0"
+
}
+
},
+
"node_modules/micromark-util-symbol": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
]
+
},
+
"node_modules/micromark-util-types": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
+
"integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
+
"funding": [
+
{
+
"type": "GitHub Sponsors",
+
"url": "https://github.com/sponsors/unifiedjs"
+
},
+
{
+
"type": "OpenCollective",
+
"url": "https://opencollective.com/unified"
+
}
+
]
+
},
+
"node_modules/mrmime": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
+
"integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
+
"engines": {
+
"node": ">=10"
+
}
+
},
+
"node_modules/ms": {
+
"version": "2.1.3",
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+
},
+
"node_modules/nanoid": {
+
"version": "3.3.11",
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+
"funding": [
+
{
+
"type": "github",
+
"url": "https://github.com/sponsors/ai"
+
}
+
],
+
"bin": {
+
"nanoid": "bin/nanoid.cjs"
+
},
+
"engines": {
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+
}
+
},
+
"node_modules/neotraverse": {
+
"version": "0.6.18",
+
"resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz",
+
"integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==",
+
"engines": {
+
"node": ">= 10"
+
}
+
},
+
"node_modules/nlcst-to-string": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz",
+
"integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==",
+
"dependencies": {
+
"@types/nlcst": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/node-fetch": {
+
"version": "2.7.0",
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
+
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
+
"dependencies": {
+
"whatwg-url": "^5.0.0"
+
},
+
"engines": {
+
"node": "4.x || >=6.0.0"
+
},
+
"peerDependencies": {
+
"encoding": "^0.1.0"
+
},
+
"peerDependenciesMeta": {
+
"encoding": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/node-fetch-native": {
+
"version": "1.6.6",
+
"resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.6.tgz",
+
"integrity": "sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ=="
+
},
+
"node_modules/node-mock-http": {
+
"version": "1.0.0",
+
"resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.0.tgz",
+
"integrity": "sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ=="
+
},
+
"node_modules/normalize-path": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+
"engines": {
+
"node": ">=0.10.0"
+
}
+
},
+
"node_modules/ofetch": {
+
"version": "1.4.1",
+
"resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.4.1.tgz",
+
"integrity": "sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==",
+
"dependencies": {
+
"destr": "^2.0.3",
+
"node-fetch-native": "^1.6.4",
+
"ufo": "^1.5.4"
+
}
+
},
+
"node_modules/ohash": {
+
"version": "2.0.11",
+
"resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
+
"integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ=="
+
},
+
"node_modules/oniguruma-parser": {
+
"version": "0.12.1",
+
"resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz",
+
"integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w=="
+
},
+
"node_modules/oniguruma-to-es": {
+
"version": "4.3.3",
+
"resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz",
+
"integrity": "sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==",
+
"dependencies": {
+
"oniguruma-parser": "^0.12.1",
+
"regex": "^6.0.1",
+
"regex-recursion": "^6.0.2"
+
}
+
},
+
"node_modules/p-limit": {
+
"version": "6.2.0",
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-6.2.0.tgz",
+
"integrity": "sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==",
+
"dependencies": {
+
"yocto-queue": "^1.1.1"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/p-queue": {
+
"version": "8.1.0",
+
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.0.tgz",
+
"integrity": "sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==",
+
"dependencies": {
+
"eventemitter3": "^5.0.1",
+
"p-timeout": "^6.1.2"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/p-timeout": {
+
"version": "6.1.4",
+
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz",
+
"integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==",
+
"engines": {
+
"node": ">=14.16"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/package-manager-detector": {
+
"version": "1.3.0",
+
"resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.3.0.tgz",
+
"integrity": "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ=="
+
},
+
"node_modules/pako": {
+
"version": "0.2.9",
+
"resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
+
"integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA=="
+
},
+
"node_modules/parse-latin": {
+
"version": "7.0.0",
+
"resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz",
+
"integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==",
+
"dependencies": {
+
"@types/nlcst": "^2.0.0",
+
"@types/unist": "^3.0.0",
+
"nlcst-to-string": "^4.0.0",
+
"unist-util-modify-children": "^4.0.0",
+
"unist-util-visit-children": "^3.0.0",
+
"vfile": "^6.0.0"
+
},
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/parse5": {
+
"version": "7.3.0",
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
+
"integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
+
"dependencies": {
+
"entities": "^6.0.0"
+
},
+
"funding": {
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
+
}
+
},
+
"node_modules/picocolors": {
+
"version": "1.1.1",
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
+
},
+
"node_modules/picomatch": {
+
"version": "4.0.2",
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+
"engines": {
+
"node": ">=12"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/jonschlinkert"
+
}
+
},
+
"node_modules/postcss": {
+
"version": "8.5.3",
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
+
"integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
+
"funding": [
+
{
+
"type": "opencollective",
+
"url": "https://opencollective.com/postcss/"
+
},
+
{
+
"type": "tidelift",
+
"url": "https://tidelift.com/funding/github/npm/postcss"
+
},
+
{
+
"type": "github",
+
"url": "https://github.com/sponsors/ai"
+
}
+
],
+
"dependencies": {
+
"nanoid": "^3.3.8",
+
"picocolors": "^1.1.1",
+
"source-map-js": "^1.2.1"
+
},
+
"engines": {
+
"node": "^10 || ^12 || >=14"
+
}
+
},
+
"node_modules/prismjs": {
+
"version": "1.30.0",
+
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
+
"integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
+
"engines": {
+
"node": ">=6"
+
}
+
},
+
"node_modules/prompts": {
+
"version": "2.4.2",
+
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
+
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
+
"dependencies": {
+
"kleur": "^3.0.3",
+
"sisteransi": "^1.0.5"
+
},
+
"engines": {
+
"node": ">= 6"
+
}
+
},
+
"node_modules/prompts/node_modules/kleur": {
+
"version": "3.0.3",
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
+
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
+
"engines": {
+
"node": ">=6"
+
}
+
},
+
"node_modules/property-information": {
+
"version": "7.0.0",
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-7.0.0.tgz",
+
"integrity": "sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/radix3": {
+
"version": "1.1.2",
+
"resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz",
+
"integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA=="
+
},
+
"node_modules/readdirp": {
+
"version": "4.1.2",
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
+
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
+
"engines": {
+
"node": ">= 14.18.0"
+
},
+
"funding": {
+
"type": "individual",
+
"url": "https://paulmillr.com/funding/"
+
}
+
},
+
"node_modules/regex": {
+
"version": "6.0.1",
+
"resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz",
+
"integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==",
+
"dependencies": {
+
"regex-utilities": "^2.3.0"
+
}
+
},
+
"node_modules/regex-recursion": {
+
"version": "6.0.2",
+
"resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz",
+
"integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==",
+
"dependencies": {
+
"regex-utilities": "^2.3.0"
+
}
+
},
+
"node_modules/regex-utilities": {
+
"version": "2.3.0",
+
"resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz",
+
"integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng=="
+
},
+
"node_modules/rehype": {
+
"version": "13.0.2",
+
"resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz",
+
"integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"rehype-parse": "^9.0.0",
+
"rehype-stringify": "^10.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/rehype-parse": {
+
"version": "9.0.1",
+
"resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz",
+
"integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"hast-util-from-html": "^2.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/rehype-raw": {
+
"version": "7.0.0",
+
"resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz",
+
"integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"hast-util-raw": "^9.0.0",
+
"vfile": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/rehype-stringify": {
+
"version": "10.0.1",
+
"resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz",
+
"integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"hast-util-to-html": "^9.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/remark-gfm": {
+
"version": "4.0.1",
+
"resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
+
"integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"mdast-util-gfm": "^3.0.0",
+
"micromark-extension-gfm": "^3.0.0",
+
"remark-parse": "^11.0.0",
+
"remark-stringify": "^11.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/remark-parse": {
+
"version": "11.0.0",
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
+
"integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"mdast-util-from-markdown": "^2.0.0",
+
"micromark-util-types": "^2.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/remark-rehype": {
+
"version": "11.1.2",
+
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
+
"integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
+
"dependencies": {
+
"@types/hast": "^3.0.0",
+
"@types/mdast": "^4.0.0",
+
"mdast-util-to-hast": "^13.0.0",
+
"unified": "^11.0.0",
+
"vfile": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/remark-smartypants": {
+
"version": "3.0.2",
+
"resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz",
+
"integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==",
+
"dependencies": {
+
"retext": "^9.0.0",
+
"retext-smartypants": "^6.0.0",
+
"unified": "^11.0.4",
+
"unist-util-visit": "^5.0.0"
+
},
+
"engines": {
+
"node": ">=16.0.0"
+
}
+
},
+
"node_modules/remark-stringify": {
+
"version": "11.0.0",
+
"resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
+
"integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
+
"dependencies": {
+
"@types/mdast": "^4.0.0",
+
"mdast-util-to-markdown": "^2.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/restructure": {
+
"version": "3.0.2",
+
"resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz",
+
"integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw=="
+
},
+
"node_modules/retext": {
+
"version": "9.0.0",
+
"resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
+
"integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
+
"dependencies": {
+
"@types/nlcst": "^2.0.0",
+
"retext-latin": "^4.0.0",
+
"retext-stringify": "^4.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/retext-latin": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz",
+
"integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==",
+
"dependencies": {
+
"@types/nlcst": "^2.0.0",
+
"parse-latin": "^7.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/retext-smartypants": {
+
"version": "6.2.0",
+
"resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz",
+
"integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==",
+
"dependencies": {
+
"@types/nlcst": "^2.0.0",
+
"nlcst-to-string": "^4.0.0",
+
"unist-util-visit": "^5.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/retext-stringify": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz",
+
"integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==",
+
"dependencies": {
+
"@types/nlcst": "^2.0.0",
+
"nlcst-to-string": "^4.0.0",
+
"unified": "^11.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/rollup": {
+
"version": "4.40.2",
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.40.2.tgz",
+
"integrity": "sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==",
+
"dependencies": {
+
"@types/estree": "1.0.7"
+
},
+
"bin": {
+
"rollup": "dist/bin/rollup"
+
},
+
"engines": {
+
"node": ">=18.0.0",
+
"npm": ">=8.0.0"
+
},
+
"optionalDependencies": {
+
"@rollup/rollup-android-arm-eabi": "4.40.2",
+
"@rollup/rollup-android-arm64": "4.40.2",
+
"@rollup/rollup-darwin-arm64": "4.40.2",
+
"@rollup/rollup-darwin-x64": "4.40.2",
+
"@rollup/rollup-freebsd-arm64": "4.40.2",
+
"@rollup/rollup-freebsd-x64": "4.40.2",
+
"@rollup/rollup-linux-arm-gnueabihf": "4.40.2",
+
"@rollup/rollup-linux-arm-musleabihf": "4.40.2",
+
"@rollup/rollup-linux-arm64-gnu": "4.40.2",
+
"@rollup/rollup-linux-arm64-musl": "4.40.2",
+
"@rollup/rollup-linux-loongarch64-gnu": "4.40.2",
+
"@rollup/rollup-linux-powerpc64le-gnu": "4.40.2",
+
"@rollup/rollup-linux-riscv64-gnu": "4.40.2",
+
"@rollup/rollup-linux-riscv64-musl": "4.40.2",
+
"@rollup/rollup-linux-s390x-gnu": "4.40.2",
+
"@rollup/rollup-linux-x64-gnu": "4.40.2",
+
"@rollup/rollup-linux-x64-musl": "4.40.2",
+
"@rollup/rollup-win32-arm64-msvc": "4.40.2",
+
"@rollup/rollup-win32-ia32-msvc": "4.40.2",
+
"@rollup/rollup-win32-x64-msvc": "4.40.2",
+
"fsevents": "~2.3.2"
+
}
+
},
+
"node_modules/semver": {
+
"version": "7.7.1",
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+
"bin": {
+
"semver": "bin/semver.js"
+
},
+
"engines": {
+
"node": ">=10"
+
}
+
},
+
"node_modules/sharp": {
+
"version": "0.33.5",
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz",
+
"integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
+
"hasInstallScript": true,
+
"optional": true,
+
"dependencies": {
+
"color": "^4.2.3",
+
"detect-libc": "^2.0.3",
+
"semver": "^7.6.3"
+
},
+
"engines": {
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+
},
+
"funding": {
+
"url": "https://opencollective.com/libvips"
+
},
+
"optionalDependencies": {
+
"@img/sharp-darwin-arm64": "0.33.5",
+
"@img/sharp-darwin-x64": "0.33.5",
+
"@img/sharp-libvips-darwin-arm64": "1.0.4",
+
"@img/sharp-libvips-darwin-x64": "1.0.4",
+
"@img/sharp-libvips-linux-arm": "1.0.5",
+
"@img/sharp-libvips-linux-arm64": "1.0.4",
+
"@img/sharp-libvips-linux-s390x": "1.0.4",
+
"@img/sharp-libvips-linux-x64": "1.0.4",
+
"@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.4",
+
"@img/sharp-linux-arm": "0.33.5",
+
"@img/sharp-linux-arm64": "0.33.5",
+
"@img/sharp-linux-s390x": "0.33.5",
+
"@img/sharp-linux-x64": "0.33.5",
+
"@img/sharp-linuxmusl-arm64": "0.33.5",
+
"@img/sharp-linuxmusl-x64": "0.33.5",
+
"@img/sharp-wasm32": "0.33.5",
+
"@img/sharp-win32-ia32": "0.33.5",
+
"@img/sharp-win32-x64": "0.33.5"
+
}
+
},
+
"node_modules/shiki": {
+
"version": "3.4.0",
+
"resolved": "https://registry.npmjs.org/shiki/-/shiki-3.4.0.tgz",
+
"integrity": "sha512-Ni80XHcqhOEXv5mmDAvf5p6PAJqbUc/RzFeaOqk+zP5DLvTPS3j0ckvA+MI87qoxTQ5RGJDVTbdl/ENLSyyAnQ==",
+
"dependencies": {
+
"@shikijs/core": "3.4.0",
+
"@shikijs/engine-javascript": "3.4.0",
+
"@shikijs/engine-oniguruma": "3.4.0",
+
"@shikijs/langs": "3.4.0",
+
"@shikijs/themes": "3.4.0",
+
"@shikijs/types": "3.4.0",
+
"@shikijs/vscode-textmate": "^10.0.2",
+
"@types/hast": "^3.0.4"
+
}
+
},
+
"node_modules/simple-swizzle": {
+
"version": "0.2.2",
+
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
+
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
+
"optional": true,
+
"dependencies": {
+
"is-arrayish": "^0.3.1"
+
}
+
},
+
"node_modules/sisteransi": {
+
"version": "1.0.5",
+
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
+
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
+
},
+
"node_modules/smol-toml": {
+
"version": "1.3.4",
+
"resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.3.4.tgz",
+
"integrity": "sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA==",
+
"engines": {
+
"node": ">= 18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/cyyynthia"
+
}
+
},
+
"node_modules/source-map-js": {
+
"version": "1.2.1",
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+
"engines": {
+
"node": ">=0.10.0"
+
}
+
},
+
"node_modules/space-separated-tokens": {
+
"version": "2.0.2",
+
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
+
"integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/string-width": {
+
"version": "7.2.0",
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+
"integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+
"dependencies": {
+
"emoji-regex": "^10.3.0",
+
"get-east-asian-width": "^1.0.0",
+
"strip-ansi": "^7.1.0"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/stringify-entities": {
+
"version": "4.0.4",
+
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
+
"integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
+
"dependencies": {
+
"character-entities-html4": "^2.0.0",
+
"character-entities-legacy": "^3.0.0"
+
},
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/strip-ansi": {
+
"version": "7.1.0",
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+
"dependencies": {
+
"ansi-regex": "^6.0.1"
+
},
+
"engines": {
+
"node": ">=12"
+
},
+
"funding": {
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
+
}
+
},
+
"node_modules/tiny-inflate": {
+
"version": "1.0.3",
+
"resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
+
"integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="
+
},
+
"node_modules/tinyexec": {
+
"version": "0.3.2",
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
+
"integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="
+
},
+
"node_modules/tinyglobby": {
+
"version": "0.2.13",
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz",
+
"integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==",
+
"dependencies": {
+
"fdir": "^6.4.4",
+
"picomatch": "^4.0.2"
+
},
+
"engines": {
+
"node": ">=12.0.0"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/SuperchupuDev"
+
}
+
},
+
"node_modules/tr46": {
+
"version": "0.0.3",
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
+
},
+
"node_modules/trim-lines": {
+
"version": "3.0.1",
+
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
+
"integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/trough": {
+
"version": "2.2.0",
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
+
"integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/tsconfck": {
+
"version": "3.1.5",
+
"resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.5.tgz",
+
"integrity": "sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==",
+
"bin": {
+
"tsconfck": "bin/tsconfck.js"
+
},
+
"engines": {
+
"node": "^18 || >=20"
+
},
+
"peerDependencies": {
+
"typescript": "^5.0.0"
+
},
+
"peerDependenciesMeta": {
+
"typescript": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/tslib": {
+
"version": "2.8.1",
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+
},
+
"node_modules/type-fest": {
+
"version": "4.41.0",
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
+
"integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
+
"engines": {
+
"node": ">=16"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/typescript": {
+
"version": "5.8.3",
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
+
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
+
"peer": true,
+
"bin": {
+
"tsc": "bin/tsc",
+
"tsserver": "bin/tsserver"
+
},
+
"engines": {
+
"node": ">=14.17"
+
}
+
},
+
"node_modules/ufo": {
+
"version": "1.6.1",
+
"resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.1.tgz",
+
"integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA=="
+
},
+
"node_modules/ultrahtml": {
+
"version": "1.6.0",
+
"resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz",
+
"integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw=="
+
},
+
"node_modules/uncrypto": {
+
"version": "0.1.3",
+
"resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz",
+
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="
+
},
+
"node_modules/unicode-properties": {
+
"version": "1.4.1",
+
"resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz",
+
"integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==",
+
"dependencies": {
+
"base64-js": "^1.3.0",
+
"unicode-trie": "^2.0.0"
+
}
+
},
+
"node_modules/unicode-trie": {
+
"version": "2.0.0",
+
"resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz",
+
"integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
+
"dependencies": {
+
"pako": "^0.2.5",
+
"tiny-inflate": "^1.0.0"
+
}
+
},
+
"node_modules/unified": {
+
"version": "11.0.5",
+
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
+
"integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"bail": "^2.0.0",
+
"devlop": "^1.0.0",
+
"extend": "^3.0.0",
+
"is-plain-obj": "^4.0.0",
+
"trough": "^2.0.0",
+
"vfile": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unifont": {
+
"version": "0.5.0",
+
"resolved": "https://registry.npmjs.org/unifont/-/unifont-0.5.0.tgz",
+
"integrity": "sha512-4DueXMP5Hy4n607sh+vJ+rajoLu778aU3GzqeTCqsD/EaUcvqZT9wPC8kgK6Vjh22ZskrxyRCR71FwNOaYn6jA==",
+
"dependencies": {
+
"css-tree": "^3.0.0",
+
"ohash": "^2.0.0"
+
}
+
},
+
"node_modules/unist-util-find-after": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
+
"integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"unist-util-is": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-is": {
+
"version": "6.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz",
+
"integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==",
+
"dependencies": {
+
"@types/unist": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-modify-children": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz",
+
"integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"array-iterate": "^2.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-position": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
+
"integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
+
"dependencies": {
+
"@types/unist": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-remove-position": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
+
"integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"unist-util-visit": "^5.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-stringify-position": {
+
"version": "4.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
+
"integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
+
"dependencies": {
+
"@types/unist": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-visit": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
+
"integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"unist-util-is": "^6.0.0",
+
"unist-util-visit-parents": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-visit-children": {
+
"version": "3.0.0",
+
"resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz",
+
"integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==",
+
"dependencies": {
+
"@types/unist": "^3.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unist-util-visit-parents": {
+
"version": "6.0.1",
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz",
+
"integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"unist-util-is": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/unstorage": {
+
"version": "1.16.0",
+
"resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.16.0.tgz",
+
"integrity": "sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==",
+
"dependencies": {
+
"anymatch": "^3.1.3",
+
"chokidar": "^4.0.3",
+
"destr": "^2.0.5",
+
"h3": "^1.15.2",
+
"lru-cache": "^10.4.3",
+
"node-fetch-native": "^1.6.6",
+
"ofetch": "^1.4.1",
+
"ufo": "^1.6.1"
+
},
+
"peerDependencies": {
+
"@azure/app-configuration": "^1.8.0",
+
"@azure/cosmos": "^4.2.0",
+
"@azure/data-tables": "^13.3.0",
+
"@azure/identity": "^4.6.0",
+
"@azure/keyvault-secrets": "^4.9.0",
+
"@azure/storage-blob": "^12.26.0",
+
"@capacitor/preferences": "^6.0.3 || ^7.0.0",
+
"@deno/kv": ">=0.9.0",
+
"@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0",
+
"@planetscale/database": "^1.19.0",
+
"@upstash/redis": "^1.34.3",
+
"@vercel/blob": ">=0.27.1",
+
"@vercel/kv": "^1.0.1",
+
"aws4fetch": "^1.0.20",
+
"db0": ">=0.2.1",
+
"idb-keyval": "^6.2.1",
+
"ioredis": "^5.4.2",
+
"uploadthing": "^7.4.4"
+
},
+
"peerDependenciesMeta": {
+
"@azure/app-configuration": {
+
"optional": true
+
},
+
"@azure/cosmos": {
+
"optional": true
+
},
+
"@azure/data-tables": {
+
"optional": true
+
},
+
"@azure/identity": {
+
"optional": true
+
},
+
"@azure/keyvault-secrets": {
+
"optional": true
+
},
+
"@azure/storage-blob": {
+
"optional": true
+
},
+
"@capacitor/preferences": {
+
"optional": true
+
},
+
"@deno/kv": {
+
"optional": true
+
},
+
"@netlify/blobs": {
+
"optional": true
+
},
+
"@planetscale/database": {
+
"optional": true
+
},
+
"@upstash/redis": {
+
"optional": true
+
},
+
"@vercel/blob": {
+
"optional": true
+
},
+
"@vercel/kv": {
+
"optional": true
+
},
+
"aws4fetch": {
+
"optional": true
+
},
+
"db0": {
+
"optional": true
+
},
+
"idb-keyval": {
+
"optional": true
+
},
+
"ioredis": {
+
"optional": true
+
},
+
"uploadthing": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/vfile": {
+
"version": "6.0.3",
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
+
"integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"vfile-message": "^4.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/vfile-location": {
+
"version": "5.0.3",
+
"resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
+
"integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"vfile": "^6.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/vfile-message": {
+
"version": "4.0.2",
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz",
+
"integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==",
+
"dependencies": {
+
"@types/unist": "^3.0.0",
+
"unist-util-stringify-position": "^4.0.0"
+
},
+
"funding": {
+
"type": "opencollective",
+
"url": "https://opencollective.com/unified"
+
}
+
},
+
"node_modules/vite": {
+
"version": "6.3.5",
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
+
"integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
+
"dependencies": {
+
"esbuild": "^0.25.0",
+
"fdir": "^6.4.4",
+
"picomatch": "^4.0.2",
+
"postcss": "^8.5.3",
+
"rollup": "^4.34.9",
+
"tinyglobby": "^0.2.13"
+
},
+
"bin": {
+
"vite": "bin/vite.js"
+
},
+
"engines": {
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+
},
+
"funding": {
+
"url": "https://github.com/vitejs/vite?sponsor=1"
+
},
+
"optionalDependencies": {
+
"fsevents": "~2.3.3"
+
},
+
"peerDependencies": {
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+
"jiti": ">=1.21.0",
+
"less": "*",
+
"lightningcss": "^1.21.0",
+
"sass": "*",
+
"sass-embedded": "*",
+
"stylus": "*",
+
"sugarss": "*",
+
"terser": "^5.16.0",
+
"tsx": "^4.8.1",
+
"yaml": "^2.4.2"
+
},
+
"peerDependenciesMeta": {
+
"@types/node": {
+
"optional": true
+
},
+
"jiti": {
+
"optional": true
+
},
+
"less": {
+
"optional": true
+
},
+
"lightningcss": {
+
"optional": true
+
},
+
"sass": {
+
"optional": true
+
},
+
"sass-embedded": {
+
"optional": true
+
},
+
"stylus": {
+
"optional": true
+
},
+
"sugarss": {
+
"optional": true
+
},
+
"terser": {
+
"optional": true
+
},
+
"tsx": {
+
"optional": true
+
},
+
"yaml": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/vitefu": {
+
"version": "1.0.6",
+
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.6.tgz",
+
"integrity": "sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==",
+
"peerDependencies": {
+
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
+
},
+
"peerDependenciesMeta": {
+
"vite": {
+
"optional": true
+
}
+
}
+
},
+
"node_modules/web-namespaces": {
+
"version": "2.0.1",
+
"resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
+
"integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
},
+
"node_modules/webidl-conversions": {
+
"version": "3.0.1",
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
+
},
+
"node_modules/whatwg-url": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+
"dependencies": {
+
"tr46": "~0.0.3",
+
"webidl-conversions": "^3.0.0"
+
}
+
},
+
"node_modules/which-pm-runs": {
+
"version": "1.1.0",
+
"resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz",
+
"integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==",
+
"engines": {
+
"node": ">=4"
+
}
+
},
+
"node_modules/widest-line": {
+
"version": "5.0.0",
+
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz",
+
"integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==",
+
"dependencies": {
+
"string-width": "^7.0.0"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/wrap-ansi": {
+
"version": "9.0.0",
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
+
"integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
+
"dependencies": {
+
"ansi-styles": "^6.2.1",
+
"string-width": "^7.0.0",
+
"strip-ansi": "^7.1.0"
+
},
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+
}
+
},
+
"node_modules/xxhash-wasm": {
+
"version": "1.1.0",
+
"resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz",
+
"integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA=="
+
},
+
"node_modules/yargs-parser": {
+
"version": "21.1.1",
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+
"engines": {
+
"node": ">=12"
+
}
+
},
+
"node_modules/yocto-queue": {
+
"version": "1.2.1",
+
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz",
+
"integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==",
+
"engines": {
+
"node": ">=12.20"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/yocto-spinner": {
+
"version": "0.2.2",
+
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.2.tgz",
+
"integrity": "sha512-21rPcM3e4vCpOXThiFRByX8amU5By1R0wNS8Oex+DP3YgC8xdU0vEJ/K8cbPLiIJVosSSysgcFof6s6MSD5/Vw==",
+
"dependencies": {
+
"yoctocolors": "^2.1.1"
+
},
+
"engines": {
+
"node": ">=18.19"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/yoctocolors": {
+
"version": "2.1.1",
+
"resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz",
+
"integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==",
+
"engines": {
+
"node": ">=18"
+
},
+
"funding": {
+
"url": "https://github.com/sponsors/sindresorhus"
+
}
+
},
+
"node_modules/zod": {
+
"version": "3.24.4",
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.24.4.tgz",
+
"integrity": "sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==",
+
"funding": {
+
"url": "https://github.com/sponsors/colinhacks"
+
}
+
},
+
"node_modules/zod-to-json-schema": {
+
"version": "3.24.5",
+
"resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.5.tgz",
+
"integrity": "sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==",
+
"peerDependencies": {
+
"zod": "^3.24.1"
+
}
+
},
+
"node_modules/zod-to-ts": {
+
"version": "1.2.0",
+
"resolved": "https://registry.npmjs.org/zod-to-ts/-/zod-to-ts-1.2.0.tgz",
+
"integrity": "sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==",
+
"peerDependencies": {
+
"typescript": "^4.9.4 || ^5.0.2",
+
"zod": "^3"
+
}
+
},
+
"node_modules/zwitch": {
+
"version": "2.0.4",
+
"resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
+
"integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
+
"funding": {
+
"type": "github",
+
"url": "https://github.com/sponsors/wooorm"
+
}
+
}
+
}
+
}
+14
package.json
···
+
{
+
"name": "static",
+
"type": "module",
+
"version": "0.0.1",
+
"scripts": {
+
"dev": "astro dev",
+
"build": "astro build",
+
"preview": "astro preview",
+
"astro": "astro"
+
},
+
"dependencies": {
+
"astro": "^5.7.11"
+
}
+
}
+9
public/favicon.svg
···
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128">
+
<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" />
+
<style>
+
path { fill: #000; }
+
@media (prefers-color-scheme: dark) {
+
path { fill: #FFF; }
+
}
+
</style>
+
</svg>
+1
src/assets/astro.svg
···
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="115" height="48"><path fill="#17191E" d="M7.77 36.35C6.4 35.11 6 32.51 6.57 30.62c.99 1.2 2.35 1.57 3.75 1.78 2.18.33 4.31.2 6.33-.78.23-.12.44-.27.7-.42.18.55.23 1.1.17 1.67a4.56 4.56 0 0 1-1.94 3.23c-.43.32-.9.61-1.34.91-1.38.94-1.76 2.03-1.24 3.62l.05.17a3.63 3.63 0 0 1-1.6-1.38 3.87 3.87 0 0 1-.63-2.1c0-.37 0-.74-.05-1.1-.13-.9-.55-1.3-1.33-1.32a1.56 1.56 0 0 0-1.63 1.26c0 .06-.03.12-.05.2Z"/><path fill="url(#a)" d="M7.77 36.35C6.4 35.11 6 32.51 6.57 30.62c.99 1.2 2.35 1.57 3.75 1.78 2.18.33 4.31.2 6.33-.78.23-.12.44-.27.7-.42.18.55.23 1.1.17 1.67a4.56 4.56 0 0 1-1.94 3.23c-.43.32-.9.61-1.34.91-1.38.94-1.76 2.03-1.24 3.62l.05.17a3.63 3.63 0 0 1-1.6-1.38 3.87 3.87 0 0 1-.63-2.1c0-.37 0-.74-.05-1.1-.13-.9-.55-1.3-1.33-1.32a1.56 1.56 0 0 0-1.63 1.26c0 .06-.03.12-.05.2Z"/><path fill="#17191E" d="M.02 30.31s4.02-1.95 8.05-1.95l3.04-9.4c.11-.45.44-.76.82-.76.37 0 .7.31.82.76l3.04 9.4c4.77 0 8.05 1.95 8.05 1.95L17 11.71c-.2-.56-.53-.91-.98-.91H7.83c-.44 0-.76.35-.97.9L.02 30.31Zm42.37-5.97c0 1.64-2.05 2.62-4.88 2.62-1.85 0-2.5-.45-2.5-1.41 0-1 .8-1.49 2.65-1.49 1.67 0 3.09.03 4.73.23v.05Zm.03-2.04a21.37 21.37 0 0 0-4.37-.36c-5.32 0-7.82 1.25-7.82 4.18 0 3.04 1.71 4.2 5.68 4.2 3.35 0 5.63-.84 6.46-2.92h.14c-.03.5-.05 1-.05 1.4 0 1.07.18 1.16 1.06 1.16h4.15a16.9 16.9 0 0 1-.36-4c0-1.67.06-2.93.06-4.62 0-3.45-2.07-5.64-8.56-5.64-2.8 0-5.9.48-8.26 1.19.22.93.54 2.83.7 4.06 2.04-.96 4.95-1.37 7.2-1.37 3.11 0 3.97.71 3.97 2.15v.57Zm11.37 3c-.56.07-1.33.07-2.12.07-.83 0-1.6-.03-2.12-.1l-.02.58c0 2.85 1.87 4.52 8.45 4.52 6.2 0 8.2-1.64 8.2-4.55 0-2.74-1.33-4.09-7.2-4.39-4.58-.2-4.99-.7-4.99-1.28 0-.66.59-1 3.65-1 3.18 0 4.03.43 4.03 1.35v.2a46.13 46.13 0 0 1 4.24.03l.02-.55c0-3.36-2.8-4.46-8.2-4.46-6.08 0-8.13 1.49-8.13 4.39 0 2.6 1.64 4.23 7.48 4.48 4.3.14 4.77.62 4.77 1.28 0 .7-.7 1.03-3.71 1.03-3.47 0-4.35-.48-4.35-1.47v-.13Zm19.82-12.05a17.5 17.5 0 0 1-6.24 3.48c.03.84.03 2.4.03 3.24l1.5.02c-.02 1.63-.04 3.6-.04 4.9 0 3.04 1.6 5.32 6.58 5.32 2.1 0 3.5-.23 5.23-.6a43.77 43.77 0 0 1-.46-4.13c-1.03.34-2.34.53-3.78.53-2 0-2.82-.55-2.82-2.13 0-1.37 0-2.65.03-3.84 2.57.02 5.13.07 6.64.11-.02-1.18.03-2.9.1-4.04-2.2.04-4.65.07-6.68.07l.07-2.93h-.16Zm13.46 6.04a767.33 767.33 0 0 1 .07-3.18H82.6c.07 1.96.07 3.98.07 6.92 0 2.95-.03 4.99-.07 6.93h5.18c-.09-1.37-.11-3.68-.11-5.65 0-3.1 1.26-4 4.12-4 1.33 0 2.28.16 3.1.46.03-1.16.26-3.43.4-4.43-.86-.25-1.81-.41-2.96-.41-2.46-.03-4.26.98-5.1 3.38l-.17-.02Zm22.55 3.65c0 2.5-1.8 3.66-4.64 3.66-2.81 0-4.61-1.1-4.61-3.66s1.82-3.52 4.61-3.52c2.82 0 4.64 1.03 4.64 3.52Zm4.71-.11c0-4.96-3.87-7.18-9.35-7.18-5.5 0-9.23 2.22-9.23 7.18 0 4.94 3.49 7.59 9.21 7.59 5.77 0 9.37-2.65 9.37-7.6Z"/><defs><linearGradient id="a" x1="6.33" x2="19.43" y1="40.8" y2="34.6" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient></defs></svg>
+1
src/assets/background.svg
···
+
<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="1024" fill="none"><path fill="url(#a)" fill-rule="evenodd" d="M-217.58 475.75c91.82-72.02 225.52-29.38 341.2-44.74C240 415.56 372.33 315.14 466.77 384.9c102.9 76.02 44.74 246.76 90.31 366.31 29.83 78.24 90.48 136.14 129.48 210.23 57.92 109.99 169.67 208.23 155.9 331.77-13.52 121.26-103.42 264.33-224.23 281.37-141.96 20.03-232.72-220.96-374.06-196.99-151.7 25.73-172.68 330.24-325.85 315.72-128.6-12.2-110.9-230.73-128.15-358.76-12.16-90.14 65.87-176.25 44.1-264.57-26.42-107.2-167.12-163.46-176.72-273.45-10.15-116.29 33.01-248.75 124.87-320.79Z" clip-rule="evenodd" style="opacity:.154"/><path fill="url(#b)" fill-rule="evenodd" d="M1103.43 115.43c146.42-19.45 275.33-155.84 413.5-103.59 188.09 71.13 409 212.64 407.06 413.88-1.94 201.25-259.28 278.6-414.96 405.96-130 106.35-240.24 294.39-405.6 265.3-163.7-28.8-161.93-274.12-284.34-386.66-134.95-124.06-436-101.46-445.82-284.6-9.68-180.38 247.41-246.3 413.54-316.9 101.01-42.93 207.83 21.06 316.62 6.61Z" clip-rule="evenodd" style="opacity:.154"/><defs><linearGradient id="b" x1="373" x2="1995.44" y1="1100" y2="118.03" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient><linearGradient id="a" x1="107.37" x2="1130.66" y1="1993.35" y2="1026.31" gradientUnits="userSpaceOnUse"><stop stop-color="#3245FF"/><stop offset="1" stop-color="#BC52EE"/></linearGradient></defs></svg>
+210
src/components/Welcome.astro
···
+
---
+
import astroLogo from '../assets/astro.svg';
+
import background from '../assets/background.svg';
+
---
+
+
<div id="container">
+
<img id="background" src={background.src} alt="" fetchpriority="high" />
+
<main>
+
<section id="hero">
+
<a href="https://astro.build"
+
><img src={astroLogo.src} width="115" height="48" alt="Astro Homepage" /></a
+
>
+
<h1>
+
To get started, open the <code><pre>src/pages</pre></code> directory in your project.
+
</h1>
+
<section id="links">
+
<a class="button" href="https://docs.astro.build">Read our docs</a>
+
<a href="https://astro.build/chat"
+
>Join our Discord <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127.14 96.36"
+
><path
+
fill="currentColor"
+
d="M107.7 8.07A105.15 105.15 0 0 0 81.47 0a72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0A72.37 72.37 0 0 0 45.64 0a105.89 105.89 0 0 0-26.25 8.09C2.79 32.65-1.71 56.6.54 80.21a105.73 105.73 0 0 0 32.17 16.15 77.7 77.7 0 0 0 6.89-11.11 68.42 68.42 0 0 1-10.85-5.18c.91-.66 1.8-1.34 2.66-2a75.57 75.57 0 0 0 64.32 0c.87.71 1.76 1.39 2.66 2a68.68 68.68 0 0 1-10.87 5.19 77 77 0 0 0 6.89 11.1 105.25 105.25 0 0 0 32.19-16.14c2.64-27.38-4.51-51.11-18.9-72.15ZM42.45 65.69C36.18 65.69 31 60 31 53s5-12.74 11.43-12.74S54 46 53.89 53s-5.05 12.69-11.44 12.69Zm42.24 0C78.41 65.69 73.25 60 73.25 53s5-12.74 11.44-12.74S96.23 46 96.12 53s-5.04 12.69-11.43 12.69Z"
+
></path></svg
+
>
+
</a>
+
</section>
+
</section>
+
</main>
+
+
<a href="https://astro.build/blog/astro-5/" id="news" class="box">
+
<svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"
+
><path
+
d="M24.667 12c1.333 1.414 2 3.192 2 5.334 0 4.62-4.934 5.7-7.334 12C18.444 28.567 18 27.456 18 26c0-4.642 6.667-7.053 6.667-14Zm-5.334-5.333c1.6 1.65 2.4 3.43 2.4 5.333 0 6.602-8.06 7.59-6.4 17.334C13.111 27.787 12 25.564 12 22.666c0-4.434 7.333-8 7.333-16Zm-6-5.333C15.111 3.555 16 5.556 16 7.333c0 8.333-11.333 10.962-5.333 22-3.488-.774-6-4-6-8 0-8.667 8.666-10 8.666-20Z"
+
fill="#111827"></path></svg
+
>
+
<h2>What's New in Astro 5.0?</h2>
+
<p>
+
From content layers to server islands, click to learn more about the new features and
+
improvements in Astro 5.0
+
</p>
+
</a>
+
</div>
+
+
<style>
+
#background {
+
position: fixed;
+
top: 0;
+
left: 0;
+
width: 100%;
+
height: 100%;
+
z-index: -1;
+
filter: blur(100px);
+
}
+
+
#container {
+
font-family: Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif;
+
height: 100%;
+
}
+
+
main {
+
height: 100%;
+
display: flex;
+
justify-content: center;
+
}
+
+
#hero {
+
display: flex;
+
align-items: start;
+
flex-direction: column;
+
justify-content: center;
+
padding: 16px;
+
}
+
+
h1 {
+
font-size: 22px;
+
margin-top: 0.25em;
+
}
+
+
#links {
+
display: flex;
+
gap: 16px;
+
}
+
+
#links a {
+
display: flex;
+
align-items: center;
+
padding: 10px 12px;
+
color: #111827;
+
text-decoration: none;
+
transition: color 0.2s;
+
}
+
+
#links a:hover {
+
color: rgb(78, 80, 86);
+
}
+
+
#links a svg {
+
height: 1em;
+
margin-left: 8px;
+
}
+
+
#links a.button {
+
color: white;
+
background: linear-gradient(83.21deg, #3245ff 0%, #bc52ee 100%);
+
box-shadow:
+
inset 0 0 0 1px rgba(255, 255, 255, 0.12),
+
inset 0 -2px 0 rgba(0, 0, 0, 0.24);
+
border-radius: 10px;
+
}
+
+
#links a.button:hover {
+
color: rgb(230, 230, 230);
+
box-shadow: none;
+
}
+
+
pre {
+
font-family:
+
ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono',
+
monospace;
+
font-weight: normal;
+
background: linear-gradient(14deg, #d83333 0%, #f041ff 100%);
+
-webkit-background-clip: text;
+
-webkit-text-fill-color: transparent;
+
background-clip: text;
+
margin: 0;
+
}
+
+
h2 {
+
margin: 0 0 1em;
+
font-weight: normal;
+
color: #111827;
+
font-size: 20px;
+
}
+
+
p {
+
color: #4b5563;
+
font-size: 16px;
+
line-height: 24px;
+
letter-spacing: -0.006em;
+
margin: 0;
+
}
+
+
code {
+
display: inline-block;
+
background:
+
linear-gradient(66.77deg, #f3cddd 0%, #f5cee7 100%) padding-box,
+
linear-gradient(155deg, #d83333 0%, #f041ff 18%, #f5cee7 45%) border-box;
+
border-radius: 8px;
+
border: 1px solid transparent;
+
padding: 6px 8px;
+
}
+
+
.box {
+
padding: 16px;
+
background: rgba(255, 255, 255, 1);
+
border-radius: 16px;
+
border: 1px solid white;
+
}
+
+
#news {
+
position: absolute;
+
bottom: 16px;
+
right: 16px;
+
max-width: 300px;
+
text-decoration: none;
+
transition: background 0.2s;
+
backdrop-filter: blur(50px);
+
}
+
+
#news:hover {
+
background: rgba(255, 255, 255, 0.55);
+
}
+
+
@media screen and (max-height: 368px) {
+
#news {
+
display: none;
+
}
+
}
+
+
@media screen and (max-width: 768px) {
+
#container {
+
display: flex;
+
flex-direction: column;
+
}
+
+
#hero {
+
display: block;
+
padding-top: 10%;
+
}
+
+
#links {
+
flex-wrap: wrap;
+
}
+
+
#links a.button {
+
padding: 14px 18px;
+
}
+
+
#news {
+
right: 16px;
+
left: 16px;
+
bottom: 2.5rem;
+
max-width: 100%;
+
}
+
+
h1 {
+
line-height: 1.5;
+
}
+
}
+
</style>
+22
src/layouts/Layout.astro
···
+
<!doctype html>
+
<html lang="en">
+
<head>
+
<meta charset="UTF-8" />
+
<meta name="viewport" content="width=device-width" />
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
+
<meta name="generator" content={Astro.generator} />
+
<title>Astro Basics</title>
+
</head>
+
<body>
+
<slot />
+
</body>
+
</html>
+
+
<style>
+
html,
+
body {
+
margin: 0;
+
width: 100%;
+
height: 100%;
+
}
+
</style>
+11
src/pages/index.astro
···
+
---
+
import Welcome from '../components/Welcome.astro';
+
import Layout from '../layouts/Layout.astro';
+
+
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
+
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
+
---
+
+
<Layout>
+
<Welcome />
+
</Layout>
+5
tsconfig.json
···
+
{
+
"extends": "astro/tsconfigs/strict",
+
"include": [".astro/types.d.ts", "**/*"],
+
"exclude": ["dist"]
+
}