Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

deps(deps): bump astro from 5.14.4 to 5.14.6

[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.14.4 to 5.14.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/withastro/astro/releases">astro's releases</a>.</em></p>
<blockquote>
<h2>astro@5.14.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14562">#14562</a> <a href="https://github.com/withastro/astro/commit/722bba0a57984b6b1c4585627cafa22af64e4251"><code>722bba0</code></a> Thanks <a href="https://github.com/erbierc"><code>@​erbierc</code></a>! - Fixes a bug where the behavior of the &quot;muted&quot; HTML attribute was inconsistent with that of other attributes.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14538">#14538</a> <a href="https://github.com/withastro/astro/commit/51ebe6ae9307f5c2124162212493f61152221a43"><code>51ebe6a</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Improves how Actions are implemented</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@​ascorbic</code></a>! - Removes support for the <code>maxAge</code> property in <code>cacheHint</code> objects returned by live loaders.</p>
<h4>:warning: Breaking change for experimental live content collections only</h4>
<p>Feedback showed that this did not make sense to set at the loader level, since the loader does not know how long each individual entry should be cached for.</p>
<p>If your live loader returns cache hints with <code>maxAge</code>, you need to remove this property:</p>
<pre lang="diff"><code>return {
entries: [...],
cacheHint: {
tags: ['my-tag'],
- maxAge: 60,
lastModified: new Date(),
},
};
</code></pre>
<p>The <code>cacheHint</code> object now only supports <code>tags</code> and <code>lastModified</code> properties. If you want to set the max age for a page, you can set the headers manually:</p>
<pre lang="astro"><code>---
Astro.headers.set('cdn-cache-control', 'max-age=3600');
---
</code></pre>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@​ascorbic</code></a>! - Adds missing <code>rendered</code> property to experimental live collections entry type</p>
<p>Live collections support a <code>rendered</code> property that allows you to provide pre-rendered HTML for each entry. While this property was documented and implemented, it was missing from the TypeScript types. This could lead to type errors when trying to use it in a TypeScript project.</p>
<p>No changes to your project code are necessary. You can continue to use the <code>rendered</code> property as before, and it will no longer produce TypeScript errors.</p>
</li>
</ul>
<h2>astro@5.14.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14525">#14525</a> <a href="https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae"><code>4f55781</code></a> Thanks <a href="https://github.com/penx"><code>@​penx</code></a>! - Fixes <code>defineLiveCollection()</code> types</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14441">#14441</a> <a href="https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5"><code>62ec8ea</code></a> Thanks <a href="https://github.com/upsuper"><code>@​upsuper</code></a>! - Updates redirect handling to be consistent across <code>static</code> and <code>server</code> output, aligning with the behavior of other adapters.</p>
<p>Previously, the Node.js adapter used default HTML files with meta refresh tags when in <code>static</code> output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.</p>
<p>This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in <code>static</code> output. It makes the Node.js adapter more consistent with the other official adapters.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's changelog</a>.</em></p>
<blockquote>
<h2>5.14.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14562">#14562</a> <a href="https://github.com/withastro/astro/commit/722bba0a57984b6b1c4585627cafa22af64e4251"><code>722bba0</code></a> Thanks <a href="https://github.com/erbierc"><code>@​erbierc</code></a>! - Fixes a bug where the behavior of the &quot;muted&quot; HTML attribute was inconsistent with that of other attributes.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14538">#14538</a> <a href="https://github.com/withastro/astro/commit/51ebe6ae9307f5c2124162212493f61152221a43"><code>51ebe6a</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Improves how Actions are implemented</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@​ascorbic</code></a>! - Removes support for the <code>maxAge</code> property in <code>cacheHint</code> objects returned by live loaders.</p>
<h4>:warning: Breaking change for experimental live content collections only</h4>
<p>Feedback showed that this did not make sense to set at the loader level, since the loader does not know how long each individual entry should be cached for.</p>
<p>If your live loader returns cache hints with <code>maxAge</code>, you need to remove this property:</p>
<pre lang="diff"><code>return {
entries: [...],
cacheHint: {
tags: ['my-tag'],
- maxAge: 60,
lastModified: new Date(),
},
};
</code></pre>
<p>The <code>cacheHint</code> object now only supports <code>tags</code> and <code>lastModified</code> properties. If you want to set the max age for a page, you can set the headers manually:</p>
<pre lang="astro"><code>---
Astro.headers.set('cdn-cache-control', 'max-age=3600');
---
</code></pre>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@​ascorbic</code></a>! - Adds missing <code>rendered</code> property to experimental live collections entry type</p>
<p>Live collections support a <code>rendered</code> property that allows you to provide pre-rendered HTML for each entry. While this property was documented and implemented, it was missing from the TypeScript types. This could lead to type errors when trying to use it in a TypeScript project.</p>
<p>No changes to your project code are necessary. You can continue to use the <code>rendered</code> property as before, and it will no longer produce TypeScript errors.</p>
</li>
</ul>
<h2>5.14.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14525">#14525</a> <a href="https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae"><code>4f55781</code></a> Thanks <a href="https://github.com/penx"><code>@​penx</code></a>! - Fixes <code>defineLiveCollection()</code> types</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14441">#14441</a> <a href="https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5"><code>62ec8ea</code></a> Thanks <a href="https://github.com/upsuper"><code>@​upsuper</code></a>! - Updates redirect handling to be consistent across <code>static</code> and <code>server</code> output, aligning with the behavior of other adapters.</p>
<p>Previously, the Node.js adapter used default HTML files with meta refresh tags when in <code>static</code> output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/withastro/astro/commit/4f1afc34f4c71740575b129eaa6e4d0a8b58ba52"><code>4f1afc3</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14551">#14551</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/722bba0a57984b6b1c4585627cafa22af64e4251"><code>722bba0</code></a> Fix: add muted to html boolean attributes (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14562">#14562</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/9f0601dfb84e702252a674fd0f4473d7f68dd72e"><code>9f0601d</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> fix: updates types for live collection entries (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14548">#14548</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/af801ca7a33b7c22a1ae0507a9921d4e97a11096"><code>af801ca</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/51ebe6ae9307f5c2124162212493f61152221a43"><code>51ebe6a</code></a> refactor(actions): plugin and virtual modules (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14538">#14538</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/adaaced47135b7360556679e8defefd3c9733b2b"><code>adaaced</code></a> chore: bump biome and errors (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14539">#14539</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/ef7af660978bca38a83145890497b192af3479aa"><code>ef7af66</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14527">#14527</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5"><code>62ec8ea</code></a> feat(node): handle redirects dynamically in static mode (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14441">#14441</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae"><code>4f55781</code></a> Update content.d.ts astro/loader =&gt; loaders (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14525">#14525</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.14.6/packages/astro">compare view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for astro since your current version.</p>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=5.14.4&new-version=5.14.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

authored by

dependabot[bot] and committed by
GitHub
cab32a98 e370c913

+53 -310
+1 -1
package.json
··· 22 22 "@astrojs/rss": "^4.0.12", 23 23 "@astrojs/sitemap": "^3.6.0", 24 24 "@playform/inline": "^0.1.2", 25 - "astro": "^5.14.4", 25 + "astro": "^5.14.6", 26 26 "astro-og-canvas": "^0.7.2", 27 27 "canvaskit-wasm": "^0.40.0", 28 28 "feed": "^5.1.0",
+52 -309
pnpm-lock.yaml
··· 10 10 dependencies: 11 11 '@astrojs/mdx': 12 12 specifier: ^4.3.7 13 - version: 4.3.7(astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 13 + version: 4.3.7(astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 14 14 '@astrojs/netlify': 15 15 specifier: ^6.5.13 16 - version: 6.5.13(@types/node@24.8.1)(astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(yaml@2.8.1) 16 + version: 6.5.13(@types/node@24.8.1)(astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(yaml@2.8.1) 17 17 '@astrojs/rss': 18 18 specifier: ^4.0.12 19 19 version: 4.0.12 ··· 24 24 specifier: ^0.1.2 25 25 version: 0.1.2(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 26 26 astro: 27 - specifier: ^5.14.4 28 - version: 5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 27 + specifier: ^5.14.6 28 + version: 5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 29 29 astro-og-canvas: 30 30 specifier: ^0.7.2 31 - version: 0.7.2(astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 31 + version: 0.7.2(astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)) 32 32 canvaskit-wasm: 33 33 specifier: ^0.40.0 34 34 version: 0.40.0 ··· 953 953 rollup: 954 954 optional: true 955 955 956 - '@rollup/rollup-android-arm-eabi@4.52.4': 957 - resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==} 958 - cpu: [arm] 959 - os: [android] 960 - 961 956 '@rollup/rollup-android-arm-eabi@4.52.5': 962 957 resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==} 963 958 cpu: [arm] 964 959 os: [android] 965 960 966 - '@rollup/rollup-android-arm64@4.52.4': 967 - resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==} 968 - cpu: [arm64] 969 - os: [android] 970 - 971 961 '@rollup/rollup-android-arm64@4.52.5': 972 962 resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} 973 963 cpu: [arm64] 974 964 os: [android] 975 965 976 - '@rollup/rollup-darwin-arm64@4.52.4': 977 - resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==} 978 - cpu: [arm64] 979 - os: [darwin] 980 - 981 966 '@rollup/rollup-darwin-arm64@4.52.5': 982 967 resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} 983 968 cpu: [arm64] 984 969 os: [darwin] 985 970 986 - '@rollup/rollup-darwin-x64@4.52.4': 987 - resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==} 988 - cpu: [x64] 989 - os: [darwin] 990 - 991 971 '@rollup/rollup-darwin-x64@4.52.5': 992 972 resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} 993 973 cpu: [x64] 994 974 os: [darwin] 995 975 996 - '@rollup/rollup-freebsd-arm64@4.52.4': 997 - resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==} 998 - cpu: [arm64] 999 - os: [freebsd] 1000 - 1001 976 '@rollup/rollup-freebsd-arm64@4.52.5': 1002 977 resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} 1003 978 cpu: [arm64] 1004 979 os: [freebsd] 1005 980 1006 - '@rollup/rollup-freebsd-x64@4.52.4': 1007 - resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==} 1008 - cpu: [x64] 1009 - os: [freebsd] 1010 - 1011 981 '@rollup/rollup-freebsd-x64@4.52.5': 1012 982 resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} 1013 983 cpu: [x64] 1014 984 os: [freebsd] 1015 985 1016 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 1017 - resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==} 1018 - cpu: [arm] 1019 - os: [linux] 1020 - 1021 986 '@rollup/rollup-linux-arm-gnueabihf@4.52.5': 1022 987 resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} 1023 988 cpu: [arm] 1024 989 os: [linux] 1025 990 1026 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 1027 - resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==} 1028 - cpu: [arm] 1029 - os: [linux] 1030 - 1031 991 '@rollup/rollup-linux-arm-musleabihf@4.52.5': 1032 992 resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} 1033 993 cpu: [arm] 1034 994 os: [linux] 1035 995 1036 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 1037 - resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==} 1038 - cpu: [arm64] 1039 - os: [linux] 1040 - 1041 996 '@rollup/rollup-linux-arm64-gnu@4.52.5': 1042 997 resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} 1043 998 cpu: [arm64] 1044 999 os: [linux] 1045 1000 1046 - '@rollup/rollup-linux-arm64-musl@4.52.4': 1047 - resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==} 1048 - cpu: [arm64] 1049 - os: [linux] 1050 - 1051 1001 '@rollup/rollup-linux-arm64-musl@4.52.5': 1052 1002 resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} 1053 1003 cpu: [arm64] 1054 1004 os: [linux] 1055 1005 1056 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 1057 - resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==} 1058 - cpu: [loong64] 1059 - os: [linux] 1060 - 1061 1006 '@rollup/rollup-linux-loong64-gnu@4.52.5': 1062 1007 resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} 1063 1008 cpu: [loong64] 1064 1009 os: [linux] 1065 1010 1066 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 1067 - resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==} 1068 - cpu: [ppc64] 1069 - os: [linux] 1070 - 1071 1011 '@rollup/rollup-linux-ppc64-gnu@4.52.5': 1072 1012 resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} 1073 1013 cpu: [ppc64] 1074 1014 os: [linux] 1075 1015 1076 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 1077 - resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==} 1078 - cpu: [riscv64] 1079 - os: [linux] 1080 - 1081 1016 '@rollup/rollup-linux-riscv64-gnu@4.52.5': 1082 1017 resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} 1083 1018 cpu: [riscv64] 1084 1019 os: [linux] 1085 1020 1086 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 1087 - resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==} 1088 - cpu: [riscv64] 1089 - os: [linux] 1090 - 1091 1021 '@rollup/rollup-linux-riscv64-musl@4.52.5': 1092 1022 resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} 1093 1023 cpu: [riscv64] 1094 1024 os: [linux] 1095 1025 1096 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 1097 - resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==} 1098 - cpu: [s390x] 1099 - os: [linux] 1100 - 1101 1026 '@rollup/rollup-linux-s390x-gnu@4.52.5': 1102 1027 resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} 1103 1028 cpu: [s390x] 1104 1029 os: [linux] 1105 1030 1106 - '@rollup/rollup-linux-x64-gnu@4.52.4': 1107 - resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==} 1108 - cpu: [x64] 1109 - os: [linux] 1110 - 1111 1031 '@rollup/rollup-linux-x64-gnu@4.52.5': 1112 1032 resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} 1113 1033 cpu: [x64] 1114 1034 os: [linux] 1115 1035 1116 - '@rollup/rollup-linux-x64-musl@4.52.4': 1117 - resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==} 1118 - cpu: [x64] 1119 - os: [linux] 1120 - 1121 1036 '@rollup/rollup-linux-x64-musl@4.52.5': 1122 1037 resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} 1123 1038 cpu: [x64] 1124 1039 os: [linux] 1125 1040 1126 - '@rollup/rollup-openharmony-arm64@4.52.4': 1127 - resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==} 1128 - cpu: [arm64] 1129 - os: [openharmony] 1130 - 1131 1041 '@rollup/rollup-openharmony-arm64@4.52.5': 1132 1042 resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} 1133 1043 cpu: [arm64] 1134 1044 os: [openharmony] 1135 1045 1136 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 1137 - resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==} 1138 - cpu: [arm64] 1139 - os: [win32] 1140 - 1141 1046 '@rollup/rollup-win32-arm64-msvc@4.52.5': 1142 1047 resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} 1143 1048 cpu: [arm64] 1144 1049 os: [win32] 1145 1050 1146 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 1147 - resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==} 1148 - cpu: [ia32] 1149 - os: [win32] 1150 - 1151 1051 '@rollup/rollup-win32-ia32-msvc@4.52.5': 1152 1052 resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} 1153 1053 cpu: [ia32] 1154 1054 os: [win32] 1155 1055 1156 - '@rollup/rollup-win32-x64-gnu@4.52.4': 1157 - resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==} 1158 - cpu: [x64] 1159 - os: [win32] 1160 - 1161 1056 '@rollup/rollup-win32-x64-gnu@4.52.5': 1162 1057 resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} 1163 - cpu: [x64] 1164 - os: [win32] 1165 - 1166 - '@rollup/rollup-win32-x64-msvc@4.52.4': 1167 - resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==} 1168 1058 cpu: [x64] 1169 1059 os: [win32] 1170 1060 ··· 1247 1137 1248 1138 '@types/node@22.13.14': 1249 1139 resolution: {integrity: sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==} 1250 - 1251 - '@types/node@24.7.2': 1252 - resolution: {integrity: sha512-/NbVmcGTP+lj5oa4yiYxxeBjRivKQ5Ns1eSZeB99ExsEQ6rX5XYU1Zy/gGxY/ilqtD4Etx9mKyrPxZRetiahhA==} 1253 1140 1254 1141 '@types/node@24.8.1': 1255 1142 resolution: {integrity: sha512-alv65KGRadQVfVcG69MuB4IzdYVpRwMG/mq8KWOaoOdyY617P5ivaDiMCGOFDWD2sAn5Q0mR3mRtUOgm99hL9Q==} ··· 1548 1435 peerDependencies: 1549 1436 astro: ^3.0.0 || ^4.0.0 || ^5.0.0 1550 1437 1551 - astro@5.14.4: 1552 - resolution: {integrity: sha512-yqgMAO2Whi9GmZkByyiPcG7CiiPr0Me0iBSorMa6M0g+wQk/ewnIqUyr7T/uFCPTQndoKwucnYFTrf0yfb0urw==} 1438 + astro@5.14.6: 1439 + resolution: {integrity: sha512-MSdjKt2W2a56x868DqDWgbfw4D689/8EGhHG4465h7eivTI237u1aBx4iJvgI6WfgdUE61+coAvMjUkEvOWbpA==} 1553 1440 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 1554 1441 hasBin: true 1555 1442 ··· 1958 1845 dettle@1.0.5: 1959 1846 resolution: {integrity: sha512-ZVyjhAJ7sCe1PNXEGveObOH9AC8QvMga3HJIghHawtG7mE4K5pW9nz/vDGAr/U7a3LWgdOzEE7ac9MURnyfaTA==} 1960 1847 1961 - devalue@5.3.2: 1962 - resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==} 1848 + devalue@5.4.1: 1849 + resolution: {integrity: sha512-YtoaOfsqjbZQKGIMRYDWKjUmSB4VJ/RElB+bXZawQAQYAo4xu08GKTMVlsZDTF6R2MbAgjcAQRPI5eIyRAT2OQ==} 1963 1850 1964 1851 devlop@1.1.0: 1965 1852 resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} ··· 2005 1892 ecdsa-sig-formatter@1.0.11: 2006 1893 resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} 2007 1894 2008 - emoji-regex@10.5.0: 2009 - resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} 1895 + emoji-regex@10.6.0: 1896 + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} 2010 1897 2011 1898 emoji-regex@8.0.0: 2012 1899 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} ··· 3191 3078 package-json-from-dist@1.0.1: 3192 3079 resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 3193 3080 3194 - package-manager-detector@1.4.0: 3195 - resolution: {integrity: sha512-rRZ+pR1Usc+ND9M2NkmCvE/LYJS+8ORVV9X0KuNSY/gFsp7RBHJM/ADh9LYq4Vvfq6QkKrW6/weuh8SMEtN5gw==} 3081 + package-manager-detector@1.5.0: 3082 + resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==} 3196 3083 3197 3084 pako@0.2.9: 3198 3085 resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} ··· 3501 3388 resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3502 3389 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3503 3390 3504 - rollup@4.52.4: 3505 - resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==} 3506 - engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3507 - hasBin: true 3508 - 3509 3391 rollup@4.52.5: 3510 3392 resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==} 3511 3393 engines: {node: '>=18.0.0', npm: '>=8.0.0'} ··· 3833 3715 unist-util-is@6.0.0: 3834 3716 resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 3835 3717 3718 + unist-util-is@6.0.1: 3719 + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 3720 + 3836 3721 unist-util-modify-children@4.0.0: 3837 3722 resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 3838 3723 ··· 3854 3739 unist-util-visit-parents@6.0.1: 3855 3740 resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 3856 3741 3742 + unist-util-visit-parents@6.0.2: 3743 + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} 3744 + 3857 3745 unist-util-visit@5.0.0: 3858 3746 resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 3859 3747 ··· 3962 3850 vfile@6.0.3: 3963 3851 resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 3964 3852 3965 - vite@6.3.6: 3966 - resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==} 3967 - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 3968 - hasBin: true 3969 - peerDependencies: 3970 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 3971 - jiti: '>=1.21.0' 3972 - less: '*' 3973 - lightningcss: ^1.21.0 3974 - sass: '*' 3975 - sass-embedded: '*' 3976 - stylus: '*' 3977 - sugarss: '*' 3978 - terser: ^5.16.0 3979 - tsx: ^4.8.1 3980 - yaml: ^2.4.2 3981 - peerDependenciesMeta: 3982 - '@types/node': 3983 - optional: true 3984 - jiti: 3985 - optional: true 3986 - less: 3987 - optional: true 3988 - lightningcss: 3989 - optional: true 3990 - sass: 3991 - optional: true 3992 - sass-embedded: 3993 - optional: true 3994 - stylus: 3995 - optional: true 3996 - sugarss: 3997 - optional: true 3998 - terser: 3999 - optional: true 4000 - tsx: 4001 - optional: true 4002 - yaml: 4003 - optional: true 4004 - 4005 3853 vite@6.4.0: 4006 3854 resolution: {integrity: sha512-oLnWs9Hak/LOlKjeSpOwD6JMks8BeICEdYMJBf6P4Lac/pO9tKiv/XhXnAM7nNfSkZahjlCZu9sS50zL8fSnsw==} 4007 3855 engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} ··· 4207 4055 unified: 11.0.5 4208 4056 unist-util-remove-position: 5.0.0 4209 4057 unist-util-visit: 5.0.0 4210 - unist-util-visit-parents: 6.0.1 4058 + unist-util-visit-parents: 6.0.2 4211 4059 vfile: 6.0.3 4212 4060 transitivePeerDependencies: 4213 4061 - supports-color 4214 4062 4215 - '@astrojs/mdx@4.3.7(astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))': 4063 + '@astrojs/mdx@4.3.7(astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))': 4216 4064 dependencies: 4217 4065 '@astrojs/markdown-remark': 6.3.8 4218 4066 '@mdx-js/mdx': 3.1.1 4219 4067 acorn: 8.15.0 4220 - astro: 5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4068 + astro: 5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4221 4069 es-module-lexer: 1.7.0 4222 4070 estree-util-visit: 2.0.0 4223 4071 hast-util-to-html: 9.0.5 ··· 4231 4079 transitivePeerDependencies: 4232 4080 - supports-color 4233 4081 4234 - '@astrojs/netlify@6.5.13(@types/node@24.8.1)(astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(yaml@2.8.1)': 4082 + '@astrojs/netlify@6.5.13(@types/node@24.8.1)(astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1))(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(yaml@2.8.1)': 4235 4083 dependencies: 4236 4084 '@astrojs/internal-helpers': 0.7.4 4237 4085 '@astrojs/underscore-redirects': 1.0.0 ··· 4239 4087 '@netlify/functions': 4.3.0(rollup@4.52.5) 4240 4088 '@netlify/vite-plugin': 2.7.3(rollup@4.52.5)(vite@6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)) 4241 4089 '@vercel/nft': 0.30.1(rollup@4.52.5) 4242 - astro: 5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4090 + astro: 5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4243 4091 esbuild: 0.25.11 4244 4092 tinyglobby: 0.2.15 4245 4093 vite: 6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) ··· 5137 4985 '@playform/inline@0.1.2(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)': 5138 4986 dependencies: 5139 4987 '@playform/pipe': 0.1.3 5140 - astro: 5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 4988 + astro: 5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5141 4989 beasties: 0.2.0 5142 4990 deepmerge-ts: 7.1.5 5143 4991 transitivePeerDependencies: ··· 5189 5037 optionalDependencies: 5190 5038 rollup: 4.52.5 5191 5039 5192 - '@rollup/rollup-android-arm-eabi@4.52.4': 5193 - optional: true 5194 - 5195 5040 '@rollup/rollup-android-arm-eabi@4.52.5': 5196 5041 optional: true 5197 5042 5198 - '@rollup/rollup-android-arm64@4.52.4': 5199 - optional: true 5200 - 5201 5043 '@rollup/rollup-android-arm64@4.52.5': 5202 5044 optional: true 5203 5045 5204 - '@rollup/rollup-darwin-arm64@4.52.4': 5205 - optional: true 5206 - 5207 5046 '@rollup/rollup-darwin-arm64@4.52.5': 5208 - optional: true 5209 - 5210 - '@rollup/rollup-darwin-x64@4.52.4': 5211 5047 optional: true 5212 5048 5213 5049 '@rollup/rollup-darwin-x64@4.52.5': 5214 5050 optional: true 5215 5051 5216 - '@rollup/rollup-freebsd-arm64@4.52.4': 5217 - optional: true 5218 - 5219 5052 '@rollup/rollup-freebsd-arm64@4.52.5': 5220 5053 optional: true 5221 5054 5222 - '@rollup/rollup-freebsd-x64@4.52.4': 5223 - optional: true 5224 - 5225 5055 '@rollup/rollup-freebsd-x64@4.52.5': 5226 - optional: true 5227 - 5228 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 5229 5056 optional: true 5230 5057 5231 5058 '@rollup/rollup-linux-arm-gnueabihf@4.52.5': 5232 5059 optional: true 5233 5060 5234 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 5235 - optional: true 5236 - 5237 5061 '@rollup/rollup-linux-arm-musleabihf@4.52.5': 5238 5062 optional: true 5239 5063 5240 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 5241 - optional: true 5242 - 5243 5064 '@rollup/rollup-linux-arm64-gnu@4.52.5': 5244 - optional: true 5245 - 5246 - '@rollup/rollup-linux-arm64-musl@4.52.4': 5247 5065 optional: true 5248 5066 5249 5067 '@rollup/rollup-linux-arm64-musl@4.52.5': 5250 5068 optional: true 5251 5069 5252 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 5253 - optional: true 5254 - 5255 5070 '@rollup/rollup-linux-loong64-gnu@4.52.5': 5256 5071 optional: true 5257 5072 5258 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 5259 - optional: true 5260 - 5261 5073 '@rollup/rollup-linux-ppc64-gnu@4.52.5': 5262 - optional: true 5263 - 5264 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 5265 5074 optional: true 5266 5075 5267 5076 '@rollup/rollup-linux-riscv64-gnu@4.52.5': 5268 5077 optional: true 5269 5078 5270 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 5271 - optional: true 5272 - 5273 5079 '@rollup/rollup-linux-riscv64-musl@4.52.5': 5274 5080 optional: true 5275 5081 5276 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 5277 - optional: true 5278 - 5279 5082 '@rollup/rollup-linux-s390x-gnu@4.52.5': 5280 - optional: true 5281 - 5282 - '@rollup/rollup-linux-x64-gnu@4.52.4': 5283 5083 optional: true 5284 5084 5285 5085 '@rollup/rollup-linux-x64-gnu@4.52.5': 5286 5086 optional: true 5287 5087 5288 - '@rollup/rollup-linux-x64-musl@4.52.4': 5289 - optional: true 5290 - 5291 5088 '@rollup/rollup-linux-x64-musl@4.52.5': 5292 5089 optional: true 5293 5090 5294 - '@rollup/rollup-openharmony-arm64@4.52.4': 5295 - optional: true 5296 - 5297 5091 '@rollup/rollup-openharmony-arm64@4.52.5': 5298 - optional: true 5299 - 5300 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 5301 5092 optional: true 5302 5093 5303 5094 '@rollup/rollup-win32-arm64-msvc@4.52.5': 5304 5095 optional: true 5305 5096 5306 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 5307 - optional: true 5308 - 5309 5097 '@rollup/rollup-win32-ia32-msvc@4.52.5': 5310 5098 optional: true 5311 5099 5312 - '@rollup/rollup-win32-x64-gnu@4.52.4': 5313 - optional: true 5314 - 5315 5100 '@rollup/rollup-win32-x64-gnu@4.52.5': 5316 - optional: true 5317 - 5318 - '@rollup/rollup-win32-x64-msvc@4.52.4': 5319 5101 optional: true 5320 5102 5321 5103 '@rollup/rollup-win32-x64-msvc@4.52.5': ··· 5375 5157 5376 5158 '@types/fontkit@2.0.8': 5377 5159 dependencies: 5378 - '@types/node': 24.7.2 5160 + '@types/node': 24.8.1 5379 5161 5380 5162 '@types/hast@3.0.4': 5381 5163 dependencies: ··· 5412 5194 dependencies: 5413 5195 undici-types: 6.20.0 5414 5196 5415 - '@types/node@24.7.2': 5416 - dependencies: 5417 - undici-types: 7.14.0 5418 - 5419 5197 '@types/node@24.8.1': 5420 5198 dependencies: 5421 5199 undici-types: 7.14.0 5422 - optional: true 5423 5200 5424 5201 '@types/normalize-package-data@2.4.4': {} 5425 5202 ··· 5832 5609 transitivePeerDependencies: 5833 5610 - supports-color 5834 5611 5835 - astro-og-canvas@0.7.2(astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)): 5612 + astro-og-canvas@0.7.2(astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1)): 5836 5613 dependencies: 5837 - astro: 5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5614 + astro: 5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1) 5838 5615 canvaskit-wasm: 0.40.0 5839 5616 deterministic-object-hash: 2.0.2 5840 5617 entities: 7.0.0 5841 5618 5842 - astro@5.14.4(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1): 5619 + astro@5.14.6(@netlify/blobs@10.1.0)(@types/node@24.8.1)(jiti@2.6.1)(rollup@4.52.5)(tsx@4.20.6)(typescript@5.9.3)(yaml@2.8.1): 5843 5620 dependencies: 5844 5621 '@astrojs/compiler': 2.13.0 5845 5622 '@astrojs/internal-helpers': 0.7.4 ··· 5859 5636 cssesc: 3.0.0 5860 5637 debug: 4.4.3 5861 5638 deterministic-object-hash: 2.0.2 5862 - devalue: 5.3.2 5639 + devalue: 5.4.1 5863 5640 diff: 5.2.0 5864 5641 dlv: 1.1.3 5865 5642 dset: 3.1.4 5866 5643 es-module-lexer: 1.7.0 5867 - esbuild: 0.25.10 5644 + esbuild: 0.25.11 5868 5645 estree-walker: 3.0.3 5869 5646 flattie: 1.1.1 5870 5647 fontace: 0.3.1 ··· 5880 5657 neotraverse: 0.6.18 5881 5658 p-limit: 6.2.0 5882 5659 p-queue: 8.1.1 5883 - package-manager-detector: 1.4.0 5660 + package-manager-detector: 1.5.0 5884 5661 picomatch: 4.0.3 5885 5662 prompts: 2.4.2 5886 5663 rehype: 13.0.2 ··· 5895 5672 unist-util-visit: 5.0.0 5896 5673 unstorage: 1.17.1(@netlify/blobs@10.1.0) 5897 5674 vfile: 6.0.3 5898 - vite: 6.3.6(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) 5899 - vitefu: 1.1.1(vite@6.3.6(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)) 5675 + vite: 6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) 5676 + vitefu: 1.1.1(vite@6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)) 5900 5677 xxhash-wasm: 1.1.0 5901 5678 yargs-parser: 21.1.1 5902 5679 yocto-spinner: 0.2.3 ··· 6296 6073 6297 6074 dettle@1.0.5: {} 6298 6075 6299 - devalue@5.3.2: {} 6076 + devalue@5.4.1: {} 6300 6077 6301 6078 devlop@1.1.0: 6302 6079 dependencies: ··· 6340 6117 dependencies: 6341 6118 safe-buffer: 5.2.1 6342 6119 6343 - emoji-regex@10.5.0: {} 6120 + emoji-regex@10.6.0: {} 6344 6121 6345 6122 emoji-regex@8.0.0: {} 6346 6123 ··· 7323 7100 dependencies: 7324 7101 '@types/mdast': 4.0.4 7325 7102 escape-string-regexp: 5.0.0 7326 - unist-util-is: 6.0.0 7327 - unist-util-visit-parents: 6.0.1 7103 + unist-util-is: 6.0.1 7104 + unist-util-visit-parents: 6.0.2 7328 7105 7329 7106 mdast-util-from-markdown@2.0.2: 7330 7107 dependencies: ··· 7464 7241 mdast-util-phrasing@4.1.0: 7465 7242 dependencies: 7466 7243 '@types/mdast': 4.0.4 7467 - unist-util-is: 6.0.0 7244 + unist-util-is: 6.0.1 7468 7245 7469 7246 mdast-util-to-hast@13.2.0: 7470 7247 dependencies: ··· 7994 7771 7995 7772 package-json-from-dist@1.0.1: {} 7996 7773 7997 - package-manager-detector@1.4.0: {} 7774 + package-manager-detector@1.5.0: {} 7998 7775 7999 7776 pako@0.2.9: {} 8000 7777 ··· 8402 8179 8403 8180 reusify@1.1.0: {} 8404 8181 8405 - rollup@4.52.4: 8406 - dependencies: 8407 - '@types/estree': 1.0.8 8408 - optionalDependencies: 8409 - '@rollup/rollup-android-arm-eabi': 4.52.4 8410 - '@rollup/rollup-android-arm64': 4.52.4 8411 - '@rollup/rollup-darwin-arm64': 4.52.4 8412 - '@rollup/rollup-darwin-x64': 4.52.4 8413 - '@rollup/rollup-freebsd-arm64': 4.52.4 8414 - '@rollup/rollup-freebsd-x64': 4.52.4 8415 - '@rollup/rollup-linux-arm-gnueabihf': 4.52.4 8416 - '@rollup/rollup-linux-arm-musleabihf': 4.52.4 8417 - '@rollup/rollup-linux-arm64-gnu': 4.52.4 8418 - '@rollup/rollup-linux-arm64-musl': 4.52.4 8419 - '@rollup/rollup-linux-loong64-gnu': 4.52.4 8420 - '@rollup/rollup-linux-ppc64-gnu': 4.52.4 8421 - '@rollup/rollup-linux-riscv64-gnu': 4.52.4 8422 - '@rollup/rollup-linux-riscv64-musl': 4.52.4 8423 - '@rollup/rollup-linux-s390x-gnu': 4.52.4 8424 - '@rollup/rollup-linux-x64-gnu': 4.52.4 8425 - '@rollup/rollup-linux-x64-musl': 4.52.4 8426 - '@rollup/rollup-openharmony-arm64': 4.52.4 8427 - '@rollup/rollup-win32-arm64-msvc': 4.52.4 8428 - '@rollup/rollup-win32-ia32-msvc': 4.52.4 8429 - '@rollup/rollup-win32-x64-gnu': 4.52.4 8430 - '@rollup/rollup-win32-x64-msvc': 4.52.4 8431 - fsevents: 2.3.3 8432 - 8433 8182 rollup@4.52.5: 8434 8183 dependencies: 8435 8184 '@types/estree': 1.0.8 ··· 8606 8355 8607 8356 string-width@7.2.0: 8608 8357 dependencies: 8609 - emoji-regex: 10.5.0 8358 + emoji-regex: 10.6.0 8610 8359 get-east-asian-width: 1.4.0 8611 8360 strip-ansi: 7.1.2 8612 8361 ··· 8814 8563 dependencies: 8815 8564 '@types/unist': 3.0.3 8816 8565 8566 + unist-util-is@6.0.1: 8567 + dependencies: 8568 + '@types/unist': 3.0.3 8569 + 8817 8570 unist-util-modify-children@4.0.0: 8818 8571 dependencies: 8819 8572 '@types/unist': 3.0.3 ··· 8845 8598 '@types/unist': 3.0.3 8846 8599 unist-util-is: 6.0.0 8847 8600 8601 + unist-util-visit-parents@6.0.2: 8602 + dependencies: 8603 + '@types/unist': 3.0.3 8604 + unist-util-is: 6.0.1 8605 + 8848 8606 unist-util-visit@5.0.0: 8849 8607 dependencies: 8850 8608 '@types/unist': 3.0.3 ··· 8910 8668 '@types/unist': 3.0.3 8911 8669 vfile-message: 4.0.3 8912 8670 8913 - vite@6.3.6(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1): 8914 - dependencies: 8915 - esbuild: 0.25.11 8916 - fdir: 6.5.0(picomatch@4.0.3) 8917 - picomatch: 4.0.3 8918 - postcss: 8.5.6 8919 - rollup: 4.52.4 8920 - tinyglobby: 0.2.15 8921 - optionalDependencies: 8922 - '@types/node': 24.8.1 8923 - fsevents: 2.3.3 8924 - jiti: 2.6.1 8925 - tsx: 4.20.6 8926 - yaml: 2.8.1 8927 - 8928 8671 vite@6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1): 8929 8672 dependencies: 8930 8673 esbuild: 0.25.11 ··· 8940 8683 tsx: 4.20.6 8941 8684 yaml: 2.8.1 8942 8685 8943 - vitefu@1.1.1(vite@6.3.6(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)): 8686 + vitefu@1.1.1(vite@6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1)): 8944 8687 optionalDependencies: 8945 - vite: 6.3.6(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) 8688 + vite: 6.4.0(@types/node@24.8.1)(jiti@2.6.1)(tsx@4.20.6)(yaml@2.8.1) 8946 8689 8947 8690 web-namespaces@2.0.1: {} 8948 8691