Live video on the AT Protocol

add basic docs

Natalie B d10798e5 47b2b652

+5433 -36
+21
js/docs/.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
+4
js/docs/.vscode/extensions.json
··· 1 + { 2 + "recommendations": ["astro-build.astro-vscode"], 3 + "unwantedRecommendations": [] 4 + }
+11
js/docs/.vscode/launch.json
··· 1 + { 2 + "version": "0.2.0", 3 + "configurations": [ 4 + { 5 + "command": "./node_modules/.bin/astro dev", 6 + "name": "Development server", 7 + "request": "launch", 8 + "type": "node-terminal" 9 + } 10 + ] 11 + }
+59
js/docs/README.md
··· 1 + # Starlight Starter Kit: Basics 2 + 3 + [![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) 4 + 5 + ``` 6 + pnpm create astro@latest -- --template starlight 7 + ``` 8 + 9 + [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) 10 + [![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/basics) 11 + [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/withastro/starlight&create_from_path=examples/basics) 12 + [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fbasics&project-name=my-starlight-docs&repository-name=my-starlight-docs) 13 + 14 + > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 15 + 16 + ## 🚀 Project Structure 17 + 18 + Inside of your Astro + Starlight project, you'll see the following folders and 19 + files: 20 + 21 + ``` 22 + . 23 + ├── public/ 24 + ├── src/ 25 + │ ├── assets/ 26 + │ ├── content/ 27 + │ │ ├── docs/ 28 + │ └── content.config.ts 29 + ├── astro.config.mjs 30 + ├── package.json 31 + └── tsconfig.json 32 + ``` 33 + 34 + Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. 35 + Each file is exposed as a route based on its file name. 36 + 37 + Images can be added to `src/assets/` and embedded in Markdown with a relative 38 + link. 39 + 40 + Static assets, like favicons, can be placed in the `public/` directory. 41 + 42 + ## 🧞 Commands 43 + 44 + All commands are run from the root of the project, from a terminal: 45 + 46 + | Command | Action | 47 + | :--------------------- | :----------------------------------------------- | 48 + | `pnpm install` | Installs dependencies | 49 + | `pnpm dev` | Starts local dev server at `localhost:4321` | 50 + | `pnpm build` | Build your production site to `./dist/` | 51 + | `pnpm preview` | Preview your build locally, before deploying | 52 + | `pnpm astro ...` | Run CLI commands like `astro add`, `astro check` | 53 + | `pnpm astro -- --help` | Get help using the Astro CLI | 54 + 55 + ## 👀 Want to learn more? 56 + 57 + Check out [Starlight’s docs](https://starlight.astro.build/), read 58 + [the Astro documentation](https://docs.astro.build), or jump into the 59 + [Astro Discord server](https://astro.build/chat).
+46
js/docs/astro.config.mjs
··· 1 + // @ts-check 2 + import { defineConfig } from "astro/config"; 3 + import starlight from "@astrojs/starlight"; 4 + 5 + // https://astro.build/config 6 + export default defineConfig({ 7 + base: "/docs", 8 + integrations: [ 9 + starlight({ 10 + title: "Streamplace Docs", 11 + customCss: [ 12 + "@fontsource/atkinson-hyperlegible-next/400.css", 13 + "@fontsource/atkinson-hyperlegible-next/600.css", 14 + "./src/styles/custom-font-face.css", 15 + ], 16 + social: [ 17 + { 18 + icon: "github", 19 + label: "GitHub", 20 + href: "https://github.com/streamplace/streamplace", 21 + }, 22 + ], 23 + logo: { 24 + src: "/src/assets/cube.png", 25 + alt: "Streamplace Logo", 26 + }, 27 + sidebar: [ 28 + { 29 + label: "Guides", 30 + items: [ 31 + // Each item here is one entry in the navigation menu. 32 + { label: "Example Guide", slug: "guides/example" }, 33 + ], 34 + }, 35 + { 36 + label: "Reference", 37 + autogenerate: { directory: "reference" }, 38 + }, 39 + { 40 + label: "Lexicon Reference", 41 + autogenerate: { directory: "lex-reference" }, 42 + }, 43 + ], 44 + }), 45 + ], 46 + });
+18
js/docs/package.json
··· 1 + { 2 + "name": "streamplace-docs", 3 + "type": "module", 4 + "version": "0.0.1", 5 + "scripts": { 6 + "dev": "astro dev", 7 + "start": "astro dev", 8 + "build": "astro build && mv dist ../app/dist/docs", 9 + "preview": "astro preview", 10 + "astro": "astro" 11 + }, 12 + "dependencies": { 13 + "@astrojs/starlight": "^0.34.1", 14 + "@fontsource/atkinson-hyperlegible-next": "^5.2.2", 15 + "astro": "^5.6.1", 16 + "sharp": "^0.32.5" 17 + } 18 + }
+1
js/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>
js/docs/src/assets/cube.png

This is a binary file and will not be displayed.

js/docs/src/assets/houston.webp

This is a binary file and will not be displayed.

+7
js/docs/src/content.config.ts
··· 1 + import { defineCollection } from "astro:content"; 2 + import { docsLoader } from "@astrojs/starlight/loaders"; 3 + import { docsSchema } from "@astrojs/starlight/schema"; 4 + 5 + export const collections = { 6 + docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), 7 + };
+13
js/docs/src/content/docs/guides/example.md
··· 1 + --- 2 + title: Example Guide 3 + description: A guide in my new Starlight docs site. 4 + --- 5 + 6 + Guides lead a user through a specific task they want to accomplish, often with a 7 + sequence of steps. Writing a good guide requires thinking about what your users 8 + are trying to do. 9 + 10 + ## Further reading 11 + 12 + - Read [about how-to guides](https://diataxis.fr/how-to-guides/) in the Diátaxis 13 + framework
+32
js/docs/src/content/docs/guides/streamplace-dev-setup.md
··· 1 + --- 2 + title: Getting Started with Streamplace Development 3 + description: Learn how to set up your development environment for Streamplace. 4 + --- 5 + 6 + So, you've decided to contribute to Streamplace development. Here's how you can 7 + get started: 8 + 9 + ## Prerequisites 10 + 11 + - [Node.js](https://nodejs.org/) 12 + - [Yarn](https://yarnpkg.com/) 13 + - A way to install it is with `pnpm/npm install -g yarn`. No corepack in this 14 + repo _just_ yet. 15 + - Go (version 1.23) 16 + ([We're blocked on going to Go 1.24](https://github.com/NordSecurity/uniffi-bindgen-go/issues/66).) 17 + - If you use `mise`, you can install latest Go 1.23 with 18 + `mise install go@prefix:1.23` 19 + - Meson 20 + - Ninja 21 + 22 + ### For development only 23 + 24 + - pkg-config 25 + 26 + ## Get Started 27 + 28 + 1. Install prereqs 29 + 2. Download JS packages with `yarn` 30 + 3. `make dev-setup` 31 + 4. `make dev` 32 + 5. launch via `./build-<platform>-<arch>/streamplace`
+38
js/docs/src/content/docs/index.mdx
··· 1 + --- 2 + title: Welcome to Streamplace! 3 + description: Begin your development journey with the Streamplace documentation. 4 + template: splash 5 + hero: 6 + tagline: Solve live video for your project with Streamplace. 7 + image: 8 + file: ../../assets/cube.png 9 + alt: Streamplace logo. A pink 3d box viewed from a top corner. 10 + actions: 11 + - text: Get Started 12 + link: /guides/getting-started/ 13 + icon: right-arrow 14 + - text: Visit Streamplace 15 + link: https://stream.place 16 + icon: external 17 + variant: minimal 18 + --- 19 + 20 + import { Card, CardGrid } from "@astrojs/starlight/components"; 21 + 22 + ## Next Steps 23 + 24 + <CardGrid stagger> 25 + <Card title="Update Content" icon="pencil"> 26 + Modify `src/content/docs/index.mdx` to reflect your changes. 27 + </Card> 28 + <Card title="Add New Pages" icon="add-document"> 29 + Introduce new Markdown or MDX files in `src/content/docs` to expand your 30 + documentation. 31 + </Card> 32 + <Card title="Configure Your Site" icon="setting"> 33 + Adjust your `sidebar` and other configurations in `astro.config.mjs`. 34 + </Card> 35 + <Card title="Read the Docs" icon="open-book"> 36 + Dive deeper into [stream.place Documentation](https://stream.place/docs). 37 + </Card> 38 + </CardGrid>
+67
js/docs/src/content/docs/lex-reference/place-stream-chat-defs.md
··· 1 + --- 2 + title: place.stream.chat.defs 3 + description: Reference for the place.stream.chat.defs lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="messageview"></a> 11 + 12 + ### `messageView` 13 + 14 + **Type:** `object` 15 + 16 + **Properties:** 17 + 18 + | Name | Type | Req'd | Description | Constraints | 19 + | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | ----- | ----------- | ------------------ | 20 + | `uri` | `string` | ✅ | | Format: `at-uri` | 21 + | `cid` | `string` | ✅ | | Format: `cid` | 22 + | `author` | [`app.bsky.actor.defs#profileViewBasic`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/actor/defs.json#profileViewBasic) | ✅ | | | 23 + | `record` | `unknown` | ✅ | | | 24 + | `indexedAt` | `string` | ✅ | | Format: `datetime` | 25 + | `chatProfile` | [`place.stream.chat.profile`](/lex-reference/place-stream-chat-profile) | ❌ | | | 26 + 27 + --- 28 + 29 + ## Lexicon Source 30 + 31 + ```json 32 + { 33 + "lexicon": 1, 34 + "id": "place.stream.chat.defs", 35 + "defs": { 36 + "messageView": { 37 + "type": "object", 38 + "required": ["uri", "cid", "author", "record", "indexedAt"], 39 + "properties": { 40 + "uri": { 41 + "type": "string", 42 + "format": "at-uri" 43 + }, 44 + "cid": { 45 + "type": "string", 46 + "format": "cid" 47 + }, 48 + "author": { 49 + "type": "ref", 50 + "ref": "app.bsky.actor.defs#profileViewBasic" 51 + }, 52 + "record": { 53 + "type": "unknown" 54 + }, 55 + "indexedAt": { 56 + "type": "string", 57 + "format": "datetime" 58 + }, 59 + "chatProfile": { 60 + "type": "ref", 61 + "ref": "place.stream.chat.profile" 62 + } 63 + } 64 + } 65 + } 66 + } 67 + ```
+75
js/docs/src/content/docs/lex-reference/place-stream-chat-message.md
··· 1 + --- 2 + title: place.stream.chat.message 3 + description: Reference for the place.stream.chat.message lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="main"></a> 11 + 12 + ### `main` 13 + 14 + **Type:** `record` 15 + 16 + Record containing a Streamplace chat message. 17 + 18 + **Record Key:** `tid` 19 + 20 + **Record Properties:** 21 + 22 + | Name | Type | Req'd | Description | Constraints | 23 + | ----------- | ------------------------------------------------------------------------------------ | ----- | ------------------------------------------------------------------------- | --------------------------------------- | 24 + | `text` | `string` | ✅ | The primary message content. May be an empty string, if there are embeds. | Max Length: 3000<br/>Max Graphemes: 300 | 25 + | `createdAt` | `string` | ✅ | Client-declared timestamp when this message was originally created. | Format: `datetime` | 26 + | `facets` | Array of [`place.stream.richtext.facet`](/lex-reference/place-stream-richtext-facet) | ❌ | Annotations of text (mentions, URLs, etc) | | 27 + | `streamer` | `string` | ✅ | The DID of the streamer whose chat this is. | Format: `did` | 28 + 29 + --- 30 + 31 + ## Lexicon Source 32 + 33 + ```json 34 + { 35 + "lexicon": 1, 36 + "id": "place.stream.chat.message", 37 + "defs": { 38 + "main": { 39 + "type": "record", 40 + "description": "Record containing a Streamplace chat message.", 41 + "key": "tid", 42 + "record": { 43 + "type": "object", 44 + "required": ["text", "createdAt", "streamer"], 45 + "properties": { 46 + "text": { 47 + "type": "string", 48 + "maxLength": 3000, 49 + "maxGraphemes": 300, 50 + "description": "The primary message content. May be an empty string, if there are embeds." 51 + }, 52 + "createdAt": { 53 + "type": "string", 54 + "format": "datetime", 55 + "description": "Client-declared timestamp when this message was originally created." 56 + }, 57 + "facets": { 58 + "type": "array", 59 + "description": "Annotations of text (mentions, URLs, etc)", 60 + "items": { 61 + "type": "ref", 62 + "ref": "place.stream.richtext.facet" 63 + } 64 + }, 65 + "streamer": { 66 + "type": "string", 67 + "format": "did", 68 + "description": "The DID of the streamer whose chat this is." 69 + } 70 + } 71 + } 72 + } 73 + } 74 + } 75 + ```
+92
js/docs/src/content/docs/lex-reference/place-stream-chat-profile.md
··· 1 + --- 2 + title: place.stream.chat.profile 3 + description: Reference for the place.stream.chat.profile lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="main"></a> 11 + 12 + ### `main` 13 + 14 + **Type:** `record` 15 + 16 + Record containing customizations for a user's chat profile. 17 + 18 + **Record Key:** `literal:self` 19 + 20 + **Record Properties:** 21 + 22 + | Name | Type | Req'd | Description | Constraints | 23 + | ------- | ----------------------------------------------------------------------------------- | ----- | ----------- | ----------- | 24 + | `color` | [`place.stream.chat.profile#color`](/lex-reference/place-stream-chat-profile#color) | ❌ | | | 25 + 26 + --- 27 + 28 + <a name="color"></a> 29 + 30 + ### `color` 31 + 32 + **Type:** `object` 33 + 34 + Customizations for the color of a user's name in chat 35 + 36 + **Properties:** 37 + 38 + | Name | Type | Req'd | Description | Constraints | 39 + | ------- | --------- | ----- | ----------- | ------------------- | 40 + | `red` | `integer` | ✅ | | Min: 0<br/>Max: 255 | 41 + | `green` | `integer` | ✅ | | Min: 0<br/>Max: 255 | 42 + | `blue` | `integer` | ✅ | | Min: 0<br/>Max: 255 | 43 + 44 + --- 45 + 46 + ## Lexicon Source 47 + 48 + ```json 49 + { 50 + "lexicon": 1, 51 + "id": "place.stream.chat.profile", 52 + "defs": { 53 + "main": { 54 + "type": "record", 55 + "description": "Record containing customizations for a user's chat profile.", 56 + "key": "literal:self", 57 + "record": { 58 + "type": "object", 59 + "required": [], 60 + "properties": { 61 + "color": { 62 + "type": "ref", 63 + "ref": "place.stream.chat.profile#color" 64 + } 65 + } 66 + } 67 + }, 68 + "color": { 69 + "type": "object", 70 + "description": "Customizations for the color of a user's name in chat", 71 + "required": ["red", "green", "blue"], 72 + "properties": { 73 + "red": { 74 + "type": "integer", 75 + "minimum": 0, 76 + "maximum": 255 77 + }, 78 + "green": { 79 + "type": "integer", 80 + "minimum": 0, 81 + "maximum": 255 82 + }, 83 + "blue": { 84 + "type": "integer", 85 + "minimum": 0, 86 + "maximum": 255 87 + } 88 + } 89 + } 90 + } 91 + } 92 + ```
+113
js/docs/src/content/docs/lex-reference/place-stream-defs.md
··· 1 + --- 2 + title: place.stream.defs 3 + description: Reference for the place.stream.defs lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="blockview"></a> 11 + 12 + ### `blockView` 13 + 14 + **Type:** `object` 15 + 16 + **Properties:** 17 + 18 + | Name | Type | Req'd | Description | Constraints | 19 + | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | ----- | ----------- | ------------------ | 20 + | `uri` | `string` | ✅ | | Format: `at-uri` | 21 + | `cid` | `string` | ✅ | | Format: `cid` | 22 + | `blocker` | [`app.bsky.actor.defs#profileViewBasic`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/actor/defs.json#profileViewBasic) | ✅ | | | 23 + | `record` | [`app.bsky.graph.block`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/graph/block.json#undefined) | ✅ | | | 24 + | `indexedAt` | `string` | ✅ | | Format: `datetime` | 25 + 26 + --- 27 + 28 + <a name="renditions"></a> 29 + 30 + ### `renditions` 31 + 32 + **Type:** `object` 33 + 34 + **Properties:** 35 + 36 + | Name | Type | Req'd | Description | Constraints | 37 + | ------------ | ----------------------------------- | ----- | ----------- | ----------- | 38 + | `renditions` | Array of [`#rendition`](#rendition) | ✅ | | | 39 + 40 + --- 41 + 42 + <a name="rendition"></a> 43 + 44 + ### `rendition` 45 + 46 + **Type:** `object` 47 + 48 + **Properties:** 49 + 50 + | Name | Type | Req'd | Description | Constraints | 51 + | ------ | -------- | ----- | ----------- | ----------- | 52 + | `name` | `string` | ✅ | | | 53 + 54 + --- 55 + 56 + ## Lexicon Source 57 + 58 + ```json 59 + { 60 + "lexicon": 1, 61 + "id": "place.stream.defs", 62 + "defs": { 63 + "blockView": { 64 + "type": "object", 65 + "required": ["uri", "cid", "blocker", "record", "indexedAt"], 66 + "properties": { 67 + "uri": { 68 + "type": "string", 69 + "format": "at-uri" 70 + }, 71 + "cid": { 72 + "type": "string", 73 + "format": "cid" 74 + }, 75 + "blocker": { 76 + "type": "ref", 77 + "ref": "app.bsky.actor.defs#profileViewBasic" 78 + }, 79 + "record": { 80 + "type": "ref", 81 + "ref": "app.bsky.graph.block" 82 + }, 83 + "indexedAt": { 84 + "type": "string", 85 + "format": "datetime" 86 + } 87 + } 88 + }, 89 + "renditions": { 90 + "type": "object", 91 + "required": ["renditions"], 92 + "properties": { 93 + "renditions": { 94 + "type": "array", 95 + "items": { 96 + "type": "ref", 97 + "ref": "#rendition" 98 + } 99 + } 100 + } 101 + }, 102 + "rendition": { 103 + "type": "object", 104 + "required": ["name"], 105 + "properties": { 106 + "name": { 107 + "type": "string" 108 + } 109 + } 110 + } 111 + } 112 + } 113 + ```
+60
js/docs/src/content/docs/lex-reference/place-stream-key.md
··· 1 + --- 2 + title: place.stream.key 3 + description: Reference for the place.stream.key lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="main"></a> 11 + 12 + ### `main` 13 + 14 + **Type:** `record` 15 + 16 + Record linking an atproto identity with a stream signing key 17 + 18 + **Record Key:** `tid` 19 + 20 + **Record Properties:** 21 + 22 + | Name | Type | Req'd | Description | Constraints | 23 + | ------------ | -------- | ----- | ---------------------------------------------------- | --------------------------------- | 24 + | `signingKey` | `string` | ✅ | The did:key signing key for the stream. | Min Length: 57<br/>Max Length: 57 | 25 + | `createdAt` | `string` | ✅ | Client-declared timestamp when this key was created. | Format: `datetime` | 26 + 27 + --- 28 + 29 + ## Lexicon Source 30 + 31 + ```json 32 + { 33 + "lexicon": 1, 34 + "id": "place.stream.key", 35 + "defs": { 36 + "main": { 37 + "type": "record", 38 + "description": "Record linking an atproto identity with a stream signing key", 39 + "key": "tid", 40 + "record": { 41 + "type": "object", 42 + "required": ["signingKey", "createdAt"], 43 + "properties": { 44 + "signingKey": { 45 + "type": "string", 46 + "maxLength": 57, 47 + "minLength": 57, 48 + "description": "The did:key signing key for the stream." 49 + }, 50 + "createdAt": { 51 + "type": "string", 52 + "format": "datetime", 53 + "description": "Client-declared timestamp when this key was created." 54 + } 55 + } 56 + } 57 + } 58 + } 59 + } 60 + ```
+169
js/docs/src/content/docs/lex-reference/place-stream-livestream.md
··· 1 + --- 2 + title: place.stream.livestream 3 + description: Reference for the place.stream.livestream lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="main"></a> 11 + 12 + ### `main` 13 + 14 + **Type:** `record` 15 + 16 + Record announcing a livestream is happening 17 + 18 + **Record Key:** `tid` 19 + 20 + **Record Properties:** 21 + 22 + | Name | Type | Req'd | Description | Constraints | 23 + | ----------- | -------------------------------------------------------------------------------------------------------------------------------------- | ----- | -------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------- | 24 + | `title` | `string` | ✅ | The title of the livestream, as it will be announced to followers. | Max Length: 1400<br/>Max Graphemes: 140 | 25 + | `url` | `string` | ❌ | The URL where this stream can be found. This is primarily a hint for other Streamplace nodes to locate and replicate the stream. | Format: `uri` | 26 + | `createdAt` | `string` | ✅ | Client-declared timestamp when this livestream started. | Format: `datetime` | 27 + | `post` | [`com.atproto.repo.strongRef`](https://github.com/bluesky-social/atproto/tree/main/lexicons/com/atproto/repo/strongref.json#undefined) | ❌ | The post that announced this livestream. Used for chat replies. | | 28 + 29 + --- 30 + 31 + <a name="livestreamview"></a> 32 + 33 + ### `livestreamView` 34 + 35 + **Type:** `object` 36 + 37 + **Properties:** 38 + 39 + | Name | Type | Req'd | Description | Constraints | 40 + | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | ----- | ----------- | ------------------ | 41 + | `uri` | `string` | ✅ | | Format: `at-uri` | 42 + | `cid` | `string` | ✅ | | Format: `cid` | 43 + | `author` | [`app.bsky.actor.defs#profileViewBasic`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/actor/defs.json#profileViewBasic) | ✅ | | | 44 + | `record` | `unknown` | ✅ | | | 45 + | `indexedAt` | `string` | ✅ | | Format: `datetime` | 46 + 47 + --- 48 + 49 + <a name="viewercount"></a> 50 + 51 + ### `viewerCount` 52 + 53 + **Type:** `object` 54 + 55 + **Properties:** 56 + 57 + | Name | Type | Req'd | Description | Constraints | 58 + | ------- | --------- | ----- | ----------- | ----------- | 59 + | `count` | `integer` | ✅ | | | 60 + 61 + --- 62 + 63 + <a name="streamplaceanything"></a> 64 + 65 + ### `streamplaceAnything` 66 + 67 + **Type:** `object` 68 + 69 + **Properties:** 70 + 71 + | Name | Type | Req'd | Description | Constraints | 72 + | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- | ----------- | ----------- | 73 + | `livestream` | Union of:<br/>&nbsp;&nbsp;[`#livestreamView`](#livestreamview)<br/>&nbsp;&nbsp;[`#viewerCount`](#viewercount)<br/>&nbsp;&nbsp;[`place.stream.defs#blockView`](/lex-reference/place-stream-defs#blockview)<br/>&nbsp;&nbsp;[`place.stream.defs#renditions`](/lex-reference/place-stream-defs#renditions)<br/>&nbsp;&nbsp;[`place.stream.defs#rendition`](/lex-reference/place-stream-defs#rendition)<br/>&nbsp;&nbsp;[`place.stream.chat.defs#messageView`](/lex-reference/place-stream-chat-defs#messageview) | ✅ | | | 74 + 75 + --- 76 + 77 + ## Lexicon Source 78 + 79 + ```json 80 + { 81 + "lexicon": 1, 82 + "id": "place.stream.livestream", 83 + "defs": { 84 + "main": { 85 + "type": "record", 86 + "description": "Record announcing a livestream is happening", 87 + "key": "tid", 88 + "record": { 89 + "type": "object", 90 + "required": ["title", "createdAt"], 91 + "properties": { 92 + "title": { 93 + "type": "string", 94 + "maxLength": 1400, 95 + "maxGraphemes": 140, 96 + "description": "The title of the livestream, as it will be announced to followers." 97 + }, 98 + "url": { 99 + "type": "string", 100 + "format": "uri", 101 + "description": "The URL where this stream can be found. This is primarily a hint for other Streamplace nodes to locate and replicate the stream." 102 + }, 103 + "createdAt": { 104 + "type": "string", 105 + "format": "datetime", 106 + "description": "Client-declared timestamp when this livestream started." 107 + }, 108 + "post": { 109 + "type": "ref", 110 + "ref": "com.atproto.repo.strongRef", 111 + "description": "The post that announced this livestream. Used for chat replies." 112 + } 113 + } 114 + } 115 + }, 116 + "livestreamView": { 117 + "type": "object", 118 + "required": ["uri", "cid", "author", "record", "indexedAt"], 119 + "properties": { 120 + "uri": { 121 + "type": "string", 122 + "format": "at-uri" 123 + }, 124 + "cid": { 125 + "type": "string", 126 + "format": "cid" 127 + }, 128 + "author": { 129 + "type": "ref", 130 + "ref": "app.bsky.actor.defs#profileViewBasic" 131 + }, 132 + "record": { 133 + "type": "unknown" 134 + }, 135 + "indexedAt": { 136 + "type": "string", 137 + "format": "datetime" 138 + } 139 + } 140 + }, 141 + "viewerCount": { 142 + "type": "object", 143 + "required": ["count"], 144 + "properties": { 145 + "count": { 146 + "type": "integer" 147 + } 148 + } 149 + }, 150 + "streamplaceAnything": { 151 + "type": "object", 152 + "required": ["livestream"], 153 + "properties": { 154 + "livestream": { 155 + "type": "union", 156 + "refs": [ 157 + "#livestreamView", 158 + "#viewerCount", 159 + "place.stream.defs#blockView", 160 + "place.stream.defs#renditions", 161 + "place.stream.defs#rendition", 162 + "place.stream.chat.defs#messageView" 163 + ] 164 + } 165 + } 166 + } 167 + } 168 + } 169 + ```
+57
js/docs/src/content/docs/lex-reference/place-stream-richtext-facet.md
··· 1 + --- 2 + title: place.stream.richtext.facet 3 + description: Reference for the place.stream.richtext.facet lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="main"></a> 11 + 12 + ### `main` 13 + 14 + **Type:** `object` 15 + 16 + Annotation of a sub-string within rich text. 17 + 18 + **Properties:** 19 + 20 + | Name | Type | Req'd | Description | Constraints | 21 + | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- | ----------- | ----------- | 22 + | `index` | [`app.bsky.richtext.facet#byteSlice`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/richtext/facet.json#byteSlice) | ✅ | | | 23 + | `features` | Array of Union of:<br/>&nbsp;&nbsp;[`app.bsky.richtext.facet#mention`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/richtext/facet.json#mention)<br/>&nbsp;&nbsp;[`app.bsky.richtext.facet#link`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/richtext/facet.json#link) | ✅ | | | 24 + 25 + --- 26 + 27 + ## Lexicon Source 28 + 29 + ```json 30 + { 31 + "lexicon": 1, 32 + "id": "place.stream.richtext.facet", 33 + "defs": { 34 + "main": { 35 + "type": "object", 36 + "description": "Annotation of a sub-string within rich text.", 37 + "required": ["index", "features"], 38 + "properties": { 39 + "index": { 40 + "type": "ref", 41 + "ref": "app.bsky.richtext.facet#byteSlice" 42 + }, 43 + "features": { 44 + "type": "array", 45 + "items": { 46 + "type": "union", 47 + "refs": [ 48 + "app.bsky.richtext.facet#mention", 49 + "app.bsky.richtext.facet#link" 50 + ] 51 + } 52 + } 53 + } 54 + } 55 + } 56 + } 57 + ```
+185
js/docs/src/content/docs/lex-reference/place-stream-segment.md
··· 1 + --- 2 + title: place.stream.segment 3 + description: Reference for the place.stream.segment lexicon 4 + --- 5 + 6 + **Lexicon Version:** 1 7 + 8 + ## Definitions 9 + 10 + <a name="main"></a> 11 + 12 + ### `main` 13 + 14 + **Type:** `record` 15 + 16 + Media file representing a segment of a livestream 17 + 18 + **Record Key:** `tid` 19 + 20 + **Record Properties:** 21 + 22 + | Name | Type | Req'd | Description | Constraints | 23 + | ------------ | --------------------------- | ----- | ------------------------------------------------ | ------------------ | 24 + | `id` | `string` | ✅ | Unique identifier for the segment | | 25 + | `signingKey` | `string` | ✅ | The DID of the signing key used for this segment | | 26 + | `startTime` | `string` | ✅ | When this segment started | Format: `datetime` | 27 + | `duration` | `integer` | ❌ | The duration of the segment in nanoseconds | | 28 + | `creator` | `string` | ✅ | | Format: `did` | 29 + | `video` | Array of [`#video`](#video) | ❌ | | | 30 + | `audio` | Array of [`#audio`](#audio) | ❌ | | | 31 + 32 + --- 33 + 34 + <a name="audio"></a> 35 + 36 + ### `audio` 37 + 38 + **Type:** `object` 39 + 40 + **Properties:** 41 + 42 + | Name | Type | Req'd | Description | Constraints | 43 + | ---------- | --------- | ----- | ----------- | ------------ | 44 + | `codec` | `string` | ✅ | | Enum: `opus` | 45 + | `rate` | `integer` | ✅ | | | 46 + | `channels` | `integer` | ✅ | | | 47 + 48 + --- 49 + 50 + <a name="video"></a> 51 + 52 + ### `video` 53 + 54 + **Type:** `object` 55 + 56 + **Properties:** 57 + 58 + | Name | Type | Req'd | Description | Constraints | 59 + | ----------- | -------------------------- | ----- | ----------- | ------------ | 60 + | `codec` | `string` | ✅ | | Enum: `h264` | 61 + | `width` | `integer` | ✅ | | | 62 + | `height` | `integer` | ✅ | | | 63 + | `framerate` | [`#framerate`](#framerate) | ❌ | | | 64 + 65 + --- 66 + 67 + <a name="framerate"></a> 68 + 69 + ### `framerate` 70 + 71 + **Type:** `object` 72 + 73 + **Properties:** 74 + 75 + | Name | Type | Req'd | Description | Constraints | 76 + | ----- | --------- | ----- | ----------- | ----------- | 77 + | `num` | `integer` | ✅ | | | 78 + | `den` | `integer` | ✅ | | | 79 + 80 + --- 81 + 82 + ## Lexicon Source 83 + 84 + ```json 85 + { 86 + "lexicon": 1, 87 + "id": "place.stream.segment", 88 + "defs": { 89 + "main": { 90 + "type": "record", 91 + "description": "Media file representing a segment of a livestream", 92 + "key": "tid", 93 + "record": { 94 + "type": "object", 95 + "required": ["id", "signingKey", "startTime", "creator"], 96 + "properties": { 97 + "id": { 98 + "type": "string", 99 + "description": "Unique identifier for the segment" 100 + }, 101 + "signingKey": { 102 + "type": "string", 103 + "description": "The DID of the signing key used for this segment" 104 + }, 105 + "startTime": { 106 + "type": "string", 107 + "format": "datetime", 108 + "description": "When this segment started" 109 + }, 110 + "duration": { 111 + "type": "integer", 112 + "description": "The duration of the segment in nanoseconds" 113 + }, 114 + "creator": { 115 + "type": "string", 116 + "format": "did" 117 + }, 118 + "video": { 119 + "type": "array", 120 + "items": { 121 + "type": "ref", 122 + "ref": "#video" 123 + } 124 + }, 125 + "audio": { 126 + "type": "array", 127 + "items": { 128 + "type": "ref", 129 + "ref": "#audio" 130 + } 131 + } 132 + } 133 + } 134 + }, 135 + "audio": { 136 + "type": "object", 137 + "required": ["codec", "rate", "channels"], 138 + "properties": { 139 + "codec": { 140 + "type": "string", 141 + "enum": ["opus"] 142 + }, 143 + "rate": { 144 + "type": "integer" 145 + }, 146 + "channels": { 147 + "type": "integer" 148 + } 149 + } 150 + }, 151 + "video": { 152 + "type": "object", 153 + "required": ["codec", "width", "height"], 154 + "properties": { 155 + "codec": { 156 + "type": "string", 157 + "enum": ["h264"] 158 + }, 159 + "width": { 160 + "type": "integer" 161 + }, 162 + "height": { 163 + "type": "integer" 164 + }, 165 + "framerate": { 166 + "type": "ref", 167 + "ref": "#framerate" 168 + } 169 + } 170 + }, 171 + "framerate": { 172 + "type": "object", 173 + "required": ["num", "den"], 174 + "properties": { 175 + "num": { 176 + "type": "integer" 177 + }, 178 + "den": { 179 + "type": "integer" 180 + } 181 + } 182 + } 183 + } 184 + } 185 + ```
+13
js/docs/src/content/docs/reference/example.md
··· 1 + --- 2 + title: Example Reference 3 + description: A reference page in my new Starlight docs site. 4 + --- 5 + 6 + Reference pages are ideal for outlining how things work in terse and clear 7 + terms. Less concerned with telling a story or addressing a specific use case, 8 + they should give a comprehensive outline of what you're documenting. 9 + 10 + ## Further reading 11 + 12 + - Read [about reference](https://diataxis.fr/reference/) in the Diátaxis 13 + framework
+3
js/docs/src/styles/custom-font-face.css
··· 1 + :root { 2 + --sl-font: "Atkinson Hyperlegible Next", serif; 3 + }
+5
js/docs/tsconfig.json
··· 1 + { 2 + "extends": "astro/tsconfigs/strict", 3 + "include": [".astro/types.d.ts", "**/*"], 4 + "exclude": ["dist"] 5 + }
+4344 -36
yarn.lock
··· 77 77 languageName: node 78 78 linkType: hard 79 79 80 + "@astrojs/compiler@npm:^2.11.0": 81 + version: 2.12.0 82 + resolution: "@astrojs/compiler@npm:2.12.0" 83 + checksum: 10/60890e459922c95a8a20264e8acff9da590b4a80edf27f517d7148383176e3bb32f56a260e3b954cccedb3aa914a8eebad84acad981e5304fd0a224990aabf58 84 + languageName: node 85 + linkType: hard 86 + 87 + "@astrojs/internal-helpers@npm:0.6.1": 88 + version: 0.6.1 89 + resolution: "@astrojs/internal-helpers@npm:0.6.1" 90 + checksum: 10/e18a0e52e9d35659fb6b4e641a52cbffba26405a322b1232ea73af74e69d12cf59722ec53c6fcdcd454f543628c3ff229ea166d49d5e7c88d3947182d86090e0 91 + languageName: node 92 + linkType: hard 93 + 94 + "@astrojs/markdown-remark@npm:6.3.1, @astrojs/markdown-remark@npm:^6.3.1": 95 + version: 6.3.1 96 + resolution: "@astrojs/markdown-remark@npm:6.3.1" 97 + dependencies: 98 + "@astrojs/internal-helpers": "npm:0.6.1" 99 + "@astrojs/prism": "npm:3.2.0" 100 + github-slugger: "npm:^2.0.0" 101 + hast-util-from-html: "npm:^2.0.3" 102 + hast-util-to-text: "npm:^4.0.2" 103 + import-meta-resolve: "npm:^4.1.0" 104 + js-yaml: "npm:^4.1.0" 105 + mdast-util-definitions: "npm:^6.0.0" 106 + rehype-raw: "npm:^7.0.0" 107 + rehype-stringify: "npm:^10.0.1" 108 + remark-gfm: "npm:^4.0.1" 109 + remark-parse: "npm:^11.0.0" 110 + remark-rehype: "npm:^11.1.1" 111 + remark-smartypants: "npm:^3.0.2" 112 + shiki: "npm:^3.0.0" 113 + smol-toml: "npm:^1.3.1" 114 + unified: "npm:^11.0.5" 115 + unist-util-remove-position: "npm:^5.0.0" 116 + unist-util-visit: "npm:^5.0.0" 117 + unist-util-visit-parents: "npm:^6.0.1" 118 + vfile: "npm:^6.0.3" 119 + checksum: 10/4fea1cd9f23fa97081c41a2fcb69a07ed1abf4b5ed2ddc1992d70edc69ade5e1b91203b4081534688a99353cb85ca86543ee34f10cdf001079ccb6de9dc9512a 120 + languageName: node 121 + linkType: hard 122 + 123 + "@astrojs/mdx@npm:^4.2.3": 124 + version: 4.2.6 125 + resolution: "@astrojs/mdx@npm:4.2.6" 126 + dependencies: 127 + "@astrojs/markdown-remark": "npm:6.3.1" 128 + "@mdx-js/mdx": "npm:^3.1.0" 129 + acorn: "npm:^8.14.1" 130 + es-module-lexer: "npm:^1.6.0" 131 + estree-util-visit: "npm:^2.0.0" 132 + hast-util-to-html: "npm:^9.0.5" 133 + kleur: "npm:^4.1.5" 134 + rehype-raw: "npm:^7.0.0" 135 + remark-gfm: "npm:^4.0.1" 136 + remark-smartypants: "npm:^3.0.2" 137 + source-map: "npm:^0.7.4" 138 + unist-util-visit: "npm:^5.0.0" 139 + vfile: "npm:^6.0.3" 140 + peerDependencies: 141 + astro: ^5.0.0 142 + checksum: 10/6604fd796dde4017763d88ca613a727cab09c1ac25b53dc3128de8e63db1b6619b7c2526c8e022a737990510693ef915e29e141c2e369342c21f060ab341335a 143 + languageName: node 144 + linkType: hard 145 + 146 + "@astrojs/prism@npm:3.2.0": 147 + version: 3.2.0 148 + resolution: "@astrojs/prism@npm:3.2.0" 149 + dependencies: 150 + prismjs: "npm:^1.29.0" 151 + checksum: 10/0a4ee8514c24bde65fc4d1eaab718014176a07834ced4911598405092d52d2af779e34ee0e3f45bb823d9e1e66e2639b67ec59275ab5ce78fc19d4f58338d3b7 152 + languageName: node 153 + linkType: hard 154 + 155 + "@astrojs/sitemap@npm:^3.3.0": 156 + version: 3.3.1 157 + resolution: "@astrojs/sitemap@npm:3.3.1" 158 + dependencies: 159 + sitemap: "npm:^8.0.0" 160 + stream-replace-string: "npm:^2.0.0" 161 + zod: "npm:^3.24.2" 162 + checksum: 10/92f621e34a0a559d2f20820f5f997cfcc576eed62be9d7081e83be0e4be129cff925f159b24d5b69c93a38dbcf6e378ea8ee424aaabc1b0556b666edb37430d3 163 + languageName: node 164 + linkType: hard 165 + 166 + "@astrojs/starlight@npm:^0.34.1": 167 + version: 0.34.2 168 + resolution: "@astrojs/starlight@npm:0.34.2" 169 + dependencies: 170 + "@astrojs/markdown-remark": "npm:^6.3.1" 171 + "@astrojs/mdx": "npm:^4.2.3" 172 + "@astrojs/sitemap": "npm:^3.3.0" 173 + "@pagefind/default-ui": "npm:^1.3.0" 174 + "@types/hast": "npm:^3.0.4" 175 + "@types/js-yaml": "npm:^4.0.9" 176 + "@types/mdast": "npm:^4.0.4" 177 + astro-expressive-code: "npm:^0.41.1" 178 + bcp-47: "npm:^2.1.0" 179 + hast-util-from-html: "npm:^2.0.1" 180 + hast-util-select: "npm:^6.0.2" 181 + hast-util-to-string: "npm:^3.0.0" 182 + hastscript: "npm:^9.0.0" 183 + i18next: "npm:^23.11.5" 184 + js-yaml: "npm:^4.1.0" 185 + klona: "npm:^2.0.6" 186 + mdast-util-directive: "npm:^3.0.0" 187 + mdast-util-to-markdown: "npm:^2.1.0" 188 + mdast-util-to-string: "npm:^4.0.0" 189 + pagefind: "npm:^1.3.0" 190 + rehype: "npm:^13.0.1" 191 + rehype-format: "npm:^5.0.0" 192 + remark-directive: "npm:^3.0.0" 193 + ultrahtml: "npm:^1.6.0" 194 + unified: "npm:^11.0.5" 195 + unist-util-visit: "npm:^5.0.0" 196 + vfile: "npm:^6.0.2" 197 + peerDependencies: 198 + astro: ^5.5.0 199 + checksum: 10/f892dbcf52c3380107a958b1725c2311117d1b8e8b1e449e9c206e2b58f20ed55826e0861dbbb298aed385eb7e6d3ab37c2ca731603a7350b7f185b9e5d7409e 200 + languageName: node 201 + linkType: hard 202 + 203 + "@astrojs/telemetry@npm:3.2.1": 204 + version: 3.2.1 205 + resolution: "@astrojs/telemetry@npm:3.2.1" 206 + dependencies: 207 + ci-info: "npm:^4.2.0" 208 + debug: "npm:^4.4.0" 209 + dlv: "npm:^1.1.3" 210 + dset: "npm:^3.1.4" 211 + is-docker: "npm:^3.0.0" 212 + is-wsl: "npm:^3.1.0" 213 + which-pm-runs: "npm:^1.1.0" 214 + checksum: 10/9f15a8b277cf665908d8db97db6174d6ad3d1e4e5ab7cb49c10c6da6c35c3542ebcba495cc3f0d52d8dcee6a55a6706cfa0d00a9b715a7174832df6655fea272 215 + languageName: node 216 + linkType: hard 217 + 80 218 "@atproto-labs/did-resolver@npm:0.1.11": 81 219 version: 0.1.11 82 220 resolution: "@atproto-labs/did-resolver@npm:0.1.11" ··· 2923 3061 languageName: node 2924 3062 linkType: hard 2925 3063 3064 + "@capsizecss/unpack@npm:^2.4.0": 3065 + version: 2.4.0 3066 + resolution: "@capsizecss/unpack@npm:2.4.0" 3067 + dependencies: 3068 + blob-to-buffer: "npm:^1.2.8" 3069 + cross-fetch: "npm:^3.0.4" 3070 + fontkit: "npm:^2.0.2" 3071 + checksum: 10/c06e222f435195525341153871bedd2b1ed3d1a15ef34ddc056953115ab5dd77ead459a9967bf267e75aed0d234d63f439f927b1985bef588f266ac796db1e20 3072 + languageName: node 3073 + linkType: hard 3074 + 2926 3075 "@coinbase/wallet-sdk@npm:4.1.0": 2927 3076 version: 4.1.0 2928 3077 resolution: "@coinbase/wallet-sdk@npm:4.1.0" ··· 2960 3109 dependencies: 2961 3110 "@jridgewell/trace-mapping": "npm:0.3.9" 2962 3111 checksum: 10/b6e38a1712fab242c86a241c229cf562195aad985d0564bd352ac404be583029e89e93028ffd2c251d2c407ecac5fb0cbdca94a2d5c10f29ac806ede0508b3ff 3112 + languageName: node 3113 + linkType: hard 3114 + 3115 + "@ctrl/tinycolor@npm:^4.0.4": 3116 + version: 4.1.0 3117 + resolution: "@ctrl/tinycolor@npm:4.1.0" 3118 + checksum: 10/e64569399139ef0abd2eb0ec9fb7267dfd7820f7ad7d4567a63e5fc35e5cfdcb8ecdb3bad65cb9244b47ba6c77bc51085826c00e981acf263a3221dc89343adc 2963 3119 languageName: node 2964 3120 linkType: hard 2965 3121 ··· 3548 3704 languageName: node 3549 3705 linkType: hard 3550 3706 3707 + "@emnapi/runtime@npm:^1.2.0": 3708 + version: 1.4.3 3709 + resolution: "@emnapi/runtime@npm:1.4.3" 3710 + dependencies: 3711 + tslib: "npm:^2.4.0" 3712 + checksum: 10/4f90852a1a5912982cc4e176b6420556971bcf6a85ee23e379e2455066d616219751367dcf43e6a6eaf41ea7e95ba9dc830665a52b5d979dfe074237d19578f8 3713 + languageName: node 3714 + linkType: hard 3715 + 3551 3716 "@emnapi/wasi-threads@npm:1.0.1": 3552 3717 version: 1.0.1 3553 3718 resolution: "@emnapi/wasi-threads@npm:1.0.1" ··· 3587 3752 languageName: node 3588 3753 linkType: hard 3589 3754 3755 + "@esbuild/aix-ppc64@npm:0.25.3": 3756 + version: 0.25.3 3757 + resolution: "@esbuild/aix-ppc64@npm:0.25.3" 3758 + conditions: os=aix & cpu=ppc64 3759 + languageName: node 3760 + linkType: hard 3761 + 3590 3762 "@esbuild/android-arm64@npm:0.24.2": 3591 3763 version: 0.24.2 3592 3764 resolution: "@esbuild/android-arm64@npm:0.24.2" ··· 3594 3766 languageName: node 3595 3767 linkType: hard 3596 3768 3769 + "@esbuild/android-arm64@npm:0.25.3": 3770 + version: 0.25.3 3771 + resolution: "@esbuild/android-arm64@npm:0.25.3" 3772 + conditions: os=android & cpu=arm64 3773 + languageName: node 3774 + linkType: hard 3775 + 3597 3776 "@esbuild/android-arm@npm:0.24.2": 3598 3777 version: 0.24.2 3599 3778 resolution: "@esbuild/android-arm@npm:0.24.2" ··· 3601 3780 languageName: node 3602 3781 linkType: hard 3603 3782 3783 + "@esbuild/android-arm@npm:0.25.3": 3784 + version: 0.25.3 3785 + resolution: "@esbuild/android-arm@npm:0.25.3" 3786 + conditions: os=android & cpu=arm 3787 + languageName: node 3788 + linkType: hard 3789 + 3604 3790 "@esbuild/android-x64@npm:0.24.2": 3605 3791 version: 0.24.2 3606 3792 resolution: "@esbuild/android-x64@npm:0.24.2" ··· 3608 3794 languageName: node 3609 3795 linkType: hard 3610 3796 3797 + "@esbuild/android-x64@npm:0.25.3": 3798 + version: 0.25.3 3799 + resolution: "@esbuild/android-x64@npm:0.25.3" 3800 + conditions: os=android & cpu=x64 3801 + languageName: node 3802 + linkType: hard 3803 + 3611 3804 "@esbuild/darwin-arm64@npm:0.24.2": 3612 3805 version: 0.24.2 3613 3806 resolution: "@esbuild/darwin-arm64@npm:0.24.2" ··· 3615 3808 languageName: node 3616 3809 linkType: hard 3617 3810 3811 + "@esbuild/darwin-arm64@npm:0.25.3": 3812 + version: 0.25.3 3813 + resolution: "@esbuild/darwin-arm64@npm:0.25.3" 3814 + conditions: os=darwin & cpu=arm64 3815 + languageName: node 3816 + linkType: hard 3817 + 3618 3818 "@esbuild/darwin-x64@npm:0.24.2": 3619 3819 version: 0.24.2 3620 3820 resolution: "@esbuild/darwin-x64@npm:0.24.2" ··· 3622 3822 languageName: node 3623 3823 linkType: hard 3624 3824 3825 + "@esbuild/darwin-x64@npm:0.25.3": 3826 + version: 0.25.3 3827 + resolution: "@esbuild/darwin-x64@npm:0.25.3" 3828 + conditions: os=darwin & cpu=x64 3829 + languageName: node 3830 + linkType: hard 3831 + 3625 3832 "@esbuild/freebsd-arm64@npm:0.24.2": 3626 3833 version: 0.24.2 3627 3834 resolution: "@esbuild/freebsd-arm64@npm:0.24.2" ··· 3629 3836 languageName: node 3630 3837 linkType: hard 3631 3838 3839 + "@esbuild/freebsd-arm64@npm:0.25.3": 3840 + version: 0.25.3 3841 + resolution: "@esbuild/freebsd-arm64@npm:0.25.3" 3842 + conditions: os=freebsd & cpu=arm64 3843 + languageName: node 3844 + linkType: hard 3845 + 3632 3846 "@esbuild/freebsd-x64@npm:0.24.2": 3633 3847 version: 0.24.2 3634 3848 resolution: "@esbuild/freebsd-x64@npm:0.24.2" ··· 3636 3850 languageName: node 3637 3851 linkType: hard 3638 3852 3853 + "@esbuild/freebsd-x64@npm:0.25.3": 3854 + version: 0.25.3 3855 + resolution: "@esbuild/freebsd-x64@npm:0.25.3" 3856 + conditions: os=freebsd & cpu=x64 3857 + languageName: node 3858 + linkType: hard 3859 + 3639 3860 "@esbuild/linux-arm64@npm:0.24.2": 3640 3861 version: 0.24.2 3641 3862 resolution: "@esbuild/linux-arm64@npm:0.24.2" ··· 3643 3864 languageName: node 3644 3865 linkType: hard 3645 3866 3867 + "@esbuild/linux-arm64@npm:0.25.3": 3868 + version: 0.25.3 3869 + resolution: "@esbuild/linux-arm64@npm:0.25.3" 3870 + conditions: os=linux & cpu=arm64 3871 + languageName: node 3872 + linkType: hard 3873 + 3646 3874 "@esbuild/linux-arm@npm:0.24.2": 3647 3875 version: 0.24.2 3648 3876 resolution: "@esbuild/linux-arm@npm:0.24.2" ··· 3650 3878 languageName: node 3651 3879 linkType: hard 3652 3880 3881 + "@esbuild/linux-arm@npm:0.25.3": 3882 + version: 0.25.3 3883 + resolution: "@esbuild/linux-arm@npm:0.25.3" 3884 + conditions: os=linux & cpu=arm 3885 + languageName: node 3886 + linkType: hard 3887 + 3653 3888 "@esbuild/linux-ia32@npm:0.24.2": 3654 3889 version: 0.24.2 3655 3890 resolution: "@esbuild/linux-ia32@npm:0.24.2" ··· 3657 3892 languageName: node 3658 3893 linkType: hard 3659 3894 3895 + "@esbuild/linux-ia32@npm:0.25.3": 3896 + version: 0.25.3 3897 + resolution: "@esbuild/linux-ia32@npm:0.25.3" 3898 + conditions: os=linux & cpu=ia32 3899 + languageName: node 3900 + linkType: hard 3901 + 3660 3902 "@esbuild/linux-loong64@npm:0.24.2": 3661 3903 version: 0.24.2 3662 3904 resolution: "@esbuild/linux-loong64@npm:0.24.2" ··· 3664 3906 languageName: node 3665 3907 linkType: hard 3666 3908 3909 + "@esbuild/linux-loong64@npm:0.25.3": 3910 + version: 0.25.3 3911 + resolution: "@esbuild/linux-loong64@npm:0.25.3" 3912 + conditions: os=linux & cpu=loong64 3913 + languageName: node 3914 + linkType: hard 3915 + 3667 3916 "@esbuild/linux-mips64el@npm:0.24.2": 3668 3917 version: 0.24.2 3669 3918 resolution: "@esbuild/linux-mips64el@npm:0.24.2" ··· 3671 3920 languageName: node 3672 3921 linkType: hard 3673 3922 3923 + "@esbuild/linux-mips64el@npm:0.25.3": 3924 + version: 0.25.3 3925 + resolution: "@esbuild/linux-mips64el@npm:0.25.3" 3926 + conditions: os=linux & cpu=mips64el 3927 + languageName: node 3928 + linkType: hard 3929 + 3674 3930 "@esbuild/linux-ppc64@npm:0.24.2": 3675 3931 version: 0.24.2 3676 3932 resolution: "@esbuild/linux-ppc64@npm:0.24.2" ··· 3678 3934 languageName: node 3679 3935 linkType: hard 3680 3936 3937 + "@esbuild/linux-ppc64@npm:0.25.3": 3938 + version: 0.25.3 3939 + resolution: "@esbuild/linux-ppc64@npm:0.25.3" 3940 + conditions: os=linux & cpu=ppc64 3941 + languageName: node 3942 + linkType: hard 3943 + 3681 3944 "@esbuild/linux-riscv64@npm:0.24.2": 3682 3945 version: 0.24.2 3683 3946 resolution: "@esbuild/linux-riscv64@npm:0.24.2" ··· 3685 3948 languageName: node 3686 3949 linkType: hard 3687 3950 3951 + "@esbuild/linux-riscv64@npm:0.25.3": 3952 + version: 0.25.3 3953 + resolution: "@esbuild/linux-riscv64@npm:0.25.3" 3954 + conditions: os=linux & cpu=riscv64 3955 + languageName: node 3956 + linkType: hard 3957 + 3688 3958 "@esbuild/linux-s390x@npm:0.24.2": 3689 3959 version: 0.24.2 3690 3960 resolution: "@esbuild/linux-s390x@npm:0.24.2" ··· 3692 3962 languageName: node 3693 3963 linkType: hard 3694 3964 3965 + "@esbuild/linux-s390x@npm:0.25.3": 3966 + version: 0.25.3 3967 + resolution: "@esbuild/linux-s390x@npm:0.25.3" 3968 + conditions: os=linux & cpu=s390x 3969 + languageName: node 3970 + linkType: hard 3971 + 3695 3972 "@esbuild/linux-x64@npm:0.24.2": 3696 3973 version: 0.24.2 3697 3974 resolution: "@esbuild/linux-x64@npm:0.24.2" ··· 3699 3976 languageName: node 3700 3977 linkType: hard 3701 3978 3979 + "@esbuild/linux-x64@npm:0.25.3": 3980 + version: 0.25.3 3981 + resolution: "@esbuild/linux-x64@npm:0.25.3" 3982 + conditions: os=linux & cpu=x64 3983 + languageName: node 3984 + linkType: hard 3985 + 3702 3986 "@esbuild/netbsd-arm64@npm:0.24.2": 3703 3987 version: 0.24.2 3704 3988 resolution: "@esbuild/netbsd-arm64@npm:0.24.2" 3989 + conditions: os=netbsd & cpu=arm64 3990 + languageName: node 3991 + linkType: hard 3992 + 3993 + "@esbuild/netbsd-arm64@npm:0.25.3": 3994 + version: 0.25.3 3995 + resolution: "@esbuild/netbsd-arm64@npm:0.25.3" 3705 3996 conditions: os=netbsd & cpu=arm64 3706 3997 languageName: node 3707 3998 linkType: hard ··· 3713 4004 languageName: node 3714 4005 linkType: hard 3715 4006 4007 + "@esbuild/netbsd-x64@npm:0.25.3": 4008 + version: 0.25.3 4009 + resolution: "@esbuild/netbsd-x64@npm:0.25.3" 4010 + conditions: os=netbsd & cpu=x64 4011 + languageName: node 4012 + linkType: hard 4013 + 3716 4014 "@esbuild/openbsd-arm64@npm:0.24.2": 3717 4015 version: 0.24.2 3718 4016 resolution: "@esbuild/openbsd-arm64@npm:0.24.2" ··· 3720 4018 languageName: node 3721 4019 linkType: hard 3722 4020 4021 + "@esbuild/openbsd-arm64@npm:0.25.3": 4022 + version: 0.25.3 4023 + resolution: "@esbuild/openbsd-arm64@npm:0.25.3" 4024 + conditions: os=openbsd & cpu=arm64 4025 + languageName: node 4026 + linkType: hard 4027 + 3723 4028 "@esbuild/openbsd-x64@npm:0.24.2": 3724 4029 version: 0.24.2 3725 4030 resolution: "@esbuild/openbsd-x64@npm:0.24.2" ··· 3727 4032 languageName: node 3728 4033 linkType: hard 3729 4034 4035 + "@esbuild/openbsd-x64@npm:0.25.3": 4036 + version: 0.25.3 4037 + resolution: "@esbuild/openbsd-x64@npm:0.25.3" 4038 + conditions: os=openbsd & cpu=x64 4039 + languageName: node 4040 + linkType: hard 4041 + 3730 4042 "@esbuild/sunos-x64@npm:0.24.2": 3731 4043 version: 0.24.2 3732 4044 resolution: "@esbuild/sunos-x64@npm:0.24.2" ··· 3734 4046 languageName: node 3735 4047 linkType: hard 3736 4048 4049 + "@esbuild/sunos-x64@npm:0.25.3": 4050 + version: 0.25.3 4051 + resolution: "@esbuild/sunos-x64@npm:0.25.3" 4052 + conditions: os=sunos & cpu=x64 4053 + languageName: node 4054 + linkType: hard 4055 + 3737 4056 "@esbuild/win32-arm64@npm:0.24.2": 3738 4057 version: 0.24.2 3739 4058 resolution: "@esbuild/win32-arm64@npm:0.24.2" ··· 3741 4060 languageName: node 3742 4061 linkType: hard 3743 4062 4063 + "@esbuild/win32-arm64@npm:0.25.3": 4064 + version: 0.25.3 4065 + resolution: "@esbuild/win32-arm64@npm:0.25.3" 4066 + conditions: os=win32 & cpu=arm64 4067 + languageName: node 4068 + linkType: hard 4069 + 3744 4070 "@esbuild/win32-ia32@npm:0.24.2": 3745 4071 version: 0.24.2 3746 4072 resolution: "@esbuild/win32-ia32@npm:0.24.2" ··· 3748 4074 languageName: node 3749 4075 linkType: hard 3750 4076 4077 + "@esbuild/win32-ia32@npm:0.25.3": 4078 + version: 0.25.3 4079 + resolution: "@esbuild/win32-ia32@npm:0.25.3" 4080 + conditions: os=win32 & cpu=ia32 4081 + languageName: node 4082 + linkType: hard 4083 + 3751 4084 "@esbuild/win32-x64@npm:0.24.2": 3752 4085 version: 0.24.2 3753 4086 resolution: "@esbuild/win32-x64@npm:0.24.2" 4087 + conditions: os=win32 & cpu=x64 4088 + languageName: node 4089 + linkType: hard 4090 + 4091 + "@esbuild/win32-x64@npm:0.25.3": 4092 + version: 0.25.3 4093 + resolution: "@esbuild/win32-x64@npm:0.25.3" 3754 4094 conditions: os=win32 & cpu=x64 3755 4095 languageName: node 3756 4096 linkType: hard ··· 4283 4623 languageName: node 4284 4624 linkType: hard 4285 4625 4626 + "@expressive-code/core@npm:^0.41.2": 4627 + version: 0.41.2 4628 + resolution: "@expressive-code/core@npm:0.41.2" 4629 + dependencies: 4630 + "@ctrl/tinycolor": "npm:^4.0.4" 4631 + hast-util-select: "npm:^6.0.2" 4632 + hast-util-to-html: "npm:^9.0.1" 4633 + hast-util-to-text: "npm:^4.0.1" 4634 + hastscript: "npm:^9.0.0" 4635 + postcss: "npm:^8.4.38" 4636 + postcss-nested: "npm:^6.0.1" 4637 + unist-util-visit: "npm:^5.0.0" 4638 + unist-util-visit-parents: "npm:^6.0.1" 4639 + checksum: 10/315363963576c5b31230d0e7799eb6e9837b7724ce6dce70b3ce2f5af626b3be23402dad28c2aaeb6a86478c1ea010b8134d01c455640094014e5fe1380c5ba5 4640 + languageName: node 4641 + linkType: hard 4642 + 4643 + "@expressive-code/plugin-frames@npm:^0.41.2": 4644 + version: 0.41.2 4645 + resolution: "@expressive-code/plugin-frames@npm:0.41.2" 4646 + dependencies: 4647 + "@expressive-code/core": "npm:^0.41.2" 4648 + checksum: 10/d83731834969f966b8f5cd1e0068fd1059cff651815e2eb5ac15886f8aef494144f2bec431363f83a795b772c87d87b8edb1410448e421de4eca88a811182f0b 4649 + languageName: node 4650 + linkType: hard 4651 + 4652 + "@expressive-code/plugin-shiki@npm:^0.41.2": 4653 + version: 0.41.2 4654 + resolution: "@expressive-code/plugin-shiki@npm:0.41.2" 4655 + dependencies: 4656 + "@expressive-code/core": "npm:^0.41.2" 4657 + shiki: "npm:^3.2.2" 4658 + checksum: 10/316052382d2a2653fb98c0bb12195eb0a28511ef774c2b79ccd42e55332d8b535f920c42afe569338c38e0c6911ef83b2f90f3af58a3adb1f5f4faa12bbb84d0 4659 + languageName: node 4660 + linkType: hard 4661 + 4662 + "@expressive-code/plugin-text-markers@npm:^0.41.2": 4663 + version: 0.41.2 4664 + resolution: "@expressive-code/plugin-text-markers@npm:0.41.2" 4665 + dependencies: 4666 + "@expressive-code/core": "npm:^0.41.2" 4667 + checksum: 10/962c3052f8c974e613383f1fa12c8b0925a70aa6a47c87b6960a0c15063ffe2830ac1cfc2d7d7c0efa5ded2c7cced72b889ab1b6080cea61a09cb41a531a26ed 4668 + languageName: node 4669 + linkType: hard 4670 + 4286 4671 "@fastify/busboy@npm:^3.0.0": 4287 4672 version: 3.0.0 4288 4673 resolution: "@fastify/busboy@npm:3.0.0" ··· 4889 5274 languageName: node 4890 5275 linkType: hard 4891 5276 5277 + "@fontsource/atkinson-hyperlegible-next@npm:^5.2.2": 5278 + version: 5.2.2 5279 + resolution: "@fontsource/atkinson-hyperlegible-next@npm:5.2.2" 5280 + checksum: 10/89b5de82504e7c5e0a9cbf05ca01d0521b4e161df8f20ebaaf3305911976a95e59b39381e10dfe0bbad57858c8ad5a03498ff49f2b97b2b9ba03e9aaeec95b1f 5281 + languageName: node 5282 + linkType: hard 5283 + 4892 5284 "@gar/promisify@npm:^1.1.3": 4893 5285 version: 1.1.3 4894 5286 resolution: "@gar/promisify@npm:1.1.3" ··· 5041 5433 languageName: node 5042 5434 linkType: hard 5043 5435 5436 + "@img/sharp-darwin-arm64@npm:0.33.5": 5437 + version: 0.33.5 5438 + resolution: "@img/sharp-darwin-arm64@npm:0.33.5" 5439 + dependencies: 5440 + "@img/sharp-libvips-darwin-arm64": "npm:1.0.4" 5441 + dependenciesMeta: 5442 + "@img/sharp-libvips-darwin-arm64": 5443 + optional: true 5444 + conditions: os=darwin & cpu=arm64 5445 + languageName: node 5446 + linkType: hard 5447 + 5448 + "@img/sharp-darwin-x64@npm:0.33.5": 5449 + version: 0.33.5 5450 + resolution: "@img/sharp-darwin-x64@npm:0.33.5" 5451 + dependencies: 5452 + "@img/sharp-libvips-darwin-x64": "npm:1.0.4" 5453 + dependenciesMeta: 5454 + "@img/sharp-libvips-darwin-x64": 5455 + optional: true 5456 + conditions: os=darwin & cpu=x64 5457 + languageName: node 5458 + linkType: hard 5459 + 5460 + "@img/sharp-libvips-darwin-arm64@npm:1.0.4": 5461 + version: 1.0.4 5462 + resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4" 5463 + conditions: os=darwin & cpu=arm64 5464 + languageName: node 5465 + linkType: hard 5466 + 5467 + "@img/sharp-libvips-darwin-x64@npm:1.0.4": 5468 + version: 1.0.4 5469 + resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4" 5470 + conditions: os=darwin & cpu=x64 5471 + languageName: node 5472 + linkType: hard 5473 + 5474 + "@img/sharp-libvips-linux-arm64@npm:1.0.4": 5475 + version: 1.0.4 5476 + resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4" 5477 + conditions: os=linux & cpu=arm64 & libc=glibc 5478 + languageName: node 5479 + linkType: hard 5480 + 5481 + "@img/sharp-libvips-linux-arm@npm:1.0.5": 5482 + version: 1.0.5 5483 + resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5" 5484 + conditions: os=linux & cpu=arm & libc=glibc 5485 + languageName: node 5486 + linkType: hard 5487 + 5488 + "@img/sharp-libvips-linux-s390x@npm:1.0.4": 5489 + version: 1.0.4 5490 + resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4" 5491 + conditions: os=linux & cpu=s390x & libc=glibc 5492 + languageName: node 5493 + linkType: hard 5494 + 5495 + "@img/sharp-libvips-linux-x64@npm:1.0.4": 5496 + version: 1.0.4 5497 + resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4" 5498 + conditions: os=linux & cpu=x64 & libc=glibc 5499 + languageName: node 5500 + linkType: hard 5501 + 5502 + "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4": 5503 + version: 1.0.4 5504 + resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4" 5505 + conditions: os=linux & cpu=arm64 & libc=musl 5506 + languageName: node 5507 + linkType: hard 5508 + 5509 + "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4": 5510 + version: 1.0.4 5511 + resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4" 5512 + conditions: os=linux & cpu=x64 & libc=musl 5513 + languageName: node 5514 + linkType: hard 5515 + 5516 + "@img/sharp-linux-arm64@npm:0.33.5": 5517 + version: 0.33.5 5518 + resolution: "@img/sharp-linux-arm64@npm:0.33.5" 5519 + dependencies: 5520 + "@img/sharp-libvips-linux-arm64": "npm:1.0.4" 5521 + dependenciesMeta: 5522 + "@img/sharp-libvips-linux-arm64": 5523 + optional: true 5524 + conditions: os=linux & cpu=arm64 & libc=glibc 5525 + languageName: node 5526 + linkType: hard 5527 + 5528 + "@img/sharp-linux-arm@npm:0.33.5": 5529 + version: 0.33.5 5530 + resolution: "@img/sharp-linux-arm@npm:0.33.5" 5531 + dependencies: 5532 + "@img/sharp-libvips-linux-arm": "npm:1.0.5" 5533 + dependenciesMeta: 5534 + "@img/sharp-libvips-linux-arm": 5535 + optional: true 5536 + conditions: os=linux & cpu=arm & libc=glibc 5537 + languageName: node 5538 + linkType: hard 5539 + 5540 + "@img/sharp-linux-s390x@npm:0.33.5": 5541 + version: 0.33.5 5542 + resolution: "@img/sharp-linux-s390x@npm:0.33.5" 5543 + dependencies: 5544 + "@img/sharp-libvips-linux-s390x": "npm:1.0.4" 5545 + dependenciesMeta: 5546 + "@img/sharp-libvips-linux-s390x": 5547 + optional: true 5548 + conditions: os=linux & cpu=s390x & libc=glibc 5549 + languageName: node 5550 + linkType: hard 5551 + 5552 + "@img/sharp-linux-x64@npm:0.33.5": 5553 + version: 0.33.5 5554 + resolution: "@img/sharp-linux-x64@npm:0.33.5" 5555 + dependencies: 5556 + "@img/sharp-libvips-linux-x64": "npm:1.0.4" 5557 + dependenciesMeta: 5558 + "@img/sharp-libvips-linux-x64": 5559 + optional: true 5560 + conditions: os=linux & cpu=x64 & libc=glibc 5561 + languageName: node 5562 + linkType: hard 5563 + 5564 + "@img/sharp-linuxmusl-arm64@npm:0.33.5": 5565 + version: 0.33.5 5566 + resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5" 5567 + dependencies: 5568 + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4" 5569 + dependenciesMeta: 5570 + "@img/sharp-libvips-linuxmusl-arm64": 5571 + optional: true 5572 + conditions: os=linux & cpu=arm64 & libc=musl 5573 + languageName: node 5574 + linkType: hard 5575 + 5576 + "@img/sharp-linuxmusl-x64@npm:0.33.5": 5577 + version: 0.33.5 5578 + resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5" 5579 + dependencies: 5580 + "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4" 5581 + dependenciesMeta: 5582 + "@img/sharp-libvips-linuxmusl-x64": 5583 + optional: true 5584 + conditions: os=linux & cpu=x64 & libc=musl 5585 + languageName: node 5586 + linkType: hard 5587 + 5588 + "@img/sharp-wasm32@npm:0.33.5": 5589 + version: 0.33.5 5590 + resolution: "@img/sharp-wasm32@npm:0.33.5" 5591 + dependencies: 5592 + "@emnapi/runtime": "npm:^1.2.0" 5593 + conditions: cpu=wasm32 5594 + languageName: node 5595 + linkType: hard 5596 + 5597 + "@img/sharp-win32-ia32@npm:0.33.5": 5598 + version: 0.33.5 5599 + resolution: "@img/sharp-win32-ia32@npm:0.33.5" 5600 + conditions: os=win32 & cpu=ia32 5601 + languageName: node 5602 + linkType: hard 5603 + 5604 + "@img/sharp-win32-x64@npm:0.33.5": 5605 + version: 0.33.5 5606 + resolution: "@img/sharp-win32-x64@npm:0.33.5" 5607 + conditions: os=win32 & cpu=x64 5608 + languageName: node 5609 + linkType: hard 5610 + 5044 5611 "@isaacs/cliui@npm:^8.0.2": 5045 5612 version: 8.0.2 5046 5613 resolution: "@isaacs/cliui@npm:8.0.2" ··· 5212 5779 languageName: node 5213 5780 linkType: hard 5214 5781 5782 + "@jridgewell/sourcemap-codec@npm:^1.5.0": 5783 + version: 1.5.0 5784 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" 5785 + checksum: 10/4ed6123217569a1484419ac53f6ea0d9f3b57e5b57ab30d7c267bdb27792a27eb0e4b08e84a2680aa55cc2f2b411ffd6ec3db01c44fdc6dc43aca4b55f8374fd 5786 + languageName: node 5787 + linkType: hard 5788 + 5215 5789 "@jridgewell/trace-mapping@npm:0.3.9": 5216 5790 version: 0.3.9 5217 5791 resolution: "@jridgewell/trace-mapping@npm:0.3.9" ··· 5356 5930 dependencies: 5357 5931 cross-spawn: "npm:^7.0.1" 5358 5932 checksum: 10/b7402d050e5ca99375b0226e4bb3fbefb0bcd86187dd4d6baac70f34b93d5c7fada9c78bd377ccd8ee74886ce911dd38f91c53479d1e40a2a38fc890150b670f 5933 + languageName: node 5934 + linkType: hard 5935 + 5936 + "@mdx-js/mdx@npm:^3.1.0": 5937 + version: 3.1.0 5938 + resolution: "@mdx-js/mdx@npm:3.1.0" 5939 + dependencies: 5940 + "@types/estree": "npm:^1.0.0" 5941 + "@types/estree-jsx": "npm:^1.0.0" 5942 + "@types/hast": "npm:^3.0.0" 5943 + "@types/mdx": "npm:^2.0.0" 5944 + collapse-white-space: "npm:^2.0.0" 5945 + devlop: "npm:^1.0.0" 5946 + estree-util-is-identifier-name: "npm:^3.0.0" 5947 + estree-util-scope: "npm:^1.0.0" 5948 + estree-walker: "npm:^3.0.0" 5949 + hast-util-to-jsx-runtime: "npm:^2.0.0" 5950 + markdown-extensions: "npm:^2.0.0" 5951 + recma-build-jsx: "npm:^1.0.0" 5952 + recma-jsx: "npm:^1.0.0" 5953 + recma-stringify: "npm:^1.0.0" 5954 + rehype-recma: "npm:^1.0.0" 5955 + remark-mdx: "npm:^3.0.0" 5956 + remark-parse: "npm:^11.0.0" 5957 + remark-rehype: "npm:^11.0.0" 5958 + source-map: "npm:^0.7.0" 5959 + unified: "npm:^11.0.0" 5960 + unist-util-position-from-estree: "npm:^2.0.0" 5961 + unist-util-stringify-position: "npm:^4.0.0" 5962 + unist-util-visit: "npm:^5.0.0" 5963 + vfile: "npm:^6.0.0" 5964 + checksum: 10/4bd4e1160e2b2bc9ea2b5b93246ce0e34a11ac5fd420ec025e82fb1120a72b80025d9cb205cce6394bb5f0013f209b9ea453cbda4c0ca4f97a2169df60084742 5359 5965 languageName: node 5360 5966 linkType: hard 5361 5967 ··· 6247 6853 languageName: node 6248 6854 linkType: hard 6249 6855 6856 + "@oslojs/encoding@npm:^1.1.0": 6857 + version: 1.1.0 6858 + resolution: "@oslojs/encoding@npm:1.1.0" 6859 + checksum: 10/9122ad5fa5c3557c1205825b11ea51facbaf08153a47c349c6b1a613b6797e9b22f290d31f5b6faaa45ece39a2437ecdb866815c73beb182e2b203d1f2201e98 6860 + languageName: node 6861 + linkType: hard 6862 + 6250 6863 "@oxc-transform/binding-darwin-arm64@npm:0.47.1": 6251 6864 version: 0.47.1 6252 6865 resolution: "@oxc-transform/binding-darwin-arm64@npm:0.47.1" ··· 6303 6916 languageName: node 6304 6917 linkType: hard 6305 6918 6919 + "@pagefind/darwin-arm64@npm:1.3.0": 6920 + version: 1.3.0 6921 + resolution: "@pagefind/darwin-arm64@npm:1.3.0" 6922 + conditions: os=darwin & cpu=arm64 6923 + languageName: node 6924 + linkType: hard 6925 + 6926 + "@pagefind/darwin-x64@npm:1.3.0": 6927 + version: 1.3.0 6928 + resolution: "@pagefind/darwin-x64@npm:1.3.0" 6929 + conditions: os=darwin & cpu=x64 6930 + languageName: node 6931 + linkType: hard 6932 + 6933 + "@pagefind/default-ui@npm:^1.3.0": 6934 + version: 1.3.0 6935 + resolution: "@pagefind/default-ui@npm:1.3.0" 6936 + checksum: 10/e129ac7b41ac4dfa8f7ceed4bee4dde3b6865d11a567b8d3ebfcbb59c5f1e4fbf642bb76f7c7a4bc02ef16ecc95107ee17bcb52ac7648a9f0c1780038b3b6acb 6937 + languageName: node 6938 + linkType: hard 6939 + 6940 + "@pagefind/linux-arm64@npm:1.3.0": 6941 + version: 1.3.0 6942 + resolution: "@pagefind/linux-arm64@npm:1.3.0" 6943 + conditions: os=linux & cpu=arm64 6944 + languageName: node 6945 + linkType: hard 6946 + 6947 + "@pagefind/linux-x64@npm:1.3.0": 6948 + version: 1.3.0 6949 + resolution: "@pagefind/linux-x64@npm:1.3.0" 6950 + conditions: os=linux & cpu=x64 6951 + languageName: node 6952 + linkType: hard 6953 + 6954 + "@pagefind/windows-x64@npm:1.3.0": 6955 + version: 1.3.0 6956 + resolution: "@pagefind/windows-x64@npm:1.3.0" 6957 + conditions: os=win32 & cpu=x64 6958 + languageName: node 6959 + linkType: hard 6960 + 6306 6961 "@parcel/watcher-android-arm64@npm:2.4.1": 6307 6962 version: 2.4.1 6308 6963 resolution: "@parcel/watcher-android-arm64@npm:2.4.1" ··· 6919 7574 languageName: node 6920 7575 linkType: hard 6921 7576 7577 + "@rollup/pluginutils@npm:^5.1.4": 7578 + version: 5.1.4 7579 + resolution: "@rollup/pluginutils@npm:5.1.4" 7580 + dependencies: 7581 + "@types/estree": "npm:^1.0.0" 7582 + estree-walker: "npm:^2.0.2" 7583 + picomatch: "npm:^4.0.2" 7584 + peerDependencies: 7585 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 7586 + peerDependenciesMeta: 7587 + rollup: 7588 + optional: true 7589 + checksum: 10/598f628988af25541a9a6c6ef154aaf350f8be3238884e500cc0e47138684071abe490563c953f9bda9e8b113ecb1f99c11abfb9dbaf4f72cdd62e257a673fa3 7590 + languageName: node 7591 + linkType: hard 7592 + 7593 + "@rollup/rollup-android-arm-eabi@npm:4.40.1": 7594 + version: 4.40.1 7595 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.40.1" 7596 + conditions: os=android & cpu=arm 7597 + languageName: node 7598 + linkType: hard 7599 + 7600 + "@rollup/rollup-android-arm64@npm:4.40.1": 7601 + version: 4.40.1 7602 + resolution: "@rollup/rollup-android-arm64@npm:4.40.1" 7603 + conditions: os=android & cpu=arm64 7604 + languageName: node 7605 + linkType: hard 7606 + 7607 + "@rollup/rollup-darwin-arm64@npm:4.40.1": 7608 + version: 4.40.1 7609 + resolution: "@rollup/rollup-darwin-arm64@npm:4.40.1" 7610 + conditions: os=darwin & cpu=arm64 7611 + languageName: node 7612 + linkType: hard 7613 + 7614 + "@rollup/rollup-darwin-x64@npm:4.40.1": 7615 + version: 4.40.1 7616 + resolution: "@rollup/rollup-darwin-x64@npm:4.40.1" 7617 + conditions: os=darwin & cpu=x64 7618 + languageName: node 7619 + linkType: hard 7620 + 7621 + "@rollup/rollup-freebsd-arm64@npm:4.40.1": 7622 + version: 4.40.1 7623 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.40.1" 7624 + conditions: os=freebsd & cpu=arm64 7625 + languageName: node 7626 + linkType: hard 7627 + 7628 + "@rollup/rollup-freebsd-x64@npm:4.40.1": 7629 + version: 4.40.1 7630 + resolution: "@rollup/rollup-freebsd-x64@npm:4.40.1" 7631 + conditions: os=freebsd & cpu=x64 7632 + languageName: node 7633 + linkType: hard 7634 + 7635 + "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.1": 7636 + version: 4.40.1 7637 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.1" 7638 + conditions: os=linux & cpu=arm & libc=glibc 7639 + languageName: node 7640 + linkType: hard 7641 + 7642 + "@rollup/rollup-linux-arm-musleabihf@npm:4.40.1": 7643 + version: 4.40.1 7644 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.40.1" 7645 + conditions: os=linux & cpu=arm & libc=musl 7646 + languageName: node 7647 + linkType: hard 7648 + 7649 + "@rollup/rollup-linux-arm64-gnu@npm:4.40.1": 7650 + version: 4.40.1 7651 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.40.1" 7652 + conditions: os=linux & cpu=arm64 & libc=glibc 7653 + languageName: node 7654 + linkType: hard 7655 + 7656 + "@rollup/rollup-linux-arm64-musl@npm:4.40.1": 7657 + version: 4.40.1 7658 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.40.1" 7659 + conditions: os=linux & cpu=arm64 & libc=musl 7660 + languageName: node 7661 + linkType: hard 7662 + 7663 + "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.1": 7664 + version: 4.40.1 7665 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.1" 7666 + conditions: os=linux & cpu=loong64 & libc=glibc 7667 + languageName: node 7668 + linkType: hard 7669 + 7670 + "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.1": 7671 + version: 4.40.1 7672 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.1" 7673 + conditions: os=linux & cpu=ppc64 & libc=glibc 7674 + languageName: node 7675 + linkType: hard 7676 + 7677 + "@rollup/rollup-linux-riscv64-gnu@npm:4.40.1": 7678 + version: 4.40.1 7679 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.40.1" 7680 + conditions: os=linux & cpu=riscv64 & libc=glibc 7681 + languageName: node 7682 + linkType: hard 7683 + 7684 + "@rollup/rollup-linux-riscv64-musl@npm:4.40.1": 7685 + version: 4.40.1 7686 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.40.1" 7687 + conditions: os=linux & cpu=riscv64 & libc=musl 7688 + languageName: node 7689 + linkType: hard 7690 + 7691 + "@rollup/rollup-linux-s390x-gnu@npm:4.40.1": 7692 + version: 4.40.1 7693 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.40.1" 7694 + conditions: os=linux & cpu=s390x & libc=glibc 7695 + languageName: node 7696 + linkType: hard 7697 + 7698 + "@rollup/rollup-linux-x64-gnu@npm:4.40.1": 7699 + version: 4.40.1 7700 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.40.1" 7701 + conditions: os=linux & cpu=x64 & libc=glibc 7702 + languageName: node 7703 + linkType: hard 7704 + 7705 + "@rollup/rollup-linux-x64-musl@npm:4.40.1": 7706 + version: 4.40.1 7707 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.40.1" 7708 + conditions: os=linux & cpu=x64 & libc=musl 7709 + languageName: node 7710 + linkType: hard 7711 + 7712 + "@rollup/rollup-win32-arm64-msvc@npm:4.40.1": 7713 + version: 4.40.1 7714 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.40.1" 7715 + conditions: os=win32 & cpu=arm64 7716 + languageName: node 7717 + linkType: hard 7718 + 7719 + "@rollup/rollup-win32-ia32-msvc@npm:4.40.1": 7720 + version: 4.40.1 7721 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.40.1" 7722 + conditions: os=win32 & cpu=ia32 7723 + languageName: node 7724 + linkType: hard 7725 + 7726 + "@rollup/rollup-win32-x64-msvc@npm:4.40.1": 7727 + version: 4.40.1 7728 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.40.1" 7729 + conditions: os=win32 & cpu=x64 7730 + languageName: node 7731 + linkType: hard 7732 + 6922 7733 "@rtsao/scc@npm:^1.1.0": 6923 7734 version: 1.1.0 6924 7735 resolution: "@rtsao/scc@npm:1.1.0" ··· 7019 7830 languageName: node 7020 7831 linkType: hard 7021 7832 7833 + "@shikijs/core@npm:3.3.0": 7834 + version: 3.3.0 7835 + resolution: "@shikijs/core@npm:3.3.0" 7836 + dependencies: 7837 + "@shikijs/types": "npm:3.3.0" 7838 + "@shikijs/vscode-textmate": "npm:^10.0.2" 7839 + "@types/hast": "npm:^3.0.4" 7840 + hast-util-to-html: "npm:^9.0.5" 7841 + checksum: 10/b8304668b2515e8819eacde9ad0001e80b640d899b2ae740bb1874854d2a826193e1817ab1cf43177598dd536c091e4487f014575506859d292245c4e339b9df 7842 + languageName: node 7843 + linkType: hard 7844 + 7845 + "@shikijs/engine-javascript@npm:3.3.0": 7846 + version: 3.3.0 7847 + resolution: "@shikijs/engine-javascript@npm:3.3.0" 7848 + dependencies: 7849 + "@shikijs/types": "npm:3.3.0" 7850 + "@shikijs/vscode-textmate": "npm:^10.0.2" 7851 + oniguruma-to-es: "npm:^4.2.0" 7852 + checksum: 10/97069540dd9f768a7e4bd994ed6664fb2964a0d9ba0488b52c25bb7aae2b7609eb2cb20aeb67e91374ce0feb0330603252e33ad2fb7f942a6f85ed99edc20ee2 7853 + languageName: node 7854 + linkType: hard 7855 + 7856 + "@shikijs/engine-oniguruma@npm:3.3.0": 7857 + version: 3.3.0 7858 + resolution: "@shikijs/engine-oniguruma@npm:3.3.0" 7859 + dependencies: 7860 + "@shikijs/types": "npm:3.3.0" 7861 + "@shikijs/vscode-textmate": "npm:^10.0.2" 7862 + checksum: 10/e42c1b0443014849ccc264ea7d3442340fb192db7e6bf2a364f4737163f3b49d41b2832ccb3dc3bb2f6ddde6481430502490b3508c93d3c7ba1c473708703798 7863 + languageName: node 7864 + linkType: hard 7865 + 7866 + "@shikijs/langs@npm:3.3.0": 7867 + version: 3.3.0 7868 + resolution: "@shikijs/langs@npm:3.3.0" 7869 + dependencies: 7870 + "@shikijs/types": "npm:3.3.0" 7871 + checksum: 10/4bad3c2420f3af1ee2911b1f10d0c89dd264ecdce17c2421fb72b3462d9fb7dc72b5317e6fe6ef408055d7085b33fbc427629990050f6a5983964a0a3fb42213 7872 + languageName: node 7873 + linkType: hard 7874 + 7875 + "@shikijs/themes@npm:3.3.0": 7876 + version: 3.3.0 7877 + resolution: "@shikijs/themes@npm:3.3.0" 7878 + dependencies: 7879 + "@shikijs/types": "npm:3.3.0" 7880 + checksum: 10/ff80f047ccc6968c35b7a1bc26e25d0c3705c3d34cb9d3432d792f78e00166b6123940b9731738d02b1324803d42f2b24d61a160a818bbb909c78f56cba95f28 7881 + languageName: node 7882 + linkType: hard 7883 + 7884 + "@shikijs/types@npm:3.3.0": 7885 + version: 3.3.0 7886 + resolution: "@shikijs/types@npm:3.3.0" 7887 + dependencies: 7888 + "@shikijs/vscode-textmate": "npm:^10.0.2" 7889 + "@types/hast": "npm:^3.0.4" 7890 + checksum: 10/311367cd692f4e9e82ccf2b0dc20624b330ff0976e0a052c56fb02daa8518be229cc4bbb4f4a45aa7fc0c844bd09c6a33cce7fa3f93ef1849989fad40f929fca 7891 + languageName: node 7892 + linkType: hard 7893 + 7894 + "@shikijs/vscode-textmate@npm:^10.0.2": 7895 + version: 10.0.2 7896 + resolution: "@shikijs/vscode-textmate@npm:10.0.2" 7897 + checksum: 10/d924cba8a01cd9ca12f56ba097d628fdb81455abb85884c8d8a5ae85b628a37dd5907e7691019b97107bd6608c866adf91ba04a1c3bba391281c88e386c044ea 7898 + languageName: node 7899 + linkType: hard 7900 + 7022 7901 "@sigstore/bundle@npm:^2.3.2": 7023 7902 version: 2.3.2 7024 7903 resolution: "@sigstore/bundle@npm:2.3.2" ··· 8167 9046 dependencies: 8168 9047 tslib: "npm:^2.4.0" 8169 9048 checksum: 10/54d66ade8010e6ba526a9d73b8bcdbb01c806a24f2d3786640ef3081065e8fba398d9b890df4847744c33d086412fd9a6570b5e99e8001ea1462efc5ce0f3847 9049 + languageName: node 9050 + linkType: hard 9051 + 9052 + "@swc/helpers@npm:^0.5.12": 9053 + version: 0.5.17 9054 + resolution: "@swc/helpers@npm:0.5.17" 9055 + dependencies: 9056 + tslib: "npm:^2.8.0" 9057 + checksum: 10/1fc8312a78f1f99c8ec838585445e99763eeebff2356100738cdfdb8ad47d2d38df678ee6edd93a90fe319ac52da67adc14ac00eb82b606c5fb8ebc5d06ec2a2 8170 9058 languageName: node 8171 9059 linkType: hard 8172 9060 ··· 9908 10796 languageName: node 9909 10797 linkType: hard 9910 10798 9911 - "@types/debug@npm:^4.1.7": 10799 + "@types/debug@npm:^4.0.0, @types/debug@npm:^4.1.7": 9912 10800 version: 4.1.12 9913 10801 resolution: "@types/debug@npm:4.1.12" 9914 10802 dependencies: 9915 10803 "@types/ms": "npm:*" 9916 10804 checksum: 10/47876a852de8240bfdaf7481357af2b88cb660d30c72e73789abf00c499d6bc7cd5e52f41c915d1b9cd8ec9fef5b05688d7b7aef17f7f272c2d04679508d1053 10805 + languageName: node 10806 + linkType: hard 10807 + 10808 + "@types/estree-jsx@npm:^1.0.0": 10809 + version: 1.0.5 10810 + resolution: "@types/estree-jsx@npm:1.0.5" 10811 + dependencies: 10812 + "@types/estree": "npm:*" 10813 + checksum: 10/a028ab0cd7b2950168a05c6a86026eb3a36a54a4adfae57f13911d7b49dffe573d9c2b28421b2d029b49b3d02fcd686611be2622dc3dad6d9791166c083f6008 10814 + languageName: node 10815 + linkType: hard 10816 + 10817 + "@types/estree@npm:*, @types/estree@npm:1.0.7, @types/estree@npm:^1.0.0": 10818 + version: 1.0.7 10819 + resolution: "@types/estree@npm:1.0.7" 10820 + checksum: 10/419c845ece767ad4b21171e6e5b63dabb2eb46b9c0d97361edcd9cabbf6a95fcadb91d89b5fa098d1336fa0b8fceaea82fca97a2ef3971f5c86e53031e157b21 9917 10821 languageName: node 9918 10822 linkType: hard 9919 10823 ··· 9990 10894 languageName: node 9991 10895 linkType: hard 9992 10896 10897 + "@types/hast@npm:^3.0.0, @types/hast@npm:^3.0.4": 10898 + version: 3.0.4 10899 + resolution: "@types/hast@npm:3.0.4" 10900 + dependencies: 10901 + "@types/unist": "npm:*" 10902 + checksum: 10/732920d81bb7605895776841b7658b4d8cc74a43a8fa176017cc0fb0ecc1a4c82a2b75a4fe6b71aa262b649d3fb62858c6789efa3793ea1d40269953af96ecb5 10903 + languageName: node 10904 + linkType: hard 10905 + 9993 10906 "@types/html-minifier-terser@npm:^6.0.0": 9994 10907 version: 6.1.0 9995 10908 resolution: "@types/html-minifier-terser@npm:6.1.0" ··· 10045 10958 languageName: node 10046 10959 linkType: hard 10047 10960 10048 - "@types/js-yaml@npm:^4.0.5": 10961 + "@types/js-yaml@npm:^4.0.5, @types/js-yaml@npm:^4.0.9": 10049 10962 version: 4.0.9 10050 10963 resolution: "@types/js-yaml@npm:4.0.9" 10051 10964 checksum: 10/a0ce595db8a987904badd21fc50f9f444cb73069f4b95a76cc222e0a17b3ff180669059c763ec314bc4c3ce284379177a9da80e83c5f650c6c1310cafbfaa8e6 ··· 10091 11004 languageName: node 10092 11005 linkType: hard 10093 11006 11007 + "@types/mdast@npm:^4.0.0, @types/mdast@npm:^4.0.4": 11008 + version: 4.0.4 11009 + resolution: "@types/mdast@npm:4.0.4" 11010 + dependencies: 11011 + "@types/unist": "npm:*" 11012 + checksum: 10/efe3ec11b9ee0015a396c4fb4cd1b6f31b51b8ae9783c59560e6fc0bf6c2fa1dcc7fccaf45fa09a6c8b3397fab9dc8d431433935cae3835caa70a18f7fc775f8 11013 + languageName: node 11014 + linkType: hard 11015 + 11016 + "@types/mdx@npm:^2.0.0": 11017 + version: 2.0.13 11018 + resolution: "@types/mdx@npm:2.0.13" 11019 + checksum: 10/b73ed5f08114879b9590dc6a9ee8b648643c57c708583cd24b2bc3cc8961361fc63139ac7e9291e7b3b6e6b45707749d01d6f9727ddec5533df75dc3b90871a4 11020 + languageName: node 11021 + linkType: hard 11022 + 10094 11023 "@types/mime@npm:^1": 10095 11024 version: 1.3.5 10096 11025 resolution: "@types/mime@npm:1.3.5" ··· 10123 11052 version: 0.7.34 10124 11053 resolution: "@types/ms@npm:0.7.34" 10125 11054 checksum: 10/f38d36e7b6edecd9badc9cf50474159e9da5fa6965a75186cceaf883278611b9df6669dc3a3cc122b7938d317b68a9e3d573d316fcb35d1be47ec9e468c6bd8a 11055 + languageName: node 11056 + linkType: hard 11057 + 11058 + "@types/nlcst@npm:^2.0.0": 11059 + version: 2.0.3 11060 + resolution: "@types/nlcst@npm:2.0.3" 11061 + dependencies: 11062 + "@types/unist": "npm:*" 11063 + checksum: 10/0edb3679b50f84ca5216b52d87c42fed0e65fa6cc5c9905380918f2269c6865894589ffd40fb09d91ceef1a9c544a32769ebbf4ef697894bfee457317ee7ceb4 10126 11064 languageName: node 10127 11065 linkType: hard 10128 11066 ··· 10153 11091 languageName: node 10154 11092 linkType: hard 10155 11093 11094 + "@types/node@npm:^17.0.5": 11095 + version: 17.0.45 11096 + resolution: "@types/node@npm:17.0.45" 11097 + checksum: 10/b45fff7270b5e81be19ef91a66b764a8b21473a97a8d211218a52e3426b79ad48f371819ab9153370756b33ba284e5c875463de4d2cf48a472e9098d7f09e8a2 11098 + languageName: node 11099 + linkType: hard 11100 + 10156 11101 "@types/node@npm:^20.9.0": 10157 11102 version: 20.16.5 10158 11103 resolution: "@types/node@npm:20.16.5" ··· 10246 11191 languageName: node 10247 11192 linkType: hard 10248 11193 11194 + "@types/sax@npm:^1.2.1": 11195 + version: 1.2.7 11196 + resolution: "@types/sax@npm:1.2.7" 11197 + dependencies: 11198 + "@types/node": "npm:*" 11199 + checksum: 10/7ece5fbb5d9c8fc76ab0de2f99d705edf92f18e701d4f9d9b0647275e32eb65e656c1badf9dfaa12f4e1ff3e250561c8c9cfe79e8b5f33dd1417ac0f1804f6cc 11200 + languageName: node 11201 + linkType: hard 11202 + 10249 11203 "@types/send@npm:*": 10250 11204 version: 0.17.4 10251 11205 resolution: "@types/send@npm:0.17.4" ··· 10315 11269 languageName: node 10316 11270 linkType: hard 10317 11271 11272 + "@types/unist@npm:*, @types/unist@npm:^3.0.0": 11273 + version: 3.0.3 11274 + resolution: "@types/unist@npm:3.0.3" 11275 + checksum: 10/96e6453da9e075aaef1dc22482463898198acdc1eeb99b465e65e34303e2ec1e3b1ed4469a9118275ec284dc98019f63c3f5d49422f0e4ac707e5ab90fb3b71a 11276 + languageName: node 11277 + linkType: hard 11278 + 11279 + "@types/unist@npm:^2.0.0": 11280 + version: 2.0.11 11281 + resolution: "@types/unist@npm:2.0.11" 11282 + checksum: 10/6d436e832bc35c6dde9f056ac515ebf2b3384a1d7f63679d12358766f9b313368077402e9c1126a14d827f10370a5485e628bf61aa91117cf4fc882423191a4e 11283 + languageName: node 11284 + linkType: hard 11285 + 10318 11286 "@types/use-sync-external-store@npm:^0.0.3": 10319 11287 version: 0.0.3 10320 11288 resolution: "@types/use-sync-external-store@npm:0.0.3" ··· 10476 11444 "@typescript-eslint/types": "npm:8.13.0" 10477 11445 eslint-visitor-keys: "npm:^3.4.3" 10478 11446 checksum: 10/630718da32ffa7144b7a8300802136a5fb3084c8b3dc7c277981939408b19d57214e0f721b8011f64ae083bac5367a8a319366c74ef7bcb9fd90508f780fb2de 11447 + languageName: node 11448 + linkType: hard 11449 + 11450 + "@ungap/structured-clone@npm:^1.0.0": 11451 + version: 1.3.0 11452 + resolution: "@ungap/structured-clone@npm:1.3.0" 11453 + checksum: 10/80d6910946f2b1552a2406650051c91bbd1f24a6bf854354203d84fe2714b3e8ce4618f49cc3410494173a1c1e8e9777372fe68dce74bd45faf0a7a1a6ccf448 10479 11454 languageName: node 10480 11455 linkType: hard 10481 11456 ··· 11245 12220 languageName: node 11246 12221 linkType: hard 11247 12222 11248 - "acorn-jsx@npm:^5.3.2": 12223 + "acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.2": 11249 12224 version: 5.3.2 11250 12225 resolution: "acorn-jsx@npm:5.3.2" 11251 12226 peerDependencies: ··· 11260 12235 dependencies: 11261 12236 acorn: "npm:^8.11.0" 11262 12237 checksum: 10/871386764e1451c637bb8ab9f76f4995d408057e9909be6fb5ad68537ae3375d85e6a6f170b98989f44ab3ff6c74ad120bc2779a3d577606e7a0cd2b4efcaf77 12238 + languageName: node 12239 + linkType: hard 12240 + 12241 + "acorn@npm:^8.0.0, acorn@npm:^8.14.1": 12242 + version: 8.14.1 12243 + resolution: "acorn@npm:8.14.1" 12244 + bin: 12245 + acorn: bin/acorn 12246 + checksum: 10/d1379bbee224e8d44c3c3946e6ba6973e999fbdd4e22e41c3455d7f9b6f72f7ce18d3dc218002e1e48eea789539cf1cb6d1430c81838c6744799c712fb557d92 11263 12247 languageName: node 11264 12248 linkType: hard 11265 12249 ··· 11402 12386 languageName: node 11403 12387 linkType: hard 11404 12388 12389 + "ansi-align@npm:^3.0.1": 12390 + version: 3.0.1 12391 + resolution: "ansi-align@npm:3.0.1" 12392 + dependencies: 12393 + string-width: "npm:^4.1.0" 12394 + checksum: 10/4c7e8b6a10eaf18874ecee964b5db62ac86d0b9266ad4987b3a1efcb5d11a9e12c881ee40d14951833135a8966f10a3efe43f9c78286a6e632f53d85ad28b9c0 12395 + languageName: node 12396 + linkType: hard 12397 + 11405 12398 "ansi-colors@npm:^4.1.1": 11406 12399 version: 4.1.3 11407 12400 resolution: "ansi-colors@npm:4.1.3" ··· 11574 12567 languageName: node 11575 12568 linkType: hard 11576 12569 11577 - "arg@npm:^5.0.2": 12570 + "arg@npm:^5.0.0, arg@npm:^5.0.2": 11578 12571 version: 5.0.2 11579 12572 resolution: "arg@npm:5.0.2" 11580 12573 checksum: 10/92fe7de222054a060fd2329e92e867410b3ea260328147ee3fb7855f78efae005f4087e698d4e688a856893c56bb09951588c40f2c901cf6996cd8cd7bcfef2c ··· 11606 12599 languageName: node 11607 12600 linkType: hard 11608 12601 12602 + "aria-query@npm:^5.3.2": 12603 + version: 5.3.2 12604 + resolution: "aria-query@npm:5.3.2" 12605 + checksum: 10/b2fe9bc98bd401bc322ccb99717c1ae2aaf53ea0d468d6e7aebdc02fac736e4a99b46971ee05b783b08ade23c675b2d8b60e4a1222a95f6e27bc4d2a0bfdcc03 12606 + languageName: node 12607 + linkType: hard 12608 + 11609 12609 "array-buffer-byte-length@npm:^1.0.1": 11610 12610 version: 1.0.1 11611 12611 resolution: "array-buffer-byte-length@npm:1.0.1" ··· 11648 12648 get-intrinsic: "npm:^1.2.4" 11649 12649 is-string: "npm:^1.0.7" 11650 12650 checksum: 10/290b206c9451f181fb2b1f79a3bf1c0b66bb259791290ffbada760c79b284eef6f5ae2aeb4bcff450ebc9690edd25732c4c73a3c2b340fcc0f4563aed83bf488 12651 + languageName: node 12652 + linkType: hard 12653 + 12654 + "array-iterate@npm:^2.0.0": 12655 + version: 2.0.1 12656 + resolution: "array-iterate@npm:2.0.1" 12657 + checksum: 10/b3db2c865a245dfded8f8dfe280218d2170e2ae8d4f559f6a1f66bdca6523bd406fe2cc99c323c545503f2652ec5ed7b1bbdf3d12eb130bfe980fdde36c33db7 11651 12658 languageName: node 11652 12659 linkType: hard 11653 12660 ··· 11780 12787 languageName: node 11781 12788 linkType: hard 11782 12789 12790 + "astring@npm:^1.8.0": 12791 + version: 1.9.0 12792 + resolution: "astring@npm:1.9.0" 12793 + bin: 12794 + astring: bin/astring 12795 + checksum: 10/ee88f71d8534557b27993d6d035ae85d78488d8dbc6429cd8e8fdfcafec3c65928a3bdc518cf69767a1298d3361490559a4819cd4b314007edae1e94cf1f9e4c 12796 + languageName: node 12797 + linkType: hard 12798 + 12799 + "astro-expressive-code@npm:^0.41.1": 12800 + version: 0.41.2 12801 + resolution: "astro-expressive-code@npm:0.41.2" 12802 + dependencies: 12803 + rehype-expressive-code: "npm:^0.41.2" 12804 + peerDependencies: 12805 + astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0 12806 + checksum: 10/3d37622e17f7da4ec8ecc0cfad8451ef85e189b2b373af3e3b00e522c639869e7cb45305c020233a6ac0f5af893cd30c40bdee4e287977d83292c7c3429f8d20 12807 + languageName: node 12808 + linkType: hard 12809 + 12810 + "astro@npm:^5.6.1": 12811 + version: 5.7.10 12812 + resolution: "astro@npm:5.7.10" 12813 + dependencies: 12814 + "@astrojs/compiler": "npm:^2.11.0" 12815 + "@astrojs/internal-helpers": "npm:0.6.1" 12816 + "@astrojs/markdown-remark": "npm:6.3.1" 12817 + "@astrojs/telemetry": "npm:3.2.1" 12818 + "@capsizecss/unpack": "npm:^2.4.0" 12819 + "@oslojs/encoding": "npm:^1.1.0" 12820 + "@rollup/pluginutils": "npm:^5.1.4" 12821 + acorn: "npm:^8.14.1" 12822 + aria-query: "npm:^5.3.2" 12823 + axobject-query: "npm:^4.1.0" 12824 + boxen: "npm:8.0.1" 12825 + ci-info: "npm:^4.2.0" 12826 + clsx: "npm:^2.1.1" 12827 + common-ancestor-path: "npm:^1.0.1" 12828 + cookie: "npm:^1.0.2" 12829 + cssesc: "npm:^3.0.0" 12830 + debug: "npm:^4.4.0" 12831 + deterministic-object-hash: "npm:^2.0.2" 12832 + devalue: "npm:^5.1.1" 12833 + diff: "npm:^5.2.0" 12834 + dlv: "npm:^1.1.3" 12835 + dset: "npm:^3.1.4" 12836 + es-module-lexer: "npm:^1.6.0" 12837 + esbuild: "npm:^0.25.0" 12838 + estree-walker: "npm:^3.0.3" 12839 + flattie: "npm:^1.1.1" 12840 + github-slugger: "npm:^2.0.0" 12841 + html-escaper: "npm:3.0.3" 12842 + http-cache-semantics: "npm:^4.1.1" 12843 + js-yaml: "npm:^4.1.0" 12844 + kleur: "npm:^4.1.5" 12845 + magic-string: "npm:^0.30.17" 12846 + magicast: "npm:^0.3.5" 12847 + mrmime: "npm:^2.0.1" 12848 + neotraverse: "npm:^0.6.18" 12849 + p-limit: "npm:^6.2.0" 12850 + p-queue: "npm:^8.1.0" 12851 + package-manager-detector: "npm:^1.1.0" 12852 + picomatch: "npm:^4.0.2" 12853 + prompts: "npm:^2.4.2" 12854 + rehype: "npm:^13.0.2" 12855 + semver: "npm:^7.7.1" 12856 + sharp: "npm:^0.33.3" 12857 + shiki: "npm:^3.2.1" 12858 + tinyexec: "npm:^0.3.2" 12859 + tinyglobby: "npm:^0.2.12" 12860 + tsconfck: "npm:^3.1.5" 12861 + ultrahtml: "npm:^1.6.0" 12862 + unifont: "npm:~0.4.1" 12863 + unist-util-visit: "npm:^5.0.0" 12864 + unstorage: "npm:^1.15.0" 12865 + vfile: "npm:^6.0.3" 12866 + vite: "npm:^6.3.4" 12867 + vitefu: "npm:^1.0.6" 12868 + xxhash-wasm: "npm:^1.1.0" 12869 + yargs-parser: "npm:^21.1.1" 12870 + yocto-spinner: "npm:^0.2.1" 12871 + zod: "npm:^3.24.2" 12872 + zod-to-json-schema: "npm:^3.24.5" 12873 + zod-to-ts: "npm:^1.2.0" 12874 + dependenciesMeta: 12875 + sharp: 12876 + optional: true 12877 + bin: 12878 + astro: astro.js 12879 + checksum: 10/f32ef120c590c294639c7275519d458af72498918498c167df1606377e2a1be3afa3785fab07813a4fe35200e77aebfeb6e4960a282154b22382235eb22576b6 12880 + languageName: node 12881 + linkType: hard 12882 + 11783 12883 "async-limiter@npm:~1.0.0": 11784 12884 version: 1.0.1 11785 12885 resolution: "async-limiter@npm:1.0.1" ··· 11871 12971 form-data: "npm:^4.0.0" 11872 12972 proxy-from-env: "npm:^1.1.0" 11873 12973 checksum: 10/7f875ea13b9298cd7b40fd09985209f7a38d38321f1118c701520939de2f113c4ba137832fe8e3f811f99a38e12c8225481011023209a77b0c0641270e20cde1 12974 + languageName: node 12975 + linkType: hard 12976 + 12977 + "axobject-query@npm:^4.1.0": 12978 + version: 4.1.0 12979 + resolution: "axobject-query@npm:4.1.0" 12980 + checksum: 10/e275dea9b673f71170d914f2d2a18be5d57d8d29717b629e7fedd907dcc2ebdc7a37803ff975874810bd423f222f299c020d28fde40a146f537448bf6bfecb6e 12981 + languageName: node 12982 + linkType: hard 12983 + 12984 + "b4a@npm:^1.6.4": 12985 + version: 1.6.7 12986 + resolution: "b4a@npm:1.6.7" 12987 + checksum: 10/1ac056e3bce378d4d3e570e57319360a9d3125ab6916a1921b95bea33d9ee646698ebc75467561fd6fcc80ff697612124c89bb9b95e80db94c6dc23fcb977705 11874 12988 languageName: node 11875 12989 linkType: hard 11876 12990 ··· 12077 13191 languageName: node 12078 13192 linkType: hard 12079 13193 13194 + "bail@npm:^2.0.0": 13195 + version: 2.0.2 13196 + resolution: "bail@npm:2.0.2" 13197 + checksum: 10/aab4e8ccdc8d762bf3fdfce8e706601695620c0c2eda256dd85088dc0be3cfd7ff126f6e99c2bee1f24f5d418414aacf09d7f9702f16d6963df2fa488cda8824 13198 + languageName: node 13199 + linkType: hard 13200 + 12080 13201 "balanced-match@npm:^1.0.0": 12081 13202 version: 1.0.2 12082 13203 resolution: "balanced-match@npm:1.0.2" ··· 12084 13205 languageName: node 12085 13206 linkType: hard 12086 13207 13208 + "bare-events@npm:^2.2.0, bare-events@npm:^2.5.4": 13209 + version: 2.5.4 13210 + resolution: "bare-events@npm:2.5.4" 13211 + checksum: 10/135ef380b13f554ca2c6905bdbcfac8edae08fce85b7f953fa01f09a9f5b0da6a25e414111659bc9a6118216f0dd1f732016acd11ce91517f2afb26ebeb4b721 13212 + languageName: node 13213 + linkType: hard 13214 + 13215 + "bare-fs@npm:^4.0.1": 13216 + version: 4.1.4 13217 + resolution: "bare-fs@npm:4.1.4" 13218 + dependencies: 13219 + bare-events: "npm:^2.5.4" 13220 + bare-path: "npm:^3.0.0" 13221 + bare-stream: "npm:^2.6.4" 13222 + peerDependencies: 13223 + bare-buffer: "*" 13224 + peerDependenciesMeta: 13225 + bare-buffer: 13226 + optional: true 13227 + checksum: 10/8337110ac7df8d42683295713982cf56865f7a1338e081ced69831ae947b8cc3c88d11d380b08aee520585ee45a7677ad251ff70cfab4b3abec02998ddfac5b8 13228 + languageName: node 13229 + linkType: hard 13230 + 13231 + "bare-os@npm:^3.0.1": 13232 + version: 3.6.1 13233 + resolution: "bare-os@npm:3.6.1" 13234 + checksum: 10/285d95c391250166128e64da2947f4a348ae127de680afffec1f6c82445856be0d1f259672b471afe06517e4cd3831183c373a1d63ef7799ed4aaa1321b86b67 13235 + languageName: node 13236 + linkType: hard 13237 + 13238 + "bare-path@npm:^3.0.0": 13239 + version: 3.0.0 13240 + resolution: "bare-path@npm:3.0.0" 13241 + dependencies: 13242 + bare-os: "npm:^3.0.1" 13243 + checksum: 10/712d90e9cd8c3263cc11b0e0d386d1531a452706d7840c081ee586b34b00d72544e65df7a40013d47c1b177277495225deeede65cb2984db88a979cb65aaa2ff 13244 + languageName: node 13245 + linkType: hard 13246 + 13247 + "bare-stream@npm:^2.6.4": 13248 + version: 2.6.5 13249 + resolution: "bare-stream@npm:2.6.5" 13250 + dependencies: 13251 + streamx: "npm:^2.21.0" 13252 + peerDependencies: 13253 + bare-buffer: "*" 13254 + bare-events: "*" 13255 + peerDependenciesMeta: 13256 + bare-buffer: 13257 + optional: true 13258 + bare-events: 13259 + optional: true 13260 + checksum: 10/0f5ca2167fbbccc118157bce7c53a933e21726268e03d751461211550d72b2d01c296b767ccf96aae8ab28e106b126407c6fe0d29f915734b844ffe6057f0a08 13261 + languageName: node 13262 + linkType: hard 13263 + 13264 + "base-64@npm:^1.0.0": 13265 + version: 1.0.0 13266 + resolution: "base-64@npm:1.0.0" 13267 + checksum: 10/d10b64a1fc9b2c5a5f39f1ce1e6c9d1c5b249222bbfa3a0604c592d90623caf74419983feadd8a170f27dc0c3389704f72faafa3e645aeb56bfc030c93ff074a 13268 + languageName: node 13269 + linkType: hard 13270 + 12087 13271 "base32-encode@npm:^0.1.0 || ^1.0.0": 12088 13272 version: 1.2.0 12089 13273 resolution: "base32-encode@npm:1.2.0" ··· 12100 13284 languageName: node 12101 13285 linkType: hard 12102 13286 12103 - "base64-js@npm:1.5.1, base64-js@npm:^1.0.2, base64-js@npm:^1.2.3, base64-js@npm:^1.3.0, base64-js@npm:^1.3.1, base64-js@npm:^1.5.1": 13287 + "base64-js@npm:1.5.1, base64-js@npm:^1.0.2, base64-js@npm:^1.1.2, base64-js@npm:^1.2.3, base64-js@npm:^1.3.0, base64-js@npm:^1.3.1, base64-js@npm:^1.5.1": 12104 13288 version: 1.5.1 12105 13289 resolution: "base64-js@npm:1.5.1" 12106 13290 checksum: 10/669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005 ··· 12114 13298 languageName: node 12115 13299 linkType: hard 12116 13300 13301 + "bcp-47-match@npm:^2.0.0": 13302 + version: 2.0.3 13303 + resolution: "bcp-47-match@npm:2.0.3" 13304 + checksum: 10/fb47d31946268865c45df4c5d447964656ea357871bbd6969dc4ea2fb6b581fda385174ed43bc1dc1a7ed75c1a93a51fef18eec0fbd24352725dfceb2246cf2e 13305 + languageName: node 13306 + linkType: hard 13307 + 13308 + "bcp-47@npm:^2.1.0": 13309 + version: 2.1.0 13310 + resolution: "bcp-47@npm:2.1.0" 13311 + dependencies: 13312 + is-alphabetical: "npm:^2.0.0" 13313 + is-alphanumerical: "npm:^2.0.0" 13314 + is-decimal: "npm:^2.0.0" 13315 + checksum: 10/3ed9da011622671e956bc1ef0f12f6e4032eaf2c955cb0792cff2ea269c7808392d15f77cc3a115f3eeee71d6ffcc0996beaf9a462985ca19bcdf36b07a0be85 13316 + languageName: node 13317 + linkType: hard 13318 + 12117 13319 "before-after-hook@npm:^2.2.0": 12118 13320 version: 2.2.3 12119 13321 resolution: "before-after-hook@npm:2.2.3" ··· 12181 13383 languageName: node 12182 13384 linkType: hard 12183 13385 13386 + "blob-to-buffer@npm:^1.2.8": 13387 + version: 1.2.9 13388 + resolution: "blob-to-buffer@npm:1.2.9" 13389 + checksum: 10/74e7916c8d29517c9ed13d02694ea61a54f12b8b6cca21acd88d7cf2aa1fac15227e69eabfaaf57572d8853a02cc85e14e7db2a637ea15493f54ac93ebe6b2dc 13390 + languageName: node 13391 + linkType: hard 13392 + 12184 13393 "bluebird@npm:^3.1.1": 12185 13394 version: 3.7.2 12186 13395 resolution: "bluebird@npm:3.7.2" ··· 12253 13462 languageName: node 12254 13463 linkType: hard 12255 13464 13465 + "boxen@npm:8.0.1": 13466 + version: 8.0.1 13467 + resolution: "boxen@npm:8.0.1" 13468 + dependencies: 13469 + ansi-align: "npm:^3.0.1" 13470 + camelcase: "npm:^8.0.0" 13471 + chalk: "npm:^5.3.0" 13472 + cli-boxes: "npm:^3.0.0" 13473 + string-width: "npm:^7.2.0" 13474 + type-fest: "npm:^4.21.0" 13475 + widest-line: "npm:^5.0.0" 13476 + wrap-ansi: "npm:^9.0.0" 13477 + checksum: 10/30e2804c3b8d86735817e25961b7861dbfb19adfdc0cf2a0afd8a6dc2e7114de636f86239f4069f81349449d16da3fb33c4100422f41931982bd7d247092a78e 13478 + languageName: node 13479 + linkType: hard 13480 + 12256 13481 "bplist-creator@npm:0.0.7": 12257 13482 version: 0.0.7 12258 13483 resolution: "bplist-creator@npm:0.0.7" ··· 12321 13546 version: 1.1.0 12322 13547 resolution: "brorand@npm:1.1.0" 12323 13548 checksum: 10/8a05c9f3c4b46572dec6ef71012b1946db6cae8c7bb60ccd4b7dd5a84655db49fe043ecc6272e7ef1f69dc53d6730b9e2a3a03a8310509a3d797a618cbee52be 13549 + languageName: node 13550 + linkType: hard 13551 + 13552 + "brotli@npm:^1.3.2": 13553 + version: 1.3.3 13554 + resolution: "brotli@npm:1.3.3" 13555 + dependencies: 13556 + base64-js: "npm:^1.1.2" 13557 + checksum: 10/78b412f54be3c96b86e2d9805ddc26aa5a52bba45588ff7f8468b80aa84c90052c60eeb2e26ad032c39bab6baa58e0b0625cf4f738279961a31c34cbe4b4b490 12324 13558 languageName: node 12325 13559 linkType: hard 12326 13560 ··· 12670 13904 languageName: node 12671 13905 linkType: hard 12672 13906 13907 + "camelcase@npm:^8.0.0": 13908 + version: 8.0.0 13909 + resolution: "camelcase@npm:8.0.0" 13910 + checksum: 10/6da7abe997af29e80052f17aa21628c7cce14af364cef9f07a2a44d59614dd6f361d405f121938e673424d673697a8c53ad17be8c4b03b0a727307c4db8b5b5e 13911 + languageName: node 13912 + linkType: hard 13913 + 12673 13914 "camelize@npm:^1.0.0": 12674 13915 version: 1.0.1 12675 13916 resolution: "camelize@npm:1.0.1" ··· 12715 13956 languageName: node 12716 13957 linkType: hard 12717 13958 13959 + "ccount@npm:^2.0.0": 13960 + version: 2.0.1 13961 + resolution: "ccount@npm:2.0.1" 13962 + checksum: 10/48193dada54c9e260e0acf57fc16171a225305548f9ad20d5471e0f7a8c026aedd8747091dccb0d900cde7df4e4ddbd235df0d8de4a64c71b12f0d3303eeafd4 13963 + languageName: node 13964 + linkType: hard 13965 + 12718 13966 "chalk@npm:4.1.0": 12719 13967 version: 4.1.0 12720 13968 resolution: "chalk@npm:4.1.0" ··· 12760 14008 languageName: node 12761 14009 linkType: hard 12762 14010 14011 + "character-entities-html4@npm:^2.0.0": 14012 + version: 2.1.0 14013 + resolution: "character-entities-html4@npm:2.1.0" 14014 + checksum: 10/7034aa7c7fa90309667f6dd50499c8a760c3d3a6fb159adb4e0bada0107d194551cdbad0714302f62d06ce4ed68565c8c2e15fdef2e8f8764eb63fa92b34b11d 14015 + languageName: node 14016 + linkType: hard 14017 + 14018 + "character-entities-legacy@npm:^3.0.0": 14019 + version: 3.0.0 14020 + resolution: "character-entities-legacy@npm:3.0.0" 14021 + checksum: 10/7582af055cb488b626d364b7d7a4e46b06abd526fb63c0e4eb35bcb9c9799cc4f76b39f34fdccef2d1174ac95e53e9ab355aae83227c1a2505877893fce77731 14022 + languageName: node 14023 + linkType: hard 14024 + 14025 + "character-entities@npm:^2.0.0": 14026 + version: 2.0.2 14027 + resolution: "character-entities@npm:2.0.2" 14028 + checksum: 10/c8dd1f4bf1a92fccf7d2fad9673660a88b37854557d30f6076c32fedfb92d1420208298829ff1d3b6b4fa1c7012e8326c45e7f5c3ed1e9a09ec177593c521b2f 14029 + languageName: node 14030 + linkType: hard 14031 + 14032 + "character-reference-invalid@npm:^2.0.0": 14033 + version: 2.0.1 14034 + resolution: "character-reference-invalid@npm:2.0.1" 14035 + checksum: 10/98d3b1a52ae510b7329e6ee7f6210df14f1e318c5415975d4c9e7ee0ef4c07875d47c6e74230c64551f12f556b4a8ccc24d9f3691a2aa197019e72a95e9297ee 14036 + languageName: node 14037 + linkType: hard 14038 + 12763 14039 "chardet@npm:^0.7.0": 12764 14040 version: 0.7.0 12765 14041 resolution: "chardet@npm:0.7.0" ··· 12812 14088 languageName: node 12813 14089 linkType: hard 12814 14090 14091 + "chokidar@npm:^4.0.3": 14092 + version: 4.0.3 14093 + resolution: "chokidar@npm:4.0.3" 14094 + dependencies: 14095 + readdirp: "npm:^4.0.1" 14096 + checksum: 10/bf2a575ea5596000e88f5db95461a9d59ad2047e939d5a4aac59dd472d126be8f1c1ff3c7654b477cf532d18f42a97279ef80ee847972fd2a25410bf00b80b59 14097 + languageName: node 14098 + linkType: hard 14099 + 14100 + "chownr@npm:^1.1.1": 14101 + version: 1.1.4 14102 + resolution: "chownr@npm:1.1.4" 14103 + checksum: 10/115648f8eb38bac5e41c3857f3e663f9c39ed6480d1349977c4d96c95a47266fcacc5a5aabf3cb6c481e22d72f41992827db47301851766c4fd77ac21a4f081d 14104 + languageName: node 14105 + linkType: hard 14106 + 12815 14107 "chownr@npm:^2.0.0": 12816 14108 version: 2.0.0 12817 14109 resolution: "chownr@npm:2.0.0" ··· 12891 14183 languageName: node 12892 14184 linkType: hard 12893 14185 14186 + "ci-info@npm:^4.2.0": 14187 + version: 4.2.0 14188 + resolution: "ci-info@npm:4.2.0" 14189 + checksum: 10/928d8457f3476ffc4a66dec93b9cdf1944d5e60dba69fbd6a0fc95b652386f6ef64857f6e32372533210ef6d8954634af2c7693d7c07778ee015f3629a5e0dd9 14190 + languageName: node 14191 + linkType: hard 14192 + 12894 14193 "citty@npm:^0.1.5, citty@npm:^0.1.6": 12895 14194 version: 0.1.6 12896 14195 resolution: "citty@npm:0.1.6" ··· 12913 14212 version: 2.2.0 12914 14213 resolution: "clean-stack@npm:2.2.0" 12915 14214 checksum: 10/2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 14215 + languageName: node 14216 + linkType: hard 14217 + 14218 + "cli-boxes@npm:^3.0.0": 14219 + version: 3.0.0 14220 + resolution: "cli-boxes@npm:3.0.0" 14221 + checksum: 10/637d84419d293a9eac40a1c8c96a2859e7d98b24a1a317788e13c8f441be052fc899480c6acab3acc82eaf1bccda6b7542d7cdcf5c9c3cc39227175dc098d5b2 12916 14222 languageName: node 12917 14223 linkType: hard 12918 14224 ··· 13076 14382 languageName: node 13077 14383 linkType: hard 13078 14384 13079 - "clsx@npm:2.1.1": 14385 + "clone@npm:^2.1.2": 14386 + version: 2.1.2 14387 + resolution: "clone@npm:2.1.2" 14388 + checksum: 10/d9c79efba655f0bf601ab299c57eb54cbaa9860fb011aee9d89ed5ac0d12df1660ab7642fddaabb9a26b7eff0e117d4520512cb70798319ff5d30a111b5310c2 14389 + languageName: node 14390 + linkType: hard 14391 + 14392 + "clsx@npm:2.1.1, clsx@npm:^2.1.1": 13080 14393 version: 2.1.1 13081 14394 resolution: "clsx@npm:2.1.1" 13082 14395 checksum: 10/cdfb57fa6c7649bbff98d9028c2f0de2f91c86f551179541cf784b1cfdc1562dcb951955f46d54d930a3879931a980e32a46b598acaea274728dbe068deca919 ··· 13101 14414 version: 11.0.3 13102 14415 resolution: "code-block-writer@npm:11.0.3" 13103 14416 checksum: 10/aecf33ec312c595164bb0f6fd6d92d1b7bada83352b787e033ae0e5a15c87146503ca68a258ab7f54cba1b46dc381271c1e0037a3b0869c9c6d57ef5d7bc3501 14417 + languageName: node 14418 + linkType: hard 14419 + 14420 + "collapse-white-space@npm:^2.0.0": 14421 + version: 2.1.0 14422 + resolution: "collapse-white-space@npm:2.1.0" 14423 + checksum: 10/c1424ae7c5ff370ec06bbff5990382c54ae6e14a021c7568151e4889e514667e110cc3a051fe5d8e17b117f76304fffcfe9f0360cda642cf0201a5ac398bf0e7 13104 14424 languageName: node 13105 14425 linkType: hard 13106 14426 ··· 13212 14532 languageName: node 13213 14533 linkType: hard 13214 14534 14535 + "comma-separated-tokens@npm:^2.0.0": 14536 + version: 2.0.3 14537 + resolution: "comma-separated-tokens@npm:2.0.3" 14538 + checksum: 10/e3bf9e0332a5c45f49b90e79bcdb4a7a85f28d6a6f0876a94f1bb9b2bfbdbbb9292aac50e1e742d8c0db1e62a0229a106f57917e2d067fca951d81737651700d 14539 + languageName: node 14540 + linkType: hard 14541 + 13215 14542 "command-exists@npm:^1.2.4": 13216 14543 version: 1.2.9 13217 14544 resolution: "command-exists@npm:1.2.9" ··· 13512 14839 languageName: node 13513 14840 linkType: hard 13514 14841 13515 - "cookie-es@npm:^1.1.0": 14842 + "cookie-es@npm:^1.1.0, cookie-es@npm:^1.2.2": 13516 14843 version: 1.2.2 13517 14844 resolution: "cookie-es@npm:1.2.2" 13518 14845 checksum: 10/0fd742c11caa185928e450543f84df62d4b2c1fc7b5041196b57b7db04e1c6ac6585fb40e4f579a2819efefd2d6a9cbb4d17f71240d05f4dcd8f74ae81341a20 ··· 13530 14857 version: 0.6.0 13531 14858 resolution: "cookie@npm:0.6.0" 13532 14859 checksum: 10/c1f8f2ea7d443b9331680598b0ae4e6af18a618c37606d1bbdc75bec8361cce09fe93e727059a673f2ba24467131a9fb5a4eec76bb1b149c1b3e1ccb268dc583 14860 + languageName: node 14861 + linkType: hard 14862 + 14863 + "cookie@npm:^1.0.2": 14864 + version: 1.0.2 14865 + resolution: "cookie@npm:1.0.2" 14866 + checksum: 10/f5817cdc84d8977761b12549eba29435e675e65c7fef172bc31737788cd8adc83796bf8abe6d950554e7987325ad2d9ac2971c5bd8ff0c4f81c145f82e4ab1be 13533 14867 languageName: node 13534 14868 linkType: hard 13535 14869 ··· 13618 14952 languageName: node 13619 14953 linkType: hard 13620 14954 14955 + "cross-fetch@npm:^3.0.4": 14956 + version: 3.2.0 14957 + resolution: "cross-fetch@npm:3.2.0" 14958 + dependencies: 14959 + node-fetch: "npm:^2.7.0" 14960 + checksum: 10/e4ab1d390a5b6ca8bb0605f028af2ffc1127d2e407b954654949f506d04873c4863ece264662c074865d7874060e35f938cec74fe7b5736d46d545e2685f6aec 14961 + languageName: node 14962 + linkType: hard 14963 + 13621 14964 "cross-fetch@npm:^3.1.4, cross-fetch@npm:^3.1.5": 13622 14965 version: 3.1.8 13623 14966 resolution: "cross-fetch@npm:3.1.8" ··· 13676 15019 uWebSockets.js: 13677 15020 optional: true 13678 15021 checksum: 10/f8ece87d1737f370f2e4802d5423b24bbe9286dd6f3b0111d00beaf2d16879dc8d332cfc5e42312425a6f1a1010fb72a6e7d4af33fc4fa0c9c6547843d87fcb6 15022 + languageName: node 15023 + linkType: hard 15024 + 15025 + "crossws@npm:^0.3.4": 15026 + version: 0.3.4 15027 + resolution: "crossws@npm:0.3.4" 15028 + dependencies: 15029 + uncrypto: "npm:^0.1.3" 15030 + checksum: 10/4226588a51835640e904f760e3b3d8d673c5176191d50449f5cde65bfd4c68fc1cd0db489fa46088ddde4bacec0407e00d9acab0a2abf40806dbd4dc81c1fc32 13679 15031 languageName: node 13680 15032 linkType: hard 13681 15033 ··· 13759 15111 languageName: node 13760 15112 linkType: hard 13761 15113 15114 + "css-selector-parser@npm:^3.0.0": 15115 + version: 3.1.2 15116 + resolution: "css-selector-parser@npm:3.1.2" 15117 + checksum: 10/88572191c099a7bfd69cf8488720f86f1da541dfa9f0134601b49b2df853d998f8570cb8b4e4cee4ca957f97752cf576998b8f5ef4271ed36faca0d3c75c5848 15118 + languageName: node 15119 + linkType: hard 15120 + 13762 15121 "css-to-react-native@npm:^3.0.0": 13763 15122 version: 3.2.0 13764 15123 resolution: "css-to-react-native@npm:3.2.0" ··· 13777 15136 mdn-data: "npm:2.0.14" 13778 15137 source-map: "npm:^0.6.1" 13779 15138 checksum: 10/29710728cc4b136f1e9b23ee1228ec403ec9f3d487bc94a9c5dbec563c1e08c59bc917dd6f82521a35e869ff655c298270f43ca673265005b0cd05b292eb05ab 15139 + languageName: node 15140 + linkType: hard 15141 + 15142 + "css-tree@npm:^3.0.0": 15143 + version: 3.1.0 15144 + resolution: "css-tree@npm:3.1.0" 15145 + dependencies: 15146 + mdn-data: "npm:2.12.2" 15147 + source-map-js: "npm:^1.0.1" 15148 + checksum: 10/e8c5c8e98e3aa4a620fda0b813ce57ccf99281652bf9d23e5cdfc9961c9a93a6769941f9a92e31e65d90f446f42fa83879ab0185206dc7a178d9f656d0913e14 13780 15149 languageName: node 13781 15150 linkType: hard 13782 15151 ··· 13908 15277 languageName: node 13909 15278 linkType: hard 13910 15279 13911 - "debug@npm:^4.0.1, debug@npm:^4.3.3, debug@npm:^4.3.5, debug@npm:~4.3.6": 13912 - version: 4.3.7 13913 - resolution: "debug@npm:4.3.7" 15280 + "debug@npm:^4.0.0, debug@npm:^4.3.7, debug@npm:^4.4.0": 15281 + version: 4.4.0 15282 + resolution: "debug@npm:4.4.0" 13914 15283 dependencies: 13915 15284 ms: "npm:^2.1.3" 13916 15285 peerDependenciesMeta: 13917 15286 supports-color: 13918 15287 optional: true 13919 - checksum: 10/71168908b9a78227ab29d5d25fe03c5867750e31ce24bf2c44a86efc5af041758bb56569b0a3d48a9b5344c00a24a777e6f4100ed6dfd9534a42c1dde285125a 15288 + checksum: 10/1847944c2e3c2c732514b93d11886575625686056cd765336212dc15de2d2b29612b6cd80e1afba767bb8e1803b778caf9973e98169ef1a24a7a7009e1820367 13920 15289 languageName: node 13921 15290 linkType: hard 13922 15291 13923 - "debug@npm:^4.3.7": 13924 - version: 4.4.0 13925 - resolution: "debug@npm:4.4.0" 15292 + "debug@npm:^4.0.1, debug@npm:^4.3.3, debug@npm:^4.3.5, debug@npm:~4.3.6": 15293 + version: 4.3.7 15294 + resolution: "debug@npm:4.3.7" 13926 15295 dependencies: 13927 15296 ms: "npm:^2.1.3" 13928 15297 peerDependenciesMeta: 13929 15298 supports-color: 13930 15299 optional: true 13931 - checksum: 10/1847944c2e3c2c732514b93d11886575625686056cd765336212dc15de2d2b29612b6cd80e1afba767bb8e1803b778caf9973e98169ef1a24a7a7009e1820367 15300 + checksum: 10/71168908b9a78227ab29d5d25fe03c5867750e31ce24bf2c44a86efc5af041758bb56569b0a3d48a9b5344c00a24a777e6f4100ed6dfd9534a42c1dde285125a 13932 15301 languageName: node 13933 15302 linkType: hard 13934 15303 ··· 13961 15330 languageName: node 13962 15331 linkType: hard 13963 15332 15333 + "decode-named-character-reference@npm:^1.0.0": 15334 + version: 1.1.0 15335 + resolution: "decode-named-character-reference@npm:1.1.0" 15336 + dependencies: 15337 + character-entities: "npm:^2.0.0" 15338 + checksum: 10/102970fde2d011f307d3789776e68defd75ba4ade1a34951affd1fabb86cd32026fd809f2658c2b600d839a57b6b6a84e2b3a45166d38c8625d66ca11cd702b8 15339 + languageName: node 15340 + linkType: hard 15341 + 13964 15342 "decode-uri-component@npm:^0.2.2": 13965 15343 version: 0.2.2 13966 15344 resolution: "decode-uri-component@npm:0.2.2" ··· 14146 15524 languageName: node 14147 15525 linkType: hard 14148 15526 15527 + "dequal@npm:^2.0.0": 15528 + version: 2.0.3 15529 + resolution: "dequal@npm:2.0.3" 15530 + checksum: 10/6ff05a7561f33603df87c45e389c9ac0a95e3c056be3da1a0c4702149e3a7f6fe5ffbb294478687ba51a9e95f3a60e8b6b9005993acd79c292c7d15f71964b6b 15531 + languageName: node 15532 + linkType: hard 15533 + 14149 15534 "destr@npm:^2.0.3": 14150 15535 version: 2.0.3 14151 15536 resolution: "destr@npm:2.0.3" 14152 15537 checksum: 10/dbb756baa876810ec0ca4bcb702d86cc3b480ed14f36bf5747718ed211f96bca5520b63a4109eb181ad940ee2a645677d9a63d4a0ed11a7510619dae97317201 15538 + languageName: node 15539 + linkType: hard 15540 + 15541 + "destr@npm:^2.0.5": 15542 + version: 2.0.5 15543 + resolution: "destr@npm:2.0.5" 15544 + checksum: 10/0e4fba62a55a4188c7ab13eed5ebeeda037ead1ab21cf6be40ca39828b258475ad9eb1e7de50a5ea8041705d454a4d090caf9f92b89f03b04d2e229716f7da0a 14153 15545 languageName: node 14154 15546 linkType: hard 14155 15547 ··· 14190 15582 languageName: node 14191 15583 linkType: hard 14192 15584 15585 + "detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.2, detect-libc@npm:^2.0.3": 15586 + version: 2.0.4 15587 + resolution: "detect-libc@npm:2.0.4" 15588 + checksum: 10/136e995f8c5ffbc515955b0175d441b967defd3d5f2268e89fa695e9c7170d8bed17993e31a34b04f0fad33d844a3a598e0fd519a8e9be3cad5f67662d96fee0 15589 + languageName: node 15590 + linkType: hard 15591 + 14193 15592 "detect-libc@npm:^2.0.1": 14194 15593 version: 2.0.3 14195 15594 resolution: "detect-libc@npm:2.0.3" ··· 14211 15610 languageName: node 14212 15611 linkType: hard 14213 15612 15613 + "deterministic-object-hash@npm:^2.0.2": 15614 + version: 2.0.2 15615 + resolution: "deterministic-object-hash@npm:2.0.2" 15616 + dependencies: 15617 + base-64: "npm:^1.0.0" 15618 + checksum: 10/e779e04e66dac2fcdcef3420bd6eeda634cb74729186448998b23cf58b1d3fd47f083e6913d2fff5b97dc9e70f9f74ca254d012b551ef7aad23dba2d15858c20 15619 + languageName: node 15620 + linkType: hard 15621 + 15622 + "devalue@npm:^5.1.1": 15623 + version: 5.1.1 15624 + resolution: "devalue@npm:5.1.1" 15625 + checksum: 10/ff36fe61af61636419eb16692d2fe43d793cdfb17f868bb3560c5485e4c25bc38d472304e61efdec6e806a3c4b450c46247decf59968b4a05ddc7714ea64f885 15626 + languageName: node 15627 + linkType: hard 15628 + 15629 + "devlop@npm:^1.0.0, devlop@npm:^1.1.0": 15630 + version: 1.1.0 15631 + resolution: "devlop@npm:1.1.0" 15632 + dependencies: 15633 + dequal: "npm:^2.0.0" 15634 + checksum: 10/3cc5f903d02d279d6dc4aa71ab6ed9898b9f4d1f861cc5421ce7357893c21b9520de78afb203c92bd650a6977ad0ca98195453a0707a39958cf5fea3b0a8ddd8 15635 + languageName: node 15636 + linkType: hard 15637 + 15638 + "dfa@npm:^1.2.0": 15639 + version: 1.2.0 15640 + resolution: "dfa@npm:1.2.0" 15641 + checksum: 10/3b274fe6d2d70f41c1418ac961f7ae6e7f3b7445f20b98395a55943902100dd2491ef91a60c47c14a72645021f02248ccfad79fa65b10d6075bff34237a35bf8 15642 + languageName: node 15643 + linkType: hard 15644 + 14214 15645 "diff-sequences@npm:^29.6.3": 14215 15646 version: 29.6.3 14216 15647 resolution: "diff-sequences@npm:29.6.3" ··· 14222 15653 version: 4.0.2 14223 15654 resolution: "diff@npm:4.0.2" 14224 15655 checksum: 10/ec09ec2101934ca5966355a229d77afcad5911c92e2a77413efda5455636c4cf2ce84057e2d7715227a2eeeda04255b849bd3ae3a4dd22eb22e86e76456df069 15656 + languageName: node 15657 + linkType: hard 15658 + 15659 + "diff@npm:^5.2.0": 15660 + version: 5.2.0 15661 + resolution: "diff@npm:5.2.0" 15662 + checksum: 10/01b7b440f83a997350a988e9d2f558366c0f90f15be19f4aa7f1bb3109a4e153dfc3b9fbf78e14ea725717017407eeaa2271e3896374a0181e8f52445740846d 14225 15663 languageName: node 14226 15664 linkType: hard 14227 15665 ··· 14251 15689 languageName: node 14252 15690 linkType: hard 14253 15691 15692 + "direction@npm:^2.0.0": 15693 + version: 2.0.1 15694 + resolution: "direction@npm:2.0.1" 15695 + bin: 15696 + direction: cli.js 15697 + checksum: 10/59a423f2f4ca6bbcdd38fb002ae7c06b6af785392162417e6f30a7ca0b406dfa066971d9963ae796e59090b4b4a0d342b1769d19af50985597abf976c1190355 15698 + languageName: node 15699 + linkType: hard 15700 + 15701 + "dlv@npm:^1.1.3": 15702 + version: 1.1.3 15703 + resolution: "dlv@npm:1.1.3" 15704 + checksum: 10/836459ec6b50e43e9ed388a5fc28954be99e3481af3fa4b5d82a600762eb65ef8faacd454097ed7fc2f8a60aea2800d65a4cece5cd0d81ab82b2031f3f759e6e 15705 + languageName: node 15706 + linkType: hard 15707 + 14254 15708 "dns-packet@npm:^5.2.2": 14255 15709 version: 5.6.1 14256 15710 resolution: "dns-packet@npm:5.6.1" ··· 14393 15847 languageName: node 14394 15848 linkType: hard 14395 15849 15850 + "dset@npm:^3.1.4": 15851 + version: 3.1.4 15852 + resolution: "dset@npm:3.1.4" 15853 + checksum: 10/6268c9e2049c8effe6e5a1952f02826e8e32468b5ced781f15f8f3b1c290da37626246fec014fbdd1503413f981dff6abd8a4c718ec9952fd45fccb6ac9de43f 15854 + languageName: node 15855 + linkType: hard 15856 + 14396 15857 "duplexer@npm:^0.1.1": 14397 15858 version: 0.1.2 14398 15859 resolution: "duplexer@npm:0.1.2" ··· 14739 16200 languageName: node 14740 16201 linkType: hard 14741 16202 16203 + "entities@npm:^6.0.0": 16204 + version: 6.0.0 16205 + resolution: "entities@npm:6.0.0" 16206 + checksum: 10/cf37a4aad887ba8573532346da1c78349dccd5b510a9bbddf92fe59b36b18a8b26fe619a862de4e7fd3b8addc6d5e0969261198bbeb690da87297011a61b7066 16207 + languageName: node 16208 + linkType: hard 16209 + 14742 16210 "entities@npm:~2.0.0": 14743 16211 version: 2.0.3 14744 16212 resolution: "entities@npm:2.0.3" ··· 14885 16353 languageName: node 14886 16354 linkType: hard 14887 16355 16356 + "es-module-lexer@npm:^1.6.0": 16357 + version: 1.7.0 16358 + resolution: "es-module-lexer@npm:1.7.0" 16359 + checksum: 10/b6f3e576a3fed4d82b0d0ad4bbf6b3a5ad694d2e7ce8c4a069560da3db6399381eaba703616a182b16dde50ce998af64e07dcf49f2ae48153b9e07be3f107087 16360 + languageName: node 16361 + linkType: hard 16362 + 14888 16363 "es-object-atoms@npm:^1.0.0": 14889 16364 version: 1.0.0 14890 16365 resolution: "es-object-atoms@npm:1.0.0" ··· 14932 16407 languageName: node 14933 16408 linkType: hard 14934 16409 16410 + "esast-util-from-estree@npm:^2.0.0": 16411 + version: 2.0.0 16412 + resolution: "esast-util-from-estree@npm:2.0.0" 16413 + dependencies: 16414 + "@types/estree-jsx": "npm:^1.0.0" 16415 + devlop: "npm:^1.0.0" 16416 + estree-util-visit: "npm:^2.0.0" 16417 + unist-util-position-from-estree: "npm:^2.0.0" 16418 + checksum: 10/b11a13df70e51e0306a8097d691eb2dbde52388bb4d29f89c080fccd00c9fb22a624fad8683ca2ce01761cbf289d3fd480852aec8f5e5a3f0a2abd30aa8dfbe7 16419 + languageName: node 16420 + linkType: hard 16421 + 16422 + "esast-util-from-js@npm:^2.0.0": 16423 + version: 2.0.1 16424 + resolution: "esast-util-from-js@npm:2.0.1" 16425 + dependencies: 16426 + "@types/estree-jsx": "npm:^1.0.0" 16427 + acorn: "npm:^8.0.0" 16428 + esast-util-from-estree: "npm:^2.0.0" 16429 + vfile-message: "npm:^4.0.0" 16430 + checksum: 10/ad3ff18de45d981a19ae35ecd7f47a2954399c2d901f3d9f22ab58309c327215b6e2e39f9c0a8ff58d3fd0435fe81a3ff4257754e1a12bdc590a0b68c9d6e085 16431 + languageName: node 16432 + linkType: hard 16433 + 14935 16434 "esbuild-plugin-es5@npm:^2.1.1": 14936 16435 version: 2.1.1 14937 16436 resolution: "esbuild-plugin-es5@npm:2.1.1" ··· 15042 16541 languageName: node 15043 16542 linkType: hard 15044 16543 16544 + "esbuild@npm:^0.25.0": 16545 + version: 0.25.3 16546 + resolution: "esbuild@npm:0.25.3" 16547 + dependencies: 16548 + "@esbuild/aix-ppc64": "npm:0.25.3" 16549 + "@esbuild/android-arm": "npm:0.25.3" 16550 + "@esbuild/android-arm64": "npm:0.25.3" 16551 + "@esbuild/android-x64": "npm:0.25.3" 16552 + "@esbuild/darwin-arm64": "npm:0.25.3" 16553 + "@esbuild/darwin-x64": "npm:0.25.3" 16554 + "@esbuild/freebsd-arm64": "npm:0.25.3" 16555 + "@esbuild/freebsd-x64": "npm:0.25.3" 16556 + "@esbuild/linux-arm": "npm:0.25.3" 16557 + "@esbuild/linux-arm64": "npm:0.25.3" 16558 + "@esbuild/linux-ia32": "npm:0.25.3" 16559 + "@esbuild/linux-loong64": "npm:0.25.3" 16560 + "@esbuild/linux-mips64el": "npm:0.25.3" 16561 + "@esbuild/linux-ppc64": "npm:0.25.3" 16562 + "@esbuild/linux-riscv64": "npm:0.25.3" 16563 + "@esbuild/linux-s390x": "npm:0.25.3" 16564 + "@esbuild/linux-x64": "npm:0.25.3" 16565 + "@esbuild/netbsd-arm64": "npm:0.25.3" 16566 + "@esbuild/netbsd-x64": "npm:0.25.3" 16567 + "@esbuild/openbsd-arm64": "npm:0.25.3" 16568 + "@esbuild/openbsd-x64": "npm:0.25.3" 16569 + "@esbuild/sunos-x64": "npm:0.25.3" 16570 + "@esbuild/win32-arm64": "npm:0.25.3" 16571 + "@esbuild/win32-ia32": "npm:0.25.3" 16572 + "@esbuild/win32-x64": "npm:0.25.3" 16573 + dependenciesMeta: 16574 + "@esbuild/aix-ppc64": 16575 + optional: true 16576 + "@esbuild/android-arm": 16577 + optional: true 16578 + "@esbuild/android-arm64": 16579 + optional: true 16580 + "@esbuild/android-x64": 16581 + optional: true 16582 + "@esbuild/darwin-arm64": 16583 + optional: true 16584 + "@esbuild/darwin-x64": 16585 + optional: true 16586 + "@esbuild/freebsd-arm64": 16587 + optional: true 16588 + "@esbuild/freebsd-x64": 16589 + optional: true 16590 + "@esbuild/linux-arm": 16591 + optional: true 16592 + "@esbuild/linux-arm64": 16593 + optional: true 16594 + "@esbuild/linux-ia32": 16595 + optional: true 16596 + "@esbuild/linux-loong64": 16597 + optional: true 16598 + "@esbuild/linux-mips64el": 16599 + optional: true 16600 + "@esbuild/linux-ppc64": 16601 + optional: true 16602 + "@esbuild/linux-riscv64": 16603 + optional: true 16604 + "@esbuild/linux-s390x": 16605 + optional: true 16606 + "@esbuild/linux-x64": 16607 + optional: true 16608 + "@esbuild/netbsd-arm64": 16609 + optional: true 16610 + "@esbuild/netbsd-x64": 16611 + optional: true 16612 + "@esbuild/openbsd-arm64": 16613 + optional: true 16614 + "@esbuild/openbsd-x64": 16615 + optional: true 16616 + "@esbuild/sunos-x64": 16617 + optional: true 16618 + "@esbuild/win32-arm64": 16619 + optional: true 16620 + "@esbuild/win32-ia32": 16621 + optional: true 16622 + "@esbuild/win32-x64": 16623 + optional: true 16624 + bin: 16625 + esbuild: bin/esbuild 16626 + checksum: 10/f1ff72289938330312926421f90eea442025cbbac295a7a2e8cfc2abbd9e3a8bc1502883468b0487e4020f1369e4726c851a2fa4b65a7c71331940072c3a1808 16627 + languageName: node 16628 + linkType: hard 16629 + 15045 16630 "escalade@npm:^3.1.1, escalade@npm:^3.1.2": 15046 16631 version: 3.1.2 15047 16632 resolution: "escalade@npm:3.1.2" ··· 15081 16666 version: 4.0.0 15082 16667 resolution: "escape-string-regexp@npm:4.0.0" 15083 16668 checksum: 10/98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 16669 + languageName: node 16670 + linkType: hard 16671 + 16672 + "escape-string-regexp@npm:^5.0.0": 16673 + version: 5.0.0 16674 + resolution: "escape-string-regexp@npm:5.0.0" 16675 + checksum: 10/20daabe197f3cb198ec28546deebcf24b3dbb1a5a269184381b3116d12f0532e06007f4bc8da25669d6a7f8efb68db0758df4cd981f57bc5b57f521a3e12c59e 15084 16676 languageName: node 15085 16677 linkType: hard 15086 16678 ··· 15273 16865 languageName: node 15274 16866 linkType: hard 15275 16867 16868 + "estree-util-attach-comments@npm:^3.0.0": 16869 + version: 3.0.0 16870 + resolution: "estree-util-attach-comments@npm:3.0.0" 16871 + dependencies: 16872 + "@types/estree": "npm:^1.0.0" 16873 + checksum: 10/a788b5bb7ab98311ab5e96628e40d2fc5d74eae5e5a1ca9769b4749ec5bf9747b00e200c597dc22b8d492a311933e78989930ef3a753556e375a41c360df19ac 16874 + languageName: node 16875 + linkType: hard 16876 + 16877 + "estree-util-build-jsx@npm:^3.0.0": 16878 + version: 3.0.1 16879 + resolution: "estree-util-build-jsx@npm:3.0.1" 16880 + dependencies: 16881 + "@types/estree-jsx": "npm:^1.0.0" 16882 + devlop: "npm:^1.0.0" 16883 + estree-util-is-identifier-name: "npm:^3.0.0" 16884 + estree-walker: "npm:^3.0.0" 16885 + checksum: 10/08b43edd1d97ecbaa8e3be891b75bdab426734e68a9520bafd67ee61d04dc1680a6a7cb331b61b3b323952016cce7d947562bf3ed51d7ec6701a4463a3bacdb5 16886 + languageName: node 16887 + linkType: hard 16888 + 16889 + "estree-util-is-identifier-name@npm:^3.0.0": 16890 + version: 3.0.0 16891 + resolution: "estree-util-is-identifier-name@npm:3.0.0" 16892 + checksum: 10/cdc9187614fdb269d714eddfdf72c270a79daa9ed51e259bb78527983be6dcc68da6a914ccc41175b662194c67fbd2a1cd262f85fac1eef7111cfddfaf6f77f8 16893 + languageName: node 16894 + linkType: hard 16895 + 16896 + "estree-util-scope@npm:^1.0.0": 16897 + version: 1.0.0 16898 + resolution: "estree-util-scope@npm:1.0.0" 16899 + dependencies: 16900 + "@types/estree": "npm:^1.0.0" 16901 + devlop: "npm:^1.0.0" 16902 + checksum: 10/7807aaaf8651150fefee19cb60a670884f677959cc05513369c0b9646a329b132bccc9d6bbf19411a8a55a0840530f4e93cef5bba92ae9f347ac7c2ceef37cdd 16903 + languageName: node 16904 + linkType: hard 16905 + 16906 + "estree-util-to-js@npm:^2.0.0": 16907 + version: 2.0.0 16908 + resolution: "estree-util-to-js@npm:2.0.0" 16909 + dependencies: 16910 + "@types/estree-jsx": "npm:^1.0.0" 16911 + astring: "npm:^1.8.0" 16912 + source-map: "npm:^0.7.0" 16913 + checksum: 10/4a1673d9c859d8fa8a3d87d83c770390ce3cde70978891f3ef1692d57b4f852e0d5a94d18c656bd6431e0be29a64fd041a1fb8e2a579a4484d47142d2a1addb5 16914 + languageName: node 16915 + linkType: hard 16916 + 16917 + "estree-util-visit@npm:^2.0.0": 16918 + version: 2.0.0 16919 + resolution: "estree-util-visit@npm:2.0.0" 16920 + dependencies: 16921 + "@types/estree-jsx": "npm:^1.0.0" 16922 + "@types/unist": "npm:^3.0.0" 16923 + checksum: 10/e3c39d34c8b42fc2067dfa64d460f754b43cca4b573b031a5e5bb185e02c4efc753353197815bbb094b8149a781ab76f18116bec8056b5ff375162e68bffa0bd 16924 + languageName: node 16925 + linkType: hard 16926 + 16927 + "estree-walker@npm:^2.0.2": 16928 + version: 2.0.2 16929 + resolution: "estree-walker@npm:2.0.2" 16930 + checksum: 10/b02109c5d46bc2ed47de4990eef770f7457b1159a229f0999a09224d2b85ffeed2d7679cffcff90aeb4448e94b0168feb5265b209cdec29aad50a3d6e93d21e2 16931 + languageName: node 16932 + linkType: hard 16933 + 16934 + "estree-walker@npm:^3.0.0, estree-walker@npm:^3.0.3": 16935 + version: 3.0.3 16936 + resolution: "estree-walker@npm:3.0.3" 16937 + dependencies: 16938 + "@types/estree": "npm:^1.0.0" 16939 + checksum: 10/a65728d5727b71de172c5df323385755a16c0fdab8234dc756c3854cfee343261ddfbb72a809a5660fac8c75d960bb3e21aa898c2d7e9b19bb298482ca58a3af 16940 + languageName: node 16941 + linkType: hard 16942 + 15276 16943 "esutils@npm:^2.0.2": 15277 16944 version: 2.0.3 15278 16945 resolution: "esutils@npm:2.0.3" ··· 15456 17123 signal-exit: "npm:^4.1.0" 15457 17124 strip-final-newline: "npm:^3.0.0" 15458 17125 checksum: 10/d2ab5fe1e2bb92b9788864d0713f1fce9a07c4594e272c0c97bc18c90569897ab262e4ea58d27a694d288227a2e24f16f5e2575b44224ad9983b799dc7f1098d 17126 + languageName: node 17127 + linkType: hard 17128 + 17129 + "expand-template@npm:^2.0.3": 17130 + version: 2.0.3 17131 + resolution: "expand-template@npm:2.0.3" 17132 + checksum: 10/588c19847216421ed92befb521767b7018dc88f88b0576df98cb242f20961425e96a92cbece525ef28cc5becceae5d544ae0f5b9b5e2aa05acb13716ca5b3099 15459 17133 languageName: node 15460 17134 linkType: hard 15461 17135 ··· 15907 17581 languageName: node 15908 17582 linkType: hard 15909 17583 15910 - "extend@npm:^3.0.2": 17584 + "expressive-code@npm:^0.41.2": 17585 + version: 0.41.2 17586 + resolution: "expressive-code@npm:0.41.2" 17587 + dependencies: 17588 + "@expressive-code/core": "npm:^0.41.2" 17589 + "@expressive-code/plugin-frames": "npm:^0.41.2" 17590 + "@expressive-code/plugin-shiki": "npm:^0.41.2" 17591 + "@expressive-code/plugin-text-markers": "npm:^0.41.2" 17592 + checksum: 10/898bea4448cc00426ba649b2a5386b0616f24f5312d23356def1e4d5feb99cad29b82ba37752c88f53690137e48834e7cc7d470f223d4f601df9c7d151ff6080 17593 + languageName: node 17594 + linkType: hard 17595 + 17596 + "extend@npm:^3.0.0, extend@npm:^3.0.2": 15911 17597 version: 3.0.2 15912 17598 resolution: "extend@npm:3.0.2" 15913 17599 checksum: 10/59e89e2dc798ec0f54b36d82f32a27d5f6472c53974f61ca098db5d4648430b725387b53449a34df38fd0392045434426b012f302b3cc049a6500ccf82877e4e ··· 15963 17649 version: 3.1.3 15964 17650 resolution: "fast-deep-equal@npm:3.1.3" 15965 17651 checksum: 10/e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d 17652 + languageName: node 17653 + linkType: hard 17654 + 17655 + "fast-fifo@npm:^1.2.0, fast-fifo@npm:^1.3.2": 17656 + version: 1.3.2 17657 + resolution: "fast-fifo@npm:1.3.2" 17658 + checksum: 10/6bfcba3e4df5af7be3332703b69a7898a8ed7020837ec4395bb341bd96cc3a6d86c3f6071dd98da289618cf2234c70d84b2a6f09a33dd6f988b1ff60d8e54275 15966 17659 languageName: node 15967 17660 linkType: hard 15968 17661 ··· 16103 17796 languageName: node 16104 17797 linkType: hard 16105 17798 17799 + "fdir@npm:^6.4.4": 17800 + version: 6.4.4 17801 + resolution: "fdir@npm:6.4.4" 17802 + peerDependencies: 17803 + picomatch: ^3 || ^4 17804 + peerDependenciesMeta: 17805 + picomatch: 17806 + optional: true 17807 + checksum: 10/d0000d6b790059b35f4ed19acc8847a66452e0bc68b28766c929ffd523e5ec2083811fc8a545e4a1d4945ce70e887b3a610c145c681073b506143ae3076342ed 17808 + languageName: node 17809 + linkType: hard 17810 + 16106 17811 "fetch-retry@npm:^4.1.1": 16107 17812 version: 4.1.1 16108 17813 resolution: "fetch-retry@npm:4.1.1" ··· 16369 18074 languageName: node 16370 18075 linkType: hard 16371 18076 18077 + "flattie@npm:^1.1.1": 18078 + version: 1.1.1 18079 + resolution: "flattie@npm:1.1.1" 18080 + checksum: 10/c5e475c9358ff78ddbf8b211850bfdca041f2e49508ea0419a6cd19e94ffdaf09ee2f6e4379460c91929b203eafc75b3c34ae829809f598a4cc0e58782dc2aaa 18081 + languageName: node 18082 + linkType: hard 18083 + 16372 18084 "flora-colossus@npm:^2.0.0": 16373 18085 version: 2.0.0 16374 18086 resolution: "flora-colossus@npm:2.0.0" ··· 16429 18141 languageName: node 16430 18142 linkType: hard 16431 18143 18144 + "fontkit@npm:^2.0.2": 18145 + version: 2.0.4 18146 + resolution: "fontkit@npm:2.0.4" 18147 + dependencies: 18148 + "@swc/helpers": "npm:^0.5.12" 18149 + brotli: "npm:^1.3.2" 18150 + clone: "npm:^2.1.2" 18151 + dfa: "npm:^1.2.0" 18152 + fast-deep-equal: "npm:^3.1.3" 18153 + restructure: "npm:^3.0.0" 18154 + tiny-inflate: "npm:^1.0.3" 18155 + unicode-properties: "npm:^1.4.0" 18156 + unicode-trie: "npm:^2.0.0" 18157 + checksum: 10/15ecf3d3411d507c37fbc3fb5b346fe4a50e1e3ed14dc469f56d49c23676b0eaa1ee07d352cfed726810b03441c22fcf547d56cc4b0e70191b50c8e9cdc214a0 18158 + languageName: node 18159 + linkType: hard 18160 + 16432 18161 "for-each@npm:^0.3.3": 16433 18162 version: 0.3.3 16434 18163 resolution: "for-each@npm:0.3.3" ··· 16712 18441 languageName: node 16713 18442 linkType: hard 16714 18443 16715 - "fsevents@npm:^2.3.2, fsevents@npm:~2.3.2": 18444 + "fsevents@npm:^2.3.2, fsevents@npm:~2.3.2, fsevents@npm:~2.3.3": 16716 18445 version: 2.3.3 16717 18446 resolution: "fsevents@npm:2.3.3" 16718 18447 dependencies: ··· 16722 18451 languageName: node 16723 18452 linkType: hard 16724 18453 16725 - "fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin<compat/fsevents>": 18454 + "fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin<compat/fsevents>, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin<compat/fsevents>": 16726 18455 version: 2.3.3 16727 18456 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin<compat/fsevents>::version=2.3.3&hash=df0bf1" 16728 18457 dependencies: ··· 17075 18804 languageName: node 17076 18805 linkType: hard 17077 18806 18807 + "github-from-package@npm:0.0.0": 18808 + version: 0.0.0 18809 + resolution: "github-from-package@npm:0.0.0" 18810 + checksum: 10/2a091ba07fbce22205642543b4ea8aaf068397e1433c00ae0f9de36a3607baf5bcc14da97fbb798cfca6393b3c402031fca06d8b491a44206d6efef391c58537 18811 + languageName: node 18812 + linkType: hard 18813 + 18814 + "github-slugger@npm:^2.0.0": 18815 + version: 2.0.0 18816 + resolution: "github-slugger@npm:2.0.0" 18817 + checksum: 10/2fb15d78262eeba1e68671f048c62d05ed21e51281cccc7b1c9e8e089e8510b3037fb648b8ba27290e60534df2cb251312a1e7e813204495df621220192fd600 18818 + languageName: node 18819 + linkType: hard 18820 + 17078 18821 "github-url-to-object@npm:^4.0.4": 17079 18822 version: 4.0.6 17080 18823 resolution: "github-url-to-object@npm:4.0.6" ··· 17386 19129 languageName: node 17387 19130 linkType: hard 17388 19131 19132 + "h3@npm:^1.15.2": 19133 + version: 1.15.3 19134 + resolution: "h3@npm:1.15.3" 19135 + dependencies: 19136 + cookie-es: "npm:^1.2.2" 19137 + crossws: "npm:^0.3.4" 19138 + defu: "npm:^6.1.4" 19139 + destr: "npm:^2.0.5" 19140 + iron-webcrypto: "npm:^1.2.1" 19141 + node-mock-http: "npm:^1.0.0" 19142 + radix3: "npm:^1.1.2" 19143 + ufo: "npm:^1.6.1" 19144 + uncrypto: "npm:^0.1.3" 19145 + checksum: 10/bfd59a0d914555a334f364efcb5acf7f58a6e11e5ff2acfb762131a16740eb5154e5a3f0d33f4ccfa1159e07f572e9ca9663674beb4670284ab08b7c9b877c2d 19146 + languageName: node 19147 + linkType: hard 19148 + 17389 19149 "handle-thing@npm:^2.0.0": 17390 19150 version: 2.0.1 17391 19151 resolution: "handle-thing@npm:2.0.1" ··· 17497 19257 languageName: node 17498 19258 linkType: hard 17499 19259 19260 + "hast-util-embedded@npm:^3.0.0": 19261 + version: 3.0.0 19262 + resolution: "hast-util-embedded@npm:3.0.0" 19263 + dependencies: 19264 + "@types/hast": "npm:^3.0.0" 19265 + hast-util-is-element: "npm:^3.0.0" 19266 + checksum: 10/ccb26926144dd72f9eec2307ceb45ff991c382c0cd20c517519a6a30e46b4e8c683bf6e2906cb0288ead880ca8fdfeaa1610de68ef8c0d12340d101352ba8a1a 19267 + languageName: node 19268 + linkType: hard 19269 + 19270 + "hast-util-format@npm:^1.0.0": 19271 + version: 1.1.0 19272 + resolution: "hast-util-format@npm:1.1.0" 19273 + dependencies: 19274 + "@types/hast": "npm:^3.0.0" 19275 + hast-util-embedded: "npm:^3.0.0" 19276 + hast-util-minify-whitespace: "npm:^1.0.0" 19277 + hast-util-phrasing: "npm:^3.0.0" 19278 + hast-util-whitespace: "npm:^3.0.0" 19279 + html-whitespace-sensitive-tag-names: "npm:^3.0.0" 19280 + unist-util-visit-parents: "npm:^6.0.0" 19281 + checksum: 10/512a30c6eece2cab5bca98656611379a062fa2fbab9df3e8b75f52304e642a3a955fdc31f412b6d61a39dd0714e2f042d72cf2f94c8967ecd6fd4f8e93b524cb 19282 + languageName: node 19283 + linkType: hard 19284 + 19285 + "hast-util-from-html@npm:^2.0.0, hast-util-from-html@npm:^2.0.1, hast-util-from-html@npm:^2.0.3": 19286 + version: 2.0.3 19287 + resolution: "hast-util-from-html@npm:2.0.3" 19288 + dependencies: 19289 + "@types/hast": "npm:^3.0.0" 19290 + devlop: "npm:^1.1.0" 19291 + hast-util-from-parse5: "npm:^8.0.0" 19292 + parse5: "npm:^7.0.0" 19293 + vfile: "npm:^6.0.0" 19294 + vfile-message: "npm:^4.0.0" 19295 + checksum: 10/cdd8ceae114d7ff6d4a81d9d7314c53299acfaca3d959a5894e80eb013c0850af613e2688f1682945c2793e0d9e1acb105560295fd8f141ab7b75f4b2e49cb2c 19296 + languageName: node 19297 + linkType: hard 19298 + 19299 + "hast-util-from-parse5@npm:^8.0.0": 19300 + version: 8.0.3 19301 + resolution: "hast-util-from-parse5@npm:8.0.3" 19302 + dependencies: 19303 + "@types/hast": "npm:^3.0.0" 19304 + "@types/unist": "npm:^3.0.0" 19305 + devlop: "npm:^1.0.0" 19306 + hastscript: "npm:^9.0.0" 19307 + property-information: "npm:^7.0.0" 19308 + vfile: "npm:^6.0.0" 19309 + vfile-location: "npm:^5.0.0" 19310 + web-namespaces: "npm:^2.0.0" 19311 + checksum: 10/539c945c550cfef394a89dcff6e4de26768a748a7288ddce6f59554dd271b663b8398d58ace434264e965aaf3828fdbff86f9109d7fa639b3fe34dedcad4a5df 19312 + languageName: node 19313 + linkType: hard 19314 + 19315 + "hast-util-has-property@npm:^3.0.0": 19316 + version: 3.0.0 19317 + resolution: "hast-util-has-property@npm:3.0.0" 19318 + dependencies: 19319 + "@types/hast": "npm:^3.0.0" 19320 + checksum: 10/f82b6d65cbaa90f63edab97d7ad771182f515fb9e08e461e0443954d51c1b568814b56d128a73f37326f6005ab0b35c01624d46259a4d0b850e55849f1ff3035 19321 + languageName: node 19322 + linkType: hard 19323 + 19324 + "hast-util-is-body-ok-link@npm:^3.0.0": 19325 + version: 3.0.1 19326 + resolution: "hast-util-is-body-ok-link@npm:3.0.1" 19327 + dependencies: 19328 + "@types/hast": "npm:^3.0.0" 19329 + checksum: 10/ec265d0262f130d2e9b688024175aedb27c9e1402d175ed8834e79cb465934d99adf911cd5a9644ec3f3ce55c40fa2a314ee48c8dd928b85f6c5df83b3990d48 19330 + languageName: node 19331 + linkType: hard 19332 + 19333 + "hast-util-is-element@npm:^3.0.0": 19334 + version: 3.0.0 19335 + resolution: "hast-util-is-element@npm:3.0.0" 19336 + dependencies: 19337 + "@types/hast": "npm:^3.0.0" 19338 + checksum: 10/b4e6d84c763ffdc44198ba0c4a5a7430794a7b2c1eec699d37776ea9832eef79f129726c175982103eb3b21f531a6bfd2fa43ce26e1ed6d8f6a87c102ba212c8 19339 + languageName: node 19340 + linkType: hard 19341 + 19342 + "hast-util-minify-whitespace@npm:^1.0.0": 19343 + version: 1.0.1 19344 + resolution: "hast-util-minify-whitespace@npm:1.0.1" 19345 + dependencies: 19346 + "@types/hast": "npm:^3.0.0" 19347 + hast-util-embedded: "npm:^3.0.0" 19348 + hast-util-is-element: "npm:^3.0.0" 19349 + hast-util-whitespace: "npm:^3.0.0" 19350 + unist-util-is: "npm:^6.0.0" 19351 + checksum: 10/e43d3b1cd6f3ebd2547acdd209e75c8c239a0b3e7d6b12cc706da39f888b4300648deb982b1760186e676a39982f916e6bfba9c6cc08910b88de00a49fced650 19352 + languageName: node 19353 + linkType: hard 19354 + 19355 + "hast-util-parse-selector@npm:^4.0.0": 19356 + version: 4.0.0 19357 + resolution: "hast-util-parse-selector@npm:4.0.0" 19358 + dependencies: 19359 + "@types/hast": "npm:^3.0.0" 19360 + checksum: 10/76087670d3b0b50b23a6cb70bca53a6176d6608307ccdbb3ed18b650b82e7c3513bfc40348f1389dc0c5ae872b9a768851f4335f44654abd7deafd6974c52402 19361 + languageName: node 19362 + linkType: hard 19363 + 19364 + "hast-util-phrasing@npm:^3.0.0": 19365 + version: 3.0.1 19366 + resolution: "hast-util-phrasing@npm:3.0.1" 19367 + dependencies: 19368 + "@types/hast": "npm:^3.0.0" 19369 + hast-util-embedded: "npm:^3.0.0" 19370 + hast-util-has-property: "npm:^3.0.0" 19371 + hast-util-is-body-ok-link: "npm:^3.0.0" 19372 + hast-util-is-element: "npm:^3.0.0" 19373 + checksum: 10/aff54f89b14af298e33379e0b1053bb01fddb089cfe7f40a6c5f9d7477d89e42f5e32cd6617e246c18a0e9da1aa0b62ab441b14bd8ce788fd0fa594e77b05042 19374 + languageName: node 19375 + linkType: hard 19376 + 19377 + "hast-util-raw@npm:^9.0.0": 19378 + version: 9.1.0 19379 + resolution: "hast-util-raw@npm:9.1.0" 19380 + dependencies: 19381 + "@types/hast": "npm:^3.0.0" 19382 + "@types/unist": "npm:^3.0.0" 19383 + "@ungap/structured-clone": "npm:^1.0.0" 19384 + hast-util-from-parse5: "npm:^8.0.0" 19385 + hast-util-to-parse5: "npm:^8.0.0" 19386 + html-void-elements: "npm:^3.0.0" 19387 + mdast-util-to-hast: "npm:^13.0.0" 19388 + parse5: "npm:^7.0.0" 19389 + unist-util-position: "npm:^5.0.0" 19390 + unist-util-visit: "npm:^5.0.0" 19391 + vfile: "npm:^6.0.0" 19392 + web-namespaces: "npm:^2.0.0" 19393 + zwitch: "npm:^2.0.0" 19394 + checksum: 10/fa304d08a9fce0f54b2baa18d15c45cb5cac695cbee3567b8ccbd9a57fa295c0fb23d238daca1cf0135ad8d538bb341dcd7d9da03f8b7d12e6980a9f8c4340ae 19395 + languageName: node 19396 + linkType: hard 19397 + 19398 + "hast-util-select@npm:^6.0.2": 19399 + version: 6.0.4 19400 + resolution: "hast-util-select@npm:6.0.4" 19401 + dependencies: 19402 + "@types/hast": "npm:^3.0.0" 19403 + "@types/unist": "npm:^3.0.0" 19404 + bcp-47-match: "npm:^2.0.0" 19405 + comma-separated-tokens: "npm:^2.0.0" 19406 + css-selector-parser: "npm:^3.0.0" 19407 + devlop: "npm:^1.0.0" 19408 + direction: "npm:^2.0.0" 19409 + hast-util-has-property: "npm:^3.0.0" 19410 + hast-util-to-string: "npm:^3.0.0" 19411 + hast-util-whitespace: "npm:^3.0.0" 19412 + nth-check: "npm:^2.0.0" 19413 + property-information: "npm:^7.0.0" 19414 + space-separated-tokens: "npm:^2.0.0" 19415 + unist-util-visit: "npm:^5.0.0" 19416 + zwitch: "npm:^2.0.0" 19417 + checksum: 10/f4732960280d7459833ee7e15016414d1a745fd0fddcd7ab2478e251f203e54afbeacab388e777ce2878113c7348d3d66b186da6ecd0d167a32274e18d520e31 19418 + languageName: node 19419 + linkType: hard 19420 + 19421 + "hast-util-to-estree@npm:^3.0.0": 19422 + version: 3.1.3 19423 + resolution: "hast-util-to-estree@npm:3.1.3" 19424 + dependencies: 19425 + "@types/estree": "npm:^1.0.0" 19426 + "@types/estree-jsx": "npm:^1.0.0" 19427 + "@types/hast": "npm:^3.0.0" 19428 + comma-separated-tokens: "npm:^2.0.0" 19429 + devlop: "npm:^1.0.0" 19430 + estree-util-attach-comments: "npm:^3.0.0" 19431 + estree-util-is-identifier-name: "npm:^3.0.0" 19432 + hast-util-whitespace: "npm:^3.0.0" 19433 + mdast-util-mdx-expression: "npm:^2.0.0" 19434 + mdast-util-mdx-jsx: "npm:^3.0.0" 19435 + mdast-util-mdxjs-esm: "npm:^2.0.0" 19436 + property-information: "npm:^7.0.0" 19437 + space-separated-tokens: "npm:^2.0.0" 19438 + style-to-js: "npm:^1.0.0" 19439 + unist-util-position: "npm:^5.0.0" 19440 + zwitch: "npm:^2.0.0" 19441 + checksum: 10/efe69c8af68f021d853e70916c6e940765be519aec8703765898c1c3814424b0470f70c0272cf4ac06dcaf6d6f3cc781ebf034701ed240a33ac691d1f5eaf65b 19442 + languageName: node 19443 + linkType: hard 19444 + 19445 + "hast-util-to-html@npm:^9.0.0, hast-util-to-html@npm:^9.0.1, hast-util-to-html@npm:^9.0.5": 19446 + version: 9.0.5 19447 + resolution: "hast-util-to-html@npm:9.0.5" 19448 + dependencies: 19449 + "@types/hast": "npm:^3.0.0" 19450 + "@types/unist": "npm:^3.0.0" 19451 + ccount: "npm:^2.0.0" 19452 + comma-separated-tokens: "npm:^2.0.0" 19453 + hast-util-whitespace: "npm:^3.0.0" 19454 + html-void-elements: "npm:^3.0.0" 19455 + mdast-util-to-hast: "npm:^13.0.0" 19456 + property-information: "npm:^7.0.0" 19457 + space-separated-tokens: "npm:^2.0.0" 19458 + stringify-entities: "npm:^4.0.0" 19459 + zwitch: "npm:^2.0.4" 19460 + checksum: 10/4278e5246f43adf7a30bf3b87db4a4e628b5362b8c149eb4360bf7e0f731f81fa31e4e844e8090d1dd5f739d0884678f8165b28f97c14139e4da4f945f9ff5f7 19461 + languageName: node 19462 + linkType: hard 19463 + 19464 + "hast-util-to-jsx-runtime@npm:^2.0.0": 19465 + version: 2.3.6 19466 + resolution: "hast-util-to-jsx-runtime@npm:2.3.6" 19467 + dependencies: 19468 + "@types/estree": "npm:^1.0.0" 19469 + "@types/hast": "npm:^3.0.0" 19470 + "@types/unist": "npm:^3.0.0" 19471 + comma-separated-tokens: "npm:^2.0.0" 19472 + devlop: "npm:^1.0.0" 19473 + estree-util-is-identifier-name: "npm:^3.0.0" 19474 + hast-util-whitespace: "npm:^3.0.0" 19475 + mdast-util-mdx-expression: "npm:^2.0.0" 19476 + mdast-util-mdx-jsx: "npm:^3.0.0" 19477 + mdast-util-mdxjs-esm: "npm:^2.0.0" 19478 + property-information: "npm:^7.0.0" 19479 + space-separated-tokens: "npm:^2.0.0" 19480 + style-to-js: "npm:^1.0.0" 19481 + unist-util-position: "npm:^5.0.0" 19482 + vfile-message: "npm:^4.0.0" 19483 + checksum: 10/111bd69f482952c7591cb4e1d3face25f1c18849b310a4d6cacc91e2d2cbc965d455fad35c059b8f0cfd762e933b826a7090b6f3098dece08307a6569de8f1d8 19484 + languageName: node 19485 + linkType: hard 19486 + 19487 + "hast-util-to-parse5@npm:^8.0.0": 19488 + version: 8.0.0 19489 + resolution: "hast-util-to-parse5@npm:8.0.0" 19490 + dependencies: 19491 + "@types/hast": "npm:^3.0.0" 19492 + comma-separated-tokens: "npm:^2.0.0" 19493 + devlop: "npm:^1.0.0" 19494 + property-information: "npm:^6.0.0" 19495 + space-separated-tokens: "npm:^2.0.0" 19496 + web-namespaces: "npm:^2.0.0" 19497 + zwitch: "npm:^2.0.0" 19498 + checksum: 10/ba59d0913ba7e914d8b0a50955c06806a6868445c56796ac9129d58185e86d7ff24037246767aba2ea904d9dee8c09b8ff303630bcd854431fdc1bbee2164c36 19499 + languageName: node 19500 + linkType: hard 19501 + 19502 + "hast-util-to-string@npm:^3.0.0": 19503 + version: 3.0.1 19504 + resolution: "hast-util-to-string@npm:3.0.1" 19505 + dependencies: 19506 + "@types/hast": "npm:^3.0.0" 19507 + checksum: 10/a569518313a648bc86e712858bc907d1f65137ebba87bc71180dbc2f24f194f6035019ffa8e38b1f7897672d45a337046a4c9964ce6d2593953b5069e10d31c2 19508 + languageName: node 19509 + linkType: hard 19510 + 19511 + "hast-util-to-text@npm:^4.0.1, hast-util-to-text@npm:^4.0.2": 19512 + version: 4.0.2 19513 + resolution: "hast-util-to-text@npm:4.0.2" 19514 + dependencies: 19515 + "@types/hast": "npm:^3.0.0" 19516 + "@types/unist": "npm:^3.0.0" 19517 + hast-util-is-element: "npm:^3.0.0" 19518 + unist-util-find-after: "npm:^5.0.0" 19519 + checksum: 10/71241e486a155b186b06355fa3bbdaa88602aa108a44ab00a6992e5cabcd7858b43dcb1211c5b17bfe76dddbe9acbbd97408a8e483c1ce83834032778bccd157 19520 + languageName: node 19521 + linkType: hard 19522 + 19523 + "hast-util-whitespace@npm:^3.0.0": 19524 + version: 3.0.0 19525 + resolution: "hast-util-whitespace@npm:3.0.0" 19526 + dependencies: 19527 + "@types/hast": "npm:^3.0.0" 19528 + checksum: 10/8c7e9eeb8131fc18702f3a42623eb6b0b09d470347aa8badacac70e6d91f79657ab8c6b57c4c6fee3658cff405fac30e816d1cdfb3ed1fbf6045d0a4555cf4d4 19529 + languageName: node 19530 + linkType: hard 19531 + 19532 + "hastscript@npm:^9.0.0": 19533 + version: 9.0.1 19534 + resolution: "hastscript@npm:9.0.1" 19535 + dependencies: 19536 + "@types/hast": "npm:^3.0.0" 19537 + comma-separated-tokens: "npm:^2.0.0" 19538 + hast-util-parse-selector: "npm:^4.0.0" 19539 + property-information: "npm:^7.0.0" 19540 + space-separated-tokens: "npm:^2.0.0" 19541 + checksum: 10/9aa8135faf0307807cca4075bef4e3403ae1ce959ad4b9e6720892ba957d58ff98b2f60b5eb3ac67d88ae897dc918997299cd4249d7ac602a0066dd46442c5d4 19542 + languageName: node 19543 + linkType: hard 19544 + 17500 19545 "he@npm:^1.2.0": 17501 19546 version: 1.2.0 17502 19547 resolution: "he@npm:1.2.0" ··· 17663 19708 version: 2.5.2 17664 19709 resolution: "html-entities@npm:2.5.2" 17665 19710 checksum: 10/4ec12ebdf2d5ba8192c68e1aef3c1e4a4f36b29246a0a88464fe278a54517d0196d3489af46a3145c7ecacb4fc5fd50497be19eb713b810acab3f0efcf36fdc2 19711 + languageName: node 19712 + linkType: hard 19713 + 19714 + "html-escaper@npm:3.0.3": 19715 + version: 3.0.3 19716 + resolution: "html-escaper@npm:3.0.3" 19717 + checksum: 10/7795141912bd82f0ece3c65fa329cdf40cd0ea6c1b9c556ac88ff2212e878ddc55b64219709f5fcb252406fe420ae15e5bd5626e36c0215ff1054f9d601ca382 17666 19718 languageName: node 17667 19719 linkType: hard 17668 19720 ··· 17683 19735 languageName: node 17684 19736 linkType: hard 17685 19737 19738 + "html-void-elements@npm:^3.0.0": 19739 + version: 3.0.0 19740 + resolution: "html-void-elements@npm:3.0.0" 19741 + checksum: 10/59be397525465a7489028afa064c55763d9cccd1d7d9f630cca47137317f0e897a9ca26cef7e745e7cff1abc44260cfa407742b243a54261dfacd42230e94fce 19742 + languageName: node 19743 + linkType: hard 19744 + 17686 19745 "html-webpack-plugin@npm:^5.5.3": 17687 19746 version: 5.6.0 17688 19747 resolution: "html-webpack-plugin@npm:5.6.0" ··· 17701 19760 webpack: 17702 19761 optional: true 17703 19762 checksum: 10/d651f3a88a7c932c72c6a30f0fdd610b49a864a69f1ddb34562c750f1602ea471e27fd8fc32c01adadd484b38fa6b74f055d1ccce26e5f8fcf814ee0d398a121 19763 + languageName: node 19764 + linkType: hard 19765 + 19766 + "html-whitespace-sensitive-tag-names@npm:^3.0.0": 19767 + version: 3.0.1 19768 + resolution: "html-whitespace-sensitive-tag-names@npm:3.0.1" 19769 + checksum: 10/4a8826b93a869a29ee6928790c37706f6edde75a004dce39fd33fec587f692084f28eea077f141faf531d4fd92731f68f015cc0985addabbdb46112bf1e30383 17704 19770 languageName: node 17705 19771 linkType: hard 17706 19772 ··· 17906 19972 languageName: node 17907 19973 linkType: hard 17908 19974 19975 + "i18next@npm:^23.11.5": 19976 + version: 23.16.8 19977 + resolution: "i18next@npm:23.16.8" 19978 + dependencies: 19979 + "@babel/runtime": "npm:^7.23.2" 19980 + checksum: 10/d5c38011de4d3b4aa466fac6773520eb28007b9d6138e03432bfbfc0d041c04df45e15c67d96f22cd660088cc9b24d3eda32cddc9fb4c6508c5afada6c2e6290 19981 + languageName: node 19982 + linkType: hard 19983 + 17909 19984 "iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.24": 17910 19985 version: 0.4.24 17911 19986 resolution: "iconv-lite@npm:0.4.24" ··· 18029 20104 languageName: node 18030 20105 linkType: hard 18031 20106 20107 + "import-meta-resolve@npm:^4.1.0": 20108 + version: 4.1.0 20109 + resolution: "import-meta-resolve@npm:4.1.0" 20110 + checksum: 10/40162f67eb406c8d5d49266206ef12ff07b54f5fad8cfd806db9efe3a055958e9969be51d6efaf82e34b8bea6758113dcc17bb79ff148292a4badcabc3472f22 20111 + languageName: node 20112 + linkType: hard 20113 + 18032 20114 "imul@npm:^1.0.0": 18033 20115 version: 1.0.1 18034 20116 resolution: "imul@npm:1.0.1" ··· 18110 20192 languageName: node 18111 20193 linkType: hard 18112 20194 20195 + "inline-style-parser@npm:0.2.4": 20196 + version: 0.2.4 20197 + resolution: "inline-style-parser@npm:0.2.4" 20198 + checksum: 10/80814479d1f3c9cbd102f9de4cd6558cf43cc2e48640e81c4371c3634f1e8b6dfeb2f21063cfa31d46cc83e834c20cd59ed9eeed9bfd45ef5bc02187ad941faf 20199 + languageName: node 20200 + linkType: hard 20201 + 18113 20202 "inline-style-prefixer@npm:^6.0.1": 18114 20203 version: 6.0.4 18115 20204 resolution: "inline-style-prefixer@npm:6.0.4" ··· 18211 20300 languageName: node 18212 20301 linkType: hard 18213 20302 18214 - "iron-webcrypto@npm:^1.1.1": 20303 + "iron-webcrypto@npm:^1.1.1, iron-webcrypto@npm:^1.2.1": 18215 20304 version: 1.2.1 18216 20305 resolution: "iron-webcrypto@npm:1.2.1" 18217 20306 checksum: 10/c1f52ccfe2780efa5438c134538ee4b26c96a87d22f351d896781219efbce25b4fe716d1cb7f248e02da96881760541135acbcc7c0622ffedf71cb0e227bebf9 18218 20307 languageName: node 18219 20308 linkType: hard 18220 20309 20310 + "is-alphabetical@npm:^2.0.0": 20311 + version: 2.0.1 20312 + resolution: "is-alphabetical@npm:2.0.1" 20313 + checksum: 10/56207db8d9de0850f0cd30f4966bf731eb82cedfe496cbc2e97e7c3bacaf66fc54a972d2d08c0d93bb679cb84976a05d24c5ad63de56fabbfc60aadae312edaa 20314 + languageName: node 20315 + linkType: hard 20316 + 20317 + "is-alphanumerical@npm:^2.0.0": 20318 + version: 2.0.1 20319 + resolution: "is-alphanumerical@npm:2.0.1" 20320 + dependencies: 20321 + is-alphabetical: "npm:^2.0.0" 20322 + is-decimal: "npm:^2.0.0" 20323 + checksum: 10/87acc068008d4c9c4e9f5bd5e251041d42e7a50995c77b1499cf6ed248f971aadeddb11f239cabf09f7975ee58cac7a48ffc170b7890076d8d227b24a68663c9 20324 + languageName: node 20325 + linkType: hard 20326 + 18221 20327 "is-arguments@npm:^1.0.4": 18222 20328 version: 1.1.1 18223 20329 resolution: "is-arguments@npm:1.1.1" ··· 18341 20447 languageName: node 18342 20448 linkType: hard 18343 20449 20450 + "is-decimal@npm:^2.0.0": 20451 + version: 2.0.1 20452 + resolution: "is-decimal@npm:2.0.1" 20453 + checksum: 10/97132de7acdce77caa7b797632970a2ecd649a88e715db0e4dbc00ab0708b5e7574ba5903962c860cd4894a14fd12b100c0c4ac8aed445cf6f55c6cf747a4158 20454 + languageName: node 20455 + linkType: hard 20456 + 18344 20457 "is-directory@npm:^0.3.1": 18345 20458 version: 0.3.1 18346 20459 resolution: "is-directory@npm:0.3.1" ··· 18421 20534 languageName: node 18422 20535 linkType: hard 18423 20536 20537 + "is-hexadecimal@npm:^2.0.0": 20538 + version: 2.0.1 20539 + resolution: "is-hexadecimal@npm:2.0.1" 20540 + checksum: 10/66a2ea85994c622858f063f23eda506db29d92b52580709eb6f4c19550552d4dcf3fb81952e52f7cf972097237959e00adc7bb8c9400cd12886e15bf06145321 20541 + languageName: node 20542 + linkType: hard 20543 + 18424 20544 "is-inside-container@npm:^1.0.0": 18425 20545 version: 1.0.0 18426 20546 resolution: "is-inside-container@npm:1.0.0" ··· 18531 20651 version: 3.0.0 18532 20652 resolution: "is-plain-obj@npm:3.0.0" 18533 20653 checksum: 10/a6ebdf8e12ab73f33530641972a72a4b8aed6df04f762070d823808303e4f76d87d5ea5bd76f96a7bbe83d93f04ac7764429c29413bd9049853a69cb630fb21c 20654 + languageName: node 20655 + linkType: hard 20656 + 20657 + "is-plain-obj@npm:^4.0.0": 20658 + version: 4.1.0 20659 + resolution: "is-plain-obj@npm:4.1.0" 20660 + checksum: 10/6dc45da70d04a81f35c9310971e78a6a3c7a63547ef782e3a07ee3674695081b6ca4e977fbb8efc48dae3375e0b34558d2bcd722aec9bddfa2d7db5b041be8ce 18534 20661 languageName: node 18535 20662 linkType: hard 18536 20663 ··· 19412 21539 languageName: node 19413 21540 linkType: hard 19414 21541 21542 + "kleur@npm:^4.1.5": 21543 + version: 4.1.5 21544 + resolution: "kleur@npm:4.1.5" 21545 + checksum: 10/44d84cc4eedd4311099402ef6d4acd9b2d16e08e499d6ef3bb92389bd4692d7ef09e35248c26e27f98acac532122acb12a1bfee645994ae3af4f0a37996da7df 21546 + languageName: node 21547 + linkType: hard 21548 + 21549 + "klona@npm:^2.0.6": 21550 + version: 2.0.6 21551 + resolution: "klona@npm:2.0.6" 21552 + checksum: 10/ed7e2c9af58cb646e758e60b75dec24bf72466066290f78c515a2bae23a06fa280f11ff3210c43b94a18744954aa5358f9d46583d5e4c36da073ecc3606355c4 21553 + languageName: node 21554 + linkType: hard 21555 + 19415 21556 "launch-editor@npm:^2.6.0": 19416 21557 version: 2.9.1 19417 21558 resolution: "launch-editor@npm:2.9.1" ··· 20194 22335 languageName: node 20195 22336 linkType: hard 20196 22337 22338 + "longest-streak@npm:^3.0.0": 22339 + version: 3.1.0 22340 + resolution: "longest-streak@npm:3.1.0" 22341 + checksum: 10/d7f952ed004cbdb5c8bcfc4f7f5c3d65449e6c5a9e9be4505a656e3df5a57ee125f284286b4bf8ecea0c21a7b3bf2b8f9001ad506c319b9815ad6a63a47d0fd0 22342 + languageName: node 22343 + linkType: hard 22344 + 20197 22345 "loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": 20198 22346 version: 1.4.0 20199 22347 resolution: "loose-envify@npm:1.4.0" ··· 20280 22428 languageName: node 20281 22429 linkType: hard 20282 22430 22431 + "magic-string@npm:^0.30.17": 22432 + version: 0.30.17 22433 + resolution: "magic-string@npm:0.30.17" 22434 + dependencies: 22435 + "@jridgewell/sourcemap-codec": "npm:^1.5.0" 22436 + checksum: 10/2f71af2b0afd78c2e9012a29b066d2c8ba45a9cd0c8070f7fd72de982fb1c403b4e3afdb1dae00691d56885ede66b772ef6bedf765e02e3a7066208fe2fec4aa 22437 + languageName: node 22438 + linkType: hard 22439 + 22440 + "magicast@npm:^0.3.5": 22441 + version: 0.3.5 22442 + resolution: "magicast@npm:0.3.5" 22443 + dependencies: 22444 + "@babel/parser": "npm:^7.25.4" 22445 + "@babel/types": "npm:^7.25.4" 22446 + source-map-js: "npm:^1.2.0" 22447 + checksum: 10/3a2dba6b0bdde957797361d09c7931ebdc1b30231705360eeb40ed458d28e1c3112841c3ed4e1b87ceb28f741e333c7673cd961193aa9fdb4f4946b202e6205a 22448 + languageName: node 22449 + linkType: hard 22450 + 20283 22451 "make-dir@npm:4.0.0": 20284 22452 version: 4.0.0 20285 22453 resolution: "make-dir@npm:4.0.0" ··· 20391 22559 languageName: node 20392 22560 linkType: hard 20393 22561 22562 + "markdown-extensions@npm:^2.0.0": 22563 + version: 2.0.0 22564 + resolution: "markdown-extensions@npm:2.0.0" 22565 + checksum: 10/ec4ffcb0768f112e778e7ac74cb8ef22a966c168c3e6c29829f007f015b0a0b5c79c73ee8599a0c72e440e7f5cfdbf19e80e2d77b9a313b8f66e180a330cf1b2 22566 + languageName: node 22567 + linkType: hard 22568 + 20394 22569 "markdown-it@npm:^10.0.0": 20395 22570 version: 10.0.0 20396 22571 resolution: "markdown-it@npm:10.0.0" ··· 20403 22578 bin: 20404 22579 markdown-it: bin/markdown-it.js 20405 22580 checksum: 10/16f0fcd75f8b369e4adda56d5f161d8a7102e53dae749300293dd3fc386743e8f06a3ee7045a9571cf0e675e215182b5acc8e27fb2a23d166f65f8fdfe8882ba 22581 + languageName: node 22582 + linkType: hard 22583 + 22584 + "markdown-table@npm:^3.0.0": 22585 + version: 3.0.4 22586 + resolution: "markdown-table@npm:3.0.4" 22587 + checksum: 10/bc699819e6a15607e5def0f21aa862aa061cf1f49877baa93b0185574f6ab143591afe0e18b94d9b15ea80c6a693894150dbccfacf4f6767160dc32ae393dfe0 20406 22588 languageName: node 20407 22589 linkType: hard 20408 22590 ··· 20444 22626 languageName: node 20445 22627 linkType: hard 20446 22628 22629 + "mdast-util-definitions@npm:^6.0.0": 22630 + version: 6.0.0 22631 + resolution: "mdast-util-definitions@npm:6.0.0" 22632 + dependencies: 22633 + "@types/mdast": "npm:^4.0.0" 22634 + "@types/unist": "npm:^3.0.0" 22635 + unist-util-visit: "npm:^5.0.0" 22636 + checksum: 10/4fdfcf435f675cee106664315525c6c0fc77b4a4f90c13899ec134b6ed23a106cea257e6e439f81025c34816b3b9b1fb6215fe2e10e565a2abafc3ebfb3c80d0 22637 + languageName: node 22638 + linkType: hard 22639 + 22640 + "mdast-util-directive@npm:^3.0.0": 22641 + version: 3.1.0 22642 + resolution: "mdast-util-directive@npm:3.1.0" 22643 + dependencies: 22644 + "@types/mdast": "npm:^4.0.0" 22645 + "@types/unist": "npm:^3.0.0" 22646 + ccount: "npm:^2.0.0" 22647 + devlop: "npm:^1.0.0" 22648 + mdast-util-from-markdown: "npm:^2.0.0" 22649 + mdast-util-to-markdown: "npm:^2.0.0" 22650 + parse-entities: "npm:^4.0.0" 22651 + stringify-entities: "npm:^4.0.0" 22652 + unist-util-visit-parents: "npm:^6.0.0" 22653 + checksum: 10/5aabd777ae8752cb9d09c7827a6690887536da8a9f85e833d5399ab8f47e5aadaa3eea78985efd041f50c658bf91b4579800dae79b20549240f52bbc2bc26335 22654 + languageName: node 22655 + linkType: hard 22656 + 22657 + "mdast-util-find-and-replace@npm:^3.0.0": 22658 + version: 3.0.2 22659 + resolution: "mdast-util-find-and-replace@npm:3.0.2" 22660 + dependencies: 22661 + "@types/mdast": "npm:^4.0.0" 22662 + escape-string-regexp: "npm:^5.0.0" 22663 + unist-util-is: "npm:^6.0.0" 22664 + unist-util-visit-parents: "npm:^6.0.0" 22665 + checksum: 10/446561aa950341ef6828069cef05566256cb6836b77ea498e648102411f96fdfa342c78b82c9d813b51a1dac80b030ce80c055e044bc285a3d52d8558fc3d65e 22666 + languageName: node 22667 + linkType: hard 22668 + 22669 + "mdast-util-from-markdown@npm:^2.0.0": 22670 + version: 2.0.2 22671 + resolution: "mdast-util-from-markdown@npm:2.0.2" 22672 + dependencies: 22673 + "@types/mdast": "npm:^4.0.0" 22674 + "@types/unist": "npm:^3.0.0" 22675 + decode-named-character-reference: "npm:^1.0.0" 22676 + devlop: "npm:^1.0.0" 22677 + mdast-util-to-string: "npm:^4.0.0" 22678 + micromark: "npm:^4.0.0" 22679 + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" 22680 + micromark-util-decode-string: "npm:^2.0.0" 22681 + micromark-util-normalize-identifier: "npm:^2.0.0" 22682 + micromark-util-symbol: "npm:^2.0.0" 22683 + micromark-util-types: "npm:^2.0.0" 22684 + unist-util-stringify-position: "npm:^4.0.0" 22685 + checksum: 10/69b207913fbcc0469f8c59d922af4d5509b79e809d77c9bd4781543a907fe2ecc8e6433ce0707066a27b117b13f38af3aae4f2d085e18ebd2d3ad5f1a5647902 22686 + languageName: node 22687 + linkType: hard 22688 + 22689 + "mdast-util-gfm-autolink-literal@npm:^2.0.0": 22690 + version: 2.0.1 22691 + resolution: "mdast-util-gfm-autolink-literal@npm:2.0.1" 22692 + dependencies: 22693 + "@types/mdast": "npm:^4.0.0" 22694 + ccount: "npm:^2.0.0" 22695 + devlop: "npm:^1.0.0" 22696 + mdast-util-find-and-replace: "npm:^3.0.0" 22697 + micromark-util-character: "npm:^2.0.0" 22698 + checksum: 10/d933b42feb126bd094d4be4a4955326c4a9e727a5d0dbe3c824534a19d831996fcf16f67df3dd29550a7d2ac4ac568c80485bee380151ebb42c62848ab20dfa6 22699 + languageName: node 22700 + linkType: hard 22701 + 22702 + "mdast-util-gfm-footnote@npm:^2.0.0": 22703 + version: 2.1.0 22704 + resolution: "mdast-util-gfm-footnote@npm:2.1.0" 22705 + dependencies: 22706 + "@types/mdast": "npm:^4.0.0" 22707 + devlop: "npm:^1.1.0" 22708 + mdast-util-from-markdown: "npm:^2.0.0" 22709 + mdast-util-to-markdown: "npm:^2.0.0" 22710 + micromark-util-normalize-identifier: "npm:^2.0.0" 22711 + checksum: 10/5fac0f64d1233f7c533c2bb99a95c56f8f5dab553ae3a83f87c1fd6e4f28e0050e3240ae32ba77b4f5df0b84404932c66fd00c852a0925059bfa5d876f155854 22712 + languageName: node 22713 + linkType: hard 22714 + 22715 + "mdast-util-gfm-strikethrough@npm:^2.0.0": 22716 + version: 2.0.0 22717 + resolution: "mdast-util-gfm-strikethrough@npm:2.0.0" 22718 + dependencies: 22719 + "@types/mdast": "npm:^4.0.0" 22720 + mdast-util-from-markdown: "npm:^2.0.0" 22721 + mdast-util-to-markdown: "npm:^2.0.0" 22722 + checksum: 10/b1abc137d78270540585ad94a7a4ed1630683312690b902389dae0ede50a6832e26d1be053687f49728e14fa8a379da9384342725d3beb4480fc30b12866ab37 22723 + languageName: node 22724 + linkType: hard 22725 + 22726 + "mdast-util-gfm-table@npm:^2.0.0": 22727 + version: 2.0.0 22728 + resolution: "mdast-util-gfm-table@npm:2.0.0" 22729 + dependencies: 22730 + "@types/mdast": "npm:^4.0.0" 22731 + devlop: "npm:^1.0.0" 22732 + markdown-table: "npm:^3.0.0" 22733 + mdast-util-from-markdown: "npm:^2.0.0" 22734 + mdast-util-to-markdown: "npm:^2.0.0" 22735 + checksum: 10/a043d60d723a86f79c49cbdd1d98b80c89f4a8f9f5fa84b3880c53e132f40150972460aba9be1f44a612ef5abd6810d122c5e7e5d9c54f3ac7560cce8c305c75 22736 + languageName: node 22737 + linkType: hard 22738 + 22739 + "mdast-util-gfm-task-list-item@npm:^2.0.0": 22740 + version: 2.0.0 22741 + resolution: "mdast-util-gfm-task-list-item@npm:2.0.0" 22742 + dependencies: 22743 + "@types/mdast": "npm:^4.0.0" 22744 + devlop: "npm:^1.0.0" 22745 + mdast-util-from-markdown: "npm:^2.0.0" 22746 + mdast-util-to-markdown: "npm:^2.0.0" 22747 + checksum: 10/679a3ff09b52015c0088cd0616ccecc7cc9d250d56a8762aafdffc640f3f607bbd9fe047d3e7e7078e6a996e83f677be3bfcad7ac7260563825fa80a04f8e09d 22748 + languageName: node 22749 + linkType: hard 22750 + 22751 + "mdast-util-gfm@npm:^3.0.0": 22752 + version: 3.1.0 22753 + resolution: "mdast-util-gfm@npm:3.1.0" 22754 + dependencies: 22755 + mdast-util-from-markdown: "npm:^2.0.0" 22756 + mdast-util-gfm-autolink-literal: "npm:^2.0.0" 22757 + mdast-util-gfm-footnote: "npm:^2.0.0" 22758 + mdast-util-gfm-strikethrough: "npm:^2.0.0" 22759 + mdast-util-gfm-table: "npm:^2.0.0" 22760 + mdast-util-gfm-task-list-item: "npm:^2.0.0" 22761 + mdast-util-to-markdown: "npm:^2.0.0" 22762 + checksum: 10/d66809a07000ee63661ae9044f550989d96101e3c11557a84e12038ed28490667244432dbb1f8b7d9ebb4936cc8770d3de118aff85b7474f33693b4c07a1ffda 22763 + languageName: node 22764 + linkType: hard 22765 + 22766 + "mdast-util-mdx-expression@npm:^2.0.0": 22767 + version: 2.0.1 22768 + resolution: "mdast-util-mdx-expression@npm:2.0.1" 22769 + dependencies: 22770 + "@types/estree-jsx": "npm:^1.0.0" 22771 + "@types/hast": "npm:^3.0.0" 22772 + "@types/mdast": "npm:^4.0.0" 22773 + devlop: "npm:^1.0.0" 22774 + mdast-util-from-markdown: "npm:^2.0.0" 22775 + mdast-util-to-markdown: "npm:^2.0.0" 22776 + checksum: 10/70e860f8ee22c4f478449942750055d649d4380bf43b235d0710af510189d285fb057e401d20b59596d9789f4e270fce08ca892dc849676f9e3383b991d52485 22777 + languageName: node 22778 + linkType: hard 22779 + 22780 + "mdast-util-mdx-jsx@npm:^3.0.0": 22781 + version: 3.2.0 22782 + resolution: "mdast-util-mdx-jsx@npm:3.2.0" 22783 + dependencies: 22784 + "@types/estree-jsx": "npm:^1.0.0" 22785 + "@types/hast": "npm:^3.0.0" 22786 + "@types/mdast": "npm:^4.0.0" 22787 + "@types/unist": "npm:^3.0.0" 22788 + ccount: "npm:^2.0.0" 22789 + devlop: "npm:^1.1.0" 22790 + mdast-util-from-markdown: "npm:^2.0.0" 22791 + mdast-util-to-markdown: "npm:^2.0.0" 22792 + parse-entities: "npm:^4.0.0" 22793 + stringify-entities: "npm:^4.0.0" 22794 + unist-util-stringify-position: "npm:^4.0.0" 22795 + vfile-message: "npm:^4.0.0" 22796 + checksum: 10/62cd650a522e5d72ea6afd6d4a557fc86525b802d097a29a2fbe17d22e7b97c502a580611873e4d685777fe77c6ff8d39fb6e37d026b3acbc86c3b24927f4ad9 22797 + languageName: node 22798 + linkType: hard 22799 + 22800 + "mdast-util-mdx@npm:^3.0.0": 22801 + version: 3.0.0 22802 + resolution: "mdast-util-mdx@npm:3.0.0" 22803 + dependencies: 22804 + mdast-util-from-markdown: "npm:^2.0.0" 22805 + mdast-util-mdx-expression: "npm:^2.0.0" 22806 + mdast-util-mdx-jsx: "npm:^3.0.0" 22807 + mdast-util-mdxjs-esm: "npm:^2.0.0" 22808 + mdast-util-to-markdown: "npm:^2.0.0" 22809 + checksum: 10/547d928f0d1e60d9087cd8ad301cdf2e1d14b094d2662a00292874b923bcb59323bdad3a29804c7f323ad78f4d3954361bfdaf4a9be765c4e6fe47a815df50c2 22810 + languageName: node 22811 + linkType: hard 22812 + 22813 + "mdast-util-mdxjs-esm@npm:^2.0.0": 22814 + version: 2.0.1 22815 + resolution: "mdast-util-mdxjs-esm@npm:2.0.1" 22816 + dependencies: 22817 + "@types/estree-jsx": "npm:^1.0.0" 22818 + "@types/hast": "npm:^3.0.0" 22819 + "@types/mdast": "npm:^4.0.0" 22820 + devlop: "npm:^1.0.0" 22821 + mdast-util-from-markdown: "npm:^2.0.0" 22822 + mdast-util-to-markdown: "npm:^2.0.0" 22823 + checksum: 10/05474226e163a3f407fccb5780b0d8585a95e548e5da4a85227df43f281b940c7941a9a9d4af1be4f885fe554731647addb057a728e87aa1f503ff9cc72c9163 22824 + languageName: node 22825 + linkType: hard 22826 + 22827 + "mdast-util-phrasing@npm:^4.0.0": 22828 + version: 4.1.0 22829 + resolution: "mdast-util-phrasing@npm:4.1.0" 22830 + dependencies: 22831 + "@types/mdast": "npm:^4.0.0" 22832 + unist-util-is: "npm:^6.0.0" 22833 + checksum: 10/3a97533e8ad104a422f8bebb34b3dde4f17167b8ed3a721cf9263c7416bd3447d2364e6d012a594aada40cac9e949db28a060bb71a982231693609034ed5324e 22834 + languageName: node 22835 + linkType: hard 22836 + 22837 + "mdast-util-to-hast@npm:^13.0.0": 22838 + version: 13.2.0 22839 + resolution: "mdast-util-to-hast@npm:13.2.0" 22840 + dependencies: 22841 + "@types/hast": "npm:^3.0.0" 22842 + "@types/mdast": "npm:^4.0.0" 22843 + "@ungap/structured-clone": "npm:^1.0.0" 22844 + devlop: "npm:^1.0.0" 22845 + micromark-util-sanitize-uri: "npm:^2.0.0" 22846 + trim-lines: "npm:^3.0.0" 22847 + unist-util-position: "npm:^5.0.0" 22848 + unist-util-visit: "npm:^5.0.0" 22849 + vfile: "npm:^6.0.0" 22850 + checksum: 10/b17ee338f843af31a1c7a2ebf0df6f0b41c9380b7119a63ab521d271df665456578e1234bb7617883e8d860fe878038dcf2b76ab2f21e0f7451215a096d26cce 22851 + languageName: node 22852 + linkType: hard 22853 + 22854 + "mdast-util-to-markdown@npm:^2.0.0, mdast-util-to-markdown@npm:^2.1.0": 22855 + version: 2.1.2 22856 + resolution: "mdast-util-to-markdown@npm:2.1.2" 22857 + dependencies: 22858 + "@types/mdast": "npm:^4.0.0" 22859 + "@types/unist": "npm:^3.0.0" 22860 + longest-streak: "npm:^3.0.0" 22861 + mdast-util-phrasing: "npm:^4.0.0" 22862 + mdast-util-to-string: "npm:^4.0.0" 22863 + micromark-util-classify-character: "npm:^2.0.0" 22864 + micromark-util-decode-string: "npm:^2.0.0" 22865 + unist-util-visit: "npm:^5.0.0" 22866 + zwitch: "npm:^2.0.0" 22867 + checksum: 10/ab494a32f1ec90f0a502970b403b1847a10f3ba635adddb66ce70994cc47b4924c6c05078ddd29a8c2c5c9bc8c0bcc20e5fc1ef0fcb9b0cb9c0589a000817f1c 22868 + languageName: node 22869 + linkType: hard 22870 + 22871 + "mdast-util-to-string@npm:^4.0.0": 22872 + version: 4.0.0 22873 + resolution: "mdast-util-to-string@npm:4.0.0" 22874 + dependencies: 22875 + "@types/mdast": "npm:^4.0.0" 22876 + checksum: 10/f4a5dbb9ea03521d7d3e26a9ba5652a1d6fbd55706dddd2155427517085688830e0ecd3f12418cfd40892640886eb39a4034c3c967d85e01e2fa64cfb53cff05 22877 + languageName: node 22878 + linkType: hard 22879 + 20447 22880 "mdn-data@npm:2.0.14": 20448 22881 version: 2.0.14 20449 22882 resolution: "mdn-data@npm:2.0.14" 20450 22883 checksum: 10/64c629fcf14807e30d6dc79f97cbcafa16db066f53a294299f3932b3beb0eb0d1386d3a7fe408fc67348c449a4e0999360c894ba4c81eb209d7be4e36503de0e 22884 + languageName: node 22885 + linkType: hard 22886 + 22887 + "mdn-data@npm:2.12.2": 22888 + version: 2.12.2 22889 + resolution: "mdn-data@npm:2.12.2" 22890 + checksum: 10/854e41715a9358e69f9a530117cd6ca7e71d06176469de8d70b1e629753b6827f5bd730995c16ad3750f3c9bad92230f8e4e178de2b34926b05f5205d27d76af 20451 22891 languageName: node 20452 22892 linkType: hard 20453 22893 ··· 21020 23460 languageName: node 21021 23461 linkType: hard 21022 23462 23463 + "micromark-core-commonmark@npm:^2.0.0": 23464 + version: 2.0.3 23465 + resolution: "micromark-core-commonmark@npm:2.0.3" 23466 + dependencies: 23467 + decode-named-character-reference: "npm:^1.0.0" 23468 + devlop: "npm:^1.0.0" 23469 + micromark-factory-destination: "npm:^2.0.0" 23470 + micromark-factory-label: "npm:^2.0.0" 23471 + micromark-factory-space: "npm:^2.0.0" 23472 + micromark-factory-title: "npm:^2.0.0" 23473 + micromark-factory-whitespace: "npm:^2.0.0" 23474 + micromark-util-character: "npm:^2.0.0" 23475 + micromark-util-chunked: "npm:^2.0.0" 23476 + micromark-util-classify-character: "npm:^2.0.0" 23477 + micromark-util-html-tag-name: "npm:^2.0.0" 23478 + micromark-util-normalize-identifier: "npm:^2.0.0" 23479 + micromark-util-resolve-all: "npm:^2.0.0" 23480 + micromark-util-subtokenize: "npm:^2.0.0" 23481 + micromark-util-symbol: "npm:^2.0.0" 23482 + micromark-util-types: "npm:^2.0.0" 23483 + checksum: 10/2b98b9eba1463850ebd8f338f966bd2113dafe764b490ebee3dccab3764d3c48b53fe67673297530e56bf54f58de27dfd1952ed79c5b4e32047cb7f29bd807f2 23484 + languageName: node 23485 + linkType: hard 23486 + 23487 + "micromark-extension-directive@npm:^3.0.0": 23488 + version: 3.0.2 23489 + resolution: "micromark-extension-directive@npm:3.0.2" 23490 + dependencies: 23491 + devlop: "npm:^1.0.0" 23492 + micromark-factory-space: "npm:^2.0.0" 23493 + micromark-factory-whitespace: "npm:^2.0.0" 23494 + micromark-util-character: "npm:^2.0.0" 23495 + micromark-util-symbol: "npm:^2.0.0" 23496 + micromark-util-types: "npm:^2.0.0" 23497 + parse-entities: "npm:^4.0.0" 23498 + checksum: 10/63dbaa209722c1a77ffea6c6d5ea0f873f5e795ef08a2039f3d795320c889e5ce10fe1162500b0ff3063f8ceb1f7d727ec1d29d2df6271cbe90ec0646e061c8d 23499 + languageName: node 23500 + linkType: hard 23501 + 23502 + "micromark-extension-gfm-autolink-literal@npm:^2.0.0": 23503 + version: 2.1.0 23504 + resolution: "micromark-extension-gfm-autolink-literal@npm:2.1.0" 23505 + dependencies: 23506 + micromark-util-character: "npm:^2.0.0" 23507 + micromark-util-sanitize-uri: "npm:^2.0.0" 23508 + micromark-util-symbol: "npm:^2.0.0" 23509 + micromark-util-types: "npm:^2.0.0" 23510 + checksum: 10/933b9b96ca62cd50732d9e58ae90ba446f4314e0ecbff3127e9aae430d9a295346f88fb33b5532acaf648d659b0db92e0c00c2e9f504c0d7b8bb4553318cac50 23511 + languageName: node 23512 + linkType: hard 23513 + 23514 + "micromark-extension-gfm-footnote@npm:^2.0.0": 23515 + version: 2.1.0 23516 + resolution: "micromark-extension-gfm-footnote@npm:2.1.0" 23517 + dependencies: 23518 + devlop: "npm:^1.0.0" 23519 + micromark-core-commonmark: "npm:^2.0.0" 23520 + micromark-factory-space: "npm:^2.0.0" 23521 + micromark-util-character: "npm:^2.0.0" 23522 + micromark-util-normalize-identifier: "npm:^2.0.0" 23523 + micromark-util-sanitize-uri: "npm:^2.0.0" 23524 + micromark-util-symbol: "npm:^2.0.0" 23525 + micromark-util-types: "npm:^2.0.0" 23526 + checksum: 10/7e019414e31ab53c49c909b7068adbbcb1726433fce82bf735219276fe6e00a42b66288acb5c8831f80e77480fac34880eeeb60b1dc09d5885862b31db4b9ea2 23527 + languageName: node 23528 + linkType: hard 23529 + 23530 + "micromark-extension-gfm-strikethrough@npm:^2.0.0": 23531 + version: 2.1.0 23532 + resolution: "micromark-extension-gfm-strikethrough@npm:2.1.0" 23533 + dependencies: 23534 + devlop: "npm:^1.0.0" 23535 + micromark-util-chunked: "npm:^2.0.0" 23536 + micromark-util-classify-character: "npm:^2.0.0" 23537 + micromark-util-resolve-all: "npm:^2.0.0" 23538 + micromark-util-symbol: "npm:^2.0.0" 23539 + micromark-util-types: "npm:^2.0.0" 23540 + checksum: 10/eaf2c7b1e3eb2a7d7f405e8abe561be083cc52b8e027225ed286490939f527d18c120df59c8d8e17fdcf284f8d014502bf3db45d8e36e3109457ece8fb1db29b 23541 + languageName: node 23542 + linkType: hard 23543 + 23544 + "micromark-extension-gfm-table@npm:^2.0.0": 23545 + version: 2.1.1 23546 + resolution: "micromark-extension-gfm-table@npm:2.1.1" 23547 + dependencies: 23548 + devlop: "npm:^1.0.0" 23549 + micromark-factory-space: "npm:^2.0.0" 23550 + micromark-util-character: "npm:^2.0.0" 23551 + micromark-util-symbol: "npm:^2.0.0" 23552 + micromark-util-types: "npm:^2.0.0" 23553 + checksum: 10/0391ead408d79a183a9bba325b0e660b85aef2cd6e442a9214afc4e0bdc3105cd7dbf41fc75465acf152883a4050b6203107c2a80bcadb304235581a1340fd8c 23554 + languageName: node 23555 + linkType: hard 23556 + 23557 + "micromark-extension-gfm-tagfilter@npm:^2.0.0": 23558 + version: 2.0.0 23559 + resolution: "micromark-extension-gfm-tagfilter@npm:2.0.0" 23560 + dependencies: 23561 + micromark-util-types: "npm:^2.0.0" 23562 + checksum: 10/c5e3f8cdf22e184de3f55968e6b010876a100dff31f509b7d2975f2b981a7fdda6c2d9e452238b9fe54dc51f5d7b069e86de509d421d4efbdfc9194749b3f132 23563 + languageName: node 23564 + linkType: hard 23565 + 23566 + "micromark-extension-gfm-task-list-item@npm:^2.0.0": 23567 + version: 2.1.0 23568 + resolution: "micromark-extension-gfm-task-list-item@npm:2.1.0" 23569 + dependencies: 23570 + devlop: "npm:^1.0.0" 23571 + micromark-factory-space: "npm:^2.0.0" 23572 + micromark-util-character: "npm:^2.0.0" 23573 + micromark-util-symbol: "npm:^2.0.0" 23574 + micromark-util-types: "npm:^2.0.0" 23575 + checksum: 10/c5f72929f0dca77df01442b721356624de6657364e2264ef50fc7226305976f302a49b670836f9494ce70a9b0335d974b5ef8e6457553c4c200bfc06d6951964 23576 + languageName: node 23577 + linkType: hard 23578 + 23579 + "micromark-extension-gfm@npm:^3.0.0": 23580 + version: 3.0.0 23581 + resolution: "micromark-extension-gfm@npm:3.0.0" 23582 + dependencies: 23583 + micromark-extension-gfm-autolink-literal: "npm:^2.0.0" 23584 + micromark-extension-gfm-footnote: "npm:^2.0.0" 23585 + micromark-extension-gfm-strikethrough: "npm:^2.0.0" 23586 + micromark-extension-gfm-table: "npm:^2.0.0" 23587 + micromark-extension-gfm-tagfilter: "npm:^2.0.0" 23588 + micromark-extension-gfm-task-list-item: "npm:^2.0.0" 23589 + micromark-util-combine-extensions: "npm:^2.0.0" 23590 + micromark-util-types: "npm:^2.0.0" 23591 + checksum: 10/8493d1041756bf21f9421fa6d357056bff6112aeccebc20595604686cdd908a6816765de297206457ae4c00f85fc58672bdbcbbc36820c25d561b1737af89055 23592 + languageName: node 23593 + linkType: hard 23594 + 23595 + "micromark-extension-mdx-expression@npm:^3.0.0": 23596 + version: 3.0.1 23597 + resolution: "micromark-extension-mdx-expression@npm:3.0.1" 23598 + dependencies: 23599 + "@types/estree": "npm:^1.0.0" 23600 + devlop: "npm:^1.0.0" 23601 + micromark-factory-mdx-expression: "npm:^2.0.0" 23602 + micromark-factory-space: "npm:^2.0.0" 23603 + micromark-util-character: "npm:^2.0.0" 23604 + micromark-util-events-to-acorn: "npm:^2.0.0" 23605 + micromark-util-symbol: "npm:^2.0.0" 23606 + micromark-util-types: "npm:^2.0.0" 23607 + checksum: 10/a185e1787fe6d49d0e435690affd4b83ce319f88a08c57d2460d37d5c0a75ea64aa49a4a116b6d37f91389dc04351e1826aa834519a9f25fc31e1424962c6eb7 23608 + languageName: node 23609 + linkType: hard 23610 + 23611 + "micromark-extension-mdx-jsx@npm:^3.0.0": 23612 + version: 3.0.2 23613 + resolution: "micromark-extension-mdx-jsx@npm:3.0.2" 23614 + dependencies: 23615 + "@types/estree": "npm:^1.0.0" 23616 + devlop: "npm:^1.0.0" 23617 + estree-util-is-identifier-name: "npm:^3.0.0" 23618 + micromark-factory-mdx-expression: "npm:^2.0.0" 23619 + micromark-factory-space: "npm:^2.0.0" 23620 + micromark-util-character: "npm:^2.0.0" 23621 + micromark-util-events-to-acorn: "npm:^2.0.0" 23622 + micromark-util-symbol: "npm:^2.0.0" 23623 + micromark-util-types: "npm:^2.0.0" 23624 + vfile-message: "npm:^4.0.0" 23625 + checksum: 10/a85cdb7c972fbb2cc8f0a64adc808b2b62bc2d79dbdd31fcd3208ff15aafa0198b002022840b2c65b5bff6f2a8c2c4a59a32a89f3482e6e183114b476e98e25c 23626 + languageName: node 23627 + linkType: hard 23628 + 23629 + "micromark-extension-mdx-md@npm:^2.0.0": 23630 + version: 2.0.0 23631 + resolution: "micromark-extension-mdx-md@npm:2.0.0" 23632 + dependencies: 23633 + micromark-util-types: "npm:^2.0.0" 23634 + checksum: 10/8b364a69b23196075258143c8c19fa58d7d5a91f6811ec0f881b75cf024a4869994be29f84f4d281147275c5a104af8b6a7fcd98abd8fde9f5b534a1acb254e8 23635 + languageName: node 23636 + linkType: hard 23637 + 23638 + "micromark-extension-mdxjs-esm@npm:^3.0.0": 23639 + version: 3.0.0 23640 + resolution: "micromark-extension-mdxjs-esm@npm:3.0.0" 23641 + dependencies: 23642 + "@types/estree": "npm:^1.0.0" 23643 + devlop: "npm:^1.0.0" 23644 + micromark-core-commonmark: "npm:^2.0.0" 23645 + micromark-util-character: "npm:^2.0.0" 23646 + micromark-util-events-to-acorn: "npm:^2.0.0" 23647 + micromark-util-symbol: "npm:^2.0.0" 23648 + micromark-util-types: "npm:^2.0.0" 23649 + unist-util-position-from-estree: "npm:^2.0.0" 23650 + vfile-message: "npm:^4.0.0" 23651 + checksum: 10/f2e0977f9a65284b0c765d1175d55ec5d1928dae3ae90f65cc36f293cda152a97fe2007977aaf5595b1bc02298b34c96e8ce8b647c9c647c75f1ea53e92d14d2 23652 + languageName: node 23653 + linkType: hard 23654 + 23655 + "micromark-extension-mdxjs@npm:^3.0.0": 23656 + version: 3.0.0 23657 + resolution: "micromark-extension-mdxjs@npm:3.0.0" 23658 + dependencies: 23659 + acorn: "npm:^8.0.0" 23660 + acorn-jsx: "npm:^5.0.0" 23661 + micromark-extension-mdx-expression: "npm:^3.0.0" 23662 + micromark-extension-mdx-jsx: "npm:^3.0.0" 23663 + micromark-extension-mdx-md: "npm:^2.0.0" 23664 + micromark-extension-mdxjs-esm: "npm:^3.0.0" 23665 + micromark-util-combine-extensions: "npm:^2.0.0" 23666 + micromark-util-types: "npm:^2.0.0" 23667 + checksum: 10/66e0df7b2db05b9c88796600e354e0753594f06760abfddcac706afcd5754586c9085adb89e15447ce1450e6a5f2fa66a75f6da394e0eceb919e9c364475593e 23668 + languageName: node 23669 + linkType: hard 23670 + 23671 + "micromark-factory-destination@npm:^2.0.0": 23672 + version: 2.0.1 23673 + resolution: "micromark-factory-destination@npm:2.0.1" 23674 + dependencies: 23675 + micromark-util-character: "npm:^2.0.0" 23676 + micromark-util-symbol: "npm:^2.0.0" 23677 + micromark-util-types: "npm:^2.0.0" 23678 + checksum: 10/9c4baa9ca2ed43c061bbf40ddd3d85154c2a0f1f485de9dea41d7dd2ad994ebb02034a003b2c1dbe228ba83a0576d591f0e90e0bf978713f84ee7d7f3aa98320 23679 + languageName: node 23680 + linkType: hard 23681 + 23682 + "micromark-factory-label@npm:^2.0.0": 23683 + version: 2.0.1 23684 + resolution: "micromark-factory-label@npm:2.0.1" 23685 + dependencies: 23686 + devlop: "npm:^1.0.0" 23687 + micromark-util-character: "npm:^2.0.0" 23688 + micromark-util-symbol: "npm:^2.0.0" 23689 + micromark-util-types: "npm:^2.0.0" 23690 + checksum: 10/bd03f5a75f27cdbf03b894ddc5c4480fc0763061fecf9eb927d6429233c930394f223969a99472df142d570c831236134de3dc23245d23d9f046f9d0b623b5c2 23691 + languageName: node 23692 + linkType: hard 23693 + 23694 + "micromark-factory-mdx-expression@npm:^2.0.0": 23695 + version: 2.0.3 23696 + resolution: "micromark-factory-mdx-expression@npm:2.0.3" 23697 + dependencies: 23698 + "@types/estree": "npm:^1.0.0" 23699 + devlop: "npm:^1.0.0" 23700 + micromark-factory-space: "npm:^2.0.0" 23701 + micromark-util-character: "npm:^2.0.0" 23702 + micromark-util-events-to-acorn: "npm:^2.0.0" 23703 + micromark-util-symbol: "npm:^2.0.0" 23704 + micromark-util-types: "npm:^2.0.0" 23705 + unist-util-position-from-estree: "npm:^2.0.0" 23706 + vfile-message: "npm:^4.0.0" 23707 + checksum: 10/afadae88a18f31afa564747101e076011c56457454b30294ae55aeea7efee8626ddc3bad0f0f43649008f89b8784782b5adec143fdf477fb352354d76f08db55 23708 + languageName: node 23709 + linkType: hard 23710 + 23711 + "micromark-factory-space@npm:^2.0.0": 23712 + version: 2.0.1 23713 + resolution: "micromark-factory-space@npm:2.0.1" 23714 + dependencies: 23715 + micromark-util-character: "npm:^2.0.0" 23716 + micromark-util-types: "npm:^2.0.0" 23717 + checksum: 10/1bd68a017c1a66f4787506660c1e1c5019169aac3b1cb075d49ac5e360e0b2065e984d4e1d6e9e52a9d44000f2fa1c98e66a743d7aae78b4b05616bf3242ed71 23718 + languageName: node 23719 + linkType: hard 23720 + 23721 + "micromark-factory-title@npm:^2.0.0": 23722 + version: 2.0.1 23723 + resolution: "micromark-factory-title@npm:2.0.1" 23724 + dependencies: 23725 + micromark-factory-space: "npm:^2.0.0" 23726 + micromark-util-character: "npm:^2.0.0" 23727 + micromark-util-symbol: "npm:^2.0.0" 23728 + micromark-util-types: "npm:^2.0.0" 23729 + checksum: 10/b4d2e4850a8ba0dff25ce54e55a3eb0d43dda88a16293f53953153288f9d84bcdfa8ca4606b2cfbb4f132ea79587bbb478a73092a349f893f5264fbcdbce2ee1 23730 + languageName: node 23731 + linkType: hard 23732 + 23733 + "micromark-factory-whitespace@npm:^2.0.0": 23734 + version: 2.0.1 23735 + resolution: "micromark-factory-whitespace@npm:2.0.1" 23736 + dependencies: 23737 + micromark-factory-space: "npm:^2.0.0" 23738 + micromark-util-character: "npm:^2.0.0" 23739 + micromark-util-symbol: "npm:^2.0.0" 23740 + micromark-util-types: "npm:^2.0.0" 23741 + checksum: 10/67b3944d012a42fee9e10e99178254a04d48af762b54c10a50fcab988688799993efb038daf9f5dbc04001a97b9c1b673fc6f00e6a56997877ab25449f0c8650 23742 + languageName: node 23743 + linkType: hard 23744 + 23745 + "micromark-util-character@npm:^2.0.0": 23746 + version: 2.1.1 23747 + resolution: "micromark-util-character@npm:2.1.1" 23748 + dependencies: 23749 + micromark-util-symbol: "npm:^2.0.0" 23750 + micromark-util-types: "npm:^2.0.0" 23751 + checksum: 10/85da8f8e5f7ed16046575bef5b0964ca3fca3162b87b74ae279f1e48eb7160891313eb64f04606baed81c58b514dbdb64f1a9d110a51baaaa79225d72a7b1852 23752 + languageName: node 23753 + linkType: hard 23754 + 23755 + "micromark-util-chunked@npm:^2.0.0": 23756 + version: 2.0.1 23757 + resolution: "micromark-util-chunked@npm:2.0.1" 23758 + dependencies: 23759 + micromark-util-symbol: "npm:^2.0.0" 23760 + checksum: 10/f8cb2a67bcefe4bd2846d838c97b777101f0043b9f1de4f69baf3e26bb1f9885948444e3c3aec66db7595cad8173bd4567a000eb933576c233d54631f6323fe4 23761 + languageName: node 23762 + linkType: hard 23763 + 23764 + "micromark-util-classify-character@npm:^2.0.0": 23765 + version: 2.0.1 23766 + resolution: "micromark-util-classify-character@npm:2.0.1" 23767 + dependencies: 23768 + micromark-util-character: "npm:^2.0.0" 23769 + micromark-util-symbol: "npm:^2.0.0" 23770 + micromark-util-types: "npm:^2.0.0" 23771 + checksum: 10/4d8bbe3a6dbf69ac0fc43516866b5bab019fe3f4568edc525d4feaaaf78423fa54e6b6732b5bccbeed924455279a3758ffc9556954aafb903982598a95a02704 23772 + languageName: node 23773 + linkType: hard 23774 + 23775 + "micromark-util-combine-extensions@npm:^2.0.0": 23776 + version: 2.0.1 23777 + resolution: "micromark-util-combine-extensions@npm:2.0.1" 23778 + dependencies: 23779 + micromark-util-chunked: "npm:^2.0.0" 23780 + micromark-util-types: "npm:^2.0.0" 23781 + checksum: 10/5d22fb9ee37e8143adfe128a72b50fa09568c2cc553b3c76160486c96dbbb298c5802a177a10a215144a604b381796071b5d35be1f2c2b2ee17995eda92f0c8e 23782 + languageName: node 23783 + linkType: hard 23784 + 23785 + "micromark-util-decode-numeric-character-reference@npm:^2.0.0": 23786 + version: 2.0.2 23787 + resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.2" 23788 + dependencies: 23789 + micromark-util-symbol: "npm:^2.0.0" 23790 + checksum: 10/ee11c8bde51e250e302050474c4a2adca094bca05c69f6cdd241af12df285c48c88d19ee6e022b9728281c280be16328904adca994605680c43af56019f4b0b6 23791 + languageName: node 23792 + linkType: hard 23793 + 23794 + "micromark-util-decode-string@npm:^2.0.0": 23795 + version: 2.0.1 23796 + resolution: "micromark-util-decode-string@npm:2.0.1" 23797 + dependencies: 23798 + decode-named-character-reference: "npm:^1.0.0" 23799 + micromark-util-character: "npm:^2.0.0" 23800 + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" 23801 + micromark-util-symbol: "npm:^2.0.0" 23802 + checksum: 10/2f517e4c613609445db4b9a17f8c77832f55fb341620a8fd598f083c1227027485d601c2021c2f8f9883210b8671e7b3990f0c6feeecd49a136475465808c380 23803 + languageName: node 23804 + linkType: hard 23805 + 23806 + "micromark-util-encode@npm:^2.0.0": 23807 + version: 2.0.1 23808 + resolution: "micromark-util-encode@npm:2.0.1" 23809 + checksum: 10/be890b98e78dd0cdd953a313f4148c4692cc2fb05533e56fef5f421287d3c08feee38ca679f318e740530791fc251bfe8c80efa926fcceb4419b269c9343d226 23810 + languageName: node 23811 + linkType: hard 23812 + 23813 + "micromark-util-events-to-acorn@npm:^2.0.0": 23814 + version: 2.0.3 23815 + resolution: "micromark-util-events-to-acorn@npm:2.0.3" 23816 + dependencies: 23817 + "@types/estree": "npm:^1.0.0" 23818 + "@types/unist": "npm:^3.0.0" 23819 + devlop: "npm:^1.0.0" 23820 + estree-util-visit: "npm:^2.0.0" 23821 + micromark-util-symbol: "npm:^2.0.0" 23822 + micromark-util-types: "npm:^2.0.0" 23823 + vfile-message: "npm:^4.0.0" 23824 + checksum: 10/0d87e49b897636dc0e84b4bd06b6fa9e6abcd40ab90c9431e36737c85c444d3db1e4f9b8f51433422b1bedc46f086890ce96671b5a795230c6b7b09cb53d9aba 23825 + languageName: node 23826 + linkType: hard 23827 + 23828 + "micromark-util-html-tag-name@npm:^2.0.0": 23829 + version: 2.0.1 23830 + resolution: "micromark-util-html-tag-name@npm:2.0.1" 23831 + checksum: 10/dea365f5ad28ad74ff29fcb581f7b74fc1f80271c5141b3b2bc91c454cbb6dfca753f28ae03730d657874fcbd89d0494d0e3965dfdca06d9855f467c576afa9d 23832 + languageName: node 23833 + linkType: hard 23834 + 23835 + "micromark-util-normalize-identifier@npm:^2.0.0": 23836 + version: 2.0.1 23837 + resolution: "micromark-util-normalize-identifier@npm:2.0.1" 23838 + dependencies: 23839 + micromark-util-symbol: "npm:^2.0.0" 23840 + checksum: 10/1eb9a289d7da067323df9fdc78bfa90ca3207ad8fd893ca02f3133e973adcb3743b233393d23d95c84ccaf5d220ae7f5a28402a644f135dcd4b8cfa60a7b5f84 23841 + languageName: node 23842 + linkType: hard 23843 + 23844 + "micromark-util-resolve-all@npm:^2.0.0": 23845 + version: 2.0.1 23846 + resolution: "micromark-util-resolve-all@npm:2.0.1" 23847 + dependencies: 23848 + micromark-util-types: "npm:^2.0.0" 23849 + checksum: 10/9275f3ddb6c26f254dd2158e66215d050454b279707a7d9ce5a3cd0eba23201021cedcb78ae1a746c1b23227dcc418ee40dd074ade195359506797a5493550cc 23850 + languageName: node 23851 + linkType: hard 23852 + 23853 + "micromark-util-sanitize-uri@npm:^2.0.0": 23854 + version: 2.0.1 23855 + resolution: "micromark-util-sanitize-uri@npm:2.0.1" 23856 + dependencies: 23857 + micromark-util-character: "npm:^2.0.0" 23858 + micromark-util-encode: "npm:^2.0.0" 23859 + micromark-util-symbol: "npm:^2.0.0" 23860 + checksum: 10/064c72abfc9777864ca0521a016dde62ab3e7af5215d10fd27e820798500d5d305da638459c589275c1a093cf588f493cc2f65273deac5a5331ecefc6c9ea78a 23861 + languageName: node 23862 + linkType: hard 23863 + 23864 + "micromark-util-subtokenize@npm:^2.0.0": 23865 + version: 2.1.0 23866 + resolution: "micromark-util-subtokenize@npm:2.1.0" 23867 + dependencies: 23868 + devlop: "npm:^1.0.0" 23869 + micromark-util-chunked: "npm:^2.0.0" 23870 + micromark-util-symbol: "npm:^2.0.0" 23871 + micromark-util-types: "npm:^2.0.0" 23872 + checksum: 10/5f18c70cb952a414a4d161f5d6a5254d33c7dfcd56577e592ef2e172a0414058d3531a3554f43538f14e243592fffbc2e68ddaf6a41c54577b3ba7beb555d3dc 23873 + languageName: node 23874 + linkType: hard 23875 + 23876 + "micromark-util-symbol@npm:^2.0.0": 23877 + version: 2.0.1 23878 + resolution: "micromark-util-symbol@npm:2.0.1" 23879 + checksum: 10/497e6d95fc21c2bb5265b78a6a60db518c376dc438739b2e7d4aee6f9f165222711724b456c63163314f32b8eea68a064687711d41e986262926eab23ddb9229 23880 + languageName: node 23881 + linkType: hard 23882 + 23883 + "micromark-util-types@npm:^2.0.0": 23884 + version: 2.0.2 23885 + resolution: "micromark-util-types@npm:2.0.2" 23886 + checksum: 10/a9eb067bd9384eab61942285d53738aa22f3fef4819eaf20249bec6ec13f1e4da2800230fd0ceb7e705108987aa9062fe3e9a8e5e48aa60180db80b9489dc3e2 23887 + languageName: node 23888 + linkType: hard 23889 + 23890 + "micromark@npm:^4.0.0": 23891 + version: 4.0.2 23892 + resolution: "micromark@npm:4.0.2" 23893 + dependencies: 23894 + "@types/debug": "npm:^4.0.0" 23895 + debug: "npm:^4.0.0" 23896 + decode-named-character-reference: "npm:^1.0.0" 23897 + devlop: "npm:^1.0.0" 23898 + micromark-core-commonmark: "npm:^2.0.0" 23899 + micromark-factory-space: "npm:^2.0.0" 23900 + micromark-util-character: "npm:^2.0.0" 23901 + micromark-util-chunked: "npm:^2.0.0" 23902 + micromark-util-combine-extensions: "npm:^2.0.0" 23903 + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" 23904 + micromark-util-encode: "npm:^2.0.0" 23905 + micromark-util-normalize-identifier: "npm:^2.0.0" 23906 + micromark-util-resolve-all: "npm:^2.0.0" 23907 + micromark-util-sanitize-uri: "npm:^2.0.0" 23908 + micromark-util-subtokenize: "npm:^2.0.0" 23909 + micromark-util-symbol: "npm:^2.0.0" 23910 + micromark-util-types: "npm:^2.0.0" 23911 + checksum: 10/1b85e49c8f71013df2d07a59e477deb72cd325d41cc15f35b2aa52b8b7a93fed45498ce3e18ed34464a9afa9ba8a9210b2509454b2a2d16ac06c7429f562bfac 23912 + languageName: node 23913 + linkType: hard 23914 + 21023 23915 "micromatch@npm:^4.0.0, micromatch@npm:~4.0.8": 21024 23916 version: 4.0.8 21025 23917 resolution: "micromatch@npm:4.0.8" ··· 21202 24094 languageName: node 21203 24095 linkType: hard 21204 24096 21205 - "minimist@npm:^1.1.3, minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.7, minimist@npm:^1.2.8": 24097 + "minimist@npm:^1.1.3, minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.7, minimist@npm:^1.2.8": 21206 24098 version: 1.2.8 21207 24099 resolution: "minimist@npm:1.2.8" 21208 24100 checksum: 10/908491b6cc15a6c440ba5b22780a0ba89b9810e1aea684e253e43c4e3b8d56ec1dcdd7ea96dde119c29df59c936cde16062159eae4225c691e19c70b432b6e6f ··· 21346 24238 languageName: node 21347 24239 linkType: hard 21348 24240 24241 + "mkdirp-classic@npm:^0.5.2, mkdirp-classic@npm:^0.5.3": 24242 + version: 0.5.3 24243 + resolution: "mkdirp-classic@npm:0.5.3" 24244 + checksum: 10/3f4e088208270bbcc148d53b73e9a5bd9eef05ad2cbf3b3d0ff8795278d50dd1d11a8ef1875ff5aea3fa888931f95bfcb2ad5b7c1061cfefd6284d199e6776ac 24245 + languageName: node 24246 + linkType: hard 24247 + 21349 24248 "mkdirp@npm:^0.5.1, mkdirp@npm:~0.5.1": 21350 24249 version: 0.5.6 21351 24250 resolution: "mkdirp@npm:0.5.6" ··· 21424 24323 languageName: node 21425 24324 linkType: hard 21426 24325 24326 + "mrmime@npm:^2.0.1": 24327 + version: 2.0.1 24328 + resolution: "mrmime@npm:2.0.1" 24329 + checksum: 10/1f966e2c05b7264209c4149ae50e8e830908eb64dd903535196f6ad72681fa109b794007288a3c2814f7a1ecf9ca192769909c0c374d974d604a8de5fc095d4a 24330 + languageName: node 24331 + linkType: hard 24332 + 21427 24333 "ms@npm:2.0.0": 21428 24334 version: 2.0.0 21429 24335 resolution: "ms@npm:2.0.0" ··· 21549 24455 languageName: node 21550 24456 linkType: hard 21551 24457 24458 + "nanoid@npm:^3.3.8": 24459 + version: 3.3.11 24460 + resolution: "nanoid@npm:3.3.11" 24461 + bin: 24462 + nanoid: bin/nanoid.cjs 24463 + checksum: 10/73b5afe5975a307aaa3c95dfe3334c52cdf9ae71518176895229b8d65ab0d1c0417dd081426134eb7571c055720428ea5d57c645138161e7d10df80815527c48 24464 + languageName: node 24465 + linkType: hard 24466 + 24467 + "napi-build-utils@npm:^2.0.0": 24468 + version: 2.0.0 24469 + resolution: "napi-build-utils@npm:2.0.0" 24470 + checksum: 10/69adcdb828481737f1ec64440286013f6479d5b264e24d5439ba795f65293d0bb6d962035de07c65fae525ed7d2fcd0baab6891d8e3734ea792fec43918acf83 24471 + languageName: node 24472 + linkType: hard 24473 + 21552 24474 "napi-wasm@npm:^1.1.0": 21553 24475 version: 1.1.0 21554 24476 resolution: "napi-wasm@npm:1.1.0" ··· 21586 24508 languageName: node 21587 24509 linkType: hard 21588 24510 24511 + "neotraverse@npm:^0.6.18": 24512 + version: 0.6.18 24513 + resolution: "neotraverse@npm:0.6.18" 24514 + checksum: 10/a19649cdadb9a3ce3c54c2d6093a2eb1e12364ace384301a7515d40c752bfbac45d12c6eb9c4b004beba7bd4d1871323ebd46ad1446e0de5bc5143b0367647cb 24515 + languageName: node 24516 + linkType: hard 24517 + 21589 24518 "nested-error-stacks@npm:~2.0.1": 21590 24519 version: 2.0.1 21591 24520 resolution: "nested-error-stacks@npm:2.0.1" ··· 21597 24526 version: 1.0.5 21598 24527 resolution: "nice-try@npm:1.0.5" 21599 24528 checksum: 10/0b4af3b5bb5d86c289f7a026303d192a7eb4417231fe47245c460baeabae7277bcd8fd9c728fb6bd62c30b3e15cd6620373e2cf33353b095d8b403d3e8a15aff 24529 + languageName: node 24530 + linkType: hard 24531 + 24532 + "nlcst-to-string@npm:^4.0.0": 24533 + version: 4.0.0 24534 + resolution: "nlcst-to-string@npm:4.0.0" 24535 + dependencies: 24536 + "@types/nlcst": "npm:^2.0.0" 24537 + checksum: 10/a780ca517548582016b6a92216962500de1179ace37cc7a9afbddd219e6893f253eab564f4c2292a13cf2ade27a669c6222b3eb27671cf647e15b6abf2eb1827 21600 24538 languageName: node 21601 24539 linkType: hard 21602 24540 ··· 21610 24548 languageName: node 21611 24549 linkType: hard 21612 24550 24551 + "node-abi@npm:^3.3.0": 24552 + version: 3.75.0 24553 + resolution: "node-abi@npm:3.75.0" 24554 + dependencies: 24555 + semver: "npm:^7.3.5" 24556 + checksum: 10/dd87627fa4f447bda9c69dc1ec0da82e3b466790844b5bd7f7787db093dfea21dcc405588e13b5207c266472c1fda9b95060da8d70644aeb5fc31ec81dc2007c 24557 + languageName: node 24558 + linkType: hard 24559 + 21613 24560 "node-abi@npm:^3.45.0": 21614 24561 version: 3.67.0 21615 24562 resolution: "node-abi@npm:3.67.0" ··· 21635 24582 languageName: node 21636 24583 linkType: hard 21637 24584 24585 + "node-addon-api@npm:^6.1.0": 24586 + version: 6.1.0 24587 + resolution: "node-addon-api@npm:6.1.0" 24588 + dependencies: 24589 + node-gyp: "npm:latest" 24590 + checksum: 10/8eea1d4d965930a177a0508695beb0d89b4c1d80bf330646a035357a1e8fc31e0d09686e2374996e96e757b947a7ece319f98ede3146683f162597c0bcb4df90 24591 + languageName: node 24592 + linkType: hard 24593 + 21638 24594 "node-addon-api@npm:^7.0.0": 21639 24595 version: 7.1.1 21640 24596 resolution: "node-addon-api@npm:7.1.1" ··· 21669 24625 languageName: node 21670 24626 linkType: hard 21671 24627 24628 + "node-fetch-native@npm:^1.6.6": 24629 + version: 1.6.6 24630 + resolution: "node-fetch-native@npm:1.6.6" 24631 + checksum: 10/e90d5287fdfb10b9b13276158c9c0ff4318eef222562cf4a504e71665236dea9dda10ae77eb9f0f89cb7677a32ccf2326b9b54f7090121c2af2ac617c1256f8f 24632 + languageName: node 24633 + linkType: hard 24634 + 21672 24635 "node-fetch@npm:2.6.7": 21673 24636 version: 2.6.7 21674 24637 resolution: "node-fetch@npm:2.6.7" ··· 21683 24646 languageName: node 21684 24647 linkType: hard 21685 24648 21686 - "node-fetch@npm:^2.2.0, node-fetch@npm:^2.6.1, node-fetch@npm:^2.6.12, node-fetch@npm:^2.6.7, node-fetch@npm:^2.6.9": 24649 + "node-fetch@npm:^2.2.0, node-fetch@npm:^2.6.1, node-fetch@npm:^2.6.12, node-fetch@npm:^2.6.7, node-fetch@npm:^2.6.9, node-fetch@npm:^2.7.0": 21687 24650 version: 2.7.0 21688 24651 resolution: "node-fetch@npm:2.7.0" 21689 24652 dependencies: ··· 21798 24761 version: 1.1.12 21799 24762 resolution: "node-machine-id@npm:1.1.12" 21800 24763 checksum: 10/46bf3d4fab8d0e63b24c42bcec2b6975c7ec5bc16e53d7a589d095668d0fdf0bfcbcdc28246dd1ef74cf95a37fbd774cd4b17b41f518d79dfad7fdc99f995903 24764 + languageName: node 24765 + linkType: hard 24766 + 24767 + "node-mock-http@npm:^1.0.0": 24768 + version: 1.0.0 24769 + resolution: "node-mock-http@npm:1.0.0" 24770 + checksum: 10/338a94e4027e96f7d33af8f7012aeff095740a89df168950d7c39a968d6edb253b145eab41bc83738db4898581d941d96d855254c344a72c8609ee69f888ce86 21801 24771 languageName: node 21802 24772 linkType: hard 21803 24773 ··· 22032 25002 languageName: node 22033 25003 linkType: hard 22034 25004 22035 - "nth-check@npm:^2.0.1": 25005 + "nth-check@npm:^2.0.0, nth-check@npm:^2.0.1": 22036 25006 version: 2.1.1 22037 25007 resolution: "nth-check@npm:2.1.1" 22038 25008 dependencies: ··· 22259 25229 languageName: node 22260 25230 linkType: hard 22261 25231 25232 + "ofetch@npm:^1.4.1": 25233 + version: 1.4.1 25234 + resolution: "ofetch@npm:1.4.1" 25235 + dependencies: 25236 + destr: "npm:^2.0.3" 25237 + node-fetch-native: "npm:^1.6.4" 25238 + ufo: "npm:^1.5.4" 25239 + checksum: 10/329ecd5595eff6da090c728e66f4223ad7ba5c2c309446f3707245c1b213da47dfd1eb1740f26b3da9e31ed7b7a903733bdaae85187b714514da865a0c5a4a9c 25240 + languageName: node 25241 + linkType: hard 25242 + 22262 25243 "ohash@npm:^1.1.3": 22263 25244 version: 1.1.3 22264 25245 resolution: "ohash@npm:1.1.3" 22265 25246 checksum: 10/80a3528285f61588600c8c4f091a67f55fbc141f4eec4b3c30182468053042eef5a9684780e963f98a71ec068f3de56d42920c6417bf8f79ab14aeb75ac0bb39 25247 + languageName: node 25248 + linkType: hard 25249 + 25250 + "ohash@npm:^2.0.0": 25251 + version: 2.0.11 25252 + resolution: "ohash@npm:2.0.11" 25253 + checksum: 10/6b0423f42cc95c3d643f390a88364aac824178b7788dccb4e8c64e2124463d0069e60d4d90bad88ed9823808368d051e088aa27058ca4722b1397a201ffbfa4b 22266 25254 languageName: node 22267 25255 linkType: hard 22268 25256 ··· 22343 25331 languageName: node 22344 25332 linkType: hard 22345 25333 25334 + "oniguruma-parser@npm:^0.12.1": 25335 + version: 0.12.1 25336 + resolution: "oniguruma-parser@npm:0.12.1" 25337 + checksum: 10/2e7e308ec222f377b4be21e87f009729ce1cc014511d35a50440e7270a17413e4859b8c7ad1985123abe1089bda5ad2d0feccc75f7de25d9cb272b7cc34b4f3c 25338 + languageName: node 25339 + linkType: hard 25340 + 25341 + "oniguruma-to-es@npm:^4.2.0": 25342 + version: 4.3.3 25343 + resolution: "oniguruma-to-es@npm:4.3.3" 25344 + dependencies: 25345 + oniguruma-parser: "npm:^0.12.1" 25346 + regex: "npm:^6.0.1" 25347 + regex-recursion: "npm:^6.0.2" 25348 + checksum: 10/49b372569d335077c32bda066ac1da4a3f15dd25b717025cf43417fabd71d56e1152debcd8a832596e180d721b808822c88e65eb12abb26665ab8fe017f3c861 25349 + languageName: node 25350 + linkType: hard 25351 + 22346 25352 "open@npm:^7.0.3": 22347 25353 version: 7.4.2 22348 25354 resolution: "open@npm:7.4.2" ··· 22557 25563 languageName: node 22558 25564 linkType: hard 22559 25565 25566 + "p-limit@npm:^6.2.0": 25567 + version: 6.2.0 25568 + resolution: "p-limit@npm:6.2.0" 25569 + dependencies: 25570 + yocto-queue: "npm:^1.1.1" 25571 + checksum: 10/70e8df3e5f1c173c9bd9fa8390a3c5c2797505240ae42973536992b1f5f59a922153c2f35ff1bf36fb72a0f025b0f13fca062a4233e830adad446960d56b4d84 25572 + languageName: node 25573 + linkType: hard 25574 + 22560 25575 "p-locate@npm:^2.0.0": 22561 25576 version: 2.0.0 22562 25577 resolution: "p-locate@npm:2.0.0" ··· 22626 25641 languageName: node 22627 25642 linkType: hard 22628 25643 25644 + "p-queue@npm:^8.1.0": 25645 + version: 8.1.0 25646 + resolution: "p-queue@npm:8.1.0" 25647 + dependencies: 25648 + eventemitter3: "npm:^5.0.1" 25649 + p-timeout: "npm:^6.1.2" 25650 + checksum: 10/0dc23488b855c6b3a6c551e41c3c9c1c0991f097c294a2476f34d47ea3b1c74deac5ccd465ebc1560432e6a490a133a60b428dd44d8e51dff662f6b792814320 25651 + languageName: node 25652 + linkType: hard 25653 + 22629 25654 "p-reduce@npm:2.1.0, p-reduce@npm:^2.0.0, p-reduce@npm:^2.1.0": 22630 25655 version: 2.1.0 22631 25656 resolution: "p-reduce@npm:2.1.0" ··· 22652 25677 languageName: node 22653 25678 linkType: hard 22654 25679 25680 + "p-timeout@npm:^6.1.2": 25681 + version: 6.1.4 25682 + resolution: "p-timeout@npm:6.1.4" 25683 + checksum: 10/5ee0df408ba353cc2d7036af90d2eb1724c428fd1cf67cd9110c03f0035077c29f6506bff7198dfbef4910ec558c711f21f9741d89d043a6f2c2ff82064afcaf 25684 + languageName: node 25685 + linkType: hard 25686 + 22655 25687 "p-try@npm:^1.0.0": 22656 25688 version: 1.0.0 22657 25689 resolution: "p-try@npm:1.0.0" ··· 22682 25714 languageName: node 22683 25715 linkType: hard 22684 25716 25717 + "package-manager-detector@npm:^1.1.0": 25718 + version: 1.2.0 25719 + resolution: "package-manager-detector@npm:1.2.0" 25720 + checksum: 10/f0492cc8334813910bd65f83b669a180c4cc23c788face2d753210694a230dc5309fa230a895ba34d3e9a83569df5ac554e3f2a9a983a165e3773cce7f2e0ffb 25721 + languageName: node 25722 + linkType: hard 25723 + 22685 25724 "pacote@npm:^18.0.0, pacote@npm:^18.0.6": 22686 25725 version: 18.0.6 22687 25726 resolution: "pacote@npm:18.0.6" ··· 22709 25748 languageName: node 22710 25749 linkType: hard 22711 25750 25751 + "pagefind@npm:^1.3.0": 25752 + version: 1.3.0 25753 + resolution: "pagefind@npm:1.3.0" 25754 + dependencies: 25755 + "@pagefind/darwin-arm64": "npm:1.3.0" 25756 + "@pagefind/darwin-x64": "npm:1.3.0" 25757 + "@pagefind/linux-arm64": "npm:1.3.0" 25758 + "@pagefind/linux-x64": "npm:1.3.0" 25759 + "@pagefind/windows-x64": "npm:1.3.0" 25760 + dependenciesMeta: 25761 + "@pagefind/darwin-arm64": 25762 + optional: true 25763 + "@pagefind/darwin-x64": 25764 + optional: true 25765 + "@pagefind/linux-arm64": 25766 + optional: true 25767 + "@pagefind/linux-x64": 25768 + optional: true 25769 + "@pagefind/windows-x64": 25770 + optional: true 25771 + bin: 25772 + pagefind: lib/runner/bin.cjs 25773 + checksum: 10/ccf4acbdb1ca23a11094ea5ccccaa67b2b13bf5f1243d6fe6f227318fa8875509d69ee34899dcc053acb2269cb3cce4cb6904b7cb0fee271ffeddde52d9a5fe5 25774 + languageName: node 25775 + linkType: hard 25776 + 25777 + "pako@npm:^0.2.5": 25778 + version: 0.2.9 25779 + resolution: "pako@npm:0.2.9" 25780 + checksum: 10/627c6842e90af0b3a9ee47345bd66485a589aff9514266f4fa9318557ad819c46fedf97510f2cef9b6224c57913777966a05cb46caf6a9b31177a5401a06fe15 25781 + languageName: node 25782 + linkType: hard 25783 + 22712 25784 "param-case@npm:^3.0.4": 22713 25785 version: 3.0.4 22714 25786 resolution: "param-case@npm:3.0.4" ··· 22757 25829 languageName: node 22758 25830 linkType: hard 22759 25831 25832 + "parse-entities@npm:^4.0.0": 25833 + version: 4.0.2 25834 + resolution: "parse-entities@npm:4.0.2" 25835 + dependencies: 25836 + "@types/unist": "npm:^2.0.0" 25837 + character-entities-legacy: "npm:^3.0.0" 25838 + character-reference-invalid: "npm:^2.0.0" 25839 + decode-named-character-reference: "npm:^1.0.0" 25840 + is-alphanumerical: "npm:^2.0.0" 25841 + is-decimal: "npm:^2.0.0" 25842 + is-hexadecimal: "npm:^2.0.0" 25843 + checksum: 10/b0ce693d0b3d7ed1cea6fe814e6e077c71532695f01178e846269e9a2bc2f7ff34ca4bb8db80b48af0451100f25bb010df6591c9bb6306e4680ccb423d1e4038 25844 + languageName: node 25845 + linkType: hard 25846 + 22760 25847 "parse-json@npm:^2.2.0": 22761 25848 version: 2.2.0 22762 25849 resolution: "parse-json@npm:2.2.0" ··· 22788 25875 languageName: node 22789 25876 linkType: hard 22790 25877 25878 + "parse-latin@npm:^7.0.0": 25879 + version: 7.0.0 25880 + resolution: "parse-latin@npm:7.0.0" 25881 + dependencies: 25882 + "@types/nlcst": "npm:^2.0.0" 25883 + "@types/unist": "npm:^3.0.0" 25884 + nlcst-to-string: "npm:^4.0.0" 25885 + unist-util-modify-children: "npm:^4.0.0" 25886 + unist-util-visit-children: "npm:^3.0.0" 25887 + vfile: "npm:^6.0.0" 25888 + checksum: 10/4ad50aef731f47c8d02ecf777343c508a2b2680dfd08aae11581082a17f605e9a95f4114a44a4ebdcd8fd409b1e843cc08421bf28d9ed04918677849dc7f13aa 25889 + languageName: node 25890 + linkType: hard 25891 + 22791 25892 "parse-passwd@npm:^1.0.0": 22792 25893 version: 1.0.0 22793 25894 resolution: "parse-passwd@npm:1.0.0" ··· 22822 25923 languageName: node 22823 25924 linkType: hard 22824 25925 25926 + "parse5@npm:^7.0.0": 25927 + version: 7.3.0 25928 + resolution: "parse5@npm:7.3.0" 25929 + dependencies: 25930 + entities: "npm:^6.0.0" 25931 + checksum: 10/b0e48be20b820c655b138b86fa6fb3a790de6c891aa2aba536524f8027b4dca4fe538f11a0e5cf2f6f847d120dbb9e4822dcaeb933ff1e10850a2ef0154d1d88 25932 + languageName: node 25933 + linkType: hard 25934 + 22825 25935 "parseurl@npm:~1.3.2, parseurl@npm:~1.3.3": 22826 25936 version: 1.3.3 22827 25937 resolution: "parseurl@npm:1.3.3" ··· 22982 26092 languageName: node 22983 26093 linkType: hard 22984 26094 26095 + "picocolors@npm:^1.1.1": 26096 + version: 1.1.1 26097 + resolution: "picocolors@npm:1.1.1" 26098 + checksum: 10/e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045 26099 + languageName: node 26100 + linkType: hard 26101 + 22985 26102 "picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1": 22986 26103 version: 2.3.1 22987 26104 resolution: "picomatch@npm:2.3.1" ··· 22996 26113 languageName: node 22997 26114 linkType: hard 22998 26115 26116 + "picomatch@npm:^4.0.2": 26117 + version: 4.0.2 26118 + resolution: "picomatch@npm:4.0.2" 26119 + checksum: 10/ce617b8da36797d09c0baacb96ca8a44460452c89362d7cb8f70ca46b4158ba8bc3606912de7c818eb4a939f7f9015cef3c766ec8a0c6bfc725fdc078e39c717 26120 + languageName: node 26121 + linkType: hard 26122 + 22999 26123 "pidtree@npm:^0.3.0": 23000 26124 version: 0.3.1 23001 26125 resolution: "pidtree@npm:0.3.1" ··· 23211 26335 languageName: node 23212 26336 linkType: hard 23213 26337 26338 + "postcss-nested@npm:^6.0.1": 26339 + version: 6.2.0 26340 + resolution: "postcss-nested@npm:6.2.0" 26341 + dependencies: 26342 + postcss-selector-parser: "npm:^6.1.1" 26343 + peerDependencies: 26344 + postcss: ^8.2.14 26345 + checksum: 10/d7f6ba6bfd03d42f84689a0630d4e393c421bb53723f16fe179a840f03ed17763b0fe494458577d2a015e857e0ec27c7e194909ffe209ee5f0676aec39737317 26346 + languageName: node 26347 + linkType: hard 26348 + 23214 26349 "postcss-selector-parser@npm:^6.0.10": 23215 26350 version: 6.1.1 23216 26351 resolution: "postcss-selector-parser@npm:6.1.1" ··· 23221 26356 languageName: node 23222 26357 linkType: hard 23223 26358 23224 - "postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.0.4": 26359 + "postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.0.4, postcss-selector-parser@npm:^6.1.1": 23225 26360 version: 6.1.2 23226 26361 resolution: "postcss-selector-parser@npm:6.1.2" 23227 26362 dependencies: ··· 23249 26384 languageName: node 23250 26385 linkType: hard 23251 26386 26387 + "postcss@npm:^8.4.38, postcss@npm:^8.5.3": 26388 + version: 8.5.3 26389 + resolution: "postcss@npm:8.5.3" 26390 + dependencies: 26391 + nanoid: "npm:^3.3.8" 26392 + picocolors: "npm:^1.1.1" 26393 + source-map-js: "npm:^1.2.1" 26394 + checksum: 10/6d7e21a772e8b05bf102636918654dac097bac013f0dc8346b72ac3604fc16829646f94ea862acccd8f82e910b00e2c11c1f0ea276543565d278c7ca35516a7c 26395 + languageName: node 26396 + linkType: hard 26397 + 23252 26398 "postcss@npm:~8.4.32": 23253 26399 version: 8.4.39 23254 26400 resolution: "postcss@npm:8.4.39" ··· 23278 26424 languageName: node 23279 26425 linkType: hard 23280 26426 26427 + "prebuild-install@npm:^7.1.1": 26428 + version: 7.1.3 26429 + resolution: "prebuild-install@npm:7.1.3" 26430 + dependencies: 26431 + detect-libc: "npm:^2.0.0" 26432 + expand-template: "npm:^2.0.3" 26433 + github-from-package: "npm:0.0.0" 26434 + minimist: "npm:^1.2.3" 26435 + mkdirp-classic: "npm:^0.5.3" 26436 + napi-build-utils: "npm:^2.0.0" 26437 + node-abi: "npm:^3.3.0" 26438 + pump: "npm:^3.0.0" 26439 + rc: "npm:^1.2.7" 26440 + simple-get: "npm:^4.0.0" 26441 + tar-fs: "npm:^2.0.0" 26442 + tunnel-agent: "npm:^0.6.0" 26443 + bin: 26444 + prebuild-install: bin.js 26445 + checksum: 10/1b7e4c00d2750b532a4fc2a83ffb0c5fefa1b6f2ad071896ead15eeadc3255f5babd816949991af083cf7429e375ae8c7d1c51f73658559da36f948a020a3a11 26446 + languageName: node 26447 + linkType: hard 26448 + 23281 26449 "prelude-ls@npm:^1.2.1": 23282 26450 version: 1.2.1 23283 26451 resolution: "prelude-ls@npm:1.2.1" ··· 23322 26490 languageName: node 23323 26491 linkType: hard 23324 26492 26493 + "prismjs@npm:^1.29.0": 26494 + version: 1.30.0 26495 + resolution: "prismjs@npm:1.30.0" 26496 + checksum: 10/6b48a2439a82e5c6882f48ebc1564c3890e16463ba17ac10c3ad4f62d98dea5b5c915b172b63b83023a70ad4f5d7be3e8a60304420db34a161fae69dd4e3e2da 26497 + languageName: node 26498 + linkType: hard 26499 + 23325 26500 "proc-log@npm:^3.0.0": 23326 26501 version: 3.0.0 23327 26502 resolution: "proc-log@npm:3.0.0" ··· 23420 26595 languageName: node 23421 26596 linkType: hard 23422 26597 23423 - "prompts@npm:^2.3.2": 26598 + "prompts@npm:^2.3.2, prompts@npm:^2.4.2": 23424 26599 version: 2.4.2 23425 26600 resolution: "prompts@npm:2.4.2" 23426 26601 dependencies: ··· 23447 26622 object-assign: "npm:^4.1.1" 23448 26623 react-is: "npm:^16.13.1" 23449 26624 checksum: 10/7d959caec002bc964c86cdc461ec93108b27337dabe6192fb97d69e16a0c799a03462713868b40749bfc1caf5f57ef80ac3e4ffad3effa636ee667582a75e2c0 26625 + languageName: node 26626 + linkType: hard 26627 + 26628 + "property-information@npm:^6.0.0": 26629 + version: 6.5.0 26630 + resolution: "property-information@npm:6.5.0" 26631 + checksum: 10/fced94f3a09bf651ad1824d1bdc8980428e3e480e6d01e98df6babe2cc9d45a1c52eee9a7736d2006958f9b394eb5964dedd37e23038086ddc143fc2fd5e426c 26632 + languageName: node 26633 + linkType: hard 26634 + 26635 + "property-information@npm:^7.0.0": 26636 + version: 7.0.0 26637 + resolution: "property-information@npm:7.0.0" 26638 + checksum: 10/55f443088456cddc2fe499d6f5895e68cbd465e39dc318ecc63a0d2432d1b918f51fb6d13f8b1adf8a78337bc4e608baa6e46afbe0c6d50d2e38588b2c409f86 23450 26639 languageName: node 23451 26640 linkType: hard 23452 26641 ··· 23721 26910 languageName: node 23722 26911 linkType: hard 23723 26912 23724 - "rc@npm:~1.2.7": 26913 + "rc@npm:^1.2.7, rc@npm:~1.2.7": 23725 26914 version: 1.2.8 23726 26915 resolution: "rc@npm:1.2.8" 23727 26916 dependencies: ··· 24278 27467 languageName: node 24279 27468 linkType: hard 24280 27469 27470 + "readdirp@npm:^4.0.1": 27471 + version: 4.1.2 27472 + resolution: "readdirp@npm:4.1.2" 27473 + checksum: 10/7b817c265940dba90bb9c94d82920d76c3a35ea2d67f9f9d8bd936adcfe02d50c802b14be3dd2e725e002dddbe2cc1c7a0edfb1bc3a365c9dfd5a61e612eea1e 27474 + languageName: node 27475 + linkType: hard 27476 + 24281 27477 "readdirp@npm:~3.6.0": 24282 27478 version: 3.6.0 24283 27479 resolution: "readdirp@npm:3.6.0" ··· 24338 27534 languageName: node 24339 27535 linkType: hard 24340 27536 27537 + "recma-build-jsx@npm:^1.0.0": 27538 + version: 1.0.0 27539 + resolution: "recma-build-jsx@npm:1.0.0" 27540 + dependencies: 27541 + "@types/estree": "npm:^1.0.0" 27542 + estree-util-build-jsx: "npm:^3.0.0" 27543 + vfile: "npm:^6.0.0" 27544 + checksum: 10/ba82fe08efdf5ecd178ab76a08a4acac792a41d9f38aea99f93cb3d9e577ba8952620c547e730ba6717c13efa08fdb3dfe893bccfa9717f5a81d3fb2ab20c572 27545 + languageName: node 27546 + linkType: hard 27547 + 27548 + "recma-jsx@npm:^1.0.0": 27549 + version: 1.0.0 27550 + resolution: "recma-jsx@npm:1.0.0" 27551 + dependencies: 27552 + acorn-jsx: "npm:^5.0.0" 27553 + estree-util-to-js: "npm:^2.0.0" 27554 + recma-parse: "npm:^1.0.0" 27555 + recma-stringify: "npm:^1.0.0" 27556 + unified: "npm:^11.0.0" 27557 + checksum: 10/dd9183f1f053bff136d710e62429ee7ca3ab5f41598ab6ea6a07cc00103b0ed356cb8ece578c0e9d19cba6dbfd6ecaace644cd0d9bf40d8af2fbe059d26c5d80 27558 + languageName: node 27559 + linkType: hard 27560 + 27561 + "recma-parse@npm:^1.0.0": 27562 + version: 1.0.0 27563 + resolution: "recma-parse@npm:1.0.0" 27564 + dependencies: 27565 + "@types/estree": "npm:^1.0.0" 27566 + esast-util-from-js: "npm:^2.0.0" 27567 + unified: "npm:^11.0.0" 27568 + vfile: "npm:^6.0.0" 27569 + checksum: 10/8854f830ee7b7a21934f9ac2108412a2bdd9c41465e617ac8d6edd158ff05c70dca121bf87d3716d863545b387d39e67ff011d5cb0c3d1fdba9d5a48140e12ee 27570 + languageName: node 27571 + linkType: hard 27572 + 27573 + "recma-stringify@npm:^1.0.0": 27574 + version: 1.0.0 27575 + resolution: "recma-stringify@npm:1.0.0" 27576 + dependencies: 27577 + "@types/estree": "npm:^1.0.0" 27578 + estree-util-to-js: "npm:^2.0.0" 27579 + unified: "npm:^11.0.0" 27580 + vfile: "npm:^6.0.0" 27581 + checksum: 10/4ab6f0416296fd6b1a6180e74e19ec110b3fa6f0b3a434468e84092e8c36db99a3a77bd6412cf7a4c8d69b1701ab38aed7d0fd466588802ca295765892d2d361 27582 + languageName: node 27583 + linkType: hard 27584 + 24341 27585 "redent@npm:^3.0.0": 24342 27586 version: 3.0.0 24343 27587 resolution: "redent@npm:3.0.0" ··· 24403 27647 languageName: node 24404 27648 linkType: hard 24405 27649 27650 + "regex-recursion@npm:^6.0.2": 27651 + version: 6.0.2 27652 + resolution: "regex-recursion@npm:6.0.2" 27653 + dependencies: 27654 + regex-utilities: "npm:^2.3.0" 27655 + checksum: 10/ce25d54bdf79e38ae663c26a7f265754047b918e8b771b4ed3c871e9a926b85b195dcd0dd7a6444c82d2c9db9b2cbcaf51a353a807b469a3ad7a2172f27f21d4 27656 + languageName: node 27657 + linkType: hard 27658 + 27659 + "regex-utilities@npm:^2.3.0": 27660 + version: 2.3.0 27661 + resolution: "regex-utilities@npm:2.3.0" 27662 + checksum: 10/d11519c31f379488cbc6278b8645d72f16339ee325c79a4b8b3a6477738016a52983158dc69ae1b5867f8b06978ff5d83933520257a57f7e5c3e4ac6a1ea3cc7 27663 + languageName: node 27664 + linkType: hard 27665 + 27666 + "regex@npm:^6.0.1": 27667 + version: 6.0.1 27668 + resolution: "regex@npm:6.0.1" 27669 + dependencies: 27670 + regex-utilities: "npm:^2.3.0" 27671 + checksum: 10/8f8c35ce0a74b65ce29495b8c18767a4b2724ca4a4b4acfc4d45a2851a5afdbc4daae447a1a762f8faf06a1efe3d7dd8cfc4ebbee9f7c55411d4bd30f6976026 27672 + languageName: node 27673 + linkType: hard 27674 + 24406 27675 "regexp.prototype.flags@npm:^1.5.2": 24407 27676 version: 1.5.2 24408 27677 resolution: "regexp.prototype.flags@npm:1.5.2" ··· 24447 27716 languageName: node 24448 27717 linkType: hard 24449 27718 27719 + "rehype-expressive-code@npm:^0.41.2": 27720 + version: 0.41.2 27721 + resolution: "rehype-expressive-code@npm:0.41.2" 27722 + dependencies: 27723 + expressive-code: "npm:^0.41.2" 27724 + checksum: 10/fd807bd9abcc202270ef7eae0143b51ca43ca4728ee20782fbf21c4708dbc3ccc3e7b2dcb151e8d08c1f8ccd15b63bc6d0d85b4f4bccfbbbc61cfc450029df8f 27725 + languageName: node 27726 + linkType: hard 27727 + 27728 + "rehype-format@npm:^5.0.0": 27729 + version: 5.0.1 27730 + resolution: "rehype-format@npm:5.0.1" 27731 + dependencies: 27732 + "@types/hast": "npm:^3.0.0" 27733 + hast-util-format: "npm:^1.0.0" 27734 + checksum: 10/13649e36e56472a2347257428dc6b641e0d2c950d9f16c210ecf9e29e3949840fd3796148230b26999f82247f963cf95687caa887a067eb40300b7a0c8ce4801 27735 + languageName: node 27736 + linkType: hard 27737 + 27738 + "rehype-parse@npm:^9.0.0": 27739 + version: 9.0.1 27740 + resolution: "rehype-parse@npm:9.0.1" 27741 + dependencies: 27742 + "@types/hast": "npm:^3.0.0" 27743 + hast-util-from-html: "npm:^2.0.0" 27744 + unified: "npm:^11.0.0" 27745 + checksum: 10/67855c6426d1cd39d64b4a38e934bb234e59f1d4df2f67008848b9bde01f9e068eed549d62a97f54d5c5eb8bfa56c7e2c4b7c3aad769fc4ded9218dc9078ef37 27746 + languageName: node 27747 + linkType: hard 27748 + 27749 + "rehype-raw@npm:^7.0.0": 27750 + version: 7.0.0 27751 + resolution: "rehype-raw@npm:7.0.0" 27752 + dependencies: 27753 + "@types/hast": "npm:^3.0.0" 27754 + hast-util-raw: "npm:^9.0.0" 27755 + vfile: "npm:^6.0.0" 27756 + checksum: 10/65dd5809f95410ca5056efe50f5b16cb08a69c0785c6d4ec80c9280487efbaec81d342084f6cfdca5624134c1c4018705d97c37b5c0a21d9625ed8a3c88700f1 27757 + languageName: node 27758 + linkType: hard 27759 + 27760 + "rehype-recma@npm:^1.0.0": 27761 + version: 1.0.0 27762 + resolution: "rehype-recma@npm:1.0.0" 27763 + dependencies: 27764 + "@types/estree": "npm:^1.0.0" 27765 + "@types/hast": "npm:^3.0.0" 27766 + hast-util-to-estree: "npm:^3.0.0" 27767 + checksum: 10/d3d544ad4a18485ec6b03a194b40473f96e2169c63d6a8ee3ce9af5e87b946c308fb9549b53e010c7dd39740337e387bb1a8856ce1b47f3e957b696f1d5b2d0c 27768 + languageName: node 27769 + linkType: hard 27770 + 27771 + "rehype-stringify@npm:^10.0.0, rehype-stringify@npm:^10.0.1": 27772 + version: 10.0.1 27773 + resolution: "rehype-stringify@npm:10.0.1" 27774 + dependencies: 27775 + "@types/hast": "npm:^3.0.0" 27776 + hast-util-to-html: "npm:^9.0.0" 27777 + unified: "npm:^11.0.0" 27778 + checksum: 10/76ded4b2b137f585c6a35ac2e95a35cbd9d49558bd5af946b7e7a9e67b17cb2a7d33f3df21776d2e9972cd057e829e17f61954bc72ea6cbe0e20d670b179adab 27779 + languageName: node 27780 + linkType: hard 27781 + 27782 + "rehype@npm:^13.0.1, rehype@npm:^13.0.2": 27783 + version: 13.0.2 27784 + resolution: "rehype@npm:13.0.2" 27785 + dependencies: 27786 + "@types/hast": "npm:^3.0.0" 27787 + rehype-parse: "npm:^9.0.0" 27788 + rehype-stringify: "npm:^10.0.0" 27789 + unified: "npm:^11.0.0" 27790 + checksum: 10/40614d9e6ddd814b4551737362904ce1cb7d6c00e98345fd676e3ec3c723b7b0fcca0a192b0be58bec0ef5e5fe1a60fd7af31a3f49c58133b38b463f4e9d1471 27791 + languageName: node 27792 + linkType: hard 27793 + 24450 27794 "relateurl@npm:^0.2.7": 24451 27795 version: 0.2.7 24452 27796 resolution: "relateurl@npm:0.2.7" ··· 24454 27798 languageName: node 24455 27799 linkType: hard 24456 27800 27801 + "remark-directive@npm:^3.0.0": 27802 + version: 3.0.1 27803 + resolution: "remark-directive@npm:3.0.1" 27804 + dependencies: 27805 + "@types/mdast": "npm:^4.0.0" 27806 + mdast-util-directive: "npm:^3.0.0" 27807 + micromark-extension-directive: "npm:^3.0.0" 27808 + unified: "npm:^11.0.0" 27809 + checksum: 10/819073621cb645fc7d4e6a8e28d3d3c4dcf877fd87d4f931008b9e7e68a4e80c6c11b0345be595111b32b1f16e5868e2c1d48c1b2fb02a8313a3fefa208047a1 27810 + languageName: node 27811 + linkType: hard 27812 + 27813 + "remark-gfm@npm:^4.0.1": 27814 + version: 4.0.1 27815 + resolution: "remark-gfm@npm:4.0.1" 27816 + dependencies: 27817 + "@types/mdast": "npm:^4.0.0" 27818 + mdast-util-gfm: "npm:^3.0.0" 27819 + micromark-extension-gfm: "npm:^3.0.0" 27820 + remark-parse: "npm:^11.0.0" 27821 + remark-stringify: "npm:^11.0.0" 27822 + unified: "npm:^11.0.0" 27823 + checksum: 10/86899862cf4ae1466664d3f88c6113e30b5e84e35480aef4093890aed2297ab9872506ff1f614c63963bba7d075c326d0027a1591c11bb493f6776dad21b95f6 27824 + languageName: node 27825 + linkType: hard 27826 + 27827 + "remark-mdx@npm:^3.0.0": 27828 + version: 3.1.0 27829 + resolution: "remark-mdx@npm:3.1.0" 27830 + dependencies: 27831 + mdast-util-mdx: "npm:^3.0.0" 27832 + micromark-extension-mdxjs: "npm:^3.0.0" 27833 + checksum: 10/9a0a1ba9433f0a9a13ec6b9b185244cb431d3205cc0034ff474b60a13b76095870b8cb6a466cfacf35199ee98e92413fec86fbeb75de3ec3d7bb8f486efc7484 27834 + languageName: node 27835 + linkType: hard 27836 + 27837 + "remark-parse@npm:^11.0.0": 27838 + version: 11.0.0 27839 + resolution: "remark-parse@npm:11.0.0" 27840 + dependencies: 27841 + "@types/mdast": "npm:^4.0.0" 27842 + mdast-util-from-markdown: "npm:^2.0.0" 27843 + micromark-util-types: "npm:^2.0.0" 27844 + unified: "npm:^11.0.0" 27845 + checksum: 10/59d584be56ebc7c05524989c4ed86eb8a7b6e361942b705ca13a37349f60740a6073aedf7783af46ce920d09dd156148942d5e33e8be3dbcd47f818cb4bc410c 27846 + languageName: node 27847 + linkType: hard 27848 + 27849 + "remark-rehype@npm:^11.0.0, remark-rehype@npm:^11.1.1": 27850 + version: 11.1.2 27851 + resolution: "remark-rehype@npm:11.1.2" 27852 + dependencies: 27853 + "@types/hast": "npm:^3.0.0" 27854 + "@types/mdast": "npm:^4.0.0" 27855 + mdast-util-to-hast: "npm:^13.0.0" 27856 + unified: "npm:^11.0.0" 27857 + vfile: "npm:^6.0.0" 27858 + checksum: 10/b5374a0bf08398431c92740d0cd9b20aea9df44cee12326820ddcc1b7ee642706604006461ea9799554c347e7caf31e7432132a03b97c508e1f77d29c423bd86 27859 + languageName: node 27860 + linkType: hard 27861 + 27862 + "remark-smartypants@npm:^3.0.2": 27863 + version: 3.0.2 27864 + resolution: "remark-smartypants@npm:3.0.2" 27865 + dependencies: 27866 + retext: "npm:^9.0.0" 27867 + retext-smartypants: "npm:^6.0.0" 27868 + unified: "npm:^11.0.4" 27869 + unist-util-visit: "npm:^5.0.0" 27870 + checksum: 10/c2d16ad997f5ebbf1c13b13e56192c6d39d0f9dcff3a00f2015d27fe18efb38f5d1b5f48229c57b2656ae53cd1e6ec1c1f686216bae159cb04337cb4ce7da345 27871 + languageName: node 27872 + linkType: hard 27873 + 27874 + "remark-stringify@npm:^11.0.0": 27875 + version: 11.0.0 27876 + resolution: "remark-stringify@npm:11.0.0" 27877 + dependencies: 27878 + "@types/mdast": "npm:^4.0.0" 27879 + mdast-util-to-markdown: "npm:^2.0.0" 27880 + unified: "npm:^11.0.0" 27881 + checksum: 10/32b2f6093ba08e713183629b37e633e0999b6981560eec41f04fe957f76fc6f56dcc14c87c6b45419863be844c6f1130eb2dc055085fc0adc0775b1df7340348 27882 + languageName: node 27883 + linkType: hard 27884 + 24457 27885 "remove-trailing-slash@npm:^0.1.0": 24458 27886 version: 0.1.1 24459 27887 resolution: "remove-trailing-slash@npm:0.1.1" ··· 24699 28127 languageName: node 24700 28128 linkType: hard 24701 28129 28130 + "restructure@npm:^3.0.0": 28131 + version: 3.0.2 28132 + resolution: "restructure@npm:3.0.2" 28133 + checksum: 10/0d34e9e8c3e2fce80feec414376db4db8da2196d768848161dff5ce70acb365f2618975e26dd61199482b5237d415916337edde899f101b98265f88659d95886 28134 + languageName: node 28135 + linkType: hard 28136 + 28137 + "retext-latin@npm:^4.0.0": 28138 + version: 4.0.0 28139 + resolution: "retext-latin@npm:4.0.0" 28140 + dependencies: 28141 + "@types/nlcst": "npm:^2.0.0" 28142 + parse-latin: "npm:^7.0.0" 28143 + unified: "npm:^11.0.0" 28144 + checksum: 10/9e339aa89d2f0e6629e10c17f7a2f060697f60ef07a0a54e285c5f1928aef37e8c241bb7526403b536c1e7f13c009f181be0a5f6c6ccd28191405a2fc81d7d42 28145 + languageName: node 28146 + linkType: hard 28147 + 28148 + "retext-smartypants@npm:^6.0.0": 28149 + version: 6.2.0 28150 + resolution: "retext-smartypants@npm:6.2.0" 28151 + dependencies: 28152 + "@types/nlcst": "npm:^2.0.0" 28153 + nlcst-to-string: "npm:^4.0.0" 28154 + unist-util-visit: "npm:^5.0.0" 28155 + checksum: 10/657c80390b9277cf4d7e3942145434432f78a40f2f8c82e2ae6b723520156799a72456c3fa0558710ae3bc4f97b398b77c3a672819e906877b13d7f21366c929 28156 + languageName: node 28157 + linkType: hard 28158 + 28159 + "retext-stringify@npm:^4.0.0": 28160 + version: 4.0.0 28161 + resolution: "retext-stringify@npm:4.0.0" 28162 + dependencies: 28163 + "@types/nlcst": "npm:^2.0.0" 28164 + nlcst-to-string: "npm:^4.0.0" 28165 + unified: "npm:^11.0.0" 28166 + checksum: 10/0dde44f42c6882f9fea2ebebc32f47962f0a25ac33d87d98e52301c30096636dcfc698a84273d804b6193da5225c74a64f33e628ca72bccd4cf1f8bcc5c2f62d 28167 + languageName: node 28168 + linkType: hard 28169 + 28170 + "retext@npm:^9.0.0": 28171 + version: 9.0.0 28172 + resolution: "retext@npm:9.0.0" 28173 + dependencies: 28174 + "@types/nlcst": "npm:^2.0.0" 28175 + retext-latin: "npm:^4.0.0" 28176 + retext-stringify: "npm:^4.0.0" 28177 + unified: "npm:^11.0.0" 28178 + checksum: 10/4a6970205598742eae6026f6a23d809af50d3433b4eea070046b3cdcc6de5225c7b3e5de6512224e4b4f6c47db877e615dc4d94068297110ca67c9f7783373b0 28179 + languageName: node 28180 + linkType: hard 28181 + 24702 28182 "retry-request@npm:^7.0.0": 24703 28183 version: 7.0.2 24704 28184 resolution: "retry-request@npm:7.0.2" ··· 24796 28276 languageName: node 24797 28277 linkType: hard 24798 28278 28279 + "rollup@npm:^4.34.9": 28280 + version: 4.40.1 28281 + resolution: "rollup@npm:4.40.1" 28282 + dependencies: 28283 + "@rollup/rollup-android-arm-eabi": "npm:4.40.1" 28284 + "@rollup/rollup-android-arm64": "npm:4.40.1" 28285 + "@rollup/rollup-darwin-arm64": "npm:4.40.1" 28286 + "@rollup/rollup-darwin-x64": "npm:4.40.1" 28287 + "@rollup/rollup-freebsd-arm64": "npm:4.40.1" 28288 + "@rollup/rollup-freebsd-x64": "npm:4.40.1" 28289 + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.40.1" 28290 + "@rollup/rollup-linux-arm-musleabihf": "npm:4.40.1" 28291 + "@rollup/rollup-linux-arm64-gnu": "npm:4.40.1" 28292 + "@rollup/rollup-linux-arm64-musl": "npm:4.40.1" 28293 + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.40.1" 28294 + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.40.1" 28295 + "@rollup/rollup-linux-riscv64-gnu": "npm:4.40.1" 28296 + "@rollup/rollup-linux-riscv64-musl": "npm:4.40.1" 28297 + "@rollup/rollup-linux-s390x-gnu": "npm:4.40.1" 28298 + "@rollup/rollup-linux-x64-gnu": "npm:4.40.1" 28299 + "@rollup/rollup-linux-x64-musl": "npm:4.40.1" 28300 + "@rollup/rollup-win32-arm64-msvc": "npm:4.40.1" 28301 + "@rollup/rollup-win32-ia32-msvc": "npm:4.40.1" 28302 + "@rollup/rollup-win32-x64-msvc": "npm:4.40.1" 28303 + "@types/estree": "npm:1.0.7" 28304 + fsevents: "npm:~2.3.2" 28305 + dependenciesMeta: 28306 + "@rollup/rollup-android-arm-eabi": 28307 + optional: true 28308 + "@rollup/rollup-android-arm64": 28309 + optional: true 28310 + "@rollup/rollup-darwin-arm64": 28311 + optional: true 28312 + "@rollup/rollup-darwin-x64": 28313 + optional: true 28314 + "@rollup/rollup-freebsd-arm64": 28315 + optional: true 28316 + "@rollup/rollup-freebsd-x64": 28317 + optional: true 28318 + "@rollup/rollup-linux-arm-gnueabihf": 28319 + optional: true 28320 + "@rollup/rollup-linux-arm-musleabihf": 28321 + optional: true 28322 + "@rollup/rollup-linux-arm64-gnu": 28323 + optional: true 28324 + "@rollup/rollup-linux-arm64-musl": 28325 + optional: true 28326 + "@rollup/rollup-linux-loongarch64-gnu": 28327 + optional: true 28328 + "@rollup/rollup-linux-powerpc64le-gnu": 28329 + optional: true 28330 + "@rollup/rollup-linux-riscv64-gnu": 28331 + optional: true 28332 + "@rollup/rollup-linux-riscv64-musl": 28333 + optional: true 28334 + "@rollup/rollup-linux-s390x-gnu": 28335 + optional: true 28336 + "@rollup/rollup-linux-x64-gnu": 28337 + optional: true 28338 + "@rollup/rollup-linux-x64-musl": 28339 + optional: true 28340 + "@rollup/rollup-win32-arm64-msvc": 28341 + optional: true 28342 + "@rollup/rollup-win32-ia32-msvc": 28343 + optional: true 28344 + "@rollup/rollup-win32-x64-msvc": 28345 + optional: true 28346 + fsevents: 28347 + optional: true 28348 + bin: 28349 + rollup: dist/bin/rollup 28350 + checksum: 10/35d5e83a69000ddd6c087015eb5f862943c53b6e20702575ef50aeb99ce99b864fa74cca630815eb97cdfe1f278f5602f782e55f227b32ac2301f2a5f1fc5373 28351 + languageName: node 28352 + linkType: hard 28353 + 24799 28354 "rtcaudiodevice@git+https://github.com/streamplace/RTCAudioDevice.git#7b4659fe845545d366623cbc813936987144b76f": 24800 28355 version: 0.0.1 24801 28356 resolution: "rtcaudiodevice@https://github.com/streamplace/RTCAudioDevice.git#commit=7b4659fe845545d366623cbc813936987144b76f" ··· 24886 28441 languageName: node 24887 28442 linkType: hard 24888 28443 24889 - "sax@npm:>=0.6.0": 28444 + "sax@npm:>=0.6.0, sax@npm:^1.2.4": 24890 28445 version: 1.4.1 24891 28446 resolution: "sax@npm:1.4.1" 24892 28447 checksum: 10/b1c784b545019187b53a0c28edb4f6314951c971e2963a69739c6ce222bfbc767e54d320e689352daba79b7d5e06d22b5d7113b99336219d6e93718e2f99d335 ··· 24994 28549 languageName: node 24995 28550 linkType: hard 24996 28551 24997 - "semver@npm:^7.6.3": 28552 + "semver@npm:^7.6.3, semver@npm:^7.7.1": 24998 28553 version: 7.7.1 24999 28554 resolution: "semver@npm:7.7.1" 25000 28555 bin: ··· 25233 28788 languageName: node 25234 28789 linkType: hard 25235 28790 28791 + "sharp@npm:^0.32.5": 28792 + version: 0.32.6 28793 + resolution: "sharp@npm:0.32.6" 28794 + dependencies: 28795 + color: "npm:^4.2.3" 28796 + detect-libc: "npm:^2.0.2" 28797 + node-addon-api: "npm:^6.1.0" 28798 + node-gyp: "npm:latest" 28799 + prebuild-install: "npm:^7.1.1" 28800 + semver: "npm:^7.5.4" 28801 + simple-get: "npm:^4.0.1" 28802 + tar-fs: "npm:^3.0.4" 28803 + tunnel-agent: "npm:^0.6.0" 28804 + checksum: 10/f0e4a86881e590f86b05ea463229f62cd29afc2dca08b3f597889f872f118c2c456f382bf2c3e90e934b7a1d30f109cf5ed584cf5a23e79d6b6403a8dc0ebe32 28805 + languageName: node 28806 + linkType: hard 28807 + 28808 + "sharp@npm:^0.33.3": 28809 + version: 0.33.5 28810 + resolution: "sharp@npm:0.33.5" 28811 + dependencies: 28812 + "@img/sharp-darwin-arm64": "npm:0.33.5" 28813 + "@img/sharp-darwin-x64": "npm:0.33.5" 28814 + "@img/sharp-libvips-darwin-arm64": "npm:1.0.4" 28815 + "@img/sharp-libvips-darwin-x64": "npm:1.0.4" 28816 + "@img/sharp-libvips-linux-arm": "npm:1.0.5" 28817 + "@img/sharp-libvips-linux-arm64": "npm:1.0.4" 28818 + "@img/sharp-libvips-linux-s390x": "npm:1.0.4" 28819 + "@img/sharp-libvips-linux-x64": "npm:1.0.4" 28820 + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4" 28821 + "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4" 28822 + "@img/sharp-linux-arm": "npm:0.33.5" 28823 + "@img/sharp-linux-arm64": "npm:0.33.5" 28824 + "@img/sharp-linux-s390x": "npm:0.33.5" 28825 + "@img/sharp-linux-x64": "npm:0.33.5" 28826 + "@img/sharp-linuxmusl-arm64": "npm:0.33.5" 28827 + "@img/sharp-linuxmusl-x64": "npm:0.33.5" 28828 + "@img/sharp-wasm32": "npm:0.33.5" 28829 + "@img/sharp-win32-ia32": "npm:0.33.5" 28830 + "@img/sharp-win32-x64": "npm:0.33.5" 28831 + color: "npm:^4.2.3" 28832 + detect-libc: "npm:^2.0.3" 28833 + semver: "npm:^7.6.3" 28834 + dependenciesMeta: 28835 + "@img/sharp-darwin-arm64": 28836 + optional: true 28837 + "@img/sharp-darwin-x64": 28838 + optional: true 28839 + "@img/sharp-libvips-darwin-arm64": 28840 + optional: true 28841 + "@img/sharp-libvips-darwin-x64": 28842 + optional: true 28843 + "@img/sharp-libvips-linux-arm": 28844 + optional: true 28845 + "@img/sharp-libvips-linux-arm64": 28846 + optional: true 28847 + "@img/sharp-libvips-linux-s390x": 28848 + optional: true 28849 + "@img/sharp-libvips-linux-x64": 28850 + optional: true 28851 + "@img/sharp-libvips-linuxmusl-arm64": 28852 + optional: true 28853 + "@img/sharp-libvips-linuxmusl-x64": 28854 + optional: true 28855 + "@img/sharp-linux-arm": 28856 + optional: true 28857 + "@img/sharp-linux-arm64": 28858 + optional: true 28859 + "@img/sharp-linux-s390x": 28860 + optional: true 28861 + "@img/sharp-linux-x64": 28862 + optional: true 28863 + "@img/sharp-linuxmusl-arm64": 28864 + optional: true 28865 + "@img/sharp-linuxmusl-x64": 28866 + optional: true 28867 + "@img/sharp-wasm32": 28868 + optional: true 28869 + "@img/sharp-win32-ia32": 28870 + optional: true 28871 + "@img/sharp-win32-x64": 28872 + optional: true 28873 + checksum: 10/9f153578cb02735359cbcc874f52b56b8074ed997498c35255c7099d4f4f506f6ddf83a437a55242c7ad4f979336660504b6c78e29d6933f4981dedbdae5ce09 28874 + languageName: node 28875 + linkType: hard 28876 + 25236 28877 "shebang-command@npm:^1.2.0": 25237 28878 version: 1.2.0 25238 28879 resolution: "shebang-command@npm:1.2.0" ··· 25272 28913 languageName: node 25273 28914 linkType: hard 25274 28915 28916 + "shiki@npm:^3.0.0, shiki@npm:^3.2.1, shiki@npm:^3.2.2": 28917 + version: 3.3.0 28918 + resolution: "shiki@npm:3.3.0" 28919 + dependencies: 28920 + "@shikijs/core": "npm:3.3.0" 28921 + "@shikijs/engine-javascript": "npm:3.3.0" 28922 + "@shikijs/engine-oniguruma": "npm:3.3.0" 28923 + "@shikijs/langs": "npm:3.3.0" 28924 + "@shikijs/themes": "npm:3.3.0" 28925 + "@shikijs/types": "npm:3.3.0" 28926 + "@shikijs/vscode-textmate": "npm:^10.0.2" 28927 + "@types/hast": "npm:^3.0.4" 28928 + checksum: 10/9349654acaba0a13a60a063d602b270648b41ea0a7c41e3f39585f3e7c9236095e84b3e01be1b58ac752ae46bcbcb1019c97454d314127b9943edc827a42470c 28929 + languageName: node 28930 + linkType: hard 28931 + 25275 28932 "side-channel@npm:^1.0.4, side-channel@npm:^1.0.6": 25276 28933 version: 1.0.6 25277 28934 resolution: "side-channel@npm:1.0.6" ··· 25312 28969 languageName: node 25313 28970 linkType: hard 25314 28971 28972 + "simple-concat@npm:^1.0.0": 28973 + version: 1.0.1 28974 + resolution: "simple-concat@npm:1.0.1" 28975 + checksum: 10/4d211042cc3d73a718c21ac6c4e7d7a0363e184be6a5ad25c8a1502e49df6d0a0253979e3d50dbdd3f60ef6c6c58d756b5d66ac1e05cda9cacd2e9fc59e3876a 28976 + languageName: node 28977 + linkType: hard 28978 + 28979 + "simple-get@npm:^4.0.0, simple-get@npm:^4.0.1": 28980 + version: 4.0.1 28981 + resolution: "simple-get@npm:4.0.1" 28982 + dependencies: 28983 + decompress-response: "npm:^6.0.0" 28984 + once: "npm:^1.3.1" 28985 + simple-concat: "npm:^1.0.0" 28986 + checksum: 10/93f1b32319782f78f2f2234e9ce34891b7ab6b990d19d8afefaa44423f5235ce2676aae42d6743fecac6c8dfff4b808d4c24fe5265be813d04769917a9a44f36 28987 + languageName: node 28988 + linkType: hard 28989 + 25315 28990 "simple-plist@npm:^1.1.0": 25316 28991 version: 1.4.0 25317 28992 resolution: "simple-plist@npm:1.4.0" ··· 25339 29014 languageName: node 25340 29015 linkType: hard 25341 29016 29017 + "sitemap@npm:^8.0.0": 29018 + version: 8.0.0 29019 + resolution: "sitemap@npm:8.0.0" 29020 + dependencies: 29021 + "@types/node": "npm:^17.0.5" 29022 + "@types/sax": "npm:^1.2.1" 29023 + arg: "npm:^5.0.0" 29024 + sax: "npm:^1.2.4" 29025 + bin: 29026 + sitemap: dist/cli.js 29027 + checksum: 10/8af7ddbf3753f467ec01507cc19710a8846effbbb17c506e6c09aed8c8f445fa9ad7a8bdcb7654183fc755940470a4a194c2c117ad5b9f522d12ca62a8f4d173 29028 + languageName: node 29029 + linkType: hard 29030 + 25342 29031 "slash@npm:3.0.0, slash@npm:^3.0.0": 25343 29032 version: 3.0.0 25344 29033 resolution: "slash@npm:3.0.0" ··· 25398 29087 languageName: node 25399 29088 linkType: hard 25400 29089 29090 + "smol-toml@npm:^1.3.1": 29091 + version: 1.3.4 29092 + resolution: "smol-toml@npm:1.3.4" 29093 + checksum: 10/795db36448db6b353ea1171fad8b72ae2fea3b5f9aa48d2f4c79699e10bdca74d59202f6715ff738fae817bf1f80e0c38c4d3ddf8b812cac26cc6255eaa0caa2 29094 + languageName: node 29095 + linkType: hard 29096 + 25401 29097 "socket.io-client@npm:^4.5.1": 25402 29098 version: 4.7.5 25403 29099 resolution: "socket.io-client@npm:4.7.5" ··· 25491 29187 languageName: node 25492 29188 linkType: hard 25493 29189 29190 + "source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.1": 29191 + version: 1.2.1 29192 + resolution: "source-map-js@npm:1.2.1" 29193 + checksum: 10/ff9d8c8bf096d534a5b7707e0382ef827b4dd360a577d3f34d2b9f48e12c9d230b5747974ee7c607f0df65113732711bb701fe9ece3c7edbd43cb2294d707df3 29194 + languageName: node 29195 + linkType: hard 29196 + 25494 29197 "source-map-js@npm:^1.2.0": 25495 29198 version: 1.2.0 25496 29199 resolution: "source-map-js@npm:1.2.0" 25497 29200 checksum: 10/74f331cfd2d121c50790c8dd6d3c9de6be21926de80583b23b37029b0f37aefc3e019fa91f9a10a5e120c08135297e1ecf312d561459c45908cb1e0e365f49e5 25498 - languageName: node 25499 - linkType: hard 25500 - 25501 - "source-map-js@npm:^1.2.1": 25502 - version: 1.2.1 25503 - resolution: "source-map-js@npm:1.2.1" 25504 - checksum: 10/ff9d8c8bf096d534a5b7707e0382ef827b4dd360a577d3f34d2b9f48e12c9d230b5747974ee7c607f0df65113732711bb701fe9ece3c7edbd43cb2294d707df3 25505 29201 languageName: node 25506 29202 linkType: hard 25507 29203 ··· 25529 29225 languageName: node 25530 29226 linkType: hard 25531 29227 25532 - "source-map@npm:^0.7.4": 29228 + "source-map@npm:^0.7.0, source-map@npm:^0.7.4": 25533 29229 version: 0.7.4 25534 29230 resolution: "source-map@npm:0.7.4" 25535 29231 checksum: 10/a0f7c9b797eda93139842fd28648e868a9a03ea0ad0d9fa6602a0c1f17b7fb6a7dcca00c144476cccaeaae5042e99a285723b1a201e844ad67221bf5d428f1dc 29232 + languageName: node 29233 + linkType: hard 29234 + 29235 + "space-separated-tokens@npm:^2.0.0": 29236 + version: 2.0.2 29237 + resolution: "space-separated-tokens@npm:2.0.2" 29238 + checksum: 10/202e97d7ca1ba0758a0aa4fe226ff98142073bcceeff2da3aad037968878552c3bbce3b3231970025375bbba5aee00c5b8206eda408da837ab2dc9c0f26be990 25536 29239 languageName: node 25537 29240 linkType: hard 25538 29241 ··· 25733 29436 languageName: node 25734 29437 linkType: hard 25735 29438 29439 + "stream-replace-string@npm:^2.0.0": 29440 + version: 2.0.0 29441 + resolution: "stream-replace-string@npm:2.0.0" 29442 + checksum: 10/dcf4b1bd3ee4e7a4d4468cc0b6bc1ee8bd0be1cb4c2dbcf171f981c4723ab577a62d5a4b25c728ff9379c98bec624924276758db0314d7e8c915a0331e230820 29443 + languageName: node 29444 + linkType: hard 29445 + 25736 29446 "stream-shift@npm:^1.0.2": 25737 29447 version: 1.0.3 25738 29448 resolution: "stream-shift@npm:1.0.3" ··· 25775 29485 typescript: "npm:~5.6.3" 25776 29486 update-electron-app: "npm:^3.0.0" 25777 29487 viem: "npm:^2.21.44" 29488 + languageName: unknown 29489 + linkType: soft 29490 + 29491 + "streamplace-docs@workspace:js/docs": 29492 + version: 0.0.0-use.local 29493 + resolution: "streamplace-docs@workspace:js/docs" 29494 + dependencies: 29495 + "@astrojs/starlight": "npm:^0.34.1" 29496 + "@fontsource/atkinson-hyperlegible-next": "npm:^5.2.2" 29497 + astro: "npm:^5.6.1" 29498 + sharp: "npm:^0.32.5" 25778 29499 languageName: unknown 25779 29500 linkType: soft 25780 29501 ··· 25886 29607 languageName: unknown 25887 29608 linkType: soft 25888 29609 29610 + "streamx@npm:^2.15.0, streamx@npm:^2.21.0": 29611 + version: 2.22.0 29612 + resolution: "streamx@npm:2.22.0" 29613 + dependencies: 29614 + bare-events: "npm:^2.2.0" 29615 + fast-fifo: "npm:^1.3.2" 29616 + text-decoder: "npm:^1.1.0" 29617 + dependenciesMeta: 29618 + bare-events: 29619 + optional: true 29620 + checksum: 10/9c329bb316e2085e207e471ecd0da18b4ed5b1cfe5cf10e9e7fad3f8f50c6ca1a6a844bdfd9bc7521560b97f229890de82ca162a0e66115300b91a489b1cbefd 29621 + languageName: node 29622 + linkType: hard 29623 + 25889 29624 "strict-uri-encode@npm:^2.0.0": 25890 29625 version: 2.0.0 25891 29626 resolution: "strict-uri-encode@npm:2.0.0" ··· 25930 29665 get-east-asian-width: "npm:^1.0.0" 25931 29666 strip-ansi: "npm:^7.1.0" 25932 29667 checksum: 10/a183573fe7209e0d294f661846d33f8caf72aa86d983e5b48a0ed45ab15bcccb02c6f0344b58b571988871105457137b8207855ea536827dbc4a376a0f31bf8f 29668 + languageName: node 29669 + linkType: hard 29670 + 29671 + "string-width@npm:^7.2.0": 29672 + version: 7.2.0 29673 + resolution: "string-width@npm:7.2.0" 29674 + dependencies: 29675 + emoji-regex: "npm:^10.3.0" 29676 + get-east-asian-width: "npm:^1.0.0" 29677 + strip-ansi: "npm:^7.1.0" 29678 + checksum: 10/42f9e82f61314904a81393f6ef75b832c39f39761797250de68c041d8ba4df2ef80db49ab6cd3a292923a6f0f409b8c9980d120f7d32c820b4a8a84a2598a295 25933 29679 languageName: node 25934 29680 linkType: hard 25935 29681 ··· 25997 29743 languageName: node 25998 29744 linkType: hard 25999 29745 29746 + "stringify-entities@npm:^4.0.0": 29747 + version: 4.0.4 29748 + resolution: "stringify-entities@npm:4.0.4" 29749 + dependencies: 29750 + character-entities-html4: "npm:^2.0.0" 29751 + character-entities-legacy: "npm:^3.0.0" 29752 + checksum: 10/42bd2f37528795a7b4386bd39dc4699515fb0f0b8c418a6bb29ae205ce66eaff9e8801a2bee65b8049c918c9475a71c7e5911f6a88c19f1d84ebdcba3d881a2d 29753 + languageName: node 29754 + linkType: hard 29755 + 26000 29756 "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": 26001 29757 version: 6.0.1 26002 29758 resolution: "strip-ansi@npm:6.0.1" ··· 26134 29890 languageName: node 26135 29891 linkType: hard 26136 29892 29893 + "style-to-js@npm:^1.0.0": 29894 + version: 1.1.16 29895 + resolution: "style-to-js@npm:1.1.16" 29896 + dependencies: 29897 + style-to-object: "npm:1.0.8" 29898 + checksum: 10/a876cc49a29ac90c7723b4d6f002ac6c1ac5ccc6b5bc963d9c607cfc74b15927b704c9324df6f824f576c65689fe4b4ff79caabcd44a13d8a02641f721f1b316 29899 + languageName: node 29900 + linkType: hard 29901 + 29902 + "style-to-object@npm:1.0.8": 29903 + version: 1.0.8 29904 + resolution: "style-to-object@npm:1.0.8" 29905 + dependencies: 29906 + inline-style-parser: "npm:0.2.4" 29907 + checksum: 10/530b067325e3119bfaf75bdbe25cc86b02b559db00d881a74b98a2d5bb10ac953d1b455ed90c825963cf3b4bdaa1bda45f406d78d987391434b8d8ab3835df4e 29908 + languageName: node 29909 + linkType: hard 29910 + 26137 29911 "style-value-types@npm:5.0.0": 26138 29912 version: 5.0.0 26139 29913 resolution: "style-value-types@npm:5.0.0" ··· 26356 30130 languageName: node 26357 30131 linkType: hard 26358 30132 26359 - "tar-stream@npm:~2.2.0": 30133 + "tar-fs@npm:^2.0.0": 30134 + version: 2.1.2 30135 + resolution: "tar-fs@npm:2.1.2" 30136 + dependencies: 30137 + chownr: "npm:^1.1.1" 30138 + mkdirp-classic: "npm:^0.5.2" 30139 + pump: "npm:^3.0.0" 30140 + tar-stream: "npm:^2.1.4" 30141 + checksum: 10/623f7e8e58a43578ba7368002c3cc7e321f6d170053ac0691d95172dbc7daf5dcf4347eb061277627340870ce6cfda89f5a5d633cc274c41ae6d69f54a2374e7 30142 + languageName: node 30143 + linkType: hard 30144 + 30145 + "tar-fs@npm:^3.0.4": 30146 + version: 3.0.8 30147 + resolution: "tar-fs@npm:3.0.8" 30148 + dependencies: 30149 + bare-fs: "npm:^4.0.1" 30150 + bare-path: "npm:^3.0.0" 30151 + pump: "npm:^3.0.0" 30152 + tar-stream: "npm:^3.1.5" 30153 + dependenciesMeta: 30154 + bare-fs: 30155 + optional: true 30156 + bare-path: 30157 + optional: true 30158 + checksum: 10/fdcd1c66dc5e2cad5544ffe7eab9a470b419290b22300c344688df51bf06127963da07a1e3ae23cae80851cd9f60149e80b38e56485dd7a14aea701241ac2f81 30159 + languageName: node 30160 + linkType: hard 30161 + 30162 + "tar-stream@npm:^2.1.4, tar-stream@npm:~2.2.0": 26360 30163 version: 2.2.0 26361 30164 resolution: "tar-stream@npm:2.2.0" 26362 30165 dependencies: ··· 26366 30169 inherits: "npm:^2.0.3" 26367 30170 readable-stream: "npm:^3.1.1" 26368 30171 checksum: 10/1a52a51d240c118cbcd30f7368ea5e5baef1eac3e6b793fb1a41e6cd7319296c79c0264ccc5859f5294aa80f8f00b9239d519e627b9aade80038de6f966fec6a 30172 + languageName: node 30173 + linkType: hard 30174 + 30175 + "tar-stream@npm:^3.1.5": 30176 + version: 3.1.7 30177 + resolution: "tar-stream@npm:3.1.7" 30178 + dependencies: 30179 + b4a: "npm:^1.6.4" 30180 + fast-fifo: "npm:^1.2.0" 30181 + streamx: "npm:^2.15.0" 30182 + checksum: 10/b21a82705a72792544697c410451a4846af1f744176feb0ff11a7c3dd0896961552e3def5e1c9a6bbee4f0ae298b8252a1f4c9381e9f991553b9e4847976f05c 26369 30183 languageName: node 26370 30184 linkType: hard 26371 30185 ··· 26513 30327 languageName: node 26514 30328 linkType: hard 26515 30329 30330 + "text-decoder@npm:^1.1.0": 30331 + version: 1.2.3 30332 + resolution: "text-decoder@npm:1.2.3" 30333 + dependencies: 30334 + b4a: "npm:^1.6.4" 30335 + checksum: 10/bcdec33c0f070aeac38e46e4cafdcd567a58473ed308bdf75260bfbd8f7dc76acbc0b13226afaec4a169d0cb44cec2ab89c57b6395ccf02e941eaebbe19e124a 30336 + languageName: node 30337 + linkType: hard 30338 + 26516 30339 "text-extensions@npm:^1.0.0": 26517 30340 version: 1.9.0 26518 30341 resolution: "text-extensions@npm:1.9.0" ··· 26592 30415 languageName: node 26593 30416 linkType: hard 26594 30417 30418 + "tiny-inflate@npm:^1.0.0, tiny-inflate@npm:^1.0.3": 30419 + version: 1.0.3 30420 + resolution: "tiny-inflate@npm:1.0.3" 30421 + checksum: 10/f620114fb51ea4a16ea7b4c62d6dd753f8faf41808a133c53d431ed4bf2ca377b21443653a0096894f2be22ca11bb327f148e7e5431f9246068917724ec01ffc 30422 + languageName: node 30423 + linkType: hard 30424 + 30425 + "tinyexec@npm:^0.3.2": 30426 + version: 0.3.2 30427 + resolution: "tinyexec@npm:0.3.2" 30428 + checksum: 10/b9d5fed3166fb1acd1e7f9a89afcd97ccbe18b9c1af0278e429455f6976d69271ba2d21797e7c36d57d6b05025e525d2882d88c2ab435b60d1ddf2fea361de57 30429 + languageName: node 30430 + linkType: hard 30431 + 30432 + "tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13": 30433 + version: 0.2.13 30434 + resolution: "tinyglobby@npm:0.2.13" 30435 + dependencies: 30436 + fdir: "npm:^6.4.4" 30437 + picomatch: "npm:^4.0.2" 30438 + checksum: 10/b04557ee58ad2be5f2d2cbb4b441476436c92bb45ba2e1fc464d686b793392b305ed0bcb8b877429e9b5036bdd46770c161a08384c0720b6682b7cd6ac80e403 30439 + languageName: node 30440 + linkType: hard 30441 + 26595 30442 "tlds@npm:^1.234.0": 26596 30443 version: 1.255.0 26597 30444 resolution: "tlds@npm:1.255.0" ··· 26686 30533 languageName: node 26687 30534 linkType: hard 26688 30535 30536 + "trim-lines@npm:^3.0.0": 30537 + version: 3.0.1 30538 + resolution: "trim-lines@npm:3.0.1" 30539 + checksum: 10/7a1325e4ce8ff7e9e52007600e9c9862a166d0db1f1cf0c9357e359e410acab1278fcd91cc279dfa5123fc37b69f080de02f471e91dbbc61b155b9ca92597929 30540 + languageName: node 30541 + linkType: hard 30542 + 26689 30543 "trim-newlines@npm:^3.0.0": 26690 30544 version: 3.0.1 26691 30545 resolution: "trim-newlines@npm:3.0.1" ··· 26699 30553 dependencies: 26700 30554 escape-string-regexp: "npm:^1.0.2" 26701 30555 checksum: 10/e25c235305b82c43f1d64a67a71226c406b00281755e4c2c4f3b1d0b09c687a535dd3c4483327f949f28bb89dc400a0bc5e5b749054f4b99f49ebfe48ba36496 30556 + languageName: node 30557 + linkType: hard 30558 + 30559 + "trough@npm:^2.0.0": 30560 + version: 2.2.0 30561 + resolution: "trough@npm:2.2.0" 30562 + checksum: 10/999c1cb3db6ec63e1663f911146a90125065da37f66ba342b031d53edb22a62f56c1f934bbc61a55b2b29dd74207544cfd78875b414665c1ffadcd9a9a009eeb 26702 30563 languageName: node 26703 30564 linkType: hard 26704 30565 ··· 26789 30650 languageName: node 26790 30651 linkType: hard 26791 30652 30653 + "tsconfck@npm:^3.1.5": 30654 + version: 3.1.5 30655 + resolution: "tsconfck@npm:3.1.5" 30656 + peerDependencies: 30657 + typescript: ^5.0.0 30658 + peerDependenciesMeta: 30659 + typescript: 30660 + optional: true 30661 + bin: 30662 + tsconfck: bin/tsconfck.js 30663 + checksum: 10/46b68f0fcec7da045490e427400c2a7fea67bdb6dae871257e8d2ec48e9dc99674214df86ff51c6d01ceb68ba9d7d806d3b69de432efa3c76b5fba160c252857 30664 + languageName: node 30665 + linkType: hard 30666 + 26792 30667 "tsconfig-paths@npm:^3.15.0": 26793 30668 version: 3.15.0 26794 30669 resolution: "tsconfig-paths@npm:3.15.0" ··· 26833 30708 languageName: node 26834 30709 linkType: hard 26835 30710 30711 + "tslib@npm:^2.8.0": 30712 + version: 2.8.1 30713 + resolution: "tslib@npm:2.8.1" 30714 + checksum: 10/3e2e043d5c2316461cb54e5c7fe02c30ef6dccb3384717ca22ae5c6b5bc95232a6241df19c622d9c73b809bea33b187f6dbc73030963e29950c2141bc32a79f7 30715 + languageName: node 30716 + linkType: hard 30717 + 26836 30718 "tuf-js@npm:^2.2.1": 26837 30719 version: 2.2.1 26838 30720 resolution: "tuf-js@npm:2.2.1" ··· 26841 30723 debug: "npm:^4.3.4" 26842 30724 make-fetch-happen: "npm:^13.0.1" 26843 30725 checksum: 10/4c057f4f0cfb183d8634c026a592f4fb29fd4e3d88260e32949642deedf87a1ae407645bae4cca58299458679a1cb7721245cde1885d466c2dbc1fbac0bc008a 30726 + languageName: node 30727 + linkType: hard 30728 + 30729 + "tunnel-agent@npm:^0.6.0": 30730 + version: 0.6.0 30731 + resolution: "tunnel-agent@npm:0.6.0" 30732 + dependencies: 30733 + safe-buffer: "npm:^5.0.1" 30734 + checksum: 10/7f0d9ed5c22404072b2ae8edc45c071772affd2ed14a74f03b4e71b4dd1a14c3714d85aed64abcaaee5fec2efc79002ba81155c708f4df65821b444abb0cfade 26844 30735 languageName: node 26845 30736 linkType: hard 26846 30737 ··· 26927 30818 version: 3.13.1 26928 30819 resolution: "type-fest@npm:3.13.1" 26929 30820 checksum: 10/9a8a2359ada34c9b3affcaf3a8f73ee14c52779e89950db337ce66fb74c3399776c697c99f2532e9b16e10e61cfdba3b1c19daffb93b338b742f0acd0117ce12 30821 + languageName: node 30822 + linkType: hard 30823 + 30824 + "type-fest@npm:^4.21.0": 30825 + version: 4.40.1 30826 + resolution: "type-fest@npm:4.40.1" 30827 + checksum: 10/907767cd7889c8f17d94f4a811ec27c33339a9134f6842a1a56b4d6ee87cb1d6b01332f366a3f03adc10923fd6d511d73b73076f7ab5256bf5c0b43a03ab6e8b 26930 30828 languageName: node 26931 30829 linkType: hard 26932 30830 ··· 27111 31009 languageName: node 27112 31010 linkType: hard 27113 31011 31012 + "ufo@npm:^1.5.4, ufo@npm:^1.6.1": 31013 + version: 1.6.1 31014 + resolution: "ufo@npm:1.6.1" 31015 + checksum: 10/088a68133b93af183b093e5a8730a40fe7fd675d3dc0656ea7512f180af45c92300c294f14d4d46d4b2b553e3e52d3b13d4856b9885e620e7001edf85531234e 31016 + languageName: node 31017 + linkType: hard 31018 + 27114 31019 "uglify-js@npm:^3.1.4": 27115 31020 version: 3.19.0 27116 31021 resolution: "uglify-js@npm:3.19.0" ··· 27153 31058 dependencies: 27154 31059 multiformats: "npm:^9.4.2" 27155 31060 checksum: 10/536e70273c040484aa7d522031a9dbca1fe8c06eb58a3ace1064ba68825b4e2764d4a0b604a1c451e7b8be0986dc94f23a419cfe9334bd116716074a2d29b33d 31061 + languageName: node 31062 + linkType: hard 31063 + 31064 + "ultrahtml@npm:^1.6.0": 31065 + version: 1.6.0 31066 + resolution: "ultrahtml@npm:1.6.0" 31067 + checksum: 10/8b9c5e03f4ac0e4cf789b938b5e589c050c9f12d98a60996931d5af6d93b675f91af9609508d603f08f6b9d0c07611335dcb6c85f6472f414d02fe620f432c9e 27156 31068 languageName: node 27157 31069 linkType: hard 27158 31070 ··· 27240 31152 languageName: node 27241 31153 linkType: hard 27242 31154 31155 + "unicode-properties@npm:^1.4.0": 31156 + version: 1.4.1 31157 + resolution: "unicode-properties@npm:1.4.1" 31158 + dependencies: 31159 + base64-js: "npm:^1.3.0" 31160 + unicode-trie: "npm:^2.0.0" 31161 + checksum: 10/f03d35036291b08aa2572dc51eff712e64fb1d8daaeb65e8add38a24c66c2b8bb3882ee19e6e8de424cfbbc6a4ebe14766816294c7f582b4bb5704402acbd089 31162 + languageName: node 31163 + linkType: hard 31164 + 27243 31165 "unicode-property-aliases-ecmascript@npm:^2.0.0": 27244 31166 version: 2.1.0 27245 31167 resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" ··· 27247 31169 languageName: node 27248 31170 linkType: hard 27249 31171 31172 + "unicode-trie@npm:^2.0.0": 31173 + version: 2.0.0 31174 + resolution: "unicode-trie@npm:2.0.0" 31175 + dependencies: 31176 + pako: "npm:^0.2.5" 31177 + tiny-inflate: "npm:^1.0.0" 31178 + checksum: 10/60404411dbd363bdcca9e81c9327fa80469f2e685737bac88ec693225ff20b9b545ac37ca2da13ec02f1552167dd010dfefd7c58b72a73d44a89fab1ca9c2479 31179 + languageName: node 31180 + linkType: hard 31181 + 31182 + "unified@npm:^11.0.0, unified@npm:^11.0.4, unified@npm:^11.0.5": 31183 + version: 11.0.5 31184 + resolution: "unified@npm:11.0.5" 31185 + dependencies: 31186 + "@types/unist": "npm:^3.0.0" 31187 + bail: "npm:^2.0.0" 31188 + devlop: "npm:^1.0.0" 31189 + extend: "npm:^3.0.0" 31190 + is-plain-obj: "npm:^4.0.0" 31191 + trough: "npm:^2.0.0" 31192 + vfile: "npm:^6.0.0" 31193 + checksum: 10/d9e6e88900a075f391b6bbf06f34062d41fa6257798110d1647753cfc2c6a6e2c1d016434e8ee35706c50485f9fb9ae4707a6a4790bd8dc461ec7e7315ed908b 31194 + languageName: node 31195 + linkType: hard 31196 + 31197 + "unifont@npm:~0.4.1": 31198 + version: 0.4.1 31199 + resolution: "unifont@npm:0.4.1" 31200 + dependencies: 31201 + css-tree: "npm:^3.0.0" 31202 + ohash: "npm:^2.0.0" 31203 + checksum: 10/e0f11d461c432e531afeb39a0c0ad3142b7356a791b900f32cfd10cd7f2ca0297f4cdbbd42192209d26d0c6180af361f741abd1c3da6f6520577d01e97bcc59c 31204 + languageName: node 31205 + linkType: hard 31206 + 27250 31207 "unique-filename@npm:^2.0.0": 27251 31208 version: 2.0.1 27252 31209 resolution: "unique-filename@npm:2.0.1" ··· 27292 31249 languageName: node 27293 31250 linkType: hard 27294 31251 31252 + "unist-util-find-after@npm:^5.0.0": 31253 + version: 5.0.0 31254 + resolution: "unist-util-find-after@npm:5.0.0" 31255 + dependencies: 31256 + "@types/unist": "npm:^3.0.0" 31257 + unist-util-is: "npm:^6.0.0" 31258 + checksum: 10/7960f98f99ae3c2585a8e16b23f338e5851b7c0f40c3e82e2aef9ddb4887ae63d4cb3906e793dc8ff8242f252425ef846a4e59afa1d3d91ebf0ac84732df2509 31259 + languageName: node 31260 + linkType: hard 31261 + 31262 + "unist-util-is@npm:^6.0.0": 31263 + version: 6.0.0 31264 + resolution: "unist-util-is@npm:6.0.0" 31265 + dependencies: 31266 + "@types/unist": "npm:^3.0.0" 31267 + checksum: 10/edd6a93fb2255addf4b9eeb304c1da63c62179aef793169dd64ab955cf2f6814885fe25f95f8105893e3562dead348af535718d7a84333826e0491c04bf42511 31268 + languageName: node 31269 + linkType: hard 31270 + 31271 + "unist-util-modify-children@npm:^4.0.0": 31272 + version: 4.0.0 31273 + resolution: "unist-util-modify-children@npm:4.0.0" 31274 + dependencies: 31275 + "@types/unist": "npm:^3.0.0" 31276 + array-iterate: "npm:^2.0.0" 31277 + checksum: 10/a37bbf35362774c07ac2b07e84d4697209446a2982522d379d55296acc8b3748ca33b48e10557b1cba608db2388421d46ed7d5fe6da9f17d3dd579f0d1a8b247 31278 + languageName: node 31279 + linkType: hard 31280 + 31281 + "unist-util-position-from-estree@npm:^2.0.0": 31282 + version: 2.0.0 31283 + resolution: "unist-util-position-from-estree@npm:2.0.0" 31284 + dependencies: 31285 + "@types/unist": "npm:^3.0.0" 31286 + checksum: 10/d3b3048a5727c2367f64ef6dcc5b20c4717215ef8b1372ff9a7c426297c5d1e5776409938acd01531213e2cd2543218d16e73f9f862f318e9496e2c73bb18354 31287 + languageName: node 31288 + linkType: hard 31289 + 31290 + "unist-util-position@npm:^5.0.0": 31291 + version: 5.0.0 31292 + resolution: "unist-util-position@npm:5.0.0" 31293 + dependencies: 31294 + "@types/unist": "npm:^3.0.0" 31295 + checksum: 10/89d4da00e74618d7562ac7ac288961df9bcd4ccca6df3b5a90650f018eceb6b95de6e771e88bdbef46cc9d96861d456abe57b7ad1108921e0feb67c6292aa29d 31296 + languageName: node 31297 + linkType: hard 31298 + 31299 + "unist-util-remove-position@npm:^5.0.0": 31300 + version: 5.0.0 31301 + resolution: "unist-util-remove-position@npm:5.0.0" 31302 + dependencies: 31303 + "@types/unist": "npm:^3.0.0" 31304 + unist-util-visit: "npm:^5.0.0" 31305 + checksum: 10/4d89dc25e2091f9d47d92552145a26bf0e4a32d6b453e9cacac7742d730ada186ee1b820579fee3eeaa31e119850c2cb82f8b5898f977a636d7220e998626967 31306 + languageName: node 31307 + linkType: hard 31308 + 31309 + "unist-util-stringify-position@npm:^4.0.0": 31310 + version: 4.0.0 31311 + resolution: "unist-util-stringify-position@npm:4.0.0" 31312 + dependencies: 31313 + "@types/unist": "npm:^3.0.0" 31314 + checksum: 10/d15c88aca7a31902d95d5b5355bbe09583cf6f6ff6e59e134ef76c76d3c30bc1021f2d7ea5b7897c6d0858ed5f3770c1b19de9c78274f50d72f95a0d05f1af71 31315 + languageName: node 31316 + linkType: hard 31317 + 31318 + "unist-util-visit-children@npm:^3.0.0": 31319 + version: 3.0.0 31320 + resolution: "unist-util-visit-children@npm:3.0.0" 31321 + dependencies: 31322 + "@types/unist": "npm:^3.0.0" 31323 + checksum: 10/aa62b9f7cbf5725c1d21ff37cbdf5b297bf2a0c08ad6401044e5d8511164e0f9dacd0f1573c8105c92adcbc529fb74bf5a0cb49b842ceef424c8adfc257b06e1 31324 + languageName: node 31325 + linkType: hard 31326 + 31327 + "unist-util-visit-parents@npm:^6.0.0, unist-util-visit-parents@npm:^6.0.1": 31328 + version: 6.0.1 31329 + resolution: "unist-util-visit-parents@npm:6.0.1" 31330 + dependencies: 31331 + "@types/unist": "npm:^3.0.0" 31332 + unist-util-is: "npm:^6.0.0" 31333 + checksum: 10/645b3cbc5e923bc692b1eb1a9ca17bffc5aabc25e6090ff3f1489bff8effd1890b28f7a09dc853cb6a7fa0da8581bfebc9b670a68b53c4c086cb9610dfd37701 31334 + languageName: node 31335 + linkType: hard 31336 + 31337 + "unist-util-visit@npm:^5.0.0": 31338 + version: 5.0.0 31339 + resolution: "unist-util-visit@npm:5.0.0" 31340 + dependencies: 31341 + "@types/unist": "npm:^3.0.0" 31342 + unist-util-is: "npm:^6.0.0" 31343 + unist-util-visit-parents: "npm:^6.0.0" 31344 + checksum: 10/f2bbde23641e9ade7640358c06ddeec0f38342322eb8e7819d9ee380b0f859d25d084dde22bf63db0280b3b2f36575f15aa1d6c23acf276c91c2493cf799e3b0 31345 + languageName: node 31346 + linkType: hard 31347 + 27295 31348 "universal-user-agent@npm:^6.0.0": 27296 31349 version: 6.0.1 27297 31350 resolution: "universal-user-agent@npm:6.0.1" ··· 27331 31384 version: 1.0.0 27332 31385 resolution: "unpipe@npm:1.0.0" 27333 31386 checksum: 10/4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2 31387 + languageName: node 31388 + linkType: hard 31389 + 31390 + "unstorage@npm:^1.15.0": 31391 + version: 1.16.0 31392 + resolution: "unstorage@npm:1.16.0" 31393 + dependencies: 31394 + anymatch: "npm:^3.1.3" 31395 + chokidar: "npm:^4.0.3" 31396 + destr: "npm:^2.0.5" 31397 + h3: "npm:^1.15.2" 31398 + lru-cache: "npm:^10.4.3" 31399 + node-fetch-native: "npm:^1.6.6" 31400 + ofetch: "npm:^1.4.1" 31401 + ufo: "npm:^1.6.1" 31402 + peerDependencies: 31403 + "@azure/app-configuration": ^1.8.0 31404 + "@azure/cosmos": ^4.2.0 31405 + "@azure/data-tables": ^13.3.0 31406 + "@azure/identity": ^4.6.0 31407 + "@azure/keyvault-secrets": ^4.9.0 31408 + "@azure/storage-blob": ^12.26.0 31409 + "@capacitor/preferences": ^6.0.3 || ^7.0.0 31410 + "@deno/kv": ">=0.9.0" 31411 + "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 31412 + "@planetscale/database": ^1.19.0 31413 + "@upstash/redis": ^1.34.3 31414 + "@vercel/blob": ">=0.27.1" 31415 + "@vercel/kv": ^1.0.1 31416 + aws4fetch: ^1.0.20 31417 + db0: ">=0.2.1" 31418 + idb-keyval: ^6.2.1 31419 + ioredis: ^5.4.2 31420 + uploadthing: ^7.4.4 31421 + peerDependenciesMeta: 31422 + "@azure/app-configuration": 31423 + optional: true 31424 + "@azure/cosmos": 31425 + optional: true 31426 + "@azure/data-tables": 31427 + optional: true 31428 + "@azure/identity": 31429 + optional: true 31430 + "@azure/keyvault-secrets": 31431 + optional: true 31432 + "@azure/storage-blob": 31433 + optional: true 31434 + "@capacitor/preferences": 31435 + optional: true 31436 + "@deno/kv": 31437 + optional: true 31438 + "@netlify/blobs": 31439 + optional: true 31440 + "@planetscale/database": 31441 + optional: true 31442 + "@upstash/redis": 31443 + optional: true 31444 + "@vercel/blob": 31445 + optional: true 31446 + "@vercel/kv": 31447 + optional: true 31448 + aws4fetch: 31449 + optional: true 31450 + db0: 31451 + optional: true 31452 + idb-keyval: 31453 + optional: true 31454 + ioredis: 31455 + optional: true 31456 + uploadthing: 31457 + optional: true 31458 + checksum: 10/1dd0a1c9ecb3074d55f8d4b2c6482ac61fe63b61e548eafe7a36e0a45a95b66964a5f24600f40d458f6fa1f71046809b01ac941687ca1a3dc29205b67cb3d1bc 27334 31459 languageName: node 27335 31460 linkType: hard 27336 31461 ··· 27683 31808 languageName: node 27684 31809 linkType: hard 27685 31810 31811 + "vfile-location@npm:^5.0.0": 31812 + version: 5.0.3 31813 + resolution: "vfile-location@npm:5.0.3" 31814 + dependencies: 31815 + "@types/unist": "npm:^3.0.0" 31816 + vfile: "npm:^6.0.0" 31817 + checksum: 10/f481d592fd507fe242da9a00d7400ded3c91587931f24e64c54f24752d7b30321721a1c99c0d949be1f6ed5fa7f8b169054fd07c744705b65dbdd10a9e4ebfe0 31818 + languageName: node 31819 + linkType: hard 31820 + 31821 + "vfile-message@npm:^4.0.0": 31822 + version: 4.0.2 31823 + resolution: "vfile-message@npm:4.0.2" 31824 + dependencies: 31825 + "@types/unist": "npm:^3.0.0" 31826 + unist-util-stringify-position: "npm:^4.0.0" 31827 + checksum: 10/1a5a72bf4945a7103750a3001bd979088ce42f6a01efa8590e68b2425e1afc61ddc5c76f2d3c4a7053b40332b24c09982b68743223e99281158fe727135719fc 31828 + languageName: node 31829 + linkType: hard 31830 + 31831 + "vfile@npm:^6.0.0, vfile@npm:^6.0.2, vfile@npm:^6.0.3": 31832 + version: 6.0.3 31833 + resolution: "vfile@npm:6.0.3" 31834 + dependencies: 31835 + "@types/unist": "npm:^3.0.0" 31836 + vfile-message: "npm:^4.0.0" 31837 + checksum: 10/a5a85293c9eb8787aa42e180edaef00c13199a493d6ed82fecf13ab29a68526850788e22434d77808ea6b17a74e03ff899b9b4711df5b9eee75afcddd7c2e1fb 31838 + languageName: node 31839 + linkType: hard 31840 + 27686 31841 "viem@npm:^2.1.1": 27687 31842 version: 2.18.6 27688 31843 resolution: "viem@npm:2.18.6" ··· 27749 31904 languageName: node 27750 31905 linkType: hard 27751 31906 31907 + "vite@npm:^6.3.4": 31908 + version: 6.3.4 31909 + resolution: "vite@npm:6.3.4" 31910 + dependencies: 31911 + esbuild: "npm:^0.25.0" 31912 + fdir: "npm:^6.4.4" 31913 + fsevents: "npm:~2.3.3" 31914 + picomatch: "npm:^4.0.2" 31915 + postcss: "npm:^8.5.3" 31916 + rollup: "npm:^4.34.9" 31917 + tinyglobby: "npm:^0.2.13" 31918 + peerDependencies: 31919 + "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 31920 + jiti: ">=1.21.0" 31921 + less: "*" 31922 + lightningcss: ^1.21.0 31923 + sass: "*" 31924 + sass-embedded: "*" 31925 + stylus: "*" 31926 + sugarss: "*" 31927 + terser: ^5.16.0 31928 + tsx: ^4.8.1 31929 + yaml: ^2.4.2 31930 + dependenciesMeta: 31931 + fsevents: 31932 + optional: true 31933 + peerDependenciesMeta: 31934 + "@types/node": 31935 + optional: true 31936 + jiti: 31937 + optional: true 31938 + less: 31939 + optional: true 31940 + lightningcss: 31941 + optional: true 31942 + sass: 31943 + optional: true 31944 + sass-embedded: 31945 + optional: true 31946 + stylus: 31947 + optional: true 31948 + sugarss: 31949 + optional: true 31950 + terser: 31951 + optional: true 31952 + tsx: 31953 + optional: true 31954 + yaml: 31955 + optional: true 31956 + bin: 31957 + vite: bin/vite.js 31958 + checksum: 10/347579b6571e591c1e4f54262e631f02e952e548171af09042aeffb40adfa5c9b43cf05cf115f0961cc553f6b7173fb9c2ee997a688007c01b6e13779d9a2bd4 31959 + languageName: node 31960 + linkType: hard 31961 + 31962 + "vitefu@npm:^1.0.6": 31963 + version: 1.0.6 31964 + resolution: "vitefu@npm:1.0.6" 31965 + peerDependencies: 31966 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 31967 + peerDependenciesMeta: 31968 + vite: 31969 + optional: true 31970 + checksum: 10/88211c17d93b56fbd48e1411e6f087178570d59d27b96610541414208dfbf629b8a9997735bf73a66c0f2862719ed69087759610b2c4ab0fafe7476f882b31e7 31971 + languageName: node 31972 + linkType: hard 31973 + 27752 31974 "vlq@npm:^1.0.0": 27753 31975 version: 1.0.1 27754 31976 resolution: "vlq@npm:1.0.1" ··· 27830 32052 dependencies: 27831 32053 defaults: "npm:^1.0.3" 27832 32054 checksum: 10/182ebac8ca0b96845fae6ef44afd4619df6987fe5cf552fdee8396d3daa1fb9b8ec5c6c69855acb7b3c1231571393bd1f0a4cdc4028d421575348f64bb0a8817 32055 + languageName: node 32056 + linkType: hard 32057 + 32058 + "web-namespaces@npm:^2.0.0": 32059 + version: 2.0.1 32060 + resolution: "web-namespaces@npm:2.0.1" 32061 + checksum: 10/b6d9f02f1a43d0ef0848a812d89c83801d5bbad57d8bb61f02eb6d7eb794c3736f6cc2e1191664bb26136594c8218ac609f4069722c6f56d9fc2d808fa9271c6 27833 32062 languageName: node 27834 32063 linkType: hard 27835 32064 ··· 28070 32299 languageName: node 28071 32300 linkType: hard 28072 32301 32302 + "which-pm-runs@npm:^1.1.0": 32303 + version: 1.1.0 32304 + resolution: "which-pm-runs@npm:1.1.0" 32305 + checksum: 10/39a56ee50886fb33ec710e3b36dc9fe3d0096cac44850d9ca0c6186c4cb824d6c8125f013e0562e7c94744e1e8e4a6ab695592cdb12555777c7a4368143d822c 32306 + languageName: node 32307 + linkType: hard 32308 + 28073 32309 "which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15, which-typed-array@npm:^1.1.2": 28074 32310 version: 1.1.15 28075 32311 resolution: "which-typed-array@npm:1.1.15" ··· 28125 32361 languageName: node 28126 32362 linkType: hard 28127 32363 32364 + "widest-line@npm:^5.0.0": 32365 + version: 5.0.0 32366 + resolution: "widest-line@npm:5.0.0" 32367 + dependencies: 32368 + string-width: "npm:^7.0.0" 32369 + checksum: 10/07f6527b961b88d40ac250596c06fada00cbe049080c6cc8ef4d7bc4f4ab03d7eb1a1c2e5585dd0d8b6ec99ba6f168d5b236edd8ba9221aeb8d914451f0235f9 32370 + languageName: node 32371 + linkType: hard 32372 + 28128 32373 "wildcard@npm:^2.0.0": 28129 32374 version: 2.0.1 28130 32375 resolution: "wildcard@npm:2.0.1" ··· 28394 32639 languageName: node 28395 32640 linkType: hard 28396 32641 32642 + "xxhash-wasm@npm:^1.1.0": 32643 + version: 1.1.0 32644 + resolution: "xxhash-wasm@npm:1.1.0" 32645 + checksum: 10/cad149dabda4ec4ce7c2edd98815c4cc21eadab72f631c832af110066867850fb86b9430499707358d3e23cafe6d71d0a5c16be8f1864f213e4cd1aa74bd9556 32646 + languageName: node 32647 + linkType: hard 32648 + 28397 32649 "y18n@npm:^4.0.0": 28398 32650 version: 4.0.3 28399 32651 resolution: "y18n@npm:4.0.3" ··· 28548 32800 languageName: node 28549 32801 linkType: hard 28550 32802 32803 + "yocto-queue@npm:^1.1.1": 32804 + version: 1.2.1 32805 + resolution: "yocto-queue@npm:1.2.1" 32806 + checksum: 10/0843d6c2c0558e5c06e98edf9c17942f25c769e21b519303a5c2adefd5b738c9b2054204dc856ac0cd9d134b1bc27d928ce84fd23c9e2423b7e013d5a6f50577 32807 + languageName: node 32808 + linkType: hard 32809 + 32810 + "yocto-spinner@npm:^0.2.1": 32811 + version: 0.2.2 32812 + resolution: "yocto-spinner@npm:0.2.2" 32813 + dependencies: 32814 + yoctocolors: "npm:^2.1.1" 32815 + checksum: 10/c93fd8885e45a0fbd1550ee4161fd77592d2c13d5a2e0b2098689abcf58469db2ad26412034569bc0c98b9e5e2e89975b7a201c3f0fe27f798d45f25c94bbcd9 32816 + languageName: node 32817 + linkType: hard 32818 + 32819 + "yoctocolors@npm:^2.1.1": 32820 + version: 2.1.1 32821 + resolution: "yoctocolors@npm:2.1.1" 32822 + checksum: 10/563fbec88bce9716d1044bc98c96c329e1d7a7c503e6f1af68f1ff914adc3ba55ce953c871395e2efecad329f85f1632f51a99c362032940321ff80c42a6f74d 32823 + languageName: node 32824 + linkType: hard 32825 + 32826 + "zod-to-json-schema@npm:^3.24.5": 32827 + version: 3.24.5 32828 + resolution: "zod-to-json-schema@npm:3.24.5" 32829 + peerDependencies: 32830 + zod: ^3.24.1 32831 + checksum: 10/1af291b4c429945c9568c2e924bdb7c66ab8d139cbeb9a99b6e9fc9e1b02863f85d07759b9303714f07ceda3993dcaf0ebcb80d2c18bb2aaf5502b2c1016affd 32832 + languageName: node 32833 + linkType: hard 32834 + 32835 + "zod-to-ts@npm:^1.2.0": 32836 + version: 1.2.0 32837 + resolution: "zod-to-ts@npm:1.2.0" 32838 + peerDependencies: 32839 + typescript: ^4.9.4 || ^5.0.2 32840 + zod: ^3 32841 + checksum: 10/5955072e76fb3e2c7c801c4d494ce3a25e93ed47bcaafc55b43e33bb96b5de2f7f2e3886f050561c0115e829eb93479d454c2c94ab83a0d6bd5b1eef71376188 32842 + languageName: node 32843 + linkType: hard 32844 + 28551 32845 "zod@npm:^3.23.8": 28552 32846 version: 3.23.8 28553 32847 resolution: "zod@npm:3.23.8" ··· 28555 32849 languageName: node 28556 32850 linkType: hard 28557 32851 32852 + "zod@npm:^3.24.2": 32853 + version: 3.24.3 32854 + resolution: "zod@npm:3.24.3" 32855 + checksum: 10/1b15db625ca633324084f3a8587bfb907043bbca407a09f7d5da6a9781b3838c68e9312b49e91e479d2f8bf04cdda5810803ac9504e3b7ccbec3adf2de625fb8 32856 + languageName: node 32857 + linkType: hard 32858 + 28558 32859 "zustand@npm:5.0.0": 28559 32860 version: 5.0.0 28560 32861 resolution: "zustand@npm:5.0.0" ··· 28575 32876 checksum: 10/be75ef4d1b218b143314467bb9e23641231043cad2d5c3a4b2219c46d1609ee799cd8dc9acec9b23d55ec3a2a619a06616e593aea4049f3b7323938af9a33bfe 28576 32877 languageName: node 28577 32878 linkType: hard 32879 + 32880 + "zwitch@npm:^2.0.0, zwitch@npm:^2.0.4": 32881 + version: 2.0.4 32882 + resolution: "zwitch@npm:2.0.4" 32883 + checksum: 10/f22ec5fc2d5f02c423c93d35cdfa83573a3a3bd98c66b927c368ea4d0e7252a500df2a90a6b45522be536a96a73404393c958e945fdba95e6832c200791702b6 32884 + languageName: node 32885 + linkType: hard