From e70e07af88ba2a69e3a0cde9db0d742e2cb84d25 Mon Sep 17 00:00:00 2001 From: Eshan Roy <148610067+eshanized@users.noreply.github.com> Date: Wed, 6 Nov 2024 19:08:38 +0530 Subject: [PATCH] chore(bump): clean all files --- README.md | 54 - astro.config.mjs | 27 - config.sh | 56 - package-lock.json | 8797 ------------------------- package.json | 19 - public/favicon.svg | 1 - push.sh | 52 - src/assets/houston.webp | Bin 98506 -> 0 bytes src/content/config.ts | 6 - src/content/docs/guides/example.md | 11 - src/content/docs/index.mdx | 36 - src/content/docs/reference/example.md | 11 - src/env.d.ts | 2 - tsconfig.json | 3 - 14 files changed, 9075 deletions(-) delete mode 100644 README.md delete mode 100644 astro.config.mjs delete mode 100755 config.sh delete mode 100644 package-lock.json delete mode 100644 package.json delete mode 100644 public/favicon.svg delete mode 100755 push.sh delete mode 100644 src/assets/houston.webp delete mode 100644 src/content/config.ts delete mode 100644 src/content/docs/guides/example.md delete mode 100644 src/content/docs/index.mdx delete mode 100644 src/content/docs/reference/example.md delete mode 100644 src/env.d.ts delete mode 100644 tsconfig.json diff --git a/README.md b/README.md deleted file mode 100644 index b51abaab..00000000 --- a/README.md +++ /dev/null @@ -1,54 +0,0 @@ -# Starlight Starter Kit: Basics - -[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) - -``` -npm create astro@latest -- --template starlight -``` - -[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) -[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/basics) -[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fbasics&project-name=my-starlight-docs&repository-name=my-starlight-docs) - -> πŸ§‘β€πŸš€ **Seasoned astronaut?** Delete this file. Have fun! - -## πŸš€ Project Structure - -Inside of your Astro + Starlight project, you'll see the following folders and files: - -``` -. -β”œβ”€β”€ public/ -β”œβ”€β”€ src/ -β”‚ β”œβ”€β”€ assets/ -β”‚ β”œβ”€β”€ content/ -β”‚ β”‚ β”œβ”€β”€ docs/ -β”‚ β”‚ └── config.ts -β”‚ └── env.d.ts -β”œβ”€β”€ astro.config.mjs -β”œβ”€β”€ package.json -└── tsconfig.json -``` - -Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. - -Images can be added to `src/assets/` and embedded in Markdown with a relative link. - -Static assets, like favicons, can be placed in the `public/` directory. - -## 🧞 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? - -Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat). diff --git a/astro.config.mjs b/astro.config.mjs deleted file mode 100644 index 429391fc..00000000 --- a/astro.config.mjs +++ /dev/null @@ -1,27 +0,0 @@ -import { defineConfig } from 'astro/config'; -import starlight from '@astrojs/starlight'; - -// https://astro.build/config -export default defineConfig({ - integrations: [ - starlight({ - title: 'SNIGDHA OS', - social: { - github: 'https://github.com/withastro/starlight', - }, - sidebar: [ - { - label: 'Guides', - items: [ - // Each item here is one entry in the navigation menu. - { label: 'Example Guide', link: '/guides/example/' }, - ], - }, - { - label: 'Reference', - autogenerate: { directory: 'reference' }, - }, - ], - }), - ], -}); diff --git a/config.sh b/config.sh deleted file mode 100755 index b9290e34..00000000 --- a/config.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash - -# Author : ESHAN ROY -# Author URI : https://eshanized.github.io - -# NOTE : Run at your own Risk! - -# Function to print GitHub credential configuration options -print_options() { - echo "πŸ”’ Configure GitHub Credentials:" - echo "1. πŸ“ Enter GitHub username and password" - echo "2. πŸ”‘ Enter GitHub personal access token" - echo "3. πŸ“ Use existing GitHub credentials from ~/.gitconfig" - echo "4. Github user and email config" -} - -# Print options and prompt user to select -print_options -echo "Enter the number of your chosen option:" -read -r OPTION - -# Handle user selection -case $OPTION in - 1) - echo "Enter your GitHub username:" - read -r USERNAME - echo "Enter your GitHub password:" - read -s PASSWORD - git config --global credential.helper store - git config --global credential.username $USERNAME - git config --global credential.password $PASSWORD - ;; - 2) - echo "Enter your GitHub personal access token:" - read -r TOKEN - git config --global credential.helper store - git config --global credential.username "your-github-username" - git config --global credential.password $TOKEN - ;; - 3) - echo "Using existing GitHub credentials from ~/.gitconfig" - ;; - 4) - echo "Enter github email address: " - read -r USEREMAIL - echo "Enter GitHub username: " - read -r USERNAME - git config --global user.email "$USEREMAIL" - git config --global user.name "$USERNAME" - ;; - *) - echo "Invalid option. Exiting." - exit 1;; -esac - -echo "GitHub credentials configured successfully! πŸ‘" \ No newline at end of file diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index bd699cde..00000000 --- a/package-lock.json +++ /dev/null @@ -1,8797 +0,0 @@ -{ - "name": "Snigdha-OS.github.io", - "version": "0.0.1", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "version": "0.0.1", - "dependencies": { - "@astrojs/check": "^0.7.0", - "@astrojs/starlight": "^0.24.3", - "astro": "^4.10.2", - "sharp": "^0.32.5", - "typescript": "^5.4.5" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@astrojs/check": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/@astrojs/check/-/check-0.7.0.tgz", - "integrity": "sha512-UTqwOeKNu9IYZmJXEeWnQuTdSd/pX58Hl4TUARsMlT97SVDL//kLBE4T/ctxRz6J573N87oE5ddtW/uOOnQTug==", - "license": "MIT", - "dependencies": { - "@astrojs/language-server": "^2.10.0", - "chokidar": "^3.5.3", - "fast-glob": "^3.3.1", - "kleur": "^4.1.5", - "yargs": "^17.7.2" - }, - "bin": { - "astro-check": "dist/bin.js" - }, - "peerDependencies": { - "typescript": "^5.0.0" - } - }, - "node_modules/@astrojs/compiler": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.8.0.tgz", - "integrity": "sha512-yrpD1WRGqsJwANaDIdtHo+YVjvIOFAjC83lu5qENIgrafwZcJgSXDuwVMXOgok4tFzpeKLsFQ6c3FoUdloLWBQ==", - "license": "MIT" - }, - "node_modules/@astrojs/internal-helpers": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.4.0.tgz", - "integrity": "sha512-6B13lz5n6BrbTqCTwhXjJXuR1sqiX/H6rTxzlXx+lN1NnV4jgnq/KJldCQaUWJzPL5SiWahQyinxAbxQtwgPHA==", - "license": "MIT" - }, - "node_modules/@astrojs/language-server": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.10.0.tgz", - "integrity": "sha512-crHXpqYfA5qWioiuZnZFpTsNItgBlF1f0S9MzDYS7/pfCALkHNJ7K3w9U/j0uMKymsT4hC7BfMaX0DYlfdSzHg==", - "license": "MIT", - "dependencies": { - "@astrojs/compiler": "^2.7.0", - "@jridgewell/sourcemap-codec": "^1.4.15", - "@volar/kit": "~2.2.3", - "@volar/language-core": "~2.2.3", - "@volar/language-server": "~2.2.3", - "@volar/language-service": "~2.2.3", - "@volar/typescript": "~2.2.3", - "fast-glob": "^3.2.12", - "volar-service-css": "0.0.45", - "volar-service-emmet": "0.0.45", - "volar-service-html": "0.0.45", - "volar-service-prettier": "0.0.45", - "volar-service-typescript": "0.0.45", - "volar-service-typescript-twoslash-queries": "0.0.45", - "vscode-html-languageservice": "^5.2.0", - "vscode-uri": "^3.0.8" - }, - "bin": { - "astro-ls": "bin/nodeServer.js" - }, - "peerDependencies": { - "prettier": "^3.0.0", - "prettier-plugin-astro": ">=0.11.0" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - }, - "prettier-plugin-astro": { - "optional": true - } - } - }, - "node_modules/@astrojs/markdown-remark": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-5.1.0.tgz", - "integrity": "sha512-S6Z3K2hOB7MfjeDoHsotnP/q2UsnEDB8NlNAaCjMDsGBZfTUbWxyLW3CaphEWw08f6KLZi2ibK9yC3BaMhh2NQ==", - "license": "MIT", - "dependencies": { - "@astrojs/prism": "^3.1.0", - "github-slugger": "^2.0.0", - "hast-util-from-html": "^2.0.0", - "hast-util-to-text": "^4.0.0", - "import-meta-resolve": "^4.0.0", - "mdast-util-definitions": "^6.0.0", - "rehype-raw": "^7.0.0", - "rehype-stringify": "^10.0.0", - "remark-gfm": "^4.0.0", - "remark-parse": "^11.0.0", - "remark-rehype": "^11.0.0", - "remark-smartypants": "^2.0.0", - "shiki": "^1.1.2", - "unified": "^11.0.4", - "unist-util-remove-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "unist-util-visit-parents": "^6.0.0", - "vfile": "^6.0.1" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/@types/nlcst": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-1.0.4.tgz", - "integrity": "sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", - "license": "MIT" - }, - "node_modules/@astrojs/markdown-remark/node_modules/nlcst-to-string": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-3.1.1.tgz", - "integrity": "sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==", - "license": "MIT", - "dependencies": { - "@types/nlcst": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/parse-latin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-5.0.1.tgz", - "integrity": "sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==", - "license": "MIT", - "dependencies": { - "nlcst-to-string": "^3.0.0", - "unist-util-modify-children": "^3.0.0", - "unist-util-visit-children": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/remark-smartypants": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-2.1.0.tgz", - "integrity": "sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==", - "license": "MIT", - "dependencies": { - "retext": "^8.1.0", - "retext-smartypants": "^5.2.0", - "unist-util-visit": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/retext/-/retext-8.1.0.tgz", - "integrity": "sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==", - "license": "MIT", - "dependencies": { - "@types/nlcst": "^1.0.0", - "retext-latin": "^3.0.0", - "retext-stringify": "^3.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-latin": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-3.1.0.tgz", - "integrity": "sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==", - "license": "MIT", - "dependencies": { - "@types/nlcst": "^1.0.0", - "parse-latin": "^5.0.0", - "unherit": "^3.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-latin/node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-latin/node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-smartypants": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-5.2.0.tgz", - "integrity": "sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==", - "license": "MIT", - "dependencies": { - "@types/nlcst": "^1.0.0", - "nlcst-to-string": "^3.0.0", - "unified": "^10.0.0", - "unist-util-visit": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-smartypants/node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-smartypants/node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-smartypants/node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-smartypants/node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-stringify": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-3.1.0.tgz", - "integrity": "sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==", - "license": "MIT", - "dependencies": { - "@types/nlcst": "^1.0.0", - "nlcst-to-string": "^3.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-stringify/node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext-stringify/node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext/node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/retext/node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/unist-util-modify-children": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-3.1.1.tgz", - "integrity": "sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "array-iterate": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/unist-util-visit-children": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-2.0.2.tgz", - "integrity": "sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/markdown-remark/node_modules/vfile-message": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@astrojs/mdx": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-3.1.1.tgz", - "integrity": "sha512-Y6Ath3E/DgDsMdbenXai+Qm6DGCMnR6rvgHwK2PUQTs6iKF+oQ8SfZ1zPC1kt22rP1PnA8siYSQhNL91K4eukQ==", - "license": "MIT", - "dependencies": { - "@astrojs/markdown-remark": "5.1.0", - "@mdx-js/mdx": "^3.0.1", - "acorn": "^8.12.0", - "es-module-lexer": "^1.5.3", - "estree-util-visit": "^2.0.0", - "github-slugger": "^2.0.0", - "gray-matter": "^4.0.3", - "hast-util-to-html": "^9.0.1", - "kleur": "^4.1.5", - "rehype-raw": "^7.0.0", - "remark-gfm": "^4.0.0", - "remark-smartypants": "^3.0.1", - "source-map": "^0.7.4", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.1" - }, - "engines": { - "node": "^18.17.1 || ^20.3.0 || >=21.0.0" - }, - "peerDependencies": { - "astro": "^4.8.0" - } - }, - "node_modules/@astrojs/prism": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.1.0.tgz", - "integrity": "sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==", - "license": "MIT", - "dependencies": { - "prismjs": "^1.29.0" - }, - "engines": { - "node": "^18.17.1 || ^20.3.0 || >=21.0.0" - } - }, - "node_modules/@astrojs/sitemap": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.1.6.tgz", - "integrity": "sha512-1Qp2NvAzVImqA6y+LubKi1DVhve/hXXgFvB0szxiipzh7BvtuKe4oJJ9dXSqaubaTkt4nMa6dv6RCCAYeB6xaQ==", - "license": "MIT", - "dependencies": { - "sitemap": "^7.1.2", - "stream-replace-string": "^2.0.0", - "zod": "^3.23.8" - } - }, - "node_modules/@astrojs/starlight": { - "version": "0.24.4", - "resolved": "https://registry.npmjs.org/@astrojs/starlight/-/starlight-0.24.4.tgz", - "integrity": "sha512-rED8LPQwsXlgclfdHO+okUGcirof1prrxZLuKWp380xC/T7u2qQ5b1gnKqpM+92x+vhs8GYT7mHGKz9VctwdUg==", - "license": "MIT", - "dependencies": { - "@astrojs/mdx": "^3.1.0", - "@astrojs/sitemap": "^3.1.5", - "@pagefind/default-ui": "^1.0.3", - "@types/hast": "^3.0.4", - "@types/mdast": "^4.0.4", - "astro-expressive-code": "^0.35.3", - "bcp-47": "^2.1.0", - "hast-util-from-html": "^2.0.1", - "hast-util-select": "^6.0.2", - "hast-util-to-string": "^3.0.0", - "hastscript": "^9.0.0", - "mdast-util-directive": "^3.0.0", - "mdast-util-to-markdown": "^2.1.0", - "pagefind": "^1.0.3", - "rehype": "^13.0.1", - "rehype-format": "^5.0.0", - "remark-directive": "^3.0.0", - "unified": "^11.0.4", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.1" - }, - "peerDependencies": { - "astro": "^4.8.6" - } - }, - "node_modules/@astrojs/telemetry": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.1.0.tgz", - "integrity": "sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==", - "license": "MIT", - "dependencies": { - "ci-info": "^4.0.0", - "debug": "^4.3.4", - "dlv": "^1.1.3", - "dset": "^3.1.3", - "is-docker": "^3.0.0", - "is-wsl": "^3.0.0", - "which-pm-runs": "^1.1.0" - }, - "engines": { - "node": "^18.17.1 || ^20.3.0 || >=21.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", - "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", - "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", - "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-jsx": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@ctrl/tinycolor": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.1.0.tgz", - "integrity": "sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==", - "license": "MIT", - "engines": { - "node": ">=14" - } - }, - "node_modules/@emmetio/abbreviation": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.3.3.tgz", - "integrity": "sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==", - "license": "MIT", - "dependencies": { - "@emmetio/scanner": "^1.0.4" - } - }, - "node_modules/@emmetio/css-abbreviation": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.8.tgz", - "integrity": "sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==", - "license": "MIT", - "dependencies": { - "@emmetio/scanner": "^1.0.4" - } - }, - "node_modules/@emmetio/css-parser": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@emmetio/css-parser/-/css-parser-0.4.0.tgz", - "integrity": "sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==", - "license": "MIT", - "dependencies": { - "@emmetio/stream-reader": "^2.2.0", - "@emmetio/stream-reader-utils": "^0.1.0" - } - }, - "node_modules/@emmetio/html-matcher": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@emmetio/html-matcher/-/html-matcher-1.3.0.tgz", - "integrity": "sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==", - "license": "ISC", - "dependencies": { - "@emmetio/scanner": "^1.0.0" - } - }, - "node_modules/@emmetio/scanner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.4.tgz", - "integrity": "sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==", - "license": "MIT" - }, - "node_modules/@emmetio/stream-reader": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@emmetio/stream-reader/-/stream-reader-2.2.0.tgz", - "integrity": "sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==", - "license": "MIT" - }, - "node_modules/@emmetio/stream-reader-utils": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@emmetio/stream-reader-utils/-/stream-reader-utils-0.1.0.tgz", - "integrity": "sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==", - "license": "MIT" - }, - "node_modules/@emnapi/runtime": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.2.0.tgz", - "integrity": "sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==", - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@expressive-code/core": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/@expressive-code/core/-/core-0.35.3.tgz", - "integrity": "sha512-SYamcarAjufYhbuK/kfvJSvAXLsfnM7DKc78R7Dq4B73R5bKQK2m5zR0l57tXr4yp2C5Z8lu5xZncdwWxcmPdg==", - "license": "MIT", - "dependencies": { - "@ctrl/tinycolor": "^4.0.4", - "hast-util-select": "^6.0.2", - "hast-util-to-html": "^9.0.1", - "hast-util-to-text": "^4.0.1", - "hastscript": "^9.0.0", - "postcss": "^8.4.38", - "postcss-nested": "^6.0.1", - "unist-util-visit": "^5.0.0", - "unist-util-visit-parents": "^6.0.1" - } - }, - "node_modules/@expressive-code/plugin-frames": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/@expressive-code/plugin-frames/-/plugin-frames-0.35.3.tgz", - "integrity": "sha512-QYytMq6IsaHgTofQ5b6d+CnbxkqLdikSF2hC+IL/ZZwPYHYZoUlmjIwmJZhY4/hHqJGELrtZsyVdlt06RntgmA==", - "license": "MIT", - "dependencies": { - "@expressive-code/core": "^0.35.3" - } - }, - "node_modules/@expressive-code/plugin-shiki": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/@expressive-code/plugin-shiki/-/plugin-shiki-0.35.3.tgz", - "integrity": "sha512-aFQBPepv0zhVXqJFAvfQ4vXYv/meJKiqmEEKSxdjAfwXllIV49PDlnGEXmbGYjR4hUQQjbfDgzAbrbfePc3YVQ==", - "license": "MIT", - "dependencies": { - "@expressive-code/core": "^0.35.3", - "shiki": "^1.1.7" - } - }, - "node_modules/@expressive-code/plugin-text-markers": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/@expressive-code/plugin-text-markers/-/plugin-text-markers-0.35.3.tgz", - "integrity": "sha512-gDdnQrfDRXw5Y+PKHJDkpAUdf2pthYOthGcgy3JB8GOTQ3EL1h+755Ct/bGc4MR6jn+dgnQP47uHMWQaccvN6Q==", - "license": "MIT", - "dependencies": { - "@expressive-code/core": "^0.35.3" - } - }, - "node_modules/@img/sharp-darwin-arm64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.4.tgz", - "integrity": "sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "glibc": ">=2.26", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.0.2" - } - }, - "node_modules/@img/sharp-darwin-x64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.4.tgz", - "integrity": "sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "glibc": ">=2.26", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.0.2" - } - }, - "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.2.tgz", - "integrity": "sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "macos": ">=11", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.2.tgz", - "integrity": "sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "macos": ">=10.13", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.2.tgz", - "integrity": "sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==", - "cpu": [ - "arm" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.28", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.2.tgz", - "integrity": "sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.26", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.2.tgz", - "integrity": "sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==", - "cpu": [ - "s390x" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.28", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.2.tgz", - "integrity": "sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.26", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.2.tgz", - "integrity": "sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==", - "cpu": [ - "arm64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "musl": ">=1.2.2", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.2.tgz", - "integrity": "sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==", - "cpu": [ - "x64" - ], - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "musl": ">=1.2.2", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-linux-arm": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.4.tgz", - "integrity": "sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==", - "cpu": [ - "arm" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.28", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.0.2" - } - }, - "node_modules/@img/sharp-linux-arm64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.4.tgz", - "integrity": "sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.26", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.0.2" - } - }, - "node_modules/@img/sharp-linux-s390x": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.4.tgz", - "integrity": "sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==", - "cpu": [ - "s390x" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.31", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.0.2" - } - }, - "node_modules/@img/sharp-linux-x64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.4.tgz", - "integrity": "sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "glibc": ">=2.26", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.0.2" - } - }, - "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.4.tgz", - "integrity": "sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "musl": ">=1.2.2", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.0.2" - } - }, - "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.4.tgz", - "integrity": "sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "musl": ">=1.2.2", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.0.2" - } - }, - "node_modules/@img/sharp-wasm32": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.4.tgz", - "integrity": "sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==", - "cpu": [ - "wasm32" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", - "optional": true, - "dependencies": { - "@emnapi/runtime": "^1.1.1" - }, - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-win32-ia32": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.4.tgz", - "integrity": "sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==", - "cpu": [ - "ia32" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-win32-x64": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.4.tgz", - "integrity": "sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND LGPL-3.0-or-later", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0", - "yarn": ">=3.2.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@mdx-js/mdx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.0.1.tgz", - "integrity": "sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdx": "^2.0.0", - "collapse-white-space": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-build-jsx": "^3.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "estree-util-to-js": "^2.0.0", - "estree-walker": "^3.0.0", - "hast-util-to-estree": "^3.0.0", - "hast-util-to-jsx-runtime": "^2.0.0", - "markdown-extensions": "^2.0.0", - "periscopic": "^3.0.0", - "remark-mdx": "^3.0.0", - "remark-parse": "^11.0.0", - "remark-rehype": "^11.0.0", - "source-map": "^0.7.0", - "unified": "^11.0.0", - "unist-util-position-from-estree": "^2.0.0", - "unist-util-stringify-position": "^4.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pagefind/darwin-arm64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pagefind/darwin-arm64/-/darwin-arm64-1.1.0.tgz", - "integrity": "sha512-SLsXNLtSilGZjvqis8sX42fBWsWAVkcDh1oerxwqbac84HbiwxpxOC2jm8hRwcR0Z55HPZPWO77XeRix/8GwTg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@pagefind/darwin-x64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pagefind/darwin-x64/-/darwin-x64-1.1.0.tgz", - "integrity": "sha512-QjQSE/L5oS1C8N8GdljGaWtjCBMgMtfrPAoiCmINTu9Y9dp0ggAyXvF8K7Qg3VyIMYJ6v8vg2PN7Z3b+AaAqUA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@pagefind/default-ui": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pagefind/default-ui/-/default-ui-1.1.0.tgz", - "integrity": "sha512-+XiAJAK++C64nQcD7s3Prdmd5S92lT05fwjOxm0L1jj80jbL+tmvcqkkFnPpoqhnicIPgcAX/Y5W0HRZnBt35w==", - "license": "MIT" - }, - "node_modules/@pagefind/linux-arm64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pagefind/linux-arm64/-/linux-arm64-1.1.0.tgz", - "integrity": "sha512-8zjYCa2BtNEL7KnXtysPtBELCyv5DSQ4yHeK/nsEq6w4ToAMTBl0K06khqxdSGgjMSwwrxvLzq3so0LC5Q14dA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@pagefind/linux-x64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pagefind/linux-x64/-/linux-x64-1.1.0.tgz", - "integrity": "sha512-4lsg6VB7A6PWTwaP8oSmXV4O9H0IHX7AlwTDcfyT+YJo/sPXOVjqycD5cdBgqNLfUk8B9bkWcTDCRmJbHrKeCw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@pagefind/windows-x64": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pagefind/windows-x64/-/windows-x64-1.1.0.tgz", - "integrity": "sha512-OboCM76BcMKT9IoSfZuFhiqMRgTde8x4qDDvKulFmycgiJrlL5WnIqBHJLQxZq+o2KyZpoHF97iwsGAm8c32sQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", - "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", - "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", - "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", - "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", - "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", - "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", - "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", - "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", - "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", - "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", - "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", - "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", - "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", - "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", - "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", - "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@shikijs/core": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.7.0.tgz", - "integrity": "sha512-O6j27b7dGmJbR3mjwh/aHH8Ld+GQvA0OQsNO43wKWnqbAae3AYXrhFyScHGX8hXZD6vX2ngjzDFkZY5srtIJbQ==", - "license": "MIT" - }, - "node_modules/@types/acorn": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", - "license": "MIT", - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "dependencies": { - "@types/ms": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "license": "MIT" - }, - "node_modules/@types/estree-jsx": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", - "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", - "license": "MIT", - "dependencies": { - "@types/estree": "*" - } - }, - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/mdx": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", - "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", - "license": "MIT" - }, - "node_modules/@types/ms": { - "version": "0.7.34", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", - "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/node": { - "version": "20.14.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.7.tgz", - "integrity": "sha512-uTr2m2IbJJucF3KUxgnGOZvYbN0QgkGyWxG6973HCpMYFy2KfcgYuIwkJQMQkt1VbBMlvWRbpshFTLxnxCZjKQ==", - "license": "MIT", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/sax": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", - "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==", - "license": "MIT" - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "license": "ISC" - }, - "node_modules/@volar/kit": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/kit/-/kit-2.2.5.tgz", - "integrity": "sha512-Bmn0UCaT43xUGGRwcmFG9lKhiCCLjRT4ScSLLPn5C9ltUcSGnIFFDlbZZa1PreHYHq25/4zkXt9Ap32klAh17w==", - "license": "MIT", - "dependencies": { - "@volar/language-service": "2.2.5", - "@volar/typescript": "2.2.5", - "typesafe-path": "^0.2.2", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-uri": "^3.0.8" - }, - "peerDependencies": { - "typescript": "*" - } - }, - "node_modules/@volar/language-core": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.2.5.tgz", - "integrity": "sha512-2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==", - "license": "MIT", - "dependencies": { - "@volar/source-map": "2.2.5" - } - }, - "node_modules/@volar/language-server": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/language-server/-/language-server-2.2.5.tgz", - "integrity": "sha512-PV/jkUkI+m72HTXwnY7hsGqLY3VNi96ZRoWFRzVC9QG/853bixxjveXPJIiydMJ9I739lO3kcj3hnGrF5Sm+HA==", - "license": "MIT", - "dependencies": { - "@volar/language-core": "2.2.5", - "@volar/language-service": "2.2.5", - "@volar/snapshot-document": "2.2.5", - "@volar/typescript": "2.2.5", - "@vscode/l10n": "^0.0.16", - "path-browserify": "^1.0.1", - "request-light": "^0.7.0", - "vscode-languageserver": "^9.0.1", - "vscode-languageserver-protocol": "^3.17.5", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-uri": "^3.0.8" - } - }, - "node_modules/@volar/language-service": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/language-service/-/language-service-2.2.5.tgz", - "integrity": "sha512-a97e/0uCe+uSu23F4zvgvldqJtZe6jugQeEHWjTfhgOEO8+Be0t5CZNNVItQqmPyAsD8eElg0S/cP6uxvCmCSQ==", - "license": "MIT", - "dependencies": { - "@volar/language-core": "2.2.5", - "vscode-languageserver-protocol": "^3.17.5", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-uri": "^3.0.8" - } - }, - "node_modules/@volar/snapshot-document": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/snapshot-document/-/snapshot-document-2.2.5.tgz", - "integrity": "sha512-MTOvWVKxM7ugKO3Amffkv2pND03fe2JtfygYaputqjVFML7YxtTXj8SPnI2pODLeSwOKzDYL6Q8r5j6Y5AgUzQ==", - "license": "MIT", - "dependencies": { - "vscode-languageserver-protocol": "^3.17.5", - "vscode-languageserver-textdocument": "^1.0.11" - } - }, - "node_modules/@volar/source-map": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.2.5.tgz", - "integrity": "sha512-wrOEIiZNf4E+PWB0AxyM4tfhkfldPsb3bxg8N6FHrxJH2ohar7aGu48e98bp3pR9HUA7P/pR9VrLmkTrgCCnWQ==", - "license": "MIT", - "dependencies": { - "muggle-string": "^0.4.0" - } - }, - "node_modules/@volar/typescript": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.2.5.tgz", - "integrity": "sha512-eSV/n75+ppfEVugMC/salZsI44nXDPAyL6+iTYCNLtiLHGJsnMv9GwiDMujrvAUj/aLQyqRJgYtXRoxop2clCw==", - "license": "MIT", - "dependencies": { - "@volar/language-core": "2.2.5", - "path-browserify": "^1.0.1" - } - }, - "node_modules/@vscode/emmet-helper": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.9.3.tgz", - "integrity": "sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==", - "license": "MIT", - "dependencies": { - "emmet": "^2.4.3", - "jsonc-parser": "^2.3.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-languageserver-types": "^3.15.1", - "vscode-uri": "^2.1.2" - } - }, - "node_modules/@vscode/emmet-helper/node_modules/vscode-uri": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", - "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==", - "license": "MIT" - }, - "node_modules/@vscode/l10n": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.16.tgz", - "integrity": "sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==", - "license": "MIT" - }, - "node_modules/acorn": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", - "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.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==", - "license": "ISC", - "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==", - "license": "MIT", - "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==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "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==", - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "license": "MIT" - }, - "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==", - "license": "Python-2.0" - }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "license": "Apache-2.0", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/astring": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz", - "integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==", - "license": "MIT", - "bin": { - "astring": "bin/astring" - } - }, - "node_modules/astro": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/astro/-/astro-4.11.0.tgz", - "integrity": "sha512-3VWxz/08sChQIX68tuE7Y769DUdjsT3Zq2/y4SkrDRlwN9IZ/aebwcRWr5a2yMSdO2vpFxtEdobq0mKnMlLErg==", - "license": "MIT", - "dependencies": { - "@astrojs/compiler": "^2.8.0", - "@astrojs/internal-helpers": "0.4.0", - "@astrojs/markdown-remark": "5.1.0", - "@astrojs/telemetry": "3.1.0", - "@babel/core": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/plugin-transform-react-jsx": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "@types/babel__core": "^7.20.5", - "@types/cookie": "^0.6.0", - "acorn": "^8.12.0", - "aria-query": "^5.3.0", - "axobject-query": "^4.0.0", - "boxen": "^7.1.1", - "chokidar": "^3.6.0", - "ci-info": "^4.0.0", - "clsx": "^2.1.1", - "common-ancestor-path": "^1.0.1", - "cookie": "^0.6.0", - "cssesc": "^3.0.0", - "debug": "^4.3.5", - "deterministic-object-hash": "^2.0.2", - "devalue": "^5.0.0", - "diff": "^5.2.0", - "dlv": "^1.1.3", - "dset": "^3.1.3", - "es-module-lexer": "^1.5.3", - "esbuild": "^0.21.5", - "estree-walker": "^3.0.3", - "execa": "^8.0.1", - "fast-glob": "^3.3.2", - "flattie": "^1.1.1", - "github-slugger": "^2.0.0", - "gray-matter": "^4.0.3", - "html-escaper": "^3.0.3", - "http-cache-semantics": "^4.1.1", - "js-yaml": "^4.1.0", - "kleur": "^4.1.5", - "magic-string": "^0.30.10", - "mrmime": "^2.0.0", - "ora": "^8.0.1", - "p-limit": "^5.0.0", - "p-queue": "^8.0.1", - "path-to-regexp": "^6.2.2", - "preferred-pm": "^3.1.3", - "prompts": "^2.4.2", - "rehype": "^13.0.1", - "resolve": "^1.22.8", - "semver": "^7.6.2", - "shiki": "^1.6.5", - "string-width": "^7.1.0", - "strip-ansi": "^7.1.0", - "tsconfck": "^3.1.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.1", - "vite": "^5.3.1", - "vitefu": "^0.2.5", - "which-pm": "^2.2.0", - "yargs-parser": "^21.1.1", - "zod": "^3.23.8", - "zod-to-json-schema": "^3.23.0" - }, - "bin": { - "astro": "astro.js" - }, - "engines": { - "node": "^18.17.1 || ^20.3.0 || >=21.0.0", - "npm": ">=9.6.5", - "pnpm": ">=7.1.0" - }, - "optionalDependencies": { - "sharp": "^0.33.3" - } - }, - "node_modules/astro-expressive-code": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/astro-expressive-code/-/astro-expressive-code-0.35.3.tgz", - "integrity": "sha512-f1L1m3J3EzZHDEox6TXmuKo5fTSbaNxE/HU0S0UQmvlCowtOKnU/LOsoDwsbQSYGKz+fdLRPsCjFMiKqEoyfcw==", - "license": "MIT", - "dependencies": { - "rehype-expressive-code": "^0.35.3" - }, - "peerDependencies": { - "astro": "^4.0.0-beta || ^3.3.0" - } - }, - "node_modules/astro/node_modules/sharp": { - "version": "0.33.4", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz", - "integrity": "sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==", - "hasInstallScript": true, - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "color": "^4.2.3", - "detect-libc": "^2.0.3", - "semver": "^7.6.0" - }, - "engines": { - "libvips": ">=8.15.2", - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-darwin-arm64": "0.33.4", - "@img/sharp-darwin-x64": "0.33.4", - "@img/sharp-libvips-darwin-arm64": "1.0.2", - "@img/sharp-libvips-darwin-x64": "1.0.2", - "@img/sharp-libvips-linux-arm": "1.0.2", - "@img/sharp-libvips-linux-arm64": "1.0.2", - "@img/sharp-libvips-linux-s390x": "1.0.2", - "@img/sharp-libvips-linux-x64": "1.0.2", - "@img/sharp-libvips-linuxmusl-arm64": "1.0.2", - "@img/sharp-libvips-linuxmusl-x64": "1.0.2", - "@img/sharp-linux-arm": "0.33.4", - "@img/sharp-linux-arm64": "0.33.4", - "@img/sharp-linux-s390x": "0.33.4", - "@img/sharp-linux-x64": "0.33.4", - "@img/sharp-linuxmusl-arm64": "0.33.4", - "@img/sharp-linuxmusl-x64": "0.33.4", - "@img/sharp-wasm32": "0.33.4", - "@img/sharp-win32-ia32": "0.33.4", - "@img/sharp-win32-x64": "0.33.4" - } - }, - "node_modules/axobject-query": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", - "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", - "license": "Apache-2.0", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/b4a": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", - "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", - "license": "Apache-2.0" - }, - "node_modules/bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/bare-events": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", - "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", - "license": "Apache-2.0", - "optional": true - }, - "node_modules/bare-fs": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.1.tgz", - "integrity": "sha512-W/Hfxc/6VehXlsgFtbB5B4xFcsCl+pAh30cYhoFyXErf6oGrwjh8SwiPAdHgpmWonKuYpZgGywN0SXt7dgsADA==", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "bare-events": "^2.0.0", - "bare-path": "^2.0.0", - "bare-stream": "^2.0.0" - } - }, - "node_modules/bare-os": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.0.tgz", - "integrity": "sha512-v8DTT08AS/G0F9xrhyLtepoo9EJBJ85FRSMbu1pQUlAf6A8T0tEEQGMVObWeqpjhSPXsE0VGlluFBJu2fdoTNg==", - "license": "Apache-2.0", - "optional": true - }, - "node_modules/bare-path": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", - "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "bare-os": "^2.1.0" - } - }, - "node_modules/bare-stream": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.1.3.tgz", - "integrity": "sha512-tiDAH9H/kP+tvNO5sczyn9ZAA7utrSMobyDchsnyyXBuUe2FSQWbxhtuHB8jwpHYYevVo2UJpcmvvjrbHboUUQ==", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "streamx": "^2.18.0" - } - }, - "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==", - "license": "MIT" - }, - "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" - } - ], - "license": "MIT" - }, - "node_modules/bcp-47": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.0.tgz", - "integrity": "sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==", - "license": "MIT", - "dependencies": { - "is-alphabetical": "^2.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/bcp-47-match": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", - "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "license": "ISC" - }, - "node_modules/boxen": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz", - "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==", - "license": "MIT", - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.1", - "chalk": "^5.2.0", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" - }, - "node_modules/boxen/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/camelcase": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", - "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001636", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", - "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "license": "ISC" - }, - "node_modules/ci-info": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", - "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", - "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==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "license": "MIT", - "dependencies": { - "restore-cursor": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/cliui/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==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/cliui/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==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cliui/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==", - "license": "MIT" - }, - "node_modules/cliui/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==", - "license": "MIT" - }, - "node_modules/cliui/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==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cliui/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==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/collapse-white-space": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", - "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" - }, - "engines": { - "node": ">=12.5.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/color/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==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color/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==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "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==", - "license": "ISC" - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-selector-parser": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.0.5.tgz", - "integrity": "sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ], - "license": "MIT" - }, - "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==", - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "license": "MIT", - "dependencies": { - "character-entities": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "license": "MIT", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/detect-libc": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", - "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", - "license": "Apache-2.0", - "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==", - "license": "MIT", - "dependencies": { - "base-64": "^1.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/devalue": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.0.0.tgz", - "integrity": "sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "dependencies": { - "dequal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/direction": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/direction/-/direction-2.0.1.tgz", - "integrity": "sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==", - "license": "MIT", - "bin": { - "direction": "cli.js" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "license": "MIT" - }, - "node_modules/dset": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.3.tgz", - "integrity": "sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.807", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.807.tgz", - "integrity": "sha512-kSmJl2ZwhNf/bcIuCH/imtNOKlpkLDn2jqT5FJ+/0CXjhnFaOa9cOe9gHKKy71eM49izwuQjZhKk+lWQ1JxB7A==", - "license": "ISC" - }, - "node_modules/emmet": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.4.7.tgz", - "integrity": "sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==", - "license": "MIT", - "workspaces": [ - "./packages/scanner", - "./packages/abbreviation", - "./packages/css-abbreviation", - "./" - ], - "dependencies": { - "@emmetio/abbreviation": "^2.3.3", - "@emmetio/css-abbreviation": "^2.1.8" - } - }, - "node_modules/emoji-regex": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", - "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", - "license": "MIT" - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "license": "MIT", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/es-module-lexer": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", - "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", - "license": "MIT" - }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/estree-util-attach-comments": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", - "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-build-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", - "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "estree-walker": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-is-identifier-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", - "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-to-js": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", - "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "astring": "^1.8.0", - "source-map": "^0.7.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-visit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", - "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "license": "MIT", - "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==", - "license": "MIT" - }, - "node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "license": "(MIT OR WTFPL)", - "engines": { - "node": ">=6" - } - }, - "node_modules/expressive-code": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/expressive-code/-/expressive-code-0.35.3.tgz", - "integrity": "sha512-XjWWUCxS4uQjPoRM98R7SNWWIYlFEaOeHm1piWv+c7coHCekuWno81thsc3g/UJ+DajNtOEsIQIAAcsBQZ8LMg==", - "license": "MIT", - "dependencies": { - "@expressive-code/core": "^0.35.3", - "@expressive-code/plugin-frames": "^0.35.3", - "@expressive-code/plugin-shiki": "^0.35.3", - "@expressive-code/plugin-text-markers": "^0.35.3" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "license": "MIT" - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-fifo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", - "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", - "license": "MIT" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-yarn-workspace-root2": { - "version": "1.2.16", - "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz", - "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==", - "license": "Apache-2.0", - "dependencies": { - "micromatch": "^4.0.2", - "pkg-dir": "^4.2.0" - } - }, - "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==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "license": "MIT" - }, - "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, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-east-asian-width": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", - "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "license": "MIT", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", - "license": "MIT" - }, - "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==", - "license": "ISC" - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" - }, - "node_modules/gray-matter": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", - "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", - "license": "MIT", - "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hast-util-embedded": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz", - "integrity": "sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "hast-util-is-element": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-from-html": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.1.tgz", - "integrity": "sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==", - "license": "MIT", - "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.1", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz", - "integrity": "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "hastscript": "^8.0.0", - "property-information": "^6.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-from-parse5/node_modules/hastscript": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-8.0.0.tgz", - "integrity": "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^4.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-has-property": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz", - "integrity": "sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-is-body-ok-link": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.0.tgz", - "integrity": "sha512-VFHY5bo2nY8HiV6nir2ynmEB1XkxzuUffhEGeVx7orbu/B1KaGyeGgMZldvMVx5xWrDlLLG/kQ6YkJAMkBEx0w==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-phrasing": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "hast-util-embedded": "^3.0.0", - "hast-util-has-property": "^3.0.0", - "hast-util-is-body-ok-link": "^3.0.0", - "hast-util-is-element": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-raw": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.0.4.tgz", - "integrity": "sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==", - "license": "MIT", - "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-select": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-6.0.2.tgz", - "integrity": "sha512-hT/SD/d/Meu+iobvgkffo1QecV8WeKWxwsNMzcTJsKw1cKTQKSR/7ArJeURLNJF9HDjp9nVoORyNNJxrvBye8Q==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "bcp-47-match": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "css-selector-parser": "^3.0.0", - "devlop": "^1.0.0", - "direction": "^2.0.0", - "hast-util-has-property": "^3.0.0", - "hast-util-to-string": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "not": "^0.1.0", - "nth-check": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "unist-util-visit": "^5.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-to-estree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.0.tgz", - "integrity": "sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-attach-comments": "^3.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.0", - "unist-util-position": "^5.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-to-html": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.1.tgz", - "integrity": "sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-raw": "^9.0.0", - "hast-util-whitespace": "^3.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "property-information": "^6.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-jsx-runtime": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.0.tgz", - "integrity": "sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^1.0.0", - "unist-util-position": "^5.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-to-jsx-runtime/node_modules/inline-style-parser": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.3.tgz", - "integrity": "sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==", - "license": "MIT" - }, - "node_modules/hast-util-to-jsx-runtime/node_modules/style-to-object": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.6.tgz", - "integrity": "sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==", - "license": "MIT", - "dependencies": { - "inline-style-parser": "0.2.3" - } - }, - "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==", - "license": "MIT", - "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-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.0.tgz", - "integrity": "sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hastscript": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.0.tgz", - "integrity": "sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^4.0.0", - "property-information": "^6.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==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/html-whitespace-sensitive-tag-names": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-whitespace-sensitive-tag-names/-/html-whitespace-sensitive-tag-names-3.0.0.tgz", - "integrity": "sha512-KlClZ3/Qy5UgvpvVvDomGhnQhNWH5INE8GwvSIQ9CWt1K0zbbXrl7eN5bWaafOZgtmO3jMPwUqmrmEwinhPq1w==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "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==", - "license": "BSD-2-Clause" - }, - "node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "license": "Apache-2.0", - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "license": "ISC" - }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "license": "MIT" - }, - "node_modules/is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", - "license": "MIT", - "dependencies": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "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==", - "license": "MIT" - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/is-core-module": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", - "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "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==", - "license": "MIT", - "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-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "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==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hexadecimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "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==", - "license": "MIT", - "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-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "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==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-reference": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", - "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", - "license": "MIT", - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-unicode-supported": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", - "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "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==", - "license": "MIT", - "dependencies": { - "is-inside-container": "^1.0.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "license": "ISC" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz", - "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==", - "license": "MIT" - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "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==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/load-yaml-file": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz", - "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.5", - "js-yaml": "^3.13.0", - "pify": "^4.0.1", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/load-yaml-file/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/load-yaml-file/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", - "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", - "license": "MIT", - "dependencies": { - "chalk": "^5.3.0", - "is-unicode-supported": "^1.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - }, - "node_modules/markdown-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", - "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", - "license": "MIT", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/markdown-table": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz", - "integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==", - "license": "MIT", - "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==", - "license": "MIT", - "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-directive": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz", - "integrity": "sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==", - "license": "MIT", - "dependencies": { - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-visit-parents": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-find-and-replace": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz", - "integrity": "sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==", - "license": "MIT", - "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-find-and-replace/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==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mdast-util-from-markdown": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", - "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", - "license": "MIT", - "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.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz", - "integrity": "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==", - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.0.tgz", - "integrity": "sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==", - "license": "MIT", - "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.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz", - "integrity": "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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-mdx": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", - "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", - "license": "MIT", - "dependencies": { - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-mdx-expression": "^2.0.0", - "mdast-util-mdx-jsx": "^3.0.0", - "mdast-util-mdxjs-esm": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdx-expression": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz", - "integrity": "sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@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-mdx-jsx": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.2.tgz", - "integrity": "sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "devlop": "^1.1.0", - "mdast-util-from-markdown": "^2.0.0", - "mdast-util-to-markdown": "^2.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-remove-position": "^5.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdxjs-esm": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", - "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", - "license": "MIT", - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@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==", - "license": "MIT", - "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==", - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", - "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", - "license": "MIT", - "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-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==", - "license": "MIT", - "dependencies": { - "@types/mdast": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromark": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", - "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.1", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", - "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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-directive": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.0.tgz", - "integrity": "sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==", - "license": "MIT", - "dependencies": { - "devlop": "^1.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-factory-whitespace": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "parse-entities": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "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==", - "license": "MIT", - "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.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.0.0.tgz", - "integrity": "sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==", - "license": "MIT", - "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.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.0.0.tgz", - "integrity": "sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==", - "license": "MIT", - "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.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.0.0.tgz", - "integrity": "sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==", - "license": "MIT", - "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.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.0.0.tgz", - "integrity": "sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==", - "license": "MIT", - "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==", - "license": "MIT", - "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.0.1", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.0.1.tgz", - "integrity": "sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==", - "license": "MIT", - "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-mdx-expression": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz", - "integrity": "sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-factory-mdx-expression": "^2.0.0", - "micromark-factory-space": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-extension-mdx-jsx": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.0.tgz", - "integrity": "sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==", - "license": "MIT", - "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "micromark-factory-mdx-expression": "^2.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", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdx-md": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", - "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", - "license": "MIT", - "dependencies": { - "micromark-util-types": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdxjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", - "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", - "license": "MIT", - "dependencies": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^3.0.0", - "micromark-extension-mdx-jsx": "^3.0.0", - "micromark-extension-mdx-md": "^2.0.0", - "micromark-extension-mdxjs-esm": "^3.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-mdxjs-esm": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", - "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-core-commonmark": "^2.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-position-from-estree": "^2.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-factory-destination": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", - "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", - "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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-mdx-expression": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.1.tgz", - "integrity": "sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-character": "^2.0.0", - "micromark-util-events-to-acorn": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "unist-util-position-from-estree": "^2.0.0", - "vfile-message": "^4.0.0" - } - }, - "node_modules/micromark-factory-space": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", - "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-factory-title": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", - "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", - "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", - "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-chunked": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", - "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-classify-character": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", - "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", - "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-chunked": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", - "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-decode-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", - "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", - "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/micromark-util-events-to-acorn": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz", - "integrity": "sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "estree-util-visit": "^2.0.0", - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0", - "vfile-message": "^4.0.0" - } - }, - "node_modules/micromark-util-html-tag-name": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", - "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/micromark-util-normalize-identifier": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", - "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-resolve-all": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", - "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", - "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", - "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", - "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/micromark-util-types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", - "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "license": "MIT" - }, - "node_modules/mrmime": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", - "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "license": "MIT" - }, - "node_modules/muggle-string": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz", - "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "dependencies": { - "@types/nlcst": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/node-abi": { - "version": "3.65.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.65.0.tgz", - "integrity": "sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==", - "license": "MIT", - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-addon-api": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", - "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/not": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/not/-/not-0.1.0.tgz", - "integrity": "sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==" - }, - "node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "license": "MIT", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-8.0.1.tgz", - "integrity": "sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==", - "license": "MIT", - "dependencies": { - "chalk": "^5.3.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.9.2", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^2.0.0", - "log-symbols": "^6.0.0", - "stdin-discarder": "^0.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/p-limit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", - "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", - "license": "MIT", - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-queue": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.0.1.tgz", - "integrity": "sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==", - "license": "MIT", - "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.2", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.2.tgz", - "integrity": "sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pagefind": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pagefind/-/pagefind-1.1.0.tgz", - "integrity": "sha512-1nmj0/vfYcMxNEQj0YDRp6bTVv9hI7HLdPhK/vBBYlrnwjATndQvHyicj5Y7pUHrpCFZpFnLVQXIF829tpFmaw==", - "license": "MIT", - "bin": { - "pagefind": "lib/runner/bin.cjs" - }, - "optionalDependencies": { - "@pagefind/darwin-arm64": "1.1.0", - "@pagefind/darwin-x64": "1.1.0", - "@pagefind/linux-arm64": "1.1.0", - "@pagefind/linux-x64": "1.1.0", - "@pagefind/windows-x64": "1.1.0" - } - }, - "node_modules/parse-entities": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", - "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", - "character-entities-legacy": "^3.0.0", - "character-reference-invalid": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0", - "is-hexadecimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/parse-entities/node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "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.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "license": "MIT", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", - "license": "MIT" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "license": "MIT" - }, - "node_modules/path-to-regexp": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.2.tgz", - "integrity": "sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==", - "license": "MIT" - }, - "node_modules/periscopic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" - } - }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", - "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" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/prebuild-install": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", - "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", - "license": "MIT", - "dependencies": { - "detect-libc": "^2.0.0", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^3.3.0", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^4.0.0", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0" - }, - "bin": { - "prebuild-install": "bin.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/prebuild-install/node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "license": "MIT", - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/prebuild-install/node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "license": "MIT", - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/preferred-pm": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.3.tgz", - "integrity": "sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==", - "license": "MIT", - "dependencies": { - "find-up": "^5.0.0", - "find-yarn-workspace-root2": "1.2.16", - "path-exists": "^4.0.0", - "which-pm": "2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/preferred-pm/node_modules/which-pm": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz", - "integrity": "sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==", - "license": "MIT", - "dependencies": { - "load-yaml-file": "^0.2.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8.15" - } - }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/queue-tick": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", - "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", - "license": "MIT" - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/rehype": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.1.tgz", - "integrity": "sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==", - "license": "MIT", - "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-expressive-code": { - "version": "0.35.3", - "resolved": "https://registry.npmjs.org/rehype-expressive-code/-/rehype-expressive-code-0.35.3.tgz", - "integrity": "sha512-kj43Rg+WzYUs8RRr6XyBr60pnrIZEgbmn9yJoV6qka1UDpcx7r8icn6Q2uSAgaLtlEUy+HCPgQJraOZrA53LOQ==", - "license": "MIT", - "dependencies": { - "expressive-code": "^0.35.3" - } - }, - "node_modules/rehype-format": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/rehype-format/-/rehype-format-5.0.0.tgz", - "integrity": "sha512-kM4II8krCHmUhxrlvzFSptvaWh280Fr7UGNJU5DCMuvmAwGCNmGfi9CvFAQK6JDjsNoRMWQStglK3zKJH685Wg==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "hast-util-embedded": "^3.0.0", - "hast-util-is-element": "^3.0.0", - "hast-util-phrasing": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "html-whitespace-sensitive-tag-names": "^3.0.0", - "rehype-minify-whitespace": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/rehype-minify-whitespace": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/rehype-minify-whitespace/-/rehype-minify-whitespace-6.0.0.tgz", - "integrity": "sha512-i9It4YHR0Sf3GsnlR5jFUKXRr9oayvEk9GKQUkwZv6hs70OH9q3OCZrq9PpLvIGKt3W+JxBOxCidNVpH/6rWdA==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "hast-util-embedded": "^3.0.0", - "hast-util-is-element": "^3.0.0", - "hast-util-whitespace": "^3.0.0", - "unist-util-is": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/rehype-parse": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.0.tgz", - "integrity": "sha512-WG7nfvmWWkCR++KEkZevZb/uw41E8TsH4DsY9UxsTbIXCVGbAs4S+r8FrQ+OtH5EEQAs+5UxKC42VinkmpA1Yw==", - "license": "MIT", - "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==", - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.0.tgz", - "integrity": "sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==", - "license": "MIT", - "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-directive": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.0.tgz", - "integrity": "sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==", - "license": "MIT", - "dependencies": { - "@types/mdast": "^4.0.0", - "mdast-util-directive": "^3.0.0", - "micromark-extension-directive": "^3.0.0", - "unified": "^11.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-gfm": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.0.tgz", - "integrity": "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==", - "license": "MIT", - "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-mdx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.0.1.tgz", - "integrity": "sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==", - "license": "MIT", - "dependencies": { - "mdast-util-mdx": "^3.0.0", - "micromark-extension-mdxjs": "^3.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==", - "license": "MIT", - "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.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.0.tgz", - "integrity": "sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==", - "license": "MIT", - "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.1", - "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.1.tgz", - "integrity": "sha512-qyshfCl2eLO0i0558e79ZJsfojC5wjnYLByjt0FmjJQN6aYwcRxpoj784LZJSoWCdnA2ubh5rLNGb8Uur/wDng==", - "license": "MIT", - "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==", - "license": "MIT", - "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/request-light": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.7.0.tgz", - "integrity": "sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==", - "license": "MIT" - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "license": "MIT", - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/restore-cursor/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "license": "ISC" - }, - "node_modules/retext": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", - "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", - "license": "MIT", - "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==", - "license": "MIT", - "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.1.0", - "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.1.0.tgz", - "integrity": "sha512-LDPXg95346bqFZnDMHo0S7Rq5p64+B+N8Vz733+wPMDtwb9rCOs9LIdIEhrUOU+TAywX9St+ocQWJt8wrzivcQ==", - "license": "MIT", - "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==", - "license": "MIT", - "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/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rollup": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", - "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", - "license": "MIT", - "dependencies": { - "@types/estree": "1.0.5" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.18.0", - "@rollup/rollup-android-arm64": "4.18.0", - "@rollup/rollup-darwin-arm64": "4.18.0", - "@rollup/rollup-darwin-x64": "4.18.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", - "@rollup/rollup-linux-arm-musleabihf": "4.18.0", - "@rollup/rollup-linux-arm64-gnu": "4.18.0", - "@rollup/rollup-linux-arm64-musl": "4.18.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", - "@rollup/rollup-linux-riscv64-gnu": "4.18.0", - "@rollup/rollup-linux-s390x-gnu": "4.18.0", - "@rollup/rollup-linux-x64-gnu": "4.18.0", - "@rollup/rollup-linux-x64-musl": "4.18.0", - "@rollup/rollup-win32-arm64-msvc": "4.18.0", - "@rollup/rollup-win32-ia32-msvc": "4.18.0", - "@rollup/rollup-win32-x64-msvc": "4.18.0", - "fsevents": "~2.3.2" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/sax": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", - "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", - "license": "ISC" - }, - "node_modules/section-matter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", - "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/sharp": { - "version": "0.32.6", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz", - "integrity": "sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==", - "hasInstallScript": true, - "license": "Apache-2.0", - "dependencies": { - "color": "^4.2.3", - "detect-libc": "^2.0.2", - "node-addon-api": "^6.1.0", - "prebuild-install": "^7.1.1", - "semver": "^7.5.4", - "simple-get": "^4.0.1", - "tar-fs": "^3.0.4", - "tunnel-agent": "^0.6.0" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shiki": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.7.0.tgz", - "integrity": "sha512-H5pMn4JA7ayx8H0qOz1k2qANq6mZVCMl1gKLK6kWIrv1s2Ial4EmD4s4jE8QB5Dw03d/oCQUxc24sotuyR5byA==", - "license": "MIT", - "dependencies": { - "@shikijs/core": "1.7.0" - } - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/simple-get": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "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==", - "license": "MIT", - "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==", - "license": "MIT" - }, - "node_modules/sitemap": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.2.tgz", - "integrity": "sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==", - "license": "MIT", - "dependencies": { - "@types/node": "^17.0.5", - "@types/sax": "^1.2.1", - "arg": "^5.0.0", - "sax": "^1.2.4" - }, - "bin": { - "sitemap": "dist/cli.js" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=5.6.0" - } - }, - "node_modules/sitemap/node_modules/@types/node": { - "version": "17.0.45", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", - "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", - "license": "MIT" - }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 8" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "license": "BSD-3-Clause", - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "license": "BSD-3-Clause" - }, - "node_modules/stdin-discarder": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz", - "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stream-replace-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/stream-replace-string/-/stream-replace-string-2.0.0.tgz", - "integrity": "sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==", - "license": "MIT" - }, - "node_modules/streamx": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.18.0.tgz", - "integrity": "sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==", - "license": "MIT", - "dependencies": { - "fast-fifo": "^1.3.2", - "queue-tick": "^1.0.1", - "text-decoder": "^1.1.0" - }, - "optionalDependencies": { - "bare-events": "^2.2.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", - "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-bom-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", - "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/style-to-object": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", - "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", - "license": "MIT", - "dependencies": { - "inline-style-parser": "0.1.1" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/tar-fs": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", - "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", - "license": "MIT", - "dependencies": { - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - }, - "optionalDependencies": { - "bare-fs": "^2.1.1", - "bare-path": "^2.1.0" - } - }, - "node_modules/tar-stream": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", - "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "license": "MIT", - "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" - } - }, - "node_modules/text-decoder": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.0.tgz", - "integrity": "sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==", - "license": "Apache-2.0", - "dependencies": { - "b4a": "^1.6.4" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/tsconfck": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.0.tgz", - "integrity": "sha512-CMjc5zMnyAjcS9sPLytrbFmj89st2g+JYtY/c02ug4Q+CZaAtCgbyviI0n1YvjZE/pzoc6FbNsINS13DOL1B9w==", - "license": "MIT", - "bin": { - "tsconfck": "bin/tsconfck.js" - }, - "engines": { - "node": "^18 || >=20" - }, - "peerDependencies": { - "typescript": "^5.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "license": "0BSD", - "optional": true - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "license": "Apache-2.0", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typesafe-path": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/typesafe-path/-/typesafe-path-0.2.2.tgz", - "integrity": "sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==", - "license": "MIT" - }, - "node_modules/typescript": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz", - "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/typescript-auto-import-cache": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/typescript-auto-import-cache/-/typescript-auto-import-cache-0.3.2.tgz", - "integrity": "sha512-+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==", - "license": "MIT", - "dependencies": { - "semver": "^7.3.8" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "license": "MIT" - }, - "node_modules/unherit": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/unherit/-/unherit-3.0.1.tgz", - "integrity": "sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/unified": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", - "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", - "license": "MIT", - "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/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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position-from-estree": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", - "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "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==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/vfile": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.1.tgz", - "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-location": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.2.tgz", - "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", - "license": "MIT", - "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==", - "license": "MIT", - "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": "5.3.1", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.1.tgz", - "integrity": "sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==", - "license": "MIT", - "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.38", - "rollup": "^4.13.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.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", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vitefu": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz", - "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", - "license": "MIT", - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "vite": { - "optional": true - } - } - }, - "node_modules/volar-service-css": { - "version": "0.0.45", - "resolved": "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.45.tgz", - "integrity": "sha512-f+AlUI1+kESbcZSVaNJVAnK0c/9Da5StoxzPqA5/8VqUHJWNdubWNnwG5xpFVTfgh6pgTcey3UBhBfHytFaIOg==", - "license": "MIT", - "dependencies": { - "vscode-css-languageservice": "^6.2.10", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-uri": "^3.0.8" - }, - "peerDependencies": { - "@volar/language-service": "~2.2.3" - }, - "peerDependenciesMeta": { - "@volar/language-service": { - "optional": true - } - } - }, - "node_modules/volar-service-emmet": { - "version": "0.0.45", - "resolved": "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.45.tgz", - "integrity": "sha512-9nLXSDkR1vA/3fQkFEsSXAu3XovQxOpTkVG2jilQgfek/K1ZLkaA/WMhN/TtmPmQg4NxE9Ni6mA5udBQ5gVXIA==", - "license": "MIT", - "dependencies": { - "@emmetio/css-parser": "^0.4.0", - "@emmetio/html-matcher": "^1.3.0", - "@vscode/emmet-helper": "^2.9.2" - }, - "peerDependencies": { - "@volar/language-service": "~2.2.3" - }, - "peerDependenciesMeta": { - "@volar/language-service": { - "optional": true - } - } - }, - "node_modules/volar-service-html": { - "version": "0.0.45", - "resolved": "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.45.tgz", - "integrity": "sha512-tLTJqfy1v5C4nmeAsfekFIKPl4r4qDMyL0L9MWywr/EApZzPCsbeUGxCqdzxSMC2q7PMCfX2i167txDo+J0LVA==", - "license": "MIT", - "dependencies": { - "vscode-html-languageservice": "npm:@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-uri": "^3.0.8" - }, - "peerDependencies": { - "@volar/language-service": "~2.2.3" - }, - "peerDependenciesMeta": { - "@volar/language-service": { - "optional": true - } - } - }, - "node_modules/volar-service-html/node_modules/@vscode/l10n": { - "version": "0.0.18", - "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.18.tgz", - "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==", - "license": "MIT" - }, - "node_modules/volar-service-html/node_modules/vscode-html-languageservice": { - "name": "@johnsoncodehk/vscode-html-languageservice", - "version": "5.2.0-34a5462", - "resolved": "https://registry.npmjs.org/@johnsoncodehk/vscode-html-languageservice/-/vscode-html-languageservice-5.2.0-34a5462.tgz", - "integrity": "sha512-etqLfpSJ5zaw76KUNF603be6d6QsiQPmaHr9FKEp4zhLZJzWCCMH6Icak7MtLUFLZLMpL761mZNImi/joBo1ZA==", - "license": "MIT", - "dependencies": { - "@vscode/l10n": "^0.0.18", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-languageserver-types": "^3.17.5", - "vscode-uri": "^3.0.8" - } - }, - "node_modules/volar-service-prettier": { - "version": "0.0.45", - "resolved": "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.45.tgz", - "integrity": "sha512-+mBS2EsDgp/kunKEBnHvhBwIQm5v2ahw4NKpKdg4sTpXy3UxqHt+Fq/wRYQ7Z8LlNVNRVfp75ThjM+w2zaZBAw==", - "license": "MIT", - "dependencies": { - "vscode-uri": "^3.0.8" - }, - "peerDependencies": { - "@volar/language-service": "~2.2.3", - "prettier": "^2.2 || ^3.0" - }, - "peerDependenciesMeta": { - "@volar/language-service": { - "optional": true - }, - "prettier": { - "optional": true - } - } - }, - "node_modules/volar-service-typescript": { - "version": "0.0.45", - "resolved": "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.45.tgz", - "integrity": "sha512-i/mMIIAMastJ2kgPo3qvX0Rrl7NyxhIYZ0ug/B4ambZcLPI1vzBgS2fmvyWX3jhBYHh8NmbAotFj+0Y9JtN47A==", - "license": "MIT", - "dependencies": { - "path-browserify": "^1.0.1", - "semver": "^7.5.4", - "typescript-auto-import-cache": "^0.3.1", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-nls": "^5.2.0" - }, - "peerDependencies": { - "@volar/language-service": "~2.2.3" - }, - "peerDependenciesMeta": { - "@volar/language-service": { - "optional": true - } - } - }, - "node_modules/volar-service-typescript-twoslash-queries": { - "version": "0.0.45", - "resolved": "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.45.tgz", - "integrity": "sha512-KrPUUvKggZgV9mrDpstCzmf20irgv0ooMv+FGDzIIQUkya+d2+nSS8Mx2h9FvsYgLccUVw5jU3Rhwhd3pv/7qg==", - "license": "MIT", - "peerDependencies": { - "@volar/language-service": "~2.2.3" - }, - "peerDependenciesMeta": { - "@volar/language-service": { - "optional": true - } - } - }, - "node_modules/vscode-css-languageservice": { - "version": "6.2.14", - "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.2.14.tgz", - "integrity": "sha512-5UPQ9Y1sUTnuMyaMBpO7LrBkqjhEJb5eAwdUlDp+Uez8lry+Tspnk3+3p2qWS4LlNsr4p3v9WkZxUf1ltgFpgw==", - "license": "MIT", - "dependencies": { - "@vscode/l10n": "^0.0.18", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-languageserver-types": "3.17.5", - "vscode-uri": "^3.0.8" - } - }, - "node_modules/vscode-css-languageservice/node_modules/@vscode/l10n": { - "version": "0.0.18", - "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.18.tgz", - "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==", - "license": "MIT" - }, - "node_modules/vscode-html-languageservice": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.2.0.tgz", - "integrity": "sha512-cdNMhyw57/SQzgUUGSIMQ66jikqEN6nBNyhx5YuOyj9310+eY9zw8Q0cXpiKzDX8aHYFewQEXRnigl06j/TVwQ==", - "license": "MIT", - "dependencies": { - "@vscode/l10n": "^0.0.18", - "vscode-languageserver-textdocument": "^1.0.11", - "vscode-languageserver-types": "^3.17.5", - "vscode-uri": "^3.0.8" - } - }, - "node_modules/vscode-html-languageservice/node_modules/@vscode/l10n": { - "version": "0.0.18", - "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.18.tgz", - "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==", - "license": "MIT" - }, - "node_modules/vscode-jsonrpc": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", - "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", - "license": "MIT", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/vscode-languageserver": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz", - "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==", - "license": "MIT", - "dependencies": { - "vscode-languageserver-protocol": "3.17.5" - }, - "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" - } - }, - "node_modules/vscode-languageserver-protocol": { - "version": "3.17.5", - "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz", - "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==", - "license": "MIT", - "dependencies": { - "vscode-jsonrpc": "8.2.0", - "vscode-languageserver-types": "3.17.5" - } - }, - "node_modules/vscode-languageserver-textdocument": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", - "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", - "license": "MIT" - }, - "node_modules/vscode-languageserver-types": { - "version": "3.17.5", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", - "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", - "license": "MIT" - }, - "node_modules/vscode-nls": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz", - "integrity": "sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==", - "license": "MIT" - }, - "node_modules/vscode-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", - "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", - "license": "MIT" - }, - "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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-pm": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.2.0.tgz", - "integrity": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==", - "license": "MIT", - "dependencies": { - "load-yaml-file": "^0.2.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8.15" - } - }, - "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==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/widest-line": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", - "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", - "license": "MIT", - "dependencies": { - "string-width": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" - }, - "node_modules/widest-line/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/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==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "license": "MIT" - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "license": "ISC" - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "license": "ISC" - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "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==", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs/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==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/yargs/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==", - "license": "MIT" - }, - "node_modules/yargs/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==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/yargs/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==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zod": { - "version": "3.23.8", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", - "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - }, - "node_modules/zod-to-json-schema": { - "version": "3.23.1", - "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.23.1.tgz", - "integrity": "sha512-oT9INvydob1XV0v1d2IadrR74rLtDInLvDFfAa1CG0Pmg/vxATk7I2gSelfj271mbzeM4Da0uuDQE/Nkj3DWNw==", - "license": "ISC", - "peerDependencies": { - "zod": "^3.23.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==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index d3a36ae5..00000000 --- a/package.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "", - "type": "module", - "version": "0.0.1", - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro check && astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "@astrojs/starlight": "^0.24.3", - "astro": "^4.10.2", - "sharp": "^0.32.5", - "@astrojs/check": "^0.7.0", - "typescript": "^5.4.5" - } -} \ No newline at end of file diff --git a/public/favicon.svg b/public/favicon.svg deleted file mode 100644 index cba5ac14..00000000 --- a/public/favicon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/push.sh b/push.sh deleted file mode 100755 index 8d7689ac..00000000 --- a/push.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash - -# Author : ESHAN ROY -# Author URI : https://eshanized.github.io - -# NOTE : RUN AT YOUR OWN RISK! - -# Define the conventional commit types with emojis -TYPES=("πŸŽ‰ feat" "🐞 fix" "πŸ“š docs" "πŸ’… style" "πŸ”¨ refactor" "⚑️ perf" "πŸ§ͺ test" "πŸ› οΈ build" "πŸ€– ci" "🧹 chore" "βͺ️ revert") - -# Prompt the user to select a commit type -echo "Select a commit type:" -select type in "${TYPES[@]}"; do - break -done - -# Extract the commit type and emoji from the selection -type_emoji=${type} -type=${type_emoji#* } -emoji=${type_emoji% *} - -# Prompt the user to enter a scope (optional) -read -p "Enter a scope (optional): " scope - -# Prompt the user to enter a short description -read -p "Enter a short description: " desc - -# Prompt the user to enter a longer description (optional) -read -p "Enter a longer description (optional): " long_desc - -# Create the commit message -commit_msg="$emoji $type($scope): $desc" - -# If a longer description was provided, add it to the commit message -if [ -n "$long_desc" ]; then - commit_msg+=" - -$long_desc" -fi - -# Print the commit message to the console -echo "Commit message:" -echo "$commit_msg" - -# Stage all changes -git add . - -# Commit the changes with the conventional commit message -git commit -m "$commit_msg" - -# Push the changes to the remote repository -git push origin $(git rev-parse --abbrev-ref HEAD) \ No newline at end of file diff --git a/src/assets/houston.webp b/src/assets/houston.webp deleted file mode 100644 index 930c164974ad8eb528878f15a98016249b8cf546..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 98506 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 - - Edit `src/content/docs/index.mdx` to see this page change. - - - Add Markdown or MDX files to `src/content/docs` to create new pages. - - - Edit your `sidebar` and other config in `astro.config.mjs`. - - - Learn more in [the Starlight Docs](https://starlight.astro.build/). - - diff --git a/src/content/docs/reference/example.md b/src/content/docs/reference/example.md deleted file mode 100644 index 0224f096..00000000 --- a/src/content/docs/reference/example.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Example Reference -description: A reference page in my new Starlight docs site. ---- - -Reference pages are ideal for outlining how things work in terse and clear terms. -Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what you're documenting. - -## Further reading - -- Read [about reference](https://diataxis.fr/reference/) in the DiΓ‘taxis framework diff --git a/src/env.d.ts b/src/env.d.ts deleted file mode 100644 index acef35f1..00000000 --- a/src/env.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -/// -/// diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 77da9dd0..00000000 --- a/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/strict" -} \ No newline at end of file