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.13.10 to 5.14.1

Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.13.10 to 5.14.1.
<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.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/withastro/astro/pull/14440">#14440</a> <a href="https://github.com/withastro/astro/commit/a3e16ab6dd0bef9ab6259f23bfeebed747e27497"><code>a3e16ab</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Fixes a case where the URLs generated by the experimental Fonts API would be incorrect in dev</li>
</ul>
<h2>astro@5.14.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/13520">#13520</a> <a href="https://github.com/withastro/astro/commit/a31edb8daad8632bacd1861adf6ac720695f7173"><code>a31edb8</code></a> Thanks <a href="https://github.com/openscript"><code>@​openscript</code></a>! - Adds a new property <code>routePattern</code> available to <code>GetStaticPathsOptions</code></p>
<p>This provides the original, dynamic segment definition in a routing file path (e.g. <code>/[...locale]/[files]/[slug]</code>) from the Astro render context that would not otherwise be available within the scope of <code>getStaticPaths()</code>. This can be useful to calculate the <code>params</code> and <code>props</code> for each page route.</p>
<p>For example, you can now localize your route segments and return an array of static paths by passing <code>routePattern</code> to a custom <code>getLocalizedData()</code> helper function. The <code>params</code> object will be set with explicit values for each route segment (e.g. <code>locale</code>, <code>files</code>, and <code>slug)</code>. Then, these values will be used to generate the routes and can be used in your page template via <code>Astro.params</code>.</p>
<pre lang="astro"><code>// src/pages/[...locale]/[files]/[slug].astro
<p>import { getLocalizedData } from &quot;../../../utils/i18n&quot;; export async function getStaticPaths({ routePattern
}) { const response = await fetch('...'); const data = await response.json(); console.log(routePattern);
// [...locale]/[files]/[slug] // Call your custom helper with <code>routePattern</code> to generate the static
paths return data.flatMap((file) =&gt; getLocalizedData(file, routePattern)); } const { locale, files,
slug } = Astro.params;
</code></pre></p>
<p>For more information about this advanced routing pattern, see Astro's <a href="https://docs.astro.build/en/reference/routing-reference/#routepattern">routing reference</a>.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/13651">#13651</a> <a href="https://github.com/withastro/astro/commit/dcfbd8c9d5dc798d1bcb9b36531c2eded301050d"><code>dcfbd8c</code></a> Thanks <a href="https://github.com/ADTC"><code>@​ADTC</code></a>! - Adds a new <code>SvgComponent</code> type</p>
<p>You can now more easily enforce type safety for your <code>.svg</code> assets by directly importing <code>SVGComponent</code> from <code>astro/types</code>:</p>
<pre lang="astro"><code>---
// src/components/Logo.astro
import type { SvgComponent } from 'astro/types';
import HomeIcon from './Home.svg';
interface Link {
url: string;
text: string;
icon: SvgComponent;
}
const links: Link[] = [
{
url: '/',
text: 'Home',
icon: HomeIcon,
},
];
---
</code></pre>
</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.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/withastro/astro/pull/14440">#14440</a> <a href="https://github.com/withastro/astro/commit/a3e16ab6dd0bef9ab6259f23bfeebed747e27497"><code>a3e16ab</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@​florian-lefebvre</code></a>! - Fixes a case where the URLs generated by the experimental Fonts API would be incorrect in dev</li>
</ul>
<h2>5.14.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/13520">#13520</a> <a href="https://github.com/withastro/astro/commit/a31edb8daad8632bacd1861adf6ac720695f7173"><code>a31edb8</code></a> Thanks <a href="https://github.com/openscript"><code>@​openscript</code></a>! - Adds a new property <code>routePattern</code> available to <code>GetStaticPathsOptions</code></p>
<p>This provides the original, dynamic segment definition in a routing file path (e.g. <code>/[...locale]/[files]/[slug]</code>) from the Astro render context that would not otherwise be available within the scope of <code>getStaticPaths()</code>. This can be useful to calculate the <code>params</code> and <code>props</code> for each page route.</p>
<p>For example, you can now localize your route segments and return an array of static paths by passing <code>routePattern</code> to a custom <code>getLocalizedData()</code> helper function. The <code>params</code> object will be set with explicit values for each route segment (e.g. <code>locale</code>, <code>files</code>, and <code>slug)</code>. Then, these values will be used to generate the routes and can be used in your page template via <code>Astro.params</code>.</p>
<pre lang="astro"><code>---
// src/pages/[...locale]/[files]/[slug].astro
import { getLocalizedData } from '../../../utils/i18n';
<p>export async function getStaticPaths({ routePattern }) {
const response = await fetch('...');
const data = await response.json();</p>
<p>console.log(routePattern); // [...locale]/[files]/[slug]</p>
<p>// Call your custom helper with <code>routePattern</code> to generate the static paths
return data.flatMap((file) =&gt; getLocalizedData(file, routePattern));
}</p>
<h2>const { locale, files, slug } = Astro.params;</h2>
<p></code></pre></p>
<p>For more information about this advanced routing pattern, see Astro's <a href="https://docs.astro.build/en/reference/routing-reference/#routepattern">routing reference</a>.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/13651">#13651</a> <a href="https://github.com/withastro/astro/commit/dcfbd8c9d5dc798d1bcb9b36531c2eded301050d"><code>dcfbd8c</code></a> Thanks <a href="https://github.com/ADTC"><code>@​ADTC</code></a>! - Adds a new <code>SvgComponent</code> type</p>
<p>You can now more easily enforce type safety for your <code>.svg</code> assets by directly importing <code>SVGComponent</code> from <code>astro/types</code>:</p>
<pre lang="astro"><code>---
// src/components/Logo.astro
import type { SvgComponent } from 'astro/types';
import HomeIcon from './Home.svg';
interface Link {
url: string;
text: string;
icon: SvgComponent;
</code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/withastro/astro/commit/a759c1f84d11441420876a75481ce17dac773d76"><code>a759c1f</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14442">#14442</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/1f7ec7dcf491a489ce7ad7a9f5ce768d96e7a96f"><code>1f7ec7d</code></a> fix: changelog code snippet (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14443">#14443</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/a3e16ab6dd0bef9ab6259f23bfeebed747e27497"><code>a3e16ab</code></a> fix(astro): invalid font url (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14440">#14440</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/47df8f2f2e57bb89c9570594039a8759e4f1a590"><code>47df8f2</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/bdcd9e0eddee7deee5710f60b1163e122694cd92"><code>bdcd9e0</code></a> docs: Clarification in ResponseSentError cause (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14391">#14391</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/b0cffe70e6981863b40741b478cd381ebe917e30"><code>b0cffe7</code></a> Fix name of new flag in changelog (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14437">#14437</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/731c07d9be5cb2feb29c6d218b16feb7c11f03c4"><code>731c07d</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14434">#14434</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/dcfbd8c9d5dc798d1bcb9b36531c2eded301050d"><code>dcfbd8c</code></a> feat(types): add SvgComponent type and update SVG module declaration (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13651">#13651</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/a98ce3ccd7d6ecd723733f2bc8c7c5a83884eab4"><code>a98ce3c</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/a31edb8daad8632bacd1861adf6ac720695f7173"><code>a31edb8</code></a> feat(core): add <code>routePattern</code> to <code>GetStaticPathsOptions</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13520">#13520</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.14.1/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.13.10&new-version=5.14.1)](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
f123aec7 5615bcd0

+128 -128
+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.13.10", 25 + "astro": "^5.14.1", 26 26 "astro-og-canvas": "^0.7.0", 27 27 "canvaskit-wasm": "^0.40.0", 28 28 "feed": "^5.1.0",
+127 -127
pnpm-lock.yaml
··· 10 10 dependencies: 11 11 '@astrojs/mdx': 12 12 specifier: ^4.3.6 13 - version: 4.3.6(astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)) 13 + version: 4.3.6(astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)) 14 14 '@astrojs/netlify': 15 15 specifier: ^6.5.11 16 - version: 6.5.11(@types/node@24.5.2)(astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1))(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(yaml@2.8.1) 16 + version: 6.5.11(@types/node@24.5.2)(astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1))(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(yaml@2.8.1) 17 17 '@astrojs/rss': 18 18 specifier: ^4.0.12 19 19 version: 4.0.12 ··· 22 22 version: 3.6.0 23 23 '@playform/inline': 24 24 specifier: ^0.1.2 25 - version: 0.1.2(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 25 + version: 0.1.2(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 26 26 astro: 27 - specifier: ^5.13.10 28 - version: 5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 27 + specifier: ^5.14.1 28 + version: 5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 29 29 astro-og-canvas: 30 30 specifier: ^0.7.0 31 - version: 0.7.0(astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)) 31 + version: 0.7.0(astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)) 32 32 canvaskit-wasm: 33 33 specifier: ^0.40.0 34 34 version: 0.40.0 ··· 948 948 rollup: 949 949 optional: true 950 950 951 - '@rollup/rollup-android-arm-eabi@4.52.0': 952 - resolution: {integrity: sha512-VxDYCDqOaR7NXzAtvRx7G1u54d2kEHopb28YH/pKzY6y0qmogP3gG7CSiWsq9WvDFxOQMpNEyjVAHZFXfH3o/A==} 951 + '@rollup/rollup-android-arm-eabi@4.52.3': 952 + resolution: {integrity: sha512-h6cqHGZ6VdnwliFG1NXvMPTy/9PS3h8oLh7ImwR+kl+oYnQizgjxsONmmPSb2C66RksfkfIxEVtDSEcJiO0tqw==} 953 953 cpu: [arm] 954 954 os: [android] 955 955 956 - '@rollup/rollup-android-arm64@4.52.0': 957 - resolution: {integrity: sha512-pqDirm8koABIKvzL59YI9W9DWbRlTX7RWhN+auR8HXJxo89m4mjqbah7nJZjeKNTNYopqL+yGg+0mhCpf3xZtQ==} 956 + '@rollup/rollup-android-arm64@4.52.3': 957 + resolution: {integrity: sha512-wd+u7SLT/u6knklV/ifG7gr5Qy4GUbH2hMWcDauPFJzmCZUAJ8L2bTkVXC2niOIxp8lk3iH/QX8kSrUxVZrOVw==} 958 958 cpu: [arm64] 959 959 os: [android] 960 960 961 - '@rollup/rollup-darwin-arm64@4.52.0': 962 - resolution: {integrity: sha512-YCdWlY/8ltN6H78HnMsRHYlPiKvqKagBP1r+D7SSylxX+HnsgXGCmLiV3Y4nSyY9hW8qr8U9LDUx/Lo7M6MfmQ==} 961 + '@rollup/rollup-darwin-arm64@4.52.3': 962 + resolution: {integrity: sha512-lj9ViATR1SsqycwFkJCtYfQTheBdvlWJqzqxwc9f2qrcVrQaF/gCuBRTiTolkRWS6KvNxSk4KHZWG7tDktLgjg==} 963 963 cpu: [arm64] 964 964 os: [darwin] 965 965 966 - '@rollup/rollup-darwin-x64@4.52.0': 967 - resolution: {integrity: sha512-z4nw6y1j+OOSGzuVbSWdIp1IUks9qNw4dc7z7lWuWDKojY38VMWBlEN7F9jk5UXOkUcp97vA1N213DF+Lz8BRg==} 966 + '@rollup/rollup-darwin-x64@4.52.3': 967 + resolution: {integrity: sha512-+Dyo7O1KUmIsbzx1l+4V4tvEVnVQqMOIYtrxK7ncLSknl1xnMHLgn7gddJVrYPNZfEB8CIi3hK8gq8bDhb3h5A==} 968 968 cpu: [x64] 969 969 os: [darwin] 970 970 971 - '@rollup/rollup-freebsd-arm64@4.52.0': 972 - resolution: {integrity: sha512-Q/dv9Yvyr5rKlK8WQJZVrp5g2SOYeZUs9u/t2f9cQ2E0gJjYB/BWoedXfUT0EcDJefi2zzVfhcOj8drWCzTviw==} 971 + '@rollup/rollup-freebsd-arm64@4.52.3': 972 + resolution: {integrity: sha512-u9Xg2FavYbD30g3DSfNhxgNrxhi6xVG4Y6i9Ur1C7xUuGDW3banRbXj+qgnIrwRN4KeJ396jchwy9bCIzbyBEQ==} 973 973 cpu: [arm64] 974 974 os: [freebsd] 975 975 976 - '@rollup/rollup-freebsd-x64@4.52.0': 977 - resolution: {integrity: sha512-kdBsLs4Uile/fbjZVvCRcKB4q64R+1mUq0Yd7oU1CMm1Av336ajIFqNFovByipciuUQjBCPMxwJhCgfG2re3rg==} 976 + '@rollup/rollup-freebsd-x64@4.52.3': 977 + resolution: {integrity: sha512-5M8kyi/OX96wtD5qJR89a/3x5x8x5inXBZO04JWhkQb2JWavOWfjgkdvUqibGJeNNaz1/Z1PPza5/tAPXICI6A==} 978 978 cpu: [x64] 979 979 os: [freebsd] 980 980 981 - '@rollup/rollup-linux-arm-gnueabihf@4.52.0': 982 - resolution: {integrity: sha512-aL6hRwu0k7MTUESgkg7QHY6CoqPgr6gdQXRJI1/VbFlUMwsSzPGSR7sG5d+MCbYnJmJwThc2ol3nixj1fvI/zQ==} 981 + '@rollup/rollup-linux-arm-gnueabihf@4.52.3': 982 + resolution: {integrity: sha512-IoerZJ4l1wRMopEHRKOO16e04iXRDyZFZnNZKrWeNquh5d6bucjezgd+OxG03mOMTnS1x7hilzb3uURPkJ0OfA==} 983 983 cpu: [arm] 984 984 os: [linux] 985 985 986 - '@rollup/rollup-linux-arm-musleabihf@4.52.0': 987 - resolution: {integrity: sha512-BTs0M5s1EJejgIBJhCeiFo7GZZ2IXWkFGcyZhxX4+8usnIo5Mti57108vjXFIQmmJaRyDwmV59Tw64Ap1dkwMw==} 986 + '@rollup/rollup-linux-arm-musleabihf@4.52.3': 987 + resolution: {integrity: sha512-ZYdtqgHTDfvrJHSh3W22TvjWxwOgc3ThK/XjgcNGP2DIwFIPeAPNsQxrJO5XqleSlgDux2VAoWQ5iJrtaC1TbA==} 988 988 cpu: [arm] 989 989 os: [linux] 990 990 991 - '@rollup/rollup-linux-arm64-gnu@4.52.0': 992 - resolution: {integrity: sha512-uj672IVOU9m08DBGvoPKPi/J8jlVgjh12C9GmjjBxCTQc3XtVmRkRKyeHSmIKQpvJ7fIm1EJieBUcnGSzDVFyw==} 991 + '@rollup/rollup-linux-arm64-gnu@4.52.3': 992 + resolution: {integrity: sha512-NcViG7A0YtuFDA6xWSgmFb6iPFzHlf5vcqb2p0lGEbT+gjrEEz8nC/EeDHvx6mnGXnGCC1SeVV+8u+smj0CeGQ==} 993 993 cpu: [arm64] 994 994 os: [linux] 995 995 996 - '@rollup/rollup-linux-arm64-musl@4.52.0': 997 - resolution: {integrity: sha512-/+IVbeDMDCtB/HP/wiWsSzduD10SEGzIZX2945KSgZRNi4TSkjHqRJtNTVtVb8IRwhJ65ssI56krlLik+zFWkw==} 996 + '@rollup/rollup-linux-arm64-musl@4.52.3': 997 + resolution: {integrity: sha512-d3pY7LWno6SYNXRm6Ebsq0DJGoiLXTb83AIPCXl9fmtIQs/rXoS8SJxxUNtFbJ5MiOvs+7y34np77+9l4nfFMw==} 998 998 cpu: [arm64] 999 999 os: [linux] 1000 1000 1001 - '@rollup/rollup-linux-loong64-gnu@4.52.0': 1002 - resolution: {integrity: sha512-U1vVzvSWtSMWKKrGoROPBXMh3Vwn93TA9V35PldokHGqiUbF6erSzox/5qrSMKp6SzakvyjcPiVF8yB1xKr9Pg==} 1001 + '@rollup/rollup-linux-loong64-gnu@4.52.3': 1002 + resolution: {integrity: sha512-3y5GA0JkBuirLqmjwAKwB0keDlI6JfGYduMlJD/Rl7fvb4Ni8iKdQs1eiunMZJhwDWdCvrcqXRY++VEBbvk6Eg==} 1003 1003 cpu: [loong64] 1004 1004 os: [linux] 1005 1005 1006 - '@rollup/rollup-linux-ppc64-gnu@4.52.0': 1007 - resolution: {integrity: sha512-X/4WfuBAdQRH8cK3DYl8zC00XEE6aM472W+QCycpQJeLWVnHfkv7RyBFVaTqNUMsTgIX8ihMjCvFF9OUgeABzw==} 1006 + '@rollup/rollup-linux-ppc64-gnu@4.52.3': 1007 + resolution: {integrity: sha512-AUUH65a0p3Q0Yfm5oD2KVgzTKgwPyp9DSXc3UA7DtxhEb/WSPfbG4wqXeSN62OG5gSo18em4xv6dbfcUGXcagw==} 1008 1008 cpu: [ppc64] 1009 1009 os: [linux] 1010 1010 1011 - '@rollup/rollup-linux-riscv64-gnu@4.52.0': 1012 - resolution: {integrity: sha512-xIRYc58HfWDBZoLmWfWXg2Sq8VCa2iJ32B7mqfWnkx5mekekl0tMe7FHpY8I72RXEcUkaWawRvl3qA55og+cwQ==} 1011 + '@rollup/rollup-linux-riscv64-gnu@4.52.3': 1012 + resolution: {integrity: sha512-1makPhFFVBqZE+XFg3Dkq+IkQ7JvmUrwwqaYBL2CE+ZpxPaqkGaiWFEWVGyvTwZace6WLJHwjVh/+CXbKDGPmg==} 1013 1013 cpu: [riscv64] 1014 1014 os: [linux] 1015 1015 1016 - '@rollup/rollup-linux-riscv64-musl@4.52.0': 1017 - resolution: {integrity: sha512-mbsoUey05WJIOz8U1WzNdf+6UMYGwE3fZZnQqsM22FZ3wh1N887HT6jAOjXs6CNEK3Ntu2OBsyQDXfIjouI4dw==} 1016 + '@rollup/rollup-linux-riscv64-musl@4.52.3': 1017 + resolution: {integrity: sha512-OOFJa28dxfl8kLOPMUOQBCO6z3X2SAfzIE276fwT52uXDWUS178KWq0pL7d6p1kz7pkzA0yQwtqL0dEPoVcRWg==} 1018 1018 cpu: [riscv64] 1019 1019 os: [linux] 1020 1020 1021 - '@rollup/rollup-linux-s390x-gnu@4.52.0': 1022 - resolution: {integrity: sha512-qP6aP970bucEi5KKKR4AuPFd8aTx9EF6BvutvYxmZuWLJHmnq4LvBfp0U+yFDMGwJ+AIJEH5sIP+SNypauMWzg==} 1021 + '@rollup/rollup-linux-s390x-gnu@4.52.3': 1022 + resolution: {integrity: sha512-jMdsML2VI5l+V7cKfZx3ak+SLlJ8fKvLJ0Eoa4b9/vCUrzXKgoKxvHqvJ/mkWhFiyp88nCkM5S2v6nIwRtPcgg==} 1023 1023 cpu: [s390x] 1024 1024 os: [linux] 1025 1025 1026 - '@rollup/rollup-linux-x64-gnu@4.52.0': 1027 - resolution: {integrity: sha512-nmSVN+F2i1yKZ7rJNKO3G7ZzmxJgoQBQZ/6c4MuS553Grmr7WqR7LLDcYG53Z2m9409z3JLt4sCOhLdbKQ3HmA==} 1026 + '@rollup/rollup-linux-x64-gnu@4.52.3': 1027 + resolution: {integrity: sha512-tPgGd6bY2M2LJTA1uGq8fkSPK8ZLYjDjY+ZLK9WHncCnfIz29LIXIqUgzCR0hIefzy6Hpbe8Th5WOSwTM8E7LA==} 1028 1028 cpu: [x64] 1029 1029 os: [linux] 1030 1030 1031 - '@rollup/rollup-linux-x64-musl@4.52.0': 1032 - resolution: {integrity: sha512-2d0qRo33G6TfQVjaMR71P+yJVGODrt5V6+T0BDYH4EMfGgdC/2HWDVjSSFw888GSzAZUwuska3+zxNUCDco6rQ==} 1031 + '@rollup/rollup-linux-x64-musl@4.52.3': 1032 + resolution: {integrity: sha512-BCFkJjgk+WFzP+tcSMXq77ymAPIxsX9lFJWs+2JzuZTLtksJ2o5hvgTdIcZ5+oKzUDMwI0PfWzRBYAydAHF2Mw==} 1033 1033 cpu: [x64] 1034 1034 os: [linux] 1035 1035 1036 - '@rollup/rollup-openharmony-arm64@4.52.0': 1037 - resolution: {integrity: sha512-A1JalX4MOaFAAyGgpO7XP5khquv/7xKzLIyLmhNrbiCxWpMlnsTYr8dnsWM7sEeotNmxvSOEL7F65j0HXFcFsw==} 1036 + '@rollup/rollup-openharmony-arm64@4.52.3': 1037 + resolution: {integrity: sha512-KTD/EqjZF3yvRaWUJdD1cW+IQBk4fbQaHYJUmP8N4XoKFZilVL8cobFSTDnjTtxWJQ3JYaMgF4nObY/+nYkumA==} 1038 1038 cpu: [arm64] 1039 1039 os: [openharmony] 1040 1040 1041 - '@rollup/rollup-win32-arm64-msvc@4.52.0': 1042 - resolution: {integrity: sha512-YQugafP/rH0eOOHGjmNgDURrpYHrIX0yuojOI8bwCyXwxC9ZdTd3vYkmddPX0oHONLXu9Rb1dDmT0VNpjkzGGw==} 1041 + '@rollup/rollup-win32-arm64-msvc@4.52.3': 1042 + resolution: {integrity: sha512-+zteHZdoUYLkyYKObGHieibUFLbttX2r+58l27XZauq0tcWYYuKUwY2wjeCN9oK1Um2YgH2ibd6cnX/wFD7DuA==} 1043 1043 cpu: [arm64] 1044 1044 os: [win32] 1045 1045 1046 - '@rollup/rollup-win32-ia32-msvc@4.52.0': 1047 - resolution: {integrity: sha512-zYdUYhi3Qe2fndujBqL5FjAFzvNeLxtIqfzNEVKD1I7C37/chv1VxhscWSQHTNfjPCrBFQMnynwA3kpZpZ8w4A==} 1046 + '@rollup/rollup-win32-ia32-msvc@4.52.3': 1047 + resolution: {integrity: sha512-of1iHkTQSo3kr6dTIRX6t81uj/c/b15HXVsPcEElN5sS859qHrOepM5p9G41Hah+CTqSh2r8Bm56dL2z9UQQ7g==} 1048 1048 cpu: [ia32] 1049 1049 os: [win32] 1050 1050 1051 - '@rollup/rollup-win32-x64-gnu@4.52.0': 1052 - resolution: {integrity: sha512-fGk03kQylNaCOQ96HDMeT7E2n91EqvCDd3RwvT5k+xNdFCeMGnj5b5hEgTGrQuyidqSsD3zJDQ21QIaxXqTBJw==} 1051 + '@rollup/rollup-win32-x64-gnu@4.52.3': 1052 + resolution: {integrity: sha512-s0hybmlHb56mWVZQj8ra9048/WZTPLILKxcvcq+8awSZmyiSUZjjem1AhU3Tf4ZKpYhK4mg36HtHDOe8QJS5PQ==} 1053 1053 cpu: [x64] 1054 1054 os: [win32] 1055 1055 1056 - '@rollup/rollup-win32-x64-msvc@4.52.0': 1057 - resolution: {integrity: sha512-6iKDCVSIUQ8jPMoIV0OytRKniaYyy5EbY/RRydmLW8ZR3cEBhxbWl5ro0rkUNe0ef6sScvhbY79HrjRm8i3vDQ==} 1056 + '@rollup/rollup-win32-x64-msvc@4.52.3': 1057 + resolution: {integrity: sha512-zGIbEVVXVtauFgl3MRwGWEN36P5ZGenHRMgNw88X5wEhEBpq0XrMEZwOn07+ICrwM17XO5xfMZqh0OldCH5VTA==} 1058 1058 cpu: [x64] 1059 1059 os: [win32] 1060 1060 ··· 1371 1371 peerDependencies: 1372 1372 astro: ^3.0.0 || ^4.0.0 || ^5.0.0 1373 1373 1374 - astro@5.13.10: 1375 - resolution: {integrity: sha512-PgIrIYvrR7fCoSPPt1sGlpoYK/FNil1BwKazND1DyaZC7SbWLi9hdIHM3ApdrL2SWK7oiADRPw7cTn80UyDWqA==} 1374 + astro@5.14.1: 1375 + resolution: {integrity: sha512-gPa8NY7/lP8j8g81iy8UwANF3+aukKRWS68IlthZQNgykpg80ne6lbHOp6FErYycxQ1TUhgEfkXVDQZAoJx8Bg==} 1376 1376 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 1377 1377 hasBin: true 1378 1378 ··· 3314 3314 resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3315 3315 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3316 3316 3317 - rollup@4.52.0: 3318 - resolution: {integrity: sha512-+IuescNkTJQgX7AkIDtITipZdIGcWF0pnVvZTWStiazUmcGA2ag8dfg0urest2XlXUi9kuhfQ+qmdc5Stc3z7g==} 3317 + rollup@4.52.3: 3318 + resolution: {integrity: sha512-RIDh866U8agLgiIcdpB+COKnlCreHJLfIhWC3LVflku5YHfpnsIKigRZeFfMfCc4dVcqNVfQQ5gO/afOck064A==} 3319 3319 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3320 3320 hasBin: true 3321 3321 ··· 3978 3978 transitivePeerDependencies: 3979 3979 - supports-color 3980 3980 3981 - '@astrojs/mdx@4.3.6(astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1))': 3981 + '@astrojs/mdx@4.3.6(astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1))': 3982 3982 dependencies: 3983 3983 '@astrojs/markdown-remark': 6.3.7 3984 3984 '@mdx-js/mdx': 3.1.1 3985 3985 acorn: 8.15.0 3986 - astro: 5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 3986 + astro: 5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 3987 3987 es-module-lexer: 1.7.0 3988 3988 estree-util-visit: 2.0.0 3989 3989 hast-util-to-html: 9.0.5 ··· 3997 3997 transitivePeerDependencies: 3998 3998 - supports-color 3999 3999 4000 - '@astrojs/netlify@6.5.11(@types/node@24.5.2)(astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1))(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(yaml@2.8.1)': 4000 + '@astrojs/netlify@6.5.11(@types/node@24.5.2)(astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1))(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(yaml@2.8.1)': 4001 4001 dependencies: 4002 4002 '@astrojs/internal-helpers': 0.7.3 4003 4003 '@astrojs/underscore-redirects': 1.0.0 4004 4004 '@netlify/blobs': 10.0.10 4005 - '@netlify/functions': 4.2.5(rollup@4.52.0) 4006 - '@netlify/vite-plugin': 2.5.10(rollup@4.52.0)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(tsx@4.20.5)(yaml@2.8.1)) 4007 - '@vercel/nft': 0.30.1(rollup@4.52.0) 4008 - astro: 5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 4005 + '@netlify/functions': 4.2.5(rollup@4.52.3) 4006 + '@netlify/vite-plugin': 2.5.10(rollup@4.52.3)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(tsx@4.20.5)(yaml@2.8.1)) 4007 + '@vercel/nft': 0.30.1(rollup@4.52.3) 4008 + astro: 5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 4009 4009 esbuild: 0.25.10 4010 4010 tinyglobby: 0.2.15 4011 4011 vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(tsx@4.20.5)(yaml@2.8.1) ··· 4558 4558 uuid: 11.1.0 4559 4559 write-file-atomic: 5.0.1 4560 4560 4561 - '@netlify/dev@4.5.10(rollup@4.52.0)': 4561 + '@netlify/dev@4.5.10(rollup@4.52.3)': 4562 4562 dependencies: 4563 4563 '@netlify/blobs': 10.0.10 4564 4564 '@netlify/config': 23.2.0 4565 4565 '@netlify/dev-utils': 4.1.3 4566 4566 '@netlify/edge-functions': 2.18.0 4567 - '@netlify/functions': 4.2.5(rollup@4.52.0) 4567 + '@netlify/functions': 4.2.5(rollup@4.52.3) 4568 4568 '@netlify/headers': 2.0.11 4569 4569 '@netlify/images': 1.2.7(@netlify/blobs@10.0.10) 4570 4570 '@netlify/redirects': 3.0.12 ··· 4629 4629 '@netlify/types': 2.0.3 4630 4630 get-port: 7.1.0 4631 4631 4632 - '@netlify/functions@4.2.5(rollup@4.52.0)': 4632 + '@netlify/functions@4.2.5(rollup@4.52.3)': 4633 4633 dependencies: 4634 4634 '@netlify/blobs': 10.0.10 4635 4635 '@netlify/dev-utils': 4.1.3 4636 4636 '@netlify/types': 2.0.3 4637 - '@netlify/zip-it-and-ship-it': 14.1.7(rollup@4.52.0) 4637 + '@netlify/zip-it-and-ship-it': 14.1.7(rollup@4.52.3) 4638 4638 cron-parser: 4.9.0 4639 4639 decache: 4.6.2 4640 4640 extract-zip: 2.0.1 ··· 4720 4720 4721 4721 '@netlify/types@2.0.3': {} 4722 4722 4723 - '@netlify/vite-plugin@2.5.10(rollup@4.52.0)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(tsx@4.20.5)(yaml@2.8.1))': 4723 + '@netlify/vite-plugin@2.5.10(rollup@4.52.3)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(tsx@4.20.5)(yaml@2.8.1))': 4724 4724 dependencies: 4725 - '@netlify/dev': 4.5.10(rollup@4.52.0) 4725 + '@netlify/dev': 4.5.10(rollup@4.52.3) 4726 4726 '@netlify/dev-utils': 4.1.3 4727 4727 vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(tsx@4.20.5)(yaml@2.8.1) 4728 4728 transitivePeerDependencies: ··· 4749 4749 - supports-color 4750 4750 - uploadthing 4751 4751 4752 - '@netlify/zip-it-and-ship-it@14.1.7(rollup@4.52.0)': 4752 + '@netlify/zip-it-and-ship-it@14.1.7(rollup@4.52.3)': 4753 4753 dependencies: 4754 4754 '@babel/parser': 7.28.4 4755 4755 '@babel/types': 7.28.1 4756 4756 '@netlify/binary-info': 1.0.0 4757 4757 '@netlify/serverless-functions-api': 2.5.0 4758 - '@vercel/nft': 0.29.4(rollup@4.52.0) 4758 + '@vercel/nft': 0.29.4(rollup@4.52.3) 4759 4759 archiver: 7.0.1 4760 4760 common-path-prefix: 3.0.0 4761 4761 copy-file: 11.1.0 ··· 4873 4873 4874 4874 '@pkgr/core@0.2.9': {} 4875 4875 4876 - '@playform/inline@0.1.2(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)': 4876 + '@playform/inline@0.1.2(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)': 4877 4877 dependencies: 4878 4878 '@playform/pipe': 0.1.3 4879 - astro: 5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 4879 + astro: 5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 4880 4880 beasties: 0.2.0 4881 4881 deepmerge-ts: 7.1.5 4882 4882 transitivePeerDependencies: ··· 4921 4921 deepmerge-ts: 7.1.5 4922 4922 fast-glob: 3.3.3 4923 4923 4924 - '@rollup/pluginutils@5.3.0(rollup@4.52.0)': 4924 + '@rollup/pluginutils@5.3.0(rollup@4.52.3)': 4925 4925 dependencies: 4926 4926 '@types/estree': 1.0.8 4927 4927 estree-walker: 2.0.2 4928 4928 picomatch: 4.0.3 4929 4929 optionalDependencies: 4930 - rollup: 4.52.0 4930 + rollup: 4.52.3 4931 4931 4932 - '@rollup/rollup-android-arm-eabi@4.52.0': 4932 + '@rollup/rollup-android-arm-eabi@4.52.3': 4933 4933 optional: true 4934 4934 4935 - '@rollup/rollup-android-arm64@4.52.0': 4935 + '@rollup/rollup-android-arm64@4.52.3': 4936 4936 optional: true 4937 4937 4938 - '@rollup/rollup-darwin-arm64@4.52.0': 4938 + '@rollup/rollup-darwin-arm64@4.52.3': 4939 4939 optional: true 4940 4940 4941 - '@rollup/rollup-darwin-x64@4.52.0': 4941 + '@rollup/rollup-darwin-x64@4.52.3': 4942 4942 optional: true 4943 4943 4944 - '@rollup/rollup-freebsd-arm64@4.52.0': 4944 + '@rollup/rollup-freebsd-arm64@4.52.3': 4945 4945 optional: true 4946 4946 4947 - '@rollup/rollup-freebsd-x64@4.52.0': 4947 + '@rollup/rollup-freebsd-x64@4.52.3': 4948 4948 optional: true 4949 4949 4950 - '@rollup/rollup-linux-arm-gnueabihf@4.52.0': 4950 + '@rollup/rollup-linux-arm-gnueabihf@4.52.3': 4951 4951 optional: true 4952 4952 4953 - '@rollup/rollup-linux-arm-musleabihf@4.52.0': 4953 + '@rollup/rollup-linux-arm-musleabihf@4.52.3': 4954 4954 optional: true 4955 4955 4956 - '@rollup/rollup-linux-arm64-gnu@4.52.0': 4956 + '@rollup/rollup-linux-arm64-gnu@4.52.3': 4957 4957 optional: true 4958 4958 4959 - '@rollup/rollup-linux-arm64-musl@4.52.0': 4959 + '@rollup/rollup-linux-arm64-musl@4.52.3': 4960 4960 optional: true 4961 4961 4962 - '@rollup/rollup-linux-loong64-gnu@4.52.0': 4962 + '@rollup/rollup-linux-loong64-gnu@4.52.3': 4963 4963 optional: true 4964 4964 4965 - '@rollup/rollup-linux-ppc64-gnu@4.52.0': 4965 + '@rollup/rollup-linux-ppc64-gnu@4.52.3': 4966 4966 optional: true 4967 4967 4968 - '@rollup/rollup-linux-riscv64-gnu@4.52.0': 4968 + '@rollup/rollup-linux-riscv64-gnu@4.52.3': 4969 4969 optional: true 4970 4970 4971 - '@rollup/rollup-linux-riscv64-musl@4.52.0': 4971 + '@rollup/rollup-linux-riscv64-musl@4.52.3': 4972 4972 optional: true 4973 4973 4974 - '@rollup/rollup-linux-s390x-gnu@4.52.0': 4974 + '@rollup/rollup-linux-s390x-gnu@4.52.3': 4975 4975 optional: true 4976 4976 4977 - '@rollup/rollup-linux-x64-gnu@4.52.0': 4977 + '@rollup/rollup-linux-x64-gnu@4.52.3': 4978 4978 optional: true 4979 4979 4980 - '@rollup/rollup-linux-x64-musl@4.52.0': 4980 + '@rollup/rollup-linux-x64-musl@4.52.3': 4981 4981 optional: true 4982 4982 4983 - '@rollup/rollup-openharmony-arm64@4.52.0': 4983 + '@rollup/rollup-openharmony-arm64@4.52.3': 4984 4984 optional: true 4985 4985 4986 - '@rollup/rollup-win32-arm64-msvc@4.52.0': 4986 + '@rollup/rollup-win32-arm64-msvc@4.52.3': 4987 4987 optional: true 4988 4988 4989 - '@rollup/rollup-win32-ia32-msvc@4.52.0': 4989 + '@rollup/rollup-win32-ia32-msvc@4.52.3': 4990 4990 optional: true 4991 4991 4992 - '@rollup/rollup-win32-x64-gnu@4.52.0': 4992 + '@rollup/rollup-win32-x64-gnu@4.52.3': 4993 4993 optional: true 4994 4994 4995 - '@rollup/rollup-win32-x64-msvc@4.52.0': 4995 + '@rollup/rollup-win32-x64-msvc@4.52.3': 4996 4996 optional: true 4997 4997 4998 4998 '@shikijs/core@3.13.0': ··· 5203 5203 5204 5204 '@ungap/structured-clone@1.3.0': {} 5205 5205 5206 - '@vercel/nft@0.29.4(rollup@4.52.0)': 5206 + '@vercel/nft@0.29.4(rollup@4.52.3)': 5207 5207 dependencies: 5208 5208 '@mapbox/node-pre-gyp': 2.0.0 5209 - '@rollup/pluginutils': 5.3.0(rollup@4.52.0) 5209 + '@rollup/pluginutils': 5.3.0(rollup@4.52.3) 5210 5210 acorn: 8.15.0 5211 5211 acorn-import-attributes: 1.9.5(acorn@8.15.0) 5212 5212 async-sema: 3.1.1 ··· 5222 5222 - rollup 5223 5223 - supports-color 5224 5224 5225 - '@vercel/nft@0.30.1(rollup@4.52.0)': 5225 + '@vercel/nft@0.30.1(rollup@4.52.3)': 5226 5226 dependencies: 5227 5227 '@mapbox/node-pre-gyp': 2.0.0 5228 - '@rollup/pluginutils': 5.3.0(rollup@4.52.0) 5228 + '@rollup/pluginutils': 5.3.0(rollup@4.52.3) 5229 5229 acorn: 8.15.0 5230 5230 acorn-import-attributes: 1.9.5(acorn@8.15.0) 5231 5231 async-sema: 3.1.1 ··· 5412 5412 transitivePeerDependencies: 5413 5413 - supports-color 5414 5414 5415 - astro-og-canvas@0.7.0(astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)): 5415 + astro-og-canvas@0.7.0(astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1)): 5416 5416 dependencies: 5417 - astro: 5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 5417 + astro: 5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1) 5418 5418 canvaskit-wasm: 0.39.1 5419 5419 deterministic-object-hash: 2.0.2 5420 5420 entities: 4.5.0 5421 5421 5422 - astro@5.13.10(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.0)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1): 5422 + astro@5.14.1(@netlify/blobs@10.0.10)(@types/node@24.5.2)(jiti@2.6.0)(rollup@4.52.3)(tsx@4.20.5)(typescript@5.9.2)(yaml@2.8.1): 5423 5423 dependencies: 5424 5424 '@astrojs/compiler': 2.13.0 5425 5425 '@astrojs/internal-helpers': 0.7.3 ··· 5427 5427 '@astrojs/telemetry': 3.3.0 5428 5428 '@capsizecss/unpack': 2.4.0 5429 5429 '@oslojs/encoding': 1.1.0 5430 - '@rollup/pluginutils': 5.3.0(rollup@4.52.0) 5430 + '@rollup/pluginutils': 5.3.0(rollup@4.52.3) 5431 5431 acorn: 8.15.0 5432 5432 aria-query: 5.3.2 5433 5433 axobject-query: 4.1.0 ··· 7996 7996 7997 7997 reusify@1.1.0: {} 7998 7998 7999 - rollup@4.52.0: 7999 + rollup@4.52.3: 8000 8000 dependencies: 8001 8001 '@types/estree': 1.0.8 8002 8002 optionalDependencies: 8003 - '@rollup/rollup-android-arm-eabi': 4.52.0 8004 - '@rollup/rollup-android-arm64': 4.52.0 8005 - '@rollup/rollup-darwin-arm64': 4.52.0 8006 - '@rollup/rollup-darwin-x64': 4.52.0 8007 - '@rollup/rollup-freebsd-arm64': 4.52.0 8008 - '@rollup/rollup-freebsd-x64': 4.52.0 8009 - '@rollup/rollup-linux-arm-gnueabihf': 4.52.0 8010 - '@rollup/rollup-linux-arm-musleabihf': 4.52.0 8011 - '@rollup/rollup-linux-arm64-gnu': 4.52.0 8012 - '@rollup/rollup-linux-arm64-musl': 4.52.0 8013 - '@rollup/rollup-linux-loong64-gnu': 4.52.0 8014 - '@rollup/rollup-linux-ppc64-gnu': 4.52.0 8015 - '@rollup/rollup-linux-riscv64-gnu': 4.52.0 8016 - '@rollup/rollup-linux-riscv64-musl': 4.52.0 8017 - '@rollup/rollup-linux-s390x-gnu': 4.52.0 8018 - '@rollup/rollup-linux-x64-gnu': 4.52.0 8019 - '@rollup/rollup-linux-x64-musl': 4.52.0 8020 - '@rollup/rollup-openharmony-arm64': 4.52.0 8021 - '@rollup/rollup-win32-arm64-msvc': 4.52.0 8022 - '@rollup/rollup-win32-ia32-msvc': 4.52.0 8023 - '@rollup/rollup-win32-x64-gnu': 4.52.0 8024 - '@rollup/rollup-win32-x64-msvc': 4.52.0 8003 + '@rollup/rollup-android-arm-eabi': 4.52.3 8004 + '@rollup/rollup-android-arm64': 4.52.3 8005 + '@rollup/rollup-darwin-arm64': 4.52.3 8006 + '@rollup/rollup-darwin-x64': 4.52.3 8007 + '@rollup/rollup-freebsd-arm64': 4.52.3 8008 + '@rollup/rollup-freebsd-x64': 4.52.3 8009 + '@rollup/rollup-linux-arm-gnueabihf': 4.52.3 8010 + '@rollup/rollup-linux-arm-musleabihf': 4.52.3 8011 + '@rollup/rollup-linux-arm64-gnu': 4.52.3 8012 + '@rollup/rollup-linux-arm64-musl': 4.52.3 8013 + '@rollup/rollup-linux-loong64-gnu': 4.52.3 8014 + '@rollup/rollup-linux-ppc64-gnu': 4.52.3 8015 + '@rollup/rollup-linux-riscv64-gnu': 4.52.3 8016 + '@rollup/rollup-linux-riscv64-musl': 4.52.3 8017 + '@rollup/rollup-linux-s390x-gnu': 4.52.3 8018 + '@rollup/rollup-linux-x64-gnu': 4.52.3 8019 + '@rollup/rollup-linux-x64-musl': 4.52.3 8020 + '@rollup/rollup-openharmony-arm64': 4.52.3 8021 + '@rollup/rollup-win32-arm64-msvc': 4.52.3 8022 + '@rollup/rollup-win32-ia32-msvc': 4.52.3 8023 + '@rollup/rollup-win32-x64-gnu': 4.52.3 8024 + '@rollup/rollup-win32-x64-msvc': 4.52.3 8025 8025 fsevents: 2.3.3 8026 8026 8027 8027 run-parallel@1.2.0: ··· 8482 8482 fdir: 6.5.0(picomatch@4.0.3) 8483 8483 picomatch: 4.0.3 8484 8484 postcss: 8.5.6 8485 - rollup: 4.52.0 8485 + rollup: 4.52.3 8486 8486 tinyglobby: 0.2.15 8487 8487 optionalDependencies: 8488 8488 '@types/node': 24.5.2