diff --git a/.changeset/dirty-bobcats-taste.md b/.changeset/dirty-bobcats-taste.md
new file mode 100644
index 0000000..163487e
--- /dev/null
+++ b/.changeset/dirty-bobcats-taste.md
@@ -0,0 +1,11 @@
+---
+"starlight-plugin-show-latest-version": minor
+---
+
+⚠️ **BREAKING CHANGE:** The minimum supported version of Starlight is now version `0.32.0`.
+
+Please use the `@astrojs/upgrade` command to upgrade your project:
+
+```sh
+npx @astrojs/upgrade
+```
diff --git a/.changeset/new-coats-wink.md b/.changeset/new-coats-wink.md
new file mode 100644
index 0000000..b1a2d5b
--- /dev/null
+++ b/.changeset/new-coats-wink.md
@@ -0,0 +1,5 @@
+---
+"starlight-plugin-show-latest-version-docs": patch
+---
+
+Update documenation `/components` because the notes were too large
diff --git a/docs/package.json b/docs/package.json
index 1686e2e..ed73ded 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -26,13 +26,13 @@
"start": "astro dev"
},
"dependencies": {
- "@astrojs/node": "^9.0.2",
- "@astrojs/starlight": "^0.31.1",
- "@trueberryless-org/starlight-plugins-docs-components": "^0.3.0",
- "astro": "^5.1.10",
+ "@astrojs/node": "^9.1.0",
+ "@astrojs/starlight": "^0.32.0",
+ "@trueberryless-org/starlight-plugins-docs-components": "^0.4.1",
+ "astro": "^5.3.0",
"sharp": "^0.33.5",
- "starlight-contributor-list": "^0.2.0",
- "starlight-links-validator": "^0.14.1",
+ "starlight-contributor-list": "^0.2.1",
+ "starlight-links-validator": "^0.14.3",
"starlight-plugin-show-latest-version": "workspace:*"
},
"packageManager": "pnpm@9.3.0",
diff --git a/docs/src/content/docs/components.mdx b/docs/src/content/docs/components.mdx
index c2aca2a..4c2f383 100644
--- a/docs/src/content/docs/components.mdx
+++ b/docs/src/content/docs/components.mdx
@@ -26,7 +26,24 @@ import Version from "starlight-plugin-show-latest-version/components/Version.ast
-:::note
+If no version is available it has a default fallback content (`N/A`) which can be customized by [slotting](https://docs.astro.build/en/basics/astro-components/#slots) in the content:
+
+```mdx
+import Version from "starlight-plugin-show-latest-version/components/Version.astro";
+
+
+ Loading...
+
+```
+
+
+
+
+ Loading...
+
+
+
+
You can opt-in to use the [`server:defer`](https://docs.astro.build/en/reference/directives-reference/#serverdefer) directive to delay rendering until the content of the component is available if a [server adapter](https://docs.astro.build/en/guides/on-demand-rendering/#server-adapters) is configured. This is the recommended approach if your docs do not get rebuilt every time a new version is released.
```mdx
@@ -41,7 +58,7 @@ import Version from "starlight-plugin-show-latest-version/components/Version.ast
-We also recommend [adding a fallback content](https://docs.astro.build/en/guides/server-islands/#server-island-fallback-content) which will be displayed while the component is loading.
+Of course, you can also add a custom fallback content which will be displayed while the component is loading:
```mdx
import Version from "starlight-plugin-show-latest-version/components/Version.astro";
@@ -58,7 +75,6 @@ import Version from "starlight-plugin-show-latest-version/components/Version.ast
-:::
### VersionBadge
@@ -78,7 +94,24 @@ import VersionBadge from "starlight-plugin-show-latest-version/components/Versio
-:::note
+If no version is available it has a default fallback content (`N/A`) which can be customized by [slotting](https://docs.astro.build/en/basics/astro-components/#slots) in the content:
+
+```mdx
+import VersionBadge from "starlight-plugin-show-latest-version/components/Version.astro";
+
+
+
+
+```
+
+
+
+
+
+
+
+
+
You can opt-in to use the [`server:defer`](https://docs.astro.build/en/reference/directives-reference/#serverdefer) directive to delay rendering until the content of the component is available if a [server adapter](https://docs.astro.build/en/guides/on-demand-rendering/#server-adapters) is configured. This is the recommended approach if your docs do not get rebuilt every time a new version is released.
```mdx
@@ -93,21 +126,20 @@ import VersionBadge from "starlight-plugin-show-latest-version/components/Versio
-We also recommend [adding a fallback content](https://docs.astro.build/en/guides/server-islands/#server-island-fallback-content) which will be displayed while the component is loading.
+Of course, you can also add a custom fallback content which will be displayed while the component is loading:
```mdx
import VersionBadge from "starlight-plugin-show-latest-version/components/Version.astro";
-
+
```
-
+
-:::
diff --git a/packages/starlight-plugin-show-latest-version/components/DynamicVersionBadge.astro b/packages/starlight-plugin-show-latest-version/components/DynamicVersionBadge.astro
new file mode 100644
index 0000000..c4d32c5
--- /dev/null
+++ b/packages/starlight-plugin-show-latest-version/components/DynamicVersionBadge.astro
@@ -0,0 +1,21 @@
+---
+import pluginConfig from 'virtual:starlight-plugin-show-latest-version-config';
+import VersionBadge from '../components/VersionBadge.astro';
+---
+
+{pluginConfig.showInSiteTitle === "true" && (
+
+)}
+{pluginConfig.showInSiteTitle === "deferred" && (
+
+)}
+
+{(pluginConfig.showInSiteTitle === "true" || pluginConfig.showInSiteTitle === "deferred") && (
+
+)}
diff --git a/packages/starlight-plugin-show-latest-version/components/Version.astro b/packages/starlight-plugin-show-latest-version/components/Version.astro
index 2d940ae..0725f22 100644
--- a/packages/starlight-plugin-show-latest-version/components/Version.astro
+++ b/packages/starlight-plugin-show-latest-version/components/Version.astro
@@ -6,8 +6,11 @@ const version = await fetchVersion(pluginConfig);
---
{version.versionAvailable && (
- {version.version}
+ {version.version}
)}
-{!version.versionAvailable && (
- N/A
+{!version.versionAvailable && !Astro.slots.has('fallback') && (
+ N/A
+)}
+{!version.versionAvailable && Astro.slots.has('fallback') && (
+
)}
diff --git a/packages/starlight-plugin-show-latest-version/components/VersionBadge.astro b/packages/starlight-plugin-show-latest-version/components/VersionBadge.astro
index 39ebcea..de7cb93 100644
--- a/packages/starlight-plugin-show-latest-version/components/VersionBadge.astro
+++ b/packages/starlight-plugin-show-latest-version/components/VersionBadge.astro
@@ -9,24 +9,29 @@ const sourceUrl = releasePageUrls[pluginConfig.source.type](pluginConfig.source.
---
{version.versionAvailable && (
-
-
-
-
-
+
+
+
+
+
)}
{!version.versionAvailable && (
-
-
-
-
-
+
+
+ {!Astro.slots.has('fallback') && (
+
+ )}
+ {Astro.slots.has('fallback') && (
+
+ )}
+
+
)}
diff --git a/packages/starlight-plugin-show-latest-version/index.ts b/packages/starlight-plugin-show-latest-version/index.ts
index 505c6a3..d000302 100644
--- a/packages/starlight-plugin-show-latest-version/index.ts
+++ b/packages/starlight-plugin-show-latest-version/index.ts
@@ -23,12 +23,12 @@ export default function starlightPluginShowLatestVersion(
return {
name: "starlight-plugin-show-latest-version",
hooks: {
- setup: async ({
+ "config:setup"({
addIntegration,
updateConfig: updateStarlightConfig,
config: starlightConfig,
logger,
- }) => {
+ }) {
updateStarlightConfig({
components: {
...starlightConfig.components,
diff --git a/packages/starlight-plugin-show-latest-version/overrides/SiteTitle.astro b/packages/starlight-plugin-show-latest-version/overrides/SiteTitle.astro
index d3944c0..d45f65f 100644
--- a/packages/starlight-plugin-show-latest-version/overrides/SiteTitle.astro
+++ b/packages/starlight-plugin-show-latest-version/overrides/SiteTitle.astro
@@ -1,67 +1,7 @@
---
-import { Badge } from '@astrojs/starlight/components';
-import { logos } from 'virtual:starlight/user-images';
-import config from 'virtual:starlight/user-config';
-import pluginConfig from 'virtual:starlight-plugin-show-latest-version-config';
-import type { Props } from '../props';
-import VersionBadge from '../components/VersionBadge.astro';
-
-const { siteTitle, siteTitleHref } = Astro.props;
+import Default from '@astrojs/starlight/components/SiteTitle.astro'
+import DynamicVersionBadge from '../components/DynamicVersionBadge.astro'
---
-
- {
- config.logo && logos.dark && (
- <>
-
- {/* Show light alternate if a user configure both light and dark logos. */}
- {!('src' in config.logo) && (
-
- )}
- >
- )
- }
-
- {siteTitle}
-
- {pluginConfig.showInSiteTitle === "true" && (
-
- )}
- {pluginConfig.showInSiteTitle === "deferred" && (
-
-
-
- )}
-
-
-
-
+
+
diff --git a/packages/starlight-plugin-show-latest-version/package.json b/packages/starlight-plugin-show-latest-version/package.json
index 2391c86..b21138d 100644
--- a/packages/starlight-plugin-show-latest-version/package.json
+++ b/packages/starlight-plugin-show-latest-version/package.json
@@ -20,6 +20,7 @@
"type": "module",
"exports": {
".": "./index.ts",
+ "./components/DynamicVersionBadge.astro": "./components/DynamicVersionBadge.astro",
"./components/Version.astro": "./components/Version.astro",
"./components/VersionBadge.astro": "./components/VersionBadge.astro",
"./overrides/SiteTitle.astro": "./overrides/SiteTitle.astro",
@@ -29,15 +30,15 @@
"test": "jest"
},
"devDependencies": {
- "@astrojs/starlight": "^0.30.3",
+ "@astrojs/starlight": "^0.32.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
- "astro": "^5.1.1",
+ "astro": "^5.3.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
- "@astrojs/starlight": ">=0.30"
+ "@astrojs/starlight": ">=0.32"
},
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 49d007f..c7fa75c 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,34 +10,34 @@ importers:
devDependencies:
'@changesets/changelog-github':
specifier: ^0.5.0
- version: 0.5.0
+ version: 0.5.1
'@changesets/cli':
specifier: ^2.27.11
- version: 2.27.11
+ version: 2.28.0
docs:
dependencies:
'@astrojs/node':
- specifier: ^9.0.2
- version: 9.0.2(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ specifier: ^9.1.0
+ version: 9.1.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
'@astrojs/starlight':
- specifier: ^0.31.1
- version: 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ specifier: ^0.32.0
+ version: 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
'@trueberryless-org/starlight-plugins-docs-components':
- specifier: ^0.3.0
- version: 0.3.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ specifier: ^0.4.1
+ version: 0.4.1(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
astro:
- specifier: ^5.1.10
- version: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ specifier: ^5.3.0
+ version: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
sharp:
specifier: ^0.33.5
version: 0.33.5
starlight-contributor-list:
- specifier: ^0.2.0
- version: 0.2.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))
+ specifier: ^0.2.1
+ version: 0.2.1(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))
starlight-links-validator:
- specifier: ^0.14.1
- version: 0.14.1(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))
+ specifier: ^0.14.3
+ version: 0.14.3(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))
starlight-plugin-show-latest-version:
specifier: workspace:*
version: link:../packages/starlight-plugin-show-latest-version
@@ -45,8 +45,8 @@ importers:
packages/starlight-plugin-show-latest-version:
devDependencies:
'@astrojs/starlight':
- specifier: ^0.30.3
- version: 0.30.5(astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ specifier: ^0.32.0
+ version: 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
'@jest/globals':
specifier: ^29.7.0
version: 29.7.0
@@ -54,8 +54,8 @@ importers:
specifier: ^29.5.14
version: 29.5.14
astro:
- specifier: ^5.1.1
- version: 5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ specifier: ^5.3.0
+ version: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@22.10.2)
@@ -89,20 +89,14 @@ packages:
'@astrojs/compiler@2.10.3':
resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==}
- '@astrojs/internal-helpers@0.4.2':
- resolution: {integrity: sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==}
-
- '@astrojs/markdown-remark@6.0.1':
- resolution: {integrity: sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==}
+ '@astrojs/internal-helpers@0.5.1':
+ resolution: {integrity: sha512-M7rAge1n2+aOSxNvKUFa0u/KFn0W+sZy7EW91KOSERotm2Ti8qs+1K0xx3zbOxtAVrmJb5/J98eohVvvEqtNkw==}
'@astrojs/markdown-remark@6.0.2':
resolution: {integrity: sha512-aAoHGVRK3rebCYbaLjyyR+3VeAuTz4q49syUxJP29Oo5yZHdy4cCAXRqLBdr9mJVlxCUUjZiF0Dau6YBf65SGg==}
- '@astrojs/mdx@4.0.3':
- resolution: {integrity: sha512-8HcuyNG/KgYUAQWVzKFkboXcTOBCW6aQ0WK0Er/iSmVSF0y3yimg4/3QSt+Twv9dogpwIHL+E8iBJKqieFv4+g==}
- engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
- peerDependencies:
- astro: ^5.0.0
+ '@astrojs/markdown-remark@6.1.0':
+ resolution: {integrity: sha512-emZNNSTPGgPc3V399Cazpp5+snogjaF04ocOSQn9vy3Kw/eIC4vTQjXOrWDEoSEy+AwPDZX9bQ4wd3bxhpmGgQ==}
'@astrojs/mdx@4.0.7':
resolution: {integrity: sha512-d3PopBTbbCoX3QOmSLYXW6YCZ0dkhNaeP9/Liz9BhEekflMc9IvBjbtNFf1WCEatsl4LLGftyDisfMM3F3LGMA==}
@@ -110,10 +104,10 @@ packages:
peerDependencies:
astro: ^5.0.0
- '@astrojs/node@9.0.2':
- resolution: {integrity: sha512-MFFYRa5yQEBegKrSUPMeKnjDMB4okTrkVRA40/mU3ADKrKY5VV3af0LS+NYkH9pFOvj/OsPbdeQVxQ0jI3f6aQ==}
+ '@astrojs/node@9.1.0':
+ resolution: {integrity: sha512-7fDsawWci/j4prDVVwOFGuArG+YK+io54/5ksKL+lbSZ8xA4h6TB36RA4INmNatralEOKlgCxmbZdwewYcsFWA==}
peerDependencies:
- astro: ^5.0.0
+ astro: ^5.3.0
'@astrojs/prism@3.2.0':
resolution: {integrity: sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==}
@@ -122,13 +116,8 @@ packages:
'@astrojs/sitemap@3.2.1':
resolution: {integrity: sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==}
- '@astrojs/starlight@0.30.5':
- resolution: {integrity: sha512-enQISKa2K3DtFqU55PT8zskCT7180DJwOT9yFVh9MYT4csolvCBu2RVjQeXu7z+3hoLHvCcofN8FshCLA+iQQQ==}
- peerDependencies:
- astro: ^5.0.0
-
- '@astrojs/starlight@0.31.1':
- resolution: {integrity: sha512-VIVkHugwgtEqJPiRH8+ouP0UqUfdmpBO9C64R+6QaQ2qmADNkI/BA3/YAJHTBZYlMQQGEEuLJwD9qpaUovi52Q==}
+ '@astrojs/starlight@0.32.0':
+ resolution: {integrity: sha512-RJ+zPeTBlfgZJA3cWl3Nml9RLQhYUupnE0obL3iVxvVKhoCwUJnxmKicPp9EBxSML0TK8X4CUpnEwiC7OtfYwg==}
peerDependencies:
astro: ^5.1.5
@@ -301,36 +290,36 @@ packages:
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- '@changesets/apply-release-plan@7.0.7':
- resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
+ '@changesets/apply-release-plan@7.0.9':
+ resolution: {integrity: sha512-xB1shQP6WhflnAN+rV8eJ7j4oBgka/K62+pHuEv6jmUtSqlx2ZvJSnCGzyNfkiQmSfVsqXoI3pbAuyVpTbsKzA==}
- '@changesets/assemble-release-plan@6.0.5':
- resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==}
+ '@changesets/assemble-release-plan@6.0.6':
+ resolution: {integrity: sha512-Frkj8hWJ1FRZiY3kzVCKzS0N5mMwWKwmv9vpam7vt8rZjLL1JMthdh6pSDVSPumHPshTTkKZ0VtNbE0cJHZZUg==}
- '@changesets/changelog-git@0.2.0':
- resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
+ '@changesets/changelog-git@0.2.1':
+ resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- '@changesets/changelog-github@0.5.0':
- resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
+ '@changesets/changelog-github@0.5.1':
+ resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==}
- '@changesets/cli@2.27.11':
- resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==}
+ '@changesets/cli@2.28.0':
+ resolution: {integrity: sha512-of9/8Gzc+DP/Ol9Lak++Y0RsB1oO1CRzZoGIWTYcvHNREJQNqxW5tXm3YzqsA1Gx8ecZZw82FfahtiS+HkNqIw==}
hasBin: true
- '@changesets/config@3.0.5':
- resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
+ '@changesets/config@3.1.0':
+ resolution: {integrity: sha512-UbZsPkRnv2SF8Ln72B8opmNLhsazv7/M0r6GSQSQzLY++/ZPr5dDSz3L+6G2fDZ+AN1ZjsEGDdBkpEna9eJtrA==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
- '@changesets/get-dependents-graph@2.1.2':
- resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==}
+ '@changesets/get-dependents-graph@2.1.3':
+ resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
'@changesets/get-github-info@0.6.0':
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
- '@changesets/get-release-plan@4.0.6':
- resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
+ '@changesets/get-release-plan@4.0.7':
+ resolution: {integrity: sha512-FdXJ5B4ZcIWtTu+SEIAthnSScwF+mS+e657gagYUyprVLFSkAJKrA50MqoW3iOopbwQ/UhYaTESNyF9cpg1bQA==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
@@ -341,26 +330,26 @@ packages:
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
- '@changesets/parse@0.4.0':
- resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
+ '@changesets/parse@0.4.1':
+ resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
- '@changesets/pre@2.0.1':
- resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==}
+ '@changesets/pre@2.0.2':
+ resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
- '@changesets/read@0.6.2':
- resolution: {integrity: sha512-wjfQpJvryY3zD61p8jR87mJdyx2FIhEcdXhKUqkja87toMrP/3jtg/Yg29upN+N4Ckf525/uvV7a4tzBlpk6gg==}
+ '@changesets/read@0.6.3':
+ resolution: {integrity: sha512-9H4p/OuJ3jXEUTjaVGdQEhBdqoT2cO5Ts95JTFsQyawmKzpL8FnIeJSyhTDPW1MBRDnwZlHFEM9SpPwJDY5wIg==}
- '@changesets/should-skip-package@0.1.1':
- resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==}
+ '@changesets/should-skip-package@0.1.2':
+ resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
- '@changesets/types@6.0.0':
- resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
+ '@changesets/types@6.1.0':
+ resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
- '@changesets/write@0.3.2':
- resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
+ '@changesets/write@0.4.0':
+ resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
'@ctrl/tinycolor@4.1.0':
resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==}
@@ -369,204 +358,102 @@ packages:
'@emnapi/runtime@1.3.1':
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.24.2':
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.24.2':
resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.21.5':
- resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.24.2':
resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.21.5':
- resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.21.5':
- resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
@@ -579,12 +466,6 @@ packages:
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
@@ -597,95 +478,53 @@ packages:
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@expressive-code/core@0.38.3':
- resolution: {integrity: sha512-s0/OtdRpBONwcn23O8nVwDNQqpBGKscysejkeBkwlIeHRLZWgiTVrusT5Idrdz1d8cW5wRk9iGsAIQmwDPXgJg==}
-
'@expressive-code/core@0.40.1':
resolution: {integrity: sha512-j71gxBepyzBgOtZomxzl8M90AjILf6hZarWFePDis7sTjqCwxWrtZEtTCafto8IOURG/ECZN0g7Ys4zExkNU7Q==}
- '@expressive-code/plugin-frames@0.38.3':
- resolution: {integrity: sha512-qL2oC6FplmHNQfZ8ZkTR64/wKo9x0c8uP2WDftR/ydwN/yhe1ed7ZWYb8r3dezxsls+tDokCnN4zYR594jbpvg==}
-
'@expressive-code/plugin-frames@0.40.1':
resolution: {integrity: sha512-qV7BIdTQ9nJ/eLHaJlzMvUq5aqAoZKO3PLFzBVop/q0d0m5rWpwWncIQ8qkufQDabmq2m38PRRWxKgx5FkJ2Rg==}
- '@expressive-code/plugin-shiki@0.38.3':
- resolution: {integrity: sha512-kqHnglZeesqG3UKrb6e9Fq5W36AZ05Y9tCREmSN2lw8LVTqENIeCIkLDdWtQ5VoHlKqwUEQFTVlRehdwoY7Gmw==}
-
'@expressive-code/plugin-shiki@0.40.1':
resolution: {integrity: sha512-N5oXhLv5DwLGXmLwJtwMzrfnZPWJl4pHRR5mfDoqK1+NxptdVaaQ0nEjgw13Y5ID/O5Bbze5YcOyph2K52BBrQ==}
- '@expressive-code/plugin-text-markers@0.38.3':
- resolution: {integrity: sha512-dPK3+BVGTbTmGQGU3Fkj3jZ3OltWUAlxetMHI6limUGCWBCucZiwoZeFM/WmqQa71GyKRzhBT+iEov6kkz2xVA==}
-
'@expressive-code/plugin-text-markers@0.40.1':
resolution: {integrity: sha512-LsirF7M4F2yWgrFXEocD74F/MaVXsOsHVsRxBLhXQJemSSkWkDp/EZPt//OaqQ8ExnqWZ2lH7E1/KiN46unKjg==}
- '@hideoo/starlight-plugins-docs-components@0.2.2':
- resolution: {integrity: sha512-SJUoeDvdMLgETbYn2GPXI4IDy7l2kWcfA458M4a4a6kAtTAIdguRTDgqNjPAuCyV9s74VDdKLPh3KCUvUTfBGg==}
+ '@hideoo/starlight-plugins-docs-components@0.4.0':
+ resolution: {integrity: sha512-MbpFyLriouQVxyDmyq5Gaa1TIrFrJm3krR8QwPIbhEOVtJIf0Xi85gJAYQgt8uBH8ul98foq0sSsIAp5MWIkAQ==}
engines: {node: '>=18'}
peerDependencies:
- '@astrojs/starlight': '>=0.24.0'
+ '@astrojs/starlight': '>=0.30.0'
'@img/sharp-darwin-arm64@0.33.5':
resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
@@ -1040,41 +879,23 @@ packages:
cpu: [x64]
os: [win32]
- '@shikijs/core@1.26.1':
- resolution: {integrity: sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==}
-
- '@shikijs/core@1.29.1':
- resolution: {integrity: sha512-Mo1gGGkuOYjDu5H8YwzmOuly9vNr8KDVkqj9xiKhhhFS8jisAtDSEWB9hzqRHLVQgFdA310e8XRJcW4tYhRB2A==}
-
- '@shikijs/engine-javascript@1.26.1':
- resolution: {integrity: sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==}
-
- '@shikijs/engine-javascript@1.29.1':
- resolution: {integrity: sha512-Hpi8k9x77rCQ7F/7zxIOUruNkNidMyBnP5qAGbLFqg4kRrg1HZhkB8btib5EXbQWTtLb5gBHOdBwshk20njD7Q==}
-
- '@shikijs/engine-oniguruma@1.26.1':
- resolution: {integrity: sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==}
-
- '@shikijs/engine-oniguruma@1.29.1':
- resolution: {integrity: sha512-gSt2WhLNgEeLstcweQOSp+C+MhOpTsgdNXRqr3zP6M+BUBZ8Md9OU2BYwUYsALBxHza7hwaIWtFHjQ/aOOychw==}
-
- '@shikijs/langs@1.26.1':
- resolution: {integrity: sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==}
+ '@shikijs/core@1.29.2':
+ resolution: {integrity: sha512-vju0lY9r27jJfOY4Z7+Rt/nIOjzJpZ3y+nYpqtUZInVoXQ/TJZcfGnNOGnKjFdVZb8qexiCuSlZRKcGfhhTTZQ==}
- '@shikijs/langs@1.29.1':
- resolution: {integrity: sha512-iERn4HlyuT044/FgrvLOaZgKVKf3PozjKjyV/RZ5GnlyYEAZFcgwHGkYboeBv2IybQG1KVS/e7VGgiAU4JY2Gw==}
+ '@shikijs/engine-javascript@1.29.2':
+ resolution: {integrity: sha512-iNEZv4IrLYPv64Q6k7EPpOCE/nuvGiKl7zxdq0WFuRPF5PAE9PRo2JGq/d8crLusM59BRemJ4eOqrFrC4wiQ+A==}
- '@shikijs/themes@1.26.1':
- resolution: {integrity: sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==}
+ '@shikijs/engine-oniguruma@1.29.2':
+ resolution: {integrity: sha512-7iiOx3SG8+g1MnlzZVDYiaeHe7Ez2Kf2HrJzdmGwkRisT7r4rak0e655AcM/tF9JG/kg5fMNYlLLKglbN7gBqA==}
- '@shikijs/themes@1.29.1':
- resolution: {integrity: sha512-lb11zf72Vc9uxkl+aec2oW1HVTHJ2LtgZgumb4Rr6By3y/96VmlU44bkxEb8WBWH3RUtbqAJEN0jljD9cF7H7g==}
+ '@shikijs/langs@1.29.2':
+ resolution: {integrity: sha512-FIBA7N3LZ+223U7cJDUYd5shmciFQlYkFXlkKVaHsCPgfVLiO+e12FmQE6Tf9vuyEsFe3dIl8qGWKXgEHL9wmQ==}
- '@shikijs/types@1.26.1':
- resolution: {integrity: sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==}
+ '@shikijs/themes@1.29.2':
+ resolution: {integrity: sha512-i9TNZlsq4uoyqSbluIcZkmPL9Bfi3djVxRnofUHwvx/h6SRW3cwgBC5SML7vsDcWyukY0eCzVN980rqP6qNl9g==}
- '@shikijs/types@1.29.1':
- resolution: {integrity: sha512-aBqAuhYRp5vSir3Pc9+QPu9WESBOjUo03ao0IHLC4TyTioSsp/SkbAZSrIH4ghYYC1T1KTEpRSBa83bas4RnPA==}
+ '@shikijs/types@1.29.2':
+ resolution: {integrity: sha512-VJjK0eIijTZf0QSTODEXCqinjBn0joAHQ+aPSBzrv4O2d/QSbsMw+ZeSRx03kV34Hy7NzUvV/7NqfYGRLrASmw==}
'@shikijs/vscode-textmate@10.0.1':
resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==}
@@ -1088,11 +909,11 @@ packages:
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@trueberryless-org/starlight-plugins-docs-components@0.3.0':
- resolution: {integrity: sha512-zVfSz0RMvZiZmE560ymiT865YEx+0kawdnD0Zfsr6hokwHjuzvmdahLNPGT4TmBGcZIR6NW84WK6BJdUO/haoQ==}
+ '@trueberryless-org/starlight-plugins-docs-components@0.4.1':
+ resolution: {integrity: sha512-lrQspPQg15tMBD5UbmR24LZbIOPxZjr3pO9ClqkiKC6lsjvmLsgTZ0p0f1f2hiK05eGtast1sCmTOn/itKvkKg==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
- '@astrojs/starlight': '>=0.30'
+ '@astrojs/starlight': '>=0.32'
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
@@ -1163,8 +984,8 @@ packages:
'@types/node@22.10.2':
resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
- '@types/picomatch@3.0.1':
- resolution: {integrity: sha512-1MRgzpzY0hOp9pW/kLRxeQhUWwil6gnrUYd3oEpeYBqp/FexhaCPv3F8LsYr47gtUU45fO2cm1dbwkSrHEo8Uw==}
+ '@types/picomatch@3.0.2':
+ resolution: {integrity: sha512-n0i8TD3UDB7paoMMxA3Y65vUncFJXjcUf7lQY7YyKGl6031FNjfsLs6pdLFCy2GNFxItPJG8GvvpbZc2skH7WA==}
'@types/sax@1.2.7':
resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
@@ -1256,23 +1077,13 @@ packages:
resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
hasBin: true
- astro-expressive-code@0.38.3:
- resolution: {integrity: sha512-Tvdc7RV0G92BbtyEOsfJtXU35w41CkM94fOAzxbQP67Wj5jArfserJ321FO4XA7WG9QMV0GIBmQq77NBIRDzpQ==}
- peerDependencies:
- astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0
-
astro-expressive-code@0.40.1:
resolution: {integrity: sha512-dQ47XhgtxuRTiKQrZOJKdebMuxvvTBR89U439EHzLP6KR45IILFlGDihGQp3//1aUjj4nwpbINSzms1heJ7vmQ==}
peerDependencies:
astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0
- astro@5.1.10:
- resolution: {integrity: sha512-qFu4jC7BRlhwHgk9Pa1sTQWw60zYWlriNTt6bMGMKkPxCd4Dd84fGn+NjbrJ/JeKwF7YXX0gY1saDF/RS6TMVA==}
- engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
- hasBin: true
-
- astro@5.1.3:
- resolution: {integrity: sha512-Zl/B4hmueJmlI5FJQcwbBRhHbRvbTWaTJzimkbH+jYczR5blt4uSh0DheyAt/+NwcnGfiC11z/XXJYIBR4LPUw==}
+ astro@5.3.0:
+ resolution: {integrity: sha512-e88l/Yk/6enR/ZDddLbqtM+oblBFk5mneNSmNesyVYGL/6Dj4UA67GPAZOk79VxT5dbLlclZSyyw/wlxN1aj3A==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
hasBin: true
@@ -1615,8 +1426,8 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- domutils@3.1.0:
- resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ domutils@3.2.2:
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
dotenv@8.6.0:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
@@ -1665,9 +1476,6 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- es-module-lexer@1.5.4:
- resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
-
es-module-lexer@1.6.0:
resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
@@ -1677,11 +1485,6 @@ packages:
esast-util-from-js@2.0.1:
resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
- esbuild@0.21.5:
- resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.24.2:
resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
engines: {node: '>=18'}
@@ -1753,9 +1556,6 @@ packages:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- expressive-code@0.38.3:
- resolution: {integrity: sha512-COM04AiUotHCKJgWdn7NtW2lqu8OW8owAidMpkXt1qxrZ9Q2iC7+tok/1qIn2ocGnczvr9paIySgGnEwFeEQ8Q==}
-
expressive-code@0.40.1:
resolution: {integrity: sha512-jBsTRX+MPsqiqYQsE9vRXMiAkUafU11j2zuWAaOX9vubLutNB0er8c0FJWeudVDH5D52V4Lf4vTIqbOE54PUcQ==}
@@ -1769,10 +1569,6 @@ packages:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
- fast-glob@3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
- engines: {node: '>=8.6.0'}
-
fast-glob@3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
@@ -1808,8 +1604,8 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
flattie@1.1.1:
resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==}
@@ -1973,8 +1769,9 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- human-id@1.0.2:
- resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
+ human-id@4.1.1:
+ resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==}
+ hasBin: true
human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
@@ -2305,6 +2102,10 @@ packages:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
+ klona@2.0.6:
+ resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
+ engines: {node: '>= 8'}
+
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -2397,8 +2198,8 @@ packages:
mdast-util-mdx-expression@2.0.1:
resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
- mdast-util-mdx-jsx@3.1.3:
- resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==}
+ mdast-util-mdx-jsx@3.2.0:
+ resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==}
mdast-util-mdx@3.0.0:
resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
@@ -2633,9 +2434,6 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- oniguruma-to-es@0.10.0:
- resolution: {integrity: sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==}
-
oniguruma-to-es@2.3.0:
resolution: {integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==}
@@ -2678,8 +2476,8 @@ packages:
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
engines: {node: '>=8'}
- p-queue@8.0.1:
- resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==}
+ p-queue@8.1.0:
+ resolution: {integrity: sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==}
engines: {node: '>=18'}
p-timeout@3.2.0:
@@ -2773,8 +2571,8 @@ packages:
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
- preferred-pm@4.0.0:
- resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==}
+ preferred-pm@4.1.1:
+ resolution: {integrity: sha512-rU+ZAv1Ur9jAUZtGPebQVQPzdGhNzaEiQ7VL9+cjsAWPHFYOccNXPNiev1CCDSOg/2j7UujM7ojNhpkuILEVNQ==}
engines: {node: '>=18.12'}
prettier@2.8.8:
@@ -2845,9 +2643,6 @@ packages:
regex@5.1.1:
resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
- rehype-expressive-code@0.38.3:
- resolution: {integrity: sha512-RYSSDkMBikoTbycZPkcWp6ELneANT4eTpND1DSRJ6nI2eVFUwTBDCvE2vO6jOOTaavwnPiydi4i/87NRyjpdOA==}
-
rehype-expressive-code@0.40.1:
resolution: {integrity: sha512-EjmhGHcgmcPoIsb4M6vm2FQQDUctdcgFFiKGCYtPJuMpzr1q+ChCNsc443MaE412MyAgL6Q/XUB7I56Mcl6bnw==}
@@ -2956,6 +2751,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
send@1.1.0:
resolution: {integrity: sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==}
engines: {node: '>= 18'}
@@ -2978,11 +2778,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.26.1:
- resolution: {integrity: sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==}
-
- shiki@1.29.1:
- resolution: {integrity: sha512-TghWKV9pJTd/N+IgAIVJtr0qZkB7FfFCUrrEJc0aRmZupo3D1OCVRknQWVRVA7AX/M0Ld7QfoAruPzr3CnUJuw==}
+ shiki@1.29.2:
+ resolution: {integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==}
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -3006,6 +2803,10 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
+ smol-toml@1.3.1:
+ resolution: {integrity: sha512-tEYNll18pPKHroYSmLLrksq233j021G0giwW7P3D24jC54pQ5W5BXMsQ/Mvw1OJCmEYDgY+lrzT+3nNUtoNfXQ==}
+ engines: {node: '>= 18'}
+
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
@@ -3034,36 +2835,35 @@ packages:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
- starlight-contributor-list@0.2.0:
- resolution: {integrity: sha512-Wfpx0o0vfGqTAWTGRQWrZk6sTDX5kQA3QUJrks66jDiPOqWalGi2RcydGn5f6Doki35fA3eufU0U0XRMXUSJaA==}
+ starlight-contributor-list@0.2.1:
+ resolution: {integrity: sha512-OaJ6jcgFy3rqD4aFGShKRdbmux0zcMJR2yao/s/bePfF/AQs8PdQL+ooirZ0IAvxliwywo5yAI+FaLkPMAKNIg==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
'@astrojs/starlight': '>=0.30'
- starlight-links-validator@0.14.1:
- resolution: {integrity: sha512-qd5zMBezFhE3R/RBW2am58jVMK3ydcHs8TqOOBLimjn+iXqWV/ZkLlpcavoIOd//w72cX3L//lN4TA+a7vdaZg==}
+ starlight-links-validator@0.14.3:
+ resolution: {integrity: sha512-2CvQs0ZdIVExrEQ1bn0r2aFx4n+VSOb6vDWK+gTNb5N1c+nXJ7VjUbEsQhj+9Lb7XgY6Nxqz9JXUM9364hJ3ZA==}
engines: {node: '>=18.17.1'}
peerDependencies:
'@astrojs/starlight': '>=0.15.0'
- starlight-package-managers@0.6.0:
- resolution: {integrity: sha512-2tE0B4ZVEZXZ1LJjcSvVXLfJP8SB2nE+nhiFgSa3fuHUPtnbzmFxLVp7jEKD8jaMXKWPYtlNTy95gJSK9W1sbQ==}
- engines: {node: '>=18.14.1'}
+ starlight-package-managers@0.8.1:
+ resolution: {integrity: sha512-a+zGIOdbN7B4T/VaszuvW8585Aau4LSU8HlVCmBCJJwxkrGAUC9lRya4y0md5tOAFyW/gfhUNJZM8qqyMNTe7Q==}
+ engines: {node: '>=18.17.1'}
peerDependencies:
'@astrojs/starlight': '>=0.22.0'
- astro: '>=4.2.7'
- starlight-showcases@0.1.2:
- resolution: {integrity: sha512-yj3RjcdWLIWdehTjne9Ethd3ff95vMbuVx/87lU4yilTQewQxjnAyOf1KSnGUgTMQT5WTqhDw8LciPBJox+b8Q==}
+ starlight-showcases@0.2.0:
+ resolution: {integrity: sha512-YWJuTqArkUdVJV85VKZJ0BvKCQRu1SKtH/Cr5t6G/oIfI4IptWc92E7BmiuNnpuQ2U7TczTRidCYurPrbgQQVA==}
engines: {node: '>=18'}
peerDependencies:
'@astrojs/starlight': '>=0.23.0'
- starlight-showcases@0.2.0:
- resolution: {integrity: sha512-YWJuTqArkUdVJV85VKZJ0BvKCQRu1SKtH/Cr5t6G/oIfI4IptWc92E7BmiuNnpuQ2U7TczTRidCYurPrbgQQVA==}
+ starlight-showcases@0.3.0:
+ resolution: {integrity: sha512-jxKVE5IM0TZgRIni4YK1oKDh6C9pBh94oj2pKuhzg2/Cg1wjCrWy39U3i1bXkh6rL+Ly+ypQBPH3AD9cP6TLXA==}
engines: {node: '>=18'}
peerDependencies:
- '@astrojs/starlight': '>=0.23.0'
+ '@astrojs/starlight': '>=0.30.0'
statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
@@ -3394,46 +3194,6 @@ packages:
yaml:
optional: true
- vite@6.0.7:
- resolution: {integrity: sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- jiti: '>=1.21.0'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- '@types/node':
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
vitefu@1.0.5:
resolution: {integrity: sha512-h4Vflt9gxODPFNGPwp4zAMZRpZR7eslzwH2c5hn5kNZ5rhnKyRJ50U+yGCdc2IRaBs8O4haIgLNGrV5CrpMsCA==}
peerDependencies:
@@ -3458,8 +3218,8 @@ packages:
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
engines: {node: '>=4'}
- which-pm@3.0.0:
- resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==}
+ which-pm@3.0.1:
+ resolution: {integrity: sha512-v2JrMq0waAI4ju1xU5x3blsxBBMgdgZve580iYMN5frDaLGjbA24fok7wKCsya8KLVO19Ju4XDc5+zTZCJkQfg==}
engines: {node: '>=18.12'}
which@2.0.2:
@@ -3512,8 +3272,8 @@ packages:
resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
- yocto-spinner@0.1.2:
- resolution: {integrity: sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==}
+ yocto-spinner@0.2.0:
+ resolution: {integrity: sha512-Qu6WAqNLGleB687CCGcmgHIo8l+J19MX/32UrSMfbf/4L8gLoxjpOYoiHT1asiWyqvjRZbgvOhLlvne6E5Tbdw==}
engines: {node: '>=18.19'}
yoctocolors@2.1.1:
@@ -3554,25 +3314,25 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@astro-community/astro-embed-twitter@0.5.8(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@astro-community/astro-embed-twitter@0.5.8(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
'@astro-community/astro-embed-utils': 0.1.3
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ astro: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
'@astro-community/astro-embed-utils@0.1.3':
dependencies:
linkedom: 0.14.26
- '@astro-community/astro-embed-youtube@0.5.6(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@astro-community/astro-embed-youtube@0.5.6(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ astro: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
lite-youtube-embed: 0.3.3
'@astrojs/compiler@2.10.3': {}
- '@astrojs/internal-helpers@0.4.2': {}
+ '@astrojs/internal-helpers@0.5.1': {}
- '@astrojs/markdown-remark@6.0.1':
+ '@astrojs/markdown-remark@6.0.2':
dependencies:
'@astrojs/prism': 3.2.0
github-slugger: 2.0.0
@@ -3587,7 +3347,7 @@ snapshots:
remark-parse: 11.0.0
remark-rehype: 11.1.1
remark-smartypants: 3.0.2
- shiki: 1.26.1
+ shiki: 1.29.2
unified: 11.0.5
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
@@ -3596,7 +3356,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/markdown-remark@6.0.2':
+ '@astrojs/markdown-remark@6.1.0':
dependencies:
'@astrojs/prism': 3.2.0
github-slugger: 2.0.0
@@ -3611,7 +3371,8 @@ snapshots:
remark-parse: 11.0.0
remark-rehype: 11.1.1
remark-smartypants: 3.0.2
- shiki: 1.29.1
+ shiki: 1.29.2
+ smol-toml: 1.3.1
unified: 11.0.5
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
@@ -3620,31 +3381,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/mdx@4.0.3(astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
- dependencies:
- '@astrojs/markdown-remark': 6.0.1
- '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
- acorn: 8.14.0
- astro: 5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
- es-module-lexer: 1.5.4
- estree-util-visit: 2.0.0
- hast-util-to-html: 9.0.4
- kleur: 4.1.5
- rehype-raw: 7.0.0
- remark-gfm: 4.0.0
- remark-smartypants: 3.0.2
- source-map: 0.7.4
- unist-util-visit: 5.0.0
- vfile: 6.0.3
- transitivePeerDependencies:
- - supports-color
-
- '@astrojs/mdx@4.0.7(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@astrojs/mdx@4.0.7(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
'@astrojs/markdown-remark': 6.0.2
'@mdx-js/mdx': 3.1.0(acorn@8.14.0)
acorn: 8.14.0
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ astro: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
es-module-lexer: 1.6.0
estree-util-visit: 2.0.0
hast-util-to-html: 9.0.4
@@ -3658,9 +3400,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/node@9.0.2(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@astrojs/node@9.1.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ '@astrojs/internal-helpers': 0.5.1
+ astro: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
send: 1.1.0
server-destroy: 1.0.1
transitivePeerDependencies:
@@ -3676,46 +3419,16 @@ snapshots:
stream-replace-string: 2.0.0
zod: 3.24.1
- '@astrojs/starlight@0.30.5(astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
- '@astrojs/mdx': 4.0.3(astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astrojs/mdx': 4.0.7(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
'@astrojs/sitemap': 3.2.1
'@pagefind/default-ui': 1.3.0
'@types/hast': 3.0.4
'@types/js-yaml': 4.0.9
'@types/mdast': 4.0.4
- astro: 5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
- astro-expressive-code: 0.38.3(astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- bcp-47: 2.1.0
- hast-util-from-html: 2.0.3
- hast-util-select: 6.0.3
- hast-util-to-string: 3.0.1
- hastscript: 9.0.0
- i18next: 23.16.8
- js-yaml: 4.1.0
- mdast-util-directive: 3.0.0
- mdast-util-to-markdown: 2.1.2
- mdast-util-to-string: 4.0.0
- pagefind: 1.3.0
- rehype: 13.0.2
- rehype-format: 5.0.1
- remark-directive: 3.0.0
- unified: 11.0.5
- unist-util-visit: 5.0.0
- vfile: 6.0.3
- transitivePeerDependencies:
- - supports-color
-
- '@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
- dependencies:
- '@astrojs/mdx': 4.0.7(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@astrojs/sitemap': 3.2.1
- '@pagefind/default-ui': 1.3.0
- '@types/hast': 3.0.4
- '@types/js-yaml': 4.0.9
- '@types/mdast': 4.0.4
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
- astro-expressive-code: 0.40.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ astro: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ astro-expressive-code: 0.40.1(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
bcp-47: 2.1.0
hast-util-from-html: 2.0.3
hast-util-select: 6.0.3
@@ -3723,6 +3436,7 @@ snapshots:
hastscript: 9.0.0
i18next: 23.16.8
js-yaml: 4.1.0
+ klona: 2.0.6
mdast-util-directive: 3.0.0
mdast-util-to-markdown: 2.1.2
mdast-util-to-string: 4.0.0
@@ -3939,13 +3653,13 @@ snapshots:
'@bcoe/v8-coverage@0.2.3': {}
- '@changesets/apply-release-plan@7.0.7':
+ '@changesets/apply-release-plan@7.0.9':
dependencies:
- '@changesets/config': 3.0.5
+ '@changesets/config': 3.1.0
'@changesets/get-version-range-type': 0.4.0
'@changesets/git': 3.0.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
detect-indent: 6.1.0
fs-extra: 7.0.1
@@ -3955,43 +3669,43 @@ snapshots:
resolve-from: 5.0.0
semver: 7.6.3
- '@changesets/assemble-release-plan@6.0.5':
+ '@changesets/assemble-release-plan@6.0.6':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
semver: 7.6.3
- '@changesets/changelog-git@0.2.0':
+ '@changesets/changelog-git@0.2.1':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
- '@changesets/changelog-github@0.5.0':
+ '@changesets/changelog-github@0.5.1':
dependencies:
'@changesets/get-github-info': 0.6.0
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
dotenv: 8.6.0
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.27.11':
+ '@changesets/cli@2.28.0':
dependencies:
- '@changesets/apply-release-plan': 7.0.7
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/changelog-git': 0.2.0
- '@changesets/config': 3.0.5
+ '@changesets/apply-release-plan': 7.0.9
+ '@changesets/assemble-release-plan': 6.0.6
+ '@changesets/changelog-git': 0.2.1
+ '@changesets/config': 3.1.0
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/get-release-plan': 4.0.6
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/get-release-plan': 4.0.7
'@changesets/git': 3.0.2
'@changesets/logger': 0.1.1
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@changesets/write': 0.3.2
+ '@changesets/pre': 2.0.2
+ '@changesets/read': 0.6.3
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
+ '@changesets/write': 0.4.0
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
ci-info: 3.9.0
@@ -4007,12 +3721,12 @@ snapshots:
spawndamnit: 3.0.1
term-size: 2.2.1
- '@changesets/config@3.0.5':
+ '@changesets/config@3.1.0':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/get-dependents-graph': 2.1.3
'@changesets/logger': 0.1.1
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
micromatch: 4.0.8
@@ -4021,9 +3735,9 @@ snapshots:
dependencies:
extendable-error: 0.1.7
- '@changesets/get-dependents-graph@2.1.2':
+ '@changesets/get-dependents-graph@2.1.3':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
picocolors: 1.1.1
semver: 7.6.3
@@ -4035,13 +3749,13 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/get-release-plan@4.0.6':
+ '@changesets/get-release-plan@4.0.7':
dependencies:
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/config': 3.0.5
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/types': 6.0.0
+ '@changesets/assemble-release-plan': 6.0.6
+ '@changesets/config': 3.1.0
+ '@changesets/pre': 2.0.2
+ '@changesets/read': 0.6.3
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
'@changesets/get-version-range-type@0.4.0': {}
@@ -4058,42 +3772,42 @@ snapshots:
dependencies:
picocolors: 1.1.1
- '@changesets/parse@0.4.0':
+ '@changesets/parse@0.4.1':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
js-yaml: 3.14.1
- '@changesets/pre@2.0.1':
+ '@changesets/pre@2.0.2':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- '@changesets/read@0.6.2':
+ '@changesets/read@0.6.3':
dependencies:
'@changesets/git': 3.0.2
'@changesets/logger': 0.1.1
- '@changesets/parse': 0.4.0
- '@changesets/types': 6.0.0
+ '@changesets/parse': 0.4.1
+ '@changesets/types': 6.1.0
fs-extra: 7.0.1
p-filter: 2.1.0
picocolors: 1.1.1
- '@changesets/should-skip-package@0.1.1':
+ '@changesets/should-skip-package@0.1.2':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
'@changesets/types@4.1.0': {}
- '@changesets/types@6.0.0': {}
+ '@changesets/types@6.1.0': {}
- '@changesets/write@0.3.2':
+ '@changesets/write@0.4.0':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
fs-extra: 7.0.1
- human-id: 1.0.2
+ human-id: 4.1.1
prettier: 2.8.8
'@ctrl/tinycolor@4.1.0': {}
@@ -4103,162 +3817,81 @@ snapshots:
tslib: 2.8.1
optional: true
- '@esbuild/aix-ppc64@0.21.5':
- optional: true
-
'@esbuild/aix-ppc64@0.24.2':
optional: true
- '@esbuild/android-arm64@0.21.5':
- optional: true
-
'@esbuild/android-arm64@0.24.2':
optional: true
- '@esbuild/android-arm@0.21.5':
- optional: true
-
'@esbuild/android-arm@0.24.2':
optional: true
- '@esbuild/android-x64@0.21.5':
- optional: true
-
'@esbuild/android-x64@0.24.2':
optional: true
- '@esbuild/darwin-arm64@0.21.5':
- optional: true
-
'@esbuild/darwin-arm64@0.24.2':
optional: true
- '@esbuild/darwin-x64@0.21.5':
- optional: true
-
'@esbuild/darwin-x64@0.24.2':
optional: true
- '@esbuild/freebsd-arm64@0.21.5':
- optional: true
-
'@esbuild/freebsd-arm64@0.24.2':
optional: true
- '@esbuild/freebsd-x64@0.21.5':
- optional: true
-
'@esbuild/freebsd-x64@0.24.2':
optional: true
- '@esbuild/linux-arm64@0.21.5':
- optional: true
-
'@esbuild/linux-arm64@0.24.2':
optional: true
- '@esbuild/linux-arm@0.21.5':
- optional: true
-
'@esbuild/linux-arm@0.24.2':
optional: true
- '@esbuild/linux-ia32@0.21.5':
- optional: true
-
'@esbuild/linux-ia32@0.24.2':
optional: true
- '@esbuild/linux-loong64@0.21.5':
- optional: true
-
'@esbuild/linux-loong64@0.24.2':
optional: true
- '@esbuild/linux-mips64el@0.21.5':
- optional: true
-
'@esbuild/linux-mips64el@0.24.2':
optional: true
- '@esbuild/linux-ppc64@0.21.5':
- optional: true
-
'@esbuild/linux-ppc64@0.24.2':
optional: true
- '@esbuild/linux-riscv64@0.21.5':
- optional: true
-
'@esbuild/linux-riscv64@0.24.2':
optional: true
- '@esbuild/linux-s390x@0.21.5':
- optional: true
-
'@esbuild/linux-s390x@0.24.2':
optional: true
- '@esbuild/linux-x64@0.21.5':
- optional: true
-
'@esbuild/linux-x64@0.24.2':
optional: true
'@esbuild/netbsd-arm64@0.24.2':
optional: true
- '@esbuild/netbsd-x64@0.21.5':
- optional: true
-
'@esbuild/netbsd-x64@0.24.2':
optional: true
'@esbuild/openbsd-arm64@0.24.2':
optional: true
- '@esbuild/openbsd-x64@0.21.5':
- optional: true
-
'@esbuild/openbsd-x64@0.24.2':
optional: true
- '@esbuild/sunos-x64@0.21.5':
- optional: true
-
'@esbuild/sunos-x64@0.24.2':
optional: true
- '@esbuild/win32-arm64@0.21.5':
- optional: true
-
'@esbuild/win32-arm64@0.24.2':
optional: true
- '@esbuild/win32-ia32@0.21.5':
- optional: true
-
'@esbuild/win32-ia32@0.24.2':
optional: true
- '@esbuild/win32-x64@0.21.5':
- optional: true
-
'@esbuild/win32-x64@0.24.2':
optional: true
- '@expressive-code/core@0.38.3':
- dependencies:
- '@ctrl/tinycolor': 4.1.0
- hast-util-select: 6.0.3
- hast-util-to-html: 9.0.4
- hast-util-to-text: 4.0.2
- hastscript: 9.0.0
- postcss: 8.4.49
- postcss-nested: 6.2.0(postcss@8.4.49)
- unist-util-visit: 5.0.0
- unist-util-visit-parents: 6.0.1
-
'@expressive-code/core@0.40.1':
dependencies:
'@ctrl/tinycolor': 4.1.0
@@ -4271,37 +3904,24 @@ snapshots:
unist-util-visit: 5.0.0
unist-util-visit-parents: 6.0.1
- '@expressive-code/plugin-frames@0.38.3':
- dependencies:
- '@expressive-code/core': 0.38.3
-
'@expressive-code/plugin-frames@0.40.1':
dependencies:
'@expressive-code/core': 0.40.1
- '@expressive-code/plugin-shiki@0.38.3':
- dependencies:
- '@expressive-code/core': 0.38.3
- shiki: 1.26.1
-
'@expressive-code/plugin-shiki@0.40.1':
dependencies:
'@expressive-code/core': 0.40.1
- shiki: 1.26.1
-
- '@expressive-code/plugin-text-markers@0.38.3':
- dependencies:
- '@expressive-code/core': 0.38.3
+ shiki: 1.29.2
'@expressive-code/plugin-text-markers@0.40.1':
dependencies:
'@expressive-code/core': 0.40.1
- '@hideoo/starlight-plugins-docs-components@0.2.2(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@hideoo/starlight-plugins-docs-components@0.4.0(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- starlight-package-managers: 0.6.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- starlight-showcases: 0.1.2(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ starlight-package-managers: 0.8.1(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))
+ starlight-showcases: 0.3.0(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
transitivePeerDependencies:
- astro
@@ -4711,68 +4331,35 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.30.1':
optional: true
- '@shikijs/core@1.26.1':
+ '@shikijs/core@1.29.2':
dependencies:
- '@shikijs/engine-javascript': 1.26.1
- '@shikijs/engine-oniguruma': 1.26.1
- '@shikijs/types': 1.26.1
+ '@shikijs/engine-javascript': 1.29.2
+ '@shikijs/engine-oniguruma': 1.29.2
+ '@shikijs/types': 1.29.2
'@shikijs/vscode-textmate': 10.0.1
'@types/hast': 3.0.4
hast-util-to-html: 9.0.4
- '@shikijs/core@1.29.1':
+ '@shikijs/engine-javascript@1.29.2':
dependencies:
- '@shikijs/engine-javascript': 1.29.1
- '@shikijs/engine-oniguruma': 1.29.1
- '@shikijs/types': 1.29.1
- '@shikijs/vscode-textmate': 10.0.1
- '@types/hast': 3.0.4
- hast-util-to-html: 9.0.4
-
- '@shikijs/engine-javascript@1.26.1':
- dependencies:
- '@shikijs/types': 1.26.1
- '@shikijs/vscode-textmate': 10.0.1
- oniguruma-to-es: 0.10.0
-
- '@shikijs/engine-javascript@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
+ '@shikijs/types': 1.29.2
'@shikijs/vscode-textmate': 10.0.1
oniguruma-to-es: 2.3.0
- '@shikijs/engine-oniguruma@1.26.1':
+ '@shikijs/engine-oniguruma@1.29.2':
dependencies:
- '@shikijs/types': 1.26.1
+ '@shikijs/types': 1.29.2
'@shikijs/vscode-textmate': 10.0.1
- '@shikijs/engine-oniguruma@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
- '@shikijs/vscode-textmate': 10.0.1
-
- '@shikijs/langs@1.26.1':
- dependencies:
- '@shikijs/types': 1.26.1
-
- '@shikijs/langs@1.29.1':
- dependencies:
- '@shikijs/types': 1.29.1
-
- '@shikijs/themes@1.26.1':
- dependencies:
- '@shikijs/types': 1.26.1
-
- '@shikijs/themes@1.29.1':
+ '@shikijs/langs@1.29.2':
dependencies:
- '@shikijs/types': 1.29.1
+ '@shikijs/types': 1.29.2
- '@shikijs/types@1.26.1':
+ '@shikijs/themes@1.29.2':
dependencies:
- '@shikijs/vscode-textmate': 10.0.1
- '@types/hast': 3.0.4
+ '@shikijs/types': 1.29.2
- '@shikijs/types@1.29.1':
+ '@shikijs/types@1.29.2':
dependencies:
'@shikijs/vscode-textmate': 10.0.1
'@types/hast': 3.0.4
@@ -4789,12 +4376,12 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@trueberryless-org/starlight-plugins-docs-components@0.3.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
+ '@trueberryless-org/starlight-plugins-docs-components@0.4.1(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))':
dependencies:
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@hideoo/starlight-plugins-docs-components': 0.2.2(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@hideoo/starlight-plugins-docs-components': 0.4.0(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
change-case: 5.4.4
- starlight-showcases: 0.2.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ starlight-showcases: 0.2.0(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
transitivePeerDependencies:
- astro
@@ -4880,7 +4467,7 @@ snapshots:
dependencies:
undici-types: 6.20.0
- '@types/picomatch@3.0.1': {}
+ '@types/picomatch@3.0.2': {}
'@types/sax@1.2.7':
dependencies:
@@ -4949,21 +4536,16 @@ snapshots:
astring@1.9.0: {}
- astro-expressive-code@0.38.3(astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
+ astro-expressive-code@0.40.1(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
dependencies:
- astro: 5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
- rehype-expressive-code: 0.38.3
-
- astro-expressive-code@0.40.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
- dependencies:
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ astro: 5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
rehype-expressive-code: 0.40.1
- astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3):
+ astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3):
dependencies:
'@astrojs/compiler': 2.10.3
- '@astrojs/internal-helpers': 0.4.2
- '@astrojs/markdown-remark': 6.0.2
+ '@astrojs/internal-helpers': 0.5.1
+ '@astrojs/markdown-remark': 6.1.0
'@astrojs/telemetry': 3.2.0
'@oslojs/encoding': 1.1.0
'@rollup/pluginutils': 5.1.4(rollup@4.30.1)
@@ -4999,12 +4581,12 @@ snapshots:
mrmime: 2.0.0
neotraverse: 0.6.18
p-limit: 6.2.0
- p-queue: 8.0.1
- preferred-pm: 4.0.0
+ p-queue: 8.1.0
+ preferred-pm: 4.1.1
prompts: 2.4.2
rehype: 13.0.2
- semver: 7.6.3
- shiki: 1.29.1
+ semver: 7.7.1
+ shiki: 1.29.2
tinyexec: 0.3.2
tsconfck: 3.1.4(typescript@5.6.3)
ultrahtml: 1.5.3
@@ -5013,107 +4595,10 @@ snapshots:
vfile: 6.0.3
vite: 6.0.11(@types/node@22.10.2)(jiti@2.4.2)
vitefu: 1.0.5(vite@6.0.11(@types/node@22.10.2)(jiti@2.4.2))
- which-pm: 3.0.0
- xxhash-wasm: 1.1.0
- yargs-parser: 21.1.1
- yocto-spinner: 0.1.2
- zod: 3.24.1
- zod-to-json-schema: 3.24.1(zod@3.24.1)
- zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.24.1)
- optionalDependencies:
- sharp: 0.33.5
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@types/node'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/kv'
- - aws4fetch
- - db0
- - idb-keyval
- - ioredis
- - jiti
- - less
- - lightningcss
- - rollup
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - typescript
- - uploadthing
- - yaml
-
- astro@5.1.3(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3):
- dependencies:
- '@astrojs/compiler': 2.10.3
- '@astrojs/internal-helpers': 0.4.2
- '@astrojs/markdown-remark': 6.0.1
- '@astrojs/telemetry': 3.2.0
- '@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.4(rollup@4.30.1)
- '@types/cookie': 0.6.0
- acorn: 8.14.0
- aria-query: 5.3.2
- axobject-query: 4.1.0
- boxen: 8.0.1
- ci-info: 4.1.0
- clsx: 2.1.1
- common-ancestor-path: 1.0.1
- cookie: 0.7.2
- cssesc: 3.0.0
- debug: 4.4.0
- deterministic-object-hash: 2.0.2
- devalue: 5.1.1
- diff: 5.2.0
- dlv: 1.1.3
- dset: 3.1.4
- es-module-lexer: 1.6.0
- esbuild: 0.21.5
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- flattie: 1.1.1
- github-slugger: 2.0.0
- html-escaper: 3.0.3
- http-cache-semantics: 4.1.1
- js-yaml: 4.1.0
- kleur: 4.1.5
- magic-string: 0.30.17
- magicast: 0.3.5
- micromatch: 4.0.8
- mrmime: 2.0.0
- neotraverse: 0.6.18
- p-limit: 6.2.0
- p-queue: 8.0.1
- preferred-pm: 4.0.0
- prompts: 2.4.2
- rehype: 13.0.2
- semver: 7.6.3
- shiki: 1.26.1
- tinyexec: 0.3.2
- tsconfck: 3.1.4(typescript@5.6.3)
- ultrahtml: 1.5.3
- unist-util-visit: 5.0.0
- unstorage: 1.14.4
- vfile: 6.0.3
- vite: 6.0.7(@types/node@22.10.2)(jiti@2.4.2)
- vitefu: 1.0.5(vite@6.0.7(@types/node@22.10.2)(jiti@2.4.2))
- which-pm: 3.0.0
+ which-pm: 3.0.1
xxhash-wasm: 1.1.0
yargs-parser: 21.1.1
- yocto-spinner: 0.1.2
+ yocto-spinner: 0.2.0
zod: 3.24.1
zod-to-json-schema: 3.24.1(zod@3.24.1)
zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.24.1)
@@ -5402,7 +4887,7 @@ snapshots:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
nth-check: 2.1.1
css-selector-parser@3.0.5: {}
@@ -5477,7 +4962,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- domutils@3.1.0:
+ domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
@@ -5516,8 +5001,6 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-module-lexer@1.5.4: {}
-
es-module-lexer@1.6.0: {}
esast-util-from-estree@2.0.0:
@@ -5534,32 +5017,6 @@ snapshots:
esast-util-from-estree: 2.0.0
vfile-message: 4.0.2
- esbuild@0.21.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
-
esbuild@0.24.2:
optionalDependencies:
'@esbuild/aix-ppc64': 0.24.2
@@ -5661,13 +5118,6 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- expressive-code@0.38.3:
- dependencies:
- '@expressive-code/core': 0.38.3
- '@expressive-code/plugin-frames': 0.38.3
- '@expressive-code/plugin-shiki': 0.38.3
- '@expressive-code/plugin-text-markers': 0.38.3
-
expressive-code@0.40.1:
dependencies:
'@expressive-code/core': 0.40.1
@@ -5685,14 +5135,6 @@ snapshots:
iconv-lite: 0.4.24
tmp: 0.0.33
- fast-glob@3.3.2:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -5733,11 +5175,11 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.3
keyv: 4.5.4
rimraf: 3.0.2
- flatted@3.3.2: {}
+ flatted@3.3.3: {}
flattie@1.1.1: {}
@@ -5793,7 +5235,7 @@ snapshots:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -5931,7 +5373,7 @@ snapshots:
estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
mdast-util-mdx-expression: 2.0.1
- mdast-util-mdx-jsx: 3.1.3
+ mdast-util-mdx-jsx: 3.2.0
mdast-util-mdxjs-esm: 2.0.1
property-information: 6.5.0
space-separated-tokens: 2.0.2
@@ -5965,7 +5407,7 @@ snapshots:
estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
mdast-util-mdx-expression: 2.0.1
- mdast-util-mdx-jsx: 3.1.3
+ mdast-util-mdx-jsx: 3.2.0
mdast-util-mdxjs-esm: 2.0.1
property-information: 6.5.0
space-separated-tokens: 2.0.2
@@ -6020,7 +5462,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
entities: 4.5.0
http-cache-semantics@4.1.1: {}
@@ -6033,7 +5475,7 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- human-id@1.0.2: {}
+ human-id@4.1.1: {}
human-signals@2.1.0: {}
@@ -6146,7 +5588,7 @@ snapshots:
'@babel/parser': 7.26.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.6.3
+ semver: 7.7.1
transitivePeerDependencies:
- supports-color
@@ -6432,7 +5874,7 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.3
+ semver: 7.7.1
transitivePeerDependencies:
- supports-color
@@ -6518,6 +5960,8 @@ snapshots:
kleur@4.1.5: {}
+ klona@2.0.6: {}
+
leven@3.1.0: {}
lines-and-columns@1.2.4: {}
@@ -6567,7 +6011,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
make-error@1.3.6: {}
@@ -6690,7 +6134,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-jsx@3.1.3:
+ mdast-util-mdx-jsx@3.2.0:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
@@ -6711,7 +6155,7 @@ snapshots:
dependencies:
mdast-util-from-markdown: 2.0.2
mdast-util-mdx-expression: 2.0.1
- mdast-util-mdx-jsx: 3.1.3
+ mdast-util-mdx-jsx: 3.2.0
mdast-util-mdxjs-esm: 2.0.1
mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
@@ -7120,12 +6564,6 @@ snapshots:
dependencies:
mimic-fn: 2.1.0
- oniguruma-to-es@0.10.0:
- dependencies:
- emoji-regex-xs: 1.0.0
- regex: 5.1.1
- regex-recursion: 5.1.1
-
oniguruma-to-es@2.3.0:
dependencies:
emoji-regex-xs: 1.0.0
@@ -7165,7 +6603,7 @@ snapshots:
eventemitter3: 4.0.7
p-timeout: 3.2.0
- p-queue@8.0.1:
+ p-queue@8.1.0:
dependencies:
eventemitter3: 5.0.1
p-timeout: 6.1.4
@@ -7260,11 +6698,11 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preferred-pm@4.0.0:
+ preferred-pm@4.1.1:
dependencies:
find-up-simple: 1.0.0
find-yarn-workspace-root2: 1.2.16
- which-pm: 3.0.0
+ which-pm: 3.0.1
prettier@2.8.8: {}
@@ -7347,10 +6785,6 @@ snapshots:
dependencies:
regex-utilities: 2.3.0
- rehype-expressive-code@0.38.3:
- dependencies:
- expressive-code: 0.38.3
-
rehype-expressive-code@0.40.1:
dependencies:
expressive-code: 0.40.1
@@ -7534,6 +6968,8 @@ snapshots:
semver@7.6.3: {}
+ semver@7.7.1: {}
+
send@1.1.0:
dependencies:
debug: 4.4.0
@@ -7587,25 +7023,14 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.26.1:
+ shiki@1.29.2:
dependencies:
- '@shikijs/core': 1.26.1
- '@shikijs/engine-javascript': 1.26.1
- '@shikijs/engine-oniguruma': 1.26.1
- '@shikijs/langs': 1.26.1
- '@shikijs/themes': 1.26.1
- '@shikijs/types': 1.26.1
- '@shikijs/vscode-textmate': 10.0.1
- '@types/hast': 3.0.4
-
- shiki@1.29.1:
- dependencies:
- '@shikijs/core': 1.29.1
- '@shikijs/engine-javascript': 1.29.1
- '@shikijs/engine-oniguruma': 1.29.1
- '@shikijs/langs': 1.29.1
- '@shikijs/themes': 1.29.1
- '@shikijs/types': 1.29.1
+ '@shikijs/core': 1.29.2
+ '@shikijs/engine-javascript': 1.29.2
+ '@shikijs/engine-oniguruma': 1.29.2
+ '@shikijs/langs': 1.29.2
+ '@shikijs/themes': 1.29.2
+ '@shikijs/types': 1.29.2
'@shikijs/vscode-textmate': 10.0.1
'@types/hast': 3.0.4
@@ -7628,6 +7053,8 @@ snapshots:
slash@3.0.0: {}
+ smol-toml@1.3.1: {}
+
source-map-js@1.2.1: {}
source-map-support@0.5.13:
@@ -7652,45 +7079,47 @@ snapshots:
dependencies:
escape-string-regexp: 2.0.0
- starlight-contributor-list@0.2.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))):
+ starlight-contributor-list@0.2.1(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))):
dependencies:
'@11ty/eleventy-fetch': 4.0.1
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
transitivePeerDependencies:
- encoding
- supports-color
- starlight-links-validator@0.14.1(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))):
+ starlight-links-validator@0.14.3(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))):
dependencies:
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@types/picomatch': 3.0.1
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@types/picomatch': 3.0.2
github-slugger: 2.0.0
hast-util-from-html: 2.0.3
hast-util-has-property: 3.0.0
is-absolute-url: 4.0.1
kleur: 4.1.5
+ mdast-util-mdx-jsx: 3.2.0
mdast-util-to-string: 4.0.0
picomatch: 4.0.2
unist-util-visit: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
- starlight-package-managers@0.6.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
+ starlight-package-managers@0.8.1(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))):
dependencies:
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- astro: 5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- starlight-showcases@0.1.2(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
+ starlight-showcases@0.2.0(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
dependencies:
- '@astro-community/astro-embed-twitter': 0.5.8(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@astro-community/astro-embed-youtube': 0.5.6(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astro-community/astro-embed-twitter': 0.5.8(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astro-community/astro-embed-youtube': 0.5.6(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
transitivePeerDependencies:
- astro
- starlight-showcases@0.2.0(@astrojs/starlight@0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
+ starlight-showcases@0.3.0(@astrojs/starlight@0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)))(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3)):
dependencies:
- '@astro-community/astro-embed-twitter': 0.5.8(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@astro-community/astro-embed-youtube': 0.5.6(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
- '@astrojs/starlight': 0.31.1(astro@5.1.10(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astro-community/astro-embed-twitter': 0.5.8(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astro-community/astro-embed-youtube': 0.5.6(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
+ '@astrojs/starlight': 0.32.0(astro@5.3.0(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.30.1)(typescript@5.6.3))
transitivePeerDependencies:
- astro
@@ -7942,24 +7371,10 @@ snapshots:
fsevents: 2.3.3
jiti: 2.4.2
- vite@6.0.7(@types/node@22.10.2)(jiti@2.4.2):
- dependencies:
- esbuild: 0.24.2
- postcss: 8.4.49
- rollup: 4.30.1
- optionalDependencies:
- '@types/node': 22.10.2
- fsevents: 2.3.3
- jiti: 2.4.2
-
vitefu@1.0.5(vite@6.0.11(@types/node@22.10.2)(jiti@2.4.2)):
optionalDependencies:
vite: 6.0.11(@types/node@22.10.2)(jiti@2.4.2)
- vitefu@1.0.5(vite@6.0.7(@types/node@22.10.2)(jiti@2.4.2)):
- optionalDependencies:
- vite: 6.0.7(@types/node@22.10.2)(jiti@2.4.2)
-
walker@1.0.8:
dependencies:
makeerror: 1.0.12
@@ -7975,7 +7390,7 @@ snapshots:
which-pm-runs@1.1.0: {}
- which-pm@3.0.0:
+ which-pm@3.0.1:
dependencies:
load-yaml-file: 0.2.0
@@ -8028,7 +7443,7 @@ snapshots:
yocto-queue@1.1.1: {}
- yocto-spinner@0.1.2:
+ yocto-spinner@0.2.0:
dependencies:
yoctocolors: 2.1.1