Fork of Chiri for Astro for my blog
6
fork

Configure Feed

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

deps(deps): bump astro from 5.16.11 to 5.16.15 in the astro group

Bumps the astro group with 1 update: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).

Updates `astro` from 5.16.11 to 5.16.15
<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.16.15</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/withastro/astro/pull/15286">#15286</a> <a href="https://github.com/withastro/astro/commit/0aafc8342a47f5c96cd13bfc02539d89c3c358a7"><code>0aafc83</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Fixes a case where font providers provided as class instances may not work when using the experimental Fonts API. It affected the local provider</li>
</ul>
<h2>astro@5.16.14</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15213">#15213</a> <a href="https://github.com/withastro/astro/commit/c775fce98f50001bc59025dceaf8ea5287675f17"><code>c775fce</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - <strong>BREAKING CHANGE to the experimental Fonts API only</strong></p>
<p>Updates how the local provider must be used when using the experimental Fonts API</p>
<p>Previously, there were 2 kinds of font providers: remote and local.</p>
<p>Font providers are now unified. If you are using the local provider, the process for configuring local fonts must be updated:</p>
<pre lang="diff"><code>-import { defineConfig } from &quot;astro/config&quot;;
+import { defineConfig, fontProviders } from &quot;astro/config&quot;;
<p>export default defineConfig({
experimental: {
fonts: [{
name: &quot;Custom&quot;,
cssVariable: &quot;--font-custom&quot;,</p>
<ul>
<li>
<pre><code> provider: &amp;quot;local&amp;quot;,
</code></pre>
</li>
</ul>
<ul>
<li>
<pre><code> provider: fontProviders.local(),
</code></pre>
</li>
<li>
<pre><code> options: {
variants: [
{
weight: 400,
style: &amp;quot;normal&amp;quot;,
src: [&amp;quot;./src/assets/fonts/custom-400.woff2&amp;quot;]
},
{
weight: 700,
style: &amp;quot;normal&amp;quot;,
src: [&amp;quot;./src/assets/fonts/custom-700.woff2&amp;quot;]
}
// ...
]
</code></pre>
</li>
<li>
<pre><code> }
}]
</code></pre>
}
});
</code></pre></li>
</ul>
<p>Once configured, there is no change to using local fonts in your project. However, you should inspect your deployed site to confirm that your new font configuration is being applied.</p>
<p>See <a href="https://docs.astro.build/en/reference/experimental-flags/fonts/">the experimental Fonts API docs</a> for more information.</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.16.15</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/withastro/astro/pull/15286">#15286</a> <a href="https://github.com/withastro/astro/commit/0aafc8342a47f5c96cd13bfc02539d89c3c358a7"><code>0aafc83</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Fixes a case where font providers provided as class instances may not work when using the experimental Fonts API. It affected the local provider</li>
</ul>
<h2>5.16.14</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15213">#15213</a> <a href="https://github.com/withastro/astro/commit/c775fce98f50001bc59025dceaf8ea5287675f17"><code>c775fce</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - <strong>BREAKING CHANGE to the experimental Fonts API only</strong></p>
<p>Updates how the local provider must be used when using the experimental Fonts API</p>
<p>Previously, there were 2 kinds of font providers: remote and local.</p>
<p>Font providers are now unified. If you are using the local provider, the process for configuring local fonts must be updated:</p>
<pre lang="diff"><code>-import { defineConfig } from &quot;astro/config&quot;;
+import { defineConfig, fontProviders } from &quot;astro/config&quot;;
<p>export default defineConfig({
experimental: {
fonts: [{
name: &quot;Custom&quot;,
cssVariable: &quot;--font-custom&quot;,</p>
<ul>
<li>
<pre><code> provider: &amp;quot;local&amp;quot;,
</code></pre>
</li>
</ul>
<ul>
<li>
<pre><code> provider: fontProviders.local(),
</code></pre>
</li>
<li>
<pre><code> options: {
variants: [
{
weight: 400,
style: &amp;quot;normal&amp;quot;,
src: [&amp;quot;./src/assets/fonts/custom-400.woff2&amp;quot;]
},
{
weight: 700,
style: &amp;quot;normal&amp;quot;,
src: [&amp;quot;./src/assets/fonts/custom-700.woff2&amp;quot;]
}
// ...
]
</code></pre>
</li>
<li>
<pre><code> }
}]
</code></pre>
}
});
</code></pre></li>
</ul>
<p>Once configured, there is no change to using local fonts in your project. However, you should inspect your deployed site to confirm that your new font configuration is being applied.</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/8ca97e107b0ad607898b3ac9cbcf96b65953fe84"><code>8ca97e1</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15288">#15288</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/0aafc8342a47f5c96cd13bfc02539d89c3c358a7"><code>0aafc83</code></a> fix(fonts): font providers as class instances (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15286">#15286</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/f7a841550bcd88214f647bacf69ee03d2304263f"><code>f7a8415</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15278">#15278</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/7db2fda6619c209a7133fbcf23b794fcb44e20f0"><code>7db2fda</code></a> address sarah's feedback (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15280">#15280</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/c775fce98f50001bc59025dceaf8ea5287675f17"><code>c775fce</code></a> feat(fonts)!: local provider unification (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15213">#15213</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/edabeaa3cd3355fa33e4eb547656033fe7b66845"><code>edabeaa</code></a> fix(cli): add .vercel to .gitignore when using astro add vercel (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15185">#15185</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/ce0c3465d57ebf75be6f93ceb9a99faad195eb06"><code>ce0c346</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15270">#15270</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/60d1045e042738499875d3add39d43e0f1daebe0"><code>60d1045</code></a> clear fonts test cache (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15274">#15274</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/c4a15a827bc96d2857420212b8c9627fd3bfb195"><code>c4a15a8</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/cb60ee16051da258ab140f3bb64ff3fd8e4c9e17"><code>cb60ee1</code></a> feat(fonts): getFontBuffer() (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15182">#15182</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.16.15/packages/astro">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=5.16.11&new-version=5.16.15)](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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

authored by

dependabot[bot] and committed by
GitHub
37c19cd1 b4568d85

+159 -152
+1 -1
package.json
··· 22 22 "@astrojs/rss": "^4.0.15", 23 23 "@astrojs/sitemap": "^3.7.0", 24 24 "@playform/inline": "^0.1.2", 25 - "astro": "^5.16.11", 25 + "astro": "^5.16.15", 26 26 "astro-og-canvas": "^0.10.0", 27 27 "canvaskit-wasm": "^0.40.0", 28 28 "feed": "^5.2.0",
+158 -151
pnpm-lock.yaml
··· 10 10 dependencies: 11 11 '@astrojs/mdx': 12 12 specifier: ^4.3.13 13 - version: 4.3.13(astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 13 + version: 4.3.13(astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 14 14 '@astrojs/netlify': 15 15 specifier: ^6.6.4 16 - version: 6.6.4(@netlify/api@14.0.12)(@types/node@25.0.9)(astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(yaml@2.8.2) 16 + version: 6.6.4(@netlify/api@14.0.12)(@types/node@25.0.9)(astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(yaml@2.8.2) 17 17 '@astrojs/rss': 18 18 specifier: ^4.0.15 19 19 version: 4.0.15 ··· 22 22 version: 3.7.0 23 23 '@playform/inline': 24 24 specifier: ^0.1.2 25 - version: 0.1.2(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 25 + version: 0.1.2(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 26 26 astro: 27 - specifier: ^5.16.11 28 - version: 5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 27 + specifier: ^5.16.15 28 + version: 5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 29 29 astro-og-canvas: 30 30 specifier: ^0.10.0 31 - version: 0.10.0(astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 31 + version: 0.10.0(astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)) 32 32 canvaskit-wasm: 33 33 specifier: ^0.40.0 34 34 version: 0.40.0 ··· 1034 1034 rollup: 1035 1035 optional: true 1036 1036 1037 - '@rollup/rollup-android-arm-eabi@4.55.1': 1038 - resolution: {integrity: sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==} 1037 + '@rollup/rollup-android-arm-eabi@4.56.0': 1038 + resolution: {integrity: sha512-LNKIPA5k8PF1+jAFomGe3qN3bbIgJe/IlpDBwuVjrDKrJhVWywgnJvflMt/zkbVNLFtF1+94SljYQS6e99klnw==} 1039 1039 cpu: [arm] 1040 1040 os: [android] 1041 1041 1042 - '@rollup/rollup-android-arm64@4.55.1': 1043 - resolution: {integrity: sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==} 1042 + '@rollup/rollup-android-arm64@4.56.0': 1043 + resolution: {integrity: sha512-lfbVUbelYqXlYiU/HApNMJzT1E87UPGvzveGg2h0ktUNlOCxKlWuJ9jtfvs1sKHdwU4fzY7Pl8sAl49/XaEk6Q==} 1044 1044 cpu: [arm64] 1045 1045 os: [android] 1046 1046 1047 - '@rollup/rollup-darwin-arm64@4.55.1': 1048 - resolution: {integrity: sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==} 1047 + '@rollup/rollup-darwin-arm64@4.56.0': 1048 + resolution: {integrity: sha512-EgxD1ocWfhoD6xSOeEEwyE7tDvwTgZc8Bss7wCWe+uc7wO8G34HHCUH+Q6cHqJubxIAnQzAsyUsClt0yFLu06w==} 1049 1049 cpu: [arm64] 1050 1050 os: [darwin] 1051 1051 1052 - '@rollup/rollup-darwin-x64@4.55.1': 1053 - resolution: {integrity: sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==} 1052 + '@rollup/rollup-darwin-x64@4.56.0': 1053 + resolution: {integrity: sha512-1vXe1vcMOssb/hOF8iv52A7feWW2xnu+c8BV4t1F//m9QVLTfNVpEdja5ia762j/UEJe2Z1jAmEqZAK42tVW3g==} 1054 1054 cpu: [x64] 1055 1055 os: [darwin] 1056 1056 1057 - '@rollup/rollup-freebsd-arm64@4.55.1': 1058 - resolution: {integrity: sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==} 1057 + '@rollup/rollup-freebsd-arm64@4.56.0': 1058 + resolution: {integrity: sha512-bof7fbIlvqsyv/DtaXSck4VYQ9lPtoWNFCB/JY4snlFuJREXfZnm+Ej6yaCHfQvofJDXLDMTVxWscVSuQvVWUQ==} 1059 1059 cpu: [arm64] 1060 1060 os: [freebsd] 1061 1061 1062 - '@rollup/rollup-freebsd-x64@4.55.1': 1063 - resolution: {integrity: sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==} 1062 + '@rollup/rollup-freebsd-x64@4.56.0': 1063 + resolution: {integrity: sha512-KNa6lYHloW+7lTEkYGa37fpvPq+NKG/EHKM8+G/g9WDU7ls4sMqbVRV78J6LdNuVaeeK5WB9/9VAFbKxcbXKYg==} 1064 1064 cpu: [x64] 1065 1065 os: [freebsd] 1066 1066 1067 - '@rollup/rollup-linux-arm-gnueabihf@4.55.1': 1068 - resolution: {integrity: sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==} 1067 + '@rollup/rollup-linux-arm-gnueabihf@4.56.0': 1068 + resolution: {integrity: sha512-E8jKK87uOvLrrLN28jnAAAChNq5LeCd2mGgZF+fGF5D507WlG/Noct3lP/QzQ6MrqJ5BCKNwI9ipADB6jyiq2A==} 1069 1069 cpu: [arm] 1070 1070 os: [linux] 1071 1071 1072 - '@rollup/rollup-linux-arm-musleabihf@4.55.1': 1073 - resolution: {integrity: sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==} 1072 + '@rollup/rollup-linux-arm-musleabihf@4.56.0': 1073 + resolution: {integrity: sha512-jQosa5FMYF5Z6prEpTCCmzCXz6eKr/tCBssSmQGEeozA9tkRUty/5Vx06ibaOP9RCrW1Pvb8yp3gvZhHwTDsJw==} 1074 1074 cpu: [arm] 1075 1075 os: [linux] 1076 1076 1077 - '@rollup/rollup-linux-arm64-gnu@4.55.1': 1078 - resolution: {integrity: sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==} 1077 + '@rollup/rollup-linux-arm64-gnu@4.56.0': 1078 + resolution: {integrity: sha512-uQVoKkrC1KGEV6udrdVahASIsaF8h7iLG0U0W+Xn14ucFwi6uS539PsAr24IEF9/FoDtzMeeJXJIBo5RkbNWvQ==} 1079 1079 cpu: [arm64] 1080 1080 os: [linux] 1081 1081 1082 - '@rollup/rollup-linux-arm64-musl@4.55.1': 1083 - resolution: {integrity: sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==} 1082 + '@rollup/rollup-linux-arm64-musl@4.56.0': 1083 + resolution: {integrity: sha512-vLZ1yJKLxhQLFKTs42RwTwa6zkGln+bnXc8ueFGMYmBTLfNu58sl5/eXyxRa2RarTkJbXl8TKPgfS6V5ijNqEA==} 1084 1084 cpu: [arm64] 1085 1085 os: [linux] 1086 1086 1087 - '@rollup/rollup-linux-loong64-gnu@4.55.1': 1088 - resolution: {integrity: sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==} 1087 + '@rollup/rollup-linux-loong64-gnu@4.56.0': 1088 + resolution: {integrity: sha512-FWfHOCub564kSE3xJQLLIC/hbKqHSVxy8vY75/YHHzWvbJL7aYJkdgwD/xGfUlL5UV2SB7otapLrcCj2xnF1dg==} 1089 1089 cpu: [loong64] 1090 1090 os: [linux] 1091 1091 1092 - '@rollup/rollup-linux-loong64-musl@4.55.1': 1093 - resolution: {integrity: sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==} 1092 + '@rollup/rollup-linux-loong64-musl@4.56.0': 1093 + resolution: {integrity: sha512-z1EkujxIh7nbrKL1lmIpqFTc/sr0u8Uk0zK/qIEFldbt6EDKWFk/pxFq3gYj4Bjn3aa9eEhYRlL3H8ZbPT1xvA==} 1094 1094 cpu: [loong64] 1095 1095 os: [linux] 1096 1096 1097 - '@rollup/rollup-linux-ppc64-gnu@4.55.1': 1098 - resolution: {integrity: sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==} 1097 + '@rollup/rollup-linux-ppc64-gnu@4.56.0': 1098 + resolution: {integrity: sha512-iNFTluqgdoQC7AIE8Q34R3AuPrJGJirj5wMUErxj22deOcY7XwZRaqYmB6ZKFHoVGqRcRd0mqO+845jAibKCkw==} 1099 1099 cpu: [ppc64] 1100 1100 os: [linux] 1101 1101 1102 - '@rollup/rollup-linux-ppc64-musl@4.55.1': 1103 - resolution: {integrity: sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==} 1102 + '@rollup/rollup-linux-ppc64-musl@4.56.0': 1103 + resolution: {integrity: sha512-MtMeFVlD2LIKjp2sE2xM2slq3Zxf9zwVuw0jemsxvh1QOpHSsSzfNOTH9uYW9i1MXFxUSMmLpeVeUzoNOKBaWg==} 1104 1104 cpu: [ppc64] 1105 1105 os: [linux] 1106 1106 1107 - '@rollup/rollup-linux-riscv64-gnu@4.55.1': 1108 - resolution: {integrity: sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==} 1107 + '@rollup/rollup-linux-riscv64-gnu@4.56.0': 1108 + resolution: {integrity: sha512-in+v6wiHdzzVhYKXIk5U74dEZHdKN9KH0Q4ANHOTvyXPG41bajYRsy7a8TPKbYPl34hU7PP7hMVHRvv/5aCSew==} 1109 1109 cpu: [riscv64] 1110 1110 os: [linux] 1111 1111 1112 - '@rollup/rollup-linux-riscv64-musl@4.55.1': 1113 - resolution: {integrity: sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==} 1112 + '@rollup/rollup-linux-riscv64-musl@4.56.0': 1113 + resolution: {integrity: sha512-yni2raKHB8m9NQpI9fPVwN754mn6dHQSbDTwxdr9SE0ks38DTjLMMBjrwvB5+mXrX+C0npX0CVeCUcvvvD8CNQ==} 1114 1114 cpu: [riscv64] 1115 1115 os: [linux] 1116 1116 1117 - '@rollup/rollup-linux-s390x-gnu@4.55.1': 1118 - resolution: {integrity: sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==} 1117 + '@rollup/rollup-linux-s390x-gnu@4.56.0': 1118 + resolution: {integrity: sha512-zhLLJx9nQPu7wezbxt2ut+CI4YlXi68ndEve16tPc/iwoylWS9B3FxpLS2PkmfYgDQtosah07Mj9E0khc3Y+vQ==} 1119 1119 cpu: [s390x] 1120 1120 os: [linux] 1121 1121 1122 - '@rollup/rollup-linux-x64-gnu@4.55.1': 1123 - resolution: {integrity: sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==} 1122 + '@rollup/rollup-linux-x64-gnu@4.56.0': 1123 + resolution: {integrity: sha512-MVC6UDp16ZSH7x4rtuJPAEoE1RwS8N4oK9DLHy3FTEdFoUTCFVzMfJl/BVJ330C+hx8FfprA5Wqx4FhZXkj2Kw==} 1124 1124 cpu: [x64] 1125 1125 os: [linux] 1126 1126 1127 - '@rollup/rollup-linux-x64-musl@4.55.1': 1128 - resolution: {integrity: sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==} 1127 + '@rollup/rollup-linux-x64-musl@4.56.0': 1128 + resolution: {integrity: sha512-ZhGH1eA4Qv0lxaV00azCIS1ChedK0V32952Md3FtnxSqZTBTd6tgil4nZT5cU8B+SIw3PFYkvyR4FKo2oyZIHA==} 1129 1129 cpu: [x64] 1130 1130 os: [linux] 1131 1131 1132 - '@rollup/rollup-openbsd-x64@4.55.1': 1133 - resolution: {integrity: sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==} 1132 + '@rollup/rollup-openbsd-x64@4.56.0': 1133 + resolution: {integrity: sha512-O16XcmyDeFI9879pEcmtWvD/2nyxR9mF7Gs44lf1vGGx8Vg2DRNx11aVXBEqOQhWb92WN4z7fW/q4+2NYzCbBA==} 1134 1134 cpu: [x64] 1135 1135 os: [openbsd] 1136 1136 1137 - '@rollup/rollup-openharmony-arm64@4.55.1': 1138 - resolution: {integrity: sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==} 1137 + '@rollup/rollup-openharmony-arm64@4.56.0': 1138 + resolution: {integrity: sha512-LhN/Reh+7F3RCgQIRbgw8ZMwUwyqJM+8pXNT6IIJAqm2IdKkzpCh/V9EdgOMBKuebIrzswqy4ATlrDgiOwbRcQ==} 1139 1139 cpu: [arm64] 1140 1140 os: [openharmony] 1141 1141 1142 - '@rollup/rollup-win32-arm64-msvc@4.55.1': 1143 - resolution: {integrity: sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==} 1142 + '@rollup/rollup-win32-arm64-msvc@4.56.0': 1143 + resolution: {integrity: sha512-kbFsOObXp3LBULg1d3JIUQMa9Kv4UitDmpS+k0tinPBz3watcUiV2/LUDMMucA6pZO3WGE27P7DsfaN54l9ing==} 1144 1144 cpu: [arm64] 1145 1145 os: [win32] 1146 1146 1147 - '@rollup/rollup-win32-ia32-msvc@4.55.1': 1148 - resolution: {integrity: sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==} 1147 + '@rollup/rollup-win32-ia32-msvc@4.56.0': 1148 + resolution: {integrity: sha512-vSSgny54D6P4vf2izbtFm/TcWYedw7f8eBrOiGGecyHyQB9q4Kqentjaj8hToe+995nob/Wv48pDqL5a62EWtg==} 1149 1149 cpu: [ia32] 1150 1150 os: [win32] 1151 1151 1152 - '@rollup/rollup-win32-x64-gnu@4.55.1': 1153 - resolution: {integrity: sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==} 1152 + '@rollup/rollup-win32-x64-gnu@4.56.0': 1153 + resolution: {integrity: sha512-FeCnkPCTHQJFbiGG49KjV5YGW/8b9rrXAM2Mz2kiIoktq2qsJxRD5giEMEOD2lPdgs72upzefaUvS+nc8E3UzQ==} 1154 1154 cpu: [x64] 1155 1155 os: [win32] 1156 1156 1157 - '@rollup/rollup-win32-x64-msvc@4.55.1': 1158 - resolution: {integrity: sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==} 1157 + '@rollup/rollup-win32-x64-msvc@4.56.0': 1158 + resolution: {integrity: sha512-H8AE9Ur/t0+1VXujj90w0HrSOuv0Nq9r1vSZF2t5km20NTfosQsGGUXDaKdQZzwuLts7IyL1fYT4hM95TI9c4g==} 1159 1159 cpu: [x64] 1160 1160 os: [win32] 1161 1161 ··· 1472 1472 peerDependencies: 1473 1473 astro: ^5.0.0 || ^6.0.0-alpha 1474 1474 1475 - astro@5.16.11: 1476 - resolution: {integrity: sha512-Z7kvkTTT5n6Hn5lCm6T3WU6pkxx84Hn25dtQ6dR7ATrBGq9eVa8EuB/h1S8xvaoVyCMZnIESu99Z9RJfdLRLDA==} 1475 + astro@5.16.15: 1476 + resolution: {integrity: sha512-+X1Z0NTi2pa5a0Te6h77Dgc44fYj63j1yx6+39Nvg05lExajxSq7b1Uj/gtY45zoum8fD0+h0nak+DnHighs3A==} 1477 1477 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 1478 1478 hasBin: true 1479 1479 ··· 1948 1948 resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==} 1949 1949 engines: {node: '>=0.12'} 1950 1950 1951 + entities@7.0.1: 1952 + resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} 1953 + engines: {node: '>=0.12'} 1954 + 1951 1955 env-paths@3.0.0: 1952 1956 resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} 1953 1957 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} ··· 2085 2089 resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 2086 2090 engines: {node: '>=6'} 2087 2091 2088 - eventemitter3@5.0.1: 2089 - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 2092 + eventemitter3@5.0.4: 2093 + resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} 2090 2094 2091 2095 events-universal@1.0.1: 2092 2096 resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} ··· 2670 2674 lru-cache@10.4.3: 2671 2675 resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 2672 2676 2673 - lru-cache@11.2.4: 2674 - resolution: {integrity: sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==} 2677 + lru-cache@11.2.5: 2678 + resolution: {integrity: sha512-vFrFJkWtJvJnD5hg+hJvVE8Lh/TcMzKnTgCWmtBipwI5yLX/iX+5UB2tfuyODF5E7k9xEzMdYgGqaSb1c0c5Yw==} 2675 2679 engines: {node: 20 || >=22} 2676 2680 2677 2681 luxon@3.7.2: ··· 3424 3428 resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3425 3429 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3426 3430 3427 - rollup@4.55.1: 3428 - resolution: {integrity: sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==} 3431 + rollup@4.56.0: 3432 + resolution: {integrity: sha512-9FwVqlgUHzbXtDg9RCMgodF3Ua4Na6Gau+Sdt9vyCN4RhHfVKX2DCHy3BjMLTDd47ITDhYAnTwGulWTblJSDLg==} 3429 3433 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3430 3434 hasBin: true 3431 3435 ··· 3612 3616 tar@7.5.2: 3613 3617 resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==} 3614 3618 engines: {node: '>=18'} 3619 + deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exhorbitant rates) by contacting i@izs.me 3615 3620 3616 3621 text-decoder@1.2.3: 3617 3622 resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} ··· 4050 4055 zod@3.25.76: 4051 4056 resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 4052 4057 4053 - zod@4.3.5: 4054 - resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==} 4058 + zod@4.3.6: 4059 + resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} 4055 4060 4056 4061 zwitch@2.0.4: 4057 4062 resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} ··· 4088 4093 transitivePeerDependencies: 4089 4094 - supports-color 4090 4095 4091 - '@astrojs/mdx@4.3.13(astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))': 4096 + '@astrojs/mdx@4.3.13(astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))': 4092 4097 dependencies: 4093 4098 '@astrojs/markdown-remark': 6.3.10 4094 4099 '@mdx-js/mdx': 3.1.1 4095 4100 acorn: 8.15.0 4096 - astro: 5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 4101 + astro: 5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 4097 4102 es-module-lexer: 1.7.0 4098 4103 estree-util-visit: 2.0.0 4099 4104 hast-util-to-html: 9.0.5 ··· 4107 4112 transitivePeerDependencies: 4108 4113 - supports-color 4109 4114 4110 - '@astrojs/netlify@6.6.4(@netlify/api@14.0.12)(@types/node@25.0.9)(astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(yaml@2.8.2)': 4115 + '@astrojs/netlify@6.6.4(@netlify/api@14.0.12)(@types/node@25.0.9)(astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(yaml@2.8.2)': 4111 4116 dependencies: 4112 4117 '@astrojs/internal-helpers': 0.7.5 4113 4118 '@astrojs/underscore-redirects': 1.0.0 4114 4119 '@netlify/blobs': 10.5.0 4115 4120 '@netlify/functions': 5.1.2 4116 - '@netlify/vite-plugin': 2.7.19(@netlify/api@14.0.12)(rollup@4.55.1)(vite@6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2)) 4117 - '@vercel/nft': 0.30.4(rollup@4.55.1) 4118 - astro: 5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 4121 + '@netlify/vite-plugin': 2.7.19(@netlify/api@14.0.12)(rollup@4.56.0)(vite@6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2)) 4122 + '@vercel/nft': 0.30.4(rollup@4.56.0) 4123 + astro: 5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 4119 4124 esbuild: 0.25.12 4120 4125 tinyglobby: 0.2.15 4121 4126 vite: 6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) ··· 4660 4665 validate-npm-package-name: 5.0.1 4661 4666 yaml: 2.8.2 4662 4667 yargs: 17.7.2 4663 - zod: 4.3.5 4668 + zod: 4.3.6 4664 4669 4665 4670 '@netlify/dev-utils@4.3.3': 4666 4671 dependencies: ··· 4680 4685 uuid: 13.0.0 4681 4686 write-file-atomic: 5.0.1 4682 4687 4683 - '@netlify/dev@4.8.7(@netlify/api@14.0.12)(rollup@4.55.1)': 4688 + '@netlify/dev@4.8.7(@netlify/api@14.0.12)(rollup@4.56.0)': 4684 4689 dependencies: 4685 4690 '@netlify/ai': 0.3.5(@netlify/api@14.0.12) 4686 4691 '@netlify/blobs': 10.5.0 4687 4692 '@netlify/config': 24.2.0 4688 4693 '@netlify/dev-utils': 4.3.3 4689 4694 '@netlify/edge-functions-dev': 1.0.7 4690 - '@netlify/functions-dev': 1.1.7(rollup@4.55.1) 4695 + '@netlify/functions-dev': 1.1.7(rollup@4.56.0) 4691 4696 '@netlify/headers': 2.1.3 4692 4697 '@netlify/images': 1.3.3(@netlify/blobs@10.5.0) 4693 4698 '@netlify/redirects': 3.1.4 ··· 4758 4763 dependencies: 4759 4764 '@netlify/types': 2.3.0 4760 4765 4761 - '@netlify/functions-dev@1.1.7(rollup@4.55.1)': 4766 + '@netlify/functions-dev@1.1.7(rollup@4.56.0)': 4762 4767 dependencies: 4763 4768 '@netlify/blobs': 10.5.0 4764 4769 '@netlify/dev-utils': 4.3.3 4765 4770 '@netlify/functions': 5.1.2 4766 - '@netlify/zip-it-and-ship-it': 14.2.0(rollup@4.55.1) 4771 + '@netlify/zip-it-and-ship-it': 14.2.0(rollup@4.56.0) 4767 4772 cron-parser: 4.9.0 4768 4773 decache: 4.6.2 4769 4774 extract-zip: 2.0.1 ··· 4867 4872 4868 4873 '@netlify/types@2.3.0': {} 4869 4874 4870 - '@netlify/vite-plugin@2.7.19(@netlify/api@14.0.12)(rollup@4.55.1)(vite@6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2))': 4875 + '@netlify/vite-plugin@2.7.19(@netlify/api@14.0.12)(rollup@4.56.0)(vite@6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2))': 4871 4876 dependencies: 4872 - '@netlify/dev': 4.8.7(@netlify/api@14.0.12)(rollup@4.55.1) 4877 + '@netlify/dev': 4.8.7(@netlify/api@14.0.12)(rollup@4.56.0) 4873 4878 '@netlify/dev-utils': 4.3.3 4874 4879 dedent: 1.7.1 4875 4880 vite: 6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) ··· 4900 4905 - supports-color 4901 4906 - uploadthing 4902 4907 4903 - '@netlify/zip-it-and-ship-it@14.2.0(rollup@4.55.1)': 4908 + '@netlify/zip-it-and-ship-it@14.2.0(rollup@4.56.0)': 4904 4909 dependencies: 4905 4910 '@babel/parser': 7.28.6 4906 4911 '@babel/types': 7.28.6 4907 4912 '@netlify/binary-info': 1.0.0 4908 4913 '@netlify/serverless-functions-api': 2.8.3 4909 - '@vercel/nft': 0.29.4(rollup@4.55.1) 4914 + '@vercel/nft': 0.29.4(rollup@4.56.0) 4910 4915 archiver: 7.0.1 4911 4916 common-path-prefix: 3.0.0 4912 4917 copy-file: 11.1.0 ··· 5084 5089 5085 5090 '@pkgr/core@0.2.9': {} 5086 5091 5087 - '@playform/inline@0.1.2(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 5092 + '@playform/inline@0.1.2(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 5088 5093 dependencies: 5089 5094 '@playform/pipe': 0.1.3 5090 - astro: 5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 5095 + astro: 5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 5091 5096 beasties: 0.2.0 5092 5097 deepmerge-ts: 7.1.5 5093 5098 transitivePeerDependencies: ··· 5131 5136 deepmerge-ts: 7.1.5 5132 5137 fast-glob: 3.3.3 5133 5138 5134 - '@rollup/pluginutils@5.3.0(rollup@4.55.1)': 5139 + '@rollup/pluginutils@5.3.0(rollup@4.56.0)': 5135 5140 dependencies: 5136 5141 '@types/estree': 1.0.8 5137 5142 estree-walker: 2.0.2 5138 5143 picomatch: 4.0.3 5139 5144 optionalDependencies: 5140 - rollup: 4.55.1 5145 + rollup: 4.56.0 5141 5146 5142 - '@rollup/rollup-android-arm-eabi@4.55.1': 5147 + '@rollup/rollup-android-arm-eabi@4.56.0': 5143 5148 optional: true 5144 5149 5145 - '@rollup/rollup-android-arm64@4.55.1': 5150 + '@rollup/rollup-android-arm64@4.56.0': 5146 5151 optional: true 5147 5152 5148 - '@rollup/rollup-darwin-arm64@4.55.1': 5153 + '@rollup/rollup-darwin-arm64@4.56.0': 5149 5154 optional: true 5150 5155 5151 - '@rollup/rollup-darwin-x64@4.55.1': 5156 + '@rollup/rollup-darwin-x64@4.56.0': 5152 5157 optional: true 5153 5158 5154 - '@rollup/rollup-freebsd-arm64@4.55.1': 5159 + '@rollup/rollup-freebsd-arm64@4.56.0': 5155 5160 optional: true 5156 5161 5157 - '@rollup/rollup-freebsd-x64@4.55.1': 5162 + '@rollup/rollup-freebsd-x64@4.56.0': 5158 5163 optional: true 5159 5164 5160 - '@rollup/rollup-linux-arm-gnueabihf@4.55.1': 5165 + '@rollup/rollup-linux-arm-gnueabihf@4.56.0': 5161 5166 optional: true 5162 5167 5163 - '@rollup/rollup-linux-arm-musleabihf@4.55.1': 5168 + '@rollup/rollup-linux-arm-musleabihf@4.56.0': 5164 5169 optional: true 5165 5170 5166 - '@rollup/rollup-linux-arm64-gnu@4.55.1': 5171 + '@rollup/rollup-linux-arm64-gnu@4.56.0': 5167 5172 optional: true 5168 5173 5169 - '@rollup/rollup-linux-arm64-musl@4.55.1': 5174 + '@rollup/rollup-linux-arm64-musl@4.56.0': 5170 5175 optional: true 5171 5176 5172 - '@rollup/rollup-linux-loong64-gnu@4.55.1': 5177 + '@rollup/rollup-linux-loong64-gnu@4.56.0': 5173 5178 optional: true 5174 5179 5175 - '@rollup/rollup-linux-loong64-musl@4.55.1': 5180 + '@rollup/rollup-linux-loong64-musl@4.56.0': 5176 5181 optional: true 5177 5182 5178 - '@rollup/rollup-linux-ppc64-gnu@4.55.1': 5183 + '@rollup/rollup-linux-ppc64-gnu@4.56.0': 5179 5184 optional: true 5180 5185 5181 - '@rollup/rollup-linux-ppc64-musl@4.55.1': 5186 + '@rollup/rollup-linux-ppc64-musl@4.56.0': 5182 5187 optional: true 5183 5188 5184 - '@rollup/rollup-linux-riscv64-gnu@4.55.1': 5189 + '@rollup/rollup-linux-riscv64-gnu@4.56.0': 5185 5190 optional: true 5186 5191 5187 - '@rollup/rollup-linux-riscv64-musl@4.55.1': 5192 + '@rollup/rollup-linux-riscv64-musl@4.56.0': 5188 5193 optional: true 5189 5194 5190 - '@rollup/rollup-linux-s390x-gnu@4.55.1': 5195 + '@rollup/rollup-linux-s390x-gnu@4.56.0': 5191 5196 optional: true 5192 5197 5193 - '@rollup/rollup-linux-x64-gnu@4.55.1': 5198 + '@rollup/rollup-linux-x64-gnu@4.56.0': 5194 5199 optional: true 5195 5200 5196 - '@rollup/rollup-linux-x64-musl@4.55.1': 5201 + '@rollup/rollup-linux-x64-musl@4.56.0': 5197 5202 optional: true 5198 5203 5199 - '@rollup/rollup-openbsd-x64@4.55.1': 5204 + '@rollup/rollup-openbsd-x64@4.56.0': 5200 5205 optional: true 5201 5206 5202 - '@rollup/rollup-openharmony-arm64@4.55.1': 5207 + '@rollup/rollup-openharmony-arm64@4.56.0': 5203 5208 optional: true 5204 5209 5205 - '@rollup/rollup-win32-arm64-msvc@4.55.1': 5210 + '@rollup/rollup-win32-arm64-msvc@4.56.0': 5206 5211 optional: true 5207 5212 5208 - '@rollup/rollup-win32-ia32-msvc@4.55.1': 5213 + '@rollup/rollup-win32-ia32-msvc@4.56.0': 5209 5214 optional: true 5210 5215 5211 - '@rollup/rollup-win32-x64-gnu@4.55.1': 5216 + '@rollup/rollup-win32-x64-gnu@4.56.0': 5212 5217 optional: true 5213 5218 5214 - '@rollup/rollup-win32-x64-msvc@4.55.1': 5219 + '@rollup/rollup-win32-x64-msvc@4.56.0': 5215 5220 optional: true 5216 5221 5217 5222 '@shikijs/core@3.21.0': ··· 5420 5425 5421 5426 '@ungap/structured-clone@1.3.0': {} 5422 5427 5423 - '@vercel/nft@0.29.4(rollup@4.55.1)': 5428 + '@vercel/nft@0.29.4(rollup@4.56.0)': 5424 5429 dependencies: 5425 5430 '@mapbox/node-pre-gyp': 2.0.3 5426 - '@rollup/pluginutils': 5.3.0(rollup@4.55.1) 5431 + '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 5427 5432 acorn: 8.15.0 5428 5433 acorn-import-attributes: 1.9.5(acorn@8.15.0) 5429 5434 async-sema: 3.1.1 ··· 5439 5444 - rollup 5440 5445 - supports-color 5441 5446 5442 - '@vercel/nft@0.30.4(rollup@4.55.1)': 5447 + '@vercel/nft@0.30.4(rollup@4.56.0)': 5443 5448 dependencies: 5444 5449 '@mapbox/node-pre-gyp': 2.0.3 5445 - '@rollup/pluginutils': 5.3.0(rollup@4.55.1) 5450 + '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 5446 5451 acorn: 8.15.0 5447 5452 acorn-import-attributes: 1.9.5(acorn@8.15.0) 5448 5453 async-sema: 3.1.1 ··· 5462 5467 dependencies: 5463 5468 '@babel/parser': 7.28.6 5464 5469 '@vue/shared': 3.5.26 5465 - entities: 7.0.0 5470 + entities: 7.0.1 5466 5471 estree-walker: 2.0.2 5467 5472 source-map-js: 1.2.1 5468 5473 ··· 5630 5635 transitivePeerDependencies: 5631 5636 - supports-color 5632 5637 5633 - astro-og-canvas@0.10.0(astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)): 5638 + astro-og-canvas@0.10.0(astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)): 5634 5639 dependencies: 5635 - astro: 5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 5640 + astro: 5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 5636 5641 canvaskit-wasm: 0.40.0 5637 5642 deterministic-object-hash: 2.0.2 5638 5643 entities: 7.0.0 5639 5644 5640 - astro@5.16.11(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.55.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 5645 + astro@5.16.15(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.56.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 5641 5646 dependencies: 5642 5647 '@astrojs/compiler': 2.13.0 5643 5648 '@astrojs/internal-helpers': 0.7.5 ··· 5645 5650 '@astrojs/telemetry': 3.3.0 5646 5651 '@capsizecss/unpack': 4.0.0 5647 5652 '@oslojs/encoding': 1.1.0 5648 - '@rollup/pluginutils': 5.3.0(rollup@4.55.1) 5653 + '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 5649 5654 acorn: 8.15.0 5650 5655 aria-query: 5.3.2 5651 5656 axobject-query: 4.1.0 ··· 6153 6158 6154 6159 entities@7.0.0: {} 6155 6160 6161 + entities@7.0.1: {} 6162 + 6156 6163 env-paths@3.0.0: {} 6157 6164 6158 6165 es-module-lexer@1.7.0: {} ··· 6375 6382 6376 6383 event-target-shim@5.0.1: {} 6377 6384 6378 - eventemitter3@5.0.1: {} 6385 + eventemitter3@5.0.4: {} 6379 6386 6380 6387 events-universal@1.0.1: 6381 6388 dependencies: ··· 7059 7066 7060 7067 lru-cache@10.4.3: {} 7061 7068 7062 - lru-cache@11.2.4: {} 7069 + lru-cache@11.2.5: {} 7063 7070 7064 7071 luxon@3.7.2: {} 7065 7072 ··· 7768 7775 7769 7776 p-queue@8.1.1: 7770 7777 dependencies: 7771 - eventemitter3: 5.0.1 7778 + eventemitter3: 5.0.4 7772 7779 p-timeout: 6.1.4 7773 7780 7774 7781 p-retry@6.2.1: ··· 8205 8212 8206 8213 reusify@1.1.0: {} 8207 8214 8208 - rollup@4.55.1: 8215 + rollup@4.56.0: 8209 8216 dependencies: 8210 8217 '@types/estree': 1.0.8 8211 8218 optionalDependencies: 8212 - '@rollup/rollup-android-arm-eabi': 4.55.1 8213 - '@rollup/rollup-android-arm64': 4.55.1 8214 - '@rollup/rollup-darwin-arm64': 4.55.1 8215 - '@rollup/rollup-darwin-x64': 4.55.1 8216 - '@rollup/rollup-freebsd-arm64': 4.55.1 8217 - '@rollup/rollup-freebsd-x64': 4.55.1 8218 - '@rollup/rollup-linux-arm-gnueabihf': 4.55.1 8219 - '@rollup/rollup-linux-arm-musleabihf': 4.55.1 8220 - '@rollup/rollup-linux-arm64-gnu': 4.55.1 8221 - '@rollup/rollup-linux-arm64-musl': 4.55.1 8222 - '@rollup/rollup-linux-loong64-gnu': 4.55.1 8223 - '@rollup/rollup-linux-loong64-musl': 4.55.1 8224 - '@rollup/rollup-linux-ppc64-gnu': 4.55.1 8225 - '@rollup/rollup-linux-ppc64-musl': 4.55.1 8226 - '@rollup/rollup-linux-riscv64-gnu': 4.55.1 8227 - '@rollup/rollup-linux-riscv64-musl': 4.55.1 8228 - '@rollup/rollup-linux-s390x-gnu': 4.55.1 8229 - '@rollup/rollup-linux-x64-gnu': 4.55.1 8230 - '@rollup/rollup-linux-x64-musl': 4.55.1 8231 - '@rollup/rollup-openbsd-x64': 4.55.1 8232 - '@rollup/rollup-openharmony-arm64': 4.55.1 8233 - '@rollup/rollup-win32-arm64-msvc': 4.55.1 8234 - '@rollup/rollup-win32-ia32-msvc': 4.55.1 8235 - '@rollup/rollup-win32-x64-gnu': 4.55.1 8236 - '@rollup/rollup-win32-x64-msvc': 4.55.1 8219 + '@rollup/rollup-android-arm-eabi': 4.56.0 8220 + '@rollup/rollup-android-arm64': 4.56.0 8221 + '@rollup/rollup-darwin-arm64': 4.56.0 8222 + '@rollup/rollup-darwin-x64': 4.56.0 8223 + '@rollup/rollup-freebsd-arm64': 4.56.0 8224 + '@rollup/rollup-freebsd-x64': 4.56.0 8225 + '@rollup/rollup-linux-arm-gnueabihf': 4.56.0 8226 + '@rollup/rollup-linux-arm-musleabihf': 4.56.0 8227 + '@rollup/rollup-linux-arm64-gnu': 4.56.0 8228 + '@rollup/rollup-linux-arm64-musl': 4.56.0 8229 + '@rollup/rollup-linux-loong64-gnu': 4.56.0 8230 + '@rollup/rollup-linux-loong64-musl': 4.56.0 8231 + '@rollup/rollup-linux-ppc64-gnu': 4.56.0 8232 + '@rollup/rollup-linux-ppc64-musl': 4.56.0 8233 + '@rollup/rollup-linux-riscv64-gnu': 4.56.0 8234 + '@rollup/rollup-linux-riscv64-musl': 4.56.0 8235 + '@rollup/rollup-linux-s390x-gnu': 4.56.0 8236 + '@rollup/rollup-linux-x64-gnu': 4.56.0 8237 + '@rollup/rollup-linux-x64-musl': 4.56.0 8238 + '@rollup/rollup-openbsd-x64': 4.56.0 8239 + '@rollup/rollup-openharmony-arm64': 4.56.0 8240 + '@rollup/rollup-win32-arm64-msvc': 4.56.0 8241 + '@rollup/rollup-win32-ia32-msvc': 4.56.0 8242 + '@rollup/rollup-win32-x64-gnu': 4.56.0 8243 + '@rollup/rollup-win32-x64-msvc': 4.56.0 8237 8244 fsevents: 2.3.3 8238 8245 8239 8246 run-parallel@1.2.0: ··· 8630 8637 chokidar: 5.0.0 8631 8638 destr: 2.0.5 8632 8639 h3: 1.15.5 8633 - lru-cache: 11.2.4 8640 + lru-cache: 11.2.5 8634 8641 node-fetch-native: 1.6.7 8635 8642 ofetch: 1.5.1 8636 8643 ufo: 1.6.3 ··· 8687 8694 fdir: 6.5.0(picomatch@4.0.3) 8688 8695 picomatch: 4.0.3 8689 8696 postcss: 8.5.6 8690 - rollup: 4.55.1 8697 + rollup: 4.56.0 8691 8698 tinyglobby: 0.2.15 8692 8699 optionalDependencies: 8693 8700 '@types/node': 25.0.9 ··· 8829 8836 8830 8837 zod@3.25.76: {} 8831 8838 8832 - zod@4.3.5: {} 8839 + zod@4.3.6: {} 8833 8840 8834 8841 zwitch@2.0.4: {}