[READ-ONLY] Mirror of https://github.com/trueberryless-org/starlight-plugins-docs-components. Set of opinionated Starlight components used in trueberryless-org's Starlight plugins documentations starlight-plugins-docs-components.trueberryless.org
plugin starlight
0

Configure Feed

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

Initial commit

deploy

author
trueberryless
date (Nov 3, 2024, 8:38 PM +0100) commit 2cb6ff67
+5228
+96
.github/workflows/deployment.yaml
··· 1 + name: Deployment 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + merge_group: 7 + pull_request: 8 + branches: [main] 9 + # Allows you to run this workflow manually from the Actions tab 10 + workflow_dispatch: 11 + 12 + # Automatically cancel in-progress actions on the same branch 13 + concurrency: 14 + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} 15 + cancel-in-progress: true 16 + 17 + env: 18 + REGISTRY: docker.io 19 + IMAGE_NAME: trueberryless/starlight-plugins-docs-components 20 + NODE_VERSION: 20 21 + 22 + jobs: 23 + deployment: 24 + if: contains(github.event.head_commit.message, 'deploy') || github.event_name == 'workflow_dispatch' 25 + runs-on: ubuntu-latest 26 + permissions: 27 + contents: write 28 + steps: 29 + - name: Check out the repo 30 + uses: actions/checkout@v4 31 + with: 32 + fetch-depth: 0 33 + 34 + - name: Create tag 35 + run: echo "IMAGE_TAG=$(echo $GITHUB_REF_NAME-$GITHUB_SHA)" >> $GITHUB_ENV 36 + 37 + - name: Setup PNPM 38 + uses: pnpm/action-setup@v3 39 + with: 40 + package_json_file: ./docs/package.json 41 + 42 + - name: Setup Node 43 + uses: actions/setup-node@v4 44 + with: 45 + node-version: 20 46 + cache: pnpm 47 + cache-dependency-path: ./pnpm-lock.yaml 48 + 49 + - name: Install dependencies 50 + run: pnpm install 51 + shell: bash 52 + working-directory: ./docs 53 + 54 + - name: Build Mutanuq Website 55 + run: pnpm run build 56 + shell: bash 57 + working-directory: ./docs 58 + 59 + - name: Set up Docker Buildx 60 + uses: docker/setup-buildx-action@v3 61 + 62 + - name: Log in to Docker Hub 63 + uses: docker/login-action@v3 64 + with: 65 + username: ${{ secrets.DOCKER_USERNAME }} 66 + password: ${{ secrets.DOCKER_PASSWORD }} 67 + 68 + - name: Extract metadata (tags, labels) for Docker 69 + id: meta 70 + uses: docker/metadata-action@v5 71 + with: 72 + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} 73 + 74 + - name: Build and push Docker image 75 + uses: docker/build-push-action@v6 76 + with: 77 + context: . 78 + push: true 79 + tags: | 80 + ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} 81 + ${{ env.IMAGE_NAME }}:latest 82 + labels: ${{ steps.meta.outputs.labels }} 83 + 84 + - name: Update deployment.yaml file 85 + run: | 86 + yq eval '.spec.template.spec.containers[0].image = "${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}"' -i manifest/deployment.yaml 87 + 88 + - uses: stefanzweifel/git-auto-commit-action@v4 89 + with: 90 + commit_message: update deployment.json container image (automated) 91 + 92 + - uses: ncipollo/release-action@v1 93 + with: 94 + tag: ${{ env.IMAGE_TAG }} 95 + makeLatest: true 96 + body: "A docker image has been deployed to [Docker Hub](https://hub.docker.com/r/${{ env.IMAGE_NAME }}/tags)."
+21
.gitignore
··· 1 + # build output 2 + dist/ 3 + # generated types 4 + .astro/ 5 + 6 + # dependencies 7 + node_modules/ 8 + 9 + # logs 10 + npm-debug.log* 11 + yarn-debug.log* 12 + yarn-error.log* 13 + pnpm-debug.log* 14 + 15 + 16 + # environment variables 17 + .env 18 + .env.production 19 + 20 + # macOS-specific files 21 + .DS_Store
+3
.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["astro-build.astro-vscode"] 3 + }
+12
.vscode/launch.json
··· 1 + { 2 + "version": "0.2.0", 3 + "configurations": [ 4 + { 5 + "command": "./node_modules/.bin/astro dev", 6 + "cwd": "${workspaceFolder}/docs", 7 + "name": "Development server", 8 + "request": "launch", 9 + "type": "node-terminal" 10 + } 11 + ] 12 + }
+21
LICENSE
··· 1 + MIT License 2 + 3 + Copyright (c) 2024-present, trueberryless-org 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+17
README.md
··· 1 + # `@trueberryless-org/starlight-plugins-docs-components` 2 + 3 + Set of opinionated Starlight components used in trueberryless-org's Starlight plugins documentations 4 + 5 + ## Package 6 + 7 + If you are looking for the Starlight plugin package, you can find it in the [`packages/starlight-plugins-docs-components/`](/packages/starlight-plugins-docs-components/) directory. 8 + 9 + ## Project structure 10 + 11 + This project uses pnpm workspaces to develop a single Starlight plugin from the `packages/starlight-plugins-docs-components/` directory. A Starlight documentation site is also available in the `docs/` directory that is also used for testing and demonstrating the Starlight plugin. 12 + 13 + ## License 14 + 15 + Licensed under the MIT License, Copyright © trueberryless-org. 16 + 17 + See [LICENSE](/LICENSE) for more information.
+19
docs/README.md
··· 1 + # `@trueberryless-org/starlight-plugins-docs-components` 2 + 3 + Set of opinionated Starlight components used in trueberryless-org's Starlight plugins documentations 4 + 5 + ## Documentation 6 + 7 + Run the documentation locally by running the following command in your terminal: 8 + 9 + ```shell 10 + pnpm run dev 11 + ``` 12 + 13 + Content can be found in the [`src/content/docs/`](./src/content/docs/) directory. 14 + 15 + ## License 16 + 17 + Licensed under the MIT License, Copyright © trueberryless-org. 18 + 19 + See [LICENSE](/LICENSE) for more information.
+30
docs/astro.config.ts
··· 1 + import starlight from "@astrojs/starlight"; 2 + import { defineConfig } from "astro/config"; 3 + import starlightLinksValidator from "starlight-links-validator"; 4 + 5 + export default defineConfig({ 6 + integrations: [ 7 + starlight({ 8 + editLink: { 9 + baseUrl: 10 + "https://github.com/trueberryless-org/starlight-plugins-docs-components/edit/main/docs/", 11 + }, 12 + customCss: ["./src/styles/custom.css"], 13 + plugins: [starlightLinksValidator()], 14 + sidebar: [ 15 + { 16 + label: "Start Here", 17 + items: [{ slug: "getting-started" }], 18 + }, 19 + { 20 + label: "Showcase", 21 + autogenerate: { directory: "showcase" }, 22 + }, 23 + ], 24 + social: { 25 + github: "https://github.com/trueberryless-org/starlight-plugins-docs-components", 26 + }, 27 + title: "Starlight Plugins Docs Components", 28 + }), 29 + ], 30 + });
+33
docs/package.json
··· 1 + { 2 + "name": "@trueberryless-org/starlight-plugins-docs-components-docs", 3 + "version": "0.0.1", 4 + "license": "MIT", 5 + "description": "Set of opinionated Starlight components used in trueberryless-org's Starlight plugins documentations", 6 + "author": "trueberryless-org", 7 + "type": "module", 8 + "scripts": { 9 + "dev": "astro dev", 10 + "start": "astro dev", 11 + "build": "astro build", 12 + "preview": "astro preview", 13 + "astro": "astro" 14 + }, 15 + "dependencies": { 16 + "@astrojs/starlight": "^0.28.5", 17 + "@trueberryless-org/starlight-plugins-docs-components": "workspace:*", 18 + "astro": "^4.16.8", 19 + "sharp": "^0.33.5", 20 + "starlight-links-validator": "^0.13.0" 21 + }, 22 + "engines": { 23 + "node": "^18.17.1 || ^20.3.0 || >=21.0.0" 24 + }, 25 + "private": true, 26 + "homepage": "https://github.com/trueberryless-org/starlight-plugins-docs-components", 27 + "repository": { 28 + "type": "git", 29 + "url": "https://github.com/trueberryless-org/starlight-plugins-docs-components.git", 30 + "directory": "docs" 31 + }, 32 + "bugs": "https://github.com/trueberryless-org/starlight-plugins-docs-components/issues" 33 + }
+1
docs/public/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" d="M81 36 64 0 47 36l-1 2-9-10a6 6 0 0 0-9 9l10 10h-2L0 64l36 17h2L28 91a6 6 0 1 0 9 9l9-10 1 2 17 36 17-36v-2l9 10a6 6 0 1 0 9-9l-9-9 2-1 36-17-36-17-2-1 9-9a6 6 0 1 0-9-9l-9 10v-2Zm-17 2-2 5c-4 8-11 15-19 19l-5 2 5 2c8 4 15 11 19 19l2 5 2-5c4-8 11-15 19-19l5-2-5-2c-8-4-15-11-19-19l-2-5Z" clip-rule="evenodd"/><path d="M118 19a6 6 0 0 0-9-9l-3 3a6 6 0 1 0 9 9l3-3Zm-96 4c-2 2-6 2-9 0l-3-3a6 6 0 1 1 9-9l3 3c3 2 3 6 0 9Zm0 82c-2-2-6-2-9 0l-3 3a6 6 0 1 0 9 9l3-3c3-2 3-6 0-9Zm96 4a6 6 0 0 1-9 9l-3-3a6 6 0 1 1 9-9l3 3Z"/><style>path{fill:#000}@media (prefers-color-scheme:dark){path{fill:#fff}}</style></svg>
docs/src/assets/houston.webp

This is a binary file and will not be displayed.

docs/src/assets/starlight-sidebar-topics-dropdown.png

This is a binary file and will not be displayed.

docs/src/assets/starlight-view-modes.png

This is a binary file and will not be displayed.

+6
docs/src/content/config.ts
··· 1 + import { defineCollection } from 'astro:content' 2 + import { docsSchema } from '@astrojs/starlight/schema' 3 + 4 + export const collections = { 5 + docs: defineCollection({ schema: docsSchema() }), 6 + }
+130
docs/src/content/docs/getting-started.mdx
··· 1 + --- 2 + title: Getting Started 3 + --- 4 + 5 + Set of opinionated Starlight components used in trueberryless-org&#39;s Starlight plugins documentations 6 + 7 + ## Prerequisites 8 + 9 + You will need to have a Starlight website set up. 10 + If you don't have one yet, you can follow the ["Getting Started"](https://starlight.astro.build/getting-started) guide in the Starlight docs to create one. 11 + 12 + ## Installation 13 + 14 + import { Steps, Tabs, TabItem } from "@astrojs/starlight/components"; 15 + 16 + <Steps> 17 + 18 + 1. `@trueberryless-org/starlight-plugins-docs-components` is a Starlight [plugin](https://starlight.astro.build/reference/plugins/). Install it by running the following command in your terminal: 19 + 20 + <Tabs syncKey="pkg"> 21 + 22 + <TabItem label="npm"> 23 + 24 + ```sh 25 + npm install @trueberryless-org/starlight-plugins-docs-components 26 + ``` 27 + 28 + </TabItem> 29 + 30 + <TabItem label="pnpm"> 31 + 32 + ```sh 33 + pnpm add @trueberryless-org/starlight-plugins-docs-components 34 + ``` 35 + 36 + </TabItem> 37 + 38 + <TabItem label="Yarn"> 39 + 40 + ```sh 41 + yarn add @trueberryless-org/starlight-plugins-docs-components 42 + ``` 43 + 44 + </TabItem> 45 + 46 + </Tabs> 47 + 48 + 2. Configure the plugin in your Starlight [configuration](https://starlight.astro.build/reference/configuration/#plugins) in the `astro.config.mjs` file. 49 + 50 + ```diff lang="js" 51 + // astro.config.mjs 52 + import starlight from '@astrojs/starlight' 53 + import { defineConfig } from 'astro/config' 54 + 55 + export default defineConfig({ 56 + integrations: [ 57 + starlight({ 58 + title: 'My Docs', 59 + }), 60 + sidebar: [ 61 + { 62 + label: "Start Here", 63 + items: [{ slug: "getting-started" }], 64 + }, 65 + + { 66 + + label: "Showcase", 67 + + autogenerate: { directory: "showcase" }, 68 + + }, 69 + ], 70 + ], 71 + }) 72 + ``` 73 + 74 + 3. Copy the following Markdoc content into your `src/content/docs/showcase/plugins.mdx` file. 75 + 76 + ```astro title="showcase/plugins.mdx" 77 + --- 78 + title: Starlight Plugins and Tools 79 + description: A collection of plugins and tools created by trueberryless-org 80 + sidebar: 81 + label: Plugins and Tools 82 + --- 83 + 84 + import { 85 + ResourcesIntro, 86 + ResourcesList, 87 + } from "@trueberryless-org/starlight-plugins-docs-components"; 88 + 89 + <ResourcesIntro /> 90 + <ResourcesList /> 91 + ``` 92 + 93 + 4. Copy the following Markdoc content into your `src/content/docs/showcase/sites.mdx` file. 94 + 95 + ```astro title="showcase/sites.mdx" 96 + --- 97 + title: Sites 98 + description: A collection of sites using the Starlight Sidebar Topics Dropdown plugin. 99 + --- 100 + 101 + import { ShowcaseIntro, Showcase } from "@trueberryless-org/starlight-plugins-docs-components"; 102 + 103 + <ShowcaseIntro 104 + cta="Have you built a website using YOUR PLUGIN?" 105 + href="https://github.com/trueberryless-org/YOUR_PLUGIN/edit/main/docs/src/content/docs/showcase/sites.mdx" 106 + /> 107 + 108 + ## Sites 109 + 110 + Starlight Plugin is already being used in production. These are some of the sites around the web: 111 + 112 + <Showcase 113 + entries={[ 114 + { 115 + thumbnail: import("../../../assets/starlight-sidebar-topics-dropdown.png"), 116 + href: "https://github.com/trueberryless-org/starlight-sidebar-topics-dropdown", 117 + title: "starlight-sidebar-topics-dropdown", 118 + }, 119 + { 120 + thumbnail: import("../../../assets/starlight-view-modes.png"), 121 + href: "https://github.com/trueberryless-org/starlight-view-modes", 122 + title: "starlight-view-modes", 123 + }, 124 + ]} 125 + /> 126 + ``` 127 + 128 + 5. [Start the development server](https://starlight.astro.build/getting-started/#start-the-development-server) to preview the plugin in action. 129 + 130 + </Steps>
+30
docs/src/content/docs/index.mdx
··· 1 + --- 2 + title: Starlight Plugins Docs Components (@trueberryless-org) 3 + description: Set of opinionated Starlight components used in trueberryless-org&#39;s Starlight plugins documentations 4 + head: 5 + - tag: title 6 + content: Starlight Plugins Docs Components 7 + template: splash 8 + editUrl: false 9 + hero: 10 + tagline: Set of opinionated Starlight components used in trueberryless-org&#39;s Starlight plugins documentations 11 + image: 12 + html: "🛠️" 13 + actions: 14 + - text: Get Started 15 + link: /getting-started/ 16 + icon: right-arrow 17 + --- 18 + 19 + import { Card, CardGrid } from "@astrojs/starlight/components"; 20 + 21 + ## Next steps 22 + 23 + <CardGrid stagger> 24 + <Card title="Install the plugin" icon="puzzle"> 25 + Check the [getting started guide](/getting-started/) for installation instructions. 26 + </Card> 27 + <Card title="Configure the plugin" icon="setting"> 28 + Edit your config in the `astro.config.mjs` file. 29 + </Card> 30 + </CardGrid>
+14
docs/src/content/docs/showcase/plugins.mdx
··· 1 + --- 2 + title: Starlight Plugins and Tools 3 + description: A collection of plugins, components, tools and themes created by trueberryless-org 4 + sidebar: 5 + label: Plugins and Tools 6 + --- 7 + 8 + import { 9 + ResourcesIntro, 10 + ResourcesList, 11 + } from "@trueberryless-org/starlight-plugins-docs-components"; 12 + 13 + <ResourcesIntro /> 14 + <ResourcesList />
+32
docs/src/content/docs/showcase/sites.mdx
··· 1 + --- 2 + title: Showcase 3 + description: A collection of sites using the Starlight Sidebar Topics Dropdown plugin. 4 + sidebar: 5 + label: Sites 6 + --- 7 + 8 + import { ShowcaseIntro, Showcase } from "@trueberryless-org/starlight-plugins-docs-components"; 9 + 10 + <ShowcaseIntro 11 + cta="Have you built a website using Starlight Plugins Docs Components?" 12 + href="https://github.com/trueberryless-org/starlight-plugins-docs-components/edit/main/docs/src/content/docs/showcase/sites.mdx" 13 + /> 14 + 15 + ## Sites 16 + 17 + Starlight Plugins Docs Components is already being used in production. These are some of the sites around the web: 18 + 19 + <Showcase 20 + entries={[ 21 + { 22 + thumbnail: import("../../../assets/starlight-sidebar-topics-dropdown.png"), 23 + href: "https://github.com/trueberryless-org/starlight-sidebar-topics-dropdown", 24 + title: "starlight-sidebar-topics-dropdown", 25 + }, 26 + { 27 + thumbnail: import("../../../assets/starlight-view-modes.png"), 28 + href: "https://github.com/trueberryless-org/starlight-view-modes", 29 + title: "starlight-view-modes", 30 + }, 31 + ]} 32 + />
+1
docs/src/env.d.ts
··· 1 + /// <reference path="../.astro/types.d.ts" />
+7
docs/src/styles/custom.css
··· 1 + .hero-html { 2 + --size: 12rem; 3 + 4 + font-size: var(--size); 5 + justify-content: center; 6 + line-height: var(--size); 7 + }
+3
docs/tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strictest" 3 + }
+12
manifest/certificate.yaml
··· 1 + apiVersion: cert-manager.io/v1 2 + kind: Certificate 3 + metadata: 4 + name: starlight-plugins-docs-components 5 + namespace: starlight-plugins-docs-components 6 + spec: 7 + secretName: starlight-plugins-docs-components 8 + issuerRef: 9 + name: acme-issuer 10 + kind: ClusterIssuer 11 + dnsNames: 12 + - "starlight-plugins-docs-components.trueberryless.org"
+21
manifest/deployment.yaml
··· 1 + apiVersion: apps/v1 2 + kind: Deployment 3 + metadata: 4 + name: starlight-plugins-docs-components 5 + namespace: starlight-plugins-docs-components 6 + labels: 7 + app: starlight-plugins-docs-components 8 + spec: 9 + replicas: 3 10 + selector: 11 + matchLabels: 12 + app: starlight-plugins-docs-components 13 + template: 14 + metadata: 15 + labels: 16 + app: starlight-plugins-docs-components 17 + spec: 18 + containers: 19 + - name: starlight-plugins-docs-components 20 + image: "trueberryless/starlight-plugins-docs-components:main-d6e126d7c2a34f94a6a9ef82c37bd97cbac0df18" 21 + imagePullPolicy: Always
+22
manifest/ingress.yaml
··· 1 + apiVersion: networking.k8s.io/v1 2 + kind: Ingress 3 + metadata: 4 + name: starlight-plugins-docs-components 5 + namespace: starlight-plugins-docs-components 6 + spec: 7 + rules: 8 + - host: starlight-plugins-docs-components.trueberryless.org 9 + http: 10 + paths: 11 + - path: / 12 + pathType: Prefix 13 + backend: 14 + service: 15 + name: starlight-plugins-docs-components 16 + port: 17 + number: 80 18 + 19 + tls: 20 + - hosts: 21 + - starlight-plugins-docs-components.trueberryless.org 22 + secretName: starlight-plugins-docs-components
+4
manifest/namespace.yaml
··· 1 + apiVersion: v1 2 + kind: Namespace 3 + metadata: 4 + name: starlight-plugins-docs-components
+13
manifest/service.yaml
··· 1 + apiVersion: v1 2 + kind: Service 3 + metadata: 4 + name: starlight-plugins-docs-components 5 + namespace: starlight-plugins-docs-components 6 + annotations: 7 + cert-manager.io/issuer: acme-issuer 8 + spec: 9 + selector: 10 + app: starlight-plugins-docs-components 11 + ports: 12 + - name: http 13 + port: 80
+19
package.json
··· 1 + { 2 + "name": "@trueberryless-org/starlight-plugins-docs-components-monorepo", 3 + "version": "0.0.1", 4 + "license": "MIT", 5 + "description": "Set of opinionated Starlight components used in trueberryless-org&#39;s Starlight plugins documentations", 6 + "author": "trueberryless-org", 7 + "type": "module", 8 + "engines": { 9 + "node": "^18.17.1 || ^20.3.0 || >=21.0.0" 10 + }, 11 + "packageManager": "pnpm@9.6.0", 12 + "private": true, 13 + "homepage": "https://github.com/trueberryless-org/starlight-plugins-docs-components", 14 + "repository": { 15 + "type": "git", 16 + "url": "https://github.com/trueberryless-org/starlight-plugins-docs-components.git" 17 + }, 18 + "bugs": "https://github.com/trueberryless-org/starlight-plugins-docs-components/issues" 19 + }
+1
packages/starlight-plugins-docs-components/.npmignore
··· 1 + tsconfig.json
+15
packages/starlight-plugins-docs-components/README.md
··· 1 + # `@trueberryless-org/starlight-plugins-docs-components` 2 + 3 + Set of opinionated Starlight components used in trueberryless-org&#39;s Starlight plugins documentations 4 + 5 + ## Documentation 6 + 7 + Want to get started immediately? 8 + 9 + Check out the `@trueberryless-org/starlight-plugins-docs-components` getting started guide. 10 + 11 + ## License 12 + 13 + Licensed under the MIT License, Copyright © trueberryless-org. 14 + 15 + See [LICENSE](https://github.com/trueberryless-org/starlight-plugins-docs-components/blob/main/LICENSE) for more information.
+24
packages/starlight-plugins-docs-components/components/Resources.astro
··· 1 + --- 2 + import { ShowcaseText } from 'starlight-showcases' 3 + 4 + import { getResourcesByType, type ResourceType } from '../libs/resources' 5 + 6 + export type ResourceProps = Props 7 + 8 + interface Props { 9 + type: ResourceType 10 + } 11 + 12 + const { type } = Astro.props 13 + 14 + const resources = await getResourcesByType(type) 15 + --- 16 + 17 + { resources && resources.length > 0 ? <ShowcaseText 18 + entries={resources.map((resource) => ({ 19 + href: resource.url ?? `https://github.com/trueberryless-org/${resource.name}`, 20 + title: resource.name, 21 + description: resource.description, 22 + }))} 23 + /> 24 + : <p>trueberryless-org has not yet published any {type}.</p>}
+15
packages/starlight-plugins-docs-components/components/ResourcesIntro.astro
··· 1 + --- 2 + import { getResourceTypes } from "../libs/resources"; 3 + import humanizeList from "humanize-list"; 4 + const resourceTypes = await getResourceTypes() 5 + --- 6 + 7 + <p> 8 + Plugins can customize Starlight configuration, UI, and behavior. Check out the Starlight <a 9 + href="https://starlight.astro.build/resources/plugins/">Plugins and Integrations</a 10 + > showcase for a list of available plugins. 11 + </p> 12 + 13 + <p> 14 + You can find all the Starlight {humanizeList(resourceTypes)} we developed in the list below. 15 + </p>
+11
packages/starlight-plugins-docs-components/components/ResourcesList.astro
··· 1 + --- 2 + import { getResourceTypes } from "../libs/resources"; 3 + import Resources from "./Resources.astro"; 4 + import { capitalCase } from "change-case"; 5 + const resourceTypes = await getResourceTypes() 6 + --- 7 + 8 + {resourceTypes.map((resourceType) => ( 9 + <h2>{capitalCase(resourceType)}</h2> 10 + <Resources type={resourceType} /> 11 + ))}
+9
packages/starlight-plugins-docs-components/components/Showcase.astro
··· 1 + --- 2 + import { ShowcaseImage, type ShowcaseImageProps } from 'starlight-showcases' 3 + 4 + export type ShowcaseProps = Props 5 + 6 + type Props = ShowcaseImageProps 7 + --- 8 + 9 + <ShowcaseImage {...Astro.props} />
+17
packages/starlight-plugins-docs-components/components/ShowcaseIntro.astro
··· 1 + --- 2 + import { ShowcaseCTA } from 'starlight-showcases' 3 + 4 + export type ShowcaseIntroProps = Props 5 + 6 + interface Props { 7 + cta: string 8 + href: string 9 + } 10 + 11 + const { cta, href } = Astro.props 12 + --- 13 + 14 + <ShowcaseCTA> 15 + {cta}{' '} 16 + <a {href}>Open a PR</a> to add it to the list! 17 + </ShowcaseCTA>
+8
packages/starlight-plugins-docs-components/index.ts
··· 1 + export { default as ResourcesIntro } from "./components/ResourcesIntro.astro"; 2 + export { default as Resources, type ResourceProps } from "./components/Resources.astro"; 3 + export { default as ResourcesList } from "./components/ResourcesList.astro"; 4 + export { 5 + default as ShowcaseIntro, 6 + type ShowcaseIntroProps, 7 + } from "./components/ShowcaseIntro.astro"; 8 + export { default as Showcase, type ShowcaseProps } from "./components/Showcase.astro";
+38
packages/starlight-plugins-docs-components/libs/resources.ts
··· 1 + const resourcesUrl = 2 + "https://gist.githubusercontent.com/trueberryless/7ed4110d6f4cf4d2517d98dfcc035705/raw"; 3 + 4 + let resources: Resources | undefined = undefined; 5 + 6 + export async function getResourceTypes(): Promise<ResourceType[]> { 7 + const resources = await getResources(); 8 + return Object.keys(resources); 9 + } 10 + 11 + export async function getResourcesByType(type: ResourceType): Promise<Resource[] | undefined> { 12 + const resources = await getResources(); 13 + return resources[type]; 14 + } 15 + 16 + export async function getResources(): Promise<Resources> { 17 + if (resources) { 18 + return resources; 19 + } 20 + 21 + try { 22 + const response = await fetch(resourcesUrl); 23 + resources = (await response.json()) as Resources; 24 + return resources; 25 + } catch (error) { 26 + throw new Error("Failed to fetch resources.", { cause: error }); 27 + } 28 + } 29 + 30 + interface Resource { 31 + name: string; 32 + description: string; 33 + url?: string; 34 + } 35 + 36 + export type ResourceType = string; 37 + 38 + type Resources = Record<ResourceType, Resource[]>;
+37
packages/starlight-plugins-docs-components/package.json
··· 1 + { 2 + "name": "@trueberryless-org/starlight-plugins-docs-components", 3 + "version": "0.0.1", 4 + "license": "MIT", 5 + "description": "Set of opinionated Starlight components used in trueberryless-org&#39;s Starlight plugins documentations", 6 + "author": "trueberryless-org", 7 + "type": "module", 8 + "exports": { 9 + ".": "./index.ts", 10 + "./package.json": "./package.json" 11 + }, 12 + "devDependencies": { 13 + "@astrojs/starlight": "^0.28.5", 14 + "astro": "^4.16.8", 15 + "humanize-list": "^1.0.1" 16 + }, 17 + "peerDependencies": { 18 + "@astrojs/starlight": ">=0.28" 19 + }, 20 + "engines": { 21 + "node": "^18.17.1 || ^20.3.0 || >=21.0.0" 22 + }, 23 + "publishConfig": { 24 + "access": "public" 25 + }, 26 + "homepage": "https://github.com/trueberryless-org/starlight-plugins-docs-components", 27 + "repository": { 28 + "type": "git", 29 + "url": "https://github.com/trueberryless-org/starlight-plugins-docs-components.git", 30 + "directory": "packages/starlight-plugins-docs-components" 31 + }, 32 + "bugs": "https://github.com/trueberryless-org/starlight-plugins-docs-components/issues", 33 + "dependencies": { 34 + "change-case": "^5.4.4", 35 + "starlight-showcases": "^0.2.0" 36 + } 37 + }
+3
packages/starlight-plugins-docs-components/tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strictest" 3 + }
+4480
pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: {} 10 + 11 + docs: 12 + dependencies: 13 + '@astrojs/starlight': 14 + specifier: ^0.28.5 15 + version: 0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 16 + '@trueberryless-org/starlight-plugins-docs-components': 17 + specifier: workspace:* 18 + version: link:../packages/starlight-plugins-docs-components 19 + astro: 20 + specifier: ^4.16.8 21 + version: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 22 + sharp: 23 + specifier: ^0.33.5 24 + version: 0.33.5 25 + starlight-links-validator: 26 + specifier: ^0.13.0 27 + version: 0.13.0(@astrojs/starlight@0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)))(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 28 + 29 + packages/starlight-plugins-docs-components: 30 + dependencies: 31 + change-case: 32 + specifier: ^5.4.4 33 + version: 5.4.4 34 + starlight-showcases: 35 + specifier: ^0.2.0 36 + version: 0.2.0(@astrojs/starlight@0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)))(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 37 + devDependencies: 38 + '@astrojs/starlight': 39 + specifier: ^0.28.5 40 + version: 0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 41 + astro: 42 + specifier: ^4.16.8 43 + version: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 44 + humanize-list: 45 + specifier: ^1.0.1 46 + version: 1.0.1 47 + 48 + packages: 49 + 50 + '@ampproject/remapping@2.3.0': 51 + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 52 + engines: {node: '>=6.0.0'} 53 + 54 + '@astro-community/astro-embed-twitter@0.5.8': 55 + resolution: {integrity: sha512-O2ptQPw+DfipukK8czjJcTcyVgDsrs3OmrHbc3YmWRglaUTOpSTImzPo076POyNBSWjLaRKloul81DFiAMNjTA==} 56 + peerDependencies: 57 + astro: ^2.0.0 || ^3.0.0-beta || ^4.0.0-beta || ^5.0.0-beta 58 + 59 + '@astro-community/astro-embed-utils@0.1.3': 60 + resolution: {integrity: sha512-eiMO+vfCdE9GtW6qE7X5Xl6YCKZDCoXJEWqRofQcoC3GHjqN2/WhJlnaxNVRq3demSO03UNtho57Em5p7o7AOA==} 61 + 62 + '@astro-community/astro-embed-youtube@0.5.5': 63 + resolution: {integrity: sha512-pG9uYjyZB1kpW8Ljy/H1Klof2txVXLwQmyoG4XWblZyt9eqFlaa65MdzL7UKzzqdoOsn64TN+Q+zPbx0HJhP4Q==} 64 + peerDependencies: 65 + astro: ^2.0.0 || ^3.0.0-beta || ^4.0.0-beta || ^5.0.0-beta 66 + 67 + '@astrojs/compiler@2.10.3': 68 + resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} 69 + 70 + '@astrojs/internal-helpers@0.4.1': 71 + resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==} 72 + 73 + '@astrojs/markdown-remark@5.3.0': 74 + resolution: {integrity: sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==} 75 + 76 + '@astrojs/mdx@3.1.9': 77 + resolution: {integrity: sha512-3jPD4Bff6lIA20RQoonnZkRtZ9T3i0HFm6fcDF7BMsKIZ+xBP2KXzQWiuGu62lrVCmU612N+SQVGl5e0fI+zWg==} 78 + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} 79 + peerDependencies: 80 + astro: ^4.8.0 81 + 82 + '@astrojs/prism@3.1.0': 83 + resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==} 84 + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} 85 + 86 + '@astrojs/sitemap@3.2.1': 87 + resolution: {integrity: sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==} 88 + 89 + '@astrojs/starlight@0.28.5': 90 + resolution: {integrity: sha512-0+++CW69mC2M0unHiAGfSrL+hCL9fgYMdU3t979msLIMxQtkyr9ajm8AIaAEWMfvIL0H+GKuNTritu5PgE6vPQ==} 91 + peerDependencies: 92 + astro: ^4.14.0 93 + 94 + '@astrojs/telemetry@3.1.0': 95 + resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==} 96 + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} 97 + 98 + '@babel/code-frame@7.26.2': 99 + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 100 + engines: {node: '>=6.9.0'} 101 + 102 + '@babel/compat-data@7.26.2': 103 + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} 104 + engines: {node: '>=6.9.0'} 105 + 106 + '@babel/core@7.26.0': 107 + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} 108 + engines: {node: '>=6.9.0'} 109 + 110 + '@babel/generator@7.26.2': 111 + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} 112 + engines: {node: '>=6.9.0'} 113 + 114 + '@babel/helper-annotate-as-pure@7.25.9': 115 + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} 116 + engines: {node: '>=6.9.0'} 117 + 118 + '@babel/helper-compilation-targets@7.25.9': 119 + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} 120 + engines: {node: '>=6.9.0'} 121 + 122 + '@babel/helper-module-imports@7.25.9': 123 + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 124 + engines: {node: '>=6.9.0'} 125 + 126 + '@babel/helper-module-transforms@7.26.0': 127 + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 128 + engines: {node: '>=6.9.0'} 129 + peerDependencies: 130 + '@babel/core': ^7.0.0 131 + 132 + '@babel/helper-plugin-utils@7.25.9': 133 + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} 134 + engines: {node: '>=6.9.0'} 135 + 136 + '@babel/helper-string-parser@7.25.9': 137 + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 138 + engines: {node: '>=6.9.0'} 139 + 140 + '@babel/helper-validator-identifier@7.25.9': 141 + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 142 + engines: {node: '>=6.9.0'} 143 + 144 + '@babel/helper-validator-option@7.25.9': 145 + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 146 + engines: {node: '>=6.9.0'} 147 + 148 + '@babel/helpers@7.26.0': 149 + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} 150 + engines: {node: '>=6.9.0'} 151 + 152 + '@babel/parser@7.26.2': 153 + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} 154 + engines: {node: '>=6.0.0'} 155 + hasBin: true 156 + 157 + '@babel/plugin-syntax-jsx@7.25.9': 158 + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} 159 + engines: {node: '>=6.9.0'} 160 + peerDependencies: 161 + '@babel/core': ^7.0.0-0 162 + 163 + '@babel/plugin-transform-react-jsx@7.25.9': 164 + resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} 165 + engines: {node: '>=6.9.0'} 166 + peerDependencies: 167 + '@babel/core': ^7.0.0-0 168 + 169 + '@babel/runtime@7.26.0': 170 + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} 171 + engines: {node: '>=6.9.0'} 172 + 173 + '@babel/template@7.25.9': 174 + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} 175 + engines: {node: '>=6.9.0'} 176 + 177 + '@babel/traverse@7.25.9': 178 + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} 179 + engines: {node: '>=6.9.0'} 180 + 181 + '@babel/types@7.26.0': 182 + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} 183 + engines: {node: '>=6.9.0'} 184 + 185 + '@ctrl/tinycolor@4.1.0': 186 + resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==} 187 + engines: {node: '>=14'} 188 + 189 + '@emnapi/runtime@1.3.1': 190 + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 191 + 192 + '@esbuild/aix-ppc64@0.21.5': 193 + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 194 + engines: {node: '>=12'} 195 + cpu: [ppc64] 196 + os: [aix] 197 + 198 + '@esbuild/android-arm64@0.21.5': 199 + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 200 + engines: {node: '>=12'} 201 + cpu: [arm64] 202 + os: [android] 203 + 204 + '@esbuild/android-arm@0.21.5': 205 + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 206 + engines: {node: '>=12'} 207 + cpu: [arm] 208 + os: [android] 209 + 210 + '@esbuild/android-x64@0.21.5': 211 + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 212 + engines: {node: '>=12'} 213 + cpu: [x64] 214 + os: [android] 215 + 216 + '@esbuild/darwin-arm64@0.21.5': 217 + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 218 + engines: {node: '>=12'} 219 + cpu: [arm64] 220 + os: [darwin] 221 + 222 + '@esbuild/darwin-x64@0.21.5': 223 + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 224 + engines: {node: '>=12'} 225 + cpu: [x64] 226 + os: [darwin] 227 + 228 + '@esbuild/freebsd-arm64@0.21.5': 229 + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 230 + engines: {node: '>=12'} 231 + cpu: [arm64] 232 + os: [freebsd] 233 + 234 + '@esbuild/freebsd-x64@0.21.5': 235 + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 236 + engines: {node: '>=12'} 237 + cpu: [x64] 238 + os: [freebsd] 239 + 240 + '@esbuild/linux-arm64@0.21.5': 241 + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 242 + engines: {node: '>=12'} 243 + cpu: [arm64] 244 + os: [linux] 245 + 246 + '@esbuild/linux-arm@0.21.5': 247 + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 248 + engines: {node: '>=12'} 249 + cpu: [arm] 250 + os: [linux] 251 + 252 + '@esbuild/linux-ia32@0.21.5': 253 + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 254 + engines: {node: '>=12'} 255 + cpu: [ia32] 256 + os: [linux] 257 + 258 + '@esbuild/linux-loong64@0.21.5': 259 + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 260 + engines: {node: '>=12'} 261 + cpu: [loong64] 262 + os: [linux] 263 + 264 + '@esbuild/linux-mips64el@0.21.5': 265 + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 266 + engines: {node: '>=12'} 267 + cpu: [mips64el] 268 + os: [linux] 269 + 270 + '@esbuild/linux-ppc64@0.21.5': 271 + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 272 + engines: {node: '>=12'} 273 + cpu: [ppc64] 274 + os: [linux] 275 + 276 + '@esbuild/linux-riscv64@0.21.5': 277 + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 278 + engines: {node: '>=12'} 279 + cpu: [riscv64] 280 + os: [linux] 281 + 282 + '@esbuild/linux-s390x@0.21.5': 283 + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 284 + engines: {node: '>=12'} 285 + cpu: [s390x] 286 + os: [linux] 287 + 288 + '@esbuild/linux-x64@0.21.5': 289 + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 290 + engines: {node: '>=12'} 291 + cpu: [x64] 292 + os: [linux] 293 + 294 + '@esbuild/netbsd-x64@0.21.5': 295 + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 296 + engines: {node: '>=12'} 297 + cpu: [x64] 298 + os: [netbsd] 299 + 300 + '@esbuild/openbsd-x64@0.21.5': 301 + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 302 + engines: {node: '>=12'} 303 + cpu: [x64] 304 + os: [openbsd] 305 + 306 + '@esbuild/sunos-x64@0.21.5': 307 + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 308 + engines: {node: '>=12'} 309 + cpu: [x64] 310 + os: [sunos] 311 + 312 + '@esbuild/win32-arm64@0.21.5': 313 + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 314 + engines: {node: '>=12'} 315 + cpu: [arm64] 316 + os: [win32] 317 + 318 + '@esbuild/win32-ia32@0.21.5': 319 + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 320 + engines: {node: '>=12'} 321 + cpu: [ia32] 322 + os: [win32] 323 + 324 + '@esbuild/win32-x64@0.21.5': 325 + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 326 + engines: {node: '>=12'} 327 + cpu: [x64] 328 + os: [win32] 329 + 330 + '@expressive-code/core@0.35.6': 331 + resolution: {integrity: sha512-xGqCkmfkgT7lr/rvmfnYdDSeTdCSp1otAHgoFS6wNEeO7wGDPpxdosVqYiIcQ8CfWUABh/pGqWG90q+MV3824A==} 332 + 333 + '@expressive-code/plugin-frames@0.35.6': 334 + resolution: {integrity: sha512-CqjSWjDJ3wabMJZfL9ZAzH5UAGKg7KWsf1TBzr4xvUbZvWoBtLA/TboBML0U1Ls8h/4TRCIvR4VEb8dv5+QG3w==} 335 + 336 + '@expressive-code/plugin-shiki@0.35.6': 337 + resolution: {integrity: sha512-xm+hzi9BsmhkDUGuyAWIydOAWer7Cs9cj8FM0t4HXaQ+qCubprT6wJZSKUxuvFJIUsIOqk1xXFaJzGJGnWtKMg==} 338 + 339 + '@expressive-code/plugin-text-markers@0.35.6': 340 + resolution: {integrity: sha512-/k9eWVZSCs+uEKHR++22Uu6eIbHWEciVHbIuD8frT8DlqTtHYaaiwHPncO6KFWnGDz5i/gL7oyl6XmOi/E6GVg==} 341 + 342 + '@img/sharp-darwin-arm64@0.33.5': 343 + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 344 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 345 + cpu: [arm64] 346 + os: [darwin] 347 + 348 + '@img/sharp-darwin-x64@0.33.5': 349 + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 350 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 351 + cpu: [x64] 352 + os: [darwin] 353 + 354 + '@img/sharp-libvips-darwin-arm64@1.0.4': 355 + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 356 + cpu: [arm64] 357 + os: [darwin] 358 + 359 + '@img/sharp-libvips-darwin-x64@1.0.4': 360 + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 361 + cpu: [x64] 362 + os: [darwin] 363 + 364 + '@img/sharp-libvips-linux-arm64@1.0.4': 365 + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 366 + cpu: [arm64] 367 + os: [linux] 368 + 369 + '@img/sharp-libvips-linux-arm@1.0.5': 370 + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 371 + cpu: [arm] 372 + os: [linux] 373 + 374 + '@img/sharp-libvips-linux-s390x@1.0.4': 375 + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 376 + cpu: [s390x] 377 + os: [linux] 378 + 379 + '@img/sharp-libvips-linux-x64@1.0.4': 380 + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 381 + cpu: [x64] 382 + os: [linux] 383 + 384 + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 385 + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 386 + cpu: [arm64] 387 + os: [linux] 388 + 389 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': 390 + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 391 + cpu: [x64] 392 + os: [linux] 393 + 394 + '@img/sharp-linux-arm64@0.33.5': 395 + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 396 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 397 + cpu: [arm64] 398 + os: [linux] 399 + 400 + '@img/sharp-linux-arm@0.33.5': 401 + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 402 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 403 + cpu: [arm] 404 + os: [linux] 405 + 406 + '@img/sharp-linux-s390x@0.33.5': 407 + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 408 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 409 + cpu: [s390x] 410 + os: [linux] 411 + 412 + '@img/sharp-linux-x64@0.33.5': 413 + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 414 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 415 + cpu: [x64] 416 + os: [linux] 417 + 418 + '@img/sharp-linuxmusl-arm64@0.33.5': 419 + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 420 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 421 + cpu: [arm64] 422 + os: [linux] 423 + 424 + '@img/sharp-linuxmusl-x64@0.33.5': 425 + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 426 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 427 + cpu: [x64] 428 + os: [linux] 429 + 430 + '@img/sharp-wasm32@0.33.5': 431 + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 432 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 433 + cpu: [wasm32] 434 + 435 + '@img/sharp-win32-ia32@0.33.5': 436 + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 437 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 438 + cpu: [ia32] 439 + os: [win32] 440 + 441 + '@img/sharp-win32-x64@0.33.5': 442 + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 443 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 444 + cpu: [x64] 445 + os: [win32] 446 + 447 + '@jridgewell/gen-mapping@0.3.5': 448 + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 449 + engines: {node: '>=6.0.0'} 450 + 451 + '@jridgewell/resolve-uri@3.1.2': 452 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 453 + engines: {node: '>=6.0.0'} 454 + 455 + '@jridgewell/set-array@1.2.1': 456 + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 457 + engines: {node: '>=6.0.0'} 458 + 459 + '@jridgewell/sourcemap-codec@1.5.0': 460 + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 461 + 462 + '@jridgewell/trace-mapping@0.3.25': 463 + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 464 + 465 + '@mdx-js/mdx@3.1.0': 466 + resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==} 467 + 468 + '@nodelib/fs.scandir@2.1.5': 469 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 470 + engines: {node: '>= 8'} 471 + 472 + '@nodelib/fs.stat@2.0.5': 473 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 474 + engines: {node: '>= 8'} 475 + 476 + '@nodelib/fs.walk@1.2.8': 477 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 478 + engines: {node: '>= 8'} 479 + 480 + '@oslojs/encoding@1.1.0': 481 + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 482 + 483 + '@pagefind/darwin-arm64@1.1.1': 484 + resolution: {integrity: sha512-tZ9tysUmQpFs2EqWG2+E1gc+opDAhSyZSsgKmFzhnWfkK02YHZhvL5XJXEZDqYy3s1FAKhwjTg8XDxneuBlDZQ==} 485 + cpu: [arm64] 486 + os: [darwin] 487 + 488 + '@pagefind/darwin-x64@1.1.1': 489 + resolution: {integrity: sha512-ChohLQ39dLwaxQv0jIQB/SavP3TM5K5ENfDTqIdzLkmfs3+JlzSDyQKcJFjTHYcCzQOZVeieeGq8PdqvLJxJxQ==} 490 + cpu: [x64] 491 + os: [darwin] 492 + 493 + '@pagefind/default-ui@1.1.1': 494 + resolution: {integrity: sha512-ZM0zDatWDnac/VGHhQCiM7UgA4ca8jpjA+VfuTJyHJBaxGqZMQnm4WoTz9E0KFcue1Bh9kxpu7uWFZfwpZZk0A==} 495 + 496 + '@pagefind/linux-arm64@1.1.1': 497 + resolution: {integrity: sha512-H5P6wDoCoAbdsWp0Zx0DxnLUrwTGWGLu/VI1rcN2CyFdY2EGSvPQsbGBMrseKRNuIrJDFtxHHHyjZ7UbzaM9EA==} 498 + cpu: [arm64] 499 + os: [linux] 500 + 501 + '@pagefind/linux-x64@1.1.1': 502 + resolution: {integrity: sha512-yJs7tTYbL2MI3HT+ngs9E1BfUbY9M4/YzA0yEM5xBo4Xl8Yu8Qg2xZTOQ1/F6gwvMrjCUFo8EoACs6LRDhtMrQ==} 503 + cpu: [x64] 504 + os: [linux] 505 + 506 + '@pagefind/windows-x64@1.1.1': 507 + resolution: {integrity: sha512-b7/qPqgIl+lMzkQ8fJt51SfguB396xbIIR+VZ3YrL2tLuyifDJ1wL5mEm+ddmHxJ2Fki340paPcDan9en5OmAw==} 508 + cpu: [x64] 509 + os: [win32] 510 + 511 + '@rollup/pluginutils@5.1.3': 512 + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} 513 + engines: {node: '>=14.0.0'} 514 + peerDependencies: 515 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 516 + peerDependenciesMeta: 517 + rollup: 518 + optional: true 519 + 520 + '@rollup/rollup-android-arm-eabi@4.24.3': 521 + resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} 522 + cpu: [arm] 523 + os: [android] 524 + 525 + '@rollup/rollup-android-arm64@4.24.3': 526 + resolution: {integrity: sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==} 527 + cpu: [arm64] 528 + os: [android] 529 + 530 + '@rollup/rollup-darwin-arm64@4.24.3': 531 + resolution: {integrity: sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==} 532 + cpu: [arm64] 533 + os: [darwin] 534 + 535 + '@rollup/rollup-darwin-x64@4.24.3': 536 + resolution: {integrity: sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==} 537 + cpu: [x64] 538 + os: [darwin] 539 + 540 + '@rollup/rollup-freebsd-arm64@4.24.3': 541 + resolution: {integrity: sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==} 542 + cpu: [arm64] 543 + os: [freebsd] 544 + 545 + '@rollup/rollup-freebsd-x64@4.24.3': 546 + resolution: {integrity: sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==} 547 + cpu: [x64] 548 + os: [freebsd] 549 + 550 + '@rollup/rollup-linux-arm-gnueabihf@4.24.3': 551 + resolution: {integrity: sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==} 552 + cpu: [arm] 553 + os: [linux] 554 + 555 + '@rollup/rollup-linux-arm-musleabihf@4.24.3': 556 + resolution: {integrity: sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==} 557 + cpu: [arm] 558 + os: [linux] 559 + 560 + '@rollup/rollup-linux-arm64-gnu@4.24.3': 561 + resolution: {integrity: sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==} 562 + cpu: [arm64] 563 + os: [linux] 564 + 565 + '@rollup/rollup-linux-arm64-musl@4.24.3': 566 + resolution: {integrity: sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==} 567 + cpu: [arm64] 568 + os: [linux] 569 + 570 + '@rollup/rollup-linux-powerpc64le-gnu@4.24.3': 571 + resolution: {integrity: sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==} 572 + cpu: [ppc64] 573 + os: [linux] 574 + 575 + '@rollup/rollup-linux-riscv64-gnu@4.24.3': 576 + resolution: {integrity: sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==} 577 + cpu: [riscv64] 578 + os: [linux] 579 + 580 + '@rollup/rollup-linux-s390x-gnu@4.24.3': 581 + resolution: {integrity: sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==} 582 + cpu: [s390x] 583 + os: [linux] 584 + 585 + '@rollup/rollup-linux-x64-gnu@4.24.3': 586 + resolution: {integrity: sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==} 587 + cpu: [x64] 588 + os: [linux] 589 + 590 + '@rollup/rollup-linux-x64-musl@4.24.3': 591 + resolution: {integrity: sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==} 592 + cpu: [x64] 593 + os: [linux] 594 + 595 + '@rollup/rollup-win32-arm64-msvc@4.24.3': 596 + resolution: {integrity: sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==} 597 + cpu: [arm64] 598 + os: [win32] 599 + 600 + '@rollup/rollup-win32-ia32-msvc@4.24.3': 601 + resolution: {integrity: sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==} 602 + cpu: [ia32] 603 + os: [win32] 604 + 605 + '@rollup/rollup-win32-x64-msvc@4.24.3': 606 + resolution: {integrity: sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==} 607 + cpu: [x64] 608 + os: [win32] 609 + 610 + '@shikijs/core@1.22.2': 611 + resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==} 612 + 613 + '@shikijs/engine-javascript@1.22.2': 614 + resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==} 615 + 616 + '@shikijs/engine-oniguruma@1.22.2': 617 + resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==} 618 + 619 + '@shikijs/types@1.22.2': 620 + resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==} 621 + 622 + '@shikijs/vscode-textmate@9.3.0': 623 + resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} 624 + 625 + '@types/acorn@4.0.6': 626 + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} 627 + 628 + '@types/babel__core@7.20.5': 629 + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 630 + 631 + '@types/babel__generator@7.6.8': 632 + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 633 + 634 + '@types/babel__template@7.4.4': 635 + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 636 + 637 + '@types/babel__traverse@7.20.6': 638 + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} 639 + 640 + '@types/cookie@0.6.0': 641 + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 642 + 643 + '@types/debug@4.1.12': 644 + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 645 + 646 + '@types/estree-jsx@1.0.5': 647 + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} 648 + 649 + '@types/estree@1.0.6': 650 + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 651 + 652 + '@types/hast@3.0.4': 653 + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 654 + 655 + '@types/mdast@4.0.4': 656 + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 657 + 658 + '@types/mdx@2.0.13': 659 + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} 660 + 661 + '@types/ms@0.7.34': 662 + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 663 + 664 + '@types/nlcst@2.0.3': 665 + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 666 + 667 + '@types/node@17.0.45': 668 + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} 669 + 670 + '@types/picomatch@2.3.3': 671 + resolution: {integrity: sha512-Yll76ZHikRFCyz/pffKGjrCwe/le2CDwOP5F210KQo27kpRE46U2rDnzikNlVn6/ezH3Mhn46bJMTfeVTtcYMg==} 672 + 673 + '@types/sax@1.2.7': 674 + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} 675 + 676 + '@types/unist@2.0.11': 677 + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} 678 + 679 + '@types/unist@3.0.3': 680 + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 681 + 682 + '@ungap/structured-clone@1.2.0': 683 + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 684 + 685 + acorn-jsx@5.3.2: 686 + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 687 + peerDependencies: 688 + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 689 + 690 + acorn@8.14.0: 691 + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 692 + engines: {node: '>=0.4.0'} 693 + hasBin: true 694 + 695 + ansi-align@3.0.1: 696 + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 697 + 698 + ansi-regex@5.0.1: 699 + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 700 + engines: {node: '>=8'} 701 + 702 + ansi-regex@6.1.0: 703 + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 704 + engines: {node: '>=12'} 705 + 706 + ansi-styles@6.2.1: 707 + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 708 + engines: {node: '>=12'} 709 + 710 + arg@5.0.2: 711 + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 712 + 713 + argparse@1.0.10: 714 + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 715 + 716 + argparse@2.0.1: 717 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 718 + 719 + aria-query@5.3.2: 720 + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 721 + engines: {node: '>= 0.4'} 722 + 723 + array-iterate@2.0.1: 724 + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 725 + 726 + astring@1.9.0: 727 + resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} 728 + hasBin: true 729 + 730 + astro-expressive-code@0.35.6: 731 + resolution: {integrity: sha512-1U4KrvFuodaCV3z4I1bIR16SdhQlPkolGsYTtiANxPZUVv/KitGSCTjzksrkPonn1XuwVqvnwmUUVzTLWngnBA==} 732 + peerDependencies: 733 + astro: ^4.0.0-beta || ^3.3.0 734 + 735 + astro@4.16.8: 736 + resolution: {integrity: sha512-BRWFP0UQ8gkOr90KQW7oooedtgCk/j91pyv1WQUmgZwMUZk/v0HJRiddAZgvGCECOnmZFc9ZqRZnBsAMUgApNQ==} 737 + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 738 + hasBin: true 739 + 740 + axobject-query@4.1.0: 741 + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 742 + engines: {node: '>= 0.4'} 743 + 744 + bail@2.0.2: 745 + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 746 + 747 + base-64@1.0.0: 748 + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 749 + 750 + bcp-47-match@2.0.3: 751 + resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} 752 + 753 + bcp-47@2.1.0: 754 + resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} 755 + 756 + boolbase@1.0.0: 757 + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 758 + 759 + boxen@8.0.1: 760 + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 761 + engines: {node: '>=18'} 762 + 763 + braces@3.0.3: 764 + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 765 + engines: {node: '>=8'} 766 + 767 + browserslist@4.24.2: 768 + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} 769 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 770 + hasBin: true 771 + 772 + camelcase@8.0.0: 773 + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 774 + engines: {node: '>=16'} 775 + 776 + caniuse-lite@1.0.30001677: 777 + resolution: {integrity: sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==} 778 + 779 + ccount@2.0.1: 780 + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 781 + 782 + chalk@5.3.0: 783 + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} 784 + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 785 + 786 + change-case@5.4.4: 787 + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 788 + 789 + character-entities-html4@2.1.0: 790 + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 791 + 792 + character-entities-legacy@3.0.0: 793 + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 794 + 795 + character-entities@2.0.2: 796 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 797 + 798 + character-reference-invalid@2.0.1: 799 + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} 800 + 801 + ci-info@4.0.0: 802 + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} 803 + engines: {node: '>=8'} 804 + 805 + cli-boxes@3.0.0: 806 + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 807 + engines: {node: '>=10'} 808 + 809 + cli-cursor@5.0.0: 810 + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 811 + engines: {node: '>=18'} 812 + 813 + cli-spinners@2.9.2: 814 + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 815 + engines: {node: '>=6'} 816 + 817 + clsx@2.1.1: 818 + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 819 + engines: {node: '>=6'} 820 + 821 + collapse-white-space@2.1.0: 822 + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} 823 + 824 + color-convert@2.0.1: 825 + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 826 + engines: {node: '>=7.0.0'} 827 + 828 + color-name@1.1.4: 829 + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 830 + 831 + color-string@1.9.1: 832 + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 833 + 834 + color@4.2.3: 835 + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 836 + engines: {node: '>=12.5.0'} 837 + 838 + comma-separated-tokens@2.0.3: 839 + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 840 + 841 + common-ancestor-path@1.0.1: 842 + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 843 + 844 + convert-source-map@2.0.0: 845 + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 846 + 847 + cookie@0.7.2: 848 + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 849 + engines: {node: '>= 0.6'} 850 + 851 + css-select@5.1.0: 852 + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} 853 + 854 + css-selector-parser@3.0.5: 855 + resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} 856 + 857 + css-what@6.1.0: 858 + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 859 + engines: {node: '>= 6'} 860 + 861 + cssesc@3.0.0: 862 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 863 + engines: {node: '>=4'} 864 + hasBin: true 865 + 866 + cssom@0.5.0: 867 + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} 868 + 869 + debug@4.3.7: 870 + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 871 + engines: {node: '>=6.0'} 872 + peerDependencies: 873 + supports-color: '*' 874 + peerDependenciesMeta: 875 + supports-color: 876 + optional: true 877 + 878 + decode-named-character-reference@1.0.2: 879 + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 880 + 881 + dequal@2.0.3: 882 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 883 + engines: {node: '>=6'} 884 + 885 + detect-libc@2.0.3: 886 + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 887 + engines: {node: '>=8'} 888 + 889 + deterministic-object-hash@2.0.2: 890 + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 891 + engines: {node: '>=18'} 892 + 893 + devalue@5.1.1: 894 + resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} 895 + 896 + devlop@1.1.0: 897 + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 898 + 899 + diff@5.2.0: 900 + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 901 + engines: {node: '>=0.3.1'} 902 + 903 + direction@2.0.1: 904 + resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} 905 + hasBin: true 906 + 907 + dlv@1.1.3: 908 + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 909 + 910 + dom-serializer@2.0.0: 911 + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 912 + 913 + domelementtype@2.3.0: 914 + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 915 + 916 + domhandler@5.0.3: 917 + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 918 + engines: {node: '>= 4'} 919 + 920 + domutils@3.1.0: 921 + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} 922 + 923 + dset@3.1.4: 924 + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 925 + engines: {node: '>=4'} 926 + 927 + electron-to-chromium@1.5.50: 928 + resolution: {integrity: sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==} 929 + 930 + emoji-regex@10.4.0: 931 + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} 932 + 933 + emoji-regex@8.0.0: 934 + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 935 + 936 + entities@4.5.0: 937 + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 938 + engines: {node: '>=0.12'} 939 + 940 + es-module-lexer@1.5.4: 941 + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} 942 + 943 + esast-util-from-estree@2.0.0: 944 + resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} 945 + 946 + esast-util-from-js@2.0.1: 947 + resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} 948 + 949 + esbuild@0.21.5: 950 + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 951 + engines: {node: '>=12'} 952 + hasBin: true 953 + 954 + escalade@3.2.0: 955 + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 956 + engines: {node: '>=6'} 957 + 958 + escape-string-regexp@5.0.0: 959 + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 960 + engines: {node: '>=12'} 961 + 962 + esprima@4.0.1: 963 + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 964 + engines: {node: '>=4'} 965 + hasBin: true 966 + 967 + estree-util-attach-comments@3.0.0: 968 + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} 969 + 970 + estree-util-build-jsx@3.0.1: 971 + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} 972 + 973 + estree-util-is-identifier-name@3.0.0: 974 + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} 975 + 976 + estree-util-scope@1.0.0: 977 + resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} 978 + 979 + estree-util-to-js@2.0.0: 980 + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} 981 + 982 + estree-util-visit@2.0.0: 983 + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} 984 + 985 + estree-walker@2.0.2: 986 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 987 + 988 + estree-walker@3.0.3: 989 + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 990 + 991 + eventemitter3@5.0.1: 992 + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 993 + 994 + expressive-code@0.35.6: 995 + resolution: {integrity: sha512-+mx+TPTbMqgo0mL92Xh9QgjW0kSQIsEivMgEcOnaqKqL7qCw8Vkqc5Rg/di7ZYw4aMUSr74VTc+w8GQWu05j1g==} 996 + 997 + extend-shallow@2.0.1: 998 + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} 999 + engines: {node: '>=0.10.0'} 1000 + 1001 + extend@3.0.2: 1002 + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 1003 + 1004 + fast-glob@3.3.2: 1005 + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1006 + engines: {node: '>=8.6.0'} 1007 + 1008 + fastq@1.17.1: 1009 + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1010 + 1011 + fill-range@7.1.1: 1012 + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1013 + engines: {node: '>=8'} 1014 + 1015 + find-up-simple@1.0.0: 1016 + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 1017 + engines: {node: '>=18'} 1018 + 1019 + find-up@4.1.0: 1020 + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1021 + engines: {node: '>=8'} 1022 + 1023 + find-yarn-workspace-root2@1.2.16: 1024 + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} 1025 + 1026 + flattie@1.1.1: 1027 + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 1028 + engines: {node: '>=8'} 1029 + 1030 + fsevents@2.3.3: 1031 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1032 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1033 + os: [darwin] 1034 + 1035 + gensync@1.0.0-beta.2: 1036 + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1037 + engines: {node: '>=6.9.0'} 1038 + 1039 + get-east-asian-width@1.3.0: 1040 + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} 1041 + engines: {node: '>=18'} 1042 + 1043 + github-slugger@2.0.0: 1044 + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 1045 + 1046 + glob-parent@5.1.2: 1047 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1048 + engines: {node: '>= 6'} 1049 + 1050 + globals@11.12.0: 1051 + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1052 + engines: {node: '>=4'} 1053 + 1054 + graceful-fs@4.2.11: 1055 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1056 + 1057 + gray-matter@4.0.3: 1058 + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} 1059 + engines: {node: '>=6.0'} 1060 + 1061 + hast-util-embedded@3.0.0: 1062 + resolution: {integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==} 1063 + 1064 + hast-util-format@1.1.0: 1065 + resolution: {integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==} 1066 + 1067 + hast-util-from-html@2.0.1: 1068 + resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} 1069 + 1070 + hast-util-from-html@2.0.3: 1071 + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 1072 + 1073 + hast-util-from-parse5@8.0.1: 1074 + resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} 1075 + 1076 + hast-util-has-property@3.0.0: 1077 + resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} 1078 + 1079 + hast-util-is-body-ok-link@3.0.1: 1080 + resolution: {integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==} 1081 + 1082 + hast-util-is-element@3.0.0: 1083 + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 1084 + 1085 + hast-util-minify-whitespace@1.0.1: 1086 + resolution: {integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==} 1087 + 1088 + hast-util-parse-selector@4.0.0: 1089 + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 1090 + 1091 + hast-util-phrasing@3.0.1: 1092 + resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==} 1093 + 1094 + hast-util-raw@9.0.4: 1095 + resolution: {integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==} 1096 + 1097 + hast-util-select@6.0.3: 1098 + resolution: {integrity: sha512-OVRQlQ1XuuLP8aFVLYmC2atrfWHS5UD3shonxpnyrjcCkwtvmt/+N6kYJdcY4mkMJhxp4kj2EFIxQ9kvkkt/eQ==} 1099 + 1100 + hast-util-to-estree@3.1.0: 1101 + resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} 1102 + 1103 + hast-util-to-html@9.0.3: 1104 + resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} 1105 + 1106 + hast-util-to-jsx-runtime@2.3.2: 1107 + resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} 1108 + 1109 + hast-util-to-parse5@8.0.0: 1110 + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 1111 + 1112 + hast-util-to-string@3.0.1: 1113 + resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} 1114 + 1115 + hast-util-to-text@4.0.2: 1116 + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 1117 + 1118 + hast-util-whitespace@3.0.0: 1119 + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 1120 + 1121 + hastscript@8.0.0: 1122 + resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} 1123 + 1124 + hastscript@9.0.0: 1125 + resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==} 1126 + 1127 + html-escaper@3.0.3: 1128 + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 1129 + 1130 + html-void-elements@3.0.0: 1131 + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 1132 + 1133 + html-whitespace-sensitive-tag-names@3.0.1: 1134 + resolution: {integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==} 1135 + 1136 + htmlparser2@8.0.2: 1137 + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} 1138 + 1139 + http-cache-semantics@4.1.1: 1140 + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 1141 + 1142 + humanize-list@1.0.1: 1143 + resolution: {integrity: sha512-4+p3fCRF21oUqxhK0yZ6yaSP/H5/wZumc7q1fH99RkW7Q13aAxDeP78BKjoR+6y+kaHqKF/JWuQhsNuuI2NKtA==} 1144 + 1145 + i18next@23.16.4: 1146 + resolution: {integrity: sha512-9NIYBVy9cs4wIqzurf7nLXPyf3R78xYbxExVqHLK9od3038rjpyOEzW+XB130kZ1N4PZ9inTtJ471CRJ4Ituyg==} 1147 + 1148 + import-meta-resolve@4.1.0: 1149 + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 1150 + 1151 + inline-style-parser@0.1.1: 1152 + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} 1153 + 1154 + inline-style-parser@0.2.4: 1155 + resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} 1156 + 1157 + is-absolute-url@4.0.1: 1158 + resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} 1159 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1160 + 1161 + is-alphabetical@2.0.1: 1162 + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} 1163 + 1164 + is-alphanumerical@2.0.1: 1165 + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} 1166 + 1167 + is-arrayish@0.3.2: 1168 + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1169 + 1170 + is-decimal@2.0.1: 1171 + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} 1172 + 1173 + is-docker@3.0.0: 1174 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 1175 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1176 + hasBin: true 1177 + 1178 + is-extendable@0.1.1: 1179 + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} 1180 + engines: {node: '>=0.10.0'} 1181 + 1182 + is-extglob@2.1.1: 1183 + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1184 + engines: {node: '>=0.10.0'} 1185 + 1186 + is-fullwidth-code-point@3.0.0: 1187 + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1188 + engines: {node: '>=8'} 1189 + 1190 + is-glob@4.0.3: 1191 + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1192 + engines: {node: '>=0.10.0'} 1193 + 1194 + is-hexadecimal@2.0.1: 1195 + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} 1196 + 1197 + is-inside-container@1.0.0: 1198 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 1199 + engines: {node: '>=14.16'} 1200 + hasBin: true 1201 + 1202 + is-interactive@2.0.0: 1203 + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} 1204 + engines: {node: '>=12'} 1205 + 1206 + is-number@7.0.0: 1207 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1208 + engines: {node: '>=0.12.0'} 1209 + 1210 + is-plain-obj@4.1.0: 1211 + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 1212 + engines: {node: '>=12'} 1213 + 1214 + is-unicode-supported@1.3.0: 1215 + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} 1216 + engines: {node: '>=12'} 1217 + 1218 + is-unicode-supported@2.1.0: 1219 + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 1220 + engines: {node: '>=18'} 1221 + 1222 + is-wsl@3.1.0: 1223 + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 1224 + engines: {node: '>=16'} 1225 + 1226 + js-tokens@4.0.0: 1227 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1228 + 1229 + js-yaml@3.14.1: 1230 + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 1231 + hasBin: true 1232 + 1233 + js-yaml@4.1.0: 1234 + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1235 + hasBin: true 1236 + 1237 + jsesc@3.0.2: 1238 + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} 1239 + engines: {node: '>=6'} 1240 + hasBin: true 1241 + 1242 + json5@2.2.3: 1243 + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1244 + engines: {node: '>=6'} 1245 + hasBin: true 1246 + 1247 + kind-of@6.0.3: 1248 + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} 1249 + engines: {node: '>=0.10.0'} 1250 + 1251 + kleur@3.0.3: 1252 + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 1253 + engines: {node: '>=6'} 1254 + 1255 + kleur@4.1.5: 1256 + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 1257 + engines: {node: '>=6'} 1258 + 1259 + linkedom@0.14.26: 1260 + resolution: {integrity: sha512-mK6TrydfFA7phrnp+1j57ycBwFI5bGSW6YXlw9acHoqF+mP/y+FooEYYyniOt5Ot57FSKB3iwmnuQ1UUyNLm5A==} 1261 + 1262 + lite-youtube-embed@0.3.3: 1263 + resolution: {integrity: sha512-gFfVVnj6NRjxVfJKo3qoLtpi0v5mn3AcR4eKD45wrxQuxzveFJUb+7Cr6uV6n+DjO8X3p0UzPPquhGt0H/y+NA==} 1264 + 1265 + load-yaml-file@0.2.0: 1266 + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} 1267 + engines: {node: '>=6'} 1268 + 1269 + locate-path@5.0.0: 1270 + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1271 + engines: {node: '>=8'} 1272 + 1273 + log-symbols@6.0.0: 1274 + resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} 1275 + engines: {node: '>=18'} 1276 + 1277 + longest-streak@3.1.0: 1278 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1279 + 1280 + lru-cache@5.1.1: 1281 + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1282 + 1283 + magic-string@0.30.12: 1284 + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} 1285 + 1286 + magicast@0.3.5: 1287 + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 1288 + 1289 + markdown-extensions@2.0.0: 1290 + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} 1291 + engines: {node: '>=16'} 1292 + 1293 + markdown-table@3.0.4: 1294 + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 1295 + 1296 + mdast-util-definitions@6.0.0: 1297 + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 1298 + 1299 + mdast-util-directive@3.0.0: 1300 + resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} 1301 + 1302 + mdast-util-find-and-replace@3.0.1: 1303 + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} 1304 + 1305 + mdast-util-from-markdown@2.0.2: 1306 + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 1307 + 1308 + mdast-util-gfm-autolink-literal@2.0.1: 1309 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1310 + 1311 + mdast-util-gfm-footnote@2.0.0: 1312 + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} 1313 + 1314 + mdast-util-gfm-strikethrough@2.0.0: 1315 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1316 + 1317 + mdast-util-gfm-table@2.0.0: 1318 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1319 + 1320 + mdast-util-gfm-task-list-item@2.0.0: 1321 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1322 + 1323 + mdast-util-gfm@3.0.0: 1324 + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} 1325 + 1326 + mdast-util-mdx-expression@2.0.1: 1327 + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} 1328 + 1329 + mdast-util-mdx-jsx@3.1.3: 1330 + resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} 1331 + 1332 + mdast-util-mdx@3.0.0: 1333 + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} 1334 + 1335 + mdast-util-mdxjs-esm@2.0.1: 1336 + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} 1337 + 1338 + mdast-util-phrasing@4.1.0: 1339 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1340 + 1341 + mdast-util-to-hast@13.2.0: 1342 + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 1343 + 1344 + mdast-util-to-markdown@2.1.1: 1345 + resolution: {integrity: sha512-OrkcCoqAkEg9b1ykXBrA0ehRc8H4fGU/03cACmW2xXzau1+dIdS+qJugh1Cqex3hMumSBgSE/5pc7uqP12nLAw==} 1346 + 1347 + mdast-util-to-string@4.0.0: 1348 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 1349 + 1350 + merge2@1.4.1: 1351 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1352 + engines: {node: '>= 8'} 1353 + 1354 + micromark-core-commonmark@2.0.1: 1355 + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} 1356 + 1357 + micromark-extension-directive@3.0.2: 1358 + resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==} 1359 + 1360 + micromark-extension-gfm-autolink-literal@2.1.0: 1361 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 1362 + 1363 + micromark-extension-gfm-footnote@2.1.0: 1364 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 1365 + 1366 + micromark-extension-gfm-strikethrough@2.1.0: 1367 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 1368 + 1369 + micromark-extension-gfm-table@2.1.0: 1370 + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} 1371 + 1372 + micromark-extension-gfm-tagfilter@2.0.0: 1373 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 1374 + 1375 + micromark-extension-gfm-task-list-item@2.1.0: 1376 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 1377 + 1378 + micromark-extension-gfm@3.0.0: 1379 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 1380 + 1381 + micromark-extension-mdx-expression@3.0.0: 1382 + resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} 1383 + 1384 + micromark-extension-mdx-jsx@3.0.1: 1385 + resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==} 1386 + 1387 + micromark-extension-mdx-md@2.0.0: 1388 + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} 1389 + 1390 + micromark-extension-mdxjs-esm@3.0.0: 1391 + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} 1392 + 1393 + micromark-extension-mdxjs@3.0.0: 1394 + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} 1395 + 1396 + micromark-factory-destination@2.0.0: 1397 + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} 1398 + 1399 + micromark-factory-label@2.0.0: 1400 + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} 1401 + 1402 + micromark-factory-mdx-expression@2.0.2: 1403 + resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==} 1404 + 1405 + micromark-factory-space@2.0.0: 1406 + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} 1407 + 1408 + micromark-factory-title@2.0.0: 1409 + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} 1410 + 1411 + micromark-factory-whitespace@2.0.0: 1412 + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} 1413 + 1414 + micromark-util-character@2.1.0: 1415 + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} 1416 + 1417 + micromark-util-chunked@2.0.0: 1418 + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} 1419 + 1420 + micromark-util-classify-character@2.0.0: 1421 + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} 1422 + 1423 + micromark-util-combine-extensions@2.0.0: 1424 + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} 1425 + 1426 + micromark-util-decode-numeric-character-reference@2.0.1: 1427 + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} 1428 + 1429 + micromark-util-decode-string@2.0.0: 1430 + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} 1431 + 1432 + micromark-util-encode@2.0.0: 1433 + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} 1434 + 1435 + micromark-util-events-to-acorn@2.0.2: 1436 + resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} 1437 + 1438 + micromark-util-html-tag-name@2.0.0: 1439 + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} 1440 + 1441 + micromark-util-normalize-identifier@2.0.0: 1442 + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} 1443 + 1444 + micromark-util-resolve-all@2.0.0: 1445 + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} 1446 + 1447 + micromark-util-sanitize-uri@2.0.0: 1448 + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} 1449 + 1450 + micromark-util-subtokenize@2.0.1: 1451 + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} 1452 + 1453 + micromark-util-symbol@2.0.0: 1454 + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} 1455 + 1456 + micromark-util-types@2.0.0: 1457 + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} 1458 + 1459 + micromark@4.0.0: 1460 + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} 1461 + 1462 + micromatch@4.0.8: 1463 + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1464 + engines: {node: '>=8.6'} 1465 + 1466 + mimic-function@5.0.1: 1467 + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} 1468 + engines: {node: '>=18'} 1469 + 1470 + mrmime@2.0.0: 1471 + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 1472 + engines: {node: '>=10'} 1473 + 1474 + ms@2.1.3: 1475 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1476 + 1477 + nanoid@3.3.7: 1478 + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1479 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1480 + hasBin: true 1481 + 1482 + neotraverse@0.6.18: 1483 + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 1484 + engines: {node: '>= 10'} 1485 + 1486 + nlcst-to-string@4.0.0: 1487 + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 1488 + 1489 + node-releases@2.0.18: 1490 + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} 1491 + 1492 + nth-check@2.1.1: 1493 + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1494 + 1495 + onetime@7.0.0: 1496 + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} 1497 + engines: {node: '>=18'} 1498 + 1499 + oniguruma-to-js@0.4.3: 1500 + resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==} 1501 + 1502 + ora@8.1.1: 1503 + resolution: {integrity: sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==} 1504 + engines: {node: '>=18'} 1505 + 1506 + p-limit@2.3.0: 1507 + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1508 + engines: {node: '>=6'} 1509 + 1510 + p-limit@6.1.0: 1511 + resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} 1512 + engines: {node: '>=18'} 1513 + 1514 + p-locate@4.1.0: 1515 + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1516 + engines: {node: '>=8'} 1517 + 1518 + p-queue@8.0.1: 1519 + resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} 1520 + engines: {node: '>=18'} 1521 + 1522 + p-timeout@6.1.3: 1523 + resolution: {integrity: sha512-UJUyfKbwvr/uZSV6btANfb+0t/mOhKV/KXcCUTp8FcQI+v/0d+wXqH4htrW0E4rR6WiEO/EPvUFiV9D5OI4vlw==} 1524 + engines: {node: '>=14.16'} 1525 + 1526 + p-try@2.2.0: 1527 + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1528 + engines: {node: '>=6'} 1529 + 1530 + pagefind@1.1.1: 1531 + resolution: {integrity: sha512-U2YR0dQN5B2fbIXrLtt/UXNS0yWSSYfePaad1KcBPTi0p+zRtsVjwmoPaMQgTks5DnHNbmDxyJUL5TGaLljK3A==} 1532 + hasBin: true 1533 + 1534 + parse-entities@4.0.1: 1535 + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} 1536 + 1537 + parse-latin@7.0.0: 1538 + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 1539 + 1540 + parse5@7.2.1: 1541 + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} 1542 + 1543 + path-exists@4.0.0: 1544 + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1545 + engines: {node: '>=8'} 1546 + 1547 + picocolors@1.1.1: 1548 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1549 + 1550 + picomatch@2.3.1: 1551 + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1552 + engines: {node: '>=8.6'} 1553 + 1554 + picomatch@4.0.2: 1555 + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1556 + engines: {node: '>=12'} 1557 + 1558 + pify@4.0.1: 1559 + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 1560 + engines: {node: '>=6'} 1561 + 1562 + pkg-dir@4.2.0: 1563 + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 1564 + engines: {node: '>=8'} 1565 + 1566 + postcss-nested@6.2.0: 1567 + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 1568 + engines: {node: '>=12.0'} 1569 + peerDependencies: 1570 + postcss: ^8.2.14 1571 + 1572 + postcss-selector-parser@6.1.2: 1573 + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1574 + engines: {node: '>=4'} 1575 + 1576 + postcss@8.4.47: 1577 + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} 1578 + engines: {node: ^10 || ^12 || >=14} 1579 + 1580 + preferred-pm@4.0.0: 1581 + resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} 1582 + engines: {node: '>=18.12'} 1583 + 1584 + prismjs@1.29.0: 1585 + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} 1586 + engines: {node: '>=6'} 1587 + 1588 + prompts@2.4.2: 1589 + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 1590 + engines: {node: '>= 6'} 1591 + 1592 + property-information@6.5.0: 1593 + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 1594 + 1595 + queue-microtask@1.2.3: 1596 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1597 + 1598 + recma-build-jsx@1.0.0: 1599 + resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} 1600 + 1601 + recma-jsx@1.0.0: 1602 + resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==} 1603 + 1604 + recma-parse@1.0.0: 1605 + resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} 1606 + 1607 + recma-stringify@1.0.0: 1608 + resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} 1609 + 1610 + regenerator-runtime@0.14.1: 1611 + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1612 + 1613 + regex@4.4.0: 1614 + resolution: {integrity: sha512-uCUSuobNVeqUupowbdZub6ggI5/JZkYyJdDogddJr60L764oxC2pMZov1fQ3wM9bdyzUILDG+Sqx6NAKAz9rKQ==} 1615 + 1616 + rehype-expressive-code@0.35.6: 1617 + resolution: {integrity: sha512-pPdE+pRcRw01kxMOwHQjuRxgwlblZt5+wAc3w2aPGgmcnn57wYjn07iKO7zaznDxYVxMYVvYlnL+R3vWFQS4Gw==} 1618 + 1619 + rehype-format@5.0.1: 1620 + resolution: {integrity: sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==} 1621 + 1622 + rehype-parse@9.0.1: 1623 + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 1624 + 1625 + rehype-raw@7.0.0: 1626 + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 1627 + 1628 + rehype-recma@1.0.0: 1629 + resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} 1630 + 1631 + rehype-stringify@10.0.1: 1632 + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 1633 + 1634 + rehype@13.0.2: 1635 + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 1636 + 1637 + remark-directive@3.0.0: 1638 + resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} 1639 + 1640 + remark-gfm@4.0.0: 1641 + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} 1642 + 1643 + remark-mdx@3.1.0: 1644 + resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} 1645 + 1646 + remark-parse@11.0.0: 1647 + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 1648 + 1649 + remark-rehype@11.1.1: 1650 + resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} 1651 + 1652 + remark-smartypants@3.0.2: 1653 + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 1654 + engines: {node: '>=16.0.0'} 1655 + 1656 + remark-stringify@11.0.0: 1657 + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 1658 + 1659 + restore-cursor@5.1.0: 1660 + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 1661 + engines: {node: '>=18'} 1662 + 1663 + retext-latin@4.0.0: 1664 + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 1665 + 1666 + retext-smartypants@6.2.0: 1667 + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 1668 + 1669 + retext-stringify@4.0.0: 1670 + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 1671 + 1672 + retext@9.0.0: 1673 + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 1674 + 1675 + reusify@1.0.4: 1676 + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1677 + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1678 + 1679 + rollup@4.24.3: 1680 + resolution: {integrity: sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==} 1681 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1682 + hasBin: true 1683 + 1684 + run-parallel@1.2.0: 1685 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1686 + 1687 + sax@1.4.1: 1688 + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 1689 + 1690 + section-matter@1.0.0: 1691 + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} 1692 + engines: {node: '>=4'} 1693 + 1694 + semver@6.3.1: 1695 + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1696 + hasBin: true 1697 + 1698 + semver@7.6.3: 1699 + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1700 + engines: {node: '>=10'} 1701 + hasBin: true 1702 + 1703 + sharp@0.33.5: 1704 + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1705 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1706 + 1707 + shiki@1.22.2: 1708 + resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==} 1709 + 1710 + signal-exit@4.1.0: 1711 + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1712 + engines: {node: '>=14'} 1713 + 1714 + simple-swizzle@0.2.2: 1715 + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1716 + 1717 + sisteransi@1.0.5: 1718 + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1719 + 1720 + sitemap@8.0.0: 1721 + resolution: {integrity: sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==} 1722 + engines: {node: '>=14.0.0', npm: '>=6.0.0'} 1723 + hasBin: true 1724 + 1725 + source-map-js@1.2.1: 1726 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1727 + engines: {node: '>=0.10.0'} 1728 + 1729 + source-map@0.7.4: 1730 + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 1731 + engines: {node: '>= 8'} 1732 + 1733 + space-separated-tokens@2.0.2: 1734 + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 1735 + 1736 + sprintf-js@1.0.3: 1737 + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 1738 + 1739 + starlight-links-validator@0.13.0: 1740 + resolution: {integrity: sha512-+kG/SO3j5190k7du5dd1Lcj9ZWvrjk9dhpsedEFC8AhfujkwuSkYm0b3u/jl3Yu9mA6zYA2JPlizAr9GtQssRg==} 1741 + engines: {node: '>=18.14.1'} 1742 + peerDependencies: 1743 + '@astrojs/starlight': '>=0.15.0' 1744 + astro: '>=4.0.0' 1745 + 1746 + starlight-showcases@0.2.0: 1747 + resolution: {integrity: sha512-YWJuTqArkUdVJV85VKZJ0BvKCQRu1SKtH/Cr5t6G/oIfI4IptWc92E7BmiuNnpuQ2U7TczTRidCYurPrbgQQVA==} 1748 + engines: {node: '>=18'} 1749 + peerDependencies: 1750 + '@astrojs/starlight': '>=0.23.0' 1751 + 1752 + stdin-discarder@0.2.2: 1753 + resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} 1754 + engines: {node: '>=18'} 1755 + 1756 + stream-replace-string@2.0.0: 1757 + resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} 1758 + 1759 + string-width@4.2.3: 1760 + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1761 + engines: {node: '>=8'} 1762 + 1763 + string-width@7.2.0: 1764 + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 1765 + engines: {node: '>=18'} 1766 + 1767 + stringify-entities@4.0.4: 1768 + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1769 + 1770 + strip-ansi@6.0.1: 1771 + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1772 + engines: {node: '>=8'} 1773 + 1774 + strip-ansi@7.1.0: 1775 + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1776 + engines: {node: '>=12'} 1777 + 1778 + strip-bom-string@1.0.0: 1779 + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} 1780 + engines: {node: '>=0.10.0'} 1781 + 1782 + strip-bom@3.0.0: 1783 + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1784 + engines: {node: '>=4'} 1785 + 1786 + style-to-object@0.4.4: 1787 + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} 1788 + 1789 + style-to-object@1.0.8: 1790 + resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} 1791 + 1792 + tinyexec@0.3.1: 1793 + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} 1794 + 1795 + to-regex-range@5.0.1: 1796 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1797 + engines: {node: '>=8.0'} 1798 + 1799 + trim-lines@3.0.1: 1800 + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1801 + 1802 + trough@2.2.0: 1803 + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 1804 + 1805 + tsconfck@3.1.4: 1806 + resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} 1807 + engines: {node: ^18 || >=20} 1808 + hasBin: true 1809 + peerDependencies: 1810 + typescript: ^5.0.0 1811 + peerDependenciesMeta: 1812 + typescript: 1813 + optional: true 1814 + 1815 + tslib@2.8.1: 1816 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1817 + 1818 + type-fest@4.26.1: 1819 + resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} 1820 + engines: {node: '>=16'} 1821 + 1822 + typescript@5.6.3: 1823 + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} 1824 + engines: {node: '>=14.17'} 1825 + hasBin: true 1826 + 1827 + uhyphen@0.2.0: 1828 + resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==} 1829 + 1830 + unified@11.0.5: 1831 + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 1832 + 1833 + unist-util-find-after@5.0.0: 1834 + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 1835 + 1836 + unist-util-is@6.0.0: 1837 + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 1838 + 1839 + unist-util-modify-children@4.0.0: 1840 + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 1841 + 1842 + unist-util-position-from-estree@2.0.0: 1843 + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} 1844 + 1845 + unist-util-position@5.0.0: 1846 + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 1847 + 1848 + unist-util-remove-position@5.0.0: 1849 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 1850 + 1851 + unist-util-stringify-position@4.0.0: 1852 + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1853 + 1854 + unist-util-visit-children@3.0.0: 1855 + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 1856 + 1857 + unist-util-visit-parents@6.0.1: 1858 + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 1859 + 1860 + unist-util-visit@5.0.0: 1861 + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1862 + 1863 + update-browserslist-db@1.1.1: 1864 + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} 1865 + hasBin: true 1866 + peerDependencies: 1867 + browserslist: '>= 4.21.0' 1868 + 1869 + util-deprecate@1.0.2: 1870 + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1871 + 1872 + vfile-location@5.0.3: 1873 + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 1874 + 1875 + vfile-message@4.0.2: 1876 + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} 1877 + 1878 + vfile@6.0.3: 1879 + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 1880 + 1881 + vite@5.4.10: 1882 + resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==} 1883 + engines: {node: ^18.0.0 || >=20.0.0} 1884 + hasBin: true 1885 + peerDependencies: 1886 + '@types/node': ^18.0.0 || >=20.0.0 1887 + less: '*' 1888 + lightningcss: ^1.21.0 1889 + sass: '*' 1890 + sass-embedded: '*' 1891 + stylus: '*' 1892 + sugarss: '*' 1893 + terser: ^5.4.0 1894 + peerDependenciesMeta: 1895 + '@types/node': 1896 + optional: true 1897 + less: 1898 + optional: true 1899 + lightningcss: 1900 + optional: true 1901 + sass: 1902 + optional: true 1903 + sass-embedded: 1904 + optional: true 1905 + stylus: 1906 + optional: true 1907 + sugarss: 1908 + optional: true 1909 + terser: 1910 + optional: true 1911 + 1912 + vitefu@1.0.3: 1913 + resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==} 1914 + peerDependencies: 1915 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0 1916 + peerDependenciesMeta: 1917 + vite: 1918 + optional: true 1919 + 1920 + web-namespaces@2.0.1: 1921 + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 1922 + 1923 + which-pm-runs@1.1.0: 1924 + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 1925 + engines: {node: '>=4'} 1926 + 1927 + which-pm@3.0.0: 1928 + resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} 1929 + engines: {node: '>=18.12'} 1930 + 1931 + widest-line@5.0.0: 1932 + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 1933 + engines: {node: '>=18'} 1934 + 1935 + wrap-ansi@9.0.0: 1936 + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 1937 + engines: {node: '>=18'} 1938 + 1939 + xxhash-wasm@1.0.2: 1940 + resolution: {integrity: sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==} 1941 + 1942 + yallist@3.1.1: 1943 + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 1944 + 1945 + yargs-parser@21.1.1: 1946 + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1947 + engines: {node: '>=12'} 1948 + 1949 + yocto-queue@1.1.1: 1950 + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} 1951 + engines: {node: '>=12.20'} 1952 + 1953 + zod-to-json-schema@3.23.5: 1954 + resolution: {integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==} 1955 + peerDependencies: 1956 + zod: ^3.23.3 1957 + 1958 + zod-to-ts@1.2.0: 1959 + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 1960 + peerDependencies: 1961 + typescript: ^4.9.4 || ^5.0.2 1962 + zod: ^3 1963 + 1964 + zod@3.23.8: 1965 + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 1966 + 1967 + zwitch@2.0.4: 1968 + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 1969 + 1970 + snapshots: 1971 + 1972 + '@ampproject/remapping@2.3.0': 1973 + dependencies: 1974 + '@jridgewell/gen-mapping': 0.3.5 1975 + '@jridgewell/trace-mapping': 0.3.25 1976 + 1977 + '@astro-community/astro-embed-twitter@0.5.8(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3))': 1978 + dependencies: 1979 + '@astro-community/astro-embed-utils': 0.1.3 1980 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 1981 + 1982 + '@astro-community/astro-embed-utils@0.1.3': 1983 + dependencies: 1984 + linkedom: 0.14.26 1985 + 1986 + '@astro-community/astro-embed-youtube@0.5.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3))': 1987 + dependencies: 1988 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 1989 + lite-youtube-embed: 0.3.3 1990 + 1991 + '@astrojs/compiler@2.10.3': {} 1992 + 1993 + '@astrojs/internal-helpers@0.4.1': {} 1994 + 1995 + '@astrojs/markdown-remark@5.3.0': 1996 + dependencies: 1997 + '@astrojs/prism': 3.1.0 1998 + github-slugger: 2.0.0 1999 + hast-util-from-html: 2.0.3 2000 + hast-util-to-text: 4.0.2 2001 + import-meta-resolve: 4.1.0 2002 + mdast-util-definitions: 6.0.0 2003 + rehype-raw: 7.0.0 2004 + rehype-stringify: 10.0.1 2005 + remark-gfm: 4.0.0 2006 + remark-parse: 11.0.0 2007 + remark-rehype: 11.1.1 2008 + remark-smartypants: 3.0.2 2009 + shiki: 1.22.2 2010 + unified: 11.0.5 2011 + unist-util-remove-position: 5.0.0 2012 + unist-util-visit: 5.0.0 2013 + unist-util-visit-parents: 6.0.1 2014 + vfile: 6.0.3 2015 + transitivePeerDependencies: 2016 + - supports-color 2017 + 2018 + '@astrojs/mdx@3.1.9(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3))': 2019 + dependencies: 2020 + '@astrojs/markdown-remark': 5.3.0 2021 + '@mdx-js/mdx': 3.1.0(acorn@8.14.0) 2022 + acorn: 8.14.0 2023 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 2024 + es-module-lexer: 1.5.4 2025 + estree-util-visit: 2.0.0 2026 + gray-matter: 4.0.3 2027 + hast-util-to-html: 9.0.3 2028 + kleur: 4.1.5 2029 + rehype-raw: 7.0.0 2030 + remark-gfm: 4.0.0 2031 + remark-smartypants: 3.0.2 2032 + source-map: 0.7.4 2033 + unist-util-visit: 5.0.0 2034 + vfile: 6.0.3 2035 + transitivePeerDependencies: 2036 + - supports-color 2037 + 2038 + '@astrojs/prism@3.1.0': 2039 + dependencies: 2040 + prismjs: 1.29.0 2041 + 2042 + '@astrojs/sitemap@3.2.1': 2043 + dependencies: 2044 + sitemap: 8.0.0 2045 + stream-replace-string: 2.0.0 2046 + zod: 3.23.8 2047 + 2048 + '@astrojs/starlight@0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3))': 2049 + dependencies: 2050 + '@astrojs/mdx': 3.1.9(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 2051 + '@astrojs/sitemap': 3.2.1 2052 + '@pagefind/default-ui': 1.1.1 2053 + '@types/hast': 3.0.4 2054 + '@types/mdast': 4.0.4 2055 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 2056 + astro-expressive-code: 0.35.6(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 2057 + bcp-47: 2.1.0 2058 + hast-util-from-html: 2.0.3 2059 + hast-util-select: 6.0.3 2060 + hast-util-to-string: 3.0.1 2061 + hastscript: 9.0.0 2062 + i18next: 23.16.4 2063 + mdast-util-directive: 3.0.0 2064 + mdast-util-to-markdown: 2.1.1 2065 + mdast-util-to-string: 4.0.0 2066 + pagefind: 1.1.1 2067 + rehype: 13.0.2 2068 + rehype-format: 5.0.1 2069 + remark-directive: 3.0.0 2070 + unified: 11.0.5 2071 + unist-util-visit: 5.0.0 2072 + vfile: 6.0.3 2073 + transitivePeerDependencies: 2074 + - supports-color 2075 + 2076 + '@astrojs/telemetry@3.1.0': 2077 + dependencies: 2078 + ci-info: 4.0.0 2079 + debug: 4.3.7 2080 + dlv: 1.1.3 2081 + dset: 3.1.4 2082 + is-docker: 3.0.0 2083 + is-wsl: 3.1.0 2084 + which-pm-runs: 1.1.0 2085 + transitivePeerDependencies: 2086 + - supports-color 2087 + 2088 + '@babel/code-frame@7.26.2': 2089 + dependencies: 2090 + '@babel/helper-validator-identifier': 7.25.9 2091 + js-tokens: 4.0.0 2092 + picocolors: 1.1.1 2093 + 2094 + '@babel/compat-data@7.26.2': {} 2095 + 2096 + '@babel/core@7.26.0': 2097 + dependencies: 2098 + '@ampproject/remapping': 2.3.0 2099 + '@babel/code-frame': 7.26.2 2100 + '@babel/generator': 7.26.2 2101 + '@babel/helper-compilation-targets': 7.25.9 2102 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) 2103 + '@babel/helpers': 7.26.0 2104 + '@babel/parser': 7.26.2 2105 + '@babel/template': 7.25.9 2106 + '@babel/traverse': 7.25.9 2107 + '@babel/types': 7.26.0 2108 + convert-source-map: 2.0.0 2109 + debug: 4.3.7 2110 + gensync: 1.0.0-beta.2 2111 + json5: 2.2.3 2112 + semver: 6.3.1 2113 + transitivePeerDependencies: 2114 + - supports-color 2115 + 2116 + '@babel/generator@7.26.2': 2117 + dependencies: 2118 + '@babel/parser': 7.26.2 2119 + '@babel/types': 7.26.0 2120 + '@jridgewell/gen-mapping': 0.3.5 2121 + '@jridgewell/trace-mapping': 0.3.25 2122 + jsesc: 3.0.2 2123 + 2124 + '@babel/helper-annotate-as-pure@7.25.9': 2125 + dependencies: 2126 + '@babel/types': 7.26.0 2127 + 2128 + '@babel/helper-compilation-targets@7.25.9': 2129 + dependencies: 2130 + '@babel/compat-data': 7.26.2 2131 + '@babel/helper-validator-option': 7.25.9 2132 + browserslist: 4.24.2 2133 + lru-cache: 5.1.1 2134 + semver: 6.3.1 2135 + 2136 + '@babel/helper-module-imports@7.25.9': 2137 + dependencies: 2138 + '@babel/traverse': 7.25.9 2139 + '@babel/types': 7.26.0 2140 + transitivePeerDependencies: 2141 + - supports-color 2142 + 2143 + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': 2144 + dependencies: 2145 + '@babel/core': 7.26.0 2146 + '@babel/helper-module-imports': 7.25.9 2147 + '@babel/helper-validator-identifier': 7.25.9 2148 + '@babel/traverse': 7.25.9 2149 + transitivePeerDependencies: 2150 + - supports-color 2151 + 2152 + '@babel/helper-plugin-utils@7.25.9': {} 2153 + 2154 + '@babel/helper-string-parser@7.25.9': {} 2155 + 2156 + '@babel/helper-validator-identifier@7.25.9': {} 2157 + 2158 + '@babel/helper-validator-option@7.25.9': {} 2159 + 2160 + '@babel/helpers@7.26.0': 2161 + dependencies: 2162 + '@babel/template': 7.25.9 2163 + '@babel/types': 7.26.0 2164 + 2165 + '@babel/parser@7.26.2': 2166 + dependencies: 2167 + '@babel/types': 7.26.0 2168 + 2169 + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': 2170 + dependencies: 2171 + '@babel/core': 7.26.0 2172 + '@babel/helper-plugin-utils': 7.25.9 2173 + 2174 + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': 2175 + dependencies: 2176 + '@babel/core': 7.26.0 2177 + '@babel/helper-annotate-as-pure': 7.25.9 2178 + '@babel/helper-module-imports': 7.25.9 2179 + '@babel/helper-plugin-utils': 7.25.9 2180 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 2181 + '@babel/types': 7.26.0 2182 + transitivePeerDependencies: 2183 + - supports-color 2184 + 2185 + '@babel/runtime@7.26.0': 2186 + dependencies: 2187 + regenerator-runtime: 0.14.1 2188 + 2189 + '@babel/template@7.25.9': 2190 + dependencies: 2191 + '@babel/code-frame': 7.26.2 2192 + '@babel/parser': 7.26.2 2193 + '@babel/types': 7.26.0 2194 + 2195 + '@babel/traverse@7.25.9': 2196 + dependencies: 2197 + '@babel/code-frame': 7.26.2 2198 + '@babel/generator': 7.26.2 2199 + '@babel/parser': 7.26.2 2200 + '@babel/template': 7.25.9 2201 + '@babel/types': 7.26.0 2202 + debug: 4.3.7 2203 + globals: 11.12.0 2204 + transitivePeerDependencies: 2205 + - supports-color 2206 + 2207 + '@babel/types@7.26.0': 2208 + dependencies: 2209 + '@babel/helper-string-parser': 7.25.9 2210 + '@babel/helper-validator-identifier': 7.25.9 2211 + 2212 + '@ctrl/tinycolor@4.1.0': {} 2213 + 2214 + '@emnapi/runtime@1.3.1': 2215 + dependencies: 2216 + tslib: 2.8.1 2217 + optional: true 2218 + 2219 + '@esbuild/aix-ppc64@0.21.5': 2220 + optional: true 2221 + 2222 + '@esbuild/android-arm64@0.21.5': 2223 + optional: true 2224 + 2225 + '@esbuild/android-arm@0.21.5': 2226 + optional: true 2227 + 2228 + '@esbuild/android-x64@0.21.5': 2229 + optional: true 2230 + 2231 + '@esbuild/darwin-arm64@0.21.5': 2232 + optional: true 2233 + 2234 + '@esbuild/darwin-x64@0.21.5': 2235 + optional: true 2236 + 2237 + '@esbuild/freebsd-arm64@0.21.5': 2238 + optional: true 2239 + 2240 + '@esbuild/freebsd-x64@0.21.5': 2241 + optional: true 2242 + 2243 + '@esbuild/linux-arm64@0.21.5': 2244 + optional: true 2245 + 2246 + '@esbuild/linux-arm@0.21.5': 2247 + optional: true 2248 + 2249 + '@esbuild/linux-ia32@0.21.5': 2250 + optional: true 2251 + 2252 + '@esbuild/linux-loong64@0.21.5': 2253 + optional: true 2254 + 2255 + '@esbuild/linux-mips64el@0.21.5': 2256 + optional: true 2257 + 2258 + '@esbuild/linux-ppc64@0.21.5': 2259 + optional: true 2260 + 2261 + '@esbuild/linux-riscv64@0.21.5': 2262 + optional: true 2263 + 2264 + '@esbuild/linux-s390x@0.21.5': 2265 + optional: true 2266 + 2267 + '@esbuild/linux-x64@0.21.5': 2268 + optional: true 2269 + 2270 + '@esbuild/netbsd-x64@0.21.5': 2271 + optional: true 2272 + 2273 + '@esbuild/openbsd-x64@0.21.5': 2274 + optional: true 2275 + 2276 + '@esbuild/sunos-x64@0.21.5': 2277 + optional: true 2278 + 2279 + '@esbuild/win32-arm64@0.21.5': 2280 + optional: true 2281 + 2282 + '@esbuild/win32-ia32@0.21.5': 2283 + optional: true 2284 + 2285 + '@esbuild/win32-x64@0.21.5': 2286 + optional: true 2287 + 2288 + '@expressive-code/core@0.35.6': 2289 + dependencies: 2290 + '@ctrl/tinycolor': 4.1.0 2291 + hast-util-select: 6.0.3 2292 + hast-util-to-html: 9.0.3 2293 + hast-util-to-text: 4.0.2 2294 + hastscript: 9.0.0 2295 + postcss: 8.4.47 2296 + postcss-nested: 6.2.0(postcss@8.4.47) 2297 + unist-util-visit: 5.0.0 2298 + unist-util-visit-parents: 6.0.1 2299 + 2300 + '@expressive-code/plugin-frames@0.35.6': 2301 + dependencies: 2302 + '@expressive-code/core': 0.35.6 2303 + 2304 + '@expressive-code/plugin-shiki@0.35.6': 2305 + dependencies: 2306 + '@expressive-code/core': 0.35.6 2307 + shiki: 1.22.2 2308 + 2309 + '@expressive-code/plugin-text-markers@0.35.6': 2310 + dependencies: 2311 + '@expressive-code/core': 0.35.6 2312 + 2313 + '@img/sharp-darwin-arm64@0.33.5': 2314 + optionalDependencies: 2315 + '@img/sharp-libvips-darwin-arm64': 1.0.4 2316 + optional: true 2317 + 2318 + '@img/sharp-darwin-x64@0.33.5': 2319 + optionalDependencies: 2320 + '@img/sharp-libvips-darwin-x64': 1.0.4 2321 + optional: true 2322 + 2323 + '@img/sharp-libvips-darwin-arm64@1.0.4': 2324 + optional: true 2325 + 2326 + '@img/sharp-libvips-darwin-x64@1.0.4': 2327 + optional: true 2328 + 2329 + '@img/sharp-libvips-linux-arm64@1.0.4': 2330 + optional: true 2331 + 2332 + '@img/sharp-libvips-linux-arm@1.0.5': 2333 + optional: true 2334 + 2335 + '@img/sharp-libvips-linux-s390x@1.0.4': 2336 + optional: true 2337 + 2338 + '@img/sharp-libvips-linux-x64@1.0.4': 2339 + optional: true 2340 + 2341 + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 2342 + optional: true 2343 + 2344 + '@img/sharp-libvips-linuxmusl-x64@1.0.4': 2345 + optional: true 2346 + 2347 + '@img/sharp-linux-arm64@0.33.5': 2348 + optionalDependencies: 2349 + '@img/sharp-libvips-linux-arm64': 1.0.4 2350 + optional: true 2351 + 2352 + '@img/sharp-linux-arm@0.33.5': 2353 + optionalDependencies: 2354 + '@img/sharp-libvips-linux-arm': 1.0.5 2355 + optional: true 2356 + 2357 + '@img/sharp-linux-s390x@0.33.5': 2358 + optionalDependencies: 2359 + '@img/sharp-libvips-linux-s390x': 1.0.4 2360 + optional: true 2361 + 2362 + '@img/sharp-linux-x64@0.33.5': 2363 + optionalDependencies: 2364 + '@img/sharp-libvips-linux-x64': 1.0.4 2365 + optional: true 2366 + 2367 + '@img/sharp-linuxmusl-arm64@0.33.5': 2368 + optionalDependencies: 2369 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 2370 + optional: true 2371 + 2372 + '@img/sharp-linuxmusl-x64@0.33.5': 2373 + optionalDependencies: 2374 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 2375 + optional: true 2376 + 2377 + '@img/sharp-wasm32@0.33.5': 2378 + dependencies: 2379 + '@emnapi/runtime': 1.3.1 2380 + optional: true 2381 + 2382 + '@img/sharp-win32-ia32@0.33.5': 2383 + optional: true 2384 + 2385 + '@img/sharp-win32-x64@0.33.5': 2386 + optional: true 2387 + 2388 + '@jridgewell/gen-mapping@0.3.5': 2389 + dependencies: 2390 + '@jridgewell/set-array': 1.2.1 2391 + '@jridgewell/sourcemap-codec': 1.5.0 2392 + '@jridgewell/trace-mapping': 0.3.25 2393 + 2394 + '@jridgewell/resolve-uri@3.1.2': {} 2395 + 2396 + '@jridgewell/set-array@1.2.1': {} 2397 + 2398 + '@jridgewell/sourcemap-codec@1.5.0': {} 2399 + 2400 + '@jridgewell/trace-mapping@0.3.25': 2401 + dependencies: 2402 + '@jridgewell/resolve-uri': 3.1.2 2403 + '@jridgewell/sourcemap-codec': 1.5.0 2404 + 2405 + '@mdx-js/mdx@3.1.0(acorn@8.14.0)': 2406 + dependencies: 2407 + '@types/estree': 1.0.6 2408 + '@types/estree-jsx': 1.0.5 2409 + '@types/hast': 3.0.4 2410 + '@types/mdx': 2.0.13 2411 + collapse-white-space: 2.1.0 2412 + devlop: 1.1.0 2413 + estree-util-is-identifier-name: 3.0.0 2414 + estree-util-scope: 1.0.0 2415 + estree-walker: 3.0.3 2416 + hast-util-to-jsx-runtime: 2.3.2 2417 + markdown-extensions: 2.0.0 2418 + recma-build-jsx: 1.0.0 2419 + recma-jsx: 1.0.0(acorn@8.14.0) 2420 + recma-stringify: 1.0.0 2421 + rehype-recma: 1.0.0 2422 + remark-mdx: 3.1.0 2423 + remark-parse: 11.0.0 2424 + remark-rehype: 11.1.1 2425 + source-map: 0.7.4 2426 + unified: 11.0.5 2427 + unist-util-position-from-estree: 2.0.0 2428 + unist-util-stringify-position: 4.0.0 2429 + unist-util-visit: 5.0.0 2430 + vfile: 6.0.3 2431 + transitivePeerDependencies: 2432 + - acorn 2433 + - supports-color 2434 + 2435 + '@nodelib/fs.scandir@2.1.5': 2436 + dependencies: 2437 + '@nodelib/fs.stat': 2.0.5 2438 + run-parallel: 1.2.0 2439 + 2440 + '@nodelib/fs.stat@2.0.5': {} 2441 + 2442 + '@nodelib/fs.walk@1.2.8': 2443 + dependencies: 2444 + '@nodelib/fs.scandir': 2.1.5 2445 + fastq: 1.17.1 2446 + 2447 + '@oslojs/encoding@1.1.0': {} 2448 + 2449 + '@pagefind/darwin-arm64@1.1.1': 2450 + optional: true 2451 + 2452 + '@pagefind/darwin-x64@1.1.1': 2453 + optional: true 2454 + 2455 + '@pagefind/default-ui@1.1.1': {} 2456 + 2457 + '@pagefind/linux-arm64@1.1.1': 2458 + optional: true 2459 + 2460 + '@pagefind/linux-x64@1.1.1': 2461 + optional: true 2462 + 2463 + '@pagefind/windows-x64@1.1.1': 2464 + optional: true 2465 + 2466 + '@rollup/pluginutils@5.1.3(rollup@4.24.3)': 2467 + dependencies: 2468 + '@types/estree': 1.0.6 2469 + estree-walker: 2.0.2 2470 + picomatch: 4.0.2 2471 + optionalDependencies: 2472 + rollup: 4.24.3 2473 + 2474 + '@rollup/rollup-android-arm-eabi@4.24.3': 2475 + optional: true 2476 + 2477 + '@rollup/rollup-android-arm64@4.24.3': 2478 + optional: true 2479 + 2480 + '@rollup/rollup-darwin-arm64@4.24.3': 2481 + optional: true 2482 + 2483 + '@rollup/rollup-darwin-x64@4.24.3': 2484 + optional: true 2485 + 2486 + '@rollup/rollup-freebsd-arm64@4.24.3': 2487 + optional: true 2488 + 2489 + '@rollup/rollup-freebsd-x64@4.24.3': 2490 + optional: true 2491 + 2492 + '@rollup/rollup-linux-arm-gnueabihf@4.24.3': 2493 + optional: true 2494 + 2495 + '@rollup/rollup-linux-arm-musleabihf@4.24.3': 2496 + optional: true 2497 + 2498 + '@rollup/rollup-linux-arm64-gnu@4.24.3': 2499 + optional: true 2500 + 2501 + '@rollup/rollup-linux-arm64-musl@4.24.3': 2502 + optional: true 2503 + 2504 + '@rollup/rollup-linux-powerpc64le-gnu@4.24.3': 2505 + optional: true 2506 + 2507 + '@rollup/rollup-linux-riscv64-gnu@4.24.3': 2508 + optional: true 2509 + 2510 + '@rollup/rollup-linux-s390x-gnu@4.24.3': 2511 + optional: true 2512 + 2513 + '@rollup/rollup-linux-x64-gnu@4.24.3': 2514 + optional: true 2515 + 2516 + '@rollup/rollup-linux-x64-musl@4.24.3': 2517 + optional: true 2518 + 2519 + '@rollup/rollup-win32-arm64-msvc@4.24.3': 2520 + optional: true 2521 + 2522 + '@rollup/rollup-win32-ia32-msvc@4.24.3': 2523 + optional: true 2524 + 2525 + '@rollup/rollup-win32-x64-msvc@4.24.3': 2526 + optional: true 2527 + 2528 + '@shikijs/core@1.22.2': 2529 + dependencies: 2530 + '@shikijs/engine-javascript': 1.22.2 2531 + '@shikijs/engine-oniguruma': 1.22.2 2532 + '@shikijs/types': 1.22.2 2533 + '@shikijs/vscode-textmate': 9.3.0 2534 + '@types/hast': 3.0.4 2535 + hast-util-to-html: 9.0.3 2536 + 2537 + '@shikijs/engine-javascript@1.22.2': 2538 + dependencies: 2539 + '@shikijs/types': 1.22.2 2540 + '@shikijs/vscode-textmate': 9.3.0 2541 + oniguruma-to-js: 0.4.3 2542 + 2543 + '@shikijs/engine-oniguruma@1.22.2': 2544 + dependencies: 2545 + '@shikijs/types': 1.22.2 2546 + '@shikijs/vscode-textmate': 9.3.0 2547 + 2548 + '@shikijs/types@1.22.2': 2549 + dependencies: 2550 + '@shikijs/vscode-textmate': 9.3.0 2551 + '@types/hast': 3.0.4 2552 + 2553 + '@shikijs/vscode-textmate@9.3.0': {} 2554 + 2555 + '@types/acorn@4.0.6': 2556 + dependencies: 2557 + '@types/estree': 1.0.6 2558 + 2559 + '@types/babel__core@7.20.5': 2560 + dependencies: 2561 + '@babel/parser': 7.26.2 2562 + '@babel/types': 7.26.0 2563 + '@types/babel__generator': 7.6.8 2564 + '@types/babel__template': 7.4.4 2565 + '@types/babel__traverse': 7.20.6 2566 + 2567 + '@types/babel__generator@7.6.8': 2568 + dependencies: 2569 + '@babel/types': 7.26.0 2570 + 2571 + '@types/babel__template@7.4.4': 2572 + dependencies: 2573 + '@babel/parser': 7.26.2 2574 + '@babel/types': 7.26.0 2575 + 2576 + '@types/babel__traverse@7.20.6': 2577 + dependencies: 2578 + '@babel/types': 7.26.0 2579 + 2580 + '@types/cookie@0.6.0': {} 2581 + 2582 + '@types/debug@4.1.12': 2583 + dependencies: 2584 + '@types/ms': 0.7.34 2585 + 2586 + '@types/estree-jsx@1.0.5': 2587 + dependencies: 2588 + '@types/estree': 1.0.6 2589 + 2590 + '@types/estree@1.0.6': {} 2591 + 2592 + '@types/hast@3.0.4': 2593 + dependencies: 2594 + '@types/unist': 3.0.3 2595 + 2596 + '@types/mdast@4.0.4': 2597 + dependencies: 2598 + '@types/unist': 3.0.3 2599 + 2600 + '@types/mdx@2.0.13': {} 2601 + 2602 + '@types/ms@0.7.34': {} 2603 + 2604 + '@types/nlcst@2.0.3': 2605 + dependencies: 2606 + '@types/unist': 3.0.3 2607 + 2608 + '@types/node@17.0.45': {} 2609 + 2610 + '@types/picomatch@2.3.3': {} 2611 + 2612 + '@types/sax@1.2.7': 2613 + dependencies: 2614 + '@types/node': 17.0.45 2615 + 2616 + '@types/unist@2.0.11': {} 2617 + 2618 + '@types/unist@3.0.3': {} 2619 + 2620 + '@ungap/structured-clone@1.2.0': {} 2621 + 2622 + acorn-jsx@5.3.2(acorn@8.14.0): 2623 + dependencies: 2624 + acorn: 8.14.0 2625 + 2626 + acorn@8.14.0: {} 2627 + 2628 + ansi-align@3.0.1: 2629 + dependencies: 2630 + string-width: 4.2.3 2631 + 2632 + ansi-regex@5.0.1: {} 2633 + 2634 + ansi-regex@6.1.0: {} 2635 + 2636 + ansi-styles@6.2.1: {} 2637 + 2638 + arg@5.0.2: {} 2639 + 2640 + argparse@1.0.10: 2641 + dependencies: 2642 + sprintf-js: 1.0.3 2643 + 2644 + argparse@2.0.1: {} 2645 + 2646 + aria-query@5.3.2: {} 2647 + 2648 + array-iterate@2.0.1: {} 2649 + 2650 + astring@1.9.0: {} 2651 + 2652 + astro-expressive-code@0.35.6(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)): 2653 + dependencies: 2654 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 2655 + rehype-expressive-code: 0.35.6 2656 + 2657 + astro@4.16.8(rollup@4.24.3)(typescript@5.6.3): 2658 + dependencies: 2659 + '@astrojs/compiler': 2.10.3 2660 + '@astrojs/internal-helpers': 0.4.1 2661 + '@astrojs/markdown-remark': 5.3.0 2662 + '@astrojs/telemetry': 3.1.0 2663 + '@babel/core': 7.26.0 2664 + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) 2665 + '@babel/types': 7.26.0 2666 + '@oslojs/encoding': 1.1.0 2667 + '@rollup/pluginutils': 5.1.3(rollup@4.24.3) 2668 + '@types/babel__core': 7.20.5 2669 + '@types/cookie': 0.6.0 2670 + acorn: 8.14.0 2671 + aria-query: 5.3.2 2672 + axobject-query: 4.1.0 2673 + boxen: 8.0.1 2674 + ci-info: 4.0.0 2675 + clsx: 2.1.1 2676 + common-ancestor-path: 1.0.1 2677 + cookie: 0.7.2 2678 + cssesc: 3.0.0 2679 + debug: 4.3.7 2680 + deterministic-object-hash: 2.0.2 2681 + devalue: 5.1.1 2682 + diff: 5.2.0 2683 + dlv: 1.1.3 2684 + dset: 3.1.4 2685 + es-module-lexer: 1.5.4 2686 + esbuild: 0.21.5 2687 + estree-walker: 3.0.3 2688 + fast-glob: 3.3.2 2689 + flattie: 1.1.1 2690 + github-slugger: 2.0.0 2691 + gray-matter: 4.0.3 2692 + html-escaper: 3.0.3 2693 + http-cache-semantics: 4.1.1 2694 + js-yaml: 4.1.0 2695 + kleur: 4.1.5 2696 + magic-string: 0.30.12 2697 + magicast: 0.3.5 2698 + micromatch: 4.0.8 2699 + mrmime: 2.0.0 2700 + neotraverse: 0.6.18 2701 + ora: 8.1.1 2702 + p-limit: 6.1.0 2703 + p-queue: 8.0.1 2704 + preferred-pm: 4.0.0 2705 + prompts: 2.4.2 2706 + rehype: 13.0.2 2707 + semver: 7.6.3 2708 + shiki: 1.22.2 2709 + tinyexec: 0.3.1 2710 + tsconfck: 3.1.4(typescript@5.6.3) 2711 + unist-util-visit: 5.0.0 2712 + vfile: 6.0.3 2713 + vite: 5.4.10 2714 + vitefu: 1.0.3(vite@5.4.10) 2715 + which-pm: 3.0.0 2716 + xxhash-wasm: 1.0.2 2717 + yargs-parser: 21.1.1 2718 + zod: 3.23.8 2719 + zod-to-json-schema: 3.23.5(zod@3.23.8) 2720 + zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8) 2721 + optionalDependencies: 2722 + sharp: 0.33.5 2723 + transitivePeerDependencies: 2724 + - '@types/node' 2725 + - less 2726 + - lightningcss 2727 + - rollup 2728 + - sass 2729 + - sass-embedded 2730 + - stylus 2731 + - sugarss 2732 + - supports-color 2733 + - terser 2734 + - typescript 2735 + 2736 + axobject-query@4.1.0: {} 2737 + 2738 + bail@2.0.2: {} 2739 + 2740 + base-64@1.0.0: {} 2741 + 2742 + bcp-47-match@2.0.3: {} 2743 + 2744 + bcp-47@2.1.0: 2745 + dependencies: 2746 + is-alphabetical: 2.0.1 2747 + is-alphanumerical: 2.0.1 2748 + is-decimal: 2.0.1 2749 + 2750 + boolbase@1.0.0: {} 2751 + 2752 + boxen@8.0.1: 2753 + dependencies: 2754 + ansi-align: 3.0.1 2755 + camelcase: 8.0.0 2756 + chalk: 5.3.0 2757 + cli-boxes: 3.0.0 2758 + string-width: 7.2.0 2759 + type-fest: 4.26.1 2760 + widest-line: 5.0.0 2761 + wrap-ansi: 9.0.0 2762 + 2763 + braces@3.0.3: 2764 + dependencies: 2765 + fill-range: 7.1.1 2766 + 2767 + browserslist@4.24.2: 2768 + dependencies: 2769 + caniuse-lite: 1.0.30001677 2770 + electron-to-chromium: 1.5.50 2771 + node-releases: 2.0.18 2772 + update-browserslist-db: 1.1.1(browserslist@4.24.2) 2773 + 2774 + camelcase@8.0.0: {} 2775 + 2776 + caniuse-lite@1.0.30001677: {} 2777 + 2778 + ccount@2.0.1: {} 2779 + 2780 + chalk@5.3.0: {} 2781 + 2782 + change-case@5.4.4: {} 2783 + 2784 + character-entities-html4@2.1.0: {} 2785 + 2786 + character-entities-legacy@3.0.0: {} 2787 + 2788 + character-entities@2.0.2: {} 2789 + 2790 + character-reference-invalid@2.0.1: {} 2791 + 2792 + ci-info@4.0.0: {} 2793 + 2794 + cli-boxes@3.0.0: {} 2795 + 2796 + cli-cursor@5.0.0: 2797 + dependencies: 2798 + restore-cursor: 5.1.0 2799 + 2800 + cli-spinners@2.9.2: {} 2801 + 2802 + clsx@2.1.1: {} 2803 + 2804 + collapse-white-space@2.1.0: {} 2805 + 2806 + color-convert@2.0.1: 2807 + dependencies: 2808 + color-name: 1.1.4 2809 + 2810 + color-name@1.1.4: {} 2811 + 2812 + color-string@1.9.1: 2813 + dependencies: 2814 + color-name: 1.1.4 2815 + simple-swizzle: 0.2.2 2816 + 2817 + color@4.2.3: 2818 + dependencies: 2819 + color-convert: 2.0.1 2820 + color-string: 1.9.1 2821 + 2822 + comma-separated-tokens@2.0.3: {} 2823 + 2824 + common-ancestor-path@1.0.1: {} 2825 + 2826 + convert-source-map@2.0.0: {} 2827 + 2828 + cookie@0.7.2: {} 2829 + 2830 + css-select@5.1.0: 2831 + dependencies: 2832 + boolbase: 1.0.0 2833 + css-what: 6.1.0 2834 + domhandler: 5.0.3 2835 + domutils: 3.1.0 2836 + nth-check: 2.1.1 2837 + 2838 + css-selector-parser@3.0.5: {} 2839 + 2840 + css-what@6.1.0: {} 2841 + 2842 + cssesc@3.0.0: {} 2843 + 2844 + cssom@0.5.0: {} 2845 + 2846 + debug@4.3.7: 2847 + dependencies: 2848 + ms: 2.1.3 2849 + 2850 + decode-named-character-reference@1.0.2: 2851 + dependencies: 2852 + character-entities: 2.0.2 2853 + 2854 + dequal@2.0.3: {} 2855 + 2856 + detect-libc@2.0.3: {} 2857 + 2858 + deterministic-object-hash@2.0.2: 2859 + dependencies: 2860 + base-64: 1.0.0 2861 + 2862 + devalue@5.1.1: {} 2863 + 2864 + devlop@1.1.0: 2865 + dependencies: 2866 + dequal: 2.0.3 2867 + 2868 + diff@5.2.0: {} 2869 + 2870 + direction@2.0.1: {} 2871 + 2872 + dlv@1.1.3: {} 2873 + 2874 + dom-serializer@2.0.0: 2875 + dependencies: 2876 + domelementtype: 2.3.0 2877 + domhandler: 5.0.3 2878 + entities: 4.5.0 2879 + 2880 + domelementtype@2.3.0: {} 2881 + 2882 + domhandler@5.0.3: 2883 + dependencies: 2884 + domelementtype: 2.3.0 2885 + 2886 + domutils@3.1.0: 2887 + dependencies: 2888 + dom-serializer: 2.0.0 2889 + domelementtype: 2.3.0 2890 + domhandler: 5.0.3 2891 + 2892 + dset@3.1.4: {} 2893 + 2894 + electron-to-chromium@1.5.50: {} 2895 + 2896 + emoji-regex@10.4.0: {} 2897 + 2898 + emoji-regex@8.0.0: {} 2899 + 2900 + entities@4.5.0: {} 2901 + 2902 + es-module-lexer@1.5.4: {} 2903 + 2904 + esast-util-from-estree@2.0.0: 2905 + dependencies: 2906 + '@types/estree-jsx': 1.0.5 2907 + devlop: 1.1.0 2908 + estree-util-visit: 2.0.0 2909 + unist-util-position-from-estree: 2.0.0 2910 + 2911 + esast-util-from-js@2.0.1: 2912 + dependencies: 2913 + '@types/estree-jsx': 1.0.5 2914 + acorn: 8.14.0 2915 + esast-util-from-estree: 2.0.0 2916 + vfile-message: 4.0.2 2917 + 2918 + esbuild@0.21.5: 2919 + optionalDependencies: 2920 + '@esbuild/aix-ppc64': 0.21.5 2921 + '@esbuild/android-arm': 0.21.5 2922 + '@esbuild/android-arm64': 0.21.5 2923 + '@esbuild/android-x64': 0.21.5 2924 + '@esbuild/darwin-arm64': 0.21.5 2925 + '@esbuild/darwin-x64': 0.21.5 2926 + '@esbuild/freebsd-arm64': 0.21.5 2927 + '@esbuild/freebsd-x64': 0.21.5 2928 + '@esbuild/linux-arm': 0.21.5 2929 + '@esbuild/linux-arm64': 0.21.5 2930 + '@esbuild/linux-ia32': 0.21.5 2931 + '@esbuild/linux-loong64': 0.21.5 2932 + '@esbuild/linux-mips64el': 0.21.5 2933 + '@esbuild/linux-ppc64': 0.21.5 2934 + '@esbuild/linux-riscv64': 0.21.5 2935 + '@esbuild/linux-s390x': 0.21.5 2936 + '@esbuild/linux-x64': 0.21.5 2937 + '@esbuild/netbsd-x64': 0.21.5 2938 + '@esbuild/openbsd-x64': 0.21.5 2939 + '@esbuild/sunos-x64': 0.21.5 2940 + '@esbuild/win32-arm64': 0.21.5 2941 + '@esbuild/win32-ia32': 0.21.5 2942 + '@esbuild/win32-x64': 0.21.5 2943 + 2944 + escalade@3.2.0: {} 2945 + 2946 + escape-string-regexp@5.0.0: {} 2947 + 2948 + esprima@4.0.1: {} 2949 + 2950 + estree-util-attach-comments@3.0.0: 2951 + dependencies: 2952 + '@types/estree': 1.0.6 2953 + 2954 + estree-util-build-jsx@3.0.1: 2955 + dependencies: 2956 + '@types/estree-jsx': 1.0.5 2957 + devlop: 1.1.0 2958 + estree-util-is-identifier-name: 3.0.0 2959 + estree-walker: 3.0.3 2960 + 2961 + estree-util-is-identifier-name@3.0.0: {} 2962 + 2963 + estree-util-scope@1.0.0: 2964 + dependencies: 2965 + '@types/estree': 1.0.6 2966 + devlop: 1.1.0 2967 + 2968 + estree-util-to-js@2.0.0: 2969 + dependencies: 2970 + '@types/estree-jsx': 1.0.5 2971 + astring: 1.9.0 2972 + source-map: 0.7.4 2973 + 2974 + estree-util-visit@2.0.0: 2975 + dependencies: 2976 + '@types/estree-jsx': 1.0.5 2977 + '@types/unist': 3.0.3 2978 + 2979 + estree-walker@2.0.2: {} 2980 + 2981 + estree-walker@3.0.3: 2982 + dependencies: 2983 + '@types/estree': 1.0.6 2984 + 2985 + eventemitter3@5.0.1: {} 2986 + 2987 + expressive-code@0.35.6: 2988 + dependencies: 2989 + '@expressive-code/core': 0.35.6 2990 + '@expressive-code/plugin-frames': 0.35.6 2991 + '@expressive-code/plugin-shiki': 0.35.6 2992 + '@expressive-code/plugin-text-markers': 0.35.6 2993 + 2994 + extend-shallow@2.0.1: 2995 + dependencies: 2996 + is-extendable: 0.1.1 2997 + 2998 + extend@3.0.2: {} 2999 + 3000 + fast-glob@3.3.2: 3001 + dependencies: 3002 + '@nodelib/fs.stat': 2.0.5 3003 + '@nodelib/fs.walk': 1.2.8 3004 + glob-parent: 5.1.2 3005 + merge2: 1.4.1 3006 + micromatch: 4.0.8 3007 + 3008 + fastq@1.17.1: 3009 + dependencies: 3010 + reusify: 1.0.4 3011 + 3012 + fill-range@7.1.1: 3013 + dependencies: 3014 + to-regex-range: 5.0.1 3015 + 3016 + find-up-simple@1.0.0: {} 3017 + 3018 + find-up@4.1.0: 3019 + dependencies: 3020 + locate-path: 5.0.0 3021 + path-exists: 4.0.0 3022 + 3023 + find-yarn-workspace-root2@1.2.16: 3024 + dependencies: 3025 + micromatch: 4.0.8 3026 + pkg-dir: 4.2.0 3027 + 3028 + flattie@1.1.1: {} 3029 + 3030 + fsevents@2.3.3: 3031 + optional: true 3032 + 3033 + gensync@1.0.0-beta.2: {} 3034 + 3035 + get-east-asian-width@1.3.0: {} 3036 + 3037 + github-slugger@2.0.0: {} 3038 + 3039 + glob-parent@5.1.2: 3040 + dependencies: 3041 + is-glob: 4.0.3 3042 + 3043 + globals@11.12.0: {} 3044 + 3045 + graceful-fs@4.2.11: {} 3046 + 3047 + gray-matter@4.0.3: 3048 + dependencies: 3049 + js-yaml: 3.14.1 3050 + kind-of: 6.0.3 3051 + section-matter: 1.0.0 3052 + strip-bom-string: 1.0.0 3053 + 3054 + hast-util-embedded@3.0.0: 3055 + dependencies: 3056 + '@types/hast': 3.0.4 3057 + hast-util-is-element: 3.0.0 3058 + 3059 + hast-util-format@1.1.0: 3060 + dependencies: 3061 + '@types/hast': 3.0.4 3062 + hast-util-embedded: 3.0.0 3063 + hast-util-minify-whitespace: 1.0.1 3064 + hast-util-phrasing: 3.0.1 3065 + hast-util-whitespace: 3.0.0 3066 + html-whitespace-sensitive-tag-names: 3.0.1 3067 + unist-util-visit-parents: 6.0.1 3068 + 3069 + hast-util-from-html@2.0.1: 3070 + dependencies: 3071 + '@types/hast': 3.0.4 3072 + devlop: 1.1.0 3073 + hast-util-from-parse5: 8.0.1 3074 + parse5: 7.2.1 3075 + vfile: 6.0.3 3076 + vfile-message: 4.0.2 3077 + 3078 + hast-util-from-html@2.0.3: 3079 + dependencies: 3080 + '@types/hast': 3.0.4 3081 + devlop: 1.1.0 3082 + hast-util-from-parse5: 8.0.1 3083 + parse5: 7.2.1 3084 + vfile: 6.0.3 3085 + vfile-message: 4.0.2 3086 + 3087 + hast-util-from-parse5@8.0.1: 3088 + dependencies: 3089 + '@types/hast': 3.0.4 3090 + '@types/unist': 3.0.3 3091 + devlop: 1.1.0 3092 + hastscript: 8.0.0 3093 + property-information: 6.5.0 3094 + vfile: 6.0.3 3095 + vfile-location: 5.0.3 3096 + web-namespaces: 2.0.1 3097 + 3098 + hast-util-has-property@3.0.0: 3099 + dependencies: 3100 + '@types/hast': 3.0.4 3101 + 3102 + hast-util-is-body-ok-link@3.0.1: 3103 + dependencies: 3104 + '@types/hast': 3.0.4 3105 + 3106 + hast-util-is-element@3.0.0: 3107 + dependencies: 3108 + '@types/hast': 3.0.4 3109 + 3110 + hast-util-minify-whitespace@1.0.1: 3111 + dependencies: 3112 + '@types/hast': 3.0.4 3113 + hast-util-embedded: 3.0.0 3114 + hast-util-is-element: 3.0.0 3115 + hast-util-whitespace: 3.0.0 3116 + unist-util-is: 6.0.0 3117 + 3118 + hast-util-parse-selector@4.0.0: 3119 + dependencies: 3120 + '@types/hast': 3.0.4 3121 + 3122 + hast-util-phrasing@3.0.1: 3123 + dependencies: 3124 + '@types/hast': 3.0.4 3125 + hast-util-embedded: 3.0.0 3126 + hast-util-has-property: 3.0.0 3127 + hast-util-is-body-ok-link: 3.0.1 3128 + hast-util-is-element: 3.0.0 3129 + 3130 + hast-util-raw@9.0.4: 3131 + dependencies: 3132 + '@types/hast': 3.0.4 3133 + '@types/unist': 3.0.3 3134 + '@ungap/structured-clone': 1.2.0 3135 + hast-util-from-parse5: 8.0.1 3136 + hast-util-to-parse5: 8.0.0 3137 + html-void-elements: 3.0.0 3138 + mdast-util-to-hast: 13.2.0 3139 + parse5: 7.2.1 3140 + unist-util-position: 5.0.0 3141 + unist-util-visit: 5.0.0 3142 + vfile: 6.0.3 3143 + web-namespaces: 2.0.1 3144 + zwitch: 2.0.4 3145 + 3146 + hast-util-select@6.0.3: 3147 + dependencies: 3148 + '@types/hast': 3.0.4 3149 + '@types/unist': 3.0.3 3150 + bcp-47-match: 2.0.3 3151 + comma-separated-tokens: 2.0.3 3152 + css-selector-parser: 3.0.5 3153 + devlop: 1.1.0 3154 + direction: 2.0.1 3155 + hast-util-has-property: 3.0.0 3156 + hast-util-to-string: 3.0.1 3157 + hast-util-whitespace: 3.0.0 3158 + nth-check: 2.1.1 3159 + property-information: 6.5.0 3160 + space-separated-tokens: 2.0.2 3161 + unist-util-visit: 5.0.0 3162 + zwitch: 2.0.4 3163 + 3164 + hast-util-to-estree@3.1.0: 3165 + dependencies: 3166 + '@types/estree': 1.0.6 3167 + '@types/estree-jsx': 1.0.5 3168 + '@types/hast': 3.0.4 3169 + comma-separated-tokens: 2.0.3 3170 + devlop: 1.1.0 3171 + estree-util-attach-comments: 3.0.0 3172 + estree-util-is-identifier-name: 3.0.0 3173 + hast-util-whitespace: 3.0.0 3174 + mdast-util-mdx-expression: 2.0.1 3175 + mdast-util-mdx-jsx: 3.1.3 3176 + mdast-util-mdxjs-esm: 2.0.1 3177 + property-information: 6.5.0 3178 + space-separated-tokens: 2.0.2 3179 + style-to-object: 0.4.4 3180 + unist-util-position: 5.0.0 3181 + zwitch: 2.0.4 3182 + transitivePeerDependencies: 3183 + - supports-color 3184 + 3185 + hast-util-to-html@9.0.3: 3186 + dependencies: 3187 + '@types/hast': 3.0.4 3188 + '@types/unist': 3.0.3 3189 + ccount: 2.0.1 3190 + comma-separated-tokens: 2.0.3 3191 + hast-util-whitespace: 3.0.0 3192 + html-void-elements: 3.0.0 3193 + mdast-util-to-hast: 13.2.0 3194 + property-information: 6.5.0 3195 + space-separated-tokens: 2.0.2 3196 + stringify-entities: 4.0.4 3197 + zwitch: 2.0.4 3198 + 3199 + hast-util-to-jsx-runtime@2.3.2: 3200 + dependencies: 3201 + '@types/estree': 1.0.6 3202 + '@types/hast': 3.0.4 3203 + '@types/unist': 3.0.3 3204 + comma-separated-tokens: 2.0.3 3205 + devlop: 1.1.0 3206 + estree-util-is-identifier-name: 3.0.0 3207 + hast-util-whitespace: 3.0.0 3208 + mdast-util-mdx-expression: 2.0.1 3209 + mdast-util-mdx-jsx: 3.1.3 3210 + mdast-util-mdxjs-esm: 2.0.1 3211 + property-information: 6.5.0 3212 + space-separated-tokens: 2.0.2 3213 + style-to-object: 1.0.8 3214 + unist-util-position: 5.0.0 3215 + vfile-message: 4.0.2 3216 + transitivePeerDependencies: 3217 + - supports-color 3218 + 3219 + hast-util-to-parse5@8.0.0: 3220 + dependencies: 3221 + '@types/hast': 3.0.4 3222 + comma-separated-tokens: 2.0.3 3223 + devlop: 1.1.0 3224 + property-information: 6.5.0 3225 + space-separated-tokens: 2.0.2 3226 + web-namespaces: 2.0.1 3227 + zwitch: 2.0.4 3228 + 3229 + hast-util-to-string@3.0.1: 3230 + dependencies: 3231 + '@types/hast': 3.0.4 3232 + 3233 + hast-util-to-text@4.0.2: 3234 + dependencies: 3235 + '@types/hast': 3.0.4 3236 + '@types/unist': 3.0.3 3237 + hast-util-is-element: 3.0.0 3238 + unist-util-find-after: 5.0.0 3239 + 3240 + hast-util-whitespace@3.0.0: 3241 + dependencies: 3242 + '@types/hast': 3.0.4 3243 + 3244 + hastscript@8.0.0: 3245 + dependencies: 3246 + '@types/hast': 3.0.4 3247 + comma-separated-tokens: 2.0.3 3248 + hast-util-parse-selector: 4.0.0 3249 + property-information: 6.5.0 3250 + space-separated-tokens: 2.0.2 3251 + 3252 + hastscript@9.0.0: 3253 + dependencies: 3254 + '@types/hast': 3.0.4 3255 + comma-separated-tokens: 2.0.3 3256 + hast-util-parse-selector: 4.0.0 3257 + property-information: 6.5.0 3258 + space-separated-tokens: 2.0.2 3259 + 3260 + html-escaper@3.0.3: {} 3261 + 3262 + html-void-elements@3.0.0: {} 3263 + 3264 + html-whitespace-sensitive-tag-names@3.0.1: {} 3265 + 3266 + htmlparser2@8.0.2: 3267 + dependencies: 3268 + domelementtype: 2.3.0 3269 + domhandler: 5.0.3 3270 + domutils: 3.1.0 3271 + entities: 4.5.0 3272 + 3273 + http-cache-semantics@4.1.1: {} 3274 + 3275 + humanize-list@1.0.1: {} 3276 + 3277 + i18next@23.16.4: 3278 + dependencies: 3279 + '@babel/runtime': 7.26.0 3280 + 3281 + import-meta-resolve@4.1.0: {} 3282 + 3283 + inline-style-parser@0.1.1: {} 3284 + 3285 + inline-style-parser@0.2.4: {} 3286 + 3287 + is-absolute-url@4.0.1: {} 3288 + 3289 + is-alphabetical@2.0.1: {} 3290 + 3291 + is-alphanumerical@2.0.1: 3292 + dependencies: 3293 + is-alphabetical: 2.0.1 3294 + is-decimal: 2.0.1 3295 + 3296 + is-arrayish@0.3.2: {} 3297 + 3298 + is-decimal@2.0.1: {} 3299 + 3300 + is-docker@3.0.0: {} 3301 + 3302 + is-extendable@0.1.1: {} 3303 + 3304 + is-extglob@2.1.1: {} 3305 + 3306 + is-fullwidth-code-point@3.0.0: {} 3307 + 3308 + is-glob@4.0.3: 3309 + dependencies: 3310 + is-extglob: 2.1.1 3311 + 3312 + is-hexadecimal@2.0.1: {} 3313 + 3314 + is-inside-container@1.0.0: 3315 + dependencies: 3316 + is-docker: 3.0.0 3317 + 3318 + is-interactive@2.0.0: {} 3319 + 3320 + is-number@7.0.0: {} 3321 + 3322 + is-plain-obj@4.1.0: {} 3323 + 3324 + is-unicode-supported@1.3.0: {} 3325 + 3326 + is-unicode-supported@2.1.0: {} 3327 + 3328 + is-wsl@3.1.0: 3329 + dependencies: 3330 + is-inside-container: 1.0.0 3331 + 3332 + js-tokens@4.0.0: {} 3333 + 3334 + js-yaml@3.14.1: 3335 + dependencies: 3336 + argparse: 1.0.10 3337 + esprima: 4.0.1 3338 + 3339 + js-yaml@4.1.0: 3340 + dependencies: 3341 + argparse: 2.0.1 3342 + 3343 + jsesc@3.0.2: {} 3344 + 3345 + json5@2.2.3: {} 3346 + 3347 + kind-of@6.0.3: {} 3348 + 3349 + kleur@3.0.3: {} 3350 + 3351 + kleur@4.1.5: {} 3352 + 3353 + linkedom@0.14.26: 3354 + dependencies: 3355 + css-select: 5.1.0 3356 + cssom: 0.5.0 3357 + html-escaper: 3.0.3 3358 + htmlparser2: 8.0.2 3359 + uhyphen: 0.2.0 3360 + 3361 + lite-youtube-embed@0.3.3: {} 3362 + 3363 + load-yaml-file@0.2.0: 3364 + dependencies: 3365 + graceful-fs: 4.2.11 3366 + js-yaml: 3.14.1 3367 + pify: 4.0.1 3368 + strip-bom: 3.0.0 3369 + 3370 + locate-path@5.0.0: 3371 + dependencies: 3372 + p-locate: 4.1.0 3373 + 3374 + log-symbols@6.0.0: 3375 + dependencies: 3376 + chalk: 5.3.0 3377 + is-unicode-supported: 1.3.0 3378 + 3379 + longest-streak@3.1.0: {} 3380 + 3381 + lru-cache@5.1.1: 3382 + dependencies: 3383 + yallist: 3.1.1 3384 + 3385 + magic-string@0.30.12: 3386 + dependencies: 3387 + '@jridgewell/sourcemap-codec': 1.5.0 3388 + 3389 + magicast@0.3.5: 3390 + dependencies: 3391 + '@babel/parser': 7.26.2 3392 + '@babel/types': 7.26.0 3393 + source-map-js: 1.2.1 3394 + 3395 + markdown-extensions@2.0.0: {} 3396 + 3397 + markdown-table@3.0.4: {} 3398 + 3399 + mdast-util-definitions@6.0.0: 3400 + dependencies: 3401 + '@types/mdast': 4.0.4 3402 + '@types/unist': 3.0.3 3403 + unist-util-visit: 5.0.0 3404 + 3405 + mdast-util-directive@3.0.0: 3406 + dependencies: 3407 + '@types/mdast': 4.0.4 3408 + '@types/unist': 3.0.3 3409 + devlop: 1.1.0 3410 + mdast-util-from-markdown: 2.0.2 3411 + mdast-util-to-markdown: 2.1.1 3412 + parse-entities: 4.0.1 3413 + stringify-entities: 4.0.4 3414 + unist-util-visit-parents: 6.0.1 3415 + transitivePeerDependencies: 3416 + - supports-color 3417 + 3418 + mdast-util-find-and-replace@3.0.1: 3419 + dependencies: 3420 + '@types/mdast': 4.0.4 3421 + escape-string-regexp: 5.0.0 3422 + unist-util-is: 6.0.0 3423 + unist-util-visit-parents: 6.0.1 3424 + 3425 + mdast-util-from-markdown@2.0.2: 3426 + dependencies: 3427 + '@types/mdast': 4.0.4 3428 + '@types/unist': 3.0.3 3429 + decode-named-character-reference: 1.0.2 3430 + devlop: 1.1.0 3431 + mdast-util-to-string: 4.0.0 3432 + micromark: 4.0.0 3433 + micromark-util-decode-numeric-character-reference: 2.0.1 3434 + micromark-util-decode-string: 2.0.0 3435 + micromark-util-normalize-identifier: 2.0.0 3436 + micromark-util-symbol: 2.0.0 3437 + micromark-util-types: 2.0.0 3438 + unist-util-stringify-position: 4.0.0 3439 + transitivePeerDependencies: 3440 + - supports-color 3441 + 3442 + mdast-util-gfm-autolink-literal@2.0.1: 3443 + dependencies: 3444 + '@types/mdast': 4.0.4 3445 + ccount: 2.0.1 3446 + devlop: 1.1.0 3447 + mdast-util-find-and-replace: 3.0.1 3448 + micromark-util-character: 2.1.0 3449 + 3450 + mdast-util-gfm-footnote@2.0.0: 3451 + dependencies: 3452 + '@types/mdast': 4.0.4 3453 + devlop: 1.1.0 3454 + mdast-util-from-markdown: 2.0.2 3455 + mdast-util-to-markdown: 2.1.1 3456 + micromark-util-normalize-identifier: 2.0.0 3457 + transitivePeerDependencies: 3458 + - supports-color 3459 + 3460 + mdast-util-gfm-strikethrough@2.0.0: 3461 + dependencies: 3462 + '@types/mdast': 4.0.4 3463 + mdast-util-from-markdown: 2.0.2 3464 + mdast-util-to-markdown: 2.1.1 3465 + transitivePeerDependencies: 3466 + - supports-color 3467 + 3468 + mdast-util-gfm-table@2.0.0: 3469 + dependencies: 3470 + '@types/mdast': 4.0.4 3471 + devlop: 1.1.0 3472 + markdown-table: 3.0.4 3473 + mdast-util-from-markdown: 2.0.2 3474 + mdast-util-to-markdown: 2.1.1 3475 + transitivePeerDependencies: 3476 + - supports-color 3477 + 3478 + mdast-util-gfm-task-list-item@2.0.0: 3479 + dependencies: 3480 + '@types/mdast': 4.0.4 3481 + devlop: 1.1.0 3482 + mdast-util-from-markdown: 2.0.2 3483 + mdast-util-to-markdown: 2.1.1 3484 + transitivePeerDependencies: 3485 + - supports-color 3486 + 3487 + mdast-util-gfm@3.0.0: 3488 + dependencies: 3489 + mdast-util-from-markdown: 2.0.2 3490 + mdast-util-gfm-autolink-literal: 2.0.1 3491 + mdast-util-gfm-footnote: 2.0.0 3492 + mdast-util-gfm-strikethrough: 2.0.0 3493 + mdast-util-gfm-table: 2.0.0 3494 + mdast-util-gfm-task-list-item: 2.0.0 3495 + mdast-util-to-markdown: 2.1.1 3496 + transitivePeerDependencies: 3497 + - supports-color 3498 + 3499 + mdast-util-mdx-expression@2.0.1: 3500 + dependencies: 3501 + '@types/estree-jsx': 1.0.5 3502 + '@types/hast': 3.0.4 3503 + '@types/mdast': 4.0.4 3504 + devlop: 1.1.0 3505 + mdast-util-from-markdown: 2.0.2 3506 + mdast-util-to-markdown: 2.1.1 3507 + transitivePeerDependencies: 3508 + - supports-color 3509 + 3510 + mdast-util-mdx-jsx@3.1.3: 3511 + dependencies: 3512 + '@types/estree-jsx': 1.0.5 3513 + '@types/hast': 3.0.4 3514 + '@types/mdast': 4.0.4 3515 + '@types/unist': 3.0.3 3516 + ccount: 2.0.1 3517 + devlop: 1.1.0 3518 + mdast-util-from-markdown: 2.0.2 3519 + mdast-util-to-markdown: 2.1.1 3520 + parse-entities: 4.0.1 3521 + stringify-entities: 4.0.4 3522 + unist-util-stringify-position: 4.0.0 3523 + vfile-message: 4.0.2 3524 + transitivePeerDependencies: 3525 + - supports-color 3526 + 3527 + mdast-util-mdx@3.0.0: 3528 + dependencies: 3529 + mdast-util-from-markdown: 2.0.2 3530 + mdast-util-mdx-expression: 2.0.1 3531 + mdast-util-mdx-jsx: 3.1.3 3532 + mdast-util-mdxjs-esm: 2.0.1 3533 + mdast-util-to-markdown: 2.1.1 3534 + transitivePeerDependencies: 3535 + - supports-color 3536 + 3537 + mdast-util-mdxjs-esm@2.0.1: 3538 + dependencies: 3539 + '@types/estree-jsx': 1.0.5 3540 + '@types/hast': 3.0.4 3541 + '@types/mdast': 4.0.4 3542 + devlop: 1.1.0 3543 + mdast-util-from-markdown: 2.0.2 3544 + mdast-util-to-markdown: 2.1.1 3545 + transitivePeerDependencies: 3546 + - supports-color 3547 + 3548 + mdast-util-phrasing@4.1.0: 3549 + dependencies: 3550 + '@types/mdast': 4.0.4 3551 + unist-util-is: 6.0.0 3552 + 3553 + mdast-util-to-hast@13.2.0: 3554 + dependencies: 3555 + '@types/hast': 3.0.4 3556 + '@types/mdast': 4.0.4 3557 + '@ungap/structured-clone': 1.2.0 3558 + devlop: 1.1.0 3559 + micromark-util-sanitize-uri: 2.0.0 3560 + trim-lines: 3.0.1 3561 + unist-util-position: 5.0.0 3562 + unist-util-visit: 5.0.0 3563 + vfile: 6.0.3 3564 + 3565 + mdast-util-to-markdown@2.1.1: 3566 + dependencies: 3567 + '@types/mdast': 4.0.4 3568 + '@types/unist': 3.0.3 3569 + longest-streak: 3.1.0 3570 + mdast-util-phrasing: 4.1.0 3571 + mdast-util-to-string: 4.0.0 3572 + micromark-util-classify-character: 2.0.0 3573 + micromark-util-decode-string: 2.0.0 3574 + unist-util-visit: 5.0.0 3575 + zwitch: 2.0.4 3576 + 3577 + mdast-util-to-string@4.0.0: 3578 + dependencies: 3579 + '@types/mdast': 4.0.4 3580 + 3581 + merge2@1.4.1: {} 3582 + 3583 + micromark-core-commonmark@2.0.1: 3584 + dependencies: 3585 + decode-named-character-reference: 1.0.2 3586 + devlop: 1.1.0 3587 + micromark-factory-destination: 2.0.0 3588 + micromark-factory-label: 2.0.0 3589 + micromark-factory-space: 2.0.0 3590 + micromark-factory-title: 2.0.0 3591 + micromark-factory-whitespace: 2.0.0 3592 + micromark-util-character: 2.1.0 3593 + micromark-util-chunked: 2.0.0 3594 + micromark-util-classify-character: 2.0.0 3595 + micromark-util-html-tag-name: 2.0.0 3596 + micromark-util-normalize-identifier: 2.0.0 3597 + micromark-util-resolve-all: 2.0.0 3598 + micromark-util-subtokenize: 2.0.1 3599 + micromark-util-symbol: 2.0.0 3600 + micromark-util-types: 2.0.0 3601 + 3602 + micromark-extension-directive@3.0.2: 3603 + dependencies: 3604 + devlop: 1.1.0 3605 + micromark-factory-space: 2.0.0 3606 + micromark-factory-whitespace: 2.0.0 3607 + micromark-util-character: 2.1.0 3608 + micromark-util-symbol: 2.0.0 3609 + micromark-util-types: 2.0.0 3610 + parse-entities: 4.0.1 3611 + 3612 + micromark-extension-gfm-autolink-literal@2.1.0: 3613 + dependencies: 3614 + micromark-util-character: 2.1.0 3615 + micromark-util-sanitize-uri: 2.0.0 3616 + micromark-util-symbol: 2.0.0 3617 + micromark-util-types: 2.0.0 3618 + 3619 + micromark-extension-gfm-footnote@2.1.0: 3620 + dependencies: 3621 + devlop: 1.1.0 3622 + micromark-core-commonmark: 2.0.1 3623 + micromark-factory-space: 2.0.0 3624 + micromark-util-character: 2.1.0 3625 + micromark-util-normalize-identifier: 2.0.0 3626 + micromark-util-sanitize-uri: 2.0.0 3627 + micromark-util-symbol: 2.0.0 3628 + micromark-util-types: 2.0.0 3629 + 3630 + micromark-extension-gfm-strikethrough@2.1.0: 3631 + dependencies: 3632 + devlop: 1.1.0 3633 + micromark-util-chunked: 2.0.0 3634 + micromark-util-classify-character: 2.0.0 3635 + micromark-util-resolve-all: 2.0.0 3636 + micromark-util-symbol: 2.0.0 3637 + micromark-util-types: 2.0.0 3638 + 3639 + micromark-extension-gfm-table@2.1.0: 3640 + dependencies: 3641 + devlop: 1.1.0 3642 + micromark-factory-space: 2.0.0 3643 + micromark-util-character: 2.1.0 3644 + micromark-util-symbol: 2.0.0 3645 + micromark-util-types: 2.0.0 3646 + 3647 + micromark-extension-gfm-tagfilter@2.0.0: 3648 + dependencies: 3649 + micromark-util-types: 2.0.0 3650 + 3651 + micromark-extension-gfm-task-list-item@2.1.0: 3652 + dependencies: 3653 + devlop: 1.1.0 3654 + micromark-factory-space: 2.0.0 3655 + micromark-util-character: 2.1.0 3656 + micromark-util-symbol: 2.0.0 3657 + micromark-util-types: 2.0.0 3658 + 3659 + micromark-extension-gfm@3.0.0: 3660 + dependencies: 3661 + micromark-extension-gfm-autolink-literal: 2.1.0 3662 + micromark-extension-gfm-footnote: 2.1.0 3663 + micromark-extension-gfm-strikethrough: 2.1.0 3664 + micromark-extension-gfm-table: 2.1.0 3665 + micromark-extension-gfm-tagfilter: 2.0.0 3666 + micromark-extension-gfm-task-list-item: 2.1.0 3667 + micromark-util-combine-extensions: 2.0.0 3668 + micromark-util-types: 2.0.0 3669 + 3670 + micromark-extension-mdx-expression@3.0.0: 3671 + dependencies: 3672 + '@types/estree': 1.0.6 3673 + devlop: 1.1.0 3674 + micromark-factory-mdx-expression: 2.0.2 3675 + micromark-factory-space: 2.0.0 3676 + micromark-util-character: 2.1.0 3677 + micromark-util-events-to-acorn: 2.0.2 3678 + micromark-util-symbol: 2.0.0 3679 + micromark-util-types: 2.0.0 3680 + 3681 + micromark-extension-mdx-jsx@3.0.1: 3682 + dependencies: 3683 + '@types/acorn': 4.0.6 3684 + '@types/estree': 1.0.6 3685 + devlop: 1.1.0 3686 + estree-util-is-identifier-name: 3.0.0 3687 + micromark-factory-mdx-expression: 2.0.2 3688 + micromark-factory-space: 2.0.0 3689 + micromark-util-character: 2.1.0 3690 + micromark-util-events-to-acorn: 2.0.2 3691 + micromark-util-symbol: 2.0.0 3692 + micromark-util-types: 2.0.0 3693 + vfile-message: 4.0.2 3694 + 3695 + micromark-extension-mdx-md@2.0.0: 3696 + dependencies: 3697 + micromark-util-types: 2.0.0 3698 + 3699 + micromark-extension-mdxjs-esm@3.0.0: 3700 + dependencies: 3701 + '@types/estree': 1.0.6 3702 + devlop: 1.1.0 3703 + micromark-core-commonmark: 2.0.1 3704 + micromark-util-character: 2.1.0 3705 + micromark-util-events-to-acorn: 2.0.2 3706 + micromark-util-symbol: 2.0.0 3707 + micromark-util-types: 2.0.0 3708 + unist-util-position-from-estree: 2.0.0 3709 + vfile-message: 4.0.2 3710 + 3711 + micromark-extension-mdxjs@3.0.0: 3712 + dependencies: 3713 + acorn: 8.14.0 3714 + acorn-jsx: 5.3.2(acorn@8.14.0) 3715 + micromark-extension-mdx-expression: 3.0.0 3716 + micromark-extension-mdx-jsx: 3.0.1 3717 + micromark-extension-mdx-md: 2.0.0 3718 + micromark-extension-mdxjs-esm: 3.0.0 3719 + micromark-util-combine-extensions: 2.0.0 3720 + micromark-util-types: 2.0.0 3721 + 3722 + micromark-factory-destination@2.0.0: 3723 + dependencies: 3724 + micromark-util-character: 2.1.0 3725 + micromark-util-symbol: 2.0.0 3726 + micromark-util-types: 2.0.0 3727 + 3728 + micromark-factory-label@2.0.0: 3729 + dependencies: 3730 + devlop: 1.1.0 3731 + micromark-util-character: 2.1.0 3732 + micromark-util-symbol: 2.0.0 3733 + micromark-util-types: 2.0.0 3734 + 3735 + micromark-factory-mdx-expression@2.0.2: 3736 + dependencies: 3737 + '@types/estree': 1.0.6 3738 + devlop: 1.1.0 3739 + micromark-factory-space: 2.0.0 3740 + micromark-util-character: 2.1.0 3741 + micromark-util-events-to-acorn: 2.0.2 3742 + micromark-util-symbol: 2.0.0 3743 + micromark-util-types: 2.0.0 3744 + unist-util-position-from-estree: 2.0.0 3745 + vfile-message: 4.0.2 3746 + 3747 + micromark-factory-space@2.0.0: 3748 + dependencies: 3749 + micromark-util-character: 2.1.0 3750 + micromark-util-types: 2.0.0 3751 + 3752 + micromark-factory-title@2.0.0: 3753 + dependencies: 3754 + micromark-factory-space: 2.0.0 3755 + micromark-util-character: 2.1.0 3756 + micromark-util-symbol: 2.0.0 3757 + micromark-util-types: 2.0.0 3758 + 3759 + micromark-factory-whitespace@2.0.0: 3760 + dependencies: 3761 + micromark-factory-space: 2.0.0 3762 + micromark-util-character: 2.1.0 3763 + micromark-util-symbol: 2.0.0 3764 + micromark-util-types: 2.0.0 3765 + 3766 + micromark-util-character@2.1.0: 3767 + dependencies: 3768 + micromark-util-symbol: 2.0.0 3769 + micromark-util-types: 2.0.0 3770 + 3771 + micromark-util-chunked@2.0.0: 3772 + dependencies: 3773 + micromark-util-symbol: 2.0.0 3774 + 3775 + micromark-util-classify-character@2.0.0: 3776 + dependencies: 3777 + micromark-util-character: 2.1.0 3778 + micromark-util-symbol: 2.0.0 3779 + micromark-util-types: 2.0.0 3780 + 3781 + micromark-util-combine-extensions@2.0.0: 3782 + dependencies: 3783 + micromark-util-chunked: 2.0.0 3784 + micromark-util-types: 2.0.0 3785 + 3786 + micromark-util-decode-numeric-character-reference@2.0.1: 3787 + dependencies: 3788 + micromark-util-symbol: 2.0.0 3789 + 3790 + micromark-util-decode-string@2.0.0: 3791 + dependencies: 3792 + decode-named-character-reference: 1.0.2 3793 + micromark-util-character: 2.1.0 3794 + micromark-util-decode-numeric-character-reference: 2.0.1 3795 + micromark-util-symbol: 2.0.0 3796 + 3797 + micromark-util-encode@2.0.0: {} 3798 + 3799 + micromark-util-events-to-acorn@2.0.2: 3800 + dependencies: 3801 + '@types/acorn': 4.0.6 3802 + '@types/estree': 1.0.6 3803 + '@types/unist': 3.0.3 3804 + devlop: 1.1.0 3805 + estree-util-visit: 2.0.0 3806 + micromark-util-symbol: 2.0.0 3807 + micromark-util-types: 2.0.0 3808 + vfile-message: 4.0.2 3809 + 3810 + micromark-util-html-tag-name@2.0.0: {} 3811 + 3812 + micromark-util-normalize-identifier@2.0.0: 3813 + dependencies: 3814 + micromark-util-symbol: 2.0.0 3815 + 3816 + micromark-util-resolve-all@2.0.0: 3817 + dependencies: 3818 + micromark-util-types: 2.0.0 3819 + 3820 + micromark-util-sanitize-uri@2.0.0: 3821 + dependencies: 3822 + micromark-util-character: 2.1.0 3823 + micromark-util-encode: 2.0.0 3824 + micromark-util-symbol: 2.0.0 3825 + 3826 + micromark-util-subtokenize@2.0.1: 3827 + dependencies: 3828 + devlop: 1.1.0 3829 + micromark-util-chunked: 2.0.0 3830 + micromark-util-symbol: 2.0.0 3831 + micromark-util-types: 2.0.0 3832 + 3833 + micromark-util-symbol@2.0.0: {} 3834 + 3835 + micromark-util-types@2.0.0: {} 3836 + 3837 + micromark@4.0.0: 3838 + dependencies: 3839 + '@types/debug': 4.1.12 3840 + debug: 4.3.7 3841 + decode-named-character-reference: 1.0.2 3842 + devlop: 1.1.0 3843 + micromark-core-commonmark: 2.0.1 3844 + micromark-factory-space: 2.0.0 3845 + micromark-util-character: 2.1.0 3846 + micromark-util-chunked: 2.0.0 3847 + micromark-util-combine-extensions: 2.0.0 3848 + micromark-util-decode-numeric-character-reference: 2.0.1 3849 + micromark-util-encode: 2.0.0 3850 + micromark-util-normalize-identifier: 2.0.0 3851 + micromark-util-resolve-all: 2.0.0 3852 + micromark-util-sanitize-uri: 2.0.0 3853 + micromark-util-subtokenize: 2.0.1 3854 + micromark-util-symbol: 2.0.0 3855 + micromark-util-types: 2.0.0 3856 + transitivePeerDependencies: 3857 + - supports-color 3858 + 3859 + micromatch@4.0.8: 3860 + dependencies: 3861 + braces: 3.0.3 3862 + picomatch: 2.3.1 3863 + 3864 + mimic-function@5.0.1: {} 3865 + 3866 + mrmime@2.0.0: {} 3867 + 3868 + ms@2.1.3: {} 3869 + 3870 + nanoid@3.3.7: {} 3871 + 3872 + neotraverse@0.6.18: {} 3873 + 3874 + nlcst-to-string@4.0.0: 3875 + dependencies: 3876 + '@types/nlcst': 2.0.3 3877 + 3878 + node-releases@2.0.18: {} 3879 + 3880 + nth-check@2.1.1: 3881 + dependencies: 3882 + boolbase: 1.0.0 3883 + 3884 + onetime@7.0.0: 3885 + dependencies: 3886 + mimic-function: 5.0.1 3887 + 3888 + oniguruma-to-js@0.4.3: 3889 + dependencies: 3890 + regex: 4.4.0 3891 + 3892 + ora@8.1.1: 3893 + dependencies: 3894 + chalk: 5.3.0 3895 + cli-cursor: 5.0.0 3896 + cli-spinners: 2.9.2 3897 + is-interactive: 2.0.0 3898 + is-unicode-supported: 2.1.0 3899 + log-symbols: 6.0.0 3900 + stdin-discarder: 0.2.2 3901 + string-width: 7.2.0 3902 + strip-ansi: 7.1.0 3903 + 3904 + p-limit@2.3.0: 3905 + dependencies: 3906 + p-try: 2.2.0 3907 + 3908 + p-limit@6.1.0: 3909 + dependencies: 3910 + yocto-queue: 1.1.1 3911 + 3912 + p-locate@4.1.0: 3913 + dependencies: 3914 + p-limit: 2.3.0 3915 + 3916 + p-queue@8.0.1: 3917 + dependencies: 3918 + eventemitter3: 5.0.1 3919 + p-timeout: 6.1.3 3920 + 3921 + p-timeout@6.1.3: {} 3922 + 3923 + p-try@2.2.0: {} 3924 + 3925 + pagefind@1.1.1: 3926 + optionalDependencies: 3927 + '@pagefind/darwin-arm64': 1.1.1 3928 + '@pagefind/darwin-x64': 1.1.1 3929 + '@pagefind/linux-arm64': 1.1.1 3930 + '@pagefind/linux-x64': 1.1.1 3931 + '@pagefind/windows-x64': 1.1.1 3932 + 3933 + parse-entities@4.0.1: 3934 + dependencies: 3935 + '@types/unist': 2.0.11 3936 + character-entities: 2.0.2 3937 + character-entities-legacy: 3.0.0 3938 + character-reference-invalid: 2.0.1 3939 + decode-named-character-reference: 1.0.2 3940 + is-alphanumerical: 2.0.1 3941 + is-decimal: 2.0.1 3942 + is-hexadecimal: 2.0.1 3943 + 3944 + parse-latin@7.0.0: 3945 + dependencies: 3946 + '@types/nlcst': 2.0.3 3947 + '@types/unist': 3.0.3 3948 + nlcst-to-string: 4.0.0 3949 + unist-util-modify-children: 4.0.0 3950 + unist-util-visit-children: 3.0.0 3951 + vfile: 6.0.3 3952 + 3953 + parse5@7.2.1: 3954 + dependencies: 3955 + entities: 4.5.0 3956 + 3957 + path-exists@4.0.0: {} 3958 + 3959 + picocolors@1.1.1: {} 3960 + 3961 + picomatch@2.3.1: {} 3962 + 3963 + picomatch@4.0.2: {} 3964 + 3965 + pify@4.0.1: {} 3966 + 3967 + pkg-dir@4.2.0: 3968 + dependencies: 3969 + find-up: 4.1.0 3970 + 3971 + postcss-nested@6.2.0(postcss@8.4.47): 3972 + dependencies: 3973 + postcss: 8.4.47 3974 + postcss-selector-parser: 6.1.2 3975 + 3976 + postcss-selector-parser@6.1.2: 3977 + dependencies: 3978 + cssesc: 3.0.0 3979 + util-deprecate: 1.0.2 3980 + 3981 + postcss@8.4.47: 3982 + dependencies: 3983 + nanoid: 3.3.7 3984 + picocolors: 1.1.1 3985 + source-map-js: 1.2.1 3986 + 3987 + preferred-pm@4.0.0: 3988 + dependencies: 3989 + find-up-simple: 1.0.0 3990 + find-yarn-workspace-root2: 1.2.16 3991 + which-pm: 3.0.0 3992 + 3993 + prismjs@1.29.0: {} 3994 + 3995 + prompts@2.4.2: 3996 + dependencies: 3997 + kleur: 3.0.3 3998 + sisteransi: 1.0.5 3999 + 4000 + property-information@6.5.0: {} 4001 + 4002 + queue-microtask@1.2.3: {} 4003 + 4004 + recma-build-jsx@1.0.0: 4005 + dependencies: 4006 + '@types/estree': 1.0.6 4007 + estree-util-build-jsx: 3.0.1 4008 + vfile: 6.0.3 4009 + 4010 + recma-jsx@1.0.0(acorn@8.14.0): 4011 + dependencies: 4012 + acorn-jsx: 5.3.2(acorn@8.14.0) 4013 + estree-util-to-js: 2.0.0 4014 + recma-parse: 1.0.0 4015 + recma-stringify: 1.0.0 4016 + unified: 11.0.5 4017 + transitivePeerDependencies: 4018 + - acorn 4019 + 4020 + recma-parse@1.0.0: 4021 + dependencies: 4022 + '@types/estree': 1.0.6 4023 + esast-util-from-js: 2.0.1 4024 + unified: 11.0.5 4025 + vfile: 6.0.3 4026 + 4027 + recma-stringify@1.0.0: 4028 + dependencies: 4029 + '@types/estree': 1.0.6 4030 + estree-util-to-js: 2.0.0 4031 + unified: 11.0.5 4032 + vfile: 6.0.3 4033 + 4034 + regenerator-runtime@0.14.1: {} 4035 + 4036 + regex@4.4.0: {} 4037 + 4038 + rehype-expressive-code@0.35.6: 4039 + dependencies: 4040 + expressive-code: 0.35.6 4041 + 4042 + rehype-format@5.0.1: 4043 + dependencies: 4044 + '@types/hast': 3.0.4 4045 + hast-util-format: 1.1.0 4046 + 4047 + rehype-parse@9.0.1: 4048 + dependencies: 4049 + '@types/hast': 3.0.4 4050 + hast-util-from-html: 2.0.3 4051 + unified: 11.0.5 4052 + 4053 + rehype-raw@7.0.0: 4054 + dependencies: 4055 + '@types/hast': 3.0.4 4056 + hast-util-raw: 9.0.4 4057 + vfile: 6.0.3 4058 + 4059 + rehype-recma@1.0.0: 4060 + dependencies: 4061 + '@types/estree': 1.0.6 4062 + '@types/hast': 3.0.4 4063 + hast-util-to-estree: 3.1.0 4064 + transitivePeerDependencies: 4065 + - supports-color 4066 + 4067 + rehype-stringify@10.0.1: 4068 + dependencies: 4069 + '@types/hast': 3.0.4 4070 + hast-util-to-html: 9.0.3 4071 + unified: 11.0.5 4072 + 4073 + rehype@13.0.2: 4074 + dependencies: 4075 + '@types/hast': 3.0.4 4076 + rehype-parse: 9.0.1 4077 + rehype-stringify: 10.0.1 4078 + unified: 11.0.5 4079 + 4080 + remark-directive@3.0.0: 4081 + dependencies: 4082 + '@types/mdast': 4.0.4 4083 + mdast-util-directive: 3.0.0 4084 + micromark-extension-directive: 3.0.2 4085 + unified: 11.0.5 4086 + transitivePeerDependencies: 4087 + - supports-color 4088 + 4089 + remark-gfm@4.0.0: 4090 + dependencies: 4091 + '@types/mdast': 4.0.4 4092 + mdast-util-gfm: 3.0.0 4093 + micromark-extension-gfm: 3.0.0 4094 + remark-parse: 11.0.0 4095 + remark-stringify: 11.0.0 4096 + unified: 11.0.5 4097 + transitivePeerDependencies: 4098 + - supports-color 4099 + 4100 + remark-mdx@3.1.0: 4101 + dependencies: 4102 + mdast-util-mdx: 3.0.0 4103 + micromark-extension-mdxjs: 3.0.0 4104 + transitivePeerDependencies: 4105 + - supports-color 4106 + 4107 + remark-parse@11.0.0: 4108 + dependencies: 4109 + '@types/mdast': 4.0.4 4110 + mdast-util-from-markdown: 2.0.2 4111 + micromark-util-types: 2.0.0 4112 + unified: 11.0.5 4113 + transitivePeerDependencies: 4114 + - supports-color 4115 + 4116 + remark-rehype@11.1.1: 4117 + dependencies: 4118 + '@types/hast': 3.0.4 4119 + '@types/mdast': 4.0.4 4120 + mdast-util-to-hast: 13.2.0 4121 + unified: 11.0.5 4122 + vfile: 6.0.3 4123 + 4124 + remark-smartypants@3.0.2: 4125 + dependencies: 4126 + retext: 9.0.0 4127 + retext-smartypants: 6.2.0 4128 + unified: 11.0.5 4129 + unist-util-visit: 5.0.0 4130 + 4131 + remark-stringify@11.0.0: 4132 + dependencies: 4133 + '@types/mdast': 4.0.4 4134 + mdast-util-to-markdown: 2.1.1 4135 + unified: 11.0.5 4136 + 4137 + restore-cursor@5.1.0: 4138 + dependencies: 4139 + onetime: 7.0.0 4140 + signal-exit: 4.1.0 4141 + 4142 + retext-latin@4.0.0: 4143 + dependencies: 4144 + '@types/nlcst': 2.0.3 4145 + parse-latin: 7.0.0 4146 + unified: 11.0.5 4147 + 4148 + retext-smartypants@6.2.0: 4149 + dependencies: 4150 + '@types/nlcst': 2.0.3 4151 + nlcst-to-string: 4.0.0 4152 + unist-util-visit: 5.0.0 4153 + 4154 + retext-stringify@4.0.0: 4155 + dependencies: 4156 + '@types/nlcst': 2.0.3 4157 + nlcst-to-string: 4.0.0 4158 + unified: 11.0.5 4159 + 4160 + retext@9.0.0: 4161 + dependencies: 4162 + '@types/nlcst': 2.0.3 4163 + retext-latin: 4.0.0 4164 + retext-stringify: 4.0.0 4165 + unified: 11.0.5 4166 + 4167 + reusify@1.0.4: {} 4168 + 4169 + rollup@4.24.3: 4170 + dependencies: 4171 + '@types/estree': 1.0.6 4172 + optionalDependencies: 4173 + '@rollup/rollup-android-arm-eabi': 4.24.3 4174 + '@rollup/rollup-android-arm64': 4.24.3 4175 + '@rollup/rollup-darwin-arm64': 4.24.3 4176 + '@rollup/rollup-darwin-x64': 4.24.3 4177 + '@rollup/rollup-freebsd-arm64': 4.24.3 4178 + '@rollup/rollup-freebsd-x64': 4.24.3 4179 + '@rollup/rollup-linux-arm-gnueabihf': 4.24.3 4180 + '@rollup/rollup-linux-arm-musleabihf': 4.24.3 4181 + '@rollup/rollup-linux-arm64-gnu': 4.24.3 4182 + '@rollup/rollup-linux-arm64-musl': 4.24.3 4183 + '@rollup/rollup-linux-powerpc64le-gnu': 4.24.3 4184 + '@rollup/rollup-linux-riscv64-gnu': 4.24.3 4185 + '@rollup/rollup-linux-s390x-gnu': 4.24.3 4186 + '@rollup/rollup-linux-x64-gnu': 4.24.3 4187 + '@rollup/rollup-linux-x64-musl': 4.24.3 4188 + '@rollup/rollup-win32-arm64-msvc': 4.24.3 4189 + '@rollup/rollup-win32-ia32-msvc': 4.24.3 4190 + '@rollup/rollup-win32-x64-msvc': 4.24.3 4191 + fsevents: 2.3.3 4192 + 4193 + run-parallel@1.2.0: 4194 + dependencies: 4195 + queue-microtask: 1.2.3 4196 + 4197 + sax@1.4.1: {} 4198 + 4199 + section-matter@1.0.0: 4200 + dependencies: 4201 + extend-shallow: 2.0.1 4202 + kind-of: 6.0.3 4203 + 4204 + semver@6.3.1: {} 4205 + 4206 + semver@7.6.3: {} 4207 + 4208 + sharp@0.33.5: 4209 + dependencies: 4210 + color: 4.2.3 4211 + detect-libc: 2.0.3 4212 + semver: 7.6.3 4213 + optionalDependencies: 4214 + '@img/sharp-darwin-arm64': 0.33.5 4215 + '@img/sharp-darwin-x64': 0.33.5 4216 + '@img/sharp-libvips-darwin-arm64': 1.0.4 4217 + '@img/sharp-libvips-darwin-x64': 1.0.4 4218 + '@img/sharp-libvips-linux-arm': 1.0.5 4219 + '@img/sharp-libvips-linux-arm64': 1.0.4 4220 + '@img/sharp-libvips-linux-s390x': 1.0.4 4221 + '@img/sharp-libvips-linux-x64': 1.0.4 4222 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 4223 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 4224 + '@img/sharp-linux-arm': 0.33.5 4225 + '@img/sharp-linux-arm64': 0.33.5 4226 + '@img/sharp-linux-s390x': 0.33.5 4227 + '@img/sharp-linux-x64': 0.33.5 4228 + '@img/sharp-linuxmusl-arm64': 0.33.5 4229 + '@img/sharp-linuxmusl-x64': 0.33.5 4230 + '@img/sharp-wasm32': 0.33.5 4231 + '@img/sharp-win32-ia32': 0.33.5 4232 + '@img/sharp-win32-x64': 0.33.5 4233 + 4234 + shiki@1.22.2: 4235 + dependencies: 4236 + '@shikijs/core': 1.22.2 4237 + '@shikijs/engine-javascript': 1.22.2 4238 + '@shikijs/engine-oniguruma': 1.22.2 4239 + '@shikijs/types': 1.22.2 4240 + '@shikijs/vscode-textmate': 9.3.0 4241 + '@types/hast': 3.0.4 4242 + 4243 + signal-exit@4.1.0: {} 4244 + 4245 + simple-swizzle@0.2.2: 4246 + dependencies: 4247 + is-arrayish: 0.3.2 4248 + 4249 + sisteransi@1.0.5: {} 4250 + 4251 + sitemap@8.0.0: 4252 + dependencies: 4253 + '@types/node': 17.0.45 4254 + '@types/sax': 1.2.7 4255 + arg: 5.0.2 4256 + sax: 1.4.1 4257 + 4258 + source-map-js@1.2.1: {} 4259 + 4260 + source-map@0.7.4: {} 4261 + 4262 + space-separated-tokens@2.0.2: {} 4263 + 4264 + sprintf-js@1.0.3: {} 4265 + 4266 + starlight-links-validator@0.13.0(@astrojs/starlight@0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)))(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)): 4267 + dependencies: 4268 + '@astrojs/starlight': 0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 4269 + '@types/picomatch': 2.3.3 4270 + astro: 4.16.8(rollup@4.24.3)(typescript@5.6.3) 4271 + github-slugger: 2.0.0 4272 + hast-util-from-html: 2.0.1 4273 + hast-util-has-property: 3.0.0 4274 + is-absolute-url: 4.0.1 4275 + kleur: 4.1.5 4276 + mdast-util-to-string: 4.0.0 4277 + picomatch: 4.0.2 4278 + unist-util-visit: 5.0.0 4279 + 4280 + starlight-showcases@0.2.0(@astrojs/starlight@0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)))(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)): 4281 + dependencies: 4282 + '@astro-community/astro-embed-twitter': 0.5.8(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 4283 + '@astro-community/astro-embed-youtube': 0.5.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 4284 + '@astrojs/starlight': 0.28.5(astro@4.16.8(rollup@4.24.3)(typescript@5.6.3)) 4285 + transitivePeerDependencies: 4286 + - astro 4287 + 4288 + stdin-discarder@0.2.2: {} 4289 + 4290 + stream-replace-string@2.0.0: {} 4291 + 4292 + string-width@4.2.3: 4293 + dependencies: 4294 + emoji-regex: 8.0.0 4295 + is-fullwidth-code-point: 3.0.0 4296 + strip-ansi: 6.0.1 4297 + 4298 + string-width@7.2.0: 4299 + dependencies: 4300 + emoji-regex: 10.4.0 4301 + get-east-asian-width: 1.3.0 4302 + strip-ansi: 7.1.0 4303 + 4304 + stringify-entities@4.0.4: 4305 + dependencies: 4306 + character-entities-html4: 2.1.0 4307 + character-entities-legacy: 3.0.0 4308 + 4309 + strip-ansi@6.0.1: 4310 + dependencies: 4311 + ansi-regex: 5.0.1 4312 + 4313 + strip-ansi@7.1.0: 4314 + dependencies: 4315 + ansi-regex: 6.1.0 4316 + 4317 + strip-bom-string@1.0.0: {} 4318 + 4319 + strip-bom@3.0.0: {} 4320 + 4321 + style-to-object@0.4.4: 4322 + dependencies: 4323 + inline-style-parser: 0.1.1 4324 + 4325 + style-to-object@1.0.8: 4326 + dependencies: 4327 + inline-style-parser: 0.2.4 4328 + 4329 + tinyexec@0.3.1: {} 4330 + 4331 + to-regex-range@5.0.1: 4332 + dependencies: 4333 + is-number: 7.0.0 4334 + 4335 + trim-lines@3.0.1: {} 4336 + 4337 + trough@2.2.0: {} 4338 + 4339 + tsconfck@3.1.4(typescript@5.6.3): 4340 + optionalDependencies: 4341 + typescript: 5.6.3 4342 + 4343 + tslib@2.8.1: 4344 + optional: true 4345 + 4346 + type-fest@4.26.1: {} 4347 + 4348 + typescript@5.6.3: {} 4349 + 4350 + uhyphen@0.2.0: {} 4351 + 4352 + unified@11.0.5: 4353 + dependencies: 4354 + '@types/unist': 3.0.3 4355 + bail: 2.0.2 4356 + devlop: 1.1.0 4357 + extend: 3.0.2 4358 + is-plain-obj: 4.1.0 4359 + trough: 2.2.0 4360 + vfile: 6.0.3 4361 + 4362 + unist-util-find-after@5.0.0: 4363 + dependencies: 4364 + '@types/unist': 3.0.3 4365 + unist-util-is: 6.0.0 4366 + 4367 + unist-util-is@6.0.0: 4368 + dependencies: 4369 + '@types/unist': 3.0.3 4370 + 4371 + unist-util-modify-children@4.0.0: 4372 + dependencies: 4373 + '@types/unist': 3.0.3 4374 + array-iterate: 2.0.1 4375 + 4376 + unist-util-position-from-estree@2.0.0: 4377 + dependencies: 4378 + '@types/unist': 3.0.3 4379 + 4380 + unist-util-position@5.0.0: 4381 + dependencies: 4382 + '@types/unist': 3.0.3 4383 + 4384 + unist-util-remove-position@5.0.0: 4385 + dependencies: 4386 + '@types/unist': 3.0.3 4387 + unist-util-visit: 5.0.0 4388 + 4389 + unist-util-stringify-position@4.0.0: 4390 + dependencies: 4391 + '@types/unist': 3.0.3 4392 + 4393 + unist-util-visit-children@3.0.0: 4394 + dependencies: 4395 + '@types/unist': 3.0.3 4396 + 4397 + unist-util-visit-parents@6.0.1: 4398 + dependencies: 4399 + '@types/unist': 3.0.3 4400 + unist-util-is: 6.0.0 4401 + 4402 + unist-util-visit@5.0.0: 4403 + dependencies: 4404 + '@types/unist': 3.0.3 4405 + unist-util-is: 6.0.0 4406 + unist-util-visit-parents: 6.0.1 4407 + 4408 + update-browserslist-db@1.1.1(browserslist@4.24.2): 4409 + dependencies: 4410 + browserslist: 4.24.2 4411 + escalade: 3.2.0 4412 + picocolors: 1.1.1 4413 + 4414 + util-deprecate@1.0.2: {} 4415 + 4416 + vfile-location@5.0.3: 4417 + dependencies: 4418 + '@types/unist': 3.0.3 4419 + vfile: 6.0.3 4420 + 4421 + vfile-message@4.0.2: 4422 + dependencies: 4423 + '@types/unist': 3.0.3 4424 + unist-util-stringify-position: 4.0.0 4425 + 4426 + vfile@6.0.3: 4427 + dependencies: 4428 + '@types/unist': 3.0.3 4429 + vfile-message: 4.0.2 4430 + 4431 + vite@5.4.10: 4432 + dependencies: 4433 + esbuild: 0.21.5 4434 + postcss: 8.4.47 4435 + rollup: 4.24.3 4436 + optionalDependencies: 4437 + fsevents: 2.3.3 4438 + 4439 + vitefu@1.0.3(vite@5.4.10): 4440 + optionalDependencies: 4441 + vite: 5.4.10 4442 + 4443 + web-namespaces@2.0.1: {} 4444 + 4445 + which-pm-runs@1.1.0: {} 4446 + 4447 + which-pm@3.0.0: 4448 + dependencies: 4449 + load-yaml-file: 0.2.0 4450 + 4451 + widest-line@5.0.0: 4452 + dependencies: 4453 + string-width: 7.2.0 4454 + 4455 + wrap-ansi@9.0.0: 4456 + dependencies: 4457 + ansi-styles: 6.2.1 4458 + string-width: 7.2.0 4459 + strip-ansi: 7.1.0 4460 + 4461 + xxhash-wasm@1.0.2: {} 4462 + 4463 + yallist@3.1.1: {} 4464 + 4465 + yargs-parser@21.1.1: {} 4466 + 4467 + yocto-queue@1.1.1: {} 4468 + 4469 + zod-to-json-schema@3.23.5(zod@3.23.8): 4470 + dependencies: 4471 + zod: 3.23.8 4472 + 4473 + zod-to-ts@1.2.0(typescript@5.6.3)(zod@3.23.8): 4474 + dependencies: 4475 + typescript: 5.6.3 4476 + zod: 3.23.8 4477 + 4478 + zod@3.23.8: {} 4479 + 4480 + zwitch@2.0.4: {}
+3
pnpm-workspace.yaml
··· 1 + packages: 2 + - 'docs/' 3 + - 'packages/*'