AppView in a box as a Vite plugin thing hatk.dev
2
fork

Configure Feed

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

docs: migrate docs site from Astro/Starlight to VitePress

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+1451 -5260
-21
docs/site/.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
+2
docs/site/.vitepress/.gitignore
··· 1 + dist 2 + cache
+66
docs/site/.vitepress/config.ts
··· 1 + import { defineConfig } from 'vitepress' 2 + 3 + export default defineConfig({ 4 + title: 'Hatk', 5 + description: 'Build AT Protocol applications from scratch.', 6 + 7 + themeConfig: { 8 + nav: [ 9 + { text: 'Guide', link: '/getting-started/quickstart' }, 10 + { text: 'CLI', link: '/cli/' }, 11 + { text: 'API', link: '/api/' }, 12 + ], 13 + 14 + sidebar: [ 15 + { 16 + text: 'Getting Started', 17 + items: [ 18 + { text: 'Quickstart', link: '/getting-started/quickstart' }, 19 + { text: 'Project Structure', link: '/getting-started/project-structure' }, 20 + { text: 'Configuration', link: '/getting-started/configuration' }, 21 + ], 22 + }, 23 + { 24 + text: 'Guides', 25 + items: [ 26 + { text: 'Frontend (SvelteKit)', link: '/guides/frontend' }, 27 + { text: 'API Client', link: '/guides/api-client' }, 28 + { text: 'OAuth', link: '/guides/oauth' }, 29 + { text: 'Feeds', link: '/guides/feeds' }, 30 + { text: 'XRPC Handlers', link: '/guides/xrpc-handlers' }, 31 + { text: 'Labels', link: '/guides/labels' }, 32 + { text: 'Seeds', link: '/guides/seeds' }, 33 + { text: 'OpenGraph Images', link: '/guides/opengraph' }, 34 + { text: 'Hooks', link: '/guides/hooks' }, 35 + { text: 'Deployment', link: '/guides/deployment' }, 36 + ], 37 + }, 38 + { 39 + text: 'CLI Reference', 40 + items: [ 41 + { text: 'Overview', link: '/cli/' }, 42 + { text: 'Scaffolding', link: '/cli/scaffold' }, 43 + { text: 'Development', link: '/cli/development' }, 44 + { text: 'Testing', link: '/cli/testing' }, 45 + { text: 'Build & Deploy', link: '/cli/build' }, 46 + ], 47 + }, 48 + { 49 + text: 'API Reference', 50 + items: [ 51 + { text: 'Overview', link: '/api/' }, 52 + { text: 'Records', link: '/api/records' }, 53 + { text: 'Feeds', link: '/api/feeds' }, 54 + { text: 'Search', link: '/api/search' }, 55 + { text: 'Blobs', link: '/api/blobs' }, 56 + { text: 'Preferences', link: '/api/preferences' }, 57 + { text: 'Labels', link: '/api/labels' }, 58 + ], 59 + }, 60 + ], 61 + 62 + socialLinks: [ 63 + { icon: 'github', link: 'https://github.com/bigmoves/atconf-workshop' }, 64 + ], 65 + }, 66 + })
+62
docs/site/api/index.md
··· 1 + --- 2 + title: API Overview 3 + description: XRPC endpoints served by your Hatk server. 4 + --- 5 + 6 + Hatk serves [XRPC](https://atproto.com/specs/xrpc) endpoints at `/xrpc/{nsid}`. All built-in endpoints use the `dev.hatk` namespace. 7 + 8 + ## Protocol 9 + 10 + - **Queries** are GET requests with parameters in the query string 11 + - **Procedures** are POST requests with JSON (or binary) request bodies 12 + - All responses are JSON unless otherwise noted 13 + 14 + ## Authentication 15 + 16 + Authenticated endpoints require an OAuth DPoP bearer token in the `Authorization` header: 17 + 18 + ``` 19 + Authorization: DPoP <token> 20 + ``` 21 + 22 + Configure OAuth in your `config.yaml` to enable authentication. See [Configuration](/getting-started/configuration). 23 + 24 + ## Client usage 25 + 26 + The generated client provides typed methods for all endpoints: 27 + 28 + ```typescript 29 + // Query (GET) 30 + const result = await api.query('dev.hatk.getRecords', { 31 + collection: 'fm.teal.alpha.feed.play', 32 + limit: 10, 33 + }) 34 + 35 + // Procedure (POST) 36 + const result = await api.call('dev.hatk.createRecord', { 37 + collection: 'fm.teal.alpha.feed.play', 38 + repo: userDid, 39 + record: { createdAt: new Date().toISOString() }, 40 + }) 41 + 42 + // Upload binary data 43 + const result = await api.upload(file) 44 + ``` 45 + 46 + ## Built-in endpoints 47 + 48 + | Endpoint | Type | Auth | Description | 49 + | ------------------------------------- | --------- | ---- | ------------------------------- | 50 + | [`getRecord`](/api/records) | Query | No | Fetch a single record by AT URI | 51 + | [`getRecords`](/api/records) | Query | No | List records with filters | 52 + | [`createRecord`](/api/records) | Procedure | Yes | Create a record via user's PDS | 53 + | [`putRecord`](/api/records) | Procedure | Yes | Create or update a record | 54 + | [`deleteRecord`](/api/records) | Procedure | Yes | Delete a record | 55 + | [`getFeed`](/api/feeds) | Query | No | Retrieve a named feed | 56 + | [`describeFeeds`](/api/feeds) | Query | No | List available feeds | 57 + | [`searchRecords`](/api/search) | Query | No | Full-text search | 58 + | [`uploadBlob`](/api/blobs) | Procedure | Yes | Upload a binary blob | 59 + | [`getPreferences`](/api/preferences) | Query | Yes | Get user preferences | 60 + | [`putPreference`](/api/preferences) | Procedure | Yes | Set a preference | 61 + | [`describeLabels`](/api/labels) | Query | No | List label definitions | 62 + | `describeCollections` | Query | No | List indexed collections |
-59
docs/site/astro.config.mjs
··· 1 - // @ts-check 2 - import { defineConfig } from 'astro/config' 3 - import starlight from '@astrojs/starlight' 4 - 5 - export default defineConfig({ 6 - integrations: [ 7 - starlight({ 8 - title: 'Hatk', 9 - social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/bigmoves/atconf-workshop' }], 10 - sidebar: [ 11 - { 12 - label: 'Getting Started', 13 - items: [ 14 - { label: 'Quickstart', slug: 'getting-started/quickstart' }, 15 - { label: 'Project Structure', slug: 'getting-started/project-structure' }, 16 - { label: 'Configuration', slug: 'getting-started/configuration' }, 17 - ], 18 - }, 19 - { 20 - label: 'Guides', 21 - items: [ 22 - { label: 'Frontend (SvelteKit)', slug: 'guides/frontend' }, 23 - { label: 'API Client', slug: 'guides/api-client' }, 24 - { label: 'OAuth', slug: 'guides/oauth' }, 25 - { label: 'Feeds', slug: 'guides/feeds' }, 26 - { label: 'XRPC Handlers', slug: 'guides/xrpc-handlers' }, 27 - { label: 'Labels', slug: 'guides/labels' }, 28 - { label: 'Seeds', slug: 'guides/seeds' }, 29 - { label: 'OpenGraph Images', slug: 'guides/opengraph' }, 30 - { label: 'Hooks', slug: 'guides/hooks' }, 31 - { label: 'Deployment', slug: 'guides/deployment' }, 32 - ], 33 - }, 34 - { 35 - label: 'CLI Reference', 36 - items: [ 37 - { label: 'Overview', slug: 'cli' }, 38 - { label: 'Scaffolding', slug: 'cli/scaffold' }, 39 - { label: 'Development', slug: 'cli/development' }, 40 - { label: 'Testing', slug: 'cli/testing' }, 41 - { label: 'Build & Deploy', slug: 'cli/build' }, 42 - ], 43 - }, 44 - { 45 - label: 'API Reference', 46 - items: [ 47 - { label: 'Overview', slug: 'api' }, 48 - { label: 'Records', slug: 'api/records' }, 49 - { label: 'Feeds', slug: 'api/feeds' }, 50 - { label: 'Search', slug: 'api/search' }, 51 - { label: 'Blobs', slug: 'api/blobs' }, 52 - { label: 'Preferences', slug: 'api/preferences' }, 53 - { label: 'Labels', slug: 'api/labels' }, 54 - ], 55 - }, 56 - ], 57 - }), 58 - ], 59 - })
+14
docs/site/index.md
··· 1 + --- 2 + layout: home 3 + 4 + hero: 5 + name: Hatk 6 + tagline: Scaffold, index, and serve AT Protocol apps with typed XRPC endpoints. 7 + actions: 8 + - theme: brand 9 + text: Get Started 10 + link: /getting-started/quickstart 11 + - theme: alt 12 + text: CLI Reference 13 + link: /cli/ 14 + ---
+5 -6
docs/site/package.json
··· 3 3 "private": true, 4 4 "type": "module", 5 5 "scripts": { 6 - "dev": "astro dev", 7 - "build": "astro build", 8 - "preview": "astro preview" 6 + "dev": "vitepress dev", 7 + "build": "vitepress build", 8 + "preview": "vitepress preview" 9 9 }, 10 10 "dependencies": { 11 - "@astrojs/starlight": "^0.37.7", 12 - "astro": "^5.6.1", 13 - "sharp": "^0.34.2" 11 + "vitepress": "^1.6.4", 12 + "vue": "^3.5.13" 14 13 } 15 14 }
-1
docs/site/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>
-7
docs/site/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 - }
docs/site/src/content/docs/api/blobs.mdx docs/site/api/blobs.md
+1 -1
docs/site/src/content/docs/api/feeds.mdx docs/site/api/feeds.md
··· 69 69 70 70 --- 71 71 72 - See [Feeds guide](/guides/feeds/) for how to define feeds with `defineFeed()`. 72 + See [Feeds guide](/guides/feeds) for how to define feeds with `defineFeed()`.
-62
docs/site/src/content/docs/api/index.mdx
··· 1 - --- 2 - title: API Overview 3 - description: XRPC endpoints served by your Hatk server. 4 - --- 5 - 6 - Hatk serves [XRPC](https://atproto.com/specs/xrpc) endpoints at `/xrpc/{nsid}`. All built-in endpoints use the `dev.hatk` namespace. 7 - 8 - ## Protocol 9 - 10 - - **Queries** are GET requests with parameters in the query string 11 - - **Procedures** are POST requests with JSON (or binary) request bodies 12 - - All responses are JSON unless otherwise noted 13 - 14 - ## Authentication 15 - 16 - Authenticated endpoints require an OAuth DPoP bearer token in the `Authorization` header: 17 - 18 - ``` 19 - Authorization: DPoP <token> 20 - ``` 21 - 22 - Configure OAuth in your `config.yaml` to enable authentication. See [Configuration](/getting-started/configuration/). 23 - 24 - ## Client usage 25 - 26 - The generated client provides typed methods for all endpoints: 27 - 28 - ```typescript 29 - // Query (GET) 30 - const result = await api.query('dev.hatk.getRecords', { 31 - collection: 'fm.teal.alpha.feed.play', 32 - limit: 10, 33 - }) 34 - 35 - // Procedure (POST) 36 - const result = await api.call('dev.hatk.createRecord', { 37 - collection: 'fm.teal.alpha.feed.play', 38 - repo: userDid, 39 - record: { createdAt: new Date().toISOString() }, 40 - }) 41 - 42 - // Upload binary data 43 - const result = await api.upload(file) 44 - ``` 45 - 46 - ## Built-in endpoints 47 - 48 - | Endpoint | Type | Auth | Description | 49 - | ------------------------------------- | --------- | ---- | ------------------------------- | 50 - | [`getRecord`](/api/records/) | Query | No | Fetch a single record by AT URI | 51 - | [`getRecords`](/api/records/) | Query | No | List records with filters | 52 - | [`createRecord`](/api/records/) | Procedure | Yes | Create a record via user's PDS | 53 - | [`putRecord`](/api/records/) | Procedure | Yes | Create or update a record | 54 - | [`deleteRecord`](/api/records/) | Procedure | Yes | Delete a record | 55 - | [`getFeed`](/api/feeds/) | Query | No | Retrieve a named feed | 56 - | [`describeFeeds`](/api/feeds/) | Query | No | List available feeds | 57 - | [`searchRecords`](/api/search/) | Query | No | Full-text search | 58 - | [`uploadBlob`](/api/blobs/) | Procedure | Yes | Upload a binary blob | 59 - | [`getPreferences`](/api/preferences/) | Query | Yes | Get user preferences | 60 - | [`putPreference`](/api/preferences/) | Procedure | Yes | Set a preference | 61 - | [`describeLabels`](/api/labels/) | Query | No | List label definitions | 62 - | `describeCollections` | Query | No | List indexed collections |
+1 -1
docs/site/src/content/docs/api/labels.mdx docs/site/api/labels.md
··· 34 34 35 35 --- 36 36 37 - See [Labels guide](/guides/labels/) for how to define labels and hydrate them in responses. 37 + See [Labels guide](/guides/labels) for how to define labels and hydrate them in responses.
docs/site/src/content/docs/api/preferences.mdx docs/site/api/preferences.md
docs/site/src/content/docs/api/records.mdx docs/site/api/records.md
docs/site/src/content/docs/api/search.mdx docs/site/api/search.md
+1 -1
docs/site/src/content/docs/cli/build.mdx docs/site/cli/build.md
··· 37 37 hatk start 38 38 ``` 39 39 40 - See [Configuration](/getting-started/configuration/) for all available environment variables. 40 + See [Configuration](/getting-started/configuration) for all available environment variables.
docs/site/src/content/docs/cli/development.mdx docs/site/cli/development.md
docs/site/src/content/docs/cli/index.mdx docs/site/cli/index.md
docs/site/src/content/docs/cli/scaffold.mdx docs/site/cli/scaffold.md
docs/site/src/content/docs/cli/testing.mdx docs/site/cli/testing.md
docs/site/src/content/docs/getting-started/configuration.mdx docs/site/getting-started/configuration.md
+9 -9
docs/site/src/content/docs/getting-started/project-structure.mdx docs/site/getting-started/project-structure.md
··· 38 38 39 39 ### `config.yaml` 40 40 41 - Main configuration — relay URL, database path, port, OAuth settings, backfill options, and more. See [Configuration](/getting-started/configuration/) for all options. 41 + Main configuration — relay URL, database path, port, OAuth settings, backfill options, and more. See [Configuration](/getting-started/configuration) for all options. 42 42 43 43 ### `package.json` 44 44 ··· 89 89 90 90 ### `feeds/` 91 91 92 - Feed generators using `defineFeed()`. Each file exports a feed with a `generate` function that queries DuckDB and returns record URIs, plus an optional `hydrate` function for enrichment. See [Feeds guide](/guides/feeds/). 92 + Feed generators using `defineFeed()`. Each file exports a feed with a `generate` function that queries DuckDB and returns record URIs, plus an optional `hydrate` function for enrichment. See [Feeds guide](/guides/feeds). 93 93 94 94 ``` 95 95 feeds/ ··· 98 98 99 99 ### `xrpc/` 100 100 101 - Custom XRPC endpoint handlers organized by namespace path. Each file uses `defineQuery()` or `defineProcedure()` and must have a matching lexicon. See [XRPC Handlers guide](/guides/xrpc-handlers/). 101 + Custom XRPC endpoint handlers organized by namespace path. Each file uses `defineQuery()` or `defineProcedure()` and must have a matching lexicon. See [XRPC Handlers guide](/guides/xrpc-handlers). 102 102 103 103 ``` 104 104 xrpc/ ··· 108 108 109 109 ### `og/` 110 110 111 - OpenGraph image routes using satori for server-side rendering. Each file exports a `path` and `generate()` function that returns a virtual DOM element. See [OpenGraph guide](/guides/opengraph/). 111 + OpenGraph image routes using satori for server-side rendering. Each file exports a `path` and `generate()` function that returns a virtual DOM element. See [OpenGraph guide](/guides/opengraph). 112 112 113 113 ``` 114 114 og/ ··· 117 117 118 118 ### `hooks/` 119 119 120 - Lifecycle hooks. Currently supports `on-login.ts`, which fires after a user authenticates via OAuth. The hook receives the user's `did` and an `ensureRepo` helper. See [Hooks guide](/guides/hooks/). 120 + Lifecycle hooks. Currently supports `on-login.ts`, which fires after a user authenticates via OAuth. The hook receives the user's `did` and an `ensureRepo` helper. See [Hooks guide](/guides/hooks). 121 121 122 122 ``` 123 123 hooks/ ··· 126 126 127 127 ### `labels/` 128 128 129 - Label definitions for content moderation. Each file exports a label definition with `evaluate()` logic. See [Labels guide](/guides/labels/). 129 + Label definitions for content moderation. Each file exports a label definition with `evaluate()` logic. See [Labels guide](/guides/labels). 130 130 131 131 ``` 132 132 labels/ ··· 135 135 136 136 ### `seeds/` 137 137 138 - Test fixture data. Contains a `seed.ts` that creates accounts and records against the local PDS during development. Run with `hatk seed` or automatically during `hatk dev`. See [Seeds guide](/guides/seeds/). 138 + Test fixture data. Contains a `seed.ts` that creates accounts and records against the local PDS during development. Run with `hatk seed` or automatically during `hatk dev`. See [Seeds guide](/guides/seeds). 139 139 140 140 ``` 141 141 seeds/ ··· 190 190 └── +page.svelte # OAuth redirect target 191 191 ``` 192 192 193 - The Vite plugin proxies API routes to the hatk backend during development. In production, `vite build` compiles to `public/`. See [Frontend guide](/guides/frontend/) for details. 193 + The Vite plugin proxies API routes to the hatk backend during development. In production, `vite build` compiles to `public/`. See [Frontend guide](/guides/frontend) for details. 194 194 195 195 ### `test/` 196 196 ··· 204 204 | `test/browser/` | Playwright browser tests | 205 205 | `test/fixtures/` | Shared test data and helpers | 206 206 207 - Run all tests with `hatk test`. See [Testing](/cli/testing/) for details. 207 + Run all tests with `hatk test`. See [Testing](/cli/testing) for details. 208 208 209 209 --- 210 210
+2 -2
docs/site/src/content/docs/getting-started/quickstart.mdx docs/site/getting-started/quickstart.md
··· 66 66 67 67 ## Next steps 68 68 69 - - [Project Structure](/getting-started/project-structure/) — understand each file and directory 70 - - [Configuration](/getting-started/configuration/) — customize `config.yaml` 69 + - [Project Structure](/getting-started/project-structure) — understand each file and directory 70 + - [Configuration](/getting-started/configuration) — customize `config.yaml` 71 71 - [CLI Reference](/cli/) — all available commands
+1 -1
docs/site/src/content/docs/guides/api-client.mdx docs/site/guides/api-client.md
··· 72 72 73 73 When the user is logged in, requests include `Authorization: DPoP <token>` and a `DPoP` proof header. When logged out, it falls back to plain `fetch`. 74 74 75 - See [OAuth](/guides/oauth/) for setting up `getAuthFetch()`. 75 + See [OAuth](/guides/oauth) for setting up `getAuthFetch()`. 76 76 77 77 ## Error handling 78 78
docs/site/src/content/docs/guides/deployment.mdx docs/site/guides/deployment.md
docs/site/src/content/docs/guides/feeds.mdx docs/site/guides/feeds.md
docs/site/src/content/docs/guides/frontend.mdx docs/site/guides/frontend.md
docs/site/src/content/docs/guides/hooks.mdx docs/site/guides/hooks.md
docs/site/src/content/docs/guides/labels.mdx docs/site/guides/labels.md
+2 -2
docs/site/src/content/docs/guides/oauth.mdx docs/site/guides/oauth.md
··· 113 113 } 114 114 ``` 115 115 116 - Pass this to the [API client](/guides/api-client/) so all requests are authenticated when a user is logged in: 116 + Pass this to the [API client](/guides/api-client) so all requests are authenticated when a user is logged in: 117 117 118 118 ```typescript 119 119 export const api = createClient<XrpcSchema>(origin, { ··· 180 180 scope: atproto transition:generic 181 181 ``` 182 182 183 - See [Configuration](/getting-started/configuration/) for all OAuth options. 183 + See [Configuration](/getting-started/configuration) for all OAuth options.
docs/site/src/content/docs/guides/opengraph.mdx docs/site/guides/opengraph.md
docs/site/src/content/docs/guides/seeds.mdx docs/site/guides/seeds.md
docs/site/src/content/docs/guides/xrpc-handlers.mdx docs/site/guides/xrpc-handlers.md
-14
docs/site/src/content/docs/index.mdx
··· 1 - --- 2 - title: Hatk 3 - description: Build AT Protocol applications from scratch. 4 - template: splash 5 - hero: 6 - tagline: Scaffold, index, and serve AT Protocol apps with typed XRPC endpoints. 7 - actions: 8 - - text: Get Started 9 - link: /getting-started/quickstart/ 10 - icon: right-arrow 11 - - text: CLI Reference 12 - link: /cli/ 13 - variant: minimal 14 - ---
-5
docs/site/tsconfig.json
··· 1 - { 2 - "extends": "astro/tsconfigs/strict", 3 - "include": [".astro/types.d.ts", "**/*"], 4 - "exclude": ["dist"] 5 - }
+1285 -5068
package-lock.json
··· 22 22 "docs/site": { 23 23 "name": "@hatk/docs", 24 24 "dependencies": { 25 - "@astrojs/starlight": "^0.37.7", 26 - "astro": "^5.6.1", 27 - "sharp": "^0.34.2" 25 + "vitepress": "^1.6.4", 26 + "vue": "^3.5.13" 28 27 } 29 28 }, 30 - "node_modules/@astrojs/compiler": { 31 - "version": "2.13.1", 32 - "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.13.1.tgz", 33 - "integrity": "sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==", 34 - "license": "MIT" 29 + "node_modules/@algolia/abtesting": { 30 + "version": "1.15.2", 31 + "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.15.2.tgz", 32 + "integrity": "sha512-rF7vRVE61E0QORw8e2NNdnttcl3jmFMWS9B4hhdga12COe+lMa26bQLfcBn/Nbp9/AF/8gXdaRCPsVns3CnjsA==", 33 + "license": "MIT", 34 + "dependencies": { 35 + "@algolia/client-common": "5.49.2", 36 + "@algolia/requester-browser-xhr": "5.49.2", 37 + "@algolia/requester-fetch": "5.49.2", 38 + "@algolia/requester-node-http": "5.49.2" 39 + }, 40 + "engines": { 41 + "node": ">= 14.0.0" 42 + } 35 43 }, 36 - "node_modules/@astrojs/internal-helpers": { 37 - "version": "0.7.6", 38 - "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.7.6.tgz", 39 - "integrity": "sha512-GOle7smBWKfMSP8osUIGOlB5kaHdQLV3foCsf+5Q9Wsuu+C6Fs3Ez/ttXmhjZ1HkSgsogcM1RXSjjOVieHq16Q==", 40 - "license": "MIT" 44 + "node_modules/@algolia/autocomplete-core": { 45 + "version": "1.17.7", 46 + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", 47 + "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", 48 + "license": "MIT", 49 + "dependencies": { 50 + "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", 51 + "@algolia/autocomplete-shared": "1.17.7" 52 + } 41 53 }, 42 - "node_modules/@astrojs/markdown-remark": { 43 - "version": "6.3.11", 44 - "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.11.tgz", 45 - "integrity": "sha512-hcaxX/5aC6lQgHeGh1i+aauvSwIT6cfyFjKWvExYSxUhZZBBdvCliOtu06gbQyhbe0pGJNoNmqNlQZ5zYUuIyQ==", 54 + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { 55 + "version": "1.17.7", 56 + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", 57 + "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", 46 58 "license": "MIT", 47 59 "dependencies": { 48 - "@astrojs/internal-helpers": "0.7.6", 49 - "@astrojs/prism": "3.3.0", 50 - "github-slugger": "^2.0.0", 51 - "hast-util-from-html": "^2.0.3", 52 - "hast-util-to-text": "^4.0.2", 53 - "import-meta-resolve": "^4.2.0", 54 - "js-yaml": "^4.1.1", 55 - "mdast-util-definitions": "^6.0.0", 56 - "rehype-raw": "^7.0.0", 57 - "rehype-stringify": "^10.0.1", 58 - "remark-gfm": "^4.0.1", 59 - "remark-parse": "^11.0.0", 60 - "remark-rehype": "^11.1.2", 61 - "remark-smartypants": "^3.0.2", 62 - "shiki": "^3.21.0", 63 - "smol-toml": "^1.6.0", 64 - "unified": "^11.0.5", 65 - "unist-util-remove-position": "^5.0.0", 66 - "unist-util-visit": "^5.0.0", 67 - "unist-util-visit-parents": "^6.0.2", 68 - "vfile": "^6.0.3" 60 + "@algolia/autocomplete-shared": "1.17.7" 61 + }, 62 + "peerDependencies": { 63 + "search-insights": ">= 1 < 3" 69 64 } 70 65 }, 71 - "node_modules/@astrojs/mdx": { 72 - "version": "4.3.14", 73 - "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-4.3.14.tgz", 74 - "integrity": "sha512-FBrqJQORVm+rkRa2TS5CjU9PBA6hkhrwLVBSS9A77gN2+iehvjq1w6yya/d0YKC7osiVorKkr3Qd9wNbl0ZkGA==", 66 + "node_modules/@algolia/autocomplete-preset-algolia": { 67 + "version": "1.17.7", 68 + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", 69 + "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", 70 + "license": "MIT", 71 + "dependencies": { 72 + "@algolia/autocomplete-shared": "1.17.7" 73 + }, 74 + "peerDependencies": { 75 + "@algolia/client-search": ">= 4.9.1 < 6", 76 + "algoliasearch": ">= 4.9.1 < 6" 77 + } 78 + }, 79 + "node_modules/@algolia/autocomplete-shared": { 80 + "version": "1.17.7", 81 + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", 82 + "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", 83 + "license": "MIT", 84 + "peerDependencies": { 85 + "@algolia/client-search": ">= 4.9.1 < 6", 86 + "algoliasearch": ">= 4.9.1 < 6" 87 + } 88 + }, 89 + "node_modules/@algolia/client-abtesting": { 90 + "version": "5.49.2", 91 + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.49.2.tgz", 92 + "integrity": "sha512-XyvKCm0RRmovMI/ChaAVjTwpZhXdbgt3iZofK914HeEHLqD1MUFFVLz7M0+Ou7F56UkHXwRbpHwb9xBDNopprQ==", 75 93 "license": "MIT", 76 94 "dependencies": { 77 - "@astrojs/markdown-remark": "6.3.11", 78 - "@mdx-js/mdx": "^3.1.1", 79 - "acorn": "^8.15.0", 80 - "es-module-lexer": "^1.7.0", 81 - "estree-util-visit": "^2.0.0", 82 - "hast-util-to-html": "^9.0.5", 83 - "piccolore": "^0.1.3", 84 - "rehype-raw": "^7.0.0", 85 - "remark-gfm": "^4.0.1", 86 - "remark-smartypants": "^3.0.2", 87 - "source-map": "^0.7.6", 88 - "unist-util-visit": "^5.0.0", 89 - "vfile": "^6.0.3" 95 + "@algolia/client-common": "5.49.2", 96 + "@algolia/requester-browser-xhr": "5.49.2", 97 + "@algolia/requester-fetch": "5.49.2", 98 + "@algolia/requester-node-http": "5.49.2" 90 99 }, 91 100 "engines": { 92 - "node": "18.20.8 || ^20.3.0 || >=22.0.0" 101 + "node": ">= 14.0.0" 102 + } 103 + }, 104 + "node_modules/@algolia/client-analytics": { 105 + "version": "5.49.2", 106 + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.49.2.tgz", 107 + "integrity": "sha512-jq/3qvtmj3NijZlhq7A1B0Cl41GfaBpjJxcwukGsYds6aMSCWrEAJ9pUqw/C9B3hAmILYKl7Ljz3N9SFvekD3Q==", 108 + "license": "MIT", 109 + "dependencies": { 110 + "@algolia/client-common": "5.49.2", 111 + "@algolia/requester-browser-xhr": "5.49.2", 112 + "@algolia/requester-fetch": "5.49.2", 113 + "@algolia/requester-node-http": "5.49.2" 93 114 }, 94 - "peerDependencies": { 95 - "astro": "^5.0.0" 115 + "engines": { 116 + "node": ">= 14.0.0" 117 + } 118 + }, 119 + "node_modules/@algolia/client-common": { 120 + "version": "5.49.2", 121 + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.49.2.tgz", 122 + "integrity": "sha512-bn0biLequn3epobCfjUqCxlIlurLr4RHu7RaE4trgN+RDcUq6HCVC3/yqq1hwbNYpVtulnTOJzcaxYlSr1fnuw==", 123 + "license": "MIT", 124 + "engines": { 125 + "node": ">= 14.0.0" 96 126 } 97 127 }, 98 - "node_modules/@astrojs/prism": { 99 - "version": "3.3.0", 100 - "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz", 101 - "integrity": "sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==", 128 + "node_modules/@algolia/client-insights": { 129 + "version": "5.49.2", 130 + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.49.2.tgz", 131 + "integrity": "sha512-z14wfFs1T3eeYbCArC8pvntAWsPo9f6hnUGoj8IoRUJTwgJiiySECkm8bmmV47/x0oGHfsVn3kBdjMX0yq0sNA==", 102 132 "license": "MIT", 103 133 "dependencies": { 104 - "prismjs": "^1.30.0" 134 + "@algolia/client-common": "5.49.2", 135 + "@algolia/requester-browser-xhr": "5.49.2", 136 + "@algolia/requester-fetch": "5.49.2", 137 + "@algolia/requester-node-http": "5.49.2" 105 138 }, 106 139 "engines": { 107 - "node": "18.20.8 || ^20.3.0 || >=22.0.0" 140 + "node": ">= 14.0.0" 108 141 } 109 142 }, 110 - "node_modules/@astrojs/sitemap": { 111 - "version": "3.7.1", 112 - "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.7.1.tgz", 113 - "integrity": "sha512-IzQqdTeskaMX+QDZCzMuJIp8A8C1vgzMBp/NmHNnadepHYNHcxQdGLQZYfkbd2EbRXUfOS+UDIKx8sKg0oWVdw==", 143 + "node_modules/@algolia/client-personalization": { 144 + "version": "5.49.2", 145 + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.49.2.tgz", 146 + "integrity": "sha512-GpRf7yuuAX93+Qt0JGEJZwgtL0MFdjFO9n7dn8s2pA9mTjzl0Sc5+uTk1VPbIAuf7xhCP9Mve+URGb6J+EYxgA==", 114 147 "license": "MIT", 115 148 "dependencies": { 116 - "sitemap": "^9.0.0", 117 - "stream-replace-string": "^2.0.0", 118 - "zod": "^4.3.6" 149 + "@algolia/client-common": "5.49.2", 150 + "@algolia/requester-browser-xhr": "5.49.2", 151 + "@algolia/requester-fetch": "5.49.2", 152 + "@algolia/requester-node-http": "5.49.2" 153 + }, 154 + "engines": { 155 + "node": ">= 14.0.0" 119 156 } 120 157 }, 121 - "node_modules/@astrojs/starlight": { 122 - "version": "0.37.7", 123 - "resolved": "https://registry.npmjs.org/@astrojs/starlight/-/starlight-0.37.7.tgz", 124 - "integrity": "sha512-KyBnou8aKIlPJUSNx6a1SN7XyH22oj/VAvTGC+Edld4Bnei1A//pmCRTBvSrSeoGrdUjK0ErFUfaEhhO1bPfDg==", 158 + "node_modules/@algolia/client-query-suggestions": { 159 + "version": "5.49.2", 160 + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.49.2.tgz", 161 + "integrity": "sha512-HZwApmNkp0DiAjZcLYdQLddcG4Agb88OkojiAHGgcm5DVXobT5uSZ9lmyrbw/tmQBJwgu2CNw4zTyXoIB7YbPA==", 125 162 "license": "MIT", 126 163 "dependencies": { 127 - "@astrojs/markdown-remark": "^6.3.1", 128 - "@astrojs/mdx": "^4.2.3", 129 - "@astrojs/sitemap": "^3.3.0", 130 - "@pagefind/default-ui": "^1.3.0", 131 - "@types/hast": "^3.0.4", 132 - "@types/js-yaml": "^4.0.9", 133 - "@types/mdast": "^4.0.4", 134 - "astro-expressive-code": "^0.41.1", 135 - "bcp-47": "^2.1.0", 136 - "hast-util-from-html": "^2.0.1", 137 - "hast-util-select": "^6.0.2", 138 - "hast-util-to-string": "^3.0.0", 139 - "hastscript": "^9.0.0", 140 - "i18next": "^23.11.5", 141 - "js-yaml": "^4.1.0", 142 - "klona": "^2.0.6", 143 - "magic-string": "^0.30.17", 144 - "mdast-util-directive": "^3.0.0", 145 - "mdast-util-to-markdown": "^2.1.0", 146 - "mdast-util-to-string": "^4.0.0", 147 - "pagefind": "^1.3.0", 148 - "rehype": "^13.0.1", 149 - "rehype-format": "^5.0.0", 150 - "remark-directive": "^3.0.0", 151 - "ultrahtml": "^1.6.0", 152 - "unified": "^11.0.5", 153 - "unist-util-visit": "^5.0.0", 154 - "vfile": "^6.0.2" 164 + "@algolia/client-common": "5.49.2", 165 + "@algolia/requester-browser-xhr": "5.49.2", 166 + "@algolia/requester-fetch": "5.49.2", 167 + "@algolia/requester-node-http": "5.49.2" 168 + }, 169 + "engines": { 170 + "node": ">= 14.0.0" 171 + } 172 + }, 173 + "node_modules/@algolia/client-search": { 174 + "version": "5.49.2", 175 + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.49.2.tgz", 176 + "integrity": "sha512-y1IOpG6OSmTpGg/CT0YBb/EAhR2nsC18QWp9Jy8HO9iGySpcwaTvs5kHa17daP3BMTwWyaX9/1tDTDQshZzXdg==", 177 + "license": "MIT", 178 + "dependencies": { 179 + "@algolia/client-common": "5.49.2", 180 + "@algolia/requester-browser-xhr": "5.49.2", 181 + "@algolia/requester-fetch": "5.49.2", 182 + "@algolia/requester-node-http": "5.49.2" 183 + }, 184 + "engines": { 185 + "node": ">= 14.0.0" 186 + } 187 + }, 188 + "node_modules/@algolia/ingestion": { 189 + "version": "1.49.2", 190 + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.49.2.tgz", 191 + "integrity": "sha512-YYJRjaZ2bqk923HxE4um7j/Cm3/xoSkF2HC2ZweOF8cXL3sqnlndSUYmCaxHFjNPWLaSHk2IfssX6J/tdKTULw==", 192 + "license": "MIT", 193 + "dependencies": { 194 + "@algolia/client-common": "5.49.2", 195 + "@algolia/requester-browser-xhr": "5.49.2", 196 + "@algolia/requester-fetch": "5.49.2", 197 + "@algolia/requester-node-http": "5.49.2" 198 + }, 199 + "engines": { 200 + "node": ">= 14.0.0" 201 + } 202 + }, 203 + "node_modules/@algolia/monitoring": { 204 + "version": "1.49.2", 205 + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.49.2.tgz", 206 + "integrity": "sha512-9WgH+Dha39EQQyGKCHlGYnxW/7W19DIrEbCEbnzwAMpGAv1yTWCHMPXHxYa+LcL3eCp2V/5idD1zHNlIKmHRHg==", 207 + "license": "MIT", 208 + "dependencies": { 209 + "@algolia/client-common": "5.49.2", 210 + "@algolia/requester-browser-xhr": "5.49.2", 211 + "@algolia/requester-fetch": "5.49.2", 212 + "@algolia/requester-node-http": "5.49.2" 213 + }, 214 + "engines": { 215 + "node": ">= 14.0.0" 216 + } 217 + }, 218 + "node_modules/@algolia/recommend": { 219 + "version": "5.49.2", 220 + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.49.2.tgz", 221 + "integrity": "sha512-K7Gp5u+JtVYgaVpBxF5rGiM+Ia8SsMdcAJMTDV93rwh00DKNllC19o1g+PwrDjDvyXNrnTEbofzbTs2GLfFyKA==", 222 + "license": "MIT", 223 + "dependencies": { 224 + "@algolia/client-common": "5.49.2", 225 + "@algolia/requester-browser-xhr": "5.49.2", 226 + "@algolia/requester-fetch": "5.49.2", 227 + "@algolia/requester-node-http": "5.49.2" 228 + }, 229 + "engines": { 230 + "node": ">= 14.0.0" 231 + } 232 + }, 233 + "node_modules/@algolia/requester-browser-xhr": { 234 + "version": "5.49.2", 235 + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.49.2.tgz", 236 + "integrity": "sha512-3UhYCcWX6fbtN8ABcxZlhaQEwXFh3CsFtARyyadQShHMPe3mJV9Wel4FpJTa+seugRkbezFz0tt6aPTZSYTBuA==", 237 + "license": "MIT", 238 + "dependencies": { 239 + "@algolia/client-common": "5.49.2" 240 + }, 241 + "engines": { 242 + "node": ">= 14.0.0" 243 + } 244 + }, 245 + "node_modules/@algolia/requester-fetch": { 246 + "version": "5.49.2", 247 + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.49.2.tgz", 248 + "integrity": "sha512-G94VKSGbsr+WjsDDOBe5QDQ82QYgxvpxRGJfCHZBnYKYsy/jv9qGIDb93biza+LJWizQBUtDj7bZzp3QZyzhPQ==", 249 + "license": "MIT", 250 + "dependencies": { 251 + "@algolia/client-common": "5.49.2" 155 252 }, 156 - "peerDependencies": { 157 - "astro": "^5.5.0" 253 + "engines": { 254 + "node": ">= 14.0.0" 158 255 } 159 256 }, 160 - "node_modules/@astrojs/telemetry": { 161 - "version": "3.3.0", 162 - "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz", 163 - "integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==", 257 + "node_modules/@algolia/requester-node-http": { 258 + "version": "5.49.2", 259 + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.49.2.tgz", 260 + "integrity": "sha512-UuihBGHafG/ENsrcTGAn5rsOffrCIRuHMOsD85fZGLEY92ate+BMTUqxz60dv5zerh8ZumN4bRm8eW2z9L11jA==", 164 261 "license": "MIT", 165 262 "dependencies": { 166 - "ci-info": "^4.2.0", 167 - "debug": "^4.4.0", 168 - "dlv": "^1.1.3", 169 - "dset": "^3.1.4", 170 - "is-docker": "^3.0.0", 171 - "is-wsl": "^3.1.0", 172 - "which-pm-runs": "^1.1.0" 263 + "@algolia/client-common": "5.49.2" 173 264 }, 174 265 "engines": { 175 - "node": "18.20.8 || ^20.3.0 || >=22.0.0" 266 + "node": ">= 14.0.0" 176 267 } 177 268 }, 178 269 "node_modules/@babel/helper-string-parser": { ··· 208 299 "node": ">=6.0.0" 209 300 } 210 301 }, 211 - "node_modules/@babel/runtime": { 212 - "version": "7.28.6", 213 - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz", 214 - "integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==", 215 - "license": "MIT", 216 - "engines": { 217 - "node": ">=6.9.0" 218 - } 219 - }, 220 302 "node_modules/@babel/types": { 221 303 "version": "7.29.0", 222 304 "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", ··· 236 318 "integrity": "sha512-2g6wR6xMvtAyYtkg6146eA0rkYvtYU0Ov6UfPDvyVt0rB8qkAsehUEO5rgNtVhzjuwuS2H9BIwx6bDZc943Qtg==", 237 319 "license": "MIT" 238 320 }, 239 - "node_modules/@capsizecss/unpack": { 240 - "version": "4.0.0", 241 - "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-4.0.0.tgz", 242 - "integrity": "sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==", 321 + "node_modules/@docsearch/css": { 322 + "version": "3.8.2", 323 + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.2.tgz", 324 + "integrity": "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==", 325 + "license": "MIT" 326 + }, 327 + "node_modules/@docsearch/js": { 328 + "version": "3.8.2", 329 + "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.8.2.tgz", 330 + "integrity": "sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==", 243 331 "license": "MIT", 244 332 "dependencies": { 245 - "fontkitten": "^1.0.0" 246 - }, 247 - "engines": { 248 - "node": ">=18" 333 + "@docsearch/react": "3.8.2", 334 + "preact": "^10.0.0" 249 335 } 250 336 }, 251 - "node_modules/@ctrl/tinycolor": { 252 - "version": "4.2.0", 253 - "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz", 254 - "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==", 337 + "node_modules/@docsearch/js/node_modules/@docsearch/react": { 338 + "version": "3.8.2", 339 + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.2.tgz", 340 + "integrity": "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==", 255 341 "license": "MIT", 256 - "engines": { 257 - "node": ">=14" 342 + "dependencies": { 343 + "@algolia/autocomplete-core": "1.17.7", 344 + "@algolia/autocomplete-preset-algolia": "1.17.7", 345 + "@docsearch/css": "3.8.2", 346 + "algoliasearch": "^5.14.2" 347 + }, 348 + "peerDependencies": { 349 + "@types/react": ">= 16.8.0 < 19.0.0", 350 + "react": ">= 16.8.0 < 19.0.0", 351 + "react-dom": ">= 16.8.0 < 19.0.0", 352 + "search-insights": ">= 1 < 3" 353 + }, 354 + "peerDependenciesMeta": { 355 + "@types/react": { 356 + "optional": true 357 + }, 358 + "react": { 359 + "optional": true 360 + }, 361 + "react-dom": { 362 + "optional": true 363 + }, 364 + "search-insights": { 365 + "optional": true 366 + } 258 367 } 259 368 }, 260 369 "node_modules/@duckdb/node-api": { ··· 374 483 "version": "1.8.1", 375 484 "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz", 376 485 "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", 486 + "dev": true, 377 487 "license": "MIT", 378 488 "optional": true, 379 489 "dependencies": { ··· 391 501 "tslib": "^2.4.0" 392 502 } 393 503 }, 394 - "node_modules/@esbuild/aix-ppc64": { 395 - "version": "0.27.3", 396 - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", 397 - "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==", 398 - "cpu": [ 399 - "ppc64" 400 - ], 401 - "license": "MIT", 402 - "optional": true, 403 - "os": [ 404 - "aix" 405 - ], 406 - "engines": { 407 - "node": ">=18" 408 - } 409 - }, 410 - "node_modules/@esbuild/android-arm": { 411 - "version": "0.27.3", 412 - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz", 413 - "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==", 414 - "cpu": [ 415 - "arm" 416 - ], 417 - "license": "MIT", 418 - "optional": true, 419 - "os": [ 420 - "android" 421 - ], 422 - "engines": { 423 - "node": ">=18" 424 - } 425 - }, 426 - "node_modules/@esbuild/android-arm64": { 427 - "version": "0.27.3", 428 - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz", 429 - "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==", 430 - "cpu": [ 431 - "arm64" 432 - ], 433 - "license": "MIT", 434 - "optional": true, 435 - "os": [ 436 - "android" 437 - ], 438 - "engines": { 439 - "node": ">=18" 440 - } 441 - }, 442 - "node_modules/@esbuild/android-x64": { 443 - "version": "0.27.3", 444 - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz", 445 - "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==", 446 - "cpu": [ 447 - "x64" 448 - ], 449 - "license": "MIT", 450 - "optional": true, 451 - "os": [ 452 - "android" 453 - ], 454 - "engines": { 455 - "node": ">=18" 456 - } 457 - }, 458 - "node_modules/@esbuild/darwin-arm64": { 459 - "version": "0.27.3", 460 - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz", 461 - "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==", 462 - "cpu": [ 463 - "arm64" 464 - ], 465 - "license": "MIT", 466 - "optional": true, 467 - "os": [ 468 - "darwin" 469 - ], 470 - "engines": { 471 - "node": ">=18" 472 - } 473 - }, 474 - "node_modules/@esbuild/darwin-x64": { 475 - "version": "0.27.3", 476 - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz", 477 - "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==", 478 - "cpu": [ 479 - "x64" 480 - ], 481 - "license": "MIT", 482 - "optional": true, 483 - "os": [ 484 - "darwin" 485 - ], 486 - "engines": { 487 - "node": ">=18" 488 - } 489 - }, 490 - "node_modules/@esbuild/freebsd-arm64": { 491 - "version": "0.27.3", 492 - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz", 493 - "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==", 494 - "cpu": [ 495 - "arm64" 496 - ], 497 - "license": "MIT", 498 - "optional": true, 499 - "os": [ 500 - "freebsd" 501 - ], 502 - "engines": { 503 - "node": ">=18" 504 - } 505 - }, 506 - "node_modules/@esbuild/freebsd-x64": { 507 - "version": "0.27.3", 508 - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz", 509 - "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==", 510 - "cpu": [ 511 - "x64" 512 - ], 513 - "license": "MIT", 514 - "optional": true, 515 - "os": [ 516 - "freebsd" 517 - ], 518 - "engines": { 519 - "node": ">=18" 520 - } 521 - }, 522 - "node_modules/@esbuild/linux-arm": { 523 - "version": "0.27.3", 524 - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz", 525 - "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==", 526 - "cpu": [ 527 - "arm" 528 - ], 529 - "license": "MIT", 530 - "optional": true, 531 - "os": [ 532 - "linux" 533 - ], 534 - "engines": { 535 - "node": ">=18" 536 - } 537 - }, 538 - "node_modules/@esbuild/linux-arm64": { 539 - "version": "0.27.3", 540 - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz", 541 - "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==", 542 - "cpu": [ 543 - "arm64" 544 - ], 545 - "license": "MIT", 546 - "optional": true, 547 - "os": [ 548 - "linux" 549 - ], 550 - "engines": { 551 - "node": ">=18" 552 - } 553 - }, 554 - "node_modules/@esbuild/linux-ia32": { 555 - "version": "0.27.3", 556 - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz", 557 - "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==", 558 - "cpu": [ 559 - "ia32" 560 - ], 561 - "license": "MIT", 562 - "optional": true, 563 - "os": [ 564 - "linux" 565 - ], 566 - "engines": { 567 - "node": ">=18" 568 - } 569 - }, 570 - "node_modules/@esbuild/linux-loong64": { 571 - "version": "0.27.3", 572 - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz", 573 - "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==", 574 - "cpu": [ 575 - "loong64" 576 - ], 577 - "license": "MIT", 578 - "optional": true, 579 - "os": [ 580 - "linux" 581 - ], 582 - "engines": { 583 - "node": ">=18" 584 - } 585 - }, 586 - "node_modules/@esbuild/linux-mips64el": { 587 - "version": "0.27.3", 588 - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz", 589 - "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==", 590 - "cpu": [ 591 - "mips64el" 592 - ], 593 - "license": "MIT", 594 - "optional": true, 595 - "os": [ 596 - "linux" 597 - ], 598 - "engines": { 599 - "node": ">=18" 600 - } 601 - }, 602 - "node_modules/@esbuild/linux-ppc64": { 603 - "version": "0.27.3", 604 - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz", 605 - "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==", 606 - "cpu": [ 607 - "ppc64" 608 - ], 609 - "license": "MIT", 610 - "optional": true, 611 - "os": [ 612 - "linux" 613 - ], 614 - "engines": { 615 - "node": ">=18" 616 - } 617 - }, 618 - "node_modules/@esbuild/linux-riscv64": { 619 - "version": "0.27.3", 620 - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz", 621 - "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==", 622 - "cpu": [ 623 - "riscv64" 624 - ], 625 - "license": "MIT", 626 - "optional": true, 627 - "os": [ 628 - "linux" 629 - ], 630 - "engines": { 631 - "node": ">=18" 632 - } 633 - }, 634 - "node_modules/@esbuild/linux-s390x": { 635 - "version": "0.27.3", 636 - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz", 637 - "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==", 638 - "cpu": [ 639 - "s390x" 640 - ], 641 - "license": "MIT", 642 - "optional": true, 643 - "os": [ 644 - "linux" 645 - ], 646 - "engines": { 647 - "node": ">=18" 648 - } 649 - }, 650 - "node_modules/@esbuild/linux-x64": { 651 - "version": "0.27.3", 652 - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz", 653 - "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==", 654 - "cpu": [ 655 - "x64" 656 - ], 657 - "license": "MIT", 658 - "optional": true, 659 - "os": [ 660 - "linux" 661 - ], 662 - "engines": { 663 - "node": ">=18" 664 - } 665 - }, 666 - "node_modules/@esbuild/netbsd-arm64": { 667 - "version": "0.27.3", 668 - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz", 669 - "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==", 670 - "cpu": [ 671 - "arm64" 672 - ], 673 - "license": "MIT", 674 - "optional": true, 675 - "os": [ 676 - "netbsd" 677 - ], 678 - "engines": { 679 - "node": ">=18" 680 - } 681 - }, 682 - "node_modules/@esbuild/netbsd-x64": { 683 - "version": "0.27.3", 684 - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz", 685 - "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==", 686 - "cpu": [ 687 - "x64" 688 - ], 689 - "license": "MIT", 690 - "optional": true, 691 - "os": [ 692 - "netbsd" 693 - ], 694 - "engines": { 695 - "node": ">=18" 696 - } 697 - }, 698 - "node_modules/@esbuild/openbsd-arm64": { 699 - "version": "0.27.3", 700 - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz", 701 - "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==", 702 - "cpu": [ 703 - "arm64" 704 - ], 705 - "license": "MIT", 706 - "optional": true, 707 - "os": [ 708 - "openbsd" 709 - ], 710 - "engines": { 711 - "node": ">=18" 712 - } 713 - }, 714 - "node_modules/@esbuild/openbsd-x64": { 715 - "version": "0.27.3", 716 - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz", 717 - "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==", 718 - "cpu": [ 719 - "x64" 720 - ], 721 - "license": "MIT", 722 - "optional": true, 723 - "os": [ 724 - "openbsd" 725 - ], 726 - "engines": { 727 - "node": ">=18" 728 - } 729 - }, 730 - "node_modules/@esbuild/openharmony-arm64": { 731 - "version": "0.27.3", 732 - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz", 733 - "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==", 734 - "cpu": [ 735 - "arm64" 736 - ], 737 - "license": "MIT", 738 - "optional": true, 739 - "os": [ 740 - "openharmony" 741 - ], 742 - "engines": { 743 - "node": ">=18" 744 - } 745 - }, 746 - "node_modules/@esbuild/sunos-x64": { 747 - "version": "0.27.3", 748 - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz", 749 - "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==", 750 - "cpu": [ 751 - "x64" 752 - ], 753 - "license": "MIT", 754 - "optional": true, 755 - "os": [ 756 - "sunos" 757 - ], 758 - "engines": { 759 - "node": ">=18" 760 - } 761 - }, 762 - "node_modules/@esbuild/win32-arm64": { 763 - "version": "0.27.3", 764 - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz", 765 - "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==", 766 - "cpu": [ 767 - "arm64" 768 - ], 769 - "license": "MIT", 770 - "optional": true, 771 - "os": [ 772 - "win32" 773 - ], 774 - "engines": { 775 - "node": ">=18" 776 - } 777 - }, 778 - "node_modules/@esbuild/win32-ia32": { 779 - "version": "0.27.3", 780 - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz", 781 - "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==", 782 - "cpu": [ 783 - "ia32" 784 - ], 785 - "license": "MIT", 786 - "optional": true, 787 - "os": [ 788 - "win32" 789 - ], 790 - "engines": { 791 - "node": ">=18" 792 - } 793 - }, 794 - "node_modules/@esbuild/win32-x64": { 795 - "version": "0.27.3", 796 - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz", 797 - "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==", 798 - "cpu": [ 799 - "x64" 800 - ], 801 - "license": "MIT", 802 - "optional": true, 803 - "os": [ 804 - "win32" 805 - ], 806 - "engines": { 807 - "node": ">=18" 808 - } 809 - }, 810 - "node_modules/@expressive-code/core": { 811 - "version": "0.41.7", 812 - "resolved": "https://registry.npmjs.org/@expressive-code/core/-/core-0.41.7.tgz", 813 - "integrity": "sha512-ck92uZYZ9Wba2zxkiZLsZGi9N54pMSAVdrI9uW3Oo9AtLglD5RmrdTwbYPCT2S/jC36JGB2i+pnQtBm/Ib2+dg==", 814 - "license": "MIT", 815 - "dependencies": { 816 - "@ctrl/tinycolor": "^4.0.4", 817 - "hast-util-select": "^6.0.2", 818 - "hast-util-to-html": "^9.0.1", 819 - "hast-util-to-text": "^4.0.1", 820 - "hastscript": "^9.0.0", 821 - "postcss": "^8.4.38", 822 - "postcss-nested": "^6.0.1", 823 - "unist-util-visit": "^5.0.0", 824 - "unist-util-visit-parents": "^6.0.1" 825 - } 826 - }, 827 - "node_modules/@expressive-code/plugin-frames": { 828 - "version": "0.41.7", 829 - "resolved": "https://registry.npmjs.org/@expressive-code/plugin-frames/-/plugin-frames-0.41.7.tgz", 830 - "integrity": "sha512-diKtxjQw/979cTglRFaMCY/sR6hWF0kSMg8jsKLXaZBSfGS0I/Hoe7Qds3vVEgeoW+GHHQzMcwvgx/MOIXhrTA==", 831 - "license": "MIT", 832 - "dependencies": { 833 - "@expressive-code/core": "^0.41.7" 834 - } 835 - }, 836 - "node_modules/@expressive-code/plugin-shiki": { 837 - "version": "0.41.7", 838 - "resolved": "https://registry.npmjs.org/@expressive-code/plugin-shiki/-/plugin-shiki-0.41.7.tgz", 839 - "integrity": "sha512-DL605bLrUOgqTdZ0Ot5MlTaWzppRkzzqzeGEu7ODnHF39IkEBbFdsC7pbl3LbUQ1DFtnfx6rD54k/cdofbW6KQ==", 840 - "license": "MIT", 841 - "dependencies": { 842 - "@expressive-code/core": "^0.41.7", 843 - "shiki": "^3.2.2" 844 - } 845 - }, 846 - "node_modules/@expressive-code/plugin-text-markers": { 847 - "version": "0.41.7", 848 - "resolved": "https://registry.npmjs.org/@expressive-code/plugin-text-markers/-/plugin-text-markers-0.41.7.tgz", 849 - "integrity": "sha512-Ewpwuc5t6eFdZmWlFyeuy3e1PTQC0jFvw2Q+2bpcWXbOZhPLsT7+h8lsSIJxb5mS7wZko7cKyQ2RLYDyK6Fpmw==", 850 - "license": "MIT", 851 - "dependencies": { 852 - "@expressive-code/core": "^0.41.7" 853 - } 854 - }, 855 504 "node_modules/@hatk/docs": { 856 505 "resolved": "docs/site", 857 506 "link": true ··· 864 513 "resolved": "packages/oauth-client", 865 514 "link": true 866 515 }, 867 - "node_modules/@img/colour": { 868 - "version": "1.1.0", 869 - "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", 870 - "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", 871 - "license": "MIT", 872 - "engines": { 873 - "node": ">=18" 874 - } 875 - }, 876 - "node_modules/@img/sharp-darwin-arm64": { 877 - "version": "0.34.5", 878 - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", 879 - "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", 880 - "cpu": [ 881 - "arm64" 882 - ], 883 - "license": "Apache-2.0", 884 - "optional": true, 885 - "os": [ 886 - "darwin" 887 - ], 888 - "engines": { 889 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 890 - }, 891 - "funding": { 892 - "url": "https://opencollective.com/libvips" 893 - }, 894 - "optionalDependencies": { 895 - "@img/sharp-libvips-darwin-arm64": "1.2.4" 896 - } 897 - }, 898 - "node_modules/@img/sharp-darwin-x64": { 899 - "version": "0.34.5", 900 - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", 901 - "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", 902 - "cpu": [ 903 - "x64" 904 - ], 905 - "license": "Apache-2.0", 906 - "optional": true, 907 - "os": [ 908 - "darwin" 909 - ], 910 - "engines": { 911 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 912 - }, 913 - "funding": { 914 - "url": "https://opencollective.com/libvips" 915 - }, 916 - "optionalDependencies": { 917 - "@img/sharp-libvips-darwin-x64": "1.2.4" 918 - } 919 - }, 920 - "node_modules/@img/sharp-libvips-darwin-arm64": { 921 - "version": "1.2.4", 922 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", 923 - "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", 924 - "cpu": [ 925 - "arm64" 926 - ], 927 - "license": "LGPL-3.0-or-later", 928 - "optional": true, 929 - "os": [ 930 - "darwin" 931 - ], 932 - "funding": { 933 - "url": "https://opencollective.com/libvips" 934 - } 935 - }, 936 - "node_modules/@img/sharp-libvips-darwin-x64": { 937 - "version": "1.2.4", 938 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", 939 - "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", 940 - "cpu": [ 941 - "x64" 942 - ], 943 - "license": "LGPL-3.0-or-later", 944 - "optional": true, 945 - "os": [ 946 - "darwin" 947 - ], 948 - "funding": { 949 - "url": "https://opencollective.com/libvips" 950 - } 951 - }, 952 - "node_modules/@img/sharp-libvips-linux-arm": { 953 - "version": "1.2.4", 954 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", 955 - "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", 956 - "cpu": [ 957 - "arm" 958 - ], 959 - "license": "LGPL-3.0-or-later", 960 - "optional": true, 961 - "os": [ 962 - "linux" 963 - ], 964 - "funding": { 965 - "url": "https://opencollective.com/libvips" 966 - } 967 - }, 968 - "node_modules/@img/sharp-libvips-linux-arm64": { 969 - "version": "1.2.4", 970 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", 971 - "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", 972 - "cpu": [ 973 - "arm64" 974 - ], 975 - "license": "LGPL-3.0-or-later", 976 - "optional": true, 977 - "os": [ 978 - "linux" 979 - ], 980 - "funding": { 981 - "url": "https://opencollective.com/libvips" 982 - } 983 - }, 984 - "node_modules/@img/sharp-libvips-linux-ppc64": { 985 - "version": "1.2.4", 986 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", 987 - "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", 988 - "cpu": [ 989 - "ppc64" 990 - ], 991 - "license": "LGPL-3.0-or-later", 992 - "optional": true, 993 - "os": [ 994 - "linux" 995 - ], 996 - "funding": { 997 - "url": "https://opencollective.com/libvips" 998 - } 999 - }, 1000 - "node_modules/@img/sharp-libvips-linux-riscv64": { 1001 - "version": "1.2.4", 1002 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", 1003 - "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", 1004 - "cpu": [ 1005 - "riscv64" 1006 - ], 1007 - "license": "LGPL-3.0-or-later", 1008 - "optional": true, 1009 - "os": [ 1010 - "linux" 1011 - ], 1012 - "funding": { 1013 - "url": "https://opencollective.com/libvips" 1014 - } 1015 - }, 1016 - "node_modules/@img/sharp-libvips-linux-s390x": { 1017 - "version": "1.2.4", 1018 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", 1019 - "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", 1020 - "cpu": [ 1021 - "s390x" 1022 - ], 1023 - "license": "LGPL-3.0-or-later", 1024 - "optional": true, 1025 - "os": [ 1026 - "linux" 1027 - ], 1028 - "funding": { 1029 - "url": "https://opencollective.com/libvips" 1030 - } 1031 - }, 1032 - "node_modules/@img/sharp-libvips-linux-x64": { 1033 - "version": "1.2.4", 1034 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", 1035 - "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", 1036 - "cpu": [ 1037 - "x64" 1038 - ], 1039 - "license": "LGPL-3.0-or-later", 1040 - "optional": true, 1041 - "os": [ 1042 - "linux" 1043 - ], 1044 - "funding": { 1045 - "url": "https://opencollective.com/libvips" 1046 - } 1047 - }, 1048 - "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 1049 - "version": "1.2.4", 1050 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", 1051 - "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", 1052 - "cpu": [ 1053 - "arm64" 1054 - ], 1055 - "license": "LGPL-3.0-or-later", 1056 - "optional": true, 1057 - "os": [ 1058 - "linux" 1059 - ], 1060 - "funding": { 1061 - "url": "https://opencollective.com/libvips" 1062 - } 1063 - }, 1064 - "node_modules/@img/sharp-libvips-linuxmusl-x64": { 1065 - "version": "1.2.4", 1066 - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", 1067 - "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", 1068 - "cpu": [ 1069 - "x64" 1070 - ], 1071 - "license": "LGPL-3.0-or-later", 1072 - "optional": true, 1073 - "os": [ 1074 - "linux" 1075 - ], 1076 - "funding": { 1077 - "url": "https://opencollective.com/libvips" 1078 - } 1079 - }, 1080 - "node_modules/@img/sharp-linux-arm": { 1081 - "version": "0.34.5", 1082 - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", 1083 - "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", 1084 - "cpu": [ 1085 - "arm" 1086 - ], 1087 - "license": "Apache-2.0", 1088 - "optional": true, 1089 - "os": [ 1090 - "linux" 1091 - ], 1092 - "engines": { 1093 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1094 - }, 1095 - "funding": { 1096 - "url": "https://opencollective.com/libvips" 1097 - }, 1098 - "optionalDependencies": { 1099 - "@img/sharp-libvips-linux-arm": "1.2.4" 1100 - } 1101 - }, 1102 - "node_modules/@img/sharp-linux-arm64": { 1103 - "version": "0.34.5", 1104 - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", 1105 - "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", 1106 - "cpu": [ 1107 - "arm64" 1108 - ], 1109 - "license": "Apache-2.0", 1110 - "optional": true, 1111 - "os": [ 1112 - "linux" 1113 - ], 1114 - "engines": { 1115 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1116 - }, 1117 - "funding": { 1118 - "url": "https://opencollective.com/libvips" 1119 - }, 1120 - "optionalDependencies": { 1121 - "@img/sharp-libvips-linux-arm64": "1.2.4" 1122 - } 1123 - }, 1124 - "node_modules/@img/sharp-linux-ppc64": { 1125 - "version": "0.34.5", 1126 - "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", 1127 - "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", 1128 - "cpu": [ 1129 - "ppc64" 1130 - ], 1131 - "license": "Apache-2.0", 1132 - "optional": true, 1133 - "os": [ 1134 - "linux" 1135 - ], 1136 - "engines": { 1137 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1138 - }, 1139 - "funding": { 1140 - "url": "https://opencollective.com/libvips" 1141 - }, 1142 - "optionalDependencies": { 1143 - "@img/sharp-libvips-linux-ppc64": "1.2.4" 1144 - } 1145 - }, 1146 - "node_modules/@img/sharp-linux-riscv64": { 1147 - "version": "0.34.5", 1148 - "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", 1149 - "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", 1150 - "cpu": [ 1151 - "riscv64" 1152 - ], 1153 - "license": "Apache-2.0", 1154 - "optional": true, 1155 - "os": [ 1156 - "linux" 1157 - ], 1158 - "engines": { 1159 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1160 - }, 1161 - "funding": { 1162 - "url": "https://opencollective.com/libvips" 1163 - }, 1164 - "optionalDependencies": { 1165 - "@img/sharp-libvips-linux-riscv64": "1.2.4" 1166 - } 1167 - }, 1168 - "node_modules/@img/sharp-linux-s390x": { 1169 - "version": "0.34.5", 1170 - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", 1171 - "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", 1172 - "cpu": [ 1173 - "s390x" 1174 - ], 1175 - "license": "Apache-2.0", 1176 - "optional": true, 1177 - "os": [ 1178 - "linux" 1179 - ], 1180 - "engines": { 1181 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1182 - }, 1183 - "funding": { 1184 - "url": "https://opencollective.com/libvips" 1185 - }, 1186 - "optionalDependencies": { 1187 - "@img/sharp-libvips-linux-s390x": "1.2.4" 1188 - } 1189 - }, 1190 - "node_modules/@img/sharp-linux-x64": { 1191 - "version": "0.34.5", 1192 - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", 1193 - "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", 1194 - "cpu": [ 1195 - "x64" 1196 - ], 1197 - "license": "Apache-2.0", 1198 - "optional": true, 1199 - "os": [ 1200 - "linux" 1201 - ], 1202 - "engines": { 1203 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1204 - }, 1205 - "funding": { 1206 - "url": "https://opencollective.com/libvips" 1207 - }, 1208 - "optionalDependencies": { 1209 - "@img/sharp-libvips-linux-x64": "1.2.4" 1210 - } 1211 - }, 1212 - "node_modules/@img/sharp-linuxmusl-arm64": { 1213 - "version": "0.34.5", 1214 - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", 1215 - "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", 1216 - "cpu": [ 1217 - "arm64" 1218 - ], 1219 - "license": "Apache-2.0", 1220 - "optional": true, 1221 - "os": [ 1222 - "linux" 1223 - ], 1224 - "engines": { 1225 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1226 - }, 1227 - "funding": { 1228 - "url": "https://opencollective.com/libvips" 1229 - }, 1230 - "optionalDependencies": { 1231 - "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" 1232 - } 1233 - }, 1234 - "node_modules/@img/sharp-linuxmusl-x64": { 1235 - "version": "0.34.5", 1236 - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", 1237 - "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", 1238 - "cpu": [ 1239 - "x64" 1240 - ], 1241 - "license": "Apache-2.0", 1242 - "optional": true, 1243 - "os": [ 1244 - "linux" 1245 - ], 1246 - "engines": { 1247 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1248 - }, 1249 - "funding": { 1250 - "url": "https://opencollective.com/libvips" 1251 - }, 1252 - "optionalDependencies": { 1253 - "@img/sharp-libvips-linuxmusl-x64": "1.2.4" 1254 - } 1255 - }, 1256 - "node_modules/@img/sharp-wasm32": { 1257 - "version": "0.34.5", 1258 - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", 1259 - "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", 1260 - "cpu": [ 1261 - "wasm32" 1262 - ], 1263 - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", 1264 - "optional": true, 516 + "node_modules/@iconify-json/simple-icons": { 517 + "version": "1.2.74", 518 + "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.74.tgz", 519 + "integrity": "sha512-yqaohfY6jnYjTVpuTkaBQHrWbdUrQyWXhau0r/0EZiNWYXPX/P8WWwl1DoLH5CbvDjjcWQw5J0zADhgCUklOqA==", 520 + "license": "CC0-1.0", 1265 521 "dependencies": { 1266 - "@emnapi/runtime": "^1.7.0" 1267 - }, 1268 - "engines": { 1269 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1270 - }, 1271 - "funding": { 1272 - "url": "https://opencollective.com/libvips" 1273 - } 1274 - }, 1275 - "node_modules/@img/sharp-win32-arm64": { 1276 - "version": "0.34.5", 1277 - "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", 1278 - "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", 1279 - "cpu": [ 1280 - "arm64" 1281 - ], 1282 - "license": "Apache-2.0 AND LGPL-3.0-or-later", 1283 - "optional": true, 1284 - "os": [ 1285 - "win32" 1286 - ], 1287 - "engines": { 1288 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1289 - }, 1290 - "funding": { 1291 - "url": "https://opencollective.com/libvips" 1292 - } 1293 - }, 1294 - "node_modules/@img/sharp-win32-ia32": { 1295 - "version": "0.34.5", 1296 - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", 1297 - "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", 1298 - "cpu": [ 1299 - "ia32" 1300 - ], 1301 - "license": "Apache-2.0 AND LGPL-3.0-or-later", 1302 - "optional": true, 1303 - "os": [ 1304 - "win32" 1305 - ], 1306 - "engines": { 1307 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1308 - }, 1309 - "funding": { 1310 - "url": "https://opencollective.com/libvips" 522 + "@iconify/types": "*" 1311 523 } 1312 524 }, 1313 - "node_modules/@img/sharp-win32-x64": { 1314 - "version": "0.34.5", 1315 - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", 1316 - "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", 1317 - "cpu": [ 1318 - "x64" 1319 - ], 1320 - "license": "Apache-2.0 AND LGPL-3.0-or-later", 1321 - "optional": true, 1322 - "os": [ 1323 - "win32" 1324 - ], 1325 - "engines": { 1326 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1327 - }, 1328 - "funding": { 1329 - "url": "https://opencollective.com/libvips" 1330 - } 525 + "node_modules/@iconify/types": { 526 + "version": "2.0.0", 527 + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", 528 + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", 529 + "license": "MIT" 1331 530 }, 1332 531 "node_modules/@jridgewell/sourcemap-codec": { 1333 532 "version": "1.5.5", ··· 1335 534 "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 1336 535 "license": "MIT" 1337 536 }, 1338 - "node_modules/@mdx-js/mdx": { 1339 - "version": "3.1.1", 1340 - "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz", 1341 - "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==", 1342 - "license": "MIT", 1343 - "dependencies": { 1344 - "@types/estree": "^1.0.0", 1345 - "@types/estree-jsx": "^1.0.0", 1346 - "@types/hast": "^3.0.0", 1347 - "@types/mdx": "^2.0.0", 1348 - "acorn": "^8.0.0", 1349 - "collapse-white-space": "^2.0.0", 1350 - "devlop": "^1.0.0", 1351 - "estree-util-is-identifier-name": "^3.0.0", 1352 - "estree-util-scope": "^1.0.0", 1353 - "estree-walker": "^3.0.0", 1354 - "hast-util-to-jsx-runtime": "^2.0.0", 1355 - "markdown-extensions": "^2.0.0", 1356 - "recma-build-jsx": "^1.0.0", 1357 - "recma-jsx": "^1.0.0", 1358 - "recma-stringify": "^1.0.0", 1359 - "rehype-recma": "^1.0.0", 1360 - "remark-mdx": "^3.0.0", 1361 - "remark-parse": "^11.0.0", 1362 - "remark-rehype": "^11.0.0", 1363 - "source-map": "^0.7.0", 1364 - "unified": "^11.0.0", 1365 - "unist-util-position-from-estree": "^2.0.0", 1366 - "unist-util-stringify-position": "^4.0.0", 1367 - "unist-util-visit": "^5.0.0", 1368 - "vfile": "^6.0.0" 1369 - }, 1370 - "funding": { 1371 - "type": "opencollective", 1372 - "url": "https://opencollective.com/unified" 1373 - } 1374 - }, 1375 537 "node_modules/@napi-rs/wasm-runtime": { 1376 538 "version": "1.1.1", 1377 539 "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz", ··· 1388 550 "type": "github", 1389 551 "url": "https://github.com/sponsors/Brooooooklyn" 1390 552 } 1391 - }, 1392 - "node_modules/@oslojs/encoding": { 1393 - "version": "1.1.0", 1394 - "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz", 1395 - "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==", 1396 - "license": "MIT" 1397 553 }, 1398 554 "node_modules/@oxc-project/runtime": { 1399 555 "version": "0.115.0", ··· 2061 1217 "node": "^20.19.0 || >=22.12.0" 2062 1218 } 2063 1219 }, 2064 - "node_modules/@pagefind/darwin-arm64": { 2065 - "version": "1.4.0", 2066 - "resolved": "https://registry.npmjs.org/@pagefind/darwin-arm64/-/darwin-arm64-1.4.0.tgz", 2067 - "integrity": "sha512-2vMqkbv3lbx1Awea90gTaBsvpzgRs7MuSgKDxW0m9oV1GPZCZbZBJg/qL83GIUEN2BFlY46dtUZi54pwH+/pTQ==", 2068 - "cpu": [ 2069 - "arm64" 2070 - ], 2071 - "license": "MIT", 2072 - "optional": true, 2073 - "os": [ 2074 - "darwin" 2075 - ] 2076 - }, 2077 - "node_modules/@pagefind/darwin-x64": { 2078 - "version": "1.4.0", 2079 - "resolved": "https://registry.npmjs.org/@pagefind/darwin-x64/-/darwin-x64-1.4.0.tgz", 2080 - "integrity": "sha512-e7JPIS6L9/cJfow+/IAqknsGqEPjJnVXGjpGm25bnq+NPdoD3c/7fAwr1OXkG4Ocjx6ZGSCijXEV4ryMcH2E3A==", 2081 - "cpu": [ 2082 - "x64" 2083 - ], 2084 - "license": "MIT", 2085 - "optional": true, 2086 - "os": [ 2087 - "darwin" 2088 - ] 2089 - }, 2090 - "node_modules/@pagefind/default-ui": { 2091 - "version": "1.4.0", 2092 - "resolved": "https://registry.npmjs.org/@pagefind/default-ui/-/default-ui-1.4.0.tgz", 2093 - "integrity": "sha512-wie82VWn3cnGEdIjh4YwNESyS1G6vRHwL6cNjy9CFgNnWW/PGRjsLq300xjVH5sfPFK3iK36UxvIBymtQIEiSQ==", 2094 - "license": "MIT" 2095 - }, 2096 - "node_modules/@pagefind/freebsd-x64": { 2097 - "version": "1.4.0", 2098 - "resolved": "https://registry.npmjs.org/@pagefind/freebsd-x64/-/freebsd-x64-1.4.0.tgz", 2099 - "integrity": "sha512-WcJVypXSZ+9HpiqZjFXMUobfFfZZ6NzIYtkhQ9eOhZrQpeY5uQFqNWLCk7w9RkMUwBv1HAMDW3YJQl/8OqsV0Q==", 2100 - "cpu": [ 2101 - "x64" 2102 - ], 2103 - "license": "MIT", 2104 - "optional": true, 2105 - "os": [ 2106 - "freebsd" 2107 - ] 2108 - }, 2109 - "node_modules/@pagefind/linux-arm64": { 2110 - "version": "1.4.0", 2111 - "resolved": "https://registry.npmjs.org/@pagefind/linux-arm64/-/linux-arm64-1.4.0.tgz", 2112 - "integrity": "sha512-PIt8dkqt4W06KGmQjONw7EZbhDF+uXI7i0XtRLN1vjCUxM9vGPdtJc2mUyVPevjomrGz5M86M8bqTr6cgDp1Uw==", 2113 - "cpu": [ 2114 - "arm64" 2115 - ], 2116 - "license": "MIT", 2117 - "optional": true, 2118 - "os": [ 2119 - "linux" 2120 - ] 2121 - }, 2122 - "node_modules/@pagefind/linux-x64": { 2123 - "version": "1.4.0", 2124 - "resolved": "https://registry.npmjs.org/@pagefind/linux-x64/-/linux-x64-1.4.0.tgz", 2125 - "integrity": "sha512-z4oddcWwQ0UHrTHR8psLnVlz6USGJ/eOlDPTDYZ4cI8TK8PgwRUPQZp9D2iJPNIPcS6Qx/E4TebjuGJOyK8Mmg==", 2126 - "cpu": [ 2127 - "x64" 2128 - ], 2129 - "license": "MIT", 2130 - "optional": true, 2131 - "os": [ 2132 - "linux" 2133 - ] 2134 - }, 2135 - "node_modules/@pagefind/windows-x64": { 2136 - "version": "1.4.0", 2137 - "resolved": "https://registry.npmjs.org/@pagefind/windows-x64/-/windows-x64-1.4.0.tgz", 2138 - "integrity": "sha512-NkT+YAdgS2FPCn8mIA9bQhiBs+xmniMGq1LFPDhcFn0+2yIUEiIG06t7bsZlhdjknEQRTSdT7YitP6fC5qwP0g==", 2139 - "cpu": [ 2140 - "x64" 2141 - ], 2142 - "license": "MIT", 2143 - "optional": true, 2144 - "os": [ 2145 - "win32" 2146 - ] 2147 - }, 2148 1220 "node_modules/@resvg/resvg-js": { 2149 1221 "version": "2.6.2", 2150 1222 "resolved": "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.6.2.tgz", ··· 2622 1694 "dev": true, 2623 1695 "license": "MIT" 2624 1696 }, 2625 - "node_modules/@rollup/pluginutils": { 2626 - "version": "5.3.0", 2627 - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", 2628 - "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", 2629 - "license": "MIT", 2630 - "dependencies": { 2631 - "@types/estree": "^1.0.0", 2632 - "estree-walker": "^2.0.2", 2633 - "picomatch": "^4.0.2" 2634 - }, 2635 - "engines": { 2636 - "node": ">=14.0.0" 2637 - }, 2638 - "peerDependencies": { 2639 - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 2640 - }, 2641 - "peerDependenciesMeta": { 2642 - "rollup": { 2643 - "optional": true 2644 - } 2645 - } 2646 - }, 2647 - "node_modules/@rollup/pluginutils/node_modules/estree-walker": { 2648 - "version": "2.0.2", 2649 - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2650 - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2651 - "license": "MIT" 2652 - }, 2653 1697 "node_modules/@rollup/rollup-android-arm-eabi": { 2654 1698 "version": "4.59.0", 2655 1699 "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", ··· 2975 2019 "win32" 2976 2020 ] 2977 2021 }, 2978 - "node_modules/@shikijs/core": { 2979 - "version": "3.23.0", 2980 - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.23.0.tgz", 2981 - "integrity": "sha512-NSWQz0riNb67xthdm5br6lAkvpDJRTgB36fxlo37ZzM2yq0PQFFzbd8psqC2XMPgCzo1fW6cVi18+ArJ44wqgA==", 2022 + "node_modules/@shikijs/transformers": { 2023 + "version": "2.5.0", 2024 + "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-2.5.0.tgz", 2025 + "integrity": "sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==", 2982 2026 "license": "MIT", 2983 2027 "dependencies": { 2984 - "@shikijs/types": "3.23.0", 2985 - "@shikijs/vscode-textmate": "^10.0.2", 2986 - "@types/hast": "^3.0.4", 2987 - "hast-util-to-html": "^9.0.5" 2028 + "@shikijs/core": "2.5.0", 2029 + "@shikijs/types": "2.5.0" 2988 2030 } 2989 2031 }, 2990 - "node_modules/@shikijs/engine-javascript": { 2991 - "version": "3.23.0", 2992 - "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.23.0.tgz", 2993 - "integrity": "sha512-aHt9eiGFobmWR5uqJUViySI1bHMqrAgamWE1TYSUoftkAeCCAiGawPMwM+VCadylQtF4V3VNOZ5LmfItH5f3yA==", 2032 + "node_modules/@shikijs/transformers/node_modules/@shikijs/core": { 2033 + "version": "2.5.0", 2034 + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-2.5.0.tgz", 2035 + "integrity": "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==", 2994 2036 "license": "MIT", 2995 2037 "dependencies": { 2996 - "@shikijs/types": "3.23.0", 2038 + "@shikijs/engine-javascript": "2.5.0", 2039 + "@shikijs/engine-oniguruma": "2.5.0", 2040 + "@shikijs/types": "2.5.0", 2997 2041 "@shikijs/vscode-textmate": "^10.0.2", 2998 - "oniguruma-to-es": "^4.3.4" 2042 + "@types/hast": "^3.0.4", 2043 + "hast-util-to-html": "^9.0.4" 2999 2044 } 3000 2045 }, 3001 - "node_modules/@shikijs/engine-oniguruma": { 3002 - "version": "3.23.0", 3003 - "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.23.0.tgz", 3004 - "integrity": "sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==", 2046 + "node_modules/@shikijs/transformers/node_modules/@shikijs/engine-javascript": { 2047 + "version": "2.5.0", 2048 + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz", 2049 + "integrity": "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==", 3005 2050 "license": "MIT", 3006 2051 "dependencies": { 3007 - "@shikijs/types": "3.23.0", 3008 - "@shikijs/vscode-textmate": "^10.0.2" 2052 + "@shikijs/types": "2.5.0", 2053 + "@shikijs/vscode-textmate": "^10.0.2", 2054 + "oniguruma-to-es": "^3.1.0" 3009 2055 } 3010 2056 }, 3011 - "node_modules/@shikijs/langs": { 3012 - "version": "3.23.0", 3013 - "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.23.0.tgz", 3014 - "integrity": "sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg==", 2057 + "node_modules/@shikijs/transformers/node_modules/@shikijs/engine-oniguruma": { 2058 + "version": "2.5.0", 2059 + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz", 2060 + "integrity": "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==", 3015 2061 "license": "MIT", 3016 2062 "dependencies": { 3017 - "@shikijs/types": "3.23.0" 2063 + "@shikijs/types": "2.5.0", 2064 + "@shikijs/vscode-textmate": "^10.0.2" 3018 2065 } 3019 2066 }, 3020 - "node_modules/@shikijs/themes": { 3021 - "version": "3.23.0", 3022 - "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.23.0.tgz", 3023 - "integrity": "sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA==", 2067 + "node_modules/@shikijs/transformers/node_modules/@shikijs/types": { 2068 + "version": "2.5.0", 2069 + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-2.5.0.tgz", 2070 + "integrity": "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==", 3024 2071 "license": "MIT", 3025 2072 "dependencies": { 3026 - "@shikijs/types": "3.23.0" 2073 + "@shikijs/vscode-textmate": "^10.0.2", 2074 + "@types/hast": "^3.0.4" 3027 2075 } 3028 2076 }, 3029 - "node_modules/@shikijs/types": { 3030 - "version": "3.23.0", 3031 - "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.23.0.tgz", 3032 - "integrity": "sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==", 2077 + "node_modules/@shikijs/transformers/node_modules/emoji-regex-xs": { 2078 + "version": "1.0.0", 2079 + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", 2080 + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", 2081 + "license": "MIT" 2082 + }, 2083 + "node_modules/@shikijs/transformers/node_modules/oniguruma-to-es": { 2084 + "version": "3.1.1", 2085 + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz", 2086 + "integrity": "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==", 3033 2087 "license": "MIT", 3034 2088 "dependencies": { 3035 - "@shikijs/vscode-textmate": "^10.0.2", 3036 - "@types/hast": "^3.0.4" 2089 + "emoji-regex-xs": "^1.0.0", 2090 + "regex": "^6.0.1", 2091 + "regex-recursion": "^6.0.2" 3037 2092 } 3038 2093 }, 3039 2094 "node_modules/@shikijs/vscode-textmate": { ··· 3095 2150 "assertion-error": "^2.0.1" 3096 2151 } 3097 2152 }, 3098 - "node_modules/@types/debug": { 3099 - "version": "4.1.12", 3100 - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", 3101 - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", 3102 - "license": "MIT", 3103 - "dependencies": { 3104 - "@types/ms": "*" 3105 - } 3106 - }, 3107 2153 "node_modules/@types/deep-eql": { 3108 2154 "version": "4.0.2", 3109 2155 "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", ··· 3116 2162 "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 3117 2163 "license": "MIT" 3118 2164 }, 3119 - "node_modules/@types/estree-jsx": { 3120 - "version": "1.0.5", 3121 - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", 3122 - "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", 3123 - "license": "MIT", 3124 - "dependencies": { 3125 - "@types/estree": "*" 3126 - } 3127 - }, 3128 2165 "node_modules/@types/hast": { 3129 2166 "version": "3.0.4", 3130 2167 "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", ··· 3134 2171 "@types/unist": "*" 3135 2172 } 3136 2173 }, 3137 - "node_modules/@types/js-yaml": { 3138 - "version": "4.0.9", 3139 - "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", 3140 - "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", 2174 + "node_modules/@types/linkify-it": { 2175 + "version": "5.0.0", 2176 + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", 2177 + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", 3141 2178 "license": "MIT" 3142 2179 }, 2180 + "node_modules/@types/markdown-it": { 2181 + "version": "14.1.2", 2182 + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", 2183 + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", 2184 + "license": "MIT", 2185 + "dependencies": { 2186 + "@types/linkify-it": "^5", 2187 + "@types/mdurl": "^2" 2188 + } 2189 + }, 3143 2190 "node_modules/@types/mdast": { 3144 2191 "version": "4.0.4", 3145 2192 "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", ··· 3149 2196 "@types/unist": "*" 3150 2197 } 3151 2198 }, 3152 - "node_modules/@types/mdx": { 3153 - "version": "2.0.13", 3154 - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", 3155 - "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", 2199 + "node_modules/@types/mdurl": { 2200 + "version": "2.0.0", 2201 + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", 2202 + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", 3156 2203 "license": "MIT" 3157 2204 }, 3158 - "node_modules/@types/ms": { 3159 - "version": "2.1.0", 3160 - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", 3161 - "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", 3162 - "license": "MIT" 3163 - }, 3164 - "node_modules/@types/nlcst": { 3165 - "version": "2.0.3", 3166 - "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz", 3167 - "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==", 3168 - "license": "MIT", 3169 - "dependencies": { 3170 - "@types/unist": "*" 3171 - } 3172 - }, 3173 2205 "node_modules/@types/node": { 3174 2206 "version": "25.4.0", 3175 2207 "resolved": "https://registry.npmjs.org/@types/node/-/node-25.4.0.tgz", 3176 2208 "integrity": "sha512-9wLpoeWuBlcbBpOY3XmzSTG3oscB6xjBEEtn+pYXTfhyXhIxC5FsBer2KTopBlvKEiW9l13po9fq+SJY/5lkhw==", 2209 + "devOptional": true, 3177 2210 "license": "MIT", 3178 2211 "dependencies": { 3179 2212 "undici-types": "~7.18.0" ··· 3189 2222 "csstype": "^3.2.2" 3190 2223 } 3191 2224 }, 3192 - "node_modules/@types/sax": { 3193 - "version": "1.2.7", 3194 - "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", 3195 - "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", 3196 - "license": "MIT", 3197 - "dependencies": { 3198 - "@types/node": "*" 3199 - } 3200 - }, 3201 2225 "node_modules/@types/unist": { 3202 2226 "version": "3.0.3", 3203 2227 "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", 3204 2228 "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", 3205 2229 "license": "MIT" 3206 2230 }, 2231 + "node_modules/@types/web-bluetooth": { 2232 + "version": "0.0.21", 2233 + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", 2234 + "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", 2235 + "license": "MIT" 2236 + }, 3207 2237 "node_modules/@ungap/structured-clone": { 3208 2238 "version": "1.3.0", 3209 2239 "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 3210 2240 "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 3211 2241 "license": "ISC" 3212 2242 }, 2243 + "node_modules/@vitejs/plugin-vue": { 2244 + "version": "5.2.4", 2245 + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", 2246 + "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", 2247 + "license": "MIT", 2248 + "engines": { 2249 + "node": "^18.0.0 || >=20.0.0" 2250 + }, 2251 + "peerDependencies": { 2252 + "vite": "^5.0.0 || ^6.0.0", 2253 + "vue": "^3.2.25" 2254 + } 2255 + }, 3213 2256 "node_modules/@vitest/expect": { 3214 2257 "version": "4.0.18", 3215 2258 "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.0.18.tgz", ··· 3314 2357 "url": "https://opencollective.com/vitest" 3315 2358 } 3316 2359 }, 3317 - "node_modules/acorn": { 3318 - "version": "8.16.0", 3319 - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", 3320 - "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", 2360 + "node_modules/@vue/compiler-core": { 2361 + "version": "3.5.30", 2362 + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.30.tgz", 2363 + "integrity": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==", 3321 2364 "license": "MIT", 3322 - "bin": { 3323 - "acorn": "bin/acorn" 3324 - }, 2365 + "dependencies": { 2366 + "@babel/parser": "^7.29.0", 2367 + "@vue/shared": "3.5.30", 2368 + "entities": "^7.0.1", 2369 + "estree-walker": "^2.0.2", 2370 + "source-map-js": "^1.2.1" 2371 + } 2372 + }, 2373 + "node_modules/@vue/compiler-core/node_modules/entities": { 2374 + "version": "7.0.1", 2375 + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", 2376 + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", 2377 + "license": "BSD-2-Clause", 3325 2378 "engines": { 3326 - "node": ">=0.4.0" 2379 + "node": ">=0.12" 2380 + }, 2381 + "funding": { 2382 + "url": "https://github.com/fb55/entities?sponsor=1" 3327 2383 } 3328 2384 }, 3329 - "node_modules/acorn-jsx": { 3330 - "version": "5.3.2", 3331 - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 3332 - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2385 + "node_modules/@vue/compiler-core/node_modules/estree-walker": { 2386 + "version": "2.0.2", 2387 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2388 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2389 + "license": "MIT" 2390 + }, 2391 + "node_modules/@vue/compiler-dom": { 2392 + "version": "3.5.30", 2393 + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.30.tgz", 2394 + "integrity": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==", 3333 2395 "license": "MIT", 3334 - "peerDependencies": { 3335 - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 3336 - } 3337 - }, 3338 - "node_modules/ansi-align": { 3339 - "version": "3.0.1", 3340 - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", 3341 - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", 3342 - "license": "ISC", 3343 2396 "dependencies": { 3344 - "string-width": "^4.1.0" 2397 + "@vue/compiler-core": "3.5.30", 2398 + "@vue/shared": "3.5.30" 3345 2399 } 3346 2400 }, 3347 - "node_modules/ansi-align/node_modules/ansi-regex": { 3348 - "version": "5.0.1", 3349 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3350 - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2401 + "node_modules/@vue/compiler-sfc": { 2402 + "version": "3.5.30", 2403 + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.30.tgz", 2404 + "integrity": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==", 3351 2405 "license": "MIT", 3352 - "engines": { 3353 - "node": ">=8" 2406 + "dependencies": { 2407 + "@babel/parser": "^7.29.0", 2408 + "@vue/compiler-core": "3.5.30", 2409 + "@vue/compiler-dom": "3.5.30", 2410 + "@vue/compiler-ssr": "3.5.30", 2411 + "@vue/shared": "3.5.30", 2412 + "estree-walker": "^2.0.2", 2413 + "magic-string": "^0.30.21", 2414 + "postcss": "^8.5.8", 2415 + "source-map-js": "^1.2.1" 3354 2416 } 3355 2417 }, 3356 - "node_modules/ansi-align/node_modules/emoji-regex": { 3357 - "version": "8.0.0", 3358 - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3359 - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2418 + "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { 2419 + "version": "2.0.2", 2420 + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2421 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 3360 2422 "license": "MIT" 3361 2423 }, 3362 - "node_modules/ansi-align/node_modules/string-width": { 3363 - "version": "4.2.3", 3364 - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3365 - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2424 + "node_modules/@vue/compiler-ssr": { 2425 + "version": "3.5.30", 2426 + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.30.tgz", 2427 + "integrity": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==", 3366 2428 "license": "MIT", 3367 2429 "dependencies": { 3368 - "emoji-regex": "^8.0.0", 3369 - "is-fullwidth-code-point": "^3.0.0", 3370 - "strip-ansi": "^6.0.1" 3371 - }, 3372 - "engines": { 3373 - "node": ">=8" 2430 + "@vue/compiler-dom": "3.5.30", 2431 + "@vue/shared": "3.5.30" 3374 2432 } 3375 2433 }, 3376 - "node_modules/ansi-align/node_modules/strip-ansi": { 3377 - "version": "6.0.1", 3378 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3379 - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2434 + "node_modules/@vue/devtools-api": { 2435 + "version": "7.7.9", 2436 + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.9.tgz", 2437 + "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==", 3380 2438 "license": "MIT", 3381 2439 "dependencies": { 3382 - "ansi-regex": "^5.0.1" 3383 - }, 3384 - "engines": { 3385 - "node": ">=8" 2440 + "@vue/devtools-kit": "^7.7.9" 3386 2441 } 3387 2442 }, 3388 - "node_modules/ansi-regex": { 3389 - "version": "6.2.2", 3390 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", 3391 - "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", 2443 + "node_modules/@vue/devtools-kit": { 2444 + "version": "7.7.9", 2445 + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz", 2446 + "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==", 3392 2447 "license": "MIT", 3393 - "engines": { 3394 - "node": ">=12" 3395 - }, 3396 - "funding": { 3397 - "url": "https://github.com/chalk/ansi-regex?sponsor=1" 2448 + "dependencies": { 2449 + "@vue/devtools-shared": "^7.7.9", 2450 + "birpc": "^2.3.0", 2451 + "hookable": "^5.5.3", 2452 + "mitt": "^3.0.1", 2453 + "perfect-debounce": "^1.0.0", 2454 + "speakingurl": "^14.0.1", 2455 + "superjson": "^2.2.2" 3398 2456 } 3399 2457 }, 3400 - "node_modules/ansi-styles": { 3401 - "version": "6.2.3", 3402 - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", 3403 - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", 2458 + "node_modules/@vue/devtools-shared": { 2459 + "version": "7.7.9", 2460 + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz", 2461 + "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==", 3404 2462 "license": "MIT", 3405 - "engines": { 3406 - "node": ">=12" 3407 - }, 3408 - "funding": { 3409 - "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3410 - } 3411 - }, 3412 - "node_modules/anymatch": { 3413 - "version": "3.1.3", 3414 - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 3415 - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 3416 - "license": "ISC", 3417 2463 "dependencies": { 3418 - "normalize-path": "^3.0.0", 3419 - "picomatch": "^2.0.4" 3420 - }, 3421 - "engines": { 3422 - "node": ">= 8" 2464 + "rfdc": "^1.4.1" 3423 2465 } 3424 2466 }, 3425 - "node_modules/anymatch/node_modules/picomatch": { 3426 - "version": "2.3.1", 3427 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3428 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2467 + "node_modules/@vue/reactivity": { 2468 + "version": "3.5.30", 2469 + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.30.tgz", 2470 + "integrity": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==", 3429 2471 "license": "MIT", 3430 - "engines": { 3431 - "node": ">=8.6" 3432 - }, 3433 - "funding": { 3434 - "url": "https://github.com/sponsors/jonschlinkert" 2472 + "dependencies": { 2473 + "@vue/shared": "3.5.30" 3435 2474 } 3436 2475 }, 3437 - "node_modules/arg": { 3438 - "version": "5.0.2", 3439 - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 3440 - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 3441 - "license": "MIT" 3442 - }, 3443 - "node_modules/argparse": { 3444 - "version": "2.0.1", 3445 - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 3446 - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 3447 - "license": "Python-2.0" 3448 - }, 3449 - "node_modules/aria-query": { 3450 - "version": "5.3.2", 3451 - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 3452 - "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 3453 - "license": "Apache-2.0", 3454 - "engines": { 3455 - "node": ">= 0.4" 3456 - } 3457 - }, 3458 - "node_modules/array-iterate": { 3459 - "version": "2.0.1", 3460 - "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", 3461 - "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", 2476 + "node_modules/@vue/runtime-core": { 2477 + "version": "3.5.30", 2478 + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.30.tgz", 2479 + "integrity": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==", 3462 2480 "license": "MIT", 3463 - "funding": { 3464 - "type": "github", 3465 - "url": "https://github.com/sponsors/wooorm" 2481 + "dependencies": { 2482 + "@vue/reactivity": "3.5.30", 2483 + "@vue/shared": "3.5.30" 3466 2484 } 3467 2485 }, 3468 - "node_modules/assertion-error": { 3469 - "version": "2.0.1", 3470 - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", 3471 - "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", 2486 + "node_modules/@vue/runtime-dom": { 2487 + "version": "3.5.30", 2488 + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.30.tgz", 2489 + "integrity": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==", 3472 2490 "license": "MIT", 3473 - "engines": { 3474 - "node": ">=12" 2491 + "dependencies": { 2492 + "@vue/reactivity": "3.5.30", 2493 + "@vue/runtime-core": "3.5.30", 2494 + "@vue/shared": "3.5.30", 2495 + "csstype": "^3.2.3" 3475 2496 } 3476 2497 }, 3477 - "node_modules/astring": { 3478 - "version": "1.9.0", 3479 - "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", 3480 - "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", 2498 + "node_modules/@vue/server-renderer": { 2499 + "version": "3.5.30", 2500 + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.30.tgz", 2501 + "integrity": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==", 3481 2502 "license": "MIT", 3482 - "bin": { 3483 - "astring": "bin/astring" 2503 + "dependencies": { 2504 + "@vue/compiler-ssr": "3.5.30", 2505 + "@vue/shared": "3.5.30" 2506 + }, 2507 + "peerDependencies": { 2508 + "vue": "3.5.30" 3484 2509 } 3485 2510 }, 3486 - "node_modules/astro": { 3487 - "version": "5.18.1", 3488 - "resolved": "https://registry.npmjs.org/astro/-/astro-5.18.1.tgz", 3489 - "integrity": "sha512-m4VWilWZ+Xt6NPoYzC4CgGZim/zQUO7WFL0RHCH0AiEavF1153iC3+me2atDvXpf/yX4PyGUeD8wZLq1cirT3g==", 2511 + "node_modules/@vue/shared": { 2512 + "version": "3.5.30", 2513 + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.30.tgz", 2514 + "integrity": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==", 2515 + "license": "MIT" 2516 + }, 2517 + "node_modules/@vueuse/core": { 2518 + "version": "12.8.2", 2519 + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-12.8.2.tgz", 2520 + "integrity": "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==", 3490 2521 "license": "MIT", 3491 2522 "dependencies": { 3492 - "@astrojs/compiler": "^2.13.0", 3493 - "@astrojs/internal-helpers": "0.7.6", 3494 - "@astrojs/markdown-remark": "6.3.11", 3495 - "@astrojs/telemetry": "3.3.0", 3496 - "@capsizecss/unpack": "^4.0.0", 3497 - "@oslojs/encoding": "^1.1.0", 3498 - "@rollup/pluginutils": "^5.3.0", 3499 - "acorn": "^8.15.0", 3500 - "aria-query": "^5.3.2", 3501 - "axobject-query": "^4.1.0", 3502 - "boxen": "8.0.1", 3503 - "ci-info": "^4.3.1", 3504 - "clsx": "^2.1.1", 3505 - "common-ancestor-path": "^1.0.1", 3506 - "cookie": "^1.1.1", 3507 - "cssesc": "^3.0.0", 3508 - "debug": "^4.4.3", 3509 - "deterministic-object-hash": "^2.0.2", 3510 - "devalue": "^5.6.2", 3511 - "diff": "^8.0.3", 3512 - "dlv": "^1.1.3", 3513 - "dset": "^3.1.4", 3514 - "es-module-lexer": "^1.7.0", 3515 - "esbuild": "^0.27.3", 3516 - "estree-walker": "^3.0.3", 3517 - "flattie": "^1.1.1", 3518 - "fontace": "~0.4.0", 3519 - "github-slugger": "^2.0.0", 3520 - "html-escaper": "3.0.3", 3521 - "http-cache-semantics": "^4.2.0", 3522 - "import-meta-resolve": "^4.2.0", 3523 - "js-yaml": "^4.1.1", 3524 - "magic-string": "^0.30.21", 3525 - "magicast": "^0.5.1", 3526 - "mrmime": "^2.0.1", 3527 - "neotraverse": "^0.6.18", 3528 - "p-limit": "^6.2.0", 3529 - "p-queue": "^8.1.1", 3530 - "package-manager-detector": "^1.6.0", 3531 - "piccolore": "^0.1.3", 3532 - "picomatch": "^4.0.3", 3533 - "prompts": "^2.4.2", 3534 - "rehype": "^13.0.2", 3535 - "semver": "^7.7.3", 3536 - "shiki": "^3.21.0", 3537 - "smol-toml": "^1.6.0", 3538 - "svgo": "^4.0.0", 3539 - "tinyexec": "^1.0.2", 3540 - "tinyglobby": "^0.2.15", 3541 - "tsconfck": "^3.1.6", 3542 - "ultrahtml": "^1.6.0", 3543 - "unifont": "~0.7.3", 3544 - "unist-util-visit": "^5.0.0", 3545 - "unstorage": "^1.17.4", 3546 - "vfile": "^6.0.3", 3547 - "vite": "^6.4.1", 3548 - "vitefu": "^1.1.1", 3549 - "xxhash-wasm": "^1.1.0", 3550 - "yargs-parser": "^21.1.1", 3551 - "yocto-spinner": "^0.2.3", 3552 - "zod": "^3.25.76", 3553 - "zod-to-json-schema": "^3.25.1", 3554 - "zod-to-ts": "^1.2.0" 3555 - }, 3556 - "bin": { 3557 - "astro": "astro.js" 3558 - }, 3559 - "engines": { 3560 - "node": "18.20.8 || ^20.3.0 || >=22.0.0", 3561 - "npm": ">=9.6.5", 3562 - "pnpm": ">=7.1.0" 2523 + "@types/web-bluetooth": "^0.0.21", 2524 + "@vueuse/metadata": "12.8.2", 2525 + "@vueuse/shared": "12.8.2", 2526 + "vue": "^3.5.13" 3563 2527 }, 3564 2528 "funding": { 3565 - "type": "opencollective", 3566 - "url": "https://opencollective.com/astrodotbuild" 3567 - }, 3568 - "optionalDependencies": { 3569 - "sharp": "^0.34.0" 2529 + "url": "https://github.com/sponsors/antfu" 3570 2530 } 3571 2531 }, 3572 - "node_modules/astro-expressive-code": { 3573 - "version": "0.41.7", 3574 - "resolved": "https://registry.npmjs.org/astro-expressive-code/-/astro-expressive-code-0.41.7.tgz", 3575 - "integrity": "sha512-hUpogGc6DdAd+I7pPXsctyYPRBJDK7Q7d06s4cyP0Vz3OcbziP3FNzN0jZci1BpCvLn9675DvS7B9ctKKX64JQ==", 2532 + "node_modules/@vueuse/integrations": { 2533 + "version": "12.8.2", 2534 + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-12.8.2.tgz", 2535 + "integrity": "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==", 3576 2536 "license": "MIT", 3577 2537 "dependencies": { 3578 - "rehype-expressive-code": "^0.41.7" 2538 + "@vueuse/core": "12.8.2", 2539 + "@vueuse/shared": "12.8.2", 2540 + "vue": "^3.5.13" 2541 + }, 2542 + "funding": { 2543 + "url": "https://github.com/sponsors/antfu" 3579 2544 }, 3580 2545 "peerDependencies": { 3581 - "astro": "^4.0.0-beta || ^5.0.0-beta || ^3.3.0 || ^6.0.0-beta" 2546 + "async-validator": "^4", 2547 + "axios": "^1", 2548 + "change-case": "^5", 2549 + "drauu": "^0.4", 2550 + "focus-trap": "^7", 2551 + "fuse.js": "^7", 2552 + "idb-keyval": "^6", 2553 + "jwt-decode": "^4", 2554 + "nprogress": "^0.2", 2555 + "qrcode": "^1.5", 2556 + "sortablejs": "^1", 2557 + "universal-cookie": "^7" 2558 + }, 2559 + "peerDependenciesMeta": { 2560 + "async-validator": { 2561 + "optional": true 2562 + }, 2563 + "axios": { 2564 + "optional": true 2565 + }, 2566 + "change-case": { 2567 + "optional": true 2568 + }, 2569 + "drauu": { 2570 + "optional": true 2571 + }, 2572 + "focus-trap": { 2573 + "optional": true 2574 + }, 2575 + "fuse.js": { 2576 + "optional": true 2577 + }, 2578 + "idb-keyval": { 2579 + "optional": true 2580 + }, 2581 + "jwt-decode": { 2582 + "optional": true 2583 + }, 2584 + "nprogress": { 2585 + "optional": true 2586 + }, 2587 + "qrcode": { 2588 + "optional": true 2589 + }, 2590 + "sortablejs": { 2591 + "optional": true 2592 + }, 2593 + "universal-cookie": { 2594 + "optional": true 2595 + } 3582 2596 } 3583 2597 }, 3584 - "node_modules/astro/node_modules/zod": { 3585 - "version": "3.25.76", 3586 - "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", 3587 - "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", 2598 + "node_modules/@vueuse/metadata": { 2599 + "version": "12.8.2", 2600 + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.8.2.tgz", 2601 + "integrity": "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==", 3588 2602 "license": "MIT", 3589 2603 "funding": { 3590 - "url": "https://github.com/sponsors/colinhacks" 2604 + "url": "https://github.com/sponsors/antfu" 3591 2605 } 3592 2606 }, 3593 - "node_modules/astro/node_modules/zod-to-ts": { 3594 - "version": "1.2.0", 3595 - "resolved": "https://registry.npmjs.org/zod-to-ts/-/zod-to-ts-1.2.0.tgz", 3596 - "integrity": "sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==", 3597 - "peerDependencies": { 3598 - "typescript": "^4.9.4 || ^5.0.2", 3599 - "zod": "^3" 2607 + "node_modules/@vueuse/shared": { 2608 + "version": "12.8.2", 2609 + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-12.8.2.tgz", 2610 + "integrity": "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==", 2611 + "license": "MIT", 2612 + "dependencies": { 2613 + "vue": "^3.5.13" 2614 + }, 2615 + "funding": { 2616 + "url": "https://github.com/sponsors/antfu" 3600 2617 } 3601 2618 }, 3602 - "node_modules/axobject-query": { 3603 - "version": "4.1.0", 3604 - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 3605 - "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 3606 - "license": "Apache-2.0", 2619 + "node_modules/algoliasearch": { 2620 + "version": "5.49.2", 2621 + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.49.2.tgz", 2622 + "integrity": "sha512-1K0wtDaRONwfhL4h8bbJ9qTjmY6rhGgRvvagXkMBsAOMNr+3Q2SffHECh9DIuNVrMA1JwA0zCwhyepgBZVakng==", 2623 + "license": "MIT", 2624 + "dependencies": { 2625 + "@algolia/abtesting": "1.15.2", 2626 + "@algolia/client-abtesting": "5.49.2", 2627 + "@algolia/client-analytics": "5.49.2", 2628 + "@algolia/client-common": "5.49.2", 2629 + "@algolia/client-insights": "5.49.2", 2630 + "@algolia/client-personalization": "5.49.2", 2631 + "@algolia/client-query-suggestions": "5.49.2", 2632 + "@algolia/client-search": "5.49.2", 2633 + "@algolia/ingestion": "1.49.2", 2634 + "@algolia/monitoring": "1.49.2", 2635 + "@algolia/recommend": "5.49.2", 2636 + "@algolia/requester-browser-xhr": "5.49.2", 2637 + "@algolia/requester-fetch": "5.49.2", 2638 + "@algolia/requester-node-http": "5.49.2" 2639 + }, 3607 2640 "engines": { 3608 - "node": ">= 0.4" 2641 + "node": ">= 14.0.0" 3609 2642 } 3610 2643 }, 3611 - "node_modules/bail": { 3612 - "version": "2.0.2", 3613 - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", 3614 - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", 2644 + "node_modules/assertion-error": { 2645 + "version": "2.0.1", 2646 + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", 2647 + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", 3615 2648 "license": "MIT", 3616 - "funding": { 3617 - "type": "github", 3618 - "url": "https://github.com/sponsors/wooorm" 2649 + "engines": { 2650 + "node": ">=12" 3619 2651 } 3620 - }, 3621 - "node_modules/base-64": { 3622 - "version": "1.0.0", 3623 - "resolved": "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz", 3624 - "integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==", 3625 - "license": "MIT" 3626 2652 }, 3627 2653 "node_modules/base64-js": { 3628 2654 "version": "0.0.8", ··· 3633 2659 "node": ">= 0.4" 3634 2660 } 3635 2661 }, 3636 - "node_modules/bcp-47": { 3637 - "version": "2.1.0", 3638 - "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.0.tgz", 3639 - "integrity": "sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==", 3640 - "license": "MIT", 3641 - "dependencies": { 3642 - "is-alphabetical": "^2.0.0", 3643 - "is-alphanumerical": "^2.0.0", 3644 - "is-decimal": "^2.0.0" 3645 - }, 3646 - "funding": { 3647 - "type": "github", 3648 - "url": "https://github.com/sponsors/wooorm" 3649 - } 3650 - }, 3651 - "node_modules/bcp-47-match": { 3652 - "version": "2.0.3", 3653 - "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", 3654 - "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", 3655 - "license": "MIT", 3656 - "funding": { 3657 - "type": "github", 3658 - "url": "https://github.com/sponsors/wooorm" 3659 - } 3660 - }, 3661 2662 "node_modules/better-sqlite3": { 3662 2663 "version": "12.8.0", 3663 2664 "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.8.0.tgz", ··· 3681 2682 "file-uri-to-path": "1.0.0" 3682 2683 } 3683 2684 }, 2685 + "node_modules/birpc": { 2686 + "version": "2.9.0", 2687 + "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz", 2688 + "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==", 2689 + "license": "MIT", 2690 + "funding": { 2691 + "url": "https://github.com/sponsors/antfu" 2692 + } 2693 + }, 3684 2694 "node_modules/bl": { 3685 2695 "version": "4.1.0", 3686 2696 "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", ··· 3692 2702 "readable-stream": "^3.4.0" 3693 2703 } 3694 2704 }, 3695 - "node_modules/boolbase": { 3696 - "version": "1.0.0", 3697 - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 3698 - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 3699 - "license": "ISC" 3700 - }, 3701 - "node_modules/boxen": { 3702 - "version": "8.0.1", 3703 - "resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz", 3704 - "integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==", 3705 - "license": "MIT", 3706 - "dependencies": { 3707 - "ansi-align": "^3.0.1", 3708 - "camelcase": "^8.0.0", 3709 - "chalk": "^5.3.0", 3710 - "cli-boxes": "^3.0.0", 3711 - "string-width": "^7.2.0", 3712 - "type-fest": "^4.21.0", 3713 - "widest-line": "^5.0.0", 3714 - "wrap-ansi": "^9.0.0" 3715 - }, 3716 - "engines": { 3717 - "node": ">=18" 3718 - }, 3719 - "funding": { 3720 - "url": "https://github.com/sponsors/sindresorhus" 3721 - } 3722 - }, 3723 2705 "node_modules/buffer": { 3724 2706 "version": "5.7.1", 3725 2707 "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", ··· 3763 2745 } 3764 2746 ], 3765 2747 "license": "MIT" 3766 - }, 3767 - "node_modules/camelcase": { 3768 - "version": "8.0.0", 3769 - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz", 3770 - "integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==", 3771 - "license": "MIT", 3772 - "engines": { 3773 - "node": ">=16" 3774 - }, 3775 - "funding": { 3776 - "url": "https://github.com/sponsors/sindresorhus" 3777 - } 3778 2748 }, 3779 2749 "node_modules/camelize": { 3780 2750 "version": "1.0.1", ··· 3804 2774 "node": ">=18" 3805 2775 } 3806 2776 }, 3807 - "node_modules/chalk": { 3808 - "version": "5.6.2", 3809 - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz", 3810 - "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", 3811 - "license": "MIT", 3812 - "engines": { 3813 - "node": "^12.17.0 || ^14.13 || >=16.0.0" 3814 - }, 3815 - "funding": { 3816 - "url": "https://github.com/chalk/chalk?sponsor=1" 3817 - } 3818 - }, 3819 - "node_modules/character-entities": { 3820 - "version": "2.0.2", 3821 - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", 3822 - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", 3823 - "license": "MIT", 3824 - "funding": { 3825 - "type": "github", 3826 - "url": "https://github.com/sponsors/wooorm" 3827 - } 3828 - }, 3829 2777 "node_modules/character-entities-html4": { 3830 2778 "version": "2.1.0", 3831 2779 "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", ··· 3846 2794 "url": "https://github.com/sponsors/wooorm" 3847 2795 } 3848 2796 }, 3849 - "node_modules/character-reference-invalid": { 3850 - "version": "2.0.1", 3851 - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", 3852 - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", 3853 - "license": "MIT", 3854 - "funding": { 3855 - "type": "github", 3856 - "url": "https://github.com/sponsors/wooorm" 3857 - } 3858 - }, 3859 - "node_modules/chokidar": { 3860 - "version": "5.0.0", 3861 - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz", 3862 - "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", 3863 - "license": "MIT", 3864 - "dependencies": { 3865 - "readdirp": "^5.0.0" 3866 - }, 3867 - "engines": { 3868 - "node": ">= 20.19.0" 3869 - }, 3870 - "funding": { 3871 - "url": "https://paulmillr.com/funding/" 3872 - } 3873 - }, 3874 2797 "node_modules/chownr": { 3875 2798 "version": "1.1.4", 3876 2799 "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", 3877 2800 "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", 3878 2801 "license": "ISC" 3879 2802 }, 3880 - "node_modules/ci-info": { 3881 - "version": "4.4.0", 3882 - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", 3883 - "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", 3884 - "funding": [ 3885 - { 3886 - "type": "github", 3887 - "url": "https://github.com/sponsors/sibiraj-s" 3888 - } 3889 - ], 3890 - "license": "MIT", 3891 - "engines": { 3892 - "node": ">=8" 3893 - } 3894 - }, 3895 - "node_modules/cli-boxes": { 3896 - "version": "3.0.0", 3897 - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", 3898 - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", 3899 - "license": "MIT", 3900 - "engines": { 3901 - "node": ">=10" 3902 - }, 3903 - "funding": { 3904 - "url": "https://github.com/sponsors/sindresorhus" 3905 - } 3906 - }, 3907 - "node_modules/clsx": { 3908 - "version": "2.1.1", 3909 - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 3910 - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 3911 - "license": "MIT", 3912 - "engines": { 3913 - "node": ">=6" 3914 - } 3915 - }, 3916 - "node_modules/collapse-white-space": { 3917 - "version": "2.1.0", 3918 - "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", 3919 - "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", 3920 - "license": "MIT", 3921 - "funding": { 3922 - "type": "github", 3923 - "url": "https://github.com/sponsors/wooorm" 3924 - } 3925 - }, 3926 2803 "node_modules/color-name": { 3927 2804 "version": "1.1.4", 3928 2805 "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", ··· 3939 2816 "url": "https://github.com/sponsors/wooorm" 3940 2817 } 3941 2818 }, 3942 - "node_modules/commander": { 3943 - "version": "11.1.0", 3944 - "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", 3945 - "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", 3946 - "license": "MIT", 3947 - "engines": { 3948 - "node": ">=16" 3949 - } 3950 - }, 3951 - "node_modules/common-ancestor-path": { 3952 - "version": "1.0.1", 3953 - "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", 3954 - "integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==", 3955 - "license": "ISC" 3956 - }, 3957 - "node_modules/cookie": { 3958 - "version": "1.1.1", 3959 - "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", 3960 - "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", 2819 + "node_modules/copy-anything": { 2820 + "version": "4.0.5", 2821 + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz", 2822 + "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==", 3961 2823 "license": "MIT", 2824 + "dependencies": { 2825 + "is-what": "^5.2.0" 2826 + }, 3962 2827 "engines": { 3963 2828 "node": ">=18" 3964 2829 }, 3965 2830 "funding": { 3966 - "type": "opencollective", 3967 - "url": "https://opencollective.com/express" 3968 - } 3969 - }, 3970 - "node_modules/cookie-es": { 3971 - "version": "1.2.2", 3972 - "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", 3973 - "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==", 3974 - "license": "MIT" 3975 - }, 3976 - "node_modules/crossws": { 3977 - "version": "0.3.5", 3978 - "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz", 3979 - "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==", 3980 - "license": "MIT", 3981 - "dependencies": { 3982 - "uncrypto": "^0.1.3" 2831 + "url": "https://github.com/sponsors/mesqueeb" 3983 2832 } 3984 2833 }, 3985 2834 "node_modules/css-background-parser": { ··· 4012 2861 "node": ">=16" 4013 2862 } 4014 2863 }, 4015 - "node_modules/css-select": { 4016 - "version": "5.2.2", 4017 - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", 4018 - "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", 4019 - "license": "BSD-2-Clause", 4020 - "dependencies": { 4021 - "boolbase": "^1.0.0", 4022 - "css-what": "^6.1.0", 4023 - "domhandler": "^5.0.2", 4024 - "domutils": "^3.0.1", 4025 - "nth-check": "^2.0.1" 4026 - }, 4027 - "funding": { 4028 - "url": "https://github.com/sponsors/fb55" 4029 - } 4030 - }, 4031 - "node_modules/css-selector-parser": { 4032 - "version": "3.3.0", 4033 - "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.3.0.tgz", 4034 - "integrity": "sha512-Y2asgMGFqJKF4fq4xHDSlFYIkeVfRsm69lQC1q9kbEsH5XtnINTMrweLkjYMeaUgiXBy/uvKeO/a1JHTNnmB2g==", 4035 - "funding": [ 4036 - { 4037 - "type": "github", 4038 - "url": "https://github.com/sponsors/mdevils" 4039 - }, 4040 - { 4041 - "type": "patreon", 4042 - "url": "https://patreon.com/mdevils" 4043 - } 4044 - ], 4045 - "license": "MIT" 4046 - }, 4047 2864 "node_modules/css-to-react-native": { 4048 2865 "version": "3.2.0", 4049 2866 "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", ··· 4055 2872 "postcss-value-parser": "^4.0.2" 4056 2873 } 4057 2874 }, 4058 - "node_modules/css-tree": { 4059 - "version": "3.2.1", 4060 - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", 4061 - "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", 4062 - "license": "MIT", 4063 - "dependencies": { 4064 - "mdn-data": "2.27.1", 4065 - "source-map-js": "^1.2.1" 4066 - }, 4067 - "engines": { 4068 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 4069 - } 4070 - }, 4071 - "node_modules/css-what": { 4072 - "version": "6.2.2", 4073 - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", 4074 - "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", 4075 - "license": "BSD-2-Clause", 4076 - "engines": { 4077 - "node": ">= 6" 4078 - }, 4079 - "funding": { 4080 - "url": "https://github.com/sponsors/fb55" 4081 - } 4082 - }, 4083 - "node_modules/cssesc": { 4084 - "version": "3.0.0", 4085 - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 4086 - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 4087 - "license": "MIT", 4088 - "bin": { 4089 - "cssesc": "bin/cssesc" 4090 - }, 4091 - "engines": { 4092 - "node": ">=4" 4093 - } 4094 - }, 4095 - "node_modules/csso": { 4096 - "version": "5.0.5", 4097 - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", 4098 - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", 4099 - "license": "MIT", 4100 - "dependencies": { 4101 - "css-tree": "~2.2.0" 4102 - }, 4103 - "engines": { 4104 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 4105 - "npm": ">=7.0.0" 4106 - } 4107 - }, 4108 - "node_modules/csso/node_modules/css-tree": { 4109 - "version": "2.2.1", 4110 - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", 4111 - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", 4112 - "license": "MIT", 4113 - "dependencies": { 4114 - "mdn-data": "2.0.28", 4115 - "source-map-js": "^1.0.1" 4116 - }, 4117 - "engines": { 4118 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", 4119 - "npm": ">=7.0.0" 4120 - } 4121 - }, 4122 - "node_modules/csso/node_modules/mdn-data": { 4123 - "version": "2.0.28", 4124 - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", 4125 - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", 4126 - "license": "CC0-1.0" 4127 - }, 4128 2875 "node_modules/csstype": { 4129 2876 "version": "3.2.3", 4130 2877 "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", 4131 2878 "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", 4132 - "dev": true, 4133 2879 "license": "MIT" 4134 2880 }, 4135 - "node_modules/debug": { 4136 - "version": "4.4.3", 4137 - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 4138 - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 4139 - "license": "MIT", 4140 - "dependencies": { 4141 - "ms": "^2.1.3" 4142 - }, 4143 - "engines": { 4144 - "node": ">=6.0" 4145 - }, 4146 - "peerDependenciesMeta": { 4147 - "supports-color": { 4148 - "optional": true 4149 - } 4150 - } 4151 - }, 4152 - "node_modules/decode-named-character-reference": { 4153 - "version": "1.3.0", 4154 - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", 4155 - "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", 4156 - "license": "MIT", 4157 - "dependencies": { 4158 - "character-entities": "^2.0.0" 4159 - }, 4160 - "funding": { 4161 - "type": "github", 4162 - "url": "https://github.com/sponsors/wooorm" 4163 - } 4164 - }, 4165 2881 "node_modules/decompress-response": { 4166 2882 "version": "6.0.0", 4167 2883 "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", ··· 4186 2902 "node": ">=4.0.0" 4187 2903 } 4188 2904 }, 4189 - "node_modules/defu": { 4190 - "version": "6.1.4", 4191 - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", 4192 - "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", 4193 - "license": "MIT" 4194 - }, 4195 2905 "node_modules/dequal": { 4196 2906 "version": "2.0.3", 4197 2907 "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", ··· 4201 2911 "node": ">=6" 4202 2912 } 4203 2913 }, 4204 - "node_modules/destr": { 4205 - "version": "2.0.5", 4206 - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz", 4207 - "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", 4208 - "license": "MIT" 4209 - }, 4210 2914 "node_modules/detect-libc": { 4211 2915 "version": "2.1.2", 4212 2916 "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", ··· 4216 2920 "node": ">=8" 4217 2921 } 4218 2922 }, 4219 - "node_modules/deterministic-object-hash": { 4220 - "version": "2.0.2", 4221 - "resolved": "https://registry.npmjs.org/deterministic-object-hash/-/deterministic-object-hash-2.0.2.tgz", 4222 - "integrity": "sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==", 4223 - "license": "MIT", 4224 - "dependencies": { 4225 - "base-64": "^1.0.0" 4226 - }, 4227 - "engines": { 4228 - "node": ">=18" 4229 - } 4230 - }, 4231 - "node_modules/devalue": { 4232 - "version": "5.6.3", 4233 - "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.6.3.tgz", 4234 - "integrity": "sha512-nc7XjUU/2Lb+SvEFVGcWLiKkzfw8+qHI7zn8WYXKkLMgfGSHbgCEaR6bJpev8Cm6Rmrb19Gfd/tZvGqx9is3wg==", 4235 - "license": "MIT" 4236 - }, 4237 2923 "node_modules/devlop": { 4238 2924 "version": "1.1.0", 4239 2925 "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", ··· 4247 2933 "url": "https://github.com/sponsors/wooorm" 4248 2934 } 4249 2935 }, 4250 - "node_modules/diff": { 4251 - "version": "8.0.3", 4252 - "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.3.tgz", 4253 - "integrity": "sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==", 4254 - "license": "BSD-3-Clause", 4255 - "engines": { 4256 - "node": ">=0.3.1" 4257 - } 4258 - }, 4259 - "node_modules/direction": { 4260 - "version": "2.0.1", 4261 - "resolved": "https://registry.npmjs.org/direction/-/direction-2.0.1.tgz", 4262 - "integrity": "sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==", 4263 - "license": "MIT", 4264 - "bin": { 4265 - "direction": "cli.js" 4266 - }, 4267 - "funding": { 4268 - "type": "github", 4269 - "url": "https://github.com/sponsors/wooorm" 4270 - } 4271 - }, 4272 - "node_modules/dlv": { 4273 - "version": "1.1.3", 4274 - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 4275 - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 4276 - "license": "MIT" 4277 - }, 4278 - "node_modules/dom-serializer": { 4279 - "version": "2.0.0", 4280 - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 4281 - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 4282 - "license": "MIT", 4283 - "dependencies": { 4284 - "domelementtype": "^2.3.0", 4285 - "domhandler": "^5.0.2", 4286 - "entities": "^4.2.0" 4287 - }, 4288 - "funding": { 4289 - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 4290 - } 4291 - }, 4292 - "node_modules/dom-serializer/node_modules/entities": { 4293 - "version": "4.5.0", 4294 - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 4295 - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 4296 - "license": "BSD-2-Clause", 4297 - "engines": { 4298 - "node": ">=0.12" 4299 - }, 4300 - "funding": { 4301 - "url": "https://github.com/fb55/entities?sponsor=1" 4302 - } 4303 - }, 4304 - "node_modules/domelementtype": { 4305 - "version": "2.3.0", 4306 - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 4307 - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 4308 - "funding": [ 4309 - { 4310 - "type": "github", 4311 - "url": "https://github.com/sponsors/fb55" 4312 - } 4313 - ], 4314 - "license": "BSD-2-Clause" 4315 - }, 4316 - "node_modules/domhandler": { 4317 - "version": "5.0.3", 4318 - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 4319 - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 4320 - "license": "BSD-2-Clause", 4321 - "dependencies": { 4322 - "domelementtype": "^2.3.0" 4323 - }, 4324 - "engines": { 4325 - "node": ">= 4" 4326 - }, 4327 - "funding": { 4328 - "url": "https://github.com/fb55/domhandler?sponsor=1" 4329 - } 4330 - }, 4331 - "node_modules/domutils": { 4332 - "version": "3.2.2", 4333 - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", 4334 - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", 4335 - "license": "BSD-2-Clause", 4336 - "dependencies": { 4337 - "dom-serializer": "^2.0.0", 4338 - "domelementtype": "^2.3.0", 4339 - "domhandler": "^5.0.3" 4340 - }, 4341 - "funding": { 4342 - "url": "https://github.com/fb55/domutils?sponsor=1" 4343 - } 4344 - }, 4345 - "node_modules/dset": { 4346 - "version": "3.1.4", 4347 - "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", 4348 - "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", 4349 - "license": "MIT", 4350 - "engines": { 4351 - "node": ">=4" 4352 - } 4353 - }, 4354 - "node_modules/emoji-regex": { 4355 - "version": "10.6.0", 4356 - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", 4357 - "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", 4358 - "license": "MIT" 4359 - }, 4360 2936 "node_modules/emoji-regex-xs": { 4361 2937 "version": "2.0.1", 4362 2938 "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-2.0.1.tgz", ··· 4373 2949 "license": "MIT", 4374 2950 "dependencies": { 4375 2951 "once": "^1.4.0" 4376 - } 4377 - }, 4378 - "node_modules/entities": { 4379 - "version": "6.0.1", 4380 - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", 4381 - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", 4382 - "license": "BSD-2-Clause", 4383 - "engines": { 4384 - "node": ">=0.12" 4385 - }, 4386 - "funding": { 4387 - "url": "https://github.com/fb55/entities?sponsor=1" 4388 2952 } 4389 2953 }, 4390 2954 "node_modules/es-module-lexer": { ··· 4393 2957 "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", 4394 2958 "license": "MIT" 4395 2959 }, 4396 - "node_modules/esast-util-from-estree": { 4397 - "version": "2.0.0", 4398 - "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz", 4399 - "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==", 4400 - "license": "MIT", 4401 - "dependencies": { 4402 - "@types/estree-jsx": "^1.0.0", 4403 - "devlop": "^1.0.0", 4404 - "estree-util-visit": "^2.0.0", 4405 - "unist-util-position-from-estree": "^2.0.0" 4406 - }, 4407 - "funding": { 4408 - "type": "opencollective", 4409 - "url": "https://opencollective.com/unified" 4410 - } 4411 - }, 4412 - "node_modules/esast-util-from-js": { 4413 - "version": "2.0.1", 4414 - "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz", 4415 - "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==", 4416 - "license": "MIT", 4417 - "dependencies": { 4418 - "@types/estree-jsx": "^1.0.0", 4419 - "acorn": "^8.0.0", 4420 - "esast-util-from-estree": "^2.0.0", 4421 - "vfile-message": "^4.0.0" 4422 - }, 4423 - "funding": { 4424 - "type": "opencollective", 4425 - "url": "https://opencollective.com/unified" 4426 - } 4427 - }, 4428 - "node_modules/esbuild": { 4429 - "version": "0.27.3", 4430 - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz", 4431 - "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==", 4432 - "hasInstallScript": true, 4433 - "license": "MIT", 4434 - "bin": { 4435 - "esbuild": "bin/esbuild" 4436 - }, 4437 - "engines": { 4438 - "node": ">=18" 4439 - }, 4440 - "optionalDependencies": { 4441 - "@esbuild/aix-ppc64": "0.27.3", 4442 - "@esbuild/android-arm": "0.27.3", 4443 - "@esbuild/android-arm64": "0.27.3", 4444 - "@esbuild/android-x64": "0.27.3", 4445 - "@esbuild/darwin-arm64": "0.27.3", 4446 - "@esbuild/darwin-x64": "0.27.3", 4447 - "@esbuild/freebsd-arm64": "0.27.3", 4448 - "@esbuild/freebsd-x64": "0.27.3", 4449 - "@esbuild/linux-arm": "0.27.3", 4450 - "@esbuild/linux-arm64": "0.27.3", 4451 - "@esbuild/linux-ia32": "0.27.3", 4452 - "@esbuild/linux-loong64": "0.27.3", 4453 - "@esbuild/linux-mips64el": "0.27.3", 4454 - "@esbuild/linux-ppc64": "0.27.3", 4455 - "@esbuild/linux-riscv64": "0.27.3", 4456 - "@esbuild/linux-s390x": "0.27.3", 4457 - "@esbuild/linux-x64": "0.27.3", 4458 - "@esbuild/netbsd-arm64": "0.27.3", 4459 - "@esbuild/netbsd-x64": "0.27.3", 4460 - "@esbuild/openbsd-arm64": "0.27.3", 4461 - "@esbuild/openbsd-x64": "0.27.3", 4462 - "@esbuild/openharmony-arm64": "0.27.3", 4463 - "@esbuild/sunos-x64": "0.27.3", 4464 - "@esbuild/win32-arm64": "0.27.3", 4465 - "@esbuild/win32-ia32": "0.27.3", 4466 - "@esbuild/win32-x64": "0.27.3" 4467 - } 4468 - }, 4469 2960 "node_modules/escape-html": { 4470 2961 "version": "1.0.3", 4471 2962 "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 4472 2963 "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 4473 2964 "license": "MIT" 4474 2965 }, 4475 - "node_modules/escape-string-regexp": { 4476 - "version": "5.0.0", 4477 - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 4478 - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 4479 - "license": "MIT", 4480 - "engines": { 4481 - "node": ">=12" 4482 - }, 4483 - "funding": { 4484 - "url": "https://github.com/sponsors/sindresorhus" 4485 - } 4486 - }, 4487 - "node_modules/estree-util-attach-comments": { 4488 - "version": "3.0.0", 4489 - "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", 4490 - "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", 4491 - "license": "MIT", 4492 - "dependencies": { 4493 - "@types/estree": "^1.0.0" 4494 - }, 4495 - "funding": { 4496 - "type": "opencollective", 4497 - "url": "https://opencollective.com/unified" 4498 - } 4499 - }, 4500 - "node_modules/estree-util-build-jsx": { 4501 - "version": "3.0.1", 4502 - "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", 4503 - "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", 4504 - "license": "MIT", 4505 - "dependencies": { 4506 - "@types/estree-jsx": "^1.0.0", 4507 - "devlop": "^1.0.0", 4508 - "estree-util-is-identifier-name": "^3.0.0", 4509 - "estree-walker": "^3.0.0" 4510 - }, 4511 - "funding": { 4512 - "type": "opencollective", 4513 - "url": "https://opencollective.com/unified" 4514 - } 4515 - }, 4516 - "node_modules/estree-util-is-identifier-name": { 4517 - "version": "3.0.0", 4518 - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", 4519 - "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", 4520 - "license": "MIT", 4521 - "funding": { 4522 - "type": "opencollective", 4523 - "url": "https://opencollective.com/unified" 4524 - } 4525 - }, 4526 - "node_modules/estree-util-scope": { 4527 - "version": "1.0.0", 4528 - "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz", 4529 - "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==", 4530 - "license": "MIT", 4531 - "dependencies": { 4532 - "@types/estree": "^1.0.0", 4533 - "devlop": "^1.0.0" 4534 - }, 4535 - "funding": { 4536 - "type": "opencollective", 4537 - "url": "https://opencollective.com/unified" 4538 - } 4539 - }, 4540 - "node_modules/estree-util-to-js": { 4541 - "version": "2.0.0", 4542 - "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", 4543 - "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", 4544 - "license": "MIT", 4545 - "dependencies": { 4546 - "@types/estree-jsx": "^1.0.0", 4547 - "astring": "^1.8.0", 4548 - "source-map": "^0.7.0" 4549 - }, 4550 - "funding": { 4551 - "type": "opencollective", 4552 - "url": "https://opencollective.com/unified" 4553 - } 4554 - }, 4555 - "node_modules/estree-util-visit": { 4556 - "version": "2.0.0", 4557 - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", 4558 - "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", 4559 - "license": "MIT", 4560 - "dependencies": { 4561 - "@types/estree-jsx": "^1.0.0", 4562 - "@types/unist": "^3.0.0" 4563 - }, 4564 - "funding": { 4565 - "type": "opencollective", 4566 - "url": "https://opencollective.com/unified" 4567 - } 4568 - }, 4569 2966 "node_modules/estree-walker": { 4570 2967 "version": "3.0.3", 4571 2968 "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", ··· 4574 2971 "dependencies": { 4575 2972 "@types/estree": "^1.0.0" 4576 2973 } 4577 - }, 4578 - "node_modules/eventemitter3": { 4579 - "version": "5.0.4", 4580 - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", 4581 - "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", 4582 - "license": "MIT" 4583 2974 }, 4584 2975 "node_modules/expand-template": { 4585 2976 "version": "2.0.3", ··· 4599 2990 "node": ">=12.0.0" 4600 2991 } 4601 2992 }, 4602 - "node_modules/expressive-code": { 4603 - "version": "0.41.7", 4604 - "resolved": "https://registry.npmjs.org/expressive-code/-/expressive-code-0.41.7.tgz", 4605 - "integrity": "sha512-2wZjC8OQ3TaVEMcBtYY4Va3lo6J+Ai9jf3d4dbhURMJcU4Pbqe6EcHe424MIZI0VHUA1bR6xdpoHYi3yxokWqA==", 4606 - "license": "MIT", 4607 - "dependencies": { 4608 - "@expressive-code/core": "^0.41.7", 4609 - "@expressive-code/plugin-frames": "^0.41.7", 4610 - "@expressive-code/plugin-shiki": "^0.41.7", 4611 - "@expressive-code/plugin-text-markers": "^0.41.7" 4612 - } 4613 - }, 4614 - "node_modules/extend": { 4615 - "version": "3.0.2", 4616 - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 4617 - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 4618 - "license": "MIT" 4619 - }, 4620 2993 "node_modules/fdir": { 4621 2994 "version": "6.5.0", 4622 2995 "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", ··· 4646 3019 "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 4647 3020 "license": "MIT" 4648 3021 }, 4649 - "node_modules/flattie": { 4650 - "version": "1.1.1", 4651 - "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz", 4652 - "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==", 4653 - "license": "MIT", 4654 - "engines": { 4655 - "node": ">=8" 4656 - } 4657 - }, 4658 - "node_modules/fontace": { 4659 - "version": "0.4.1", 4660 - "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.4.1.tgz", 4661 - "integrity": "sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==", 4662 - "license": "MIT", 4663 - "dependencies": { 4664 - "fontkitten": "^1.0.2" 4665 - } 4666 - }, 4667 - "node_modules/fontkitten": { 4668 - "version": "1.0.3", 4669 - "resolved": "https://registry.npmjs.org/fontkitten/-/fontkitten-1.0.3.tgz", 4670 - "integrity": "sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==", 3022 + "node_modules/focus-trap": { 3023 + "version": "7.8.0", 3024 + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.8.0.tgz", 3025 + "integrity": "sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==", 4671 3026 "license": "MIT", 4672 3027 "dependencies": { 4673 - "tiny-inflate": "^1.0.3" 4674 - }, 4675 - "engines": { 4676 - "node": ">=20" 3028 + "tabbable": "^6.4.0" 4677 3029 } 4678 3030 }, 4679 3031 "node_modules/fs-constants": { ··· 4696 3048 "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 4697 3049 } 4698 3050 }, 4699 - "node_modules/get-east-asian-width": { 4700 - "version": "1.5.0", 4701 - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz", 4702 - "integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==", 4703 - "license": "MIT", 4704 - "engines": { 4705 - "node": ">=18" 4706 - }, 4707 - "funding": { 4708 - "url": "https://github.com/sponsors/sindresorhus" 4709 - } 4710 - }, 4711 3051 "node_modules/github-from-package": { 4712 3052 "version": "0.0.0", 4713 3053 "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", 4714 3054 "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", 4715 3055 "license": "MIT" 4716 3056 }, 4717 - "node_modules/github-slugger": { 4718 - "version": "2.0.0", 4719 - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", 4720 - "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", 4721 - "license": "ISC" 4722 - }, 4723 - "node_modules/h3": { 4724 - "version": "1.15.6", 4725 - "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.6.tgz", 4726 - "integrity": "sha512-oi15ESLW5LRthZ+qPCi5GNasY/gvynSKUQxgiovrY63bPAtG59wtM+LSrlcwvOHAXzGrXVLnI97brbkdPF9WoQ==", 4727 - "license": "MIT", 4728 - "dependencies": { 4729 - "cookie-es": "^1.2.2", 4730 - "crossws": "^0.3.5", 4731 - "defu": "^6.1.4", 4732 - "destr": "^2.0.5", 4733 - "iron-webcrypto": "^1.2.1", 4734 - "node-mock-http": "^1.0.4", 4735 - "radix3": "^1.1.2", 4736 - "ufo": "^1.6.3", 4737 - "uncrypto": "^0.1.3" 4738 - } 4739 - }, 4740 - "node_modules/hast-util-embedded": { 4741 - "version": "3.0.0", 4742 - "resolved": "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz", 4743 - "integrity": "sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==", 4744 - "license": "MIT", 4745 - "dependencies": { 4746 - "@types/hast": "^3.0.0", 4747 - "hast-util-is-element": "^3.0.0" 4748 - }, 4749 - "funding": { 4750 - "type": "opencollective", 4751 - "url": "https://opencollective.com/unified" 4752 - } 4753 - }, 4754 - "node_modules/hast-util-format": { 4755 - "version": "1.1.0", 4756 - "resolved": "https://registry.npmjs.org/hast-util-format/-/hast-util-format-1.1.0.tgz", 4757 - "integrity": "sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==", 4758 - "license": "MIT", 4759 - "dependencies": { 4760 - "@types/hast": "^3.0.0", 4761 - "hast-util-embedded": "^3.0.0", 4762 - "hast-util-minify-whitespace": "^1.0.0", 4763 - "hast-util-phrasing": "^3.0.0", 4764 - "hast-util-whitespace": "^3.0.0", 4765 - "html-whitespace-sensitive-tag-names": "^3.0.0", 4766 - "unist-util-visit-parents": "^6.0.0" 4767 - }, 4768 - "funding": { 4769 - "type": "opencollective", 4770 - "url": "https://opencollective.com/unified" 4771 - } 4772 - }, 4773 - "node_modules/hast-util-from-html": { 4774 - "version": "2.0.3", 4775 - "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", 4776 - "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", 4777 - "license": "MIT", 4778 - "dependencies": { 4779 - "@types/hast": "^3.0.0", 4780 - "devlop": "^1.1.0", 4781 - "hast-util-from-parse5": "^8.0.0", 4782 - "parse5": "^7.0.0", 4783 - "vfile": "^6.0.0", 4784 - "vfile-message": "^4.0.0" 4785 - }, 4786 - "funding": { 4787 - "type": "opencollective", 4788 - "url": "https://opencollective.com/unified" 4789 - } 4790 - }, 4791 - "node_modules/hast-util-from-parse5": { 4792 - "version": "8.0.3", 4793 - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", 4794 - "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", 4795 - "license": "MIT", 4796 - "dependencies": { 4797 - "@types/hast": "^3.0.0", 4798 - "@types/unist": "^3.0.0", 4799 - "devlop": "^1.0.0", 4800 - "hastscript": "^9.0.0", 4801 - "property-information": "^7.0.0", 4802 - "vfile": "^6.0.0", 4803 - "vfile-location": "^5.0.0", 4804 - "web-namespaces": "^2.0.0" 4805 - }, 4806 - "funding": { 4807 - "type": "opencollective", 4808 - "url": "https://opencollective.com/unified" 4809 - } 4810 - }, 4811 - "node_modules/hast-util-has-property": { 4812 - "version": "3.0.0", 4813 - "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz", 4814 - "integrity": "sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==", 4815 - "license": "MIT", 4816 - "dependencies": { 4817 - "@types/hast": "^3.0.0" 4818 - }, 4819 - "funding": { 4820 - "type": "opencollective", 4821 - "url": "https://opencollective.com/unified" 4822 - } 4823 - }, 4824 - "node_modules/hast-util-is-body-ok-link": { 4825 - "version": "3.0.1", 4826 - "resolved": "https://registry.npmjs.org/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz", 4827 - "integrity": "sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==", 4828 - "license": "MIT", 4829 - "dependencies": { 4830 - "@types/hast": "^3.0.0" 4831 - }, 4832 - "funding": { 4833 - "type": "opencollective", 4834 - "url": "https://opencollective.com/unified" 4835 - } 4836 - }, 4837 - "node_modules/hast-util-is-element": { 4838 - "version": "3.0.0", 4839 - "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", 4840 - "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", 4841 - "license": "MIT", 4842 - "dependencies": { 4843 - "@types/hast": "^3.0.0" 4844 - }, 4845 - "funding": { 4846 - "type": "opencollective", 4847 - "url": "https://opencollective.com/unified" 4848 - } 4849 - }, 4850 - "node_modules/hast-util-minify-whitespace": { 4851 - "version": "1.0.1", 4852 - "resolved": "https://registry.npmjs.org/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz", 4853 - "integrity": "sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==", 4854 - "license": "MIT", 4855 - "dependencies": { 4856 - "@types/hast": "^3.0.0", 4857 - "hast-util-embedded": "^3.0.0", 4858 - "hast-util-is-element": "^3.0.0", 4859 - "hast-util-whitespace": "^3.0.0", 4860 - "unist-util-is": "^6.0.0" 4861 - }, 4862 - "funding": { 4863 - "type": "opencollective", 4864 - "url": "https://opencollective.com/unified" 4865 - } 4866 - }, 4867 - "node_modules/hast-util-parse-selector": { 4868 - "version": "4.0.0", 4869 - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", 4870 - "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", 4871 - "license": "MIT", 4872 - "dependencies": { 4873 - "@types/hast": "^3.0.0" 4874 - }, 4875 - "funding": { 4876 - "type": "opencollective", 4877 - "url": "https://opencollective.com/unified" 4878 - } 4879 - }, 4880 - "node_modules/hast-util-phrasing": { 4881 - "version": "3.0.1", 4882 - "resolved": "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz", 4883 - "integrity": "sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==", 4884 - "license": "MIT", 4885 - "dependencies": { 4886 - "@types/hast": "^3.0.0", 4887 - "hast-util-embedded": "^3.0.0", 4888 - "hast-util-has-property": "^3.0.0", 4889 - "hast-util-is-body-ok-link": "^3.0.0", 4890 - "hast-util-is-element": "^3.0.0" 4891 - }, 4892 - "funding": { 4893 - "type": "opencollective", 4894 - "url": "https://opencollective.com/unified" 4895 - } 4896 - }, 4897 - "node_modules/hast-util-raw": { 4898 - "version": "9.1.0", 4899 - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", 4900 - "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", 4901 - "license": "MIT", 4902 - "dependencies": { 4903 - "@types/hast": "^3.0.0", 4904 - "@types/unist": "^3.0.0", 4905 - "@ungap/structured-clone": "^1.0.0", 4906 - "hast-util-from-parse5": "^8.0.0", 4907 - "hast-util-to-parse5": "^8.0.0", 4908 - "html-void-elements": "^3.0.0", 4909 - "mdast-util-to-hast": "^13.0.0", 4910 - "parse5": "^7.0.0", 4911 - "unist-util-position": "^5.0.0", 4912 - "unist-util-visit": "^5.0.0", 4913 - "vfile": "^6.0.0", 4914 - "web-namespaces": "^2.0.0", 4915 - "zwitch": "^2.0.0" 4916 - }, 4917 - "funding": { 4918 - "type": "opencollective", 4919 - "url": "https://opencollective.com/unified" 4920 - } 4921 - }, 4922 - "node_modules/hast-util-select": { 4923 - "version": "6.0.4", 4924 - "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-6.0.4.tgz", 4925 - "integrity": "sha512-RqGS1ZgI0MwxLaKLDxjprynNzINEkRHY2i8ln4DDjgv9ZhcYVIHN9rlpiYsqtFwrgpYU361SyWDQcGNIBVu3lw==", 4926 - "license": "MIT", 4927 - "dependencies": { 4928 - "@types/hast": "^3.0.0", 4929 - "@types/unist": "^3.0.0", 4930 - "bcp-47-match": "^2.0.0", 4931 - "comma-separated-tokens": "^2.0.0", 4932 - "css-selector-parser": "^3.0.0", 4933 - "devlop": "^1.0.0", 4934 - "direction": "^2.0.0", 4935 - "hast-util-has-property": "^3.0.0", 4936 - "hast-util-to-string": "^3.0.0", 4937 - "hast-util-whitespace": "^3.0.0", 4938 - "nth-check": "^2.0.0", 4939 - "property-information": "^7.0.0", 4940 - "space-separated-tokens": "^2.0.0", 4941 - "unist-util-visit": "^5.0.0", 4942 - "zwitch": "^2.0.0" 4943 - }, 4944 - "funding": { 4945 - "type": "opencollective", 4946 - "url": "https://opencollective.com/unified" 4947 - } 4948 - }, 4949 - "node_modules/hast-util-to-estree": { 4950 - "version": "3.1.3", 4951 - "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz", 4952 - "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==", 4953 - "license": "MIT", 4954 - "dependencies": { 4955 - "@types/estree": "^1.0.0", 4956 - "@types/estree-jsx": "^1.0.0", 4957 - "@types/hast": "^3.0.0", 4958 - "comma-separated-tokens": "^2.0.0", 4959 - "devlop": "^1.0.0", 4960 - "estree-util-attach-comments": "^3.0.0", 4961 - "estree-util-is-identifier-name": "^3.0.0", 4962 - "hast-util-whitespace": "^3.0.0", 4963 - "mdast-util-mdx-expression": "^2.0.0", 4964 - "mdast-util-mdx-jsx": "^3.0.0", 4965 - "mdast-util-mdxjs-esm": "^2.0.0", 4966 - "property-information": "^7.0.0", 4967 - "space-separated-tokens": "^2.0.0", 4968 - "style-to-js": "^1.0.0", 4969 - "unist-util-position": "^5.0.0", 4970 - "zwitch": "^2.0.0" 4971 - }, 4972 - "funding": { 4973 - "type": "opencollective", 4974 - "url": "https://opencollective.com/unified" 4975 - } 4976 - }, 4977 3057 "node_modules/hast-util-to-html": { 4978 3058 "version": "9.0.5", 4979 3059 "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", ··· 4997 3077 "url": "https://opencollective.com/unified" 4998 3078 } 4999 3079 }, 5000 - "node_modules/hast-util-to-jsx-runtime": { 5001 - "version": "2.3.6", 5002 - "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", 5003 - "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", 5004 - "license": "MIT", 5005 - "dependencies": { 5006 - "@types/estree": "^1.0.0", 5007 - "@types/hast": "^3.0.0", 5008 - "@types/unist": "^3.0.0", 5009 - "comma-separated-tokens": "^2.0.0", 5010 - "devlop": "^1.0.0", 5011 - "estree-util-is-identifier-name": "^3.0.0", 5012 - "hast-util-whitespace": "^3.0.0", 5013 - "mdast-util-mdx-expression": "^2.0.0", 5014 - "mdast-util-mdx-jsx": "^3.0.0", 5015 - "mdast-util-mdxjs-esm": "^2.0.0", 5016 - "property-information": "^7.0.0", 5017 - "space-separated-tokens": "^2.0.0", 5018 - "style-to-js": "^1.0.0", 5019 - "unist-util-position": "^5.0.0", 5020 - "vfile-message": "^4.0.0" 5021 - }, 5022 - "funding": { 5023 - "type": "opencollective", 5024 - "url": "https://opencollective.com/unified" 5025 - } 5026 - }, 5027 - "node_modules/hast-util-to-parse5": { 5028 - "version": "8.0.1", 5029 - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz", 5030 - "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==", 5031 - "license": "MIT", 5032 - "dependencies": { 5033 - "@types/hast": "^3.0.0", 5034 - "comma-separated-tokens": "^2.0.0", 5035 - "devlop": "^1.0.0", 5036 - "property-information": "^7.0.0", 5037 - "space-separated-tokens": "^2.0.0", 5038 - "web-namespaces": "^2.0.0", 5039 - "zwitch": "^2.0.0" 5040 - }, 5041 - "funding": { 5042 - "type": "opencollective", 5043 - "url": "https://opencollective.com/unified" 5044 - } 5045 - }, 5046 - "node_modules/hast-util-to-string": { 5047 - "version": "3.0.1", 5048 - "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.1.tgz", 5049 - "integrity": "sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==", 5050 - "license": "MIT", 5051 - "dependencies": { 5052 - "@types/hast": "^3.0.0" 5053 - }, 5054 - "funding": { 5055 - "type": "opencollective", 5056 - "url": "https://opencollective.com/unified" 5057 - } 5058 - }, 5059 - "node_modules/hast-util-to-text": { 5060 - "version": "4.0.2", 5061 - "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", 5062 - "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", 5063 - "license": "MIT", 5064 - "dependencies": { 5065 - "@types/hast": "^3.0.0", 5066 - "@types/unist": "^3.0.0", 5067 - "hast-util-is-element": "^3.0.0", 5068 - "unist-util-find-after": "^5.0.0" 5069 - }, 5070 - "funding": { 5071 - "type": "opencollective", 5072 - "url": "https://opencollective.com/unified" 5073 - } 5074 - }, 5075 3080 "node_modules/hast-util-whitespace": { 5076 3081 "version": "3.0.0", 5077 3082 "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", ··· 5085 3090 "url": "https://opencollective.com/unified" 5086 3091 } 5087 3092 }, 5088 - "node_modules/hastscript": { 5089 - "version": "9.0.1", 5090 - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", 5091 - "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", 5092 - "license": "MIT", 5093 - "dependencies": { 5094 - "@types/hast": "^3.0.0", 5095 - "comma-separated-tokens": "^2.0.0", 5096 - "hast-util-parse-selector": "^4.0.0", 5097 - "property-information": "^7.0.0", 5098 - "space-separated-tokens": "^2.0.0" 5099 - }, 5100 - "funding": { 5101 - "type": "opencollective", 5102 - "url": "https://opencollective.com/unified" 5103 - } 5104 - }, 5105 3093 "node_modules/hex-rgb": { 5106 3094 "version": "4.3.0", 5107 3095 "resolved": "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz", ··· 5114 3102 "url": "https://github.com/sponsors/sindresorhus" 5115 3103 } 5116 3104 }, 5117 - "node_modules/html-escaper": { 5118 - "version": "3.0.3", 5119 - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", 5120 - "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", 3105 + "node_modules/hookable": { 3106 + "version": "5.5.3", 3107 + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", 3108 + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", 5121 3109 "license": "MIT" 5122 3110 }, 5123 3111 "node_modules/html-void-elements": { ··· 5130 3118 "url": "https://github.com/sponsors/wooorm" 5131 3119 } 5132 3120 }, 5133 - "node_modules/html-whitespace-sensitive-tag-names": { 5134 - "version": "3.0.1", 5135 - "resolved": "https://registry.npmjs.org/html-whitespace-sensitive-tag-names/-/html-whitespace-sensitive-tag-names-3.0.1.tgz", 5136 - "integrity": "sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==", 5137 - "license": "MIT", 5138 - "funding": { 5139 - "type": "opencollective", 5140 - "url": "https://opencollective.com/unified" 5141 - } 5142 - }, 5143 - "node_modules/http-cache-semantics": { 5144 - "version": "4.2.0", 5145 - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", 5146 - "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", 5147 - "license": "BSD-2-Clause" 5148 - }, 5149 - "node_modules/i18next": { 5150 - "version": "23.16.8", 5151 - "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.16.8.tgz", 5152 - "integrity": "sha512-06r/TitrM88Mg5FdUXAKL96dJMzgqLE5dv3ryBAra4KCwD9mJ4ndOTS95ZuymIGoE+2hzfdaMak2X11/es7ZWg==", 5153 - "funding": [ 5154 - { 5155 - "type": "individual", 5156 - "url": "https://locize.com" 5157 - }, 5158 - { 5159 - "type": "individual", 5160 - "url": "https://locize.com/i18next.html" 5161 - }, 5162 - { 5163 - "type": "individual", 5164 - "url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project" 5165 - } 5166 - ], 5167 - "license": "MIT", 5168 - "dependencies": { 5169 - "@babel/runtime": "^7.23.2" 5170 - } 5171 - }, 5172 3121 "node_modules/ieee754": { 5173 3122 "version": "1.2.1", 5174 3123 "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", ··· 5189 3138 ], 5190 3139 "license": "BSD-3-Clause" 5191 3140 }, 5192 - "node_modules/import-meta-resolve": { 5193 - "version": "4.2.0", 5194 - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz", 5195 - "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==", 5196 - "license": "MIT", 5197 - "funding": { 5198 - "type": "github", 5199 - "url": "https://github.com/sponsors/wooorm" 5200 - } 5201 - }, 5202 3141 "node_modules/inherits": { 5203 3142 "version": "2.0.4", 5204 3143 "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", ··· 5211 3150 "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", 5212 3151 "license": "ISC" 5213 3152 }, 5214 - "node_modules/inline-style-parser": { 5215 - "version": "0.2.7", 5216 - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", 5217 - "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", 5218 - "license": "MIT" 5219 - }, 5220 - "node_modules/iron-webcrypto": { 5221 - "version": "1.2.1", 5222 - "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", 5223 - "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", 3153 + "node_modules/is-what": { 3154 + "version": "5.5.0", 3155 + "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz", 3156 + "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==", 5224 3157 "license": "MIT", 5225 - "funding": { 5226 - "url": "https://github.com/sponsors/brc-dd" 5227 - } 5228 - }, 5229 - "node_modules/is-alphabetical": { 5230 - "version": "2.0.1", 5231 - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", 5232 - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", 5233 - "license": "MIT", 5234 - "funding": { 5235 - "type": "github", 5236 - "url": "https://github.com/sponsors/wooorm" 5237 - } 5238 - }, 5239 - "node_modules/is-alphanumerical": { 5240 - "version": "2.0.1", 5241 - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", 5242 - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", 5243 - "license": "MIT", 5244 - "dependencies": { 5245 - "is-alphabetical": "^2.0.0", 5246 - "is-decimal": "^2.0.0" 5247 - }, 5248 - "funding": { 5249 - "type": "github", 5250 - "url": "https://github.com/sponsors/wooorm" 5251 - } 5252 - }, 5253 - "node_modules/is-decimal": { 5254 - "version": "2.0.1", 5255 - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", 5256 - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", 5257 - "license": "MIT", 5258 - "funding": { 5259 - "type": "github", 5260 - "url": "https://github.com/sponsors/wooorm" 5261 - } 5262 - }, 5263 - "node_modules/is-docker": { 5264 - "version": "3.0.0", 5265 - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 5266 - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 5267 - "license": "MIT", 5268 - "bin": { 5269 - "is-docker": "cli.js" 5270 - }, 5271 3158 "engines": { 5272 - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3159 + "node": ">=18" 5273 3160 }, 5274 3161 "funding": { 5275 - "url": "https://github.com/sponsors/sindresorhus" 5276 - } 5277 - }, 5278 - "node_modules/is-fullwidth-code-point": { 5279 - "version": "3.0.0", 5280 - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 5281 - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 5282 - "license": "MIT", 5283 - "engines": { 5284 - "node": ">=8" 5285 - } 5286 - }, 5287 - "node_modules/is-hexadecimal": { 5288 - "version": "2.0.1", 5289 - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", 5290 - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", 5291 - "license": "MIT", 5292 - "funding": { 5293 - "type": "github", 5294 - "url": "https://github.com/sponsors/wooorm" 5295 - } 5296 - }, 5297 - "node_modules/is-inside-container": { 5298 - "version": "1.0.0", 5299 - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 5300 - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 5301 - "license": "MIT", 5302 - "dependencies": { 5303 - "is-docker": "^3.0.0" 5304 - }, 5305 - "bin": { 5306 - "is-inside-container": "cli.js" 5307 - }, 5308 - "engines": { 5309 - "node": ">=14.16" 5310 - }, 5311 - "funding": { 5312 - "url": "https://github.com/sponsors/sindresorhus" 5313 - } 5314 - }, 5315 - "node_modules/is-plain-obj": { 5316 - "version": "4.1.0", 5317 - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 5318 - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 5319 - "license": "MIT", 5320 - "engines": { 5321 - "node": ">=12" 5322 - }, 5323 - "funding": { 5324 - "url": "https://github.com/sponsors/sindresorhus" 5325 - } 5326 - }, 5327 - "node_modules/is-wsl": { 5328 - "version": "3.1.1", 5329 - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", 5330 - "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", 5331 - "license": "MIT", 5332 - "dependencies": { 5333 - "is-inside-container": "^1.0.0" 5334 - }, 5335 - "engines": { 5336 - "node": ">=16" 5337 - }, 5338 - "funding": { 5339 - "url": "https://github.com/sponsors/sindresorhus" 5340 - } 5341 - }, 5342 - "node_modules/js-yaml": { 5343 - "version": "4.1.1", 5344 - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", 5345 - "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", 5346 - "license": "MIT", 5347 - "dependencies": { 5348 - "argparse": "^2.0.1" 5349 - }, 5350 - "bin": { 5351 - "js-yaml": "bin/js-yaml.js" 5352 - } 5353 - }, 5354 - "node_modules/kleur": { 5355 - "version": "3.0.3", 5356 - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 5357 - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 5358 - "license": "MIT", 5359 - "engines": { 5360 - "node": ">=6" 5361 - } 5362 - }, 5363 - "node_modules/klona": { 5364 - "version": "2.0.6", 5365 - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", 5366 - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", 5367 - "license": "MIT", 5368 - "engines": { 5369 - "node": ">= 8" 3162 + "url": "https://github.com/sponsors/mesqueeb" 5370 3163 } 5371 3164 }, 5372 3165 "node_modules/lightningcss": { ··· 5629 3422 "unicode-trie": "^2.0.0" 5630 3423 } 5631 3424 }, 5632 - "node_modules/longest-streak": { 5633 - "version": "3.1.0", 5634 - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", 5635 - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", 5636 - "license": "MIT", 5637 - "funding": { 5638 - "type": "github", 5639 - "url": "https://github.com/sponsors/wooorm" 5640 - } 5641 - }, 5642 - "node_modules/lru-cache": { 5643 - "version": "11.2.6", 5644 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.6.tgz", 5645 - "integrity": "sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==", 5646 - "license": "BlueOak-1.0.0", 5647 - "engines": { 5648 - "node": "20 || >=22" 5649 - } 5650 - }, 5651 3425 "node_modules/magic-string": { 5652 3426 "version": "0.30.21", 5653 3427 "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", ··· 5657 3431 "@jridgewell/sourcemap-codec": "^1.5.5" 5658 3432 } 5659 3433 }, 5660 - "node_modules/magicast": { 5661 - "version": "0.5.2", 5662 - "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.2.tgz", 5663 - "integrity": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==", 5664 - "license": "MIT", 5665 - "dependencies": { 5666 - "@babel/parser": "^7.29.0", 5667 - "@babel/types": "^7.29.0", 5668 - "source-map-js": "^1.2.1" 5669 - } 5670 - }, 5671 - "node_modules/markdown-extensions": { 5672 - "version": "2.0.0", 5673 - "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", 5674 - "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", 5675 - "license": "MIT", 5676 - "engines": { 5677 - "node": ">=16" 5678 - }, 5679 - "funding": { 5680 - "url": "https://github.com/sponsors/sindresorhus" 5681 - } 5682 - }, 5683 - "node_modules/markdown-table": { 5684 - "version": "3.0.4", 5685 - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", 5686 - "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", 5687 - "license": "MIT", 5688 - "funding": { 5689 - "type": "github", 5690 - "url": "https://github.com/sponsors/wooorm" 5691 - } 5692 - }, 5693 - "node_modules/mdast-util-definitions": { 5694 - "version": "6.0.0", 5695 - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz", 5696 - "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==", 5697 - "license": "MIT", 5698 - "dependencies": { 5699 - "@types/mdast": "^4.0.0", 5700 - "@types/unist": "^3.0.0", 5701 - "unist-util-visit": "^5.0.0" 5702 - }, 5703 - "funding": { 5704 - "type": "opencollective", 5705 - "url": "https://opencollective.com/unified" 5706 - } 5707 - }, 5708 - "node_modules/mdast-util-directive": { 5709 - "version": "3.1.0", 5710 - "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz", 5711 - "integrity": "sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==", 5712 - "license": "MIT", 5713 - "dependencies": { 5714 - "@types/mdast": "^4.0.0", 5715 - "@types/unist": "^3.0.0", 5716 - "ccount": "^2.0.0", 5717 - "devlop": "^1.0.0", 5718 - "mdast-util-from-markdown": "^2.0.0", 5719 - "mdast-util-to-markdown": "^2.0.0", 5720 - "parse-entities": "^4.0.0", 5721 - "stringify-entities": "^4.0.0", 5722 - "unist-util-visit-parents": "^6.0.0" 5723 - }, 5724 - "funding": { 5725 - "type": "opencollective", 5726 - "url": "https://opencollective.com/unified" 5727 - } 5728 - }, 5729 - "node_modules/mdast-util-find-and-replace": { 5730 - "version": "3.0.2", 5731 - "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", 5732 - "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", 5733 - "license": "MIT", 5734 - "dependencies": { 5735 - "@types/mdast": "^4.0.0", 5736 - "escape-string-regexp": "^5.0.0", 5737 - "unist-util-is": "^6.0.0", 5738 - "unist-util-visit-parents": "^6.0.0" 5739 - }, 5740 - "funding": { 5741 - "type": "opencollective", 5742 - "url": "https://opencollective.com/unified" 5743 - } 5744 - }, 5745 - "node_modules/mdast-util-from-markdown": { 5746 - "version": "2.0.3", 5747 - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", 5748 - "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", 5749 - "license": "MIT", 5750 - "dependencies": { 5751 - "@types/mdast": "^4.0.0", 5752 - "@types/unist": "^3.0.0", 5753 - "decode-named-character-reference": "^1.0.0", 5754 - "devlop": "^1.0.0", 5755 - "mdast-util-to-string": "^4.0.0", 5756 - "micromark": "^4.0.0", 5757 - "micromark-util-decode-numeric-character-reference": "^2.0.0", 5758 - "micromark-util-decode-string": "^2.0.0", 5759 - "micromark-util-normalize-identifier": "^2.0.0", 5760 - "micromark-util-symbol": "^2.0.0", 5761 - "micromark-util-types": "^2.0.0", 5762 - "unist-util-stringify-position": "^4.0.0" 5763 - }, 5764 - "funding": { 5765 - "type": "opencollective", 5766 - "url": "https://opencollective.com/unified" 5767 - } 5768 - }, 5769 - "node_modules/mdast-util-gfm": { 5770 - "version": "3.1.0", 5771 - "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", 5772 - "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", 5773 - "license": "MIT", 5774 - "dependencies": { 5775 - "mdast-util-from-markdown": "^2.0.0", 5776 - "mdast-util-gfm-autolink-literal": "^2.0.0", 5777 - "mdast-util-gfm-footnote": "^2.0.0", 5778 - "mdast-util-gfm-strikethrough": "^2.0.0", 5779 - "mdast-util-gfm-table": "^2.0.0", 5780 - "mdast-util-gfm-task-list-item": "^2.0.0", 5781 - "mdast-util-to-markdown": "^2.0.0" 5782 - }, 5783 - "funding": { 5784 - "type": "opencollective", 5785 - "url": "https://opencollective.com/unified" 5786 - } 5787 - }, 5788 - "node_modules/mdast-util-gfm-autolink-literal": { 5789 - "version": "2.0.1", 5790 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", 5791 - "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", 5792 - "license": "MIT", 5793 - "dependencies": { 5794 - "@types/mdast": "^4.0.0", 5795 - "ccount": "^2.0.0", 5796 - "devlop": "^1.0.0", 5797 - "mdast-util-find-and-replace": "^3.0.0", 5798 - "micromark-util-character": "^2.0.0" 5799 - }, 5800 - "funding": { 5801 - "type": "opencollective", 5802 - "url": "https://opencollective.com/unified" 5803 - } 5804 - }, 5805 - "node_modules/mdast-util-gfm-footnote": { 5806 - "version": "2.1.0", 5807 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", 5808 - "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", 5809 - "license": "MIT", 5810 - "dependencies": { 5811 - "@types/mdast": "^4.0.0", 5812 - "devlop": "^1.1.0", 5813 - "mdast-util-from-markdown": "^2.0.0", 5814 - "mdast-util-to-markdown": "^2.0.0", 5815 - "micromark-util-normalize-identifier": "^2.0.0" 5816 - }, 5817 - "funding": { 5818 - "type": "opencollective", 5819 - "url": "https://opencollective.com/unified" 5820 - } 5821 - }, 5822 - "node_modules/mdast-util-gfm-strikethrough": { 5823 - "version": "2.0.0", 5824 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", 5825 - "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", 5826 - "license": "MIT", 5827 - "dependencies": { 5828 - "@types/mdast": "^4.0.0", 5829 - "mdast-util-from-markdown": "^2.0.0", 5830 - "mdast-util-to-markdown": "^2.0.0" 5831 - }, 5832 - "funding": { 5833 - "type": "opencollective", 5834 - "url": "https://opencollective.com/unified" 5835 - } 5836 - }, 5837 - "node_modules/mdast-util-gfm-table": { 5838 - "version": "2.0.0", 5839 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", 5840 - "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", 5841 - "license": "MIT", 5842 - "dependencies": { 5843 - "@types/mdast": "^4.0.0", 5844 - "devlop": "^1.0.0", 5845 - "markdown-table": "^3.0.0", 5846 - "mdast-util-from-markdown": "^2.0.0", 5847 - "mdast-util-to-markdown": "^2.0.0" 5848 - }, 5849 - "funding": { 5850 - "type": "opencollective", 5851 - "url": "https://opencollective.com/unified" 5852 - } 5853 - }, 5854 - "node_modules/mdast-util-gfm-task-list-item": { 5855 - "version": "2.0.0", 5856 - "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", 5857 - "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", 5858 - "license": "MIT", 5859 - "dependencies": { 5860 - "@types/mdast": "^4.0.0", 5861 - "devlop": "^1.0.0", 5862 - "mdast-util-from-markdown": "^2.0.0", 5863 - "mdast-util-to-markdown": "^2.0.0" 5864 - }, 5865 - "funding": { 5866 - "type": "opencollective", 5867 - "url": "https://opencollective.com/unified" 5868 - } 5869 - }, 5870 - "node_modules/mdast-util-mdx": { 5871 - "version": "3.0.0", 5872 - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", 5873 - "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", 5874 - "license": "MIT", 5875 - "dependencies": { 5876 - "mdast-util-from-markdown": "^2.0.0", 5877 - "mdast-util-mdx-expression": "^2.0.0", 5878 - "mdast-util-mdx-jsx": "^3.0.0", 5879 - "mdast-util-mdxjs-esm": "^2.0.0", 5880 - "mdast-util-to-markdown": "^2.0.0" 5881 - }, 5882 - "funding": { 5883 - "type": "opencollective", 5884 - "url": "https://opencollective.com/unified" 5885 - } 5886 - }, 5887 - "node_modules/mdast-util-mdx-expression": { 5888 - "version": "2.0.1", 5889 - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", 5890 - "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", 5891 - "license": "MIT", 5892 - "dependencies": { 5893 - "@types/estree-jsx": "^1.0.0", 5894 - "@types/hast": "^3.0.0", 5895 - "@types/mdast": "^4.0.0", 5896 - "devlop": "^1.0.0", 5897 - "mdast-util-from-markdown": "^2.0.0", 5898 - "mdast-util-to-markdown": "^2.0.0" 5899 - }, 5900 - "funding": { 5901 - "type": "opencollective", 5902 - "url": "https://opencollective.com/unified" 5903 - } 5904 - }, 5905 - "node_modules/mdast-util-mdx-jsx": { 5906 - "version": "3.2.0", 5907 - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", 5908 - "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", 5909 - "license": "MIT", 5910 - "dependencies": { 5911 - "@types/estree-jsx": "^1.0.0", 5912 - "@types/hast": "^3.0.0", 5913 - "@types/mdast": "^4.0.0", 5914 - "@types/unist": "^3.0.0", 5915 - "ccount": "^2.0.0", 5916 - "devlop": "^1.1.0", 5917 - "mdast-util-from-markdown": "^2.0.0", 5918 - "mdast-util-to-markdown": "^2.0.0", 5919 - "parse-entities": "^4.0.0", 5920 - "stringify-entities": "^4.0.0", 5921 - "unist-util-stringify-position": "^4.0.0", 5922 - "vfile-message": "^4.0.0" 5923 - }, 5924 - "funding": { 5925 - "type": "opencollective", 5926 - "url": "https://opencollective.com/unified" 5927 - } 5928 - }, 5929 - "node_modules/mdast-util-mdxjs-esm": { 5930 - "version": "2.0.1", 5931 - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", 5932 - "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", 5933 - "license": "MIT", 5934 - "dependencies": { 5935 - "@types/estree-jsx": "^1.0.0", 5936 - "@types/hast": "^3.0.0", 5937 - "@types/mdast": "^4.0.0", 5938 - "devlop": "^1.0.0", 5939 - "mdast-util-from-markdown": "^2.0.0", 5940 - "mdast-util-to-markdown": "^2.0.0" 5941 - }, 5942 - "funding": { 5943 - "type": "opencollective", 5944 - "url": "https://opencollective.com/unified" 5945 - } 5946 - }, 5947 - "node_modules/mdast-util-phrasing": { 5948 - "version": "4.1.0", 5949 - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", 5950 - "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", 5951 - "license": "MIT", 5952 - "dependencies": { 5953 - "@types/mdast": "^4.0.0", 5954 - "unist-util-is": "^6.0.0" 5955 - }, 5956 - "funding": { 5957 - "type": "opencollective", 5958 - "url": "https://opencollective.com/unified" 5959 - } 3434 + "node_modules/mark.js": { 3435 + "version": "8.11.1", 3436 + "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", 3437 + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", 3438 + "license": "MIT" 5960 3439 }, 5961 3440 "node_modules/mdast-util-to-hast": { 5962 3441 "version": "13.2.1", ··· 5979 3458 "url": "https://opencollective.com/unified" 5980 3459 } 5981 3460 }, 5982 - "node_modules/mdast-util-to-markdown": { 5983 - "version": "2.1.2", 5984 - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", 5985 - "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", 5986 - "license": "MIT", 5987 - "dependencies": { 5988 - "@types/mdast": "^4.0.0", 5989 - "@types/unist": "^3.0.0", 5990 - "longest-streak": "^3.0.0", 5991 - "mdast-util-phrasing": "^4.0.0", 5992 - "mdast-util-to-string": "^4.0.0", 5993 - "micromark-util-classify-character": "^2.0.0", 5994 - "micromark-util-decode-string": "^2.0.0", 5995 - "unist-util-visit": "^5.0.0", 5996 - "zwitch": "^2.0.0" 5997 - }, 5998 - "funding": { 5999 - "type": "opencollective", 6000 - "url": "https://opencollective.com/unified" 6001 - } 6002 - }, 6003 - "node_modules/mdast-util-to-string": { 6004 - "version": "4.0.0", 6005 - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", 6006 - "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", 6007 - "license": "MIT", 6008 - "dependencies": { 6009 - "@types/mdast": "^4.0.0" 6010 - }, 6011 - "funding": { 6012 - "type": "opencollective", 6013 - "url": "https://opencollective.com/unified" 6014 - } 6015 - }, 6016 - "node_modules/mdn-data": { 6017 - "version": "2.27.1", 6018 - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", 6019 - "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", 6020 - "license": "CC0-1.0" 6021 - }, 6022 - "node_modules/micromark": { 6023 - "version": "4.0.2", 6024 - "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", 6025 - "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", 6026 - "funding": [ 6027 - { 6028 - "type": "GitHub Sponsors", 6029 - "url": "https://github.com/sponsors/unifiedjs" 6030 - }, 6031 - { 6032 - "type": "OpenCollective", 6033 - "url": "https://opencollective.com/unified" 6034 - } 6035 - ], 6036 - "license": "MIT", 6037 - "dependencies": { 6038 - "@types/debug": "^4.0.0", 6039 - "debug": "^4.0.0", 6040 - "decode-named-character-reference": "^1.0.0", 6041 - "devlop": "^1.0.0", 6042 - "micromark-core-commonmark": "^2.0.0", 6043 - "micromark-factory-space": "^2.0.0", 6044 - "micromark-util-character": "^2.0.0", 6045 - "micromark-util-chunked": "^2.0.0", 6046 - "micromark-util-combine-extensions": "^2.0.0", 6047 - "micromark-util-decode-numeric-character-reference": "^2.0.0", 6048 - "micromark-util-encode": "^2.0.0", 6049 - "micromark-util-normalize-identifier": "^2.0.0", 6050 - "micromark-util-resolve-all": "^2.0.0", 6051 - "micromark-util-sanitize-uri": "^2.0.0", 6052 - "micromark-util-subtokenize": "^2.0.0", 6053 - "micromark-util-symbol": "^2.0.0", 6054 - "micromark-util-types": "^2.0.0" 6055 - } 6056 - }, 6057 - "node_modules/micromark-core-commonmark": { 6058 - "version": "2.0.3", 6059 - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", 6060 - "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", 6061 - "funding": [ 6062 - { 6063 - "type": "GitHub Sponsors", 6064 - "url": "https://github.com/sponsors/unifiedjs" 6065 - }, 6066 - { 6067 - "type": "OpenCollective", 6068 - "url": "https://opencollective.com/unified" 6069 - } 6070 - ], 6071 - "license": "MIT", 6072 - "dependencies": { 6073 - "decode-named-character-reference": "^1.0.0", 6074 - "devlop": "^1.0.0", 6075 - "micromark-factory-destination": "^2.0.0", 6076 - "micromark-factory-label": "^2.0.0", 6077 - "micromark-factory-space": "^2.0.0", 6078 - "micromark-factory-title": "^2.0.0", 6079 - "micromark-factory-whitespace": "^2.0.0", 6080 - "micromark-util-character": "^2.0.0", 6081 - "micromark-util-chunked": "^2.0.0", 6082 - "micromark-util-classify-character": "^2.0.0", 6083 - "micromark-util-html-tag-name": "^2.0.0", 6084 - "micromark-util-normalize-identifier": "^2.0.0", 6085 - "micromark-util-resolve-all": "^2.0.0", 6086 - "micromark-util-subtokenize": "^2.0.0", 6087 - "micromark-util-symbol": "^2.0.0", 6088 - "micromark-util-types": "^2.0.0" 6089 - } 6090 - }, 6091 - "node_modules/micromark-extension-directive": { 6092 - "version": "3.0.2", 6093 - "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz", 6094 - "integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==", 6095 - "license": "MIT", 6096 - "dependencies": { 6097 - "devlop": "^1.0.0", 6098 - "micromark-factory-space": "^2.0.0", 6099 - "micromark-factory-whitespace": "^2.0.0", 6100 - "micromark-util-character": "^2.0.0", 6101 - "micromark-util-symbol": "^2.0.0", 6102 - "micromark-util-types": "^2.0.0", 6103 - "parse-entities": "^4.0.0" 6104 - }, 6105 - "funding": { 6106 - "type": "opencollective", 6107 - "url": "https://opencollective.com/unified" 6108 - } 6109 - }, 6110 - "node_modules/micromark-extension-gfm": { 6111 - "version": "3.0.0", 6112 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", 6113 - "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", 6114 - "license": "MIT", 6115 - "dependencies": { 6116 - "micromark-extension-gfm-autolink-literal": "^2.0.0", 6117 - "micromark-extension-gfm-footnote": "^2.0.0", 6118 - "micromark-extension-gfm-strikethrough": "^2.0.0", 6119 - "micromark-extension-gfm-table": "^2.0.0", 6120 - "micromark-extension-gfm-tagfilter": "^2.0.0", 6121 - "micromark-extension-gfm-task-list-item": "^2.0.0", 6122 - "micromark-util-combine-extensions": "^2.0.0", 6123 - "micromark-util-types": "^2.0.0" 6124 - }, 6125 - "funding": { 6126 - "type": "opencollective", 6127 - "url": "https://opencollective.com/unified" 6128 - } 6129 - }, 6130 - "node_modules/micromark-extension-gfm-autolink-literal": { 6131 - "version": "2.1.0", 6132 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", 6133 - "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", 6134 - "license": "MIT", 6135 - "dependencies": { 6136 - "micromark-util-character": "^2.0.0", 6137 - "micromark-util-sanitize-uri": "^2.0.0", 6138 - "micromark-util-symbol": "^2.0.0", 6139 - "micromark-util-types": "^2.0.0" 6140 - }, 6141 - "funding": { 6142 - "type": "opencollective", 6143 - "url": "https://opencollective.com/unified" 6144 - } 6145 - }, 6146 - "node_modules/micromark-extension-gfm-footnote": { 6147 - "version": "2.1.0", 6148 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", 6149 - "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", 6150 - "license": "MIT", 6151 - "dependencies": { 6152 - "devlop": "^1.0.0", 6153 - "micromark-core-commonmark": "^2.0.0", 6154 - "micromark-factory-space": "^2.0.0", 6155 - "micromark-util-character": "^2.0.0", 6156 - "micromark-util-normalize-identifier": "^2.0.0", 6157 - "micromark-util-sanitize-uri": "^2.0.0", 6158 - "micromark-util-symbol": "^2.0.0", 6159 - "micromark-util-types": "^2.0.0" 6160 - }, 6161 - "funding": { 6162 - "type": "opencollective", 6163 - "url": "https://opencollective.com/unified" 6164 - } 6165 - }, 6166 - "node_modules/micromark-extension-gfm-strikethrough": { 6167 - "version": "2.1.0", 6168 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", 6169 - "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", 6170 - "license": "MIT", 6171 - "dependencies": { 6172 - "devlop": "^1.0.0", 6173 - "micromark-util-chunked": "^2.0.0", 6174 - "micromark-util-classify-character": "^2.0.0", 6175 - "micromark-util-resolve-all": "^2.0.0", 6176 - "micromark-util-symbol": "^2.0.0", 6177 - "micromark-util-types": "^2.0.0" 6178 - }, 6179 - "funding": { 6180 - "type": "opencollective", 6181 - "url": "https://opencollective.com/unified" 6182 - } 6183 - }, 6184 - "node_modules/micromark-extension-gfm-table": { 6185 - "version": "2.1.1", 6186 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", 6187 - "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", 6188 - "license": "MIT", 6189 - "dependencies": { 6190 - "devlop": "^1.0.0", 6191 - "micromark-factory-space": "^2.0.0", 6192 - "micromark-util-character": "^2.0.0", 6193 - "micromark-util-symbol": "^2.0.0", 6194 - "micromark-util-types": "^2.0.0" 6195 - }, 6196 - "funding": { 6197 - "type": "opencollective", 6198 - "url": "https://opencollective.com/unified" 6199 - } 6200 - }, 6201 - "node_modules/micromark-extension-gfm-tagfilter": { 6202 - "version": "2.0.0", 6203 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", 6204 - "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", 6205 - "license": "MIT", 6206 - "dependencies": { 6207 - "micromark-util-types": "^2.0.0" 6208 - }, 6209 - "funding": { 6210 - "type": "opencollective", 6211 - "url": "https://opencollective.com/unified" 6212 - } 6213 - }, 6214 - "node_modules/micromark-extension-gfm-task-list-item": { 6215 - "version": "2.1.0", 6216 - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", 6217 - "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", 6218 - "license": "MIT", 6219 - "dependencies": { 6220 - "devlop": "^1.0.0", 6221 - "micromark-factory-space": "^2.0.0", 6222 - "micromark-util-character": "^2.0.0", 6223 - "micromark-util-symbol": "^2.0.0", 6224 - "micromark-util-types": "^2.0.0" 6225 - }, 6226 - "funding": { 6227 - "type": "opencollective", 6228 - "url": "https://opencollective.com/unified" 6229 - } 6230 - }, 6231 - "node_modules/micromark-extension-mdx-expression": { 6232 - "version": "3.0.1", 6233 - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz", 6234 - "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==", 6235 - "funding": [ 6236 - { 6237 - "type": "GitHub Sponsors", 6238 - "url": "https://github.com/sponsors/unifiedjs" 6239 - }, 6240 - { 6241 - "type": "OpenCollective", 6242 - "url": "https://opencollective.com/unified" 6243 - } 6244 - ], 6245 - "license": "MIT", 6246 - "dependencies": { 6247 - "@types/estree": "^1.0.0", 6248 - "devlop": "^1.0.0", 6249 - "micromark-factory-mdx-expression": "^2.0.0", 6250 - "micromark-factory-space": "^2.0.0", 6251 - "micromark-util-character": "^2.0.0", 6252 - "micromark-util-events-to-acorn": "^2.0.0", 6253 - "micromark-util-symbol": "^2.0.0", 6254 - "micromark-util-types": "^2.0.0" 6255 - } 6256 - }, 6257 - "node_modules/micromark-extension-mdx-jsx": { 6258 - "version": "3.0.2", 6259 - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz", 6260 - "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==", 6261 - "license": "MIT", 6262 - "dependencies": { 6263 - "@types/estree": "^1.0.0", 6264 - "devlop": "^1.0.0", 6265 - "estree-util-is-identifier-name": "^3.0.0", 6266 - "micromark-factory-mdx-expression": "^2.0.0", 6267 - "micromark-factory-space": "^2.0.0", 6268 - "micromark-util-character": "^2.0.0", 6269 - "micromark-util-events-to-acorn": "^2.0.0", 6270 - "micromark-util-symbol": "^2.0.0", 6271 - "micromark-util-types": "^2.0.0", 6272 - "vfile-message": "^4.0.0" 6273 - }, 6274 - "funding": { 6275 - "type": "opencollective", 6276 - "url": "https://opencollective.com/unified" 6277 - } 6278 - }, 6279 - "node_modules/micromark-extension-mdx-md": { 6280 - "version": "2.0.0", 6281 - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", 6282 - "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", 6283 - "license": "MIT", 6284 - "dependencies": { 6285 - "micromark-util-types": "^2.0.0" 6286 - }, 6287 - "funding": { 6288 - "type": "opencollective", 6289 - "url": "https://opencollective.com/unified" 6290 - } 6291 - }, 6292 - "node_modules/micromark-extension-mdxjs": { 6293 - "version": "3.0.0", 6294 - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", 6295 - "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", 6296 - "license": "MIT", 6297 - "dependencies": { 6298 - "acorn": "^8.0.0", 6299 - "acorn-jsx": "^5.0.0", 6300 - "micromark-extension-mdx-expression": "^3.0.0", 6301 - "micromark-extension-mdx-jsx": "^3.0.0", 6302 - "micromark-extension-mdx-md": "^2.0.0", 6303 - "micromark-extension-mdxjs-esm": "^3.0.0", 6304 - "micromark-util-combine-extensions": "^2.0.0", 6305 - "micromark-util-types": "^2.0.0" 6306 - }, 6307 - "funding": { 6308 - "type": "opencollective", 6309 - "url": "https://opencollective.com/unified" 6310 - } 6311 - }, 6312 - "node_modules/micromark-extension-mdxjs-esm": { 6313 - "version": "3.0.0", 6314 - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", 6315 - "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", 6316 - "license": "MIT", 6317 - "dependencies": { 6318 - "@types/estree": "^1.0.0", 6319 - "devlop": "^1.0.0", 6320 - "micromark-core-commonmark": "^2.0.0", 6321 - "micromark-util-character": "^2.0.0", 6322 - "micromark-util-events-to-acorn": "^2.0.0", 6323 - "micromark-util-symbol": "^2.0.0", 6324 - "micromark-util-types": "^2.0.0", 6325 - "unist-util-position-from-estree": "^2.0.0", 6326 - "vfile-message": "^4.0.0" 6327 - }, 6328 - "funding": { 6329 - "type": "opencollective", 6330 - "url": "https://opencollective.com/unified" 6331 - } 6332 - }, 6333 - "node_modules/micromark-factory-destination": { 6334 - "version": "2.0.1", 6335 - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", 6336 - "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", 6337 - "funding": [ 6338 - { 6339 - "type": "GitHub Sponsors", 6340 - "url": "https://github.com/sponsors/unifiedjs" 6341 - }, 6342 - { 6343 - "type": "OpenCollective", 6344 - "url": "https://opencollective.com/unified" 6345 - } 6346 - ], 6347 - "license": "MIT", 6348 - "dependencies": { 6349 - "micromark-util-character": "^2.0.0", 6350 - "micromark-util-symbol": "^2.0.0", 6351 - "micromark-util-types": "^2.0.0" 6352 - } 6353 - }, 6354 - "node_modules/micromark-factory-label": { 6355 - "version": "2.0.1", 6356 - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", 6357 - "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", 6358 - "funding": [ 6359 - { 6360 - "type": "GitHub Sponsors", 6361 - "url": "https://github.com/sponsors/unifiedjs" 6362 - }, 6363 - { 6364 - "type": "OpenCollective", 6365 - "url": "https://opencollective.com/unified" 6366 - } 6367 - ], 6368 - "license": "MIT", 6369 - "dependencies": { 6370 - "devlop": "^1.0.0", 6371 - "micromark-util-character": "^2.0.0", 6372 - "micromark-util-symbol": "^2.0.0", 6373 - "micromark-util-types": "^2.0.0" 6374 - } 6375 - }, 6376 - "node_modules/micromark-factory-mdx-expression": { 6377 - "version": "2.0.3", 6378 - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz", 6379 - "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==", 6380 - "funding": [ 6381 - { 6382 - "type": "GitHub Sponsors", 6383 - "url": "https://github.com/sponsors/unifiedjs" 6384 - }, 6385 - { 6386 - "type": "OpenCollective", 6387 - "url": "https://opencollective.com/unified" 6388 - } 6389 - ], 6390 - "license": "MIT", 6391 - "dependencies": { 6392 - "@types/estree": "^1.0.0", 6393 - "devlop": "^1.0.0", 6394 - "micromark-factory-space": "^2.0.0", 6395 - "micromark-util-character": "^2.0.0", 6396 - "micromark-util-events-to-acorn": "^2.0.0", 6397 - "micromark-util-symbol": "^2.0.0", 6398 - "micromark-util-types": "^2.0.0", 6399 - "unist-util-position-from-estree": "^2.0.0", 6400 - "vfile-message": "^4.0.0" 6401 - } 6402 - }, 6403 - "node_modules/micromark-factory-space": { 6404 - "version": "2.0.1", 6405 - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", 6406 - "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", 6407 - "funding": [ 6408 - { 6409 - "type": "GitHub Sponsors", 6410 - "url": "https://github.com/sponsors/unifiedjs" 6411 - }, 6412 - { 6413 - "type": "OpenCollective", 6414 - "url": "https://opencollective.com/unified" 6415 - } 6416 - ], 6417 - "license": "MIT", 6418 - "dependencies": { 6419 - "micromark-util-character": "^2.0.0", 6420 - "micromark-util-types": "^2.0.0" 6421 - } 6422 - }, 6423 - "node_modules/micromark-factory-title": { 6424 - "version": "2.0.1", 6425 - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", 6426 - "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", 6427 - "funding": [ 6428 - { 6429 - "type": "GitHub Sponsors", 6430 - "url": "https://github.com/sponsors/unifiedjs" 6431 - }, 6432 - { 6433 - "type": "OpenCollective", 6434 - "url": "https://opencollective.com/unified" 6435 - } 6436 - ], 6437 - "license": "MIT", 6438 - "dependencies": { 6439 - "micromark-factory-space": "^2.0.0", 6440 - "micromark-util-character": "^2.0.0", 6441 - "micromark-util-symbol": "^2.0.0", 6442 - "micromark-util-types": "^2.0.0" 6443 - } 6444 - }, 6445 - "node_modules/micromark-factory-whitespace": { 6446 - "version": "2.0.1", 6447 - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", 6448 - "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", 6449 - "funding": [ 6450 - { 6451 - "type": "GitHub Sponsors", 6452 - "url": "https://github.com/sponsors/unifiedjs" 6453 - }, 6454 - { 6455 - "type": "OpenCollective", 6456 - "url": "https://opencollective.com/unified" 6457 - } 6458 - ], 6459 - "license": "MIT", 6460 - "dependencies": { 6461 - "micromark-factory-space": "^2.0.0", 6462 - "micromark-util-character": "^2.0.0", 6463 - "micromark-util-symbol": "^2.0.0", 6464 - "micromark-util-types": "^2.0.0" 6465 - } 6466 - }, 6467 3461 "node_modules/micromark-util-character": { 6468 3462 "version": "2.1.1", 6469 3463 "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", ··· 6484 3478 "micromark-util-types": "^2.0.0" 6485 3479 } 6486 3480 }, 6487 - "node_modules/micromark-util-chunked": { 6488 - "version": "2.0.1", 6489 - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", 6490 - "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", 6491 - "funding": [ 6492 - { 6493 - "type": "GitHub Sponsors", 6494 - "url": "https://github.com/sponsors/unifiedjs" 6495 - }, 6496 - { 6497 - "type": "OpenCollective", 6498 - "url": "https://opencollective.com/unified" 6499 - } 6500 - ], 6501 - "license": "MIT", 6502 - "dependencies": { 6503 - "micromark-util-symbol": "^2.0.0" 6504 - } 6505 - }, 6506 - "node_modules/micromark-util-classify-character": { 6507 - "version": "2.0.1", 6508 - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", 6509 - "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", 6510 - "funding": [ 6511 - { 6512 - "type": "GitHub Sponsors", 6513 - "url": "https://github.com/sponsors/unifiedjs" 6514 - }, 6515 - { 6516 - "type": "OpenCollective", 6517 - "url": "https://opencollective.com/unified" 6518 - } 6519 - ], 6520 - "license": "MIT", 6521 - "dependencies": { 6522 - "micromark-util-character": "^2.0.0", 6523 - "micromark-util-symbol": "^2.0.0", 6524 - "micromark-util-types": "^2.0.0" 6525 - } 6526 - }, 6527 - "node_modules/micromark-util-combine-extensions": { 6528 - "version": "2.0.1", 6529 - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", 6530 - "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", 6531 - "funding": [ 6532 - { 6533 - "type": "GitHub Sponsors", 6534 - "url": "https://github.com/sponsors/unifiedjs" 6535 - }, 6536 - { 6537 - "type": "OpenCollective", 6538 - "url": "https://opencollective.com/unified" 6539 - } 6540 - ], 6541 - "license": "MIT", 6542 - "dependencies": { 6543 - "micromark-util-chunked": "^2.0.0", 6544 - "micromark-util-types": "^2.0.0" 6545 - } 6546 - }, 6547 - "node_modules/micromark-util-decode-numeric-character-reference": { 6548 - "version": "2.0.2", 6549 - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", 6550 - "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", 6551 - "funding": [ 6552 - { 6553 - "type": "GitHub Sponsors", 6554 - "url": "https://github.com/sponsors/unifiedjs" 6555 - }, 6556 - { 6557 - "type": "OpenCollective", 6558 - "url": "https://opencollective.com/unified" 6559 - } 6560 - ], 6561 - "license": "MIT", 6562 - "dependencies": { 6563 - "micromark-util-symbol": "^2.0.0" 6564 - } 6565 - }, 6566 - "node_modules/micromark-util-decode-string": { 6567 - "version": "2.0.1", 6568 - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", 6569 - "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", 6570 - "funding": [ 6571 - { 6572 - "type": "GitHub Sponsors", 6573 - "url": "https://github.com/sponsors/unifiedjs" 6574 - }, 6575 - { 6576 - "type": "OpenCollective", 6577 - "url": "https://opencollective.com/unified" 6578 - } 6579 - ], 6580 - "license": "MIT", 6581 - "dependencies": { 6582 - "decode-named-character-reference": "^1.0.0", 6583 - "micromark-util-character": "^2.0.0", 6584 - "micromark-util-decode-numeric-character-reference": "^2.0.0", 6585 - "micromark-util-symbol": "^2.0.0" 6586 - } 6587 - }, 6588 3481 "node_modules/micromark-util-encode": { 6589 3482 "version": "2.0.1", 6590 3483 "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", ··· 6601 3494 ], 6602 3495 "license": "MIT" 6603 3496 }, 6604 - "node_modules/micromark-util-events-to-acorn": { 6605 - "version": "2.0.3", 6606 - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz", 6607 - "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==", 6608 - "funding": [ 6609 - { 6610 - "type": "GitHub Sponsors", 6611 - "url": "https://github.com/sponsors/unifiedjs" 6612 - }, 6613 - { 6614 - "type": "OpenCollective", 6615 - "url": "https://opencollective.com/unified" 6616 - } 6617 - ], 6618 - "license": "MIT", 6619 - "dependencies": { 6620 - "@types/estree": "^1.0.0", 6621 - "@types/unist": "^3.0.0", 6622 - "devlop": "^1.0.0", 6623 - "estree-util-visit": "^2.0.0", 6624 - "micromark-util-symbol": "^2.0.0", 6625 - "micromark-util-types": "^2.0.0", 6626 - "vfile-message": "^4.0.0" 6627 - } 6628 - }, 6629 - "node_modules/micromark-util-html-tag-name": { 6630 - "version": "2.0.1", 6631 - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", 6632 - "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", 6633 - "funding": [ 6634 - { 6635 - "type": "GitHub Sponsors", 6636 - "url": "https://github.com/sponsors/unifiedjs" 6637 - }, 6638 - { 6639 - "type": "OpenCollective", 6640 - "url": "https://opencollective.com/unified" 6641 - } 6642 - ], 6643 - "license": "MIT" 6644 - }, 6645 - "node_modules/micromark-util-normalize-identifier": { 6646 - "version": "2.0.1", 6647 - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", 6648 - "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", 6649 - "funding": [ 6650 - { 6651 - "type": "GitHub Sponsors", 6652 - "url": "https://github.com/sponsors/unifiedjs" 6653 - }, 6654 - { 6655 - "type": "OpenCollective", 6656 - "url": "https://opencollective.com/unified" 6657 - } 6658 - ], 6659 - "license": "MIT", 6660 - "dependencies": { 6661 - "micromark-util-symbol": "^2.0.0" 6662 - } 6663 - }, 6664 - "node_modules/micromark-util-resolve-all": { 6665 - "version": "2.0.1", 6666 - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", 6667 - "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", 6668 - "funding": [ 6669 - { 6670 - "type": "GitHub Sponsors", 6671 - "url": "https://github.com/sponsors/unifiedjs" 6672 - }, 6673 - { 6674 - "type": "OpenCollective", 6675 - "url": "https://opencollective.com/unified" 6676 - } 6677 - ], 6678 - "license": "MIT", 6679 - "dependencies": { 6680 - "micromark-util-types": "^2.0.0" 6681 - } 6682 - }, 6683 3497 "node_modules/micromark-util-sanitize-uri": { 6684 3498 "version": "2.0.1", 6685 3499 "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", ··· 6701 3515 "micromark-util-symbol": "^2.0.0" 6702 3516 } 6703 3517 }, 6704 - "node_modules/micromark-util-subtokenize": { 6705 - "version": "2.1.0", 6706 - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", 6707 - "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", 6708 - "funding": [ 6709 - { 6710 - "type": "GitHub Sponsors", 6711 - "url": "https://github.com/sponsors/unifiedjs" 6712 - }, 6713 - { 6714 - "type": "OpenCollective", 6715 - "url": "https://opencollective.com/unified" 6716 - } 6717 - ], 6718 - "license": "MIT", 6719 - "dependencies": { 6720 - "devlop": "^1.0.0", 6721 - "micromark-util-chunked": "^2.0.0", 6722 - "micromark-util-symbol": "^2.0.0", 6723 - "micromark-util-types": "^2.0.0" 6724 - } 6725 - }, 6726 3518 "node_modules/micromark-util-symbol": { 6727 3519 "version": "2.0.1", 6728 3520 "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", ··· 6776 3568 "url": "https://github.com/sponsors/ljharb" 6777 3569 } 6778 3570 }, 3571 + "node_modules/minisearch": { 3572 + "version": "7.2.0", 3573 + "resolved": "https://registry.npmjs.org/minisearch/-/minisearch-7.2.0.tgz", 3574 + "integrity": "sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==", 3575 + "license": "MIT" 3576 + }, 3577 + "node_modules/mitt": { 3578 + "version": "3.0.1", 3579 + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 3580 + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", 3581 + "license": "MIT" 3582 + }, 6779 3583 "node_modules/mkdirp-classic": { 6780 3584 "version": "0.5.3", 6781 3585 "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", 6782 3586 "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", 6783 3587 "license": "MIT" 6784 3588 }, 6785 - "node_modules/mrmime": { 6786 - "version": "2.0.1", 6787 - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 6788 - "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 6789 - "license": "MIT", 6790 - "engines": { 6791 - "node": ">=10" 6792 - } 6793 - }, 6794 - "node_modules/ms": { 6795 - "version": "2.1.3", 6796 - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 6797 - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 6798 - "license": "MIT" 6799 - }, 6800 3589 "node_modules/nanoid": { 6801 3590 "version": "3.3.11", 6802 3591 "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", ··· 6821 3610 "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==", 6822 3611 "license": "MIT" 6823 3612 }, 6824 - "node_modules/neotraverse": { 6825 - "version": "0.6.18", 6826 - "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", 6827 - "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", 6828 - "license": "MIT", 6829 - "engines": { 6830 - "node": ">= 10" 6831 - } 6832 - }, 6833 - "node_modules/nlcst-to-string": { 6834 - "version": "4.0.0", 6835 - "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz", 6836 - "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==", 6837 - "license": "MIT", 6838 - "dependencies": { 6839 - "@types/nlcst": "^2.0.0" 6840 - }, 6841 - "funding": { 6842 - "type": "opencollective", 6843 - "url": "https://opencollective.com/unified" 6844 - } 6845 - }, 6846 3613 "node_modules/node-abi": { 6847 3614 "version": "3.88.0", 6848 3615 "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.88.0.tgz", ··· 6855 3622 "node": ">=10" 6856 3623 } 6857 3624 }, 6858 - "node_modules/node-fetch-native": { 6859 - "version": "1.6.7", 6860 - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz", 6861 - "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", 6862 - "license": "MIT" 6863 - }, 6864 - "node_modules/node-mock-http": { 6865 - "version": "1.0.4", 6866 - "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.4.tgz", 6867 - "integrity": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==", 6868 - "license": "MIT" 6869 - }, 6870 - "node_modules/normalize-path": { 6871 - "version": "3.0.0", 6872 - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 6873 - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 6874 - "license": "MIT", 6875 - "engines": { 6876 - "node": ">=0.10.0" 6877 - } 6878 - }, 6879 - "node_modules/nth-check": { 6880 - "version": "2.1.1", 6881 - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 6882 - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 6883 - "license": "BSD-2-Clause", 6884 - "dependencies": { 6885 - "boolbase": "^1.0.0" 6886 - }, 6887 - "funding": { 6888 - "url": "https://github.com/fb55/nth-check?sponsor=1" 6889 - } 6890 - }, 6891 3625 "node_modules/obug": { 6892 3626 "version": "2.1.1", 6893 3627 "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz", ··· 6898 3632 ], 6899 3633 "license": "MIT" 6900 3634 }, 6901 - "node_modules/ofetch": { 6902 - "version": "1.5.1", 6903 - "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.5.1.tgz", 6904 - "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", 6905 - "license": "MIT", 6906 - "dependencies": { 6907 - "destr": "^2.0.5", 6908 - "node-fetch-native": "^1.6.7", 6909 - "ufo": "^1.6.1" 6910 - } 6911 - }, 6912 - "node_modules/ohash": { 6913 - "version": "2.0.11", 6914 - "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", 6915 - "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", 6916 - "license": "MIT" 6917 - }, 6918 3635 "node_modules/once": { 6919 3636 "version": "1.4.0", 6920 3637 "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", ··· 6922 3639 "license": "ISC", 6923 3640 "dependencies": { 6924 3641 "wrappy": "1" 6925 - } 6926 - }, 6927 - "node_modules/oniguruma-parser": { 6928 - "version": "0.12.1", 6929 - "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz", 6930 - "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==", 6931 - "license": "MIT" 6932 - }, 6933 - "node_modules/oniguruma-to-es": { 6934 - "version": "4.3.4", 6935 - "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.4.tgz", 6936 - "integrity": "sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==", 6937 - "license": "MIT", 6938 - "dependencies": { 6939 - "oniguruma-parser": "^0.12.1", 6940 - "regex": "^6.0.1", 6941 - "regex-recursion": "^6.0.2" 6942 3642 } 6943 3643 }, 6944 3644 "node_modules/oxfmt": { ··· 7026 3726 } 7027 3727 } 7028 3728 }, 7029 - "node_modules/p-limit": { 7030 - "version": "6.2.0", 7031 - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-6.2.0.tgz", 7032 - "integrity": "sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==", 7033 - "license": "MIT", 7034 - "dependencies": { 7035 - "yocto-queue": "^1.1.1" 7036 - }, 7037 - "engines": { 7038 - "node": ">=18" 7039 - }, 7040 - "funding": { 7041 - "url": "https://github.com/sponsors/sindresorhus" 7042 - } 7043 - }, 7044 - "node_modules/p-queue": { 7045 - "version": "8.1.1", 7046 - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", 7047 - "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", 7048 - "license": "MIT", 7049 - "dependencies": { 7050 - "eventemitter3": "^5.0.1", 7051 - "p-timeout": "^6.1.2" 7052 - }, 7053 - "engines": { 7054 - "node": ">=18" 7055 - }, 7056 - "funding": { 7057 - "url": "https://github.com/sponsors/sindresorhus" 7058 - } 7059 - }, 7060 - "node_modules/p-timeout": { 7061 - "version": "6.1.4", 7062 - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", 7063 - "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", 7064 - "license": "MIT", 7065 - "engines": { 7066 - "node": ">=14.16" 7067 - }, 7068 - "funding": { 7069 - "url": "https://github.com/sponsors/sindresorhus" 7070 - } 7071 - }, 7072 - "node_modules/package-manager-detector": { 7073 - "version": "1.6.0", 7074 - "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz", 7075 - "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", 7076 - "license": "MIT" 7077 - }, 7078 - "node_modules/pagefind": { 7079 - "version": "1.4.0", 7080 - "resolved": "https://registry.npmjs.org/pagefind/-/pagefind-1.4.0.tgz", 7081 - "integrity": "sha512-z2kY1mQlL4J8q5EIsQkLzQjilovKzfNVhX8De6oyE6uHpfFtyBaqUpcl/XzJC/4fjD8vBDyh1zolimIcVrCn9g==", 7082 - "license": "MIT", 7083 - "bin": { 7084 - "pagefind": "lib/runner/bin.cjs" 7085 - }, 7086 - "optionalDependencies": { 7087 - "@pagefind/darwin-arm64": "1.4.0", 7088 - "@pagefind/darwin-x64": "1.4.0", 7089 - "@pagefind/freebsd-x64": "1.4.0", 7090 - "@pagefind/linux-arm64": "1.4.0", 7091 - "@pagefind/linux-x64": "1.4.0", 7092 - "@pagefind/windows-x64": "1.4.0" 7093 - } 7094 - }, 7095 3729 "node_modules/pako": { 7096 3730 "version": "0.2.9", 7097 3731 "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", ··· 7108 3742 "hex-rgb": "^4.1.0" 7109 3743 } 7110 3744 }, 7111 - "node_modules/parse-entities": { 7112 - "version": "4.0.2", 7113 - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", 7114 - "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", 7115 - "license": "MIT", 7116 - "dependencies": { 7117 - "@types/unist": "^2.0.0", 7118 - "character-entities-legacy": "^3.0.0", 7119 - "character-reference-invalid": "^2.0.0", 7120 - "decode-named-character-reference": "^1.0.0", 7121 - "is-alphanumerical": "^2.0.0", 7122 - "is-decimal": "^2.0.0", 7123 - "is-hexadecimal": "^2.0.0" 7124 - }, 7125 - "funding": { 7126 - "type": "github", 7127 - "url": "https://github.com/sponsors/wooorm" 7128 - } 7129 - }, 7130 - "node_modules/parse-entities/node_modules/@types/unist": { 7131 - "version": "2.0.11", 7132 - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", 7133 - "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", 7134 - "license": "MIT" 7135 - }, 7136 - "node_modules/parse-latin": { 7137 - "version": "7.0.0", 7138 - "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", 7139 - "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==", 7140 - "license": "MIT", 7141 - "dependencies": { 7142 - "@types/nlcst": "^2.0.0", 7143 - "@types/unist": "^3.0.0", 7144 - "nlcst-to-string": "^4.0.0", 7145 - "unist-util-modify-children": "^4.0.0", 7146 - "unist-util-visit-children": "^3.0.0", 7147 - "vfile": "^6.0.0" 7148 - }, 7149 - "funding": { 7150 - "type": "github", 7151 - "url": "https://github.com/sponsors/wooorm" 7152 - } 7153 - }, 7154 - "node_modules/parse5": { 7155 - "version": "7.3.0", 7156 - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", 7157 - "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", 7158 - "license": "MIT", 7159 - "dependencies": { 7160 - "entities": "^6.0.0" 7161 - }, 7162 - "funding": { 7163 - "url": "https://github.com/inikulin/parse5?sponsor=1" 7164 - } 7165 - }, 7166 3745 "node_modules/pathe": { 7167 3746 "version": "2.0.3", 7168 3747 "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", 7169 3748 "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", 7170 3749 "license": "MIT" 7171 3750 }, 7172 - "node_modules/piccolore": { 7173 - "version": "0.1.3", 7174 - "resolved": "https://registry.npmjs.org/piccolore/-/piccolore-0.1.3.tgz", 7175 - "integrity": "sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==", 7176 - "license": "ISC" 3751 + "node_modules/perfect-debounce": { 3752 + "version": "1.0.0", 3753 + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 3754 + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", 3755 + "license": "MIT" 7177 3756 }, 7178 3757 "node_modules/picocolors": { 7179 3758 "version": "1.1.1", ··· 7221 3800 "node": "^10 || ^12 || >=14" 7222 3801 } 7223 3802 }, 7224 - "node_modules/postcss-nested": { 7225 - "version": "6.2.0", 7226 - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", 7227 - "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", 7228 - "funding": [ 7229 - { 7230 - "type": "opencollective", 7231 - "url": "https://opencollective.com/postcss/" 7232 - }, 7233 - { 7234 - "type": "github", 7235 - "url": "https://github.com/sponsors/ai" 7236 - } 7237 - ], 7238 - "license": "MIT", 7239 - "dependencies": { 7240 - "postcss-selector-parser": "^6.1.1" 7241 - }, 7242 - "engines": { 7243 - "node": ">=12.0" 7244 - }, 7245 - "peerDependencies": { 7246 - "postcss": "^8.2.14" 7247 - } 7248 - }, 7249 - "node_modules/postcss-selector-parser": { 7250 - "version": "6.1.2", 7251 - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 7252 - "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 7253 - "license": "MIT", 7254 - "dependencies": { 7255 - "cssesc": "^3.0.0", 7256 - "util-deprecate": "^1.0.2" 7257 - }, 7258 - "engines": { 7259 - "node": ">=4" 7260 - } 7261 - }, 7262 3803 "node_modules/postcss-value-parser": { 7263 3804 "version": "4.2.0", 7264 3805 "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 7265 3806 "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 7266 3807 "license": "MIT" 3808 + }, 3809 + "node_modules/preact": { 3810 + "version": "10.29.0", 3811 + "resolved": "https://registry.npmjs.org/preact/-/preact-10.29.0.tgz", 3812 + "integrity": "sha512-wSAGyk2bYR1c7t3SZ3jHcM6xy0lcBcDel6lODcs9ME6Th++Dx2KU+6D3HD8wMMKGA8Wpw7OMd3/4RGzYRpzwRg==", 3813 + "license": "MIT", 3814 + "funding": { 3815 + "type": "opencollective", 3816 + "url": "https://opencollective.com/preact" 3817 + } 7267 3818 }, 7268 3819 "node_modules/prebuild-install": { 7269 3820 "version": "7.1.3", ··· 7292 3843 "node": ">=10" 7293 3844 } 7294 3845 }, 7295 - "node_modules/prismjs": { 7296 - "version": "1.30.0", 7297 - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", 7298 - "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", 7299 - "license": "MIT", 7300 - "engines": { 7301 - "node": ">=6" 7302 - } 7303 - }, 7304 - "node_modules/prompts": { 7305 - "version": "2.4.2", 7306 - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 7307 - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 7308 - "license": "MIT", 7309 - "dependencies": { 7310 - "kleur": "^3.0.3", 7311 - "sisteransi": "^1.0.5" 7312 - }, 7313 - "engines": { 7314 - "node": ">= 6" 7315 - } 7316 - }, 7317 3846 "node_modules/property-information": { 7318 3847 "version": "7.1.0", 7319 3848 "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", ··· 7334 3863 "once": "^1.3.1" 7335 3864 } 7336 3865 }, 7337 - "node_modules/radix3": { 7338 - "version": "1.1.2", 7339 - "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", 7340 - "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", 7341 - "license": "MIT" 7342 - }, 7343 3866 "node_modules/rc": { 7344 3867 "version": "1.2.8", 7345 3868 "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", ··· 7369 3892 "node": ">= 6" 7370 3893 } 7371 3894 }, 7372 - "node_modules/readdirp": { 7373 - "version": "5.0.0", 7374 - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz", 7375 - "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", 7376 - "license": "MIT", 7377 - "engines": { 7378 - "node": ">= 20.19.0" 7379 - }, 7380 - "funding": { 7381 - "type": "individual", 7382 - "url": "https://paulmillr.com/funding/" 7383 - } 7384 - }, 7385 - "node_modules/recma-build-jsx": { 7386 - "version": "1.0.0", 7387 - "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz", 7388 - "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==", 7389 - "license": "MIT", 7390 - "dependencies": { 7391 - "@types/estree": "^1.0.0", 7392 - "estree-util-build-jsx": "^3.0.0", 7393 - "vfile": "^6.0.0" 7394 - }, 7395 - "funding": { 7396 - "type": "opencollective", 7397 - "url": "https://opencollective.com/unified" 7398 - } 7399 - }, 7400 - "node_modules/recma-jsx": { 7401 - "version": "1.0.1", 7402 - "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz", 7403 - "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==", 7404 - "license": "MIT", 7405 - "dependencies": { 7406 - "acorn-jsx": "^5.0.0", 7407 - "estree-util-to-js": "^2.0.0", 7408 - "recma-parse": "^1.0.0", 7409 - "recma-stringify": "^1.0.0", 7410 - "unified": "^11.0.0" 7411 - }, 7412 - "funding": { 7413 - "type": "opencollective", 7414 - "url": "https://opencollective.com/unified" 7415 - }, 7416 - "peerDependencies": { 7417 - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 7418 - } 7419 - }, 7420 - "node_modules/recma-parse": { 7421 - "version": "1.0.0", 7422 - "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz", 7423 - "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==", 7424 - "license": "MIT", 7425 - "dependencies": { 7426 - "@types/estree": "^1.0.0", 7427 - "esast-util-from-js": "^2.0.0", 7428 - "unified": "^11.0.0", 7429 - "vfile": "^6.0.0" 7430 - }, 7431 - "funding": { 7432 - "type": "opencollective", 7433 - "url": "https://opencollective.com/unified" 7434 - } 7435 - }, 7436 - "node_modules/recma-stringify": { 7437 - "version": "1.0.0", 7438 - "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz", 7439 - "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==", 7440 - "license": "MIT", 7441 - "dependencies": { 7442 - "@types/estree": "^1.0.0", 7443 - "estree-util-to-js": "^2.0.0", 7444 - "unified": "^11.0.0", 7445 - "vfile": "^6.0.0" 7446 - }, 7447 - "funding": { 7448 - "type": "opencollective", 7449 - "url": "https://opencollective.com/unified" 7450 - } 7451 - }, 7452 3895 "node_modules/regex": { 7453 3896 "version": "6.1.0", 7454 3897 "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", ··· 7473 3916 "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", 7474 3917 "license": "MIT" 7475 3918 }, 7476 - "node_modules/rehype": { 7477 - "version": "13.0.2", 7478 - "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz", 7479 - "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==", 7480 - "license": "MIT", 7481 - "dependencies": { 7482 - "@types/hast": "^3.0.0", 7483 - "rehype-parse": "^9.0.0", 7484 - "rehype-stringify": "^10.0.0", 7485 - "unified": "^11.0.0" 7486 - }, 7487 - "funding": { 7488 - "type": "opencollective", 7489 - "url": "https://opencollective.com/unified" 7490 - } 7491 - }, 7492 - "node_modules/rehype-expressive-code": { 7493 - "version": "0.41.7", 7494 - "resolved": "https://registry.npmjs.org/rehype-expressive-code/-/rehype-expressive-code-0.41.7.tgz", 7495 - "integrity": "sha512-25f8ZMSF1d9CMscX7Cft0TSQIqdwjce2gDOvQ+d/w0FovsMwrSt3ODP4P3Z7wO1jsIJ4eYyaDRnIR/27bd/EMQ==", 7496 - "license": "MIT", 7497 - "dependencies": { 7498 - "expressive-code": "^0.41.7" 7499 - } 7500 - }, 7501 - "node_modules/rehype-format": { 7502 - "version": "5.0.1", 7503 - "resolved": "https://registry.npmjs.org/rehype-format/-/rehype-format-5.0.1.tgz", 7504 - "integrity": "sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==", 7505 - "license": "MIT", 7506 - "dependencies": { 7507 - "@types/hast": "^3.0.0", 7508 - "hast-util-format": "^1.0.0" 7509 - }, 7510 - "funding": { 7511 - "type": "opencollective", 7512 - "url": "https://opencollective.com/unified" 7513 - } 7514 - }, 7515 - "node_modules/rehype-parse": { 7516 - "version": "9.0.1", 7517 - "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz", 7518 - "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", 7519 - "license": "MIT", 7520 - "dependencies": { 7521 - "@types/hast": "^3.0.0", 7522 - "hast-util-from-html": "^2.0.0", 7523 - "unified": "^11.0.0" 7524 - }, 7525 - "funding": { 7526 - "type": "opencollective", 7527 - "url": "https://opencollective.com/unified" 7528 - } 7529 - }, 7530 - "node_modules/rehype-raw": { 7531 - "version": "7.0.0", 7532 - "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", 7533 - "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", 7534 - "license": "MIT", 7535 - "dependencies": { 7536 - "@types/hast": "^3.0.0", 7537 - "hast-util-raw": "^9.0.0", 7538 - "vfile": "^6.0.0" 7539 - }, 7540 - "funding": { 7541 - "type": "opencollective", 7542 - "url": "https://opencollective.com/unified" 7543 - } 7544 - }, 7545 - "node_modules/rehype-recma": { 7546 - "version": "1.0.0", 7547 - "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz", 7548 - "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==", 7549 - "license": "MIT", 7550 - "dependencies": { 7551 - "@types/estree": "^1.0.0", 7552 - "@types/hast": "^3.0.0", 7553 - "hast-util-to-estree": "^3.0.0" 7554 - }, 7555 - "funding": { 7556 - "type": "opencollective", 7557 - "url": "https://opencollective.com/unified" 7558 - } 7559 - }, 7560 - "node_modules/rehype-stringify": { 7561 - "version": "10.0.1", 7562 - "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", 7563 - "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", 7564 - "license": "MIT", 7565 - "dependencies": { 7566 - "@types/hast": "^3.0.0", 7567 - "hast-util-to-html": "^9.0.0", 7568 - "unified": "^11.0.0" 7569 - }, 7570 - "funding": { 7571 - "type": "opencollective", 7572 - "url": "https://opencollective.com/unified" 7573 - } 7574 - }, 7575 - "node_modules/remark-directive": { 7576 - "version": "3.0.1", 7577 - "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.1.tgz", 7578 - "integrity": "sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A==", 7579 - "license": "MIT", 7580 - "dependencies": { 7581 - "@types/mdast": "^4.0.0", 7582 - "mdast-util-directive": "^3.0.0", 7583 - "micromark-extension-directive": "^3.0.0", 7584 - "unified": "^11.0.0" 7585 - }, 7586 - "funding": { 7587 - "type": "opencollective", 7588 - "url": "https://opencollective.com/unified" 7589 - } 7590 - }, 7591 - "node_modules/remark-gfm": { 7592 - "version": "4.0.1", 7593 - "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", 7594 - "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", 7595 - "license": "MIT", 7596 - "dependencies": { 7597 - "@types/mdast": "^4.0.0", 7598 - "mdast-util-gfm": "^3.0.0", 7599 - "micromark-extension-gfm": "^3.0.0", 7600 - "remark-parse": "^11.0.0", 7601 - "remark-stringify": "^11.0.0", 7602 - "unified": "^11.0.0" 7603 - }, 7604 - "funding": { 7605 - "type": "opencollective", 7606 - "url": "https://opencollective.com/unified" 7607 - } 7608 - }, 7609 - "node_modules/remark-mdx": { 7610 - "version": "3.1.1", 7611 - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz", 7612 - "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==", 7613 - "license": "MIT", 7614 - "dependencies": { 7615 - "mdast-util-mdx": "^3.0.0", 7616 - "micromark-extension-mdxjs": "^3.0.0" 7617 - }, 7618 - "funding": { 7619 - "type": "opencollective", 7620 - "url": "https://opencollective.com/unified" 7621 - } 7622 - }, 7623 - "node_modules/remark-parse": { 7624 - "version": "11.0.0", 7625 - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", 7626 - "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", 7627 - "license": "MIT", 7628 - "dependencies": { 7629 - "@types/mdast": "^4.0.0", 7630 - "mdast-util-from-markdown": "^2.0.0", 7631 - "micromark-util-types": "^2.0.0", 7632 - "unified": "^11.0.0" 7633 - }, 7634 - "funding": { 7635 - "type": "opencollective", 7636 - "url": "https://opencollective.com/unified" 7637 - } 7638 - }, 7639 - "node_modules/remark-rehype": { 7640 - "version": "11.1.2", 7641 - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", 7642 - "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", 7643 - "license": "MIT", 7644 - "dependencies": { 7645 - "@types/hast": "^3.0.0", 7646 - "@types/mdast": "^4.0.0", 7647 - "mdast-util-to-hast": "^13.0.0", 7648 - "unified": "^11.0.0", 7649 - "vfile": "^6.0.0" 7650 - }, 7651 - "funding": { 7652 - "type": "opencollective", 7653 - "url": "https://opencollective.com/unified" 7654 - } 7655 - }, 7656 - "node_modules/remark-smartypants": { 7657 - "version": "3.0.2", 7658 - "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz", 7659 - "integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==", 7660 - "license": "MIT", 7661 - "dependencies": { 7662 - "retext": "^9.0.0", 7663 - "retext-smartypants": "^6.0.0", 7664 - "unified": "^11.0.4", 7665 - "unist-util-visit": "^5.0.0" 7666 - }, 7667 - "engines": { 7668 - "node": ">=16.0.0" 7669 - } 7670 - }, 7671 - "node_modules/remark-stringify": { 7672 - "version": "11.0.0", 7673 - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", 7674 - "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", 7675 - "license": "MIT", 7676 - "dependencies": { 7677 - "@types/mdast": "^4.0.0", 7678 - "mdast-util-to-markdown": "^2.0.0", 7679 - "unified": "^11.0.0" 7680 - }, 7681 - "funding": { 7682 - "type": "opencollective", 7683 - "url": "https://opencollective.com/unified" 7684 - } 7685 - }, 7686 - "node_modules/retext": { 7687 - "version": "9.0.0", 7688 - "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", 7689 - "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", 7690 - "license": "MIT", 7691 - "dependencies": { 7692 - "@types/nlcst": "^2.0.0", 7693 - "retext-latin": "^4.0.0", 7694 - "retext-stringify": "^4.0.0", 7695 - "unified": "^11.0.0" 7696 - }, 7697 - "funding": { 7698 - "type": "opencollective", 7699 - "url": "https://opencollective.com/unified" 7700 - } 7701 - }, 7702 - "node_modules/retext-latin": { 7703 - "version": "4.0.0", 7704 - "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz", 7705 - "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==", 7706 - "license": "MIT", 7707 - "dependencies": { 7708 - "@types/nlcst": "^2.0.0", 7709 - "parse-latin": "^7.0.0", 7710 - "unified": "^11.0.0" 7711 - }, 7712 - "funding": { 7713 - "type": "opencollective", 7714 - "url": "https://opencollective.com/unified" 7715 - } 7716 - }, 7717 - "node_modules/retext-smartypants": { 7718 - "version": "6.2.0", 7719 - "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz", 7720 - "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==", 7721 - "license": "MIT", 7722 - "dependencies": { 7723 - "@types/nlcst": "^2.0.0", 7724 - "nlcst-to-string": "^4.0.0", 7725 - "unist-util-visit": "^5.0.0" 7726 - }, 7727 - "funding": { 7728 - "type": "opencollective", 7729 - "url": "https://opencollective.com/unified" 7730 - } 7731 - }, 7732 - "node_modules/retext-stringify": { 7733 - "version": "4.0.0", 7734 - "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz", 7735 - "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==", 7736 - "license": "MIT", 7737 - "dependencies": { 7738 - "@types/nlcst": "^2.0.0", 7739 - "nlcst-to-string": "^4.0.0", 7740 - "unified": "^11.0.0" 7741 - }, 7742 - "funding": { 7743 - "type": "opencollective", 7744 - "url": "https://opencollective.com/unified" 7745 - } 3919 + "node_modules/rfdc": { 3920 + "version": "1.4.1", 3921 + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 3922 + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 3923 + "license": "MIT" 7746 3924 }, 7747 3925 "node_modules/rolldown": { 7748 3926 "version": "1.0.0-rc.9", ··· 7864 4042 "node": ">=16" 7865 4043 } 7866 4044 }, 7867 - "node_modules/sax": { 7868 - "version": "1.5.0", 7869 - "resolved": "https://registry.npmjs.org/sax/-/sax-1.5.0.tgz", 7870 - "integrity": "sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==", 7871 - "license": "BlueOak-1.0.0", 7872 - "engines": { 7873 - "node": ">=11.0.0" 7874 - } 4045 + "node_modules/search-insights": { 4046 + "version": "2.17.3", 4047 + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", 4048 + "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", 4049 + "license": "MIT", 4050 + "peer": true 7875 4051 }, 7876 4052 "node_modules/semver": { 7877 4053 "version": "7.7.4", ··· 7885 4061 "node": ">=10" 7886 4062 } 7887 4063 }, 7888 - "node_modules/sharp": { 7889 - "version": "0.34.5", 7890 - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", 7891 - "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", 7892 - "hasInstallScript": true, 7893 - "license": "Apache-2.0", 7894 - "dependencies": { 7895 - "@img/colour": "^1.0.0", 7896 - "detect-libc": "^2.1.2", 7897 - "semver": "^7.7.3" 7898 - }, 7899 - "engines": { 7900 - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 7901 - }, 7902 - "funding": { 7903 - "url": "https://opencollective.com/libvips" 7904 - }, 7905 - "optionalDependencies": { 7906 - "@img/sharp-darwin-arm64": "0.34.5", 7907 - "@img/sharp-darwin-x64": "0.34.5", 7908 - "@img/sharp-libvips-darwin-arm64": "1.2.4", 7909 - "@img/sharp-libvips-darwin-x64": "1.2.4", 7910 - "@img/sharp-libvips-linux-arm": "1.2.4", 7911 - "@img/sharp-libvips-linux-arm64": "1.2.4", 7912 - "@img/sharp-libvips-linux-ppc64": "1.2.4", 7913 - "@img/sharp-libvips-linux-riscv64": "1.2.4", 7914 - "@img/sharp-libvips-linux-s390x": "1.2.4", 7915 - "@img/sharp-libvips-linux-x64": "1.2.4", 7916 - "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", 7917 - "@img/sharp-libvips-linuxmusl-x64": "1.2.4", 7918 - "@img/sharp-linux-arm": "0.34.5", 7919 - "@img/sharp-linux-arm64": "0.34.5", 7920 - "@img/sharp-linux-ppc64": "0.34.5", 7921 - "@img/sharp-linux-riscv64": "0.34.5", 7922 - "@img/sharp-linux-s390x": "0.34.5", 7923 - "@img/sharp-linux-x64": "0.34.5", 7924 - "@img/sharp-linuxmusl-arm64": "0.34.5", 7925 - "@img/sharp-linuxmusl-x64": "0.34.5", 7926 - "@img/sharp-wasm32": "0.34.5", 7927 - "@img/sharp-win32-arm64": "0.34.5", 7928 - "@img/sharp-win32-ia32": "0.34.5", 7929 - "@img/sharp-win32-x64": "0.34.5" 7930 - } 7931 - }, 7932 - "node_modules/shiki": { 7933 - "version": "3.23.0", 7934 - "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.23.0.tgz", 7935 - "integrity": "sha512-55Dj73uq9ZXL5zyeRPzHQsK7Nbyt6Y10k5s7OjuFZGMhpp4r/rsLBH0o/0fstIzX1Lep9VxefWljK/SKCzygIA==", 7936 - "license": "MIT", 7937 - "dependencies": { 7938 - "@shikijs/core": "3.23.0", 7939 - "@shikijs/engine-javascript": "3.23.0", 7940 - "@shikijs/engine-oniguruma": "3.23.0", 7941 - "@shikijs/langs": "3.23.0", 7942 - "@shikijs/themes": "3.23.0", 7943 - "@shikijs/types": "3.23.0", 7944 - "@shikijs/vscode-textmate": "^10.0.2", 7945 - "@types/hast": "^3.0.4" 7946 - } 7947 - }, 7948 4064 "node_modules/siginfo": { 7949 4065 "version": "2.0.0", 7950 4066 "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", ··· 7996 4112 "simple-concat": "^1.0.0" 7997 4113 } 7998 4114 }, 7999 - "node_modules/sisteransi": { 8000 - "version": "1.0.5", 8001 - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 8002 - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 8003 - "license": "MIT" 8004 - }, 8005 - "node_modules/sitemap": { 8006 - "version": "9.0.1", 8007 - "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-9.0.1.tgz", 8008 - "integrity": "sha512-S6hzjGJSG3d6if0YoF5kTyeRJvia6FSTBroE5fQ0bu1QNxyJqhhinfUsXi9fH3MgtXODWvwo2BDyQSnhPQ88uQ==", 8009 - "license": "MIT", 8010 - "dependencies": { 8011 - "@types/node": "^24.9.2", 8012 - "@types/sax": "^1.2.1", 8013 - "arg": "^5.0.0", 8014 - "sax": "^1.4.1" 8015 - }, 8016 - "bin": { 8017 - "sitemap": "dist/esm/cli.js" 8018 - }, 8019 - "engines": { 8020 - "node": ">=20.19.5", 8021 - "npm": ">=10.8.2" 8022 - } 8023 - }, 8024 - "node_modules/sitemap/node_modules/@types/node": { 8025 - "version": "24.12.0", 8026 - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz", 8027 - "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==", 8028 - "license": "MIT", 8029 - "dependencies": { 8030 - "undici-types": "~7.16.0" 8031 - } 8032 - }, 8033 - "node_modules/sitemap/node_modules/undici-types": { 8034 - "version": "7.16.0", 8035 - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", 8036 - "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", 8037 - "license": "MIT" 8038 - }, 8039 - "node_modules/smol-toml": { 8040 - "version": "1.6.0", 8041 - "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.6.0.tgz", 8042 - "integrity": "sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==", 8043 - "license": "BSD-3-Clause", 8044 - "engines": { 8045 - "node": ">= 18" 8046 - }, 8047 - "funding": { 8048 - "url": "https://github.com/sponsors/cyyynthia" 8049 - } 8050 - }, 8051 - "node_modules/source-map": { 8052 - "version": "0.7.6", 8053 - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", 8054 - "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", 8055 - "license": "BSD-3-Clause", 8056 - "engines": { 8057 - "node": ">= 12" 8058 - } 8059 - }, 8060 4115 "node_modules/source-map-js": { 8061 4116 "version": "1.2.1", 8062 4117 "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", ··· 8076 4131 "url": "https://github.com/sponsors/wooorm" 8077 4132 } 8078 4133 }, 4134 + "node_modules/speakingurl": { 4135 + "version": "14.0.1", 4136 + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", 4137 + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", 4138 + "license": "BSD-3-Clause", 4139 + "engines": { 4140 + "node": ">=0.10.0" 4141 + } 4142 + }, 8079 4143 "node_modules/stackback": { 8080 4144 "version": "0.0.2", 8081 4145 "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", ··· 8088 4152 "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", 8089 4153 "license": "MIT" 8090 4154 }, 8091 - "node_modules/stream-replace-string": { 8092 - "version": "2.0.0", 8093 - "resolved": "https://registry.npmjs.org/stream-replace-string/-/stream-replace-string-2.0.0.tgz", 8094 - "integrity": "sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==", 8095 - "license": "MIT" 8096 - }, 8097 4155 "node_modules/string_decoder": { 8098 4156 "version": "1.3.0", 8099 4157 "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", ··· 8103 4161 "safe-buffer": "~5.2.0" 8104 4162 } 8105 4163 }, 8106 - "node_modules/string-width": { 8107 - "version": "7.2.0", 8108 - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", 8109 - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", 8110 - "license": "MIT", 8111 - "dependencies": { 8112 - "emoji-regex": "^10.3.0", 8113 - "get-east-asian-width": "^1.0.0", 8114 - "strip-ansi": "^7.1.0" 8115 - }, 8116 - "engines": { 8117 - "node": ">=18" 8118 - }, 8119 - "funding": { 8120 - "url": "https://github.com/sponsors/sindresorhus" 8121 - } 8122 - }, 8123 4164 "node_modules/string.prototype.codepointat": { 8124 4165 "version": "0.2.1", 8125 4166 "resolved": "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz", ··· 8140 4181 "url": "https://github.com/sponsors/wooorm" 8141 4182 } 8142 4183 }, 8143 - "node_modules/strip-ansi": { 8144 - "version": "7.2.0", 8145 - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", 8146 - "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", 8147 - "license": "MIT", 8148 - "dependencies": { 8149 - "ansi-regex": "^6.2.2" 8150 - }, 8151 - "engines": { 8152 - "node": ">=12" 8153 - }, 8154 - "funding": { 8155 - "url": "https://github.com/chalk/strip-ansi?sponsor=1" 8156 - } 8157 - }, 8158 4184 "node_modules/strip-json-comments": { 8159 4185 "version": "2.0.1", 8160 4186 "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", ··· 8164 4190 "node": ">=0.10.0" 8165 4191 } 8166 4192 }, 8167 - "node_modules/style-to-js": { 8168 - "version": "1.1.21", 8169 - "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", 8170 - "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", 4193 + "node_modules/superjson": { 4194 + "version": "2.2.6", 4195 + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz", 4196 + "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==", 8171 4197 "license": "MIT", 8172 4198 "dependencies": { 8173 - "style-to-object": "1.0.14" 8174 - } 8175 - }, 8176 - "node_modules/style-to-object": { 8177 - "version": "1.0.14", 8178 - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", 8179 - "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", 8180 - "license": "MIT", 8181 - "dependencies": { 8182 - "inline-style-parser": "0.2.7" 8183 - } 8184 - }, 8185 - "node_modules/svgo": { 8186 - "version": "4.0.1", 8187 - "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz", 8188 - "integrity": "sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==", 8189 - "license": "MIT", 8190 - "dependencies": { 8191 - "commander": "^11.1.0", 8192 - "css-select": "^5.1.0", 8193 - "css-tree": "^3.0.1", 8194 - "css-what": "^6.1.0", 8195 - "csso": "^5.0.5", 8196 - "picocolors": "^1.1.1", 8197 - "sax": "^1.5.0" 8198 - }, 8199 - "bin": { 8200 - "svgo": "bin/svgo.js" 4199 + "copy-anything": "^4" 8201 4200 }, 8202 4201 "engines": { 8203 4202 "node": ">=16" 8204 - }, 8205 - "funding": { 8206 - "type": "opencollective", 8207 - "url": "https://opencollective.com/svgo" 8208 4203 } 4204 + }, 4205 + "node_modules/tabbable": { 4206 + "version": "6.4.0", 4207 + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.4.0.tgz", 4208 + "integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==", 4209 + "license": "MIT" 8209 4210 }, 8210 4211 "node_modules/tar-fs": { 8211 4212 "version": "2.1.4", ··· 8301 4302 "url": "https://github.com/sponsors/wooorm" 8302 4303 } 8303 4304 }, 8304 - "node_modules/trough": { 8305 - "version": "2.2.0", 8306 - "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", 8307 - "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", 8308 - "license": "MIT", 8309 - "funding": { 8310 - "type": "github", 8311 - "url": "https://github.com/sponsors/wooorm" 8312 - } 8313 - }, 8314 - "node_modules/tsconfck": { 8315 - "version": "3.1.6", 8316 - "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", 8317 - "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", 8318 - "license": "MIT", 8319 - "bin": { 8320 - "tsconfck": "bin/tsconfck.js" 8321 - }, 8322 - "engines": { 8323 - "node": "^18 || >=20" 8324 - }, 8325 - "peerDependencies": { 8326 - "typescript": "^5.0.0" 8327 - }, 8328 - "peerDependenciesMeta": { 8329 - "typescript": { 8330 - "optional": true 8331 - } 8332 - } 8333 - }, 8334 4305 "node_modules/tslib": { 8335 4306 "version": "2.8.1", 8336 4307 "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 8337 4308 "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 4309 + "dev": true, 8338 4310 "license": "0BSD", 8339 4311 "optional": true 8340 4312 }, ··· 8350 4322 "node": "*" 8351 4323 } 8352 4324 }, 8353 - "node_modules/type-fest": { 8354 - "version": "4.41.0", 8355 - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", 8356 - "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", 8357 - "license": "(MIT OR CC0-1.0)", 8358 - "engines": { 8359 - "node": ">=16" 8360 - }, 8361 - "funding": { 8362 - "url": "https://github.com/sponsors/sindresorhus" 8363 - } 8364 - }, 8365 4325 "node_modules/typescript": { 8366 4326 "version": "5.9.3", 8367 4327 "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", 8368 4328 "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", 4329 + "devOptional": true, 8369 4330 "license": "Apache-2.0", 8370 4331 "bin": { 8371 4332 "tsc": "bin/tsc", ··· 8375 4336 "node": ">=14.17" 8376 4337 } 8377 4338 }, 8378 - "node_modules/ufo": { 8379 - "version": "1.6.3", 8380 - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.3.tgz", 8381 - "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==", 8382 - "license": "MIT" 8383 - }, 8384 - "node_modules/ultrahtml": { 8385 - "version": "1.6.0", 8386 - "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz", 8387 - "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==", 8388 - "license": "MIT" 8389 - }, 8390 - "node_modules/uncrypto": { 8391 - "version": "0.1.3", 8392 - "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", 8393 - "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", 8394 - "license": "MIT" 8395 - }, 8396 4339 "node_modules/undici-types": { 8397 4340 "version": "7.18.2", 8398 4341 "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", 8399 4342 "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", 4343 + "devOptional": true, 8400 4344 "license": "MIT" 8401 4345 }, 8402 4346 "node_modules/unicode-trie": { ··· 8409 4353 "tiny-inflate": "^1.0.0" 8410 4354 } 8411 4355 }, 8412 - "node_modules/unified": { 8413 - "version": "11.0.5", 8414 - "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", 8415 - "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", 8416 - "license": "MIT", 8417 - "dependencies": { 8418 - "@types/unist": "^3.0.0", 8419 - "bail": "^2.0.0", 8420 - "devlop": "^1.0.0", 8421 - "extend": "^3.0.0", 8422 - "is-plain-obj": "^4.0.0", 8423 - "trough": "^2.0.0", 8424 - "vfile": "^6.0.0" 8425 - }, 8426 - "funding": { 8427 - "type": "opencollective", 8428 - "url": "https://opencollective.com/unified" 8429 - } 8430 - }, 8431 - "node_modules/unifont": { 8432 - "version": "0.7.4", 8433 - "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.7.4.tgz", 8434 - "integrity": "sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==", 8435 - "license": "MIT", 8436 - "dependencies": { 8437 - "css-tree": "^3.1.0", 8438 - "ofetch": "^1.5.1", 8439 - "ohash": "^2.0.11" 8440 - } 8441 - }, 8442 - "node_modules/unist-util-find-after": { 8443 - "version": "5.0.0", 8444 - "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", 8445 - "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", 8446 - "license": "MIT", 8447 - "dependencies": { 8448 - "@types/unist": "^3.0.0", 8449 - "unist-util-is": "^6.0.0" 8450 - }, 8451 - "funding": { 8452 - "type": "opencollective", 8453 - "url": "https://opencollective.com/unified" 8454 - } 8455 - }, 8456 4356 "node_modules/unist-util-is": { 8457 4357 "version": "6.0.1", 8458 4358 "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", ··· 8460 4360 "license": "MIT", 8461 4361 "dependencies": { 8462 4362 "@types/unist": "^3.0.0" 8463 - }, 8464 - "funding": { 8465 - "type": "opencollective", 8466 - "url": "https://opencollective.com/unified" 8467 - } 8468 - }, 8469 - "node_modules/unist-util-modify-children": { 8470 - "version": "4.0.0", 8471 - "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz", 8472 - "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==", 8473 - "license": "MIT", 8474 - "dependencies": { 8475 - "@types/unist": "^3.0.0", 8476 - "array-iterate": "^2.0.0" 8477 4363 }, 8478 4364 "funding": { 8479 4365 "type": "opencollective", ··· 8493 4379 "url": "https://opencollective.com/unified" 8494 4380 } 8495 4381 }, 8496 - "node_modules/unist-util-position-from-estree": { 8497 - "version": "2.0.0", 8498 - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", 8499 - "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", 8500 - "license": "MIT", 8501 - "dependencies": { 8502 - "@types/unist": "^3.0.0" 8503 - }, 8504 - "funding": { 8505 - "type": "opencollective", 8506 - "url": "https://opencollective.com/unified" 8507 - } 8508 - }, 8509 - "node_modules/unist-util-remove-position": { 8510 - "version": "5.0.0", 8511 - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", 8512 - "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", 8513 - "license": "MIT", 8514 - "dependencies": { 8515 - "@types/unist": "^3.0.0", 8516 - "unist-util-visit": "^5.0.0" 8517 - }, 8518 - "funding": { 8519 - "type": "opencollective", 8520 - "url": "https://opencollective.com/unified" 8521 - } 8522 - }, 8523 4382 "node_modules/unist-util-stringify-position": { 8524 4383 "version": "4.0.0", 8525 4384 "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", ··· 8548 4407 "url": "https://opencollective.com/unified" 8549 4408 } 8550 4409 }, 8551 - "node_modules/unist-util-visit-children": { 8552 - "version": "3.0.0", 8553 - "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz", 8554 - "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==", 8555 - "license": "MIT", 8556 - "dependencies": { 8557 - "@types/unist": "^3.0.0" 8558 - }, 8559 - "funding": { 8560 - "type": "opencollective", 8561 - "url": "https://opencollective.com/unified" 8562 - } 8563 - }, 8564 4410 "node_modules/unist-util-visit-parents": { 8565 4411 "version": "6.0.2", 8566 4412 "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", ··· 8575 4421 "url": "https://opencollective.com/unified" 8576 4422 } 8577 4423 }, 8578 - "node_modules/unstorage": { 8579 - "version": "1.17.4", 8580 - "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.4.tgz", 8581 - "integrity": "sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==", 8582 - "license": "MIT", 8583 - "dependencies": { 8584 - "anymatch": "^3.1.3", 8585 - "chokidar": "^5.0.0", 8586 - "destr": "^2.0.5", 8587 - "h3": "^1.15.5", 8588 - "lru-cache": "^11.2.0", 8589 - "node-fetch-native": "^1.6.7", 8590 - "ofetch": "^1.5.1", 8591 - "ufo": "^1.6.3" 8592 - }, 8593 - "peerDependencies": { 8594 - "@azure/app-configuration": "^1.8.0", 8595 - "@azure/cosmos": "^4.2.0", 8596 - "@azure/data-tables": "^13.3.0", 8597 - "@azure/identity": "^4.6.0", 8598 - "@azure/keyvault-secrets": "^4.9.0", 8599 - "@azure/storage-blob": "^12.26.0", 8600 - "@capacitor/preferences": "^6 || ^7 || ^8", 8601 - "@deno/kv": ">=0.9.0", 8602 - "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0", 8603 - "@planetscale/database": "^1.19.0", 8604 - "@upstash/redis": "^1.34.3", 8605 - "@vercel/blob": ">=0.27.1", 8606 - "@vercel/functions": "^2.2.12 || ^3.0.0", 8607 - "@vercel/kv": "^1 || ^2 || ^3", 8608 - "aws4fetch": "^1.0.20", 8609 - "db0": ">=0.2.1", 8610 - "idb-keyval": "^6.2.1", 8611 - "ioredis": "^5.4.2", 8612 - "uploadthing": "^7.4.4" 8613 - }, 8614 - "peerDependenciesMeta": { 8615 - "@azure/app-configuration": { 8616 - "optional": true 8617 - }, 8618 - "@azure/cosmos": { 8619 - "optional": true 8620 - }, 8621 - "@azure/data-tables": { 8622 - "optional": true 8623 - }, 8624 - "@azure/identity": { 8625 - "optional": true 8626 - }, 8627 - "@azure/keyvault-secrets": { 8628 - "optional": true 8629 - }, 8630 - "@azure/storage-blob": { 8631 - "optional": true 8632 - }, 8633 - "@capacitor/preferences": { 8634 - "optional": true 8635 - }, 8636 - "@deno/kv": { 8637 - "optional": true 8638 - }, 8639 - "@netlify/blobs": { 8640 - "optional": true 8641 - }, 8642 - "@planetscale/database": { 8643 - "optional": true 8644 - }, 8645 - "@upstash/redis": { 8646 - "optional": true 8647 - }, 8648 - "@vercel/blob": { 8649 - "optional": true 8650 - }, 8651 - "@vercel/functions": { 8652 - "optional": true 8653 - }, 8654 - "@vercel/kv": { 8655 - "optional": true 8656 - }, 8657 - "aws4fetch": { 8658 - "optional": true 8659 - }, 8660 - "db0": { 8661 - "optional": true 8662 - }, 8663 - "idb-keyval": { 8664 - "optional": true 8665 - }, 8666 - "ioredis": { 8667 - "optional": true 8668 - }, 8669 - "uploadthing": { 8670 - "optional": true 8671 - } 8672 - } 8673 - }, 8674 4424 "node_modules/util-deprecate": { 8675 4425 "version": "1.0.2", 8676 4426 "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", ··· 8685 4435 "dependencies": { 8686 4436 "@types/unist": "^3.0.0", 8687 4437 "vfile-message": "^4.0.0" 8688 - }, 8689 - "funding": { 8690 - "type": "opencollective", 8691 - "url": "https://opencollective.com/unified" 8692 - } 8693 - }, 8694 - "node_modules/vfile-location": { 8695 - "version": "5.0.3", 8696 - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", 8697 - "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", 8698 - "license": "MIT", 8699 - "dependencies": { 8700 - "@types/unist": "^3.0.0", 8701 - "vfile": "^6.0.0" 8702 4438 }, 8703 4439 "funding": { 8704 4440 "type": "opencollective", ··· 9250 4986 "@esbuild/win32-x64": "0.25.12" 9251 4987 } 9252 4988 }, 9253 - "node_modules/vitefu": { 9254 - "version": "1.1.2", 9255 - "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.2.tgz", 9256 - "integrity": "sha512-zpKATdUbzbsycPFBN71nS2uzBUQiVnFoOrr2rvqv34S1lcAgMKKkjWleLGeiJlZ8lwCXvtWaRn7R3ZC16SYRuw==", 4989 + "node_modules/vitepress": { 4990 + "version": "1.6.4", 4991 + "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.6.4.tgz", 4992 + "integrity": "sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==", 4993 + "license": "MIT", 4994 + "dependencies": { 4995 + "@docsearch/css": "3.8.2", 4996 + "@docsearch/js": "3.8.2", 4997 + "@iconify-json/simple-icons": "^1.2.21", 4998 + "@shikijs/core": "^2.1.0", 4999 + "@shikijs/transformers": "^2.1.0", 5000 + "@shikijs/types": "^2.1.0", 5001 + "@types/markdown-it": "^14.1.2", 5002 + "@vitejs/plugin-vue": "^5.2.1", 5003 + "@vue/devtools-api": "^7.7.0", 5004 + "@vue/shared": "^3.5.13", 5005 + "@vueuse/core": "^12.4.0", 5006 + "@vueuse/integrations": "^12.4.0", 5007 + "focus-trap": "^7.6.4", 5008 + "mark.js": "8.11.1", 5009 + "minisearch": "^7.1.1", 5010 + "shiki": "^2.1.0", 5011 + "vite": "^5.4.14", 5012 + "vue": "^3.5.13" 5013 + }, 5014 + "bin": { 5015 + "vitepress": "bin/vitepress.js" 5016 + }, 5017 + "peerDependencies": { 5018 + "markdown-it-mathjax3": "^4", 5019 + "postcss": "^8" 5020 + }, 5021 + "peerDependenciesMeta": { 5022 + "markdown-it-mathjax3": { 5023 + "optional": true 5024 + }, 5025 + "postcss": { 5026 + "optional": true 5027 + } 5028 + } 5029 + }, 5030 + "node_modules/vitepress/node_modules/@esbuild/aix-ppc64": { 5031 + "version": "0.21.5", 5032 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 5033 + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 5034 + "cpu": [ 5035 + "ppc64" 5036 + ], 5037 + "license": "MIT", 5038 + "optional": true, 5039 + "os": [ 5040 + "aix" 5041 + ], 5042 + "engines": { 5043 + "node": ">=12" 5044 + } 5045 + }, 5046 + "node_modules/vitepress/node_modules/@esbuild/android-arm": { 5047 + "version": "0.21.5", 5048 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 5049 + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 5050 + "cpu": [ 5051 + "arm" 5052 + ], 5053 + "license": "MIT", 5054 + "optional": true, 5055 + "os": [ 5056 + "android" 5057 + ], 5058 + "engines": { 5059 + "node": ">=12" 5060 + } 5061 + }, 5062 + "node_modules/vitepress/node_modules/@esbuild/android-arm64": { 5063 + "version": "0.21.5", 5064 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 5065 + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 5066 + "cpu": [ 5067 + "arm64" 5068 + ], 5069 + "license": "MIT", 5070 + "optional": true, 5071 + "os": [ 5072 + "android" 5073 + ], 5074 + "engines": { 5075 + "node": ">=12" 5076 + } 5077 + }, 5078 + "node_modules/vitepress/node_modules/@esbuild/android-x64": { 5079 + "version": "0.21.5", 5080 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 5081 + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 5082 + "cpu": [ 5083 + "x64" 5084 + ], 5085 + "license": "MIT", 5086 + "optional": true, 5087 + "os": [ 5088 + "android" 5089 + ], 5090 + "engines": { 5091 + "node": ">=12" 5092 + } 5093 + }, 5094 + "node_modules/vitepress/node_modules/@esbuild/darwin-arm64": { 5095 + "version": "0.21.5", 5096 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 5097 + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 5098 + "cpu": [ 5099 + "arm64" 5100 + ], 9257 5101 "license": "MIT", 9258 - "workspaces": [ 9259 - "tests/deps/*", 9260 - "tests/projects/*", 9261 - "tests/projects/workspace/packages/*" 5102 + "optional": true, 5103 + "os": [ 5104 + "darwin" 9262 5105 ], 5106 + "engines": { 5107 + "node": ">=12" 5108 + } 5109 + }, 5110 + "node_modules/vitepress/node_modules/@esbuild/darwin-x64": { 5111 + "version": "0.21.5", 5112 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 5113 + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 5114 + "cpu": [ 5115 + "x64" 5116 + ], 5117 + "license": "MIT", 5118 + "optional": true, 5119 + "os": [ 5120 + "darwin" 5121 + ], 5122 + "engines": { 5123 + "node": ">=12" 5124 + } 5125 + }, 5126 + "node_modules/vitepress/node_modules/@esbuild/freebsd-arm64": { 5127 + "version": "0.21.5", 5128 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 5129 + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 5130 + "cpu": [ 5131 + "arm64" 5132 + ], 5133 + "license": "MIT", 5134 + "optional": true, 5135 + "os": [ 5136 + "freebsd" 5137 + ], 5138 + "engines": { 5139 + "node": ">=12" 5140 + } 5141 + }, 5142 + "node_modules/vitepress/node_modules/@esbuild/freebsd-x64": { 5143 + "version": "0.21.5", 5144 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 5145 + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 5146 + "cpu": [ 5147 + "x64" 5148 + ], 5149 + "license": "MIT", 5150 + "optional": true, 5151 + "os": [ 5152 + "freebsd" 5153 + ], 5154 + "engines": { 5155 + "node": ">=12" 5156 + } 5157 + }, 5158 + "node_modules/vitepress/node_modules/@esbuild/linux-arm": { 5159 + "version": "0.21.5", 5160 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 5161 + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 5162 + "cpu": [ 5163 + "arm" 5164 + ], 5165 + "license": "MIT", 5166 + "optional": true, 5167 + "os": [ 5168 + "linux" 5169 + ], 5170 + "engines": { 5171 + "node": ">=12" 5172 + } 5173 + }, 5174 + "node_modules/vitepress/node_modules/@esbuild/linux-arm64": { 5175 + "version": "0.21.5", 5176 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 5177 + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 5178 + "cpu": [ 5179 + "arm64" 5180 + ], 5181 + "license": "MIT", 5182 + "optional": true, 5183 + "os": [ 5184 + "linux" 5185 + ], 5186 + "engines": { 5187 + "node": ">=12" 5188 + } 5189 + }, 5190 + "node_modules/vitepress/node_modules/@esbuild/linux-ia32": { 5191 + "version": "0.21.5", 5192 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 5193 + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 5194 + "cpu": [ 5195 + "ia32" 5196 + ], 5197 + "license": "MIT", 5198 + "optional": true, 5199 + "os": [ 5200 + "linux" 5201 + ], 5202 + "engines": { 5203 + "node": ">=12" 5204 + } 5205 + }, 5206 + "node_modules/vitepress/node_modules/@esbuild/linux-loong64": { 5207 + "version": "0.21.5", 5208 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 5209 + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 5210 + "cpu": [ 5211 + "loong64" 5212 + ], 5213 + "license": "MIT", 5214 + "optional": true, 5215 + "os": [ 5216 + "linux" 5217 + ], 5218 + "engines": { 5219 + "node": ">=12" 5220 + } 5221 + }, 5222 + "node_modules/vitepress/node_modules/@esbuild/linux-mips64el": { 5223 + "version": "0.21.5", 5224 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 5225 + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 5226 + "cpu": [ 5227 + "mips64el" 5228 + ], 5229 + "license": "MIT", 5230 + "optional": true, 5231 + "os": [ 5232 + "linux" 5233 + ], 5234 + "engines": { 5235 + "node": ">=12" 5236 + } 5237 + }, 5238 + "node_modules/vitepress/node_modules/@esbuild/linux-ppc64": { 5239 + "version": "0.21.5", 5240 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 5241 + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 5242 + "cpu": [ 5243 + "ppc64" 5244 + ], 5245 + "license": "MIT", 5246 + "optional": true, 5247 + "os": [ 5248 + "linux" 5249 + ], 5250 + "engines": { 5251 + "node": ">=12" 5252 + } 5253 + }, 5254 + "node_modules/vitepress/node_modules/@esbuild/linux-riscv64": { 5255 + "version": "0.21.5", 5256 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 5257 + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 5258 + "cpu": [ 5259 + "riscv64" 5260 + ], 5261 + "license": "MIT", 5262 + "optional": true, 5263 + "os": [ 5264 + "linux" 5265 + ], 5266 + "engines": { 5267 + "node": ">=12" 5268 + } 5269 + }, 5270 + "node_modules/vitepress/node_modules/@esbuild/linux-s390x": { 5271 + "version": "0.21.5", 5272 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 5273 + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 5274 + "cpu": [ 5275 + "s390x" 5276 + ], 5277 + "license": "MIT", 5278 + "optional": true, 5279 + "os": [ 5280 + "linux" 5281 + ], 5282 + "engines": { 5283 + "node": ">=12" 5284 + } 5285 + }, 5286 + "node_modules/vitepress/node_modules/@esbuild/linux-x64": { 5287 + "version": "0.21.5", 5288 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 5289 + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 5290 + "cpu": [ 5291 + "x64" 5292 + ], 5293 + "license": "MIT", 5294 + "optional": true, 5295 + "os": [ 5296 + "linux" 5297 + ], 5298 + "engines": { 5299 + "node": ">=12" 5300 + } 5301 + }, 5302 + "node_modules/vitepress/node_modules/@esbuild/netbsd-x64": { 5303 + "version": "0.21.5", 5304 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 5305 + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 5306 + "cpu": [ 5307 + "x64" 5308 + ], 5309 + "license": "MIT", 5310 + "optional": true, 5311 + "os": [ 5312 + "netbsd" 5313 + ], 5314 + "engines": { 5315 + "node": ">=12" 5316 + } 5317 + }, 5318 + "node_modules/vitepress/node_modules/@esbuild/openbsd-x64": { 5319 + "version": "0.21.5", 5320 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 5321 + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 5322 + "cpu": [ 5323 + "x64" 5324 + ], 5325 + "license": "MIT", 5326 + "optional": true, 5327 + "os": [ 5328 + "openbsd" 5329 + ], 5330 + "engines": { 5331 + "node": ">=12" 5332 + } 5333 + }, 5334 + "node_modules/vitepress/node_modules/@esbuild/sunos-x64": { 5335 + "version": "0.21.5", 5336 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 5337 + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 5338 + "cpu": [ 5339 + "x64" 5340 + ], 5341 + "license": "MIT", 5342 + "optional": true, 5343 + "os": [ 5344 + "sunos" 5345 + ], 5346 + "engines": { 5347 + "node": ">=12" 5348 + } 5349 + }, 5350 + "node_modules/vitepress/node_modules/@esbuild/win32-arm64": { 5351 + "version": "0.21.5", 5352 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 5353 + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 5354 + "cpu": [ 5355 + "arm64" 5356 + ], 5357 + "license": "MIT", 5358 + "optional": true, 5359 + "os": [ 5360 + "win32" 5361 + ], 5362 + "engines": { 5363 + "node": ">=12" 5364 + } 5365 + }, 5366 + "node_modules/vitepress/node_modules/@esbuild/win32-ia32": { 5367 + "version": "0.21.5", 5368 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 5369 + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 5370 + "cpu": [ 5371 + "ia32" 5372 + ], 5373 + "license": "MIT", 5374 + "optional": true, 5375 + "os": [ 5376 + "win32" 5377 + ], 5378 + "engines": { 5379 + "node": ">=12" 5380 + } 5381 + }, 5382 + "node_modules/vitepress/node_modules/@esbuild/win32-x64": { 5383 + "version": "0.21.5", 5384 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 5385 + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 5386 + "cpu": [ 5387 + "x64" 5388 + ], 5389 + "license": "MIT", 5390 + "optional": true, 5391 + "os": [ 5392 + "win32" 5393 + ], 5394 + "engines": { 5395 + "node": ">=12" 5396 + } 5397 + }, 5398 + "node_modules/vitepress/node_modules/@shikijs/core": { 5399 + "version": "2.5.0", 5400 + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-2.5.0.tgz", 5401 + "integrity": "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==", 5402 + "license": "MIT", 5403 + "dependencies": { 5404 + "@shikijs/engine-javascript": "2.5.0", 5405 + "@shikijs/engine-oniguruma": "2.5.0", 5406 + "@shikijs/types": "2.5.0", 5407 + "@shikijs/vscode-textmate": "^10.0.2", 5408 + "@types/hast": "^3.0.4", 5409 + "hast-util-to-html": "^9.0.4" 5410 + } 5411 + }, 5412 + "node_modules/vitepress/node_modules/@shikijs/engine-javascript": { 5413 + "version": "2.5.0", 5414 + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz", 5415 + "integrity": "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==", 5416 + "license": "MIT", 5417 + "dependencies": { 5418 + "@shikijs/types": "2.5.0", 5419 + "@shikijs/vscode-textmate": "^10.0.2", 5420 + "oniguruma-to-es": "^3.1.0" 5421 + } 5422 + }, 5423 + "node_modules/vitepress/node_modules/@shikijs/engine-oniguruma": { 5424 + "version": "2.5.0", 5425 + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz", 5426 + "integrity": "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==", 5427 + "license": "MIT", 5428 + "dependencies": { 5429 + "@shikijs/types": "2.5.0", 5430 + "@shikijs/vscode-textmate": "^10.0.2" 5431 + } 5432 + }, 5433 + "node_modules/vitepress/node_modules/@shikijs/langs": { 5434 + "version": "2.5.0", 5435 + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-2.5.0.tgz", 5436 + "integrity": "sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==", 5437 + "license": "MIT", 5438 + "dependencies": { 5439 + "@shikijs/types": "2.5.0" 5440 + } 5441 + }, 5442 + "node_modules/vitepress/node_modules/@shikijs/themes": { 5443 + "version": "2.5.0", 5444 + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-2.5.0.tgz", 5445 + "integrity": "sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==", 5446 + "license": "MIT", 5447 + "dependencies": { 5448 + "@shikijs/types": "2.5.0" 5449 + } 5450 + }, 5451 + "node_modules/vitepress/node_modules/@shikijs/types": { 5452 + "version": "2.5.0", 5453 + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-2.5.0.tgz", 5454 + "integrity": "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==", 5455 + "license": "MIT", 5456 + "dependencies": { 5457 + "@shikijs/vscode-textmate": "^10.0.2", 5458 + "@types/hast": "^3.0.4" 5459 + } 5460 + }, 5461 + "node_modules/vitepress/node_modules/emoji-regex-xs": { 5462 + "version": "1.0.0", 5463 + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", 5464 + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", 5465 + "license": "MIT" 5466 + }, 5467 + "node_modules/vitepress/node_modules/esbuild": { 5468 + "version": "0.21.5", 5469 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 5470 + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 5471 + "hasInstallScript": true, 5472 + "license": "MIT", 5473 + "bin": { 5474 + "esbuild": "bin/esbuild" 5475 + }, 5476 + "engines": { 5477 + "node": ">=12" 5478 + }, 5479 + "optionalDependencies": { 5480 + "@esbuild/aix-ppc64": "0.21.5", 5481 + "@esbuild/android-arm": "0.21.5", 5482 + "@esbuild/android-arm64": "0.21.5", 5483 + "@esbuild/android-x64": "0.21.5", 5484 + "@esbuild/darwin-arm64": "0.21.5", 5485 + "@esbuild/darwin-x64": "0.21.5", 5486 + "@esbuild/freebsd-arm64": "0.21.5", 5487 + "@esbuild/freebsd-x64": "0.21.5", 5488 + "@esbuild/linux-arm": "0.21.5", 5489 + "@esbuild/linux-arm64": "0.21.5", 5490 + "@esbuild/linux-ia32": "0.21.5", 5491 + "@esbuild/linux-loong64": "0.21.5", 5492 + "@esbuild/linux-mips64el": "0.21.5", 5493 + "@esbuild/linux-ppc64": "0.21.5", 5494 + "@esbuild/linux-riscv64": "0.21.5", 5495 + "@esbuild/linux-s390x": "0.21.5", 5496 + "@esbuild/linux-x64": "0.21.5", 5497 + "@esbuild/netbsd-x64": "0.21.5", 5498 + "@esbuild/openbsd-x64": "0.21.5", 5499 + "@esbuild/sunos-x64": "0.21.5", 5500 + "@esbuild/win32-arm64": "0.21.5", 5501 + "@esbuild/win32-ia32": "0.21.5", 5502 + "@esbuild/win32-x64": "0.21.5" 5503 + } 5504 + }, 5505 + "node_modules/vitepress/node_modules/oniguruma-to-es": { 5506 + "version": "3.1.1", 5507 + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz", 5508 + "integrity": "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==", 5509 + "license": "MIT", 5510 + "dependencies": { 5511 + "emoji-regex-xs": "^1.0.0", 5512 + "regex": "^6.0.1", 5513 + "regex-recursion": "^6.0.2" 5514 + } 5515 + }, 5516 + "node_modules/vitepress/node_modules/shiki": { 5517 + "version": "2.5.0", 5518 + "resolved": "https://registry.npmjs.org/shiki/-/shiki-2.5.0.tgz", 5519 + "integrity": "sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==", 5520 + "license": "MIT", 5521 + "dependencies": { 5522 + "@shikijs/core": "2.5.0", 5523 + "@shikijs/engine-javascript": "2.5.0", 5524 + "@shikijs/engine-oniguruma": "2.5.0", 5525 + "@shikijs/langs": "2.5.0", 5526 + "@shikijs/themes": "2.5.0", 5527 + "@shikijs/types": "2.5.0", 5528 + "@shikijs/vscode-textmate": "^10.0.2", 5529 + "@types/hast": "^3.0.4" 5530 + } 5531 + }, 5532 + "node_modules/vitepress/node_modules/vite": { 5533 + "version": "5.4.21", 5534 + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", 5535 + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", 5536 + "license": "MIT", 5537 + "dependencies": { 5538 + "esbuild": "^0.21.3", 5539 + "postcss": "^8.4.43", 5540 + "rollup": "^4.20.0" 5541 + }, 5542 + "bin": { 5543 + "vite": "bin/vite.js" 5544 + }, 5545 + "engines": { 5546 + "node": "^18.0.0 || >=20.0.0" 5547 + }, 5548 + "funding": { 5549 + "url": "https://github.com/vitejs/vite?sponsor=1" 5550 + }, 5551 + "optionalDependencies": { 5552 + "fsevents": "~2.3.3" 5553 + }, 9263 5554 "peerDependencies": { 9264 - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta.0" 5555 + "@types/node": "^18.0.0 || >=20.0.0", 5556 + "less": "*", 5557 + "lightningcss": "^1.21.0", 5558 + "sass": "*", 5559 + "sass-embedded": "*", 5560 + "stylus": "*", 5561 + "sugarss": "*", 5562 + "terser": "^5.4.0" 9265 5563 }, 9266 5564 "peerDependenciesMeta": { 9267 - "vite": { 5565 + "@types/node": { 5566 + "optional": true 5567 + }, 5568 + "less": { 5569 + "optional": true 5570 + }, 5571 + "lightningcss": { 5572 + "optional": true 5573 + }, 5574 + "sass": { 5575 + "optional": true 5576 + }, 5577 + "sass-embedded": { 5578 + "optional": true 5579 + }, 5580 + "stylus": { 5581 + "optional": true 5582 + }, 5583 + "sugarss": { 5584 + "optional": true 5585 + }, 5586 + "terser": { 9268 5587 "optional": true 9269 5588 } 9270 5589 } ··· 9346 5665 } 9347 5666 } 9348 5667 }, 9349 - "node_modules/web-namespaces": { 9350 - "version": "2.0.1", 9351 - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", 9352 - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", 5668 + "node_modules/vue": { 5669 + "version": "3.5.30", 5670 + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.30.tgz", 5671 + "integrity": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==", 9353 5672 "license": "MIT", 9354 - "funding": { 9355 - "type": "github", 9356 - "url": "https://github.com/sponsors/wooorm" 9357 - } 9358 - }, 9359 - "node_modules/which-pm-runs": { 9360 - "version": "1.1.0", 9361 - "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", 9362 - "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", 9363 - "license": "MIT", 9364 - "engines": { 9365 - "node": ">=4" 5673 + "dependencies": { 5674 + "@vue/compiler-dom": "3.5.30", 5675 + "@vue/compiler-sfc": "3.5.30", 5676 + "@vue/runtime-dom": "3.5.30", 5677 + "@vue/server-renderer": "3.5.30", 5678 + "@vue/shared": "3.5.30" 5679 + }, 5680 + "peerDependencies": { 5681 + "typescript": "*" 5682 + }, 5683 + "peerDependenciesMeta": { 5684 + "typescript": { 5685 + "optional": true 5686 + } 9366 5687 } 9367 5688 }, 9368 5689 "node_modules/why-is-node-running": { ··· 9381 5702 "node": ">=8" 9382 5703 } 9383 5704 }, 9384 - "node_modules/widest-line": { 9385 - "version": "5.0.0", 9386 - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz", 9387 - "integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==", 9388 - "license": "MIT", 9389 - "dependencies": { 9390 - "string-width": "^7.0.0" 9391 - }, 9392 - "engines": { 9393 - "node": ">=18" 9394 - }, 9395 - "funding": { 9396 - "url": "https://github.com/sponsors/sindresorhus" 9397 - } 9398 - }, 9399 - "node_modules/wrap-ansi": { 9400 - "version": "9.0.2", 9401 - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", 9402 - "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", 9403 - "license": "MIT", 9404 - "dependencies": { 9405 - "ansi-styles": "^6.2.1", 9406 - "string-width": "^7.0.0", 9407 - "strip-ansi": "^7.1.0" 9408 - }, 9409 - "engines": { 9410 - "node": ">=18" 9411 - }, 9412 - "funding": { 9413 - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 9414 - } 9415 - }, 9416 5705 "node_modules/wrappy": { 9417 5706 "version": "1.0.2", 9418 5707 "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 9419 5708 "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 9420 5709 "license": "ISC" 9421 5710 }, 9422 - "node_modules/xxhash-wasm": { 9423 - "version": "1.1.0", 9424 - "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz", 9425 - "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==", 9426 - "license": "MIT" 9427 - }, 9428 5711 "node_modules/yaml": { 9429 5712 "version": "2.8.2", 9430 5713 "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz", ··· 9440 5723 "url": "https://github.com/sponsors/eemeli" 9441 5724 } 9442 5725 }, 9443 - "node_modules/yargs-parser": { 9444 - "version": "21.1.1", 9445 - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 9446 - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 9447 - "license": "ISC", 9448 - "engines": { 9449 - "node": ">=12" 9450 - } 9451 - }, 9452 - "node_modules/yocto-queue": { 9453 - "version": "1.2.2", 9454 - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", 9455 - "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", 9456 - "license": "MIT", 9457 - "engines": { 9458 - "node": ">=12.20" 9459 - }, 9460 - "funding": { 9461 - "url": "https://github.com/sponsors/sindresorhus" 9462 - } 9463 - }, 9464 - "node_modules/yocto-spinner": { 9465 - "version": "0.2.3", 9466 - "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.3.tgz", 9467 - "integrity": "sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==", 9468 - "license": "MIT", 9469 - "dependencies": { 9470 - "yoctocolors": "^2.1.1" 9471 - }, 9472 - "engines": { 9473 - "node": ">=18.19" 9474 - }, 9475 - "funding": { 9476 - "url": "https://github.com/sponsors/sindresorhus" 9477 - } 9478 - }, 9479 - "node_modules/yoctocolors": { 9480 - "version": "2.1.2", 9481 - "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz", 9482 - "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==", 9483 - "license": "MIT", 9484 - "engines": { 9485 - "node": ">=18" 9486 - }, 9487 - "funding": { 9488 - "url": "https://github.com/sponsors/sindresorhus" 9489 - } 9490 - }, 9491 5726 "node_modules/yoga-layout": { 9492 5727 "version": "3.2.1", 9493 5728 "resolved": "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.2.1.tgz", 9494 5729 "integrity": "sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==", 9495 5730 "license": "MIT" 9496 - }, 9497 - "node_modules/zod": { 9498 - "version": "4.3.6", 9499 - "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", 9500 - "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", 9501 - "license": "MIT", 9502 - "funding": { 9503 - "url": "https://github.com/sponsors/colinhacks" 9504 - } 9505 - }, 9506 - "node_modules/zod-to-json-schema": { 9507 - "version": "3.25.1", 9508 - "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz", 9509 - "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==", 9510 - "license": "ISC", 9511 - "peerDependencies": { 9512 - "zod": "^3.25 || ^4" 9513 - } 9514 5731 }, 9515 5732 "node_modules/zwitch": { 9516 5733 "version": "2.0.4", ··· 9554 5771 }, 9555 5772 "packages/hatk": { 9556 5773 "name": "@hatk/hatk", 9557 - "version": "0.0.1-alpha.30", 5774 + "version": "0.0.1-alpha.34", 9558 5775 "license": "MIT", 9559 5776 "dependencies": { 9560 5777 "@bigmoves/lexicon": "^0.2.2",