From 5587dfaab54f6fa08c2d57f8f16bbca6ec20f3ad Mon Sep 17 00:00:00 2001
From: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com>
Date: Mon, 14 Sep 2026 21:36:58 +0200
Subject: [PATCH 1/2] feat: merge har.fyi under docs
---
astro.config.mjs | 47 +
config/last_updated.json | 133 +-
docs/faq.md | 4 +-
package-lock.json | 4607 +++++++++++++++--
package.json | 3 +
public/sitemap.xml | 129 +-
public/static/img/mag.png | Bin 0 -> 10701 bytes
src/assets/mag.png | Bin 0 -> 10701 bytes
src/components/Header.astro | 2 +-
src/components/docs/Header.astro | 318 ++
src/content.config.ts | 7 +
.../guides/bigquery-httparchive-pinned.png | Bin 0 -> 15093 bytes
.../docs/docs/guides/bigquery-pages.png | Bin 0 -> 126337 bytes
.../guides/bigquery-query-in-a-new-tab.png | Bin 0 -> 37763 bytes
.../docs/guides/bigquery-run-sample-query.png | Bin 0 -> 132994 bytes
src/content/docs/docs/guides/bq-preview.webp | Bin 0 -> 22162 bytes
.../guides/exploring_summary_pages_tables.png | Bin 0 -> 164331 bytes
.../docs/docs/guides/getting-started.mdx | 247 +
.../google-cloud-create-new-project.png | Bin 0 -> 21709 bytes
.../guides/google-cloud-select-project.png | Bin 0 -> 22393 bytes
.../docs/docs/guides/google-cloud-welcome.png | Bin 0 -> 20456 bytes
src/content/docs/docs/guides/guided-tour.mdx | 27 +
.../docs/docs/guides/minimizing-costs.md | 189 +
.../docs/docs/guides/release-cycle.mdx | 31 +
.../docs/guides/release_cycle_diagram.png | Bin 0 -> 49223 bytes
.../docs/guides/simple_agg_query_example.png | Bin 0 -> 15025 bytes
.../docs/docs/guides/simple_join_example.png | Bin 0 -> 81001 bytes
.../guides/type_summary_example_query.png | Bin 0 -> 90553 bytes
.../guides/type_summary_example_query2.png | Bin 0 -> 121810 bytes
src/content/docs/docs/index.mdx | 40 +
.../docs/docs/reference/blobs/lighthouse.mdx | 11 +
.../docs/reference/blobs/page-metadata.mdx | 94 +
.../docs/reference/blobs/page-payload.mdx | 1244 +++++
.../docs/reference/blobs/page-summary.mdx | 354 ++
.../docs/reference/blobs/request-payload.mdx | 1188 +++++
.../docs/reference/blobs/request-summary.mdx | 110 +
.../docs/reference/custom-metrics/ads.mdx | 446 ++
.../docs/reference/custom-metrics/other.mdx | 163 +
.../docs/reference/custom-metrics/privacy.mdx | 293 ++
.../docs/docs/reference/functions/capo.mdx | 98 +
.../functions/get_host_categories.mdx | 105 +
.../docs/reference/functions/get_lcp_lazy.mdx | 149 +
.../reference/functions/get_lcp_priority.mdx | 75 +
.../docs/reference/functions/get_origin.mdx | 99 +
.../docs/reference/structs/custom-metrics.mdx | 153 +
.../docs/docs/reference/structs/feature.mdx | 28 +
.../docs/docs/reference/structs/header.mdx | 24 +
.../docs/reference/structs/technology.mdx | 100 +
.../docs/docs/reference/tables/pages.mdx | 214 +
.../docs/docs/reference/tables/requests.mdx | 228 +
src/pages/404.astro | 2 +-
src/pages/index.astro | 4 +-
tools/generate/generate_sitemap.js | 8 +
tools/generate/generate_timestamps.js | 31 +-
54 files changed, 10558 insertions(+), 447 deletions(-)
create mode 100644 public/static/img/mag.png
create mode 100644 src/assets/mag.png
create mode 100644 src/components/docs/Header.astro
create mode 100644 src/content.config.ts
create mode 100644 src/content/docs/docs/guides/bigquery-httparchive-pinned.png
create mode 100644 src/content/docs/docs/guides/bigquery-pages.png
create mode 100644 src/content/docs/docs/guides/bigquery-query-in-a-new-tab.png
create mode 100644 src/content/docs/docs/guides/bigquery-run-sample-query.png
create mode 100644 src/content/docs/docs/guides/bq-preview.webp
create mode 100644 src/content/docs/docs/guides/exploring_summary_pages_tables.png
create mode 100644 src/content/docs/docs/guides/getting-started.mdx
create mode 100644 src/content/docs/docs/guides/google-cloud-create-new-project.png
create mode 100644 src/content/docs/docs/guides/google-cloud-select-project.png
create mode 100644 src/content/docs/docs/guides/google-cloud-welcome.png
create mode 100644 src/content/docs/docs/guides/guided-tour.mdx
create mode 100644 src/content/docs/docs/guides/minimizing-costs.md
create mode 100644 src/content/docs/docs/guides/release-cycle.mdx
create mode 100644 src/content/docs/docs/guides/release_cycle_diagram.png
create mode 100644 src/content/docs/docs/guides/simple_agg_query_example.png
create mode 100644 src/content/docs/docs/guides/simple_join_example.png
create mode 100644 src/content/docs/docs/guides/type_summary_example_query.png
create mode 100644 src/content/docs/docs/guides/type_summary_example_query2.png
create mode 100644 src/content/docs/docs/index.mdx
create mode 100644 src/content/docs/docs/reference/blobs/lighthouse.mdx
create mode 100644 src/content/docs/docs/reference/blobs/page-metadata.mdx
create mode 100644 src/content/docs/docs/reference/blobs/page-payload.mdx
create mode 100644 src/content/docs/docs/reference/blobs/page-summary.mdx
create mode 100644 src/content/docs/docs/reference/blobs/request-payload.mdx
create mode 100644 src/content/docs/docs/reference/blobs/request-summary.mdx
create mode 100644 src/content/docs/docs/reference/custom-metrics/ads.mdx
create mode 100644 src/content/docs/docs/reference/custom-metrics/other.mdx
create mode 100644 src/content/docs/docs/reference/custom-metrics/privacy.mdx
create mode 100644 src/content/docs/docs/reference/functions/capo.mdx
create mode 100644 src/content/docs/docs/reference/functions/get_host_categories.mdx
create mode 100644 src/content/docs/docs/reference/functions/get_lcp_lazy.mdx
create mode 100644 src/content/docs/docs/reference/functions/get_lcp_priority.mdx
create mode 100644 src/content/docs/docs/reference/functions/get_origin.mdx
create mode 100644 src/content/docs/docs/reference/structs/custom-metrics.mdx
create mode 100644 src/content/docs/docs/reference/structs/feature.mdx
create mode 100644 src/content/docs/docs/reference/structs/header.mdx
create mode 100644 src/content/docs/docs/reference/structs/technology.mdx
create mode 100644 src/content/docs/docs/reference/tables/pages.mdx
create mode 100644 src/content/docs/docs/reference/tables/requests.mdx
diff --git a/astro.config.mjs b/astro.config.mjs
index 6483150f..068a95fc 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -1,4 +1,7 @@
import { defineConfig } from 'astro/config';
+import starlight from '@astrojs/starlight';
+import starlightLinksValidator from 'starlight-links-validator';
+import starlightLlmsTxt from 'starlight-llms-txt';
const sourceMaps = process.env.SOURCE_MAPS === 'true';
@@ -19,6 +22,50 @@ export default defineConfig({
// Don't add trailing slashes to output filenames
format: 'directory',
},
+ integrations: [
+ starlight({
+ title: 'HTTP Archive Docs',
+ disable404Route: true,
+ components: {
+ Header: './src/components/docs/Header.astro',
+ },
+ sidebar: [
+ {
+ label: 'Guides',
+ items: [
+ { label: 'Getting started', link: 'docs/guides/getting-started' },
+ { label: 'Minimizing query costs', link: 'docs/guides/minimizing-costs' },
+ { label: 'Guided tour', link: 'docs/guides/guided-tour' },
+ { label: 'Release cycle', link: 'docs/guides/release-cycle' },
+ ],
+ },
+ {
+ label: 'Tables',
+ items: [{ autogenerate: { directory: 'docs/reference/tables' } }]
+ },
+ {
+ label: 'Structs',
+ items: [{ autogenerate: { directory: 'docs/reference/structs' } }]
+ },
+ {
+ label: 'Blobs',
+ items: [{ autogenerate: { directory: 'docs/reference/blobs' } }]
+ },
+ {
+ label: 'Custom Metrics',
+ items: [{ autogenerate: { directory: 'docs/reference/custom-metrics' } }]
+ },
+ {
+ label: 'Functions',
+ items: [{ autogenerate: { directory: 'docs/reference/functions' } }]
+ },
+ ],
+ editLink: {
+ baseUrl: 'https://github.com/HTTPArchive/httparchive.org/edit/main/'
+ },
+ plugins: [starlightLlmsTxt(), starlightLinksValidator()],
+ }),
+ ],
vite: {
build: {
sourcemap: sourceMaps,
diff --git a/config/last_updated.json b/config/last_updated.json
index 173aa441..fb9e98eb 100644
--- a/config/last_updated.json
+++ b/config/last_updated.json
@@ -4,15 +4,140 @@
"date_modified": "2026-07-02T00:00:00.000Z",
"hash": "ef6555255ad26e4e47da7186be9bd999"
},
+ "docs/guides/getting-started": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "cd0a8ad4379b0f3b312e8ba56032d4a6"
+ },
+ "docs/guides/guided-tour": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "a52176e67f1d794e051c1aebd471f471"
+ },
+ "docs/guides/minimizing-costs": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "a103e22b684565b1a55e4b722d66f0bf"
+ },
+ "docs/guides/release-cycle": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "8259e9969874283a66929c525e1e2e19"
+ },
+ "docs/index": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "c374905b3752c4c66b835830bd8940f8"
+ },
+ "docs/reference/blobs/lighthouse": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "de55578fc8edfadce490f0ce9205d279"
+ },
+ "docs/reference/blobs/page-metadata": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "3d746a46653adc82819e234d9c092f32"
+ },
+ "docs/reference/blobs/page-payload": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "564869fe373e6de48547b627f4bc7287"
+ },
+ "docs/reference/blobs/page-summary": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "ab57f4a09c389cf6bdbb1c0dbe83a31b"
+ },
+ "docs/reference/blobs/request-payload": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "a4e80fb44f65e6504d2b9e5b2e87f22f"
+ },
+ "docs/reference/blobs/request-summary": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "72d4210cd35088c8706a1ea02f58c952"
+ },
+ "docs/reference/custom-metrics/ads": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "6261101aa4c53499a24f49431a5a1027"
+ },
+ "docs/reference/custom-metrics/other": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "999e963a01ec07de9bd58e1cfb28aab3"
+ },
+ "docs/reference/custom-metrics/privacy": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "a8c0e88f953021ffcfbf037bdadfea4b"
+ },
+ "docs/reference/functions/capo": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "f030d469063a7ca5ac5881e300995a93"
+ },
+ "docs/reference/functions/get_host_categories": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "74e4235447f6d0f8e9e66957ae2fdbd5"
+ },
+ "docs/reference/functions/get_lcp_lazy": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "9347d792c09501f366e8673714b42c89"
+ },
+ "docs/reference/functions/get_lcp_priority": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "70b1661490313f5cf448e20b4568924d"
+ },
+ "docs/reference/functions/get_origin": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "a75d9efb5b4e0a260ef7de7d7e51e293"
+ },
+ "docs/reference/structs/custom-metrics": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "4b2eeb1aaec6c982ae82031de1061546"
+ },
+ "docs/reference/structs/feature": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "387f5c67a41f137abea9817ff9396de3"
+ },
+ "docs/reference/structs/header": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "2ec68ca21788e35622b1312452c6ea94"
+ },
+ "docs/reference/structs/technology": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "6f2463eb1f62e9a15717f9f186eccb61"
+ },
+ "docs/reference/tables/pages": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "8183f41800e611b1d94eaf1d7fd3e656"
+ },
+ "docs/reference/tables/requests": {
+ "date_published": "2026-09-14T00:00:00.000Z",
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "cebd71a60ba1b7d32af85baab3a224bf"
+ },
"faq.html": {
"date_published": "2018-05-08T00:00:00.000Z",
- "date_modified": "2026-06-29T00:00:00.000Z",
- "hash": "474a30967e56a20920b1aed21c276923"
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "ae9d8ef644bae6fea657921c8f65bcdf"
},
"index.html": {
"date_published": "2018-05-08T00:00:00.000Z",
- "date_modified": "2026-08-10T00:00:00.000Z",
- "hash": "e12fad43d5aaa52dba0f32e7101f0f39"
+ "date_modified": "2026-09-14T00:00:00.000Z",
+ "hash": "c2a97964a5e61083bba0831b010c40f4"
},
"reports.html": {
"date_published": "2018-05-08T00:00:00.000Z",
diff --git a/docs/faq.md b/docs/faq.md
index e6942312..f71c93cd 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -16,7 +16,7 @@ The list of URLs is fed to our private instance of [WebPageTest](https://webpage
As of March 1 2016, the tests are performed on Chrome for desktop and emulated Android (on Chrome) for mobile.
-The test agents are run from [Google Cloud regions](https://cloud.google.com/compute/docs/regions-zones) across the US. Each URL is loaded once with an empty cache ("first view") for normal metrics collection and again, in a clean browser profile, using [Lighthouse](https://developers.google.com/web/tools/lighthouse). The data is collected via a [HAR file](https://en.wikipedia.org/wiki/.har). The HTTP Archive collects these HAR files, parses them, and populates [a public dataset in BigQuery](https://har.fyi/guides/getting-started/).
+The test agents are run from [Google Cloud regions](https://cloud.google.com/compute/docs/regions-zones) across the US. Each URL is loaded once with an empty cache ("first view") for normal metrics collection and again, in a clean browser profile, using [Lighthouse](https://developers.google.com/web/tools/lighthouse). The data is collected via a [HAR file](https://en.wikipedia.org/wiki/.har). The HTTP Archive collects these HAR files, parses them, and populates [a public dataset in BigQuery](/docs/guides/getting-started/).
## How accurate is the data, in particular the time measurements?
@@ -33,7 +33,7 @@ Given these conditions it's virtually impossible to compare the HTTP Archive's t
## How do I use BigQuery to write custom queries over the data?
-The HTTP Archive dataset is available publicly on BigQuery. Check out [Getting Started Accessing the HTTP Archive with BigQuery](https://har.fyi/guides/getting-started/).
+The HTTP Archive dataset is available publicly on BigQuery. Check out [Getting Started Accessing the HTTP Archive with BigQuery](/docs/guides/getting-started/).
## What changes have been made to the test environment that might affect the data?
diff --git a/package-lock.json b/package-lock.json
index 66f66b33..21f66b47 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -10,6 +10,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@astrojs/sitemap": "^3.7.4",
+ "@astrojs/starlight": "^0.41.1",
"astro": "^7.3.1",
"ejs": "6.0.1",
"fs-extra": "11.4.0",
@@ -18,6 +19,8 @@
"node-fetch": "3.3.2",
"puppeteer": "^25.10.0",
"run-script-os": "1.1.6",
+ "starlight-links-validator": "^0.25.1",
+ "starlight-llms-txt": "^0.11.0",
"web-vitals": "6.2.1",
"xml-js": "1.6.11",
"zod": "^4.4.3"
@@ -267,6 +270,356 @@
"zod": "^4.3.6"
}
},
+ "node_modules/@astrojs/starlight": {
+ "version": "0.41.11",
+ "resolved": "https://registry.npmjs.org/@astrojs/starlight/-/starlight-0.41.11.tgz",
+ "integrity": "sha512-hM95Mbsl4l60SBwaNQA/HTxpOLGfeB5EfR9qY3kr0SsAVKUspCssjO0RVBsLiPAE6EA5xuORcCoz/Q6DTX+MuQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/markdown-satteri": "^0.3.5",
+ "@astrojs/mdx": "^7.0.5",
+ "@astrojs/sitemap": "^3.7.3",
+ "@pagefind/default-ui": "^1.3.0",
+ "@types/hast": "^3.0.4",
+ "@types/js-yaml": "^4.0.9",
+ "@types/mdast": "^4.0.4",
+ "astro-expressive-code": "^0.44.0",
+ "bcp-47": "^2.1.0",
+ "hast-util-from-html": "^2.0.3",
+ "hast-util-select": "^6.0.4",
+ "hast-util-to-string": "^3.0.1",
+ "hastscript": "^9.0.1",
+ "i18next": "^26.0.7",
+ "js-yaml": "^4.1.1",
+ "klona": "^2.0.6",
+ "magic-string": "^0.30.21",
+ "mdast-util-directive": "^3.1.0",
+ "mdast-util-to-markdown": "^2.1.2",
+ "mdast-util-to-string": "^4.0.0",
+ "pagefind": "^1.5.2",
+ "rehype": "^13.0.2",
+ "rehype-format": "^5.0.1",
+ "remark-directive": "^4.0.0",
+ "satteri": "^0.9.1",
+ "ultrahtml": "^1.6.0",
+ "unified": "^11.0.5",
+ "unist-util-visit": "^5.1.0",
+ "vfile": "^6.0.3"
+ },
+ "peerDependencies": {
+ "@astrojs/markdown-remark": "^7.2.0",
+ "astro": "^7.0.2"
+ },
+ "peerDependenciesMeta": {
+ "@astrojs/markdown-remark": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/@astrojs/internal-helpers": {
+ "version": "0.10.4",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.10.4.tgz",
+ "integrity": "sha512-nozZSy/mKYLqe4YrqbKtdOszedAfXYCtw3wZ0d+CAjz4GqQ4L9rl1ltIL5BlgwmYVinJg/RZ0MgGuWOdlyRZlA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.4",
+ "@types/mdast": "^4.0.4",
+ "js-yaml": "^4.3.0",
+ "picomatch": "^4.0.4",
+ "retext-smartypants": "^6.2.0",
+ "shiki": "^4.0.2",
+ "smol-toml": "^1.6.0",
+ "unified": "^11.0.5"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/@astrojs/markdown-satteri": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-satteri/-/markdown-satteri-0.3.8.tgz",
+ "integrity": "sha512-n8ItpFTCmlDsVR5+rwDmehSf+jFCYLWmZiisZNGuF7xILqYhsVeBfcha4qgS2Seq3fAc9Tm58ZVrvqFQ6RQgRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.10.4",
+ "@astrojs/prism": "4.0.2",
+ "github-slugger": "^2.0.0",
+ "satteri": "^0.10.3"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/@astrojs/markdown-satteri/node_modules/satteri": {
+ "version": "0.10.5",
+ "resolved": "https://registry.npmjs.org/satteri/-/satteri-0.10.5.tgz",
+ "integrity": "sha512-Ao1LKpAEa9Wdg0otgbVKViZHEq9ebdXe4DMrp3s9vQAU0HNIuHnFEuMuOcm0ZIXyV0Yzxj91NvhLpvXZJO/5ZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.5",
+ "@types/hast": "^3.0.5",
+ "@types/mdast": "^4.0.4",
+ "@types/unist": "^3.0.3"
+ },
+ "optionalDependencies": {
+ "@bruits/satteri-darwin-arm64": "0.10.5",
+ "@bruits/satteri-darwin-x64": "0.10.5",
+ "@bruits/satteri-linux-arm64-gnu": "0.10.5",
+ "@bruits/satteri-linux-arm64-musl": "0.10.5",
+ "@bruits/satteri-linux-x64-gnu": "0.10.5",
+ "@bruits/satteri-linux-x64-musl": "0.10.5",
+ "@bruits/satteri-wasm32-wasi": "0.10.5",
+ "@bruits/satteri-win32-arm64-msvc": "0.10.5",
+ "@bruits/satteri-win32-x64-msvc": "0.10.5"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/@astrojs/mdx": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-7.0.8.tgz",
+ "integrity": "sha512-RNuwq2ccTSi7NX9YqlR0noaWoVdOrZuJvdfWXotAzdhMVB0b0zEMLnNU+xar7le0GwTMlTObD/QAu8jeHA/3nA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.10.4",
+ "@astrojs/markdown-remark": "7.2.4",
+ "@mdx-js/mdx": "^3.1.1",
+ "acorn": "^8.16.0",
+ "es-module-lexer": "^2.0.0",
+ "estree-util-visit": "^2.0.0",
+ "hast-util-to-html": "^9.0.5",
+ "piccolore": "^0.1.3",
+ "rehype-raw": "^7.0.0",
+ "remark-gfm": "^4.0.1",
+ "remark-smartypants": "^3.0.2",
+ "source-map": "^0.7.6",
+ "unist-util-visit": "^5.1.0",
+ "vfile": "^6.0.3"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ },
+ "peerDependencies": {
+ "@astrojs/markdown-satteri": "^0.3.1",
+ "astro": "^7.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@astrojs/markdown-satteri": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/@astrojs/mdx/node_modules/@astrojs/markdown-remark": {
+ "version": "7.2.4",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-7.2.4.tgz",
+ "integrity": "sha512-MvspGMynWKAjTe4/lTUdmBPHIFKNVLTCF6UlyWGogTGzNrTvjD+D4n48k7h8swxsEPKHK2TwxkZO7uoaCv1Pow==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.10.4",
+ "@astrojs/prism": "4.0.2",
+ "github-slugger": "^2.0.0",
+ "hast-util-from-html": "^2.0.3",
+ "hast-util-to-text": "^4.0.2",
+ "mdast-util-definitions": "^6.0.0",
+ "rehype-raw": "^7.0.0",
+ "rehype-stringify": "^10.0.1",
+ "remark-gfm": "^4.0.1",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.1.2",
+ "remark-smartypants": "^3.0.2",
+ "unified": "^11.0.5",
+ "unist-util-remove-position": "^5.0.0",
+ "unist-util-visit": "^5.1.0",
+ "unist-util-visit-parents": "^6.0.2",
+ "vfile": "^6.0.3"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/@emnapi/runtime": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/magic-string": {
+ "version": "0.30.21",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/satteri/-/satteri-0.9.5.tgz",
+ "integrity": "sha512-ZuWVl+vnM64y+/TtX8Kosv2c00W+hLQiiwnEL6H0UKVVrxFqMw4D2CJHHQaouVd89OAhtBBfjWLqhKi3TVUV4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.5",
+ "@types/hast": "^3.0.4",
+ "@types/mdast": "^4.0.4",
+ "@types/unist": "^3.0.3"
+ },
+ "optionalDependencies": {
+ "@bruits/satteri-darwin-arm64": "0.9.5",
+ "@bruits/satteri-darwin-x64": "0.9.5",
+ "@bruits/satteri-linux-arm64-gnu": "0.9.5",
+ "@bruits/satteri-linux-arm64-musl": "0.9.5",
+ "@bruits/satteri-linux-x64-gnu": "0.9.5",
+ "@bruits/satteri-linux-x64-musl": "0.9.5",
+ "@bruits/satteri-wasm32-wasi": "0.9.5",
+ "@bruits/satteri-win32-arm64-msvc": "0.9.5",
+ "@bruits/satteri-win32-x64-msvc": "0.9.5"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-darwin-arm64": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-darwin-arm64/-/satteri-darwin-arm64-0.9.5.tgz",
+ "integrity": "sha512-iw4nZgx9v30lWo/MTngQqi1pI78KI0DnkSm+lVJGYdmPLgAyDNJigVhpG42/Iq55A6c1Ll8q66ljyyRiQUxwow==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-darwin-x64": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-darwin-x64/-/satteri-darwin-x64-0.9.5.tgz",
+ "integrity": "sha512-6T26Z5Kf3cFW2PSlk9p7zT7yVxvuBSiJvYyz9u8KjYwMTqZyIDOj2wDyNpxKV4+6yUVG7rddq2QwvG/8LJA2+Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-linux-arm64-gnu": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-arm64-gnu/-/satteri-linux-arm64-gnu-0.9.5.tgz",
+ "integrity": "sha512-u51id17uJwNEMK9nBlICsq6U31c+XVqQueVBkwRIzZG+gMpS8TOJctt5h5Wz33Z8xnMdTd+adtACVz0yHgGuOA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-linux-arm64-musl": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-arm64-musl/-/satteri-linux-arm64-musl-0.9.5.tgz",
+ "integrity": "sha512-v39HxiwGC5Rqm01HksP6+5Y+xKLPlsuVFgIgpEAo+SiQ22c+mJVhS3u7Z6ePAKdhL5NJoK1xq70kLz3L13AhpQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-linux-x64-gnu": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-x64-gnu/-/satteri-linux-x64-gnu-0.9.5.tgz",
+ "integrity": "sha512-F3uO8uFp3pAP5ZGXttwvh57GS7s0lL953tnNdyI2gRyP4kOOkp6pyGojNJzCjkDvWI2Cvb9iNrKok3aqQPauAw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-linux-x64-musl": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-x64-musl/-/satteri-linux-x64-musl-0.9.5.tgz",
+ "integrity": "sha512-bicEqglLlz++mWyADaZoP0JY20s4vDfLjaPYgQqC+NI4zZLTOOg1T4GB8aqtc822Pqji8SQBmSrTb7CrP8i08Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-wasm32-wasi": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-wasm32-wasi/-/satteri-wasm32-wasi-0.9.5.tgz",
+ "integrity": "sha512-zauAuMwfPnKPUkd4AFixRFpXdgKwP2mKgxrIIo2gJzW0/ZneF9dbHnLkojSpaBnCCp7VUL1hIi5WWZvB1CqmAQ==",
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "1.11.1",
+ "@emnapi/runtime": "1.11.1",
+ "@napi-rs/wasm-runtime": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-win32-arm64-msvc": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-win32-arm64-msvc/-/satteri-win32-arm64-msvc-0.9.5.tgz",
+ "integrity": "sha512-SrfE7NEsgZjBvU3c+RR6oQRu0ToXY5uVJEbieXEF0YTctIV2zAVlbaMjWLts074QCgh3a+XHWkR/lWh2VH2LUg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@astrojs/starlight/node_modules/satteri/node_modules/@bruits/satteri-win32-x64-msvc": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-win32-x64-msvc/-/satteri-win32-x64-msvc-0.9.5.tgz",
+ "integrity": "sha512-5Kw9ZAtTGS8WHizyn+CJhjjfIQrw+7jcZodpmpXJjefnO15M8UexIi6JR2E5thyvsmHyhL6ZDDMUNR4bKJPd4g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
"node_modules/@astrojs/telemetry": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.3.tgz",
@@ -518,6 +871,39 @@
"node": ">= 20.12.0"
}
},
+ "node_modules/@ctrl/tinycolor": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.2.1.tgz",
+ "integrity": "sha512-Vh5uy9Y1JBMId6J1f68TMXnZrTCvNdo9Fu2k0d1YnJngR+sM5kWTKl441c/3TFs+cG0NWOjRWgQ/iaWhbYx+7A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@emnapi/core": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
+ "integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.2.2",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.11.3",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.3.tgz",
+ "integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
"node_modules/@emnapi/wasi-threads": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
@@ -971,6 +1357,55 @@
"node": ">=18"
}
},
+ "node_modules/@expressive-code/core": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/@expressive-code/core/-/core-0.44.2.tgz",
+ "integrity": "sha512-Yw5KonQCD1HoOO2P89y4wifqS9qrJcGVY0LkVMUsVZjhi++bhz4WwQ37inenKFNOEVo50P7cjoVsCdaVnUbq8w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ctrl/tinycolor": "^4.0.4",
+ "hast-util-select": "^6.0.2",
+ "hast-util-to-html": "^9.0.1",
+ "hast-util-to-text": "^4.0.1",
+ "hastscript": "^9.0.0",
+ "postcss": "^8.4.38",
+ "postcss-nested": "^6.0.1",
+ "unist-util-visit": "^5.0.0",
+ "unist-util-visit-parents": "^6.0.1"
+ }
+ },
+ "node_modules/@expressive-code/plugin-frames": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/@expressive-code/plugin-frames/-/plugin-frames-0.44.2.tgz",
+ "integrity": "sha512-gVLm6TQMNIRWIaM7o+mCtxkGNjLZY5/2faSTLoXeo9wv/Pkj/0QAtZyXPVPrRsPARqiipATNFmfvQFLJudxPHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@expressive-code/core": "^0.44.2"
+ }
+ },
+ "node_modules/@expressive-code/plugin-shiki": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/@expressive-code/plugin-shiki/-/plugin-shiki-0.44.2.tgz",
+ "integrity": "sha512-ebWIvCDzXvjyD8rH6T6DfytYJw1GoArLR4nusIAE4VxXrCQf3d+owytiv010KU/dUg+SRLZskDn0N+HaFXeuSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@expressive-code/core": "^0.44.2",
+ "shiki": "^4.0.2"
+ }
+ },
+ "node_modules/@expressive-code/plugin-text-markers": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/@expressive-code/plugin-text-markers/-/plugin-text-markers-0.44.2.tgz",
+ "integrity": "sha512-SNI7EgUSiADqbqUzzMbj1ZeC/r2pa5eg3KyFOGAd3a7EsIA4qzjXQLp+ODWQtHVDKFCdGs4J3ovSJUqvKIK96g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@expressive-code/core": "^0.44.2"
+ }
+ },
"node_modules/@img/colour": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
@@ -1506,18 +1941,56 @@
"dev": true,
"license": "MIT"
},
- "node_modules/@napi-rs/wasm-runtime": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.2.3.tgz",
- "integrity": "sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==",
+ "node_modules/@mdx-js/mdx": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz",
+ "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==",
"dev": true,
"license": "MIT",
- "optional": true,
"dependencies": {
- "@tybys/wasm-util": "^0.10.3"
- },
- "engines": {
- "node": "^20.19.0 || ^22.13.0 || >=23.5.0"
+ "@types/estree": "^1.0.0",
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdx": "^2.0.0",
+ "acorn": "^8.0.0",
+ "collapse-white-space": "^2.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "estree-util-scope": "^1.0.0",
+ "estree-walker": "^3.0.0",
+ "hast-util-to-jsx-runtime": "^2.0.0",
+ "markdown-extensions": "^2.0.0",
+ "recma-build-jsx": "^1.0.0",
+ "recma-jsx": "^1.0.0",
+ "recma-stringify": "^1.0.0",
+ "rehype-recma": "^1.0.0",
+ "remark-mdx": "^3.0.0",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.0.0",
+ "source-map": "^0.7.0",
+ "unified": "^11.0.0",
+ "unist-util-position-from-estree": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.2.3.tgz",
+ "integrity": "sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@tybys/wasm-util": "^0.10.3"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=23.5.0"
},
"funding": {
"type": "github",
@@ -1545,6 +2018,111 @@
"url": "https://github.com/sponsors/Boshen"
}
},
+ "node_modules/@pagefind/darwin-arm64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/darwin-arm64/-/darwin-arm64-1.5.2.tgz",
+ "integrity": "sha512-MXpI+7HsAdPkvJ0gk9xj9g541BCqBZOBbdwj9g6lB5LCj6kSV6nqDSjzcAJwvOsfu0fjwvC8hQU+ecfhp+MpiQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@pagefind/darwin-x64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/darwin-x64/-/darwin-x64-1.5.2.tgz",
+ "integrity": "sha512-IojxFWMEJe0RQ7PQ3KXQsPIImNsbpPYpoZ+QUDrL8fAl/O27IX+LVLs74/UzEZy5uA2LD8Nz1AiwKr72vrkZQw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@pagefind/default-ui": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/default-ui/-/default-ui-1.5.2.tgz",
+ "integrity": "sha512-pm1LMnQg8N2B3n2TnjKlhaFihpz6zTiA4HiGQ6/slKO/+8K9CAU5kcjdSSPgpuk1PMuuN4hxLipUIifnrkl3Sg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@pagefind/freebsd-x64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/freebsd-x64/-/freebsd-x64-1.5.2.tgz",
+ "integrity": "sha512-7EVzo9+0w+2cbe671BtMj10UlNo83I+HrLVLfRxO731svHRJKUfJ/mo05gU14pe9PCfpKNQT8FS3Xc/oDN6pOA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@pagefind/linux-arm64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/linux-arm64/-/linux-arm64-1.5.2.tgz",
+ "integrity": "sha512-Ovt9+K35sqzn8H3ZMXGwls4TD/wMJuvRtShHIsmUQREmaxjrDEX7gHckRCrwYJ4XE1H1p6HkLz3wukrAnsfXQw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@pagefind/linux-x64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/linux-x64/-/linux-x64-1.5.2.tgz",
+ "integrity": "sha512-V+tFqHKXhQKq/WqPBD67AFy7scn1/aZID00ws4fSDd+1daSi5UHR9VVlRrOUYKxn3VuFQYRD7lYXdZK1WED1YA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@pagefind/windows-arm64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/windows-arm64/-/windows-arm64-1.5.2.tgz",
+ "integrity": "sha512-hN9Nh90fNW61nNRCW9ZyQrAj/mD0eRvmJ8NlTUzkbuW8kIzGJUi3cxjFkEcMZ5h/8FsKWD/VcouZl4yo1F7B6g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@pagefind/windows-x64": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/@pagefind/windows-x64/-/windows-x64-1.5.2.tgz",
+ "integrity": "sha512-Fa2Iyw7kaDRzGMfNYNUXNW2zbL5FQVDgSOcbDHdzBrDEdpqOqg8TcZ68F22ol6NJ9IGzvUdmeyZypLW5dyhqsg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
"node_modules/@puppeteer/browsers": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-3.2.2.tgz",
@@ -1968,6 +2546,23 @@
"tslib": "^2.4.0"
}
},
+ "node_modules/@types/braces": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@types/braces/-/braces-3.0.5.tgz",
+ "integrity": "sha512-SQFof9H+LXeWNz8wDe7oN5zu7ket0qwMu5vZubW4GCJ8Kkeh6nBWUz87+KTz/G3Kqsrp0j/W253XJb3KMEeg3w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/debug": {
+ "version": "4.1.13",
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
+ "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/ms": "*"
+ }
+ },
"node_modules/@types/estree": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
@@ -1995,6 +2590,13 @@
"@types/unist": "*"
}
},
+ "node_modules/@types/js-yaml": {
+ "version": "4.0.9",
+ "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz",
+ "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@types/mdast": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
@@ -2005,6 +2607,30 @@
"@types/unist": "*"
}
},
+ "node_modules/@types/mdx": {
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.14.tgz",
+ "integrity": "sha512-T48PeuJtvLosNTPVhfnIp3i/n3a4g4Bad7YCq5k64D4u7NwDrAotikQ+5+sjtUvBmxCMlbo3dVL+C2dP0rWHzg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/micromatch": {
+ "version": "4.0.10",
+ "resolved": "https://registry.npmjs.org/@types/micromatch/-/micromatch-4.0.10.tgz",
+ "integrity": "sha512-5jOhFDElqr4DKTrTEbnW8DZ4Hz5LRUEmyrGpCMrD/NphYv3nUnaF08xmSLx1rGGnyEs/kFnhiw6dCgcDqMr5PQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/braces": "*"
+ }
+ },
+ "node_modules/@types/ms": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@types/nlcst": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz",
@@ -2024,6 +2650,13 @@
"undici-types": "~8.3.0"
}
},
+ "node_modules/@types/picomatch": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/@types/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-iG0T6+nYJ9FAPmx9SsUlnwcq1ZVRuCXcVEvWnntoPlrOpwtSTKNDC9uVAxTsC3PUvJ+99n4RpAcNgBbHX3JSnQ==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@types/sax": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz",
@@ -2048,6 +2681,29 @@
"dev": true,
"license": "ISC"
},
+ "node_modules/acorn": {
+ "version": "8.18.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.18.0.tgz",
+ "integrity": "sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
"node_modules/am-i-vibing": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/am-i-vibing/-/am-i-vibing-0.4.0.tgz",
@@ -2061,6 +2717,22 @@
"am-i-vibing": "dist/cli.mjs"
}
},
+ "node_modules/ansi-escapes": {
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz",
+ "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "environment": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/ansi-regex": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.3.0.tgz",
@@ -2138,6 +2810,27 @@
"node": ">= 0.4"
}
},
+ "node_modules/array-iterate": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz",
+ "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/astring": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz",
+ "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "astring": "bin/astring"
+ }
+ },
"node_modules/astro": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/astro/-/astro-7.3.1.tgz",
@@ -2223,6 +2916,20 @@
}
}
},
+ "node_modules/astro-expressive-code": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/astro-expressive-code/-/astro-expressive-code-0.44.2.tgz",
+ "integrity": "sha512-avop7nZcRwC7quvIxVguhwEZ9Tp6IoTzKUCLwP30Fb7+er+pWQgcysP01dcuzRIJo81kLGg30q/YAI2Yb1Sdzg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "rehype-expressive-code": "^0.44.2",
+ "url-extras": "^0.1.0"
+ },
+ "peerDependencies": {
+ "astro": "^4.0.0-beta || ^5.0.0-beta || ^3.3.0 || ^6.0.0-beta || ^7.0.0"
+ }
+ },
"node_modules/astro/node_modules/p-limit": {
"version": "7.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz",
@@ -2260,6 +2967,33 @@
"url": "https://github.com/sponsors/wooorm"
}
},
+ "node_modules/bcp-47": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.1.tgz",
+ "integrity": "sha512-KLw+H/gd2p4zly1X7Yh/qziuyae5/w/QFnvTng9eZL5fvszL7Whl3MBoWF8yxL7ksUjBfOD+OxkytiqbBpG+Fw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-alphanumerical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/bcp-47-match": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz",
+ "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
@@ -2267,6 +3001,19 @@
"dev": true,
"license": "ISC"
},
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/ccount": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
@@ -2278,6 +3025,17 @@
"url": "https://github.com/sponsors/wooorm"
}
},
+ "node_modules/character-entities": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/character-entities-html4": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
@@ -2300,6 +3058,17 @@
"url": "https://github.com/sponsors/wooorm"
}
},
+ "node_modules/character-reference-invalid": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/chokidar": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
@@ -2402,6 +3171,17 @@
"node": ">=6"
}
},
+ "node_modules/collapse-white-space": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz",
+ "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/comma-separated-tokens": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
@@ -2471,6 +3251,23 @@
"url": "https://github.com/sponsors/fb55"
}
},
+ "node_modules/css-selector-parser": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.3.0.tgz",
+ "integrity": "sha512-Y2asgMGFqJKF4fq4xHDSlFYIkeVfRsm69lQC1q9kbEsH5XtnINTMrweLkjYMeaUgiXBy/uvKeO/a1JHTNnmB2g==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/mdevils"
+ },
+ {
+ "type": "patreon",
+ "url": "https://patreon.com/mdevils"
+ }
+ ],
+ "license": "MIT"
+ },
"node_modules/css-tree": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz",
@@ -2498,6 +3295,19 @@
"url": "https://github.com/sponsors/fb55"
}
},
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/csso": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
@@ -2543,23 +3353,55 @@
"node": ">= 12"
}
},
- "node_modules/defu": {
- "version": "6.1.7",
- "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.7.tgz",
- "integrity": "sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/dequal": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">=6"
- }
- },
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/decode-named-character-reference": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
+ "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "character-entities": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/defu": {
+ "version": "6.1.7",
+ "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.7.tgz",
+ "integrity": "sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/destr": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz",
@@ -2603,8 +3445,7 @@
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1666840.tgz",
"integrity": "sha512-gCcO42XCHKEs7Ag0S7aGYsnJ7hlgrO3qderYqeiY0Eqk+0GFfuvT13IA0hHreJTa2KCdDVyGMeOhdMNmrrTjVg==",
"dev": true,
- "license": "BSD-3-Clause",
- "peer": true
+ "license": "BSD-3-Clause"
},
"node_modules/diff": {
"version": "9.0.0",
@@ -2616,6 +3457,20 @@
"node": ">=0.3.1"
}
},
+ "node_modules/direction": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/direction/-/direction-2.0.1.tgz",
+ "integrity": "sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "direction": "cli.js"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/dom-serializer": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
@@ -2717,12 +3572,72 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/entities": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
+ "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/environment": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz",
+ "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/es-module-lexer": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
"integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
"dev": true
},
+ "node_modules/esast-util-from-estree": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz",
+ "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-visit": "^2.0.0",
+ "unist-util-position-from-estree": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/esast-util-from-js": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz",
+ "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "acorn": "^8.0.0",
+ "esast-util-from-estree": "^2.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/esbuild": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
@@ -2730,7 +3645,6 @@
"dev": true,
"hasInstallScript": true,
"license": "MIT",
- "peer": true,
"bin": {
"esbuild": "bin/esbuild"
},
@@ -2776,6 +3690,117 @@
"node": ">=6"
}
},
+ "node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/estree-util-attach-comments": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz",
+ "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-util-build-jsx": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz",
+ "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "estree-walker": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-util-is-identifier-name": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-util-scope": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.1.tgz",
+ "integrity": "sha512-B0np3dcdxqILX5e9nEi5/Fr4K7gL4oYFVPV1zRa2e9wRCbQoZZNWOZFYyoInvXUPJXBXjss+QXlWLJChDEHDkA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-util-to-js": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz",
+ "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "astring": "^1.8.0",
+ "source-map": "^0.7.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-util-visit": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz",
+ "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/estree-walker": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
+ "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0"
+ }
+ },
"node_modules/eventemitter3": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
@@ -2783,6 +3808,19 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/expressive-code": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/expressive-code/-/expressive-code-0.44.2.tgz",
+ "integrity": "sha512-MLNghkvhyFgVW4oCD5DxBuYnnTXIf0PygzGmfT6OZeOOYWh/D4sH1j931biElkA5RG/J9wY/iuSMGAPF5vzHOg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@expressive-code/core": "^0.44.2",
+ "@expressive-code/plugin-frames": "^0.44.2",
+ "@expressive-code/plugin-shiki": "^0.44.2",
+ "@expressive-code/plugin-text-markers": "^0.44.2"
+ }
+ },
"node_modules/extend": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
@@ -2858,6 +3896,19 @@
"node": "^12.20 || >= 14.13"
}
},
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/find-proc": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/find-proc/-/find-proc-0.1.0.tgz",
@@ -3014,509 +4065,2031 @@
"uncrypto": "^0.1.3"
}
},
- "node_modules/hast-util-to-html": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
- "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==",
+ "node_modules/has-flag": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-5.0.1.tgz",
+ "integrity": "sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/hast-util-embedded": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz",
+ "integrity": "sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.0",
- "@types/unist": "^3.0.0",
- "ccount": "^2.0.0",
- "comma-separated-tokens": "^2.0.0",
- "hast-util-whitespace": "^3.0.0",
- "html-void-elements": "^3.0.0",
- "mdast-util-to-hast": "^13.0.0",
- "property-information": "^7.0.0",
- "space-separated-tokens": "^2.0.0",
- "stringify-entities": "^4.0.0",
- "zwitch": "^2.0.4"
+ "hast-util-is-element": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/hast-util-whitespace": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
- "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
+ "node_modules/hast-util-format": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/hast-util-format/-/hast-util-format-1.1.0.tgz",
+ "integrity": "sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/hast": "^3.0.0"
+ "@types/hast": "^3.0.0",
+ "hast-util-embedded": "^3.0.0",
+ "hast-util-minify-whitespace": "^1.0.0",
+ "hast-util-phrasing": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "html-whitespace-sensitive-tag-names": "^3.0.0",
+ "unist-util-visit-parents": "^6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
- "node_modules/highcharts": {
- "version": "11.4.8",
- "resolved": "https://registry.npmjs.org/highcharts/-/highcharts-11.4.8.tgz",
- "integrity": "sha512-5Tke9LuzZszC4osaFisxLIcw7xgNGz4Sy3Jc9pRMV+ydm6sYqsPYdU8ELOgpzGNrbrRNDRBtveoR5xS3SzneEA==",
- "dev": true
- },
- "node_modules/html-escaper": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz",
- "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/html-void-elements": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz",
- "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==",
+ "node_modules/hast-util-from-html": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
+ "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "devlop": "^1.1.0",
+ "hast-util-from-parse5": "^8.0.0",
+ "parse5": "^7.0.0",
+ "vfile": "^6.0.0",
+ "vfile-message": "^4.0.0"
+ },
"funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/http-cache-semantics": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
- "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/iron-webcrypto": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
- "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
+ "node_modules/hast-util-from-parse5": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
+ "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "devlop": "^1.0.0",
+ "hastscript": "^9.0.0",
+ "property-information": "^7.0.0",
+ "vfile": "^6.0.0",
+ "vfile-location": "^5.0.0",
+ "web-namespaces": "^2.0.0"
+ },
"funding": {
- "url": "https://github.com/sponsors/brc-dd"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-docker": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-4.0.0.tgz",
- "integrity": "sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==",
+ "node_modules/hast-util-has-property": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz",
+ "integrity": "sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==",
"dev": true,
"license": "MIT",
- "bin": {
- "is-docker": "cli.js"
- },
- "engines": {
- "node": ">=20"
+ "dependencies": {
+ "@types/hast": "^3.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/is-plain-obj": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
- "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
+ "node_modules/hast-util-is-body-ok-link": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz",
+ "integrity": "sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=12"
+ "dependencies": {
+ "@types/hast": "^3.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/js-yaml": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.2.tgz",
- "integrity": "sha512-SFNOvSJ+Dgf/9An904Yx+CgSlIPCkIpao4qo51lpee25TIRejdH3rhR4EZMGoNx3/TP3O+wzWuiTFl4sqbltzA==",
+ "node_modules/hast-util-is-element": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
+ "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
"dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/puzrin"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/nodeca"
- }
- ],
"license": "MIT",
"dependencies": {
- "argparse": "^2.0.1"
+ "@types/hast": "^3.0.0"
},
- "bin": {
- "js-yaml": "bin/js-yaml.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/jsonc-parser": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
- "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jsonfile": {
- "version": "6.2.1",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
- "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
+ "node_modules/hast-util-minify-whitespace": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz",
+ "integrity": "sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "universalify": "^2.0.0"
+ "@types/hast": "^3.0.0",
+ "hast-util-embedded": "^3.0.0",
+ "hast-util-is-element": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "unist-util-is": "^6.0.0"
},
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
- "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
+ "node_modules/hast-util-parse-selector": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
+ "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
"dev": true,
- "license": "MPL-2.0",
+ "license": "MIT",
"dependencies": {
- "detect-libc": "^2.0.3"
- },
- "engines": {
- "node": ">= 12.0.0"
+ "@types/hast": "^3.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
- },
- "optionalDependencies": {
- "lightningcss-android-arm64": "1.32.0",
- "lightningcss-darwin-arm64": "1.32.0",
- "lightningcss-darwin-x64": "1.32.0",
- "lightningcss-freebsd-x64": "1.32.0",
- "lightningcss-linux-arm-gnueabihf": "1.32.0",
- "lightningcss-linux-arm64-gnu": "1.32.0",
- "lightningcss-linux-arm64-musl": "1.32.0",
- "lightningcss-linux-x64-gnu": "1.32.0",
- "lightningcss-linux-x64-musl": "1.32.0",
- "lightningcss-win32-arm64-msvc": "1.32.0",
- "lightningcss-win32-x64-msvc": "1.32.0"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-android-arm64": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
- "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/hast-util-phrasing": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz",
+ "integrity": "sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-embedded": "^3.0.0",
+ "hast-util-has-property": "^3.0.0",
+ "hast-util-is-body-ok-link": "^3.0.0",
+ "hast-util-is-element": "^3.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-darwin-arm64": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
- "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/hast-util-raw": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz",
+ "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "@ungap/structured-clone": "^1.0.0",
+ "hast-util-from-parse5": "^8.0.0",
+ "hast-util-to-parse5": "^8.0.0",
+ "html-void-elements": "^3.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "parse5": "^7.0.0",
+ "unist-util-position": "^5.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0",
+ "web-namespaces": "^2.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-darwin-x64": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
- "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
- "cpu": [
- "x64"
- ],
+ "node_modules/hast-util-select": {
+ "version": "6.0.4",
+ "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-6.0.4.tgz",
+ "integrity": "sha512-RqGS1ZgI0MwxLaKLDxjprynNzINEkRHY2i8ln4DDjgv9ZhcYVIHN9rlpiYsqtFwrgpYU361SyWDQcGNIBVu3lw==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "bcp-47-match": "^2.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "css-selector-parser": "^3.0.0",
+ "devlop": "^1.0.0",
+ "direction": "^2.0.0",
+ "hast-util-has-property": "^3.0.0",
+ "hast-util-to-string": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "nth-check": "^2.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "unist-util-visit": "^5.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-freebsd-x64": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
- "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
- "cpu": [
- "x64"
- ],
+ "node_modules/hast-util-to-estree": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz",
+ "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-attach-comments": "^3.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "mdast-util-mdx-expression": "^2.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "mdast-util-mdxjs-esm": "^2.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-js": "^1.0.0",
+ "unist-util-position": "^5.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
- "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
- "cpu": [
- "arm"
- ],
+ "node_modules/hast-util-to-html": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
+ "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "html-void-elements": "^3.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "stringify-entities": "^4.0.0",
+ "zwitch": "^2.0.4"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
- "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/hast-util-to-jsx-runtime": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "mdast-util-mdx-expression": "^2.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "mdast-util-mdxjs-esm": "^2.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "style-to-js": "^1.0.0",
+ "unist-util-position": "^5.0.0",
+ "vfile-message": "^4.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
- "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/hast-util-to-mdast": {
+ "version": "10.1.2",
+ "resolved": "https://registry.npmjs.org/hast-util-to-mdast/-/hast-util-to-mdast-10.1.2.tgz",
+ "integrity": "sha512-FiCRI7NmOvM4y+f5w32jPRzcxDIz+PUqDwEqn1A+1q2cdp3B8Gx7aVrXORdOKjMNDQsD1ogOr896+0jJHW1EFQ==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@ungap/structured-clone": "^1.0.0",
+ "hast-util-phrasing": "^3.0.0",
+ "hast-util-to-html": "^9.0.0",
+ "hast-util-to-text": "^4.0.0",
+ "hast-util-whitespace": "^3.0.0",
+ "mdast-util-phrasing": "^4.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "rehype-minify-whitespace": "^6.0.0",
+ "trim-trailing-lines": "^2.0.0",
+ "unist-util-position": "^5.0.0",
+ "unist-util-visit": "^5.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
- "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
- "cpu": [
- "x64"
- ],
+ "node_modules/hast-util-to-parse5": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz",
+ "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "devlop": "^1.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0",
+ "web-namespaces": "^2.0.0",
+ "zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-linux-x64-musl": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
- "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
- "cpu": [
- "x64"
- ],
+ "node_modules/hast-util-to-string": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.1.tgz",
+ "integrity": "sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
- "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/hast-util-to-text": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
+ "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/unist": "^3.0.0",
+ "hast-util-is-element": "^3.0.0",
+ "unist-util-find-after": "^5.0.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/lightningcss-win32-x64-msvc": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
- "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
- "cpu": [
- "x64"
- ],
+ "node_modules/hast-util-whitespace": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
"dev": true,
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/hastscript": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
+ "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "comma-separated-tokens": "^2.0.0",
+ "hast-util-parse-selector": "^4.0.0",
+ "property-information": "^7.0.0",
+ "space-separated-tokens": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/highcharts": {
+ "version": "11.4.8",
+ "resolved": "https://registry.npmjs.org/highcharts/-/highcharts-11.4.8.tgz",
+ "integrity": "sha512-5Tke9LuzZszC4osaFisxLIcw7xgNGz4Sy3Jc9pRMV+ydm6sYqsPYdU8ELOgpzGNrbrRNDRBtveoR5xS3SzneEA==",
+ "dev": true
+ },
+ "node_modules/html-escaper": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz",
+ "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/html-void-elements": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz",
+ "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/html-whitespace-sensitive-tag-names": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/html-whitespace-sensitive-tag-names/-/html-whitespace-sensitive-tag-names-3.0.1.tgz",
+ "integrity": "sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/http-cache-semantics": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
+ "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
+ "dev": true,
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/i18next": {
+ "version": "26.4.2",
+ "resolved": "https://registry.npmjs.org/i18next/-/i18next-26.4.2.tgz",
+ "integrity": "sha512-RX+R0VLg13IbvRuJSxnqykUFS9vQZTl8wYpWPCIUDWVrSGjsQywB5Y+pjzrkboxGAuYfJZVH1InFTdgBdxq6ug==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://www.locize.com/i18next"
+ },
+ {
+ "type": "individual",
+ "url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project"
+ },
+ {
+ "type": "individual",
+ "url": "https://www.locize.com"
+ }
],
+ "license": "MIT",
+ "peerDependencies": {
+ "typescript": "^5 || ^6 || ^7"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/inline-style-parser": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
+ "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/iron-webcrypto": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
+ "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/brc-dd"
+ }
+ },
+ "node_modules/is-absolute-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-5.0.0.tgz",
+ "integrity": "sha512-sdJyNpBnQHuVnBunfzjAecOhZr2+A30ywfFvu3EnxtKLUWfwGgyWUmqHbGZiU6vTfHpCPm5GvLe4BAvlU9n8VQ==",
+ "dev": true,
+ "license": "MIT",
"engines": {
- "node": ">= 12.0.0"
+ "node": ">=20"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-alphabetical": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-alphanumerical": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-decimal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-docker": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-4.0.0.tgz",
+ "integrity": "sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-hexadecimal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-plain-obj": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/js-yaml": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.2.tgz",
+ "integrity": "sha512-SFNOvSJ+Dgf/9An904Yx+CgSlIPCkIpao4qo51lpee25TIRejdH3rhR4EZMGoNx3/TP3O+wzWuiTFl4sqbltzA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/puzrin"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/nodeca"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsonc-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
+ "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/jsonfile": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
+ "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/klona": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
+ "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/lightningcss": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
+ "dev": true,
+ "license": "MPL-2.0",
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-android-arm64": "1.32.0",
+ "lightningcss-darwin-arm64": "1.32.0",
+ "lightningcss-darwin-x64": "1.32.0",
+ "lightningcss-freebsd-x64": "1.32.0",
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
+ "lightningcss-linux-arm64-gnu": "1.32.0",
+ "lightningcss-linux-arm64-musl": "1.32.0",
+ "lightningcss-linux-x64-gnu": "1.32.0",
+ "lightningcss-linux-x64-musl": "1.32.0",
+ "lightningcss-win32-arm64-msvc": "1.32.0",
+ "lightningcss-win32-x64-msvc": "1.32.0"
+ }
+ },
+ "node_modules/lightningcss-android-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lilconfig": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antonk52"
+ }
+ },
+ "node_modules/longest-streak": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
+ "node_modules/magic-string": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-1.1.0.tgz",
+ "integrity": "sha512-kS3VHe0nEPST2saQV4Rbkchcd3UBRkVTQHo1D3h/ZTwFDhai/mfKkmtPAtD129EOI7K3HlHIsFOt0WrI2/oU9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "node_modules/magicast": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.3.tgz",
+ "integrity": "sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.29.3",
+ "@babel/types": "^7.29.0",
+ "source-map-js": "^1.2.1"
+ }
+ },
+ "node_modules/markdown-extensions": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz",
+ "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/markdown-table": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/marked": {
+ "version": "18.0.5",
+ "resolved": "https://registry.npmjs.org/marked/-/marked-18.0.5.tgz",
+ "integrity": "sha512-S6GcvALHg6K4ohtu4E7x0a1AqhAjp6cV8KhLSyN9qVapnzJkusVBxZRcIU9AeYsbe6P1hKDusSbEOzGyyuce6w==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "marked": "bin/marked.js"
+ },
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/mdast-util-definitions": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz",
+ "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "unist-util-visit": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-directive": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.1.0.tgz",
+ "integrity": "sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-visit-parents": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "escape-string-regexp": "^5.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-from-markdown": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
+ "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark": "^4.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-stringify-position": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
+ "mdast-util-gfm-footnote": "^2.0.0",
+ "mdast-util-gfm-strikethrough": "^2.0.0",
+ "mdast-util-gfm-table": "^2.0.0",
+ "mdast-util-gfm-task-list-item": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-autolink-literal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-find-and-replace": "^3.0.0",
+ "micromark-util-character": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-footnote": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.1.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-strikethrough": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-table": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "markdown-table": "^3.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-task-list-item": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz",
+ "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-mdx-expression": "^2.0.0",
+ "mdast-util-mdx-jsx": "^3.0.0",
+ "mdast-util-mdxjs-esm": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-expression": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdx-jsx": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "ccount": "^2.0.0",
+ "devlop": "^1.1.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "parse-entities": "^4.0.0",
+ "stringify-entities": "^4.0.0",
+ "unist-util-stringify-position": "^4.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-mdxjs-esm": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "devlop": "^1.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "mdast-util-to-markdown": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-phrasing": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast": {
+ "version": "13.2.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
+ "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "@ungap/structured-clone": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "trim-lines": "^3.0.0",
+ "unist-util-position": "^5.0.0",
+ "unist-util-visit": "^5.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-markdown": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "@types/unist": "^3.0.0",
+ "longest-streak": "^3.0.0",
+ "mdast-util-phrasing": "^4.0.0",
+ "mdast-util-to-string": "^4.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-decode-string": "^2.0.0",
+ "unist-util-visit": "^5.0.0",
+ "zwitch": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdn-data": {
+ "version": "2.27.1",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz",
+ "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/micromark": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/debug": "^4.0.0",
+ "debug": "^4.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-encode": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-core-commonmark": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "decode-named-character-reference": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-destination": "^2.0.0",
+ "micromark-factory-label": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-title": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-html-tag-name": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-subtokenize": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-extension-directive": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-4.0.0.tgz",
+ "integrity": "sha512-/C2nqVmXXmiseSSuCdItCMho7ybwwop6RrrRPk0KbOHW21JKoCldC+8rFOaundDoRBUWBnJJcxeA/Kvi34WQXg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-factory-whitespace": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "parse-entities": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
+ "micromark-extension-gfm-footnote": "^2.0.0",
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
+ "micromark-extension-gfm-table": "^2.0.0",
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-autolink-literal": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-footnote": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-normalize-identifier": "^2.0.0",
+ "micromark-util-sanitize-uri": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-strikethrough": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-classify-character": "^2.0.0",
+ "micromark-util-resolve-all": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-table": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.2.tgz",
+ "integrity": "sha512-pRzm4kDTu0MjlmBkxmS9yYhw60nncfcEwu9NNdPFSQEFXS95ZKyIIyTSHu/o3ReBUrLKYEq+7YaXCRn/bPB4MA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-tagfilter": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-task-list-item": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdx-expression": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz",
+ "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-mdx-expression": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-extension-mdx-jsx": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz",
+ "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "estree-util-is-identifier-name": "^3.0.0",
+ "micromark-factory-mdx-expression": "^2.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdx-md": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz",
+ "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdxjs": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz",
+ "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.0.0",
+ "acorn-jsx": "^5.0.0",
+ "micromark-extension-mdx-expression": "^3.0.0",
+ "micromark-extension-mdx-jsx": "^3.0.0",
+ "micromark-extension-mdx-md": "^2.0.0",
+ "micromark-extension-mdxjs-esm": "^3.0.0",
+ "micromark-util-combine-extensions": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-mdxjs-esm": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz",
+ "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-core-commonmark": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-position-from-estree": "^2.0.0",
+ "vfile-message": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-factory-destination": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-label": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-mdx-expression": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz",
+ "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "devlop": "^1.0.0",
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-events-to-acorn": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unist-util-position-from-estree": "^2.0.0",
+ "vfile-message": "^4.0.0"
+ }
+ },
+ "node_modules/micromark-factory-space": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-title": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-factory-whitespace": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-factory-space": "^2.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-character": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-util-chunked": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/lilconfig": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
- "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
+ "node_modules/micromark-util-classify-character": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
"dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antonk52"
+ "dependencies": {
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/lru-cache": {
- "version": "11.5.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
- "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
+ "node_modules/micromark-util-combine-extensions": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
"dev": true,
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": "20 || >=22"
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
}
},
- "node_modules/magic-string": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-1.1.0.tgz",
- "integrity": "sha512-kS3VHe0nEPST2saQV4Rbkchcd3UBRkVTQHo1D3h/ZTwFDhai/mfKkmtPAtD129EOI7K3HlHIsFOt0WrI2/oU9g==",
+ "node_modules/micromark-util-decode-numeric-character-reference": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
"dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.5"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/magicast": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.3.tgz",
- "integrity": "sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==",
+ "node_modules/micromark-util-decode-string": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
"dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.29.3",
- "@babel/types": "^7.29.0",
- "source-map-js": "^1.2.1"
+ "decode-named-character-reference": "^1.0.0",
+ "micromark-util-character": "^2.0.0",
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/marked": {
- "version": "18.0.5",
- "resolved": "https://registry.npmjs.org/marked/-/marked-18.0.5.tgz",
- "integrity": "sha512-S6GcvALHg6K4ohtu4E7x0a1AqhAjp6cV8KhLSyN9qVapnzJkusVBxZRcIU9AeYsbe6P1hKDusSbEOzGyyuce6w==",
+ "node_modules/micromark-util-encode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
"dev": true,
- "license": "MIT",
- "bin": {
- "marked": "bin/marked.js"
- },
- "engines": {
- "node": ">= 20"
- }
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
},
- "node_modules/mdast-util-to-hast": {
- "version": "13.2.1",
- "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
- "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
+ "node_modules/micromark-util-events-to-acorn": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz",
+ "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==",
"dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
"license": "MIT",
"dependencies": {
- "@types/hast": "^3.0.0",
- "@types/mdast": "^4.0.0",
- "@ungap/structured-clone": "^1.0.0",
+ "@types/estree": "^1.0.0",
+ "@types/unist": "^3.0.0",
"devlop": "^1.0.0",
- "micromark-util-sanitize-uri": "^2.0.0",
- "trim-lines": "^3.0.0",
- "unist-util-position": "^5.0.0",
- "unist-util-visit": "^5.0.0",
- "vfile": "^6.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
+ "estree-util-visit": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "vfile-message": "^4.0.0"
}
},
- "node_modules/mdn-data": {
- "version": "2.27.1",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz",
- "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
+ "node_modules/micromark-util-html-tag-name": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
"dev": true,
- "license": "CC0-1.0"
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT"
},
- "node_modules/micromark-util-character": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
+ "node_modules/micromark-util-normalize-identifier": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
"dev": true,
"funding": [
{
@@ -3530,14 +6103,13 @@
],
"license": "MIT",
"dependencies": {
- "micromark-util-symbol": "^2.0.0",
- "micromark-util-types": "^2.0.0"
+ "micromark-util-symbol": "^2.0.0"
}
},
- "node_modules/micromark-util-encode": {
+ "node_modules/micromark-util-resolve-all": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
- "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
"dev": true,
"funding": [
{
@@ -3549,7 +6121,10 @@
"url": "https://opencollective.com/unified"
}
],
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "micromark-util-types": "^2.0.0"
+ }
},
"node_modules/micromark-util-sanitize-uri": {
"version": "2.0.1",
@@ -3573,6 +6148,29 @@
"micromark-util-symbol": "^2.0.0"
}
},
+ "node_modules/micromark-util-subtokenize": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "devlop": "^1.0.0",
+ "micromark-util-chunked": "^2.0.0",
+ "micromark-util-symbol": "^2.0.0",
+ "micromark-util-types": "^2.0.0"
+ }
+ },
"node_modules/micromark-util-symbol": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
@@ -3607,6 +6205,33 @@
],
"license": "MIT"
},
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/micromatch/node_modules/picomatch": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/mitt": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
@@ -3634,6 +6259,13 @@
"node": ">=10"
}
},
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/nanoid": {
"version": "3.3.18",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
@@ -3830,15 +6462,93 @@
"node": ">=20"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/package-manager-detector": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz",
+ "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/pagefind": {
+ "version": "1.5.2",
+ "resolved": "https://registry.npmjs.org/pagefind/-/pagefind-1.5.2.tgz",
+ "integrity": "sha512-XTUaK0hXMCu2jszWE584JGQT7y284TmMV9l/HX3rnG5uo3rHI/uHU56XTyyyPFjeWEBxECbAi0CaFDJOONtG0Q==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "pagefind": "lib/runner/bin.cjs"
+ },
+ "optionalDependencies": {
+ "@pagefind/darwin-arm64": "1.5.2",
+ "@pagefind/darwin-x64": "1.5.2",
+ "@pagefind/freebsd-x64": "1.5.2",
+ "@pagefind/linux-arm64": "1.5.2",
+ "@pagefind/linux-x64": "1.5.2",
+ "@pagefind/windows-arm64": "1.5.2",
+ "@pagefind/windows-x64": "1.5.2"
+ }
+ },
+ "node_modules/parse-entities": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "character-entities-legacy": "^3.0.0",
+ "character-reference-invalid": "^2.0.0",
+ "decode-named-character-reference": "^1.0.0",
+ "is-alphanumerical": "^2.0.0",
+ "is-decimal": "^2.0.0",
+ "is-hexadecimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/parse-entities/node_modules/@types/unist": {
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/parse-latin": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz",
+ "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/nlcst": "^2.0.0",
+ "@types/unist": "^3.0.0",
+ "nlcst-to-string": "^4.0.0",
+ "unist-util-modify-children": "^4.0.0",
+ "unist-util-visit-children": "^3.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/package-manager-detector": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz",
- "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==",
+ "node_modules/parse5": {
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
+ "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "entities": "^6.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
},
"node_modules/piccolore": {
"version": "0.1.3",
@@ -3895,6 +6605,46 @@
"node": "^10 || ^12 || >=14"
}
},
+ "node_modules/postcss-nested": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
+ "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.1.1"
+ },
+ "engines": {
+ "node": ">=12.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.2.14"
+ }
+ },
+ "node_modules/postcss-selector-parser": {
+ "version": "6.1.4",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.4.tgz",
+ "integrity": "sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/prismjs": {
"version": "1.30.0",
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
@@ -3987,6 +6737,77 @@
"url": "https://paulmillr.com/funding/"
}
},
+ "node_modules/recma-build-jsx": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz",
+ "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "estree-util-build-jsx": "^3.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/recma-jsx": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz",
+ "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "acorn-jsx": "^5.0.0",
+ "estree-util-to-js": "^2.0.0",
+ "recma-parse": "^1.0.0",
+ "recma-stringify": "^1.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/recma-parse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz",
+ "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "esast-util-from-js": "^2.0.0",
+ "unified": "^11.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/recma-stringify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz",
+ "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "estree-util-to-js": "^2.0.0",
+ "unified": "^11.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz",
@@ -4004,16 +6825,273 @@
"dev": true,
"license": "MIT",
"dependencies": {
- "regex-utilities": "^2.3.0"
+ "regex-utilities": "^2.3.0"
+ }
+ },
+ "node_modules/regex-utilities": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz",
+ "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/rehype": {
+ "version": "13.0.2",
+ "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz",
+ "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "rehype-parse": "^9.0.0",
+ "rehype-stringify": "^10.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-expressive-code": {
+ "version": "0.44.2",
+ "resolved": "https://registry.npmjs.org/rehype-expressive-code/-/rehype-expressive-code-0.44.2.tgz",
+ "integrity": "sha512-jvjQpsfWKBquDrEl5YQA3CJybRRIuDOYsui1BJTs5oKDUK8pPkJSSxY8FjxNlIFIdtgrTjC1zuahuY4Cc1j9SQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "expressive-code": "^0.44.2"
+ }
+ },
+ "node_modules/rehype-format": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/rehype-format/-/rehype-format-5.0.1.tgz",
+ "integrity": "sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-format": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-minify-whitespace": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/rehype-minify-whitespace/-/rehype-minify-whitespace-6.0.2.tgz",
+ "integrity": "sha512-Zk0pyQ06A3Lyxhe9vGtOtzz3Z0+qZ5+7icZ/PL/2x1SHPbKao5oB/g/rlc6BCTajqBb33JcOe71Ye1oFsuYbnw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-minify-whitespace": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-parse": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz",
+ "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-from-html": "^2.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-raw": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz",
+ "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-raw": "^9.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-recma": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz",
+ "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "@types/hast": "^3.0.0",
+ "hast-util-to-estree": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-remark": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/rehype-remark/-/rehype-remark-10.0.1.tgz",
+ "integrity": "sha512-EmDndlb5NVwXGfUa4c9GPK+lXeItTilLhE6ADSaQuHr4JUlKw9MidzGzx4HpqZrNCt6vnHmEifXQiiA+CEnjYQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "hast-util-to-mdast": "^10.0.0",
+ "unified": "^11.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/rehype-stringify": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz",
+ "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "hast-util-to-html": "^9.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-directive": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-4.0.0.tgz",
+ "integrity": "sha512-7sxn4RfF1o3izevPV1DheyGDD6X4c9hrGpfdUpm7uC++dqrnJxIZVkk7CoKqcLm0VUMAuOol7Mno3m6g8cfMuA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-directive": "^3.0.0",
+ "micromark-extension-directive": "^4.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-gfm": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-gfm": "^3.0.0",
+ "micromark-extension-gfm": "^3.0.0",
+ "remark-parse": "^11.0.0",
+ "remark-stringify": "^11.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-mdx": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz",
+ "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-mdx": "^3.0.0",
+ "micromark-extension-mdxjs": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-parse": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-from-markdown": "^2.0.0",
+ "micromark-util-types": "^2.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-rehype": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.0",
+ "@types/mdast": "^4.0.0",
+ "mdast-util-to-hast": "^13.0.0",
+ "unified": "^11.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-smartypants": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.3.tgz",
+ "integrity": "sha512-gCaK+ndZ0hYezlqFegHFCVh2CQemsi0Npdh1qVM9bxlUFknjkbP6VmojWhddOCrbK0PbbacmYLWfTULRiT1eWA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "retext": "^9.0.0",
+ "retext-smartypants": "^6.0.0",
+ "unified": "^11.0.4",
+ "unist-util-visit": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ }
+ },
+ "node_modules/remark-stringify": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^4.0.0",
+ "mdast-util-to-markdown": "^2.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
}
},
- "node_modules/regex-utilities": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz",
- "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/resolve-pkg-maps": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
@@ -4024,6 +7102,39 @@
"url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
}
},
+ "node_modules/retext": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
+ "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/nlcst": "^2.0.0",
+ "retext-latin": "^4.0.0",
+ "retext-stringify": "^4.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/retext-latin": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz",
+ "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/nlcst": "^2.0.0",
+ "parse-latin": "^7.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/retext-smartypants": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz",
@@ -4040,6 +7151,22 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/retext-stringify": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz",
+ "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/nlcst": "^2.0.0",
+ "nlcst-to-string": "^4.0.0",
+ "unified": "^11.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/rolldown": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.3.tgz",
@@ -4225,59 +7352,432 @@
"sitemap": "dist/esm/cli.js"
},
"engines": {
- "node": ">=20.19.5",
- "npm": ">=10.8.2"
+ "node": ">=20.19.5",
+ "npm": ">=10.8.2"
+ }
+ },
+ "node_modules/sitemap/node_modules/@types/node": {
+ "version": "24.13.2",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.2.tgz",
+ "integrity": "sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~7.18.0"
+ }
+ },
+ "node_modules/sitemap/node_modules/undici-types": {
+ "version": "7.18.2",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
+ "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/smol-toml": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.8.0.tgz",
+ "integrity": "sha512-kCZr2V3ch9i00x8zXRhjUNVcjG9ijES5dDudkXvUVCT5QlJNQWElSJdZqyPemffHoLNUYwOcou0Fy+ojN0uHSQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/cyyynthia"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.7.6",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz",
+ "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/space-separated-tokens": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/starlight-links-validator": {
+ "version": "0.25.3",
+ "resolved": "https://registry.npmjs.org/starlight-links-validator/-/starlight-links-validator-0.25.3.tgz",
+ "integrity": "sha512-kNE2F8fwdq7r8l6Zx2nH3SDnLlVu2VRmbmyV/nSpbtWzf9+S81H2VBZ6GRevIKbm8qOoYSZvXzNATT8ZXw9bmw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/markdown-satteri": "^0.3.2",
+ "@types/picomatch": "^4.0.2",
+ "github-slugger": "^2.0.0",
+ "hast-util-from-html": "^2.0.3",
+ "is-absolute-url": "^5.0.0",
+ "mdast-util-mdx-jsx": "^3.2.0",
+ "mdast-util-to-hast": "^13.2.1",
+ "picomatch": "^4.0.3",
+ "satteri": "^0.9.3",
+ "terminal-link": "^5.0.0",
+ "unist-util-visit": "^5.1.0",
+ "yaml": "^2.8.3"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ },
+ "peerDependencies": {
+ "@astrojs/starlight": ">=0.41.0",
+ "astro": ">=7.0.2"
+ }
+ },
+ "node_modules/starlight-links-validator/node_modules/@astrojs/internal-helpers": {
+ "version": "0.10.4",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.10.4.tgz",
+ "integrity": "sha512-nozZSy/mKYLqe4YrqbKtdOszedAfXYCtw3wZ0d+CAjz4GqQ4L9rl1ltIL5BlgwmYVinJg/RZ0MgGuWOdlyRZlA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.4",
+ "@types/mdast": "^4.0.4",
+ "js-yaml": "^4.3.0",
+ "picomatch": "^4.0.4",
+ "retext-smartypants": "^6.2.0",
+ "shiki": "^4.0.2",
+ "smol-toml": "^1.6.0",
+ "unified": "^11.0.5"
+ }
+ },
+ "node_modules/starlight-links-validator/node_modules/@astrojs/markdown-satteri": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-satteri/-/markdown-satteri-0.3.8.tgz",
+ "integrity": "sha512-n8ItpFTCmlDsVR5+rwDmehSf+jFCYLWmZiisZNGuF7xILqYhsVeBfcha4qgS2Seq3fAc9Tm58ZVrvqFQ6RQgRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.10.4",
+ "@astrojs/prism": "4.0.2",
+ "github-slugger": "^2.0.0",
+ "satteri": "^0.10.3"
+ }
+ },
+ "node_modules/starlight-links-validator/node_modules/@astrojs/markdown-satteri/node_modules/satteri": {
+ "version": "0.10.5",
+ "resolved": "https://registry.npmjs.org/satteri/-/satteri-0.10.5.tgz",
+ "integrity": "sha512-Ao1LKpAEa9Wdg0otgbVKViZHEq9ebdXe4DMrp3s9vQAU0HNIuHnFEuMuOcm0ZIXyV0Yzxj91NvhLpvXZJO/5ZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.5",
+ "@types/hast": "^3.0.5",
+ "@types/mdast": "^4.0.4",
+ "@types/unist": "^3.0.3"
+ },
+ "optionalDependencies": {
+ "@bruits/satteri-darwin-arm64": "0.10.5",
+ "@bruits/satteri-darwin-x64": "0.10.5",
+ "@bruits/satteri-linux-arm64-gnu": "0.10.5",
+ "@bruits/satteri-linux-arm64-musl": "0.10.5",
+ "@bruits/satteri-linux-x64-gnu": "0.10.5",
+ "@bruits/satteri-linux-x64-musl": "0.10.5",
+ "@bruits/satteri-wasm32-wasi": "0.10.5",
+ "@bruits/satteri-win32-arm64-msvc": "0.10.5",
+ "@bruits/satteri-win32-x64-msvc": "0.10.5"
+ }
+ },
+ "node_modules/starlight-links-validator/node_modules/@emnapi/runtime": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/satteri/-/satteri-0.9.5.tgz",
+ "integrity": "sha512-ZuWVl+vnM64y+/TtX8Kosv2c00W+hLQiiwnEL6H0UKVVrxFqMw4D2CJHHQaouVd89OAhtBBfjWLqhKi3TVUV4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree-jsx": "^1.0.5",
+ "@types/hast": "^3.0.4",
+ "@types/mdast": "^4.0.4",
+ "@types/unist": "^3.0.3"
+ },
+ "optionalDependencies": {
+ "@bruits/satteri-darwin-arm64": "0.9.5",
+ "@bruits/satteri-darwin-x64": "0.9.5",
+ "@bruits/satteri-linux-arm64-gnu": "0.9.5",
+ "@bruits/satteri-linux-arm64-musl": "0.9.5",
+ "@bruits/satteri-linux-x64-gnu": "0.9.5",
+ "@bruits/satteri-linux-x64-musl": "0.9.5",
+ "@bruits/satteri-wasm32-wasi": "0.9.5",
+ "@bruits/satteri-win32-arm64-msvc": "0.9.5",
+ "@bruits/satteri-win32-x64-msvc": "0.9.5"
+ }
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-darwin-arm64": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-darwin-arm64/-/satteri-darwin-arm64-0.9.5.tgz",
+ "integrity": "sha512-iw4nZgx9v30lWo/MTngQqi1pI78KI0DnkSm+lVJGYdmPLgAyDNJigVhpG42/Iq55A6c1Ll8q66ljyyRiQUxwow==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-darwin-x64": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-darwin-x64/-/satteri-darwin-x64-0.9.5.tgz",
+ "integrity": "sha512-6T26Z5Kf3cFW2PSlk9p7zT7yVxvuBSiJvYyz9u8KjYwMTqZyIDOj2wDyNpxKV4+6yUVG7rddq2QwvG/8LJA2+Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-linux-arm64-gnu": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-arm64-gnu/-/satteri-linux-arm64-gnu-0.9.5.tgz",
+ "integrity": "sha512-u51id17uJwNEMK9nBlICsq6U31c+XVqQueVBkwRIzZG+gMpS8TOJctt5h5Wz33Z8xnMdTd+adtACVz0yHgGuOA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-linux-arm64-musl": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-arm64-musl/-/satteri-linux-arm64-musl-0.9.5.tgz",
+ "integrity": "sha512-v39HxiwGC5Rqm01HksP6+5Y+xKLPlsuVFgIgpEAo+SiQ22c+mJVhS3u7Z6ePAKdhL5NJoK1xq70kLz3L13AhpQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-linux-x64-gnu": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-x64-gnu/-/satteri-linux-x64-gnu-0.9.5.tgz",
+ "integrity": "sha512-F3uO8uFp3pAP5ZGXttwvh57GS7s0lL953tnNdyI2gRyP4kOOkp6pyGojNJzCjkDvWI2Cvb9iNrKok3aqQPauAw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-linux-x64-musl": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-linux-x64-musl/-/satteri-linux-x64-musl-0.9.5.tgz",
+ "integrity": "sha512-bicEqglLlz++mWyADaZoP0JY20s4vDfLjaPYgQqC+NI4zZLTOOg1T4GB8aqtc822Pqji8SQBmSrTb7CrP8i08Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-wasm32-wasi": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-wasm32-wasi/-/satteri-wasm32-wasi-0.9.5.tgz",
+ "integrity": "sha512-zauAuMwfPnKPUkd4AFixRFpXdgKwP2mKgxrIIo2gJzW0/ZneF9dbHnLkojSpaBnCCp7VUL1hIi5WWZvB1CqmAQ==",
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "1.11.1",
+ "@emnapi/runtime": "1.11.1",
+ "@napi-rs/wasm-runtime": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=14.0.0"
}
},
- "node_modules/sitemap/node_modules/@types/node": {
- "version": "24.13.2",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.2.tgz",
- "integrity": "sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA==",
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-win32-arm64-msvc": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-win32-arm64-msvc/-/satteri-win32-arm64-msvc-0.9.5.tgz",
+ "integrity": "sha512-SrfE7NEsgZjBvU3c+RR6oQRu0ToXY5uVJEbieXEF0YTctIV2zAVlbaMjWLts074QCgh3a+XHWkR/lWh2VH2LUg==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
"license": "MIT",
- "dependencies": {
- "undici-types": "~7.18.0"
- }
+ "optional": true,
+ "os": [
+ "win32"
+ ]
},
- "node_modules/sitemap/node_modules/undici-types": {
- "version": "7.18.2",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
- "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
+ "node_modules/starlight-links-validator/node_modules/satteri/node_modules/@bruits/satteri-win32-x64-msvc": {
+ "version": "0.9.5",
+ "resolved": "https://registry.npmjs.org/@bruits/satteri-win32-x64-msvc/-/satteri-win32-x64-msvc-0.9.5.tgz",
+ "integrity": "sha512-5Kw9ZAtTGS8WHizyn+CJhjjfIQrw+7jcZodpmpXJjefnO15M8UexIi6JR2E5thyvsmHyhL6ZDDMUNR4bKJPd4g==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
},
- "node_modules/smol-toml": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.8.0.tgz",
- "integrity": "sha512-kCZr2V3ch9i00x8zXRhjUNVcjG9ijES5dDudkXvUVCT5QlJNQWElSJdZqyPemffHoLNUYwOcou0Fy+ojN0uHSQ==",
+ "node_modules/starlight-llms-txt": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/starlight-llms-txt/-/starlight-llms-txt-0.11.0.tgz",
+ "integrity": "sha512-83TU5zPgJhL9fXIWAOWjQjyQ6EKocshEjJyA4zOJjOqu/oxQsrTpYGYxjHLyfZe4LRD52N9eCuykSkaIYwUyDw==",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">= 18"
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/mdx": "^7.0.0",
+ "@types/hast": "^3.0.4",
+ "@types/micromatch": "^4.0.10",
+ "github-slugger": "^2.0.0",
+ "hast-util-select": "^6.0.4",
+ "micromatch": "^4.0.8",
+ "rehype-parse": "^9.0.1",
+ "rehype-remark": "^10.0.1",
+ "remark-gfm": "^4.0.1",
+ "remark-stringify": "^11.0.0",
+ "unified": "^11.0.5",
+ "unist-util-remove": "^4.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/cyyynthia"
+ "peerDependencies": {
+ "@astrojs/starlight": ">=0.41.0",
+ "astro": "^7.0.0"
}
},
- "node_modules/source-map-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "node_modules/starlight-llms-txt/node_modules/@astrojs/internal-helpers": {
+ "version": "0.10.4",
+ "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.10.4.tgz",
+ "integrity": "sha512-nozZSy/mKYLqe4YrqbKtdOszedAfXYCtw3wZ0d+CAjz4GqQ4L9rl1ltIL5BlgwmYVinJg/RZ0MgGuWOdlyRZlA==",
"dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^3.0.4",
+ "@types/mdast": "^4.0.4",
+ "js-yaml": "^4.3.0",
+ "picomatch": "^4.0.4",
+ "retext-smartypants": "^6.2.0",
+ "shiki": "^4.0.2",
+ "smol-toml": "^1.6.0",
+ "unified": "^11.0.5"
}
},
- "node_modules/space-separated-tokens": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
- "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
+ "node_modules/starlight-llms-txt/node_modules/@astrojs/markdown-remark": {
+ "version": "7.2.4",
+ "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-7.2.4.tgz",
+ "integrity": "sha512-MvspGMynWKAjTe4/lTUdmBPHIFKNVLTCF6UlyWGogTGzNrTvjD+D4n48k7h8swxsEPKHK2TwxkZO7uoaCv1Pow==",
"dev": true,
"license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.10.4",
+ "@astrojs/prism": "4.0.2",
+ "github-slugger": "^2.0.0",
+ "hast-util-from-html": "^2.0.3",
+ "hast-util-to-text": "^4.0.2",
+ "mdast-util-definitions": "^6.0.0",
+ "rehype-raw": "^7.0.0",
+ "rehype-stringify": "^10.0.1",
+ "remark-gfm": "^4.0.1",
+ "remark-parse": "^11.0.0",
+ "remark-rehype": "^11.1.2",
+ "remark-smartypants": "^3.0.2",
+ "unified": "^11.0.5",
+ "unist-util-remove-position": "^5.0.0",
+ "unist-util-visit": "^5.1.0",
+ "unist-util-visit-parents": "^6.0.2",
+ "vfile": "^6.0.3"
+ }
+ },
+ "node_modules/starlight-llms-txt/node_modules/@astrojs/mdx": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-7.0.8.tgz",
+ "integrity": "sha512-RNuwq2ccTSi7NX9YqlR0noaWoVdOrZuJvdfWXotAzdhMVB0b0zEMLnNU+xar7le0GwTMlTObD/QAu8jeHA/3nA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@astrojs/internal-helpers": "0.10.4",
+ "@astrojs/markdown-remark": "7.2.4",
+ "@mdx-js/mdx": "^3.1.1",
+ "acorn": "^8.16.0",
+ "es-module-lexer": "^2.0.0",
+ "estree-util-visit": "^2.0.0",
+ "hast-util-to-html": "^9.0.5",
+ "piccolore": "^0.1.3",
+ "rehype-raw": "^7.0.0",
+ "remark-gfm": "^4.0.1",
+ "remark-smartypants": "^3.0.2",
+ "source-map": "^0.7.6",
+ "unist-util-visit": "^5.1.0",
+ "vfile": "^6.0.3"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ },
+ "peerDependencies": {
+ "@astrojs/markdown-satteri": "^0.3.1",
+ "astro": "^7.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@astrojs/markdown-satteri": {
+ "optional": true
+ }
}
},
"node_modules/string-width": {
@@ -4328,6 +7828,56 @@
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
+ "node_modules/style-to-js": {
+ "version": "1.1.21",
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
+ "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "style-to-object": "1.0.14"
+ }
+ },
+ "node_modules/style-to-object": {
+ "version": "1.0.14",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
+ "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "inline-style-parser": "0.2.7"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz",
+ "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/supports-hyperlinks": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-4.5.0.tgz",
+ "integrity": "sha512-ZW2OvfeCXrNTbLakPUzjQG922EeGCOteFSVoek5DKStTh898wf7zgtuFlzQN8HfZCxC3Eh02yJVrRW51hADf+w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^5.0.1",
+ "supports-color": "^10.2.2"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
+ }
+ },
"node_modules/svgo": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.2.tgz",
@@ -4364,6 +7914,23 @@
"node": ">=16"
}
},
+ "node_modules/terminal-link": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-5.0.0.tgz",
+ "integrity": "sha512-qFAy10MTMwjzjU8U16YS4YoZD+NQLHzLssFMNqgravjbvIPNiqkGFR4yjhJfmY9R5OFU7+yHxc6y+uGHkKwLRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-escapes": "^7.0.0",
+ "supports-hyperlinks": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/tiny-inflate": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
@@ -4408,6 +7975,19 @@
"url": "https://github.com/sponsors/SuperchupuDev"
}
},
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
"node_modules/trim-lines": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
@@ -4419,6 +7999,17 @@
"url": "https://github.com/sponsors/wooorm"
}
},
+ "node_modules/trim-trailing-lines": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-2.1.0.tgz",
+ "integrity": "sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/trough": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
@@ -4514,6 +8105,21 @@
"undici": "^8.0.0"
}
},
+ "node_modules/unist-util-find-after": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
+ "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/unist-util-is": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
@@ -4528,6 +8134,21 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/unist-util-modify-children": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz",
+ "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "array-iterate": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/unist-util-position": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
@@ -4542,6 +8163,51 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/unist-util-position-from-estree": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz",
+ "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-4.0.0.tgz",
+ "integrity": "sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-is": "^6.0.0",
+ "unist-util-visit-parents": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-remove-position": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
+ "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "unist-util-visit": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/unist-util-stringify-position": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
@@ -4572,6 +8238,20 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/unist-util-visit-children": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz",
+ "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/unist-util-visit-parents": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
@@ -4694,6 +8374,26 @@
}
}
},
+ "node_modules/url-extras": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/url-extras/-/url-extras-0.1.0.tgz",
+ "integrity": "sha512-8tzwTeXFPuX/5PHuCDQE5Dd9Ts4rwoq2t9aIT+HS4iAVpmj5l4Ao7Q+BuuFjvWRqrLswBhQDk8O96ZicgCqQqw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/vfile": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
@@ -4709,6 +8409,21 @@
"url": "https://opencollective.com/unified"
}
},
+ "node_modules/vfile-location": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
+ "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^3.0.0",
+ "vfile": "^6.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/vfile-message": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
@@ -4730,7 +8445,6 @@
"integrity": "sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"lightningcss": "^1.32.0",
"picomatch": "^4.0.4",
@@ -4823,6 +8537,17 @@
}
}
},
+ "node_modules/web-namespaces": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
+ "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
"node_modules/web-streams-polyfill": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.1.1.tgz",
@@ -4933,6 +8658,22 @@
"node": ">=10"
}
},
+ "node_modules/yaml": {
+ "version": "2.9.1",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.1.tgz",
+ "integrity": "sha512-3NxN8+78OdzbT7C/WjGsyfPAtJaN3FNDsWxv7Y7mcDsT/oOmgW8BpyQQFFBnvZE3j9Y2Sdz1ULFLezL7Eb2yFw==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "yaml": "bin.mjs"
+ },
+ "engines": {
+ "node": ">= 14.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/eemeli"
+ }
+ },
"node_modules/yargs": {
"version": "18.1.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-18.1.0.tgz",
diff --git a/package.json b/package.json
index edd5a4dd..f3ae1ae9 100644
--- a/package.json
+++ b/package.json
@@ -28,6 +28,7 @@
},
"devDependencies": {
"@astrojs/sitemap": "^3.7.4",
+ "@astrojs/starlight": "^0.41.1",
"astro": "^7.3.1",
"ejs": "6.0.1",
"fs-extra": "11.4.0",
@@ -36,6 +37,8 @@
"node-fetch": "3.3.2",
"puppeteer": "^25.10.0",
"run-script-os": "1.1.6",
+ "starlight-links-validator": "^0.25.1",
+ "starlight-llms-txt": "^0.11.0",
"web-vitals": "6.2.1",
"xml-js": "1.6.11",
"zod": "^4.4.3"
diff --git a/public/sitemap.xml b/public/sitemap.xml
index bf2e9a17..566164b0 100644
--- a/public/sitemap.xml
+++ b/public/sitemap.xml
@@ -3,7 +3,7 @@
https://httparchive.org/
- 2026-08-10
+ 2026-09-14
@@ -11,9 +11,134 @@
2026-07-02
+
+ https://httparchive.org/docs
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/guides/getting-started
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/guides/guided-tour
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/guides/minimizing-costs
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/guides/release-cycle
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/blobs/lighthouse
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/blobs/page-metadata
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/blobs/page-payload
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/blobs/page-summary
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/blobs/request-payload
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/blobs/request-summary
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/custom-metrics/ads
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/custom-metrics/other
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/custom-metrics/privacy
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/functions/capo
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/functions/get_host_categories
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/functions/get_lcp_lazy
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/functions/get_lcp_priority
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/functions/get_origin
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/structs/custom-metrics
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/structs/feature
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/structs/header
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/structs/technology
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/tables/pages
+ 2026-09-14
+
+
+
+ https://httparchive.org/docs/reference/tables/requests
+ 2026-09-14
+
+
https://httparchive.org/faq
- 2026-06-29
+ 2026-09-14
diff --git a/public/static/img/mag.png b/public/static/img/mag.png
new file mode 100644
index 0000000000000000000000000000000000000000..84ecb09465f78eec50d0dc86f02ed7f27efb18e9
GIT binary patch
literal 10701
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
Contact
FAQ
- Docs
+ Docs
diff --git a/src/components/docs/Header.astro b/src/components/docs/Header.astro
new file mode 100644
index 00000000..5fa0ca7b
--- /dev/null
+++ b/src/components/docs/Header.astro
@@ -0,0 +1,318 @@
+---
+/**
+ * Starlight Header override.
+ * Renders the HTTP Archive site navbar + Starlight search.
+ * All styles are scoped — Bootstrap is NOT loaded, to avoid conflicts with Starlight's CSS.
+ */
+import type { Props } from '@astrojs/starlight/props';
+import Search from '@astrojs/starlight/components/Search.astro';
+
+import { getReports, getReportUrl } from '../../utils/reports.js';
+const reports = getReports();
+---
+
+
+
+
+
+
+
+
diff --git a/src/content.config.ts b/src/content.config.ts
new file mode 100644
index 00000000..a05db8c9
--- /dev/null
+++ b/src/content.config.ts
@@ -0,0 +1,7 @@
+import { defineCollection } from 'astro:content';
+import { docsLoader } from "@astrojs/starlight/loaders";
+import { docsSchema } from '@astrojs/starlight/schema';
+
+export const collections = {
+ docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
+};
diff --git a/src/content/docs/docs/guides/bigquery-httparchive-pinned.png b/src/content/docs/docs/guides/bigquery-httparchive-pinned.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a6bb0cd74acbee725fb8265824d6ae7d633641d
GIT binary patch
literal 15093
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
literal 0
HcmV?d00001
diff --git a/src/content/docs/docs/guides/bigquery-pages.png b/src/content/docs/docs/guides/bigquery-pages.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c7cbd17587a7b848fd128eede6a04f97f272d44
GIT binary patch
literal 126337
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